From 9a7ccd62df1f21792827fd1877b09227674aaefd Mon Sep 17 00:00:00 2001 From: David Valentine Date: Thu, 16 Mar 2023 12:00:02 -0700 Subject: [PATCH 01/55] matrix docker container builds --- .github/workflows/docker-dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-dev.yml b/.github/workflows/docker-dev.yml index cab849f0..a0ec32ef 100644 --- a/.github/workflows/docker-dev.yml +++ b/.github/workflows/docker-dev.yml @@ -41,8 +41,8 @@ jobs: go build -o gleaner working-directory: ./cmd/gleaner env: - GOOS: linux - GOARCH: amd64 + GOOS: ${{matrix.goss}} + GOARCH: ${{matrix.goarch}} CGO_ENABLED: 0 # deploy: # needs: build From 8df5aee06dab2a7bb598a55b2e0fa4ccc405aa58 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Thu, 16 Mar 2023 12:01:51 -0700 Subject: [PATCH 02/55] matrix docker container builds --- .github/workflows/docker-dev.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker-dev.yml b/.github/workflows/docker-dev.yml index a0ec32ef..04fcdf70 100644 --- a/.github/workflows/docker-dev.yml +++ b/.github/workflows/docker-dev.yml @@ -3,6 +3,7 @@ on: push: branches: - dev + - dev_docker_dev_matrix release: types: [published] From f389dc5d11dd6221915f131e02f943abad680498 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Thu, 16 Mar 2023 12:07:36 -0700 Subject: [PATCH 03/55] matrix docker container builds for both master and dev --- .github/workflows/docker-dev.yml | 1 - .github/workflows/docker.yml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-dev.yml b/.github/workflows/docker-dev.yml index 04fcdf70..a0ec32ef 100644 --- a/.github/workflows/docker-dev.yml +++ b/.github/workflows/docker-dev.yml @@ -3,7 +3,6 @@ on: push: branches: - dev - - dev_docker_dev_matrix release: types: [published] diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 573b6f1b..eaef0350 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -44,8 +44,8 @@ jobs: go build -o gleaner working-directory: ./cmd/gleaner env: - GOOS: linux - GOARCH: amd64 + GOOS: ${{matrix.goss}} + GOARCH: ${{matrix.goarch}} CGO_ENABLED: 0 # deploy: # needs: build From 3a87406039e557120775768d4fa4019b2e31987b Mon Sep 17 00:00:00 2001 From: David Valentine Date: Mon, 20 Mar 2023 14:19:10 -0700 Subject: [PATCH 04/55] aws region attempt. Fix was to define region in the minio.address --- configs/template/localConfig.yaml | 1 + internal/check/check.go | 3 ++- internal/common/minio.go | 8 +++++++- internal/config/gleanerConfig.go | 2 ++ internal/config/localConfig.go | 3 +++ internal/config/minio.go | 5 +++++ 6 files changed, 20 insertions(+), 2 deletions(-) diff --git a/configs/template/localConfig.yaml b/configs/template/localConfig.yaml index 939a0c38..254893f6 100644 --- a/configs/template/localConfig.yaml +++ b/configs/template/localConfig.yaml @@ -4,6 +4,7 @@ --- minio: address: 0.0.0.0 +# aws need to include the region in the bucket. eg: s3.us-west-2.amazonaws.com port: 9000 accessKey: worldsbestaccesskey secretKey: worldsbestsecretkey diff --git a/internal/check/check.go b/internal/check/check.go index d5a2dba2..cb57d988 100644 --- a/internal/check/check.go +++ b/internal/check/check.go @@ -12,7 +12,8 @@ import ( // ConnCheck check the connections with a list buckets call func ConnCheck(mc *minio.Client) error { - _, err := mc.ListBuckets(context.Background()) + bcukets, err := mc.ListBuckets(context.Background()) + log.Debug("list buckets", bcukets) return err } diff --git a/internal/common/minio.go b/internal/common/minio.go index 69bfc6e0..3ba88c29 100644 --- a/internal/common/minio.go +++ b/internal/common/minio.go @@ -22,13 +22,19 @@ func MinioConnection(v1 *viper.Viper) *minio.Client { accessKeyID := mcfg.Accesskey secretAccessKey := mcfg.Secretkey useSSL := mcfg.Ssl + // auth fails if a region is set in minioclient... + // region := mcfg.Region minioClient, err := minio.New(endpoint, &minio.Options{Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""), - Secure: useSSL}) + Secure: useSSL, + // Region: region, + }) + // minioClient.SetCustomTransport(&http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}}) if err != nil { log.Fatal(err) } + // don't set region until you created the client return minioClient } diff --git a/internal/config/gleanerConfig.go b/internal/config/gleanerConfig.go index 02792dba..6ae7564b 100644 --- a/internal/config/gleanerConfig.go +++ b/internal/config/gleanerConfig.go @@ -6,12 +6,14 @@ import ( "github.com/spf13/viper" ) +// auth fails if a region is set in minioclient... var gleanerTemplate = map[string]interface{}{ "minio": map[string]string{ "address": "localhost", "port": "9000", "accesskey": "", "secretkey": "", + // "region": "us-east-1", }, "gleaner": map[string]string{}, "context": map[string]string{}, diff --git a/internal/config/localConfig.go b/internal/config/localConfig.go index 43b3cfe9..703e96b4 100644 --- a/internal/config/localConfig.go +++ b/internal/config/localConfig.go @@ -4,6 +4,7 @@ import ( "github.com/spf13/viper" ) +// auth fails if a region is set in minioclient... var serversTemplate = map[string]interface{}{ "minio": map[string]string{ "address": "localhost", @@ -11,6 +12,7 @@ var serversTemplate = map[string]interface{}{ "accesskey": "", "secretkey": "", "bucket": "", + // "region": "us-east-1", }, "sparql": map[string]string{ "endpoint": "localhost", @@ -34,6 +36,7 @@ func ReadServersConfig(filename string, cfgDir string) (*viper.Viper, error) { v.BindEnv("minio.accesskey", "MINIO_ACCESS_KEY") v.BindEnv("minio.secretkey", "MINIO_SECRET_KEY") v.BindEnv("minio.bucket", "MINIO_BUCKET") + // v.BindEnv("minio.region", "MINIO_REGION") v.BindEnv("sparql.endpoint", "SPARQL_ENDPOINT") v.BindEnv("sparql.authenticate", "SPARQL_AUTHENTICATE") v.BindEnv("sparql.username", "SPARQL_USERNAME") diff --git a/internal/config/minio.go b/internal/config/minio.go index a4bb791d..f8966e27 100644 --- a/internal/config/minio.go +++ b/internal/config/minio.go @@ -5,6 +5,7 @@ import ( "github.com/spf13/viper" ) +// auth fails if a region is set in minioclient... // frig frig... do not use lowercase... those are private variables type Minio struct { Address string // `mapstructure:"MINIO_ADDRESS"` @@ -13,8 +14,10 @@ type Minio struct { Accesskey string //`mapstructure:"MINIO_ACCESS_KEY"` Secretkey string // `mapstructure:"MINIO_SECRET_KEY"` Bucket string + // Region string } +// auth fails if a region is set in minioclient... var MinioTemplate = map[string]interface{}{ "minio": map[string]string{ "address": "localhost", @@ -23,6 +26,7 @@ var MinioTemplate = map[string]interface{}{ "secretkey": "", "bucket": "", "ssl": "false", + // "region": "us-east-1", }, } @@ -39,6 +43,7 @@ func ReadMinioConfig(minioSubtress *viper.Viper) (Minio, error) { minioSubtress.BindEnv("secretkey", "MINIO_SECRET_KEY") minioSubtress.BindEnv("secretkey", "MINIO_SECRET_KEY") minioSubtress.BindEnv("bucket", "MINIO_BUCKET") + // minioSubtress.BindEnv("region", "MINIO_REGION") minioSubtress.AutomaticEnv() // config already read. substree passed err := minioSubtress.Unmarshal(&minioCfg) From 51fc26ef508e58bafff8bc03b1695a6a9f2c7737 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 21 Mar 2023 11:42:10 -0700 Subject: [PATCH 05/55] #178 fix issue where Identifier returning error (#179) #144 Not finding a robots.txt is not an error, just information. --- internal/common/identifier.go | 5 +++-- internal/summoner/acquire/resources.go | 4 ++-- internal/summoner/acquire/utils.go | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/internal/common/identifier.go b/internal/common/identifier.go index 12de0217..326372c1 100644 --- a/internal/common/identifier.go +++ b/internal/common/identifier.go @@ -62,7 +62,8 @@ func GetIdentifierByPath(jsonPath string, jsonld string) (interface{}, error) { // we need to sort the results aString := make([]string, len(ys)) for i, v := range ys { - aString[i] = v.(string) + //aString[i] = v.(string) + aString[i] = fmt.Sprint(v) // v not always a single string } sort.SliceStable(aString, func(i, j int) bool { return aString[i] < aString[j] @@ -153,7 +154,7 @@ func GenerateIdentifierSha(v1 *viper.Viper, source config.Sources, jsonld string } return id, err } else { - log.Error(config.IdentifierSha, "Action: Getting normalized sha Error:", err) + log.Info(config.IdentifierSha, "Action: Getting normalized sha Error:", err) // generate a filesha return GenerateNormalizedSha(v1, jsonld) } diff --git a/internal/summoner/acquire/resources.go b/internal/summoner/acquire/resources.go index ed2671bc..d2947381 100644 --- a/internal/summoner/acquire/resources.go +++ b/internal/summoner/acquire/resources.go @@ -63,7 +63,7 @@ func ResourceURLs(v1 *viper.Viper, mc *minio.Client, headless bool, db *bolt.DB) } else { robots, err = getRobotsForDomain(domain.Domain) if err != nil { - log.Error("Error getting robots.txt for ", domain.Name, ", continuing without it.") + log.Info("Error getting robots.txt for ", domain.Name, ", continuing without it.") robots = nil group = nil } @@ -201,7 +201,7 @@ func getRobotsForDomain(url string) (*robotstxt.RobotsData, error) { log.Info("Getting robots.txt from ", robotsUrl) robots, err := getRobotsTxt(robotsUrl) if err != nil { - log.Error("error getting robots.txt for ", url, ":", err) + log.Info("error getting robots.txt for ", url, ":", err) return nil, err } return robots, nil diff --git a/internal/summoner/acquire/utils.go b/internal/summoner/acquire/utils.go index 0179276e..35ff11d9 100644 --- a/internal/summoner/acquire/utils.go +++ b/internal/summoner/acquire/utils.go @@ -20,7 +20,7 @@ func getRobotsTxt(robotsUrl string) (*robotstxt.RobotsData, error) { resp, err := client.Do(req) if err != nil { - log.Error("error fetching robots.txt at ", robotsUrl, err) + log.Info("error fetching robots.txt at ", robotsUrl, err) return nil, err } From 49eb7dde63a665212e6d793be9570904a795c169 Mon Sep 17 00:00:00 2001 From: melinda Date: Wed, 22 Mar 2023 16:22:55 -0700 Subject: [PATCH 06/55] Make the @id fixup work for arrays of jsonld as well --- internal/common/testdata/ccadi.jsonld | 929 + internal/common/testdata/ccadi.rdf | 723 + .../testdata/schemaorg-current-https.jsonld | 42161 ++++++++++++++++ internal/summoner/acquire/jsonutils.go | 40 +- internal/summoner/acquire/jsonutils_test.go | 67 + 5 files changed, 43913 insertions(+), 7 deletions(-) create mode 100644 internal/common/testdata/ccadi.jsonld create mode 100644 internal/common/testdata/ccadi.rdf create mode 100644 internal/common/testdata/schemaorg-current-https.jsonld diff --git a/internal/common/testdata/ccadi.jsonld b/internal/common/testdata/ccadi.jsonld new file mode 100644 index 00000000..3d7479a8 --- /dev/null +++ b/internal/common/testdata/ccadi.jsonld @@ -0,0 +1,929 @@ +{ + "@context":{"@vocab":"https://schema.org/"}, + "@type":"ItemList", + "itemListElement": + [ + { + "@type":"ListItem", + "position":1, + "item":{ + "@type":"Dataset", + "name":"Methylmercury Speciation at Different Trophic Levels in the Beaufort Sea Arctic Marine Ecosystem", + "datePublished": "2015-02-03", + "dateModified": "2015-02-05", + "description":"Our long-term goal is to develop a molecular-level understanding of the uptake pathway, transformation, toxicity and detoxification of methylmercury in the Arctic marine ecosystem. The specific objectives of this project are to: 1) identify and quantify chemical forms of methylmercury and selenium in various tissues of animals at different trophic levels from the Beaufort Sea Arctic marine ecosystem; and, 2) elucidate possible mechanisms involved in methylmercury detoxification in beluga whales.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12070", + "keywords": + [ + "Geographic locations -> Beaufort Sea", + "Geographic locations -> Mackenzie Shelf", + "Health sciences and contaminants -> Bioaccumulation", + "Health sciences and contaminants -> Mercury speciation", + "Health sciences and contaminants -> Methylmercury" + ], + "creator":{ + "@type":"Person", + "name":"Feiyue Wang", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-(204) 474-6250", + "email":"wangf@ms.umanitoba.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2008-Jan-1/2008-Dec-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"71.0 -138.0 68.0 -120.0" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":2, + "item":{ + "@type":"Dataset", + "name":"Otolith microchemistry of polar cod (Boreogadus saida) from six Arctic regions", + "datePublished": "2015-02-04", + "dateModified": "2015-04-07", + "description":"Arctic marine food webs are centered on polar cod (Boreogadus saida), a small, largely pelagic gadid, which movement and migration remain unclear, especially for the early life stages. The present study examined the otolith chemistry of juvenile polar cod from six oceanographic regions of the Arctic Ocean in order to document patterns of spatial segregation, dispersion and migration during the species early life. The freshwater winter refuge hypothesis, suggesting that polar cod larvae start to hatch in winter in freshwater-influenced regions but only later in the season in purely marine regions, was also tested.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12071", + "keywords": + [ + "Geographic locations -> Amundsen Gulf", + "Geographic locations -> Baffin Bay", + "Geographic locations -> Frobisher Bay", + "Geographic locations -> Hudson Bay", + "Geographic locations -> Lancaster Sound", + "Geographic locations -> Laptev Sea", + "Natural sciences -> Arctic cod", + "Natural sciences -> Otolith" + ], + "creator":{ + "@type":"Person", + "name":"Caroline Bouchard", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-418-634-0590 6228", + "email":"cabo@natur.gl" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2005-Aug-1/2006-Oct-29", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"81.0 -155.0 62.0 135.0" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":3, + "item":{ + "@type":"Dataset", + "name":"Nilliajut: Inuit Perspectives of Security, Patriotism and Sovereignty", + "datePublished": "2015-02-04", + "dateModified": "2015-03-17", + "description":"To share Inuit perspectives on security, patriotism and sovereignty.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12072", + "keywords": + [ + "Geographic locations -> Inuit Nunangat", + "Social sciences, economics and policy -> Governmental policies", + "Social sciences, economics and policy -> Inuit Knowledge", + "Social sciences, economics and policy -> Sovereignty", + "Social sciences, economics and policy -> Traditional Knowledge", + "Transdisciplinary -> Publication" + ], + "creator":{ + "@type":"Organization", + "url":"www.inuitknowledge.ca", + "name":"Inuit Qaujisarvingat, Inuit Tapiriit Kanatami", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-613-238-8181", + "email":"kelley@itk.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2012-Jul-1/2013-Mar-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"90.0 -180.0 50.0 180.0" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":4, + "item":{ + "@type":"Dataset", + "name":"Community Based Seawater Monitoring for Organic Contaminants and Mercury in the Canadian Arctic", + "datePublished": "2015-02-04", + "dateModified": "2021-03-29", + "description":"The purpose of this project is to develop information on levels and time trends of contaminants in the Arctic ocean waters using a community based approach. The project was initiated in 2007 by PhD student Adam Morris working with Peter Amaraulik Sr. from Resolute Bay as part of his PhD research and continued as an Northern Contaminates Program (NCP) funded project in 2011-12 and again in 2014-15 and 2015-16. The project is now part of NCP's core monitoring program and has expanded in scope on a geographic scale, sampling strategies, and targeted contaminants. Currently, this project uses ultratrace analysis of seawater for mercury and methyl mercury species, perfluoroalkyl substances (PFAS), organophosphate ester flame retardants (OPE), brominated flame retardants (BFR), polychlorinated biphenyls (PCB), polycyclic aromatic carbons (PACs/PAH), and several other legacy persistent organic pollutants (POPs). To the greatest extent possible, we partner with community members to lead sampling. The communities we work with include: Resolute Bay, Nain, and Cambridge Bay.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12073", + "keywords": + [ + "Geographic locations -> Arctic Ocean", + "Geographic locations -> Barrow Strait", + "Geographic locations -> Labrador Sea", + "Geographic locations -> Nunatsiavut", + "Geographic locations -> Nunavut", + "Geographic locations -> Resolute Bay", + "Health sciences and contaminants -> Mercury", + "Health sciences and contaminants -> Methylmercury", + "Health sciences and contaminants -> Perfluorinated alkylated substances", + "Health sciences and contaminants -> Perfluorooctanesulfonate", + "Health sciences and contaminants -> Persistent organic pollutants (POPs)", + "Natural sciences -> Community-based monitoring", + "Natural sciences -> Contaminants", + "Natural sciences -> Seawater", + "Natural sciences -> Water", + "Northern communities -> Cambridge Bay", + "Northern communities -> Nain", + "Northern communities -> Qausuittuq", + "Social sciences, economics and policy -> Capacity building" + ], + "creator":{ + "@type":"Organization", + "url":"https://open.canada.ca/data/en/dataset/45321640-4ef9-42e9-ab49-a781b69e6267", + "name":"Environment and Climate Change Canada, Government of Canada", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-9052209508", + "email":"amila.desilva@canada.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2007-May-1/Not Defined", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"75.0 -104.0 55.0 -62.0" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":5, + "item":{ + "@type":"Dataset", + "name":"Contaminant Bioaccumulation in Landlocked Char Food Webs in the High Arctic", + "datePublished": "2015-02-04", + "dateModified": "2021-02-12", + "description":"This purpose of this project is to study how food webs influence the transfer of contaminants to the top predator, landlocked Arctic char, in the Northern Contaminants Program's (NCP) 'focal ecosystem' lakes on Cornwallis Island. Previous studies have shown that mercury and perfluorinated chemicals are carried into Arctic lakes during spring melt and are taken up and concentrated through the food web into char. This research examined food web accumulation of mercury, which has both natural and human sources and undergoes complex transformations in lakes, and of perfluorinated chemicals, which are entirely human-made, arrive solely by atmospheric deposition, and are not transformed in the environment. We built on previous research by contrasting how these two persistent contaminants concentrate through lake food webs and examining factors that affect their levels in char and other organisms in High Arctic lakes. The research focused on lakes in the Resolute Bay area (North, Small, Meretta, Resolute, 9 Mile, Char), because the arctic char and the supporting food webs of these lakes hd already been studied.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12074", + "keywords": + [ + "Geographic locations -> Cornwallis Island", + "Geographic locations -> Resolute Bay", + "Health sciences and contaminants -> Mercury", + "Health sciences and contaminants -> Perfluorinated alkylated substances", + "Natural sciences -> Arctic char", + "Natural sciences -> Chironomids", + "Natural sciences -> Food web", + "Natural sciences -> Lake" + ], + "creator":{ + "@type":"Person", + "name":"Derek Muir", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-905-319-6921", + "email":"derek.muir@ec.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2010-Jun-1/2012-Mar-28", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"75.0 -95.0 74.5 -94.0" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":6, + "item":{ + "@type":"Dataset", + "name":"Weasel population monitoring on Bylot Island, Nunavut", + "datePublished": "2015-02-05", + "dateModified": "2021-02-01", + "description":"Monitoring of weasel (Mustela erminea) abundance, reproductive activity and predation rate on lemmings", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12075", + "keywords": + [ + "Geographic locations -> Bylot Island", + "Natural sciences -> Abundance", + "Natural sciences -> Ermine", + "Natural sciences -> Lemmings", + "Natural sciences -> Monitoring", + "Natural sciences -> Predation", + "Natural sciences -> Tundra", + "Natural sciences -> Weasels" + ], + "creator":{ + "@type":"Person", + "name":"Gilles Gauthier", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-1-418-656-5507", + "email":"gilles.gauthier@bio.ulaval.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2007-Jun-16/Not Defined", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"73.2 -80.2 72.8 -79.6" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":7, + "item":{ + "@type":"Dataset", + "name":"Optical properties and carbon fluxes of the Eastern Canadian Arctic Ocean", + "datePublished": "2015-02-09", + "dateModified": "2015-02-09", + "description":"Collaborative research in the Eastern Canadian Arctic Ocean, aimed to collect data to study the optical properties of seawater, photosynthesis and major organic cycle elements in the Labrador Sea, Baffin Bay and the Lancaster Sound.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12076", + "keywords": + [ + "Geographic locations -> Baffin Bay", + "Geographic locations -> Canadian Arctic Archipelago", + "Natural sciences -> Colored dissolved organic material (CDOM)", + "Natural sciences -> Particulate organic carbon", + "Natural sciences -> Pigments", + "Natural sciences -> Radiometer", + "Natural sciences -> Remote sensing data" + ], + "creator":{ + "@type":"Person", + "name":"Joannie Ferland", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-(418) 656-2131 ext 8831", + "email":"joannie.ferland@takuvik.ulaval.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2014-Jul-8/2014-Sep-25", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"81.22 -149.0 53.92 -55.38" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":8, + "item":{ + "@type":"Dataset", + "name":"2012-2019 Borehole temperature profiles, Cape Bounty, Nunavut", + "datePublished": "2015-02-09", + "dateModified": "2019-11-04", + "description":"Water jet drilled bore holes at two locations at the Cape Bounty Arctic Watershed Observatory (CBAWO) to 7 m depth. Sensors installed to measure temperature throughout the year to determine changes to the thermal state of the upper permafrost. Stations are located UTM 12X WGS84 0540791 8313018 and 0540879 8316305.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12077", + "keywords": + [ + "Geographic locations -> Cape Bounty", + "Natural sciences -> Active layer", + "Natural sciences -> Climate", + "Natural sciences -> Permafrost", + "Natural sciences -> Soil temperature", + "Natural sciences -> Temperature" + ], + "creator":{ + "@type":"Person", + "name":"Scott Lamoureux", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-613-533-6033", + "email":"scott.lamoureux@queensu.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2012-Jul-15/2019-Jul-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"74.9 -109.5 74.9 -109.5" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":9, + "item":{ + "@type":"Dataset", + "name":"2014 West River thermal, hydrochemical and isotopic profiling", + "datePublished": "2015-02-09", + "dateModified": "2015-02-18", + "description":"The river thermal, hydrochemical and isotopic composition was surveyed and sampled through the baseflow period (July) to determine the contributions of lateral inflows from slopes to river flow. Temperature was measured with a high sensitivity tow devise along the river channel and sampling was carried out at fixed stations at regular intervals. The goal was to improve our understanding of slope-channel water exchanges in Arctic rivers.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12078", + "keywords": + [ + "Geographic locations -> Cape Bounty", + "Natural sciences -> Hydrology", + "Natural sciences -> Isotopes", + "Natural sciences -> River", + "Natural sciences -> Soil moisture", + "Natural sciences -> Stable isotope tracers", + "Natural sciences -> Water chemistry", + "Natural sciences -> Water temperature" + ], + "creator":{ + "@type":"Person", + "name":"Scott Lamoureux", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-613-533-6033", + "email":"scott.lamoureux@queensu.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2014-Jul-6/2014-Jul-27", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"74.9 -109.5 74.9 -109.5" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":10, + "item":{ + "@type":"Dataset", + "name":"Nunavut drinking water quality: Source to tap monitoring 2013/2014 (NGMP ID SE03)", + "datePublished": "2015-02-09", + "dateModified": "2017-09-11", + "description":"The overall goal of the project was to assess the quality of potable water in Nunavut communities from source-to-tap. This monitoring approach will allow us to identify components of the water supply system where contaminants could be introduced to potable water. Remediation strategies can then be developed to specifically address these issues, and therefore improve the quality and safety of water delivered to community residents. One of the primary goals of this project was to develop local capacity for advanced water analysis. Standard operating procedures for sampling and lab analysis will be developed, and hands-on training will be provided to Nunavut Research Institute staff, to allow for future sampling of this nature. It is the intent that this initiative will lead to a longer-term monitoring program in several other Nunavut communities.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12079", + "keywords": + [ + "Health sciences and contaminants -> Water quality", + "Northern communities -> Iqaluit", + "Northern communities -> Pangnirtung", + "Northern communities -> Pond Inlet", + "Social sciences, economics and policy -> Resource development", + "Social sciences, economics and policy -> Wellness" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2013-May-1/2014-Mar-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"72.7 -77.96 63.75 -65.7" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":11, + "item":{ + "@type":"Dataset", + "name":"Improve access to Nunavut monitoring information using the Nunavut database (NGMP ID LU04)", + "datePublished": "2015-02-09", + "dateModified": "2017-09-11", + "description":"The purpose of the Nunavut Database is to provide a single location for finding publications and research project descriptions about Nunavut and Nunavut-based monitoring programs.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12080", + "keywords": + [ + "Geographic locations -> Nunavut", + "Social sciences, economics and policy -> Information sharing", + "Social sciences, economics and policy -> Northerners", + "Transdisciplinary -> Archive", + "Transdisciplinary -> Database (transdisciplinary)", + "Transdisciplinary -> Publication" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2013-Jan-1/2014-Dec-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"83.0 -121.0 52.0 -61.0" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":12, + "item":{ + "@type":"Dataset", + "name":"Oil spill detection and modelling solutions for Hudson and Davis Strait (NGMP ID LU06)", + "datePublished": "2015-02-09", + "dateModified": "2017-09-11", + "description":"This project will review, evaluate and present oil slick detection and modelling solutions using Earth Observation (EO) technology for the Hudson and Davis Strait regions. The project will show how these technologies can be included in local response, including how community involvement can be integrated into preparation for and response to oil spills in local waters. The three specific objectives of the project include: 1) To review and evaluate the state of the art in EO for oil spill detection solutions that is relevant to the Hudson and Davis Strait areas; 2) To identify gaps where local knowledge and capacity can contribute to improved oil spill surveillance and response; and 3) To show how EO technology can be better integrated into response efforts in local Nunavut communities.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12081", + "keywords": + [ + "Geographic locations -> Davis Strait", + "Health sciences and contaminants -> Water quality", + "Natural sciences -> Contaminants", + "Natural sciences -> Remote sensing data", + "Natural sciences -> Sea ice", + "Social sciences, economics and policy -> Economics", + "Social sciences, economics and policy -> Environment surveillance", + "Social sciences, economics and policy -> Food security", + "Social sciences, economics and policy -> Transportation", + "Transdisciplinary -> Petroleum industry" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2013-May-1/2013-Dec-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"72.0 -74.0 61.0 -60.0" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":13, + "item":{ + "@type":"Dataset", + "name":"Establishing a long-term, river-based monitoring system for Arctic Char in the Cambridge Bay area, Nunavut (NGMP ID EC02)", + "datePublished": "2015-02-09", + "dateModified": "2017-09-11", + "description":"The project will establish a long-term community-based monitoring program for fishery-dependent data collection for Cambridge Bay Arctic Char. Educating and training local monitors and fishers will facilitate documentation of river-specific catch and effort information by and for community resource users. Total harvest removal estimates will allow managers to determine the current status of a fishery and whether the quotas support sustainable harvest levels. The data produced from catch and effort estimates can be used as a proxy for population abundance and for monitoring long term trends in the fishery. These data can be integrated into models to better predict the outcome of alternative management regimes or what effect current management approaches may have on the stock. An established time series is critical to achieve greater accuracy in the population estimates and implement improved management strategies that will ensure Arctic Char are managed in a sustainable manor. This monitoring program will occur annually at commercial waterbodies, (i.e., Ekalluk, Halovik, Lauchlan, Paliryuak, and Jayco rivers) typically spanning from early July to late September. The initial length of the project will be seven years, reflecting given that the minimum number of years needed to collect catch-per-unit-effort (CPUE) data is five years. This will also allow for modifications to the study design and monitoring protocol. Training and education of local monitors and fishers will benefit the community in the long-term, increasing the community's scientific knowledge of their fish resource and the framework applied for co-management decision making. The knowledge transfer and subsequent skills developed through this monitoring program will be a valuable asset which will allow Inuinuktut and other northerners to initiate and further engage in future cumulative impact monitoring programs and fish stock assessment surveys in the Canadian north.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12082", + "keywords": + [ + "Natural sciences -> Arctic char", + "Natural sciences -> Community-based monitoring", + "Natural sciences -> Fisheries", + "Natural sciences -> Fishes", + "Natural sciences -> Freshwaters", + "Social sciences, economics and policy -> Education", + "Social sciences, economics and policy -> Training" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2011-Mar-1/2018-Sep-1", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"69.1 -105.25 69.1 -105.13" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":14, + "item":{ + "@type":"Dataset", + "name":"Development and implementation of a community-based fishery monitoring programme and stock assessment framework for Arctic Char in Baffin Region, Nunavut (NGMP ID EC03)", + "datePublished": "2015-02-09", + "dateModified": "2017-09-11", + "description":"The purpose of this project is to develop and implement a community-based fishery monitoring program and stock assessment framework for Arctic Char in partnership with the Pangnirtung community/HTA. The project consists in the identification of indicator stock(s) for Arctic Char in the Cumberland Sound Area. The indicator stock(s) will be the focus of annual sampling and monitoring efforts during five consecutive years, including: (i) a test fishery program with progressive increase in harvest; (ii) biological sampling of fish; (iii) harvest monitoring; and (iv) monitoring of selected environmental parameters related to Arctic Char movement, habitat and fishery productivity. The project involves a platform for IQ gathering and synthesis and for knowledge co-production on Arctic Char and freshwater ecosystems from Cumberland Sound. Expected outputs include significant data development on Arctic Char, information gap-filling on the responses of Char populations to fishing pressure and selected environmental drivers, and the provision of integrated IQ-science advice for fisheries co-management of the species. Community involvement and participation is at the core of this project, which is designed to stimulate and enhance local capacity for data collection and knowledge gathering and to integrate traditional practices with scientific expertise. Long-term goals are to demonstrate the effectiveness of community-based monitoring and knowledge co-production for realizing conservation and simultaneous optimization of Arctic Char resources in Nunavut and for fostering community involvement in stock assessment and decision-making processes. The implementation and fine-tuning of a community-based fishery monitoring program/stock assessment framework for Arctic Char in Pangnirtung should facilitate future expansions to other Baffin Island communities, which is the intended scope of the project.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12083", + "keywords": + [ + "Natural sciences -> Arctic char", + "Natural sciences -> Community-based monitoring", + "Natural sciences -> Fisheries", + "Natural sciences -> Freshwaters", + "Natural sciences -> Hydrology", + "Social sciences, economics and policy -> Economics", + "Social sciences, economics and policy -> Education", + "Social sciences, economics and policy -> Food security", + "Social sciences, economics and policy -> Resource development", + "Social sciences, economics and policy -> Training" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2011-Nov-1/2017-Mar-1", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"65.28 -70.92 65.28 -64.08" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":15, + "item":{ + "@type":"Dataset", + "name":"Eastern Canadian Arctic Killer Whale Tagging, Biopsy, and Monitoring (NGMP ID EC05)", + "datePublished": "2015-02-10", + "dateModified": "2017-09-08", + "description":"Understanding Eastern Canadian Arctic (ECA) killer whale distribution and diet is fundamental to developing appropriate management plans to address conservation challenges to predator and prey posed by a changing Arctic ecosystem. The study objectives include: 1) determine killer whale distribution and movement patterns in the Eastern Canadian Arctic and North Atlantic using satellite telemetry and photo identification, 2) study killer whale diet using stable isotope (SI) and fatty acid (FA) analyses of biopsied skin and blubber, including assessment of the degree of dietary specialization (i.e. individual foraging preferences), 3) assess killer whale hunting behavior by collecting sightings reports from Northerners across Nunavut, 4) estimate killer whale population size in the Eastern Canadian Arctic using photo identification, 5) assess group and population structure of eastern Canadian Arctic killer whales using genetic analysis of biopsied skin, and 6) develop a long-term network of research teams comprising Northerners in several communities across Nunavut who are trained and equipped to independently satellite tag, biopsy, and photograph killer whales.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12084", + "keywords": + [ + "Natural sciences -> Beluga", + "Natural sciences -> Bowhead whale", + "Natural sciences -> Marine mammals", + "Natural sciences -> Narwhals", + "Natural sciences -> Whales", + "Northern communities -> Arctic Bay", + "Northern communities -> Pangnirtung", + "Northern communities -> Pond Inlet", + "Northern communities -> Repulse Bay" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2013-Apr-1/2016-Mar-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"73.04 -86.24 66.15 -65.7" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":16, + "item":{ + "@type":"Dataset", + "name":"Monitoring of Nunavut Large Terrestrial Carnivores: Wolverine, Wolves, and Grizzly Bear (NGMP ID EC10)", + "datePublished": "2015-02-10", + "dateModified": "2017-09-08", + "description":"The general objective of this project was to monitor the three species of large terrestrial carnivores of Nunavut: wolverine (Gulo gulo), wolf (Canis lupus), and grizzly bear (Ursus arctos). These three species play essential functions in the terrestrial ecosystem of Nunavut and are also tightly linked with some traditional activities, skills and knowledge of the Inuit people. Wolverine, wolf and grizzly bear also represent key indicators of environmental health because their demography depends on a large prey base and is influenced by the various pressures arising from changes in both local land use and the global environment. The specific objectives of this project were: i) to analyse ecological samples and data collected in previous years of the project, ii) to enhance and pursue our community-based harvest collection program of carcasses of wolverine, wolf, and grizzly bear, and iii) to collect Inuit Qaujimajatuqangit (IQ) to document trends in the abundance and distribution of these three species and to document important information on their ecology. (This project is part of a larger research program which has as main objectives to: 1) Assess large carnivores population status, distribution and spatio-temporal trends across Nunavut; 2) Better understand the role of large carnivores in the functioning of the Arctic terrestrial ecosystem and their potential implication in the recent decline of several tundra caribou herds; 3) Develop ecological indicators of environmental change using large carnivores; and 4) Develop community-based ecological monitoring through a combination of scientific methods and IQ).", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12085", + "keywords": + [ + "Inuktitut keywords -> Inuit Qaujimajatuqangit", + "Natural sciences -> Carnivores", + "Natural sciences -> Grizzly bear", + "Natural sciences -> Habitats", + "Natural sciences -> Mammals", + "Natural sciences -> Predation", + "Natural sciences -> Stomach contents" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2009-Jan-1/2014-Dec-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"69.54 -115.14 61.09 -81.26" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":17, + "item":{ + "@type":"Dataset", + "name":"Spatial and temporal variations of petroleum hydrocarbons in marine sediments of Baffin Bay, Eastern Canadian Arctic (NGMP ID EC13)", + "datePublished": "2015-02-10", + "dateModified": "2017-09-08", + "description":"The purpose of this study was to establish the present composition, concentrations and fluxes of petroleum hydrocarbons (alkanes, cycloalkanes aromatics) and polyaromatic hydrocarbons (PAHs) in surface sediments across the Baffin Bay - eastern Lancaster Sound region, prior to any oil and gas exploration and exploitation in the area; to assess the geographical variability of current hydrocarbon levels in this region; and to determine their natural variability over time prior to the industrial period (i.e. about pre-1850). The short-term objective to achieving this was to determine hydrocarbon concentrations in 40 samples of marine sediments from sediment cores recently collected from 10 locations across the region. From each core, 4 slices were analyzed (4 slices - 1 at surface, and 3 lower down) representing different time periods from pre-industrial to present. The longer-term objective was to use hydrocarbon composition biomarkers derived from these data to establish their sources (natural seeps, terrestrial run-off, oil/gas combustion-related) in the marine ecosystem in this part of the Canadian Arctic, prior to any future oil and gas exploration in the region and prior to the likely expansion of shipping traffic through the Northwest Passage.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12086", + "keywords": + [ + "Health sciences and contaminants -> Hydrocarbon", + "Health sciences and contaminants -> Water quality", + "Natural sciences -> Coastal dynamics", + "Natural sciences -> Invertebrates", + "Natural sciences -> Marine sediments" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2011-Jan-1/2013-Dec-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"77.22 -83.2 70.77 -69.07" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":18, + "item":{ + "@type":"Dataset", + "name":"Hudson Strait-Foxe Basin Marine Coastal Monitoring Surveys: Assessing the Impacts of Declining Summer Sea-Ice and Northern Development (NGMP ID EC20)", + "datePublished": "2015-02-10", + "dateModified": "2017-09-11", + "description":"The purpose of this project is to estimate the distribution and abundance of marine birds in the Hudson Strait-Foxe Basin region during the summer breeding season and assess their vulnerability to development activities and potential industrial accidents. The research will also examine potential cascading ecological impacts resulting from the loss of summer sea ice on marine bird populations from increased predation by polar bears. Specific study objectives include: 1) Compilation of baseline data on eider and other marine bird abundance and distributions in coastal areas, 2) Estimation of the number and proportion of nests potentially susceptible to flooding by ships wakes, 3) Identification of critical habitats for nesting and brood rearing that could be damaged by industrial accidents such as oil discharge or grounding, 4) Monitoring of polar bear activity on bird colonies and quantify the extent of bear predation of bird nests, and 5) Documenting TEK of changing relationships between polar bear, seals, and birds as they relate to sea-ice conditions and climate change.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12087", + "keywords": + [ + "Natural sciences -> Common eider", + "Natural sciences -> Community-based monitoring", + "Natural sciences -> Glaucous gull", + "Natural sciences -> Guillemots", + "Natural sciences -> Habitats", + "Natural sciences -> Herring gull", + "Natural sciences -> Loons", + "Natural sciences -> Marine birds", + "Natural sciences -> Marine mammals", + "Natural sciences -> Polar bear" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2011-Nov-1/2014-Mar-1", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"65.1 -82.92 61.82 -67.52" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":19, + "item":{ + "@type":"Dataset", + "name":"Small polynyas in Nunavut: targets for biodiversity, climate change and contamination (NGMP ID EC22)", + "datePublished": "2015-02-10", + "dateModified": "2017-09-08", + "description":"The purpose and short-term objectives of this project were to summarize available information and establish baseline data (western scientific and (Inuit Qaujimajatuqangit) IQ data on biodiversity, contaminants, breeding biology) on wildlife and environmental features at two small polynyas in the Canadian High Arctic, and to develop a suitable protocol for environmental monitoring at these sites. The long-term objectives were to establish these two polynyas as suitable locations for intermittent, long-term data collection, and to use the established protocol to recommend other locations and features that could be monitored at polynyas elsewhere in Nunavut.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12088", + "keywords": + [ + "Geographic locations -> Devon Island", + "Inuktitut keywords -> Inuit Qaujimajatuqangit", + "Natural sciences -> Marine birds", + "Natural sciences -> Meteorology", + "Natural sciences -> Polynya", + "Natural sciences -> Vegetation", + "Natural sciences -> Weather" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2011-Nov-1/2014-Mar-1", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"76.25 -96.32 75.82 -89.25" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + }, + { + "@type":"ListItem", + "position":20, + "item":{ + "@type":"Dataset", + "name":"Community-Based Monitoring of Ice-Breeding Seals and Polar Bear Feeding in the Gulf of Boothia (NGMP ID EC23)", + "datePublished": "2015-02-10", + "dateModified": "2017-09-08", + "description":"The specific study objectives are to: 1. Provide basic information about demography, diet, and space-use of the seal population in Gulf of Boothia and thereby serve as a reference for future studies; 2. Collect blubber samples from seals that can be used to estimate the diets of polar bears using a technique known as fatty acid signature analysis. Polar bear fat samples will come from bears taken in the annual subsistence hunt and sampled according to current harvest regulations; 3. Build predictive models of seal population dynamics in the context of climate warming; 4. Monitor the body condition of seals; 5. Propose conservation initiatives to mitigate environmental impacts of climate warming and increased economic activities that may negatively affect seals and, to monitor their success in an adaptive management regime; 6. Work with the community of Kugaaruk to develop and implement a long-term Community-Based Monitoring (CBM) network program.", + "url":"https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12089", + "keywords": + [ + "Inuktitut keywords -> Inuit Qaujimajatuqangit", + "Natural sciences -> Climate change", + "Natural sciences -> Community-based monitoring", + "Natural sciences -> Ecology", + "Natural sciences -> Polar bear", + "Natural sciences -> Predation", + "Natural sciences -> Sea ice", + "Natural sciences -> Seals" + ], + "creator":{ + "@type":"Person", + "name":"Nunavut General Monitoring Plan", + "contactPoint":{ + "@type":"ContactPoint", + "contactType":"technical support", + "telephone":"+1-867-975-4654", + "email":"ngmp-psgn@aandc-aadnc.gc.ca" + } + }, + "includedInDataCatalog":{ + "@type":"DataCatalog", + "name":"polardata.ca" + }, + "temporalCoverage":"2012-Jan-1/2015-Mar-31", + "spatialCoverage":{ + "@type":"Place", + "geo":{ + "@type":"GeoShape", + "box":"68.53 -89.83 68.53 -89.83" + } + }, + "license":"https://www.polardata.ca/pdcinput/public/termsofuse" + } + } + ] +} diff --git a/internal/common/testdata/ccadi.rdf b/internal/common/testdata/ccadi.rdf new file mode 100644 index 00000000..937b24ff --- /dev/null +++ b/internal/common/testdata/ccadi.rdf @@ -0,0 +1,723 @@ +_:bcevkkf0edaas73bi7l4g5 . +_:bcevkkf0edaas73bi7l4g5 "technical support" . +_:bcevkkf0edaas73bi7l4g5 "amila.desilva@canada.ca" . +_:bcevkkf0edaas73bi7l4g5 "+1-9052209508" . +_:bcevkkf0edaas73bi7ks0 . +_:bcevkkf0edaas73bi7ks0 _:bcevkkf0edaas73bi7ksg . +_:bcevkkf0edaas73bi7kt0 . +_:bcevkkf0edaas73bi7kt0 _:bcevkkf0edaas73bi7lkg4 . +_:bcevkkf0edaas73bi7ku0 . +_:bcevkkf0edaas73bi7ku0 "technical support" . +_:bcevkkf0edaas73bi7ku0 "joannie.ferland@takuvik.ulaval.ca" . +_:bcevkkf0edaas73bi7ku0 "+1-(418) 656-2131 ext 8831" . +_:bcevkkf0edaas73bi7kug . +_:bcevkkf0edaas73bi7kug _:bcevkkf0edaas73bi7kv0 . +_:bcevkkf0edaas73bi7kug "17"^^ . +_:bcevkkf0edaas73bi7kvg . +_:bcevkkf0edaas73bi7kvg "polardata.ca" . +_:bcevkkf0edaas73bi7me02 . +_:bcevkkf0edaas73bi7me02 _:bcevkkf0edaas73bi7me03 . +_:bcevkkf0edaas73bi7l10 . +_:bcevkkf0edaas73bi7l10 "technical support" . +_:bcevkkf0edaas73bi7l10 "scott.lamoureux@queensu.ca" . +_:bcevkkf0edaas73bi7l10 "+1-613-533-6033" . +_:bcevkkf0edaas73bi7ksg . +_:bcevkkf0edaas73bi7ksg "71.0 -138.0 68.0 -120.0" . +_:bcevkkf0edaas73bi7l4g9 . +_:bcevkkf0edaas73bi7l4g9 _:bcevkkf0edaas73bi7l20 . +_:bcevkkf0edaas73bi7l4g9 "5"^^ . +_:bcevkkf0edaas73bi7l2g . +_:bcevkkf0edaas73bi7l2g _:bcevkkf0edaas73bi7ksg3 . +_:bcevkkf0edaas73bi7l2g "2017-09-11" . +_:bcevkkf0edaas73bi7l2g "2015-02-09" . +_:bcevkkf0edaas73bi7l2g "The purpose of the Nunavut Database is to provide a single location for finding publications and research project descriptions about Nunavut and Nunavut-based monitoring programs." . +_:bcevkkf0edaas73bi7l2g _:bcevkkf0edaas73bi7ksg5 . +_:bcevkkf0edaas73bi7l2g "Geographic locations -> Nunavut" . +_:bcevkkf0edaas73bi7l2g "Social sciences, economics and policy -> Information sharing" . +_:bcevkkf0edaas73bi7l2g "Social sciences, economics and policy -> Northerners" . +_:bcevkkf0edaas73bi7l2g "Transdisciplinary -> Archive" . +_:bcevkkf0edaas73bi7l2g "Transdisciplinary -> Database (transdisciplinary)" . +_:bcevkkf0edaas73bi7l2g "Transdisciplinary -> Publication" . +_:bcevkkf0edaas73bi7l2g "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7l2g "Improve access to Nunavut monitoring information using the Nunavut database (NGMP ID LU04)" . +_:bcevkkf0edaas73bi7l2g _:bcevkkf0edaas73bi7ksg6 . +_:bcevkkf0edaas73bi7l2g "2013-Jan-1/2014-Dec-31" . +_:bcevkkf0edaas73bi7l2g "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12080" . +_:bcevkkf0edaas73bi7ksg5 . +_:bcevkkf0edaas73bi7ksg5 "polardata.ca" . +_:bcevkkf0edaas73bi7l4g . +_:bcevkkf0edaas73bi7l4g _:bcevkkf0edaas73bi7l50 . +_:bcevkkf0edaas73bi7l4g "2015-02-05" . +_:bcevkkf0edaas73bi7l4g "2015-02-03" . +_:bcevkkf0edaas73bi7l4g "Our long-term goal is to develop a molecular-level understanding of the uptake pathway, transformation, toxicity and detoxification of methylmercury in the Arctic marine ecosystem. The specific objectives of this project are to: 1) identify and quantify chemical forms of methylmercury and selenium in various tissues of animals at different trophic levels from the Beaufort Sea Arctic marine ecosystem; and, 2) elucidate possible mechanisms involved in methylmercury detoxification in beluga whales." . +_:bcevkkf0edaas73bi7l4g _:bcevkkf0edaas73bi7l5g . +_:bcevkkf0edaas73bi7l4g "Geographic locations -> Beaufort Sea" . +_:bcevkkf0edaas73bi7l4g "Geographic locations -> Mackenzie Shelf" . +_:bcevkkf0edaas73bi7l4g "Health sciences and contaminants -> Bioaccumulation" . +_:bcevkkf0edaas73bi7l4g "Health sciences and contaminants -> Mercury speciation" . +_:bcevkkf0edaas73bi7l4g "Health sciences and contaminants -> Methylmercury" . +_:bcevkkf0edaas73bi7l4g "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7l4g "Methylmercury Speciation at Different Trophic Levels in the Beaufort Sea Arctic Marine Ecosystem" . +_:bcevkkf0edaas73bi7l4g _:bcevkkf0edaas73bi7ks0 . +_:bcevkkf0edaas73bi7l4g "2008-Jan-1/2008-Dec-31" . +_:bcevkkf0edaas73bi7l4g "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12070" . +_:bcevkkf0edaas73bi7me04 . +_:bcevkkf0edaas73bi7me04 _:bcevkkf0edaas73bi7l6g . +_:bcevkkf0edaas73bi7me04 "20"^^ . +_:bcevkkf0edaas73bi7l70 . +_:bcevkkf0edaas73bi7l70 _:bcevkkf0edaas73bi7l7g . +_:bcevkkf0edaas73bi7l70 "2015-02-09" . +_:bcevkkf0edaas73bi7l70 "2015-02-09" . +_:bcevkkf0edaas73bi7l70 "Collaborative research in the Eastern Canadian Arctic Ocean, aimed to collect data to study the optical properties of seawater, photosynthesis and major organic cycle elements in the Labrador Sea, Baffin Bay and the Lancaster Sound." . +_:bcevkkf0edaas73bi7l70 _:bcevkkf0edaas73bi7l80 . +_:bcevkkf0edaas73bi7l70 "Geographic locations -> Baffin Bay" . +_:bcevkkf0edaas73bi7l70 "Geographic locations -> Canadian Arctic Archipelago" . +_:bcevkkf0edaas73bi7l70 "Natural sciences -> Colored dissolved organic material (CDOM)" . +_:bcevkkf0edaas73bi7l70 "Natural sciences -> Particulate organic carbon" . +_:bcevkkf0edaas73bi7l70 "Natural sciences -> Pigments" . +_:bcevkkf0edaas73bi7l70 "Natural sciences -> Radiometer" . +_:bcevkkf0edaas73bi7l70 "Natural sciences -> Remote sensing data" . +_:bcevkkf0edaas73bi7l70 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7l70 "Optical properties and carbon fluxes of the Eastern Canadian Arctic Ocean" . +_:bcevkkf0edaas73bi7l70 _:bcevkkf0edaas73bi7l8g . +_:bcevkkf0edaas73bi7l70 "2014-Jul-8/2014-Sep-25" . +_:bcevkkf0edaas73bi7l70 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12076" . +_:bcevkkf0edaas73bi7me07 . +_:bcevkkf0edaas73bi7me07 "technical support" . +_:bcevkkf0edaas73bi7me07 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7me07 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7lcg2 . +_:bcevkkf0edaas73bi7lcg2 "technical support" . +_:bcevkkf0edaas73bi7lcg2 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7lcg2 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7la0 . +_:bcevkkf0edaas73bi7la0 "technical support" . +_:bcevkkf0edaas73bi7la0 "kelley@itk.ca" . +_:bcevkkf0edaas73bi7la0 "+1-613-238-8181" . +_:bcevkkf0edaas73bi7lag . +_:bcevkkf0edaas73bi7lag "74.9 -109.5 74.9 -109.5" . +_:bcevkkf0edaas73bi7lkg7 . +_:bcevkkf0edaas73bi7lkg7 _:bcevkkf0edaas73bi7lkg8 . +_:bcevkkf0edaas73bi7lkg7 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7lk019 . +_:bcevkkf0edaas73bi7lk019 "77.22 -83.2 70.77 -69.07" . +_:bcevkkf0edaas73bi7lcg . +_:bcevkkf0edaas73bi7lcg _:bcevkkf0edaas73bi7lk01 . +_:bcevkkf0edaas73bi7lcg "Caroline Bouchard" . +_:bcevkkf0edaas73bi7l505 . +_:bcevkkf0edaas73bi7l505 "75.0 -95.0 74.5 -94.0" . +_:bcevkkf0edaas73bi7l507 . +_:bcevkkf0edaas73bi7l507 _:bcevkkf0edaas73bi7leg . +_:bcevkkf0edaas73bi7l507 "2021-02-01" . +_:bcevkkf0edaas73bi7l507 "2015-02-05" . +_:bcevkkf0edaas73bi7l507 "Monitoring of weasel (Mustela erminea) abundance, reproductive activity and predation rate on lemmings" . +_:bcevkkf0edaas73bi7l507 _:bcevkkf0edaas73bi7mtg0 . +_:bcevkkf0edaas73bi7l507 "Geographic locations -> Bylot Island" . +_:bcevkkf0edaas73bi7l507 "Natural sciences -> Abundance" . +_:bcevkkf0edaas73bi7l507 "Natural sciences -> Ermine" . +_:bcevkkf0edaas73bi7l507 "Natural sciences -> Lemmings" . +_:bcevkkf0edaas73bi7l507 "Natural sciences -> Monitoring" . +_:bcevkkf0edaas73bi7l507 "Natural sciences -> Predation" . +_:bcevkkf0edaas73bi7l507 "Natural sciences -> Tundra" . +_:bcevkkf0edaas73bi7l507 "Natural sciences -> Weasels" . +_:bcevkkf0edaas73bi7l507 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7l507 "Weasel population monitoring on Bylot Island, Nunavut" . +_:bcevkkf0edaas73bi7l507 _:bcevkkf0edaas73bi7lfg . +_:bcevkkf0edaas73bi7l507 "2007-Jun-16/Not Defined" . +_:bcevkkf0edaas73bi7l507 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12075" . +_:bcevkkf0edaas73bi7lg0 . +_:bcevkkf0edaas73bi7lg0 "73.2 -80.2 72.8 -79.6" . +_:bcevkkf0edaas73bi7ks05 . +_:bcevkkf0edaas73bi7ks05 _:bcevkkf0edaas73bi7ks06 . +_:bcevkkf0edaas73bi7ks05 "2017-09-11" . +_:bcevkkf0edaas73bi7ks05 "2015-02-09" . +_:bcevkkf0edaas73bi7ks05 "The overall goal of the project was to assess the quality of potable water in Nunavut communities from source-to-tap. This monitoring approach will allow us to identify components of the water supply system where contaminants could be introduced to potable water. Remediation strategies can then be developed to specifically address these issues, and therefore improve the quality and safety of water delivered to community residents. One of the primary goals of this project was to develop local capacity for advanced water analysis. Standard operating procedures for sampling and lab analysis will be developed, and hands-on training will be provided to Nunavut Research Institute staff, to allow for future sampling of this nature. It is the intent that this initiative will lead to a longer-term monitoring program in several other Nunavut communities." . +_:bcevkkf0edaas73bi7ks05 _:bcevkkf0edaas73bi7ks08 . +_:bcevkkf0edaas73bi7ks05 "Health sciences and contaminants -> Water quality" . +_:bcevkkf0edaas73bi7ks05 "Northern communities -> Iqaluit" . +_:bcevkkf0edaas73bi7ks05 "Northern communities -> Pangnirtung" . +_:bcevkkf0edaas73bi7ks05 "Northern communities -> Pond Inlet" . +_:bcevkkf0edaas73bi7ks05 "Social sciences, economics and policy -> Resource development" . +_:bcevkkf0edaas73bi7ks05 "Social sciences, economics and policy -> Wellness" . +_:bcevkkf0edaas73bi7ks05 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7ks05 "Nunavut drinking water quality: Source to tap monitoring 2013/2014 (NGMP ID SE03)" . +_:bcevkkf0edaas73bi7ks05 _:bcevkkf0edaas73bi7li0 . +_:bcevkkf0edaas73bi7ks05 "2013-May-1/2014-Mar-31" . +_:bcevkkf0edaas73bi7ks05 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12079" . +_:bcevkkf0edaas73bi7lig . +_:bcevkkf0edaas73bi7lig _:bcevkkf0edaas73bi7lj0 . +_:bcevkkf0edaas73bi7lig "13"^^ . +_:bcevkkf0edaas73bi7ljg . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lk0 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lkg . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7ll0 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7l4g2 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7l4g9 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lm0 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lmg . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7ln0 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lng . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lo0 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7ksg1 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7ksg8 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lig . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7mbg2 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7mbg9 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lcg6 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7kug . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lr0 . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7lrg . +_:bcevkkf0edaas73bi7ljg _:bcevkkf0edaas73bi7me04 . +_:bcevkkf0edaas73bi7ll0 . +_:bcevkkf0edaas73bi7ll0 _:bcevkkf0edaas73bi7ls0 . +_:bcevkkf0edaas73bi7ll0 "3"^^ . +_:bcevkkf0edaas73bi7l4g6 . +_:bcevkkf0edaas73bi7l4g6 "polardata.ca" . +_:bcevkkf0edaas73bi7lj0 . +_:bcevkkf0edaas73bi7lj0 _:bcevkkf0edaas73bi7lkg7 . +_:bcevkkf0edaas73bi7lj0 "2017-09-11" . +_:bcevkkf0edaas73bi7lj0 "2015-02-09" . +_:bcevkkf0edaas73bi7lj0 "The project will establish a long-term community-based monitoring program for fishery-dependent data collection for Cambridge Bay Arctic Char. Educating and training local monitors and fishers will facilitate documentation of river-specific catch and effort information by and for community resource users. Total harvest removal estimates will allow managers to determine the current status of a fishery and whether the quotas support sustainable harvest levels. The data produced from catch and effort estimates can be used as a proxy for population abundance and for monitoring long term trends in the fishery. These data can be integrated into models to better predict the outcome of alternative management regimes or what effect current management approaches may have on the stock. An established time series is critical to achieve greater accuracy in the population estimates and implement improved management strategies that will ensure Arctic Char are managed in a sustainable manor. This monitoring program will occur annually at commercial waterbodies, (i.e., Ekalluk, Halovik, Lauchlan, Paliryuak, and Jayco rivers) typically spanning from early July to late September. The initial length of the project will be seven years, reflecting given that the minimum number of years needed to collect catch-per-unit-effort (CPUE) data is five years. This will also allow for modifications to the study design and monitoring protocol. Training and education of local monitors and fishers will benefit the community in the long-term, increasing the community's scientific knowledge of their fish resource and the framework applied for co-management decision making. The knowledge transfer and subsequent skills developed through this monitoring program will be a valuable asset which will allow Inuinuktut and other northerners to initiate and further engage in future cumulative impact monitoring programs and fish stock assessment surveys in the Canadian north." . +_:bcevkkf0edaas73bi7lj0 _:bcevkkf0edaas73bi7lkg9 . +_:bcevkkf0edaas73bi7lj0 "Natural sciences -> Arctic char" . +_:bcevkkf0edaas73bi7lj0 "Natural sciences -> Community-based monitoring" . +_:bcevkkf0edaas73bi7lj0 "Natural sciences -> Fisheries" . +_:bcevkkf0edaas73bi7lj0 "Natural sciences -> Fishes" . +_:bcevkkf0edaas73bi7lj0 "Natural sciences -> Freshwaters" . +_:bcevkkf0edaas73bi7lj0 "Social sciences, economics and policy -> Education" . +_:bcevkkf0edaas73bi7lj0 "Social sciences, economics and policy -> Training" . +_:bcevkkf0edaas73bi7lj0 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7lj0 "Establishing a long-term, river-based monitoring system for Arctic Char in the Cambridge Bay area, Nunavut (NGMP ID EC02)" . +_:bcevkkf0edaas73bi7lj0 _:bcevkkf0edaas73bi7mbg0 . +_:bcevkkf0edaas73bi7lj0 "2011-Mar-1/2018-Sep-1" . +_:bcevkkf0edaas73bi7lj0 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12082" . +_:bcevkkf0edaas73bi7lu0 . +_:bcevkkf0edaas73bi7lu0 _:bcevkkf0edaas73bi7me00 . +_:bcevkkf0edaas73bi7lu0 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7lk0 . +_:bcevkkf0edaas73bi7lk0 _:bcevkkf0edaas73bi7l4g . +_:bcevkkf0edaas73bi7lk0 "1"^^ . +_:bcevkkf0edaas73bi7lcg5 . +_:bcevkkf0edaas73bi7lcg5 "73.04 -86.24 66.15 -65.7" . +_:bcevkkf0edaas73bi7lvg . +_:bcevkkf0edaas73bi7lvg "polardata.ca" . +_:bcevkkf0edaas73bi7me06 . +_:bcevkkf0edaas73bi7me06 _:bcevkkf0edaas73bi7me07 . +_:bcevkkf0edaas73bi7me06 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7m0g . +_:bcevkkf0edaas73bi7m0g "polardata.ca" . +_:bcevkkf0edaas73bi7m10 . +_:bcevkkf0edaas73bi7m10 "81.22 -149.0 53.92 -55.38" . +_:bcevkkf0edaas73bi7ks00 . +_:bcevkkf0edaas73bi7ks00 "technical support" . +_:bcevkkf0edaas73bi7ks00 "scott.lamoureux@queensu.ca" . +_:bcevkkf0edaas73bi7ks00 "+1-613-533-6033" . +_:bcevkkf0edaas73bi7lkg1 . +_:bcevkkf0edaas73bi7lkg1 "technical support" . +_:bcevkkf0edaas73bi7lkg1 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7lkg1 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7lkg9 . +_:bcevkkf0edaas73bi7lkg9 "polardata.ca" . +_:bcevkkf0edaas73bi7mbg1 . +_:bcevkkf0edaas73bi7mbg1 "69.1 -105.25 69.1 -105.13" . +_:bcevkkf0edaas73bi7mbg8 . +_:bcevkkf0edaas73bi7mbg8 "65.28 -70.92 65.28 -64.08" . +_:bcevkkf0edaas73bi7m3g . +_:bcevkkf0edaas73bi7m3g "polardata.ca" . +_:bcevkkf0edaas73bi7m40 . +_:bcevkkf0edaas73bi7m40 "polardata.ca" . +_:bcevkkf0edaas73bi7ksg3 . +_:bcevkkf0edaas73bi7ksg3 _:bcevkkf0edaas73bi7m4g . +_:bcevkkf0edaas73bi7ksg3 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7lkg2 . +_:bcevkkf0edaas73bi7lkg2 "polardata.ca" . +_:bcevkkf0edaas73bi7m5g . +_:bcevkkf0edaas73bi7m5g _:bcevkkf0edaas73bi7mt00 . +_:bcevkkf0edaas73bi7m6g . +_:bcevkkf0edaas73bi7m6g _:bcevkkf0edaas73bi7lag . +_:bcevkkf0edaas73bi7m70 . +_:bcevkkf0edaas73bi7m70 _:bcevkkf0edaas73bi7l10 . +_:bcevkkf0edaas73bi7m70 "Scott Lamoureux" . +_:bcevkkf0edaas73bi7mbg4 . +_:bcevkkf0edaas73bi7mbg4 _:bcevkkf0edaas73bi7mbg5 . +_:bcevkkf0edaas73bi7mbg4 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7lcg4 . +_:bcevkkf0edaas73bi7lcg4 _:bcevkkf0edaas73bi7lcg5 . +_:bcevkkf0edaas73bi7m405 . +_:bcevkkf0edaas73bi7m405 _:bcevkkf0edaas73bi7m9g . +_:bcevkkf0edaas73bi7l4g2 . +_:bcevkkf0edaas73bi7l4g2 _:bcevkkf0edaas73bi7l4g3 . +_:bcevkkf0edaas73bi7l4g2 "4"^^ . +_:bcevkkf0edaas73bi7li0 . +_:bcevkkf0edaas73bi7li0 _:bcevkkf0edaas73bi7mag . +_:bcevkkf0edaas73bi7mb0 . +_:bcevkkf0edaas73bi7mb0 "technical support" . +_:bcevkkf0edaas73bi7mb0 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7mb0 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7lkg . +_:bcevkkf0edaas73bi7lkg _:bcevkkf0edaas73bi7mbg . +_:bcevkkf0edaas73bi7lkg "2"^^ . +_:bcevkkf0edaas73bi7mc0 . +_:bcevkkf0edaas73bi7mc0 _:bcevkkf0edaas73bi7mcg . +_:bcevkkf0edaas73bi7mtg0 . +_:bcevkkf0edaas73bi7mtg0 "polardata.ca" . +_:bcevkkf0edaas73bi7lmg . +_:bcevkkf0edaas73bi7lmg _:bcevkkf0edaas73bi7l70 . +_:bcevkkf0edaas73bi7lmg "7"^^ . +_:bcevkkf0edaas73bi7md0 . +_:bcevkkf0edaas73bi7md0 _:bcevkkf0edaas73bi7mdg . +_:bcevkkf0edaas73bi7mbg . +_:bcevkkf0edaas73bi7mbg _:bcevkkf0edaas73bi7lcg . +_:bcevkkf0edaas73bi7mbg "2015-04-07" . +_:bcevkkf0edaas73bi7mbg "2015-02-04" . +_:bcevkkf0edaas73bi7mbg "Arctic marine food webs are centered on polar cod (Boreogadus saida), a small, largely pelagic gadid, which movement and migration remain unclear, especially for the early life stages. The present study examined the otolith chemistry of juvenile polar cod from six oceanographic regions of the Arctic Ocean in order to document patterns of spatial segregation, dispersion and migration during the species early life. The freshwater winter refuge hypothesis, suggesting that polar cod larvae start to hatch in winter in freshwater-influenced regions but only later in the season in purely marine regions, was also tested." . +_:bcevkkf0edaas73bi7mbg _:bcevkkf0edaas73bi7m40 . +_:bcevkkf0edaas73bi7mbg "Geographic locations -> Amundsen Gulf" . +_:bcevkkf0edaas73bi7mbg "Geographic locations -> Baffin Bay" . +_:bcevkkf0edaas73bi7mbg "Geographic locations -> Frobisher Bay" . +_:bcevkkf0edaas73bi7mbg "Geographic locations -> Hudson Bay" . +_:bcevkkf0edaas73bi7mbg "Geographic locations -> Lancaster Sound" . +_:bcevkkf0edaas73bi7mbg "Geographic locations -> Laptev Sea" . +_:bcevkkf0edaas73bi7mbg "Natural sciences -> Arctic cod" . +_:bcevkkf0edaas73bi7mbg "Natural sciences -> Otolith" . +_:bcevkkf0edaas73bi7mbg "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7mbg "Otolith microchemistry of polar cod (Boreogadus saida) from six Arctic regions" . +_:bcevkkf0edaas73bi7mbg _:bcevkkf0edaas73bi7me0 . +_:bcevkkf0edaas73bi7mbg "2005-Aug-1/2006-Oct-29" . +_:bcevkkf0edaas73bi7mbg "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12071" . +_:bcevkkf0edaas73bi7meg . +_:bcevkkf0edaas73bi7meg _:bcevkkf0edaas73bi7ks00 . +_:bcevkkf0edaas73bi7meg "Scott Lamoureux" . +_:bcevkkf0edaas73bi7mbg9 . +_:bcevkkf0edaas73bi7mbg9 _:bcevkkf0edaas73bi7mf0 . +_:bcevkkf0edaas73bi7mbg9 "15"^^ . +_:bcevkkf0edaas73bi7lcg3 . +_:bcevkkf0edaas73bi7lcg3 "polardata.ca" . +_:bcevkkf0edaas73bi7lcg7 . +_:bcevkkf0edaas73bi7lcg7 _:bcevkkf0edaas73bi7lcg8 . +_:bcevkkf0edaas73bi7lcg7 "2017-09-08" . +_:bcevkkf0edaas73bi7lcg7 "2015-02-10" . +_:bcevkkf0edaas73bi7lcg7 "The general objective of this project was to monitor the three species of large terrestrial carnivores of Nunavut: wolverine (Gulo gulo), wolf (Canis lupus), and grizzly bear (Ursus arctos). These three species play essential functions in the terrestrial ecosystem of Nunavut and are also tightly linked with some traditional activities, skills and knowledge of the Inuit people. Wolverine, wolf and grizzly bear also represent key indicators of environmental health because their demography depends on a large prey base and is influenced by the various pressures arising from changes in both local land use and the global environment. The specific objectives of this project were: i) to analyse ecological samples and data collected in previous years of the project, ii) to enhance and pursue our community-based harvest collection program of carcasses of wolverine, wolf, and grizzly bear, and iii) to collect Inuit Qaujimajatuqangit (IQ) to document trends in the abundance and distribution of these three species and to document important information on their ecology. (This project is part of a larger research program which has as main objectives to: 1) Assess large carnivores population status, distribution and spatio-temporal trends across Nunavut; 2) Better understand the role of large carnivores in the functioning of the Arctic terrestrial ecosystem and their potential implication in the recent decline of several tundra caribou herds; 3) Develop ecological indicators of environmental change using large carnivores; and 4) Develop community-based ecological monitoring through a combination of scientific methods and IQ)." . +_:bcevkkf0edaas73bi7lcg7 _:bcevkkf0edaas73bi7mh0 . +_:bcevkkf0edaas73bi7lcg7 "Inuktitut keywords -> Inuit Qaujimajatuqangit" . +_:bcevkkf0edaas73bi7lcg7 "Natural sciences -> Carnivores" . +_:bcevkkf0edaas73bi7lcg7 "Natural sciences -> Grizzly bear" . +_:bcevkkf0edaas73bi7lcg7 "Natural sciences -> Habitats" . +_:bcevkkf0edaas73bi7lcg7 "Natural sciences -> Mammals" . +_:bcevkkf0edaas73bi7lcg7 "Natural sciences -> Predation" . +_:bcevkkf0edaas73bi7lcg7 "Natural sciences -> Stomach contents" . +_:bcevkkf0edaas73bi7lcg7 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7lcg7 "Monitoring of Nunavut Large Terrestrial Carnivores: Wolverine, Wolves, and Grizzly Bear (NGMP ID EC10)" . +_:bcevkkf0edaas73bi7lcg7 _:bcevkkf0edaas73bi7md0 . +_:bcevkkf0edaas73bi7lcg7 "2009-Jan-1/2014-Dec-31" . +_:bcevkkf0edaas73bi7lcg7 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12085" . +_:bcevkkf0edaas73bi7lcg9 . +_:bcevkkf0edaas73bi7lcg9 "technical support" . +_:bcevkkf0edaas73bi7lcg9 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7lcg9 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7mi0 . +_:bcevkkf0edaas73bi7mi0 _:bcevkkf0edaas73bi7mb0 . +_:bcevkkf0edaas73bi7mi0 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7l4g0 . +_:bcevkkf0edaas73bi7l4g0 _:bcevkkf0edaas73bi7l4g1 . +_:bcevkkf0edaas73bi7l80 . +_:bcevkkf0edaas73bi7l80 "polardata.ca" . +_:bcevkkf0edaas73bi7mjg . +_:bcevkkf0edaas73bi7mjg _:bcevkkf0edaas73bi7m70 . +_:bcevkkf0edaas73bi7mjg "2019-11-04" . +_:bcevkkf0edaas73bi7mjg "2015-02-09" . +_:bcevkkf0edaas73bi7mjg "Water jet drilled bore holes at two locations at the Cape Bounty Arctic Watershed Observatory (CBAWO) to 7 m depth. Sensors installed to measure temperature throughout the year to determine changes to the thermal state of the upper permafrost. Stations are located UTM 12X WGS84 0540791 8313018 and 0540879 8316305." . +_:bcevkkf0edaas73bi7mjg _:bcevkkf0edaas73bi7mk0 . +_:bcevkkf0edaas73bi7mjg "Geographic locations -> Cape Bounty" . +_:bcevkkf0edaas73bi7mjg "Natural sciences -> Active layer" . +_:bcevkkf0edaas73bi7mjg "Natural sciences -> Climate" . +_:bcevkkf0edaas73bi7mjg "Natural sciences -> Permafrost" . +_:bcevkkf0edaas73bi7mjg "Natural sciences -> Soil temperature" . +_:bcevkkf0edaas73bi7mjg "Natural sciences -> Temperature" . +_:bcevkkf0edaas73bi7mjg "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7mjg "2012-2019 Borehole temperature profiles, Cape Bounty, Nunavut" . +_:bcevkkf0edaas73bi7mjg _:bcevkkf0edaas73bi7mkg . +_:bcevkkf0edaas73bi7mjg "2012-Jul-15/2019-Jul-31" . +_:bcevkkf0edaas73bi7mjg "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12077" . +_:bcevkkf0edaas73bi7mkg . +_:bcevkkf0edaas73bi7mkg _:bcevkkf0edaas73bi7ml0 . +_:bcevkkf0edaas73bi7ksg1 . +_:bcevkkf0edaas73bi7ksg1 _:bcevkkf0edaas73bi7l2g . +_:bcevkkf0edaas73bi7ksg1 "11"^^ . +_:bcevkkf0edaas73bi7lkg0 . +_:bcevkkf0edaas73bi7lkg0 _:bcevkkf0edaas73bi7lkg1 . +_:bcevkkf0edaas73bi7lkg0 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7mm0 . +_:bcevkkf0edaas73bi7mm0 _:bcevkkf0edaas73bi7lcg2 . +_:bcevkkf0edaas73bi7mm0 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7lcg8 . +_:bcevkkf0edaas73bi7lcg8 _:bcevkkf0edaas73bi7lcg9 . +_:bcevkkf0edaas73bi7lcg8 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7lfg . +_:bcevkkf0edaas73bi7lfg _:bcevkkf0edaas73bi7lg0 . +_:bcevkkf0edaas73bi7l4g4 . +_:bcevkkf0edaas73bi7l4g4 _:bcevkkf0edaas73bi7l4g5 . +_:bcevkkf0edaas73bi7l4g4 "Environment and Climate Change Canada, Government of Canada" . +_:bcevkkf0edaas73bi7l4g4 "https://open.canada.ca/data/en/dataset/45321640-4ef9-42e9-ab49-a781b69e6267" . +_:bcevkkf0edaas73bi7mn0 . +_:bcevkkf0edaas73bi7mn0 "technical support" . +_:bcevkkf0edaas73bi7mn0 "gilles.gauthier@bio.ulaval.ca" . +_:bcevkkf0edaas73bi7mn0 "+1-1-418-656-5507" . +_:bcevkkf0edaas73bi7mag . +_:bcevkkf0edaas73bi7mag "72.7 -77.96 63.75 -65.7" . +_:bcevkkf0edaas73bi7kv0 . +_:bcevkkf0edaas73bi7kv0 _:bcevkkf0edaas73bi7mng . +_:bcevkkf0edaas73bi7kv0 "2017-09-08" . +_:bcevkkf0edaas73bi7kv0 "2015-02-10" . +_:bcevkkf0edaas73bi7kv0 "The purpose of this study was to establish the present composition, concentrations and fluxes of petroleum hydrocarbons (alkanes, cycloalkanes aromatics) and polyaromatic hydrocarbons (PAHs) in surface sediments across the Baffin Bay - eastern Lancaster Sound region, prior to any oil and gas exploration and exploitation in the area; to assess the geographical variability of current hydrocarbon levels in this region; and to determine their natural variability over time prior to the industrial period (i.e. about pre-1850). The short-term objective to achieving this was to determine hydrocarbon concentrations in 40 samples of marine sediments from sediment cores recently collected from 10 locations across the region. From each core, 4 slices were analyzed (4 slices - 1 at surface, and 3 lower down) representing different time periods from pre-industrial to present. The longer-term objective was to use hydrocarbon composition biomarkers derived from these data to establish their sources (natural seeps, terrestrial run-off, oil/gas combustion-related) in the marine ecosystem in this part of the Canadian Arctic, prior to any future oil and gas exploration in the region and prior to the likely expansion of shipping traffic through the Northwest Passage." . +_:bcevkkf0edaas73bi7kv0 _:bcevkkf0edaas73bi7lvg . +_:bcevkkf0edaas73bi7kv0 "Health sciences and contaminants -> Hydrocarbon" . +_:bcevkkf0edaas73bi7kv0 "Health sciences and contaminants -> Water quality" . +_:bcevkkf0edaas73bi7kv0 "Natural sciences -> Coastal dynamics" . +_:bcevkkf0edaas73bi7kv0 "Natural sciences -> Invertebrates" . +_:bcevkkf0edaas73bi7kv0 "Natural sciences -> Marine sediments" . +_:bcevkkf0edaas73bi7kv0 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7kv0 "Spatial and temporal variations of petroleum hydrocarbons in marine sediments of Baffin Bay, Eastern Canadian Arctic (NGMP ID EC13)" . +_:bcevkkf0edaas73bi7kv0 _:bcevkkf0edaas73bi7mo0 . +_:bcevkkf0edaas73bi7kv0 "2011-Jan-1/2013-Dec-31" . +_:bcevkkf0edaas73bi7kv0 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12086" . +_:bcevkkf0edaas73bi7mng . +_:bcevkkf0edaas73bi7mng _:bcevkkf0edaas73bi7mog . +_:bcevkkf0edaas73bi7mng "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7lrg . +_:bcevkkf0edaas73bi7lrg _:bcevkkf0edaas73bi7mp0 . +_:bcevkkf0edaas73bi7lrg "19"^^ . +_:bcevkkf0edaas73bi7l6g . +_:bcevkkf0edaas73bi7l6g _:bcevkkf0edaas73bi7me06 . +_:bcevkkf0edaas73bi7l6g "2017-09-08" . +_:bcevkkf0edaas73bi7l6g "2015-02-10" . +_:bcevkkf0edaas73bi7l6g "The specific study objectives are to: 1. Provide basic information about demography, diet, and space-use of the seal population in Gulf of Boothia and thereby serve as a reference for future studies; 2. Collect blubber samples from seals that can be used to estimate the diets of polar bears using a technique known as fatty acid signature analysis. Polar bear fat samples will come from bears taken in the annual subsistence hunt and sampled according to current harvest regulations; 3. Build predictive models of seal population dynamics in the context of climate warming; 4. Monitor the body condition of seals; 5. Propose conservation initiatives to mitigate environmental impacts of climate warming and increased economic activities that may negatively affect seals and, to monitor their success in an adaptive management regime; 6. Work with the community of Kugaaruk to develop and implement a long-term Community-Based Monitoring (CBM) network program." . +_:bcevkkf0edaas73bi7l6g _:bcevkkf0edaas73bi7mpg . +_:bcevkkf0edaas73bi7l6g "Inuktitut keywords -> Inuit Qaujimajatuqangit" . +_:bcevkkf0edaas73bi7l6g "Natural sciences -> Climate change" . +_:bcevkkf0edaas73bi7l6g "Natural sciences -> Community-based monitoring" . +_:bcevkkf0edaas73bi7l6g "Natural sciences -> Ecology" . +_:bcevkkf0edaas73bi7l6g "Natural sciences -> Polar bear" . +_:bcevkkf0edaas73bi7l6g "Natural sciences -> Predation" . +_:bcevkkf0edaas73bi7l6g "Natural sciences -> Sea ice" . +_:bcevkkf0edaas73bi7l6g "Natural sciences -> Seals" . +_:bcevkkf0edaas73bi7l6g "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7l6g "Community-Based Monitoring of Ice-Breeding Seals and Polar Bear Feeding in the Gulf of Boothia (NGMP ID EC23)" . +_:bcevkkf0edaas73bi7l6g _:bcevkkf0edaas73bi7m5g . +_:bcevkkf0edaas73bi7l6g "2012-Jan-1/2015-Mar-31" . +_:bcevkkf0edaas73bi7l6g "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12089" . +_:bcevkkf0edaas73bi7l4g3 . +_:bcevkkf0edaas73bi7l4g3 _:bcevkkf0edaas73bi7l4g4 . +_:bcevkkf0edaas73bi7l4g3 "2021-03-29" . +_:bcevkkf0edaas73bi7l4g3 "2015-02-04" . +_:bcevkkf0edaas73bi7l4g3 "The purpose of this project is to develop information on levels and time trends of contaminants in the Arctic ocean waters using a community based approach. The project was initiated in 2007 by PhD student Adam Morris working with Peter Amaraulik Sr. from Resolute Bay as part of his PhD research and continued as an Northern Contaminates Program (NCP) funded project in 2011-12 and again in 2014-15 and 2015-16. The project is now part of NCP's core monitoring program and has expanded in scope on a geographic scale, sampling strategies, and targeted contaminants. Currently, this project uses ultratrace analysis of seawater for mercury and methyl mercury species, perfluoroalkyl substances (PFAS), organophosphate ester flame retardants (OPE), brominated flame retardants (BFR), polychlorinated biphenyls (PCB), polycyclic aromatic carbons (PACs/PAH), and several other legacy persistent organic pollutants (POPs). To the greatest extent possible, we partner with community members to lead sampling. The communities we work with include: Resolute Bay, Nain, and Cambridge Bay." . +_:bcevkkf0edaas73bi7l4g3 _:bcevkkf0edaas73bi7l4g6 . +_:bcevkkf0edaas73bi7l4g3 "Geographic locations -> Arctic Ocean" . +_:bcevkkf0edaas73bi7l4g3 "Geographic locations -> Barrow Strait" . +_:bcevkkf0edaas73bi7l4g3 "Geographic locations -> Labrador Sea" . +_:bcevkkf0edaas73bi7l4g3 "Geographic locations -> Nunatsiavut" . +_:bcevkkf0edaas73bi7l4g3 "Geographic locations -> Nunavut" . +_:bcevkkf0edaas73bi7l4g3 "Geographic locations -> Resolute Bay" . +_:bcevkkf0edaas73bi7l4g3 "Health sciences and contaminants -> Mercury" . +_:bcevkkf0edaas73bi7l4g3 "Health sciences and contaminants -> Methylmercury" . +_:bcevkkf0edaas73bi7l4g3 "Health sciences and contaminants -> Perfluorinated alkylated substances" . +_:bcevkkf0edaas73bi7l4g3 "Health sciences and contaminants -> Perfluorooctanesulfonate" . +_:bcevkkf0edaas73bi7l4g3 "Health sciences and contaminants -> Persistent organic pollutants (POPs)" . +_:bcevkkf0edaas73bi7l4g3 "Natural sciences -> Community-based monitoring" . +_:bcevkkf0edaas73bi7l4g3 "Natural sciences -> Contaminants" . +_:bcevkkf0edaas73bi7l4g3 "Natural sciences -> Seawater" . +_:bcevkkf0edaas73bi7l4g3 "Natural sciences -> Water" . +_:bcevkkf0edaas73bi7l4g3 "Northern communities -> Cambridge Bay" . +_:bcevkkf0edaas73bi7l4g3 "Northern communities -> Nain" . +_:bcevkkf0edaas73bi7l4g3 "Northern communities -> Qausuittuq" . +_:bcevkkf0edaas73bi7l4g3 "Social sciences, economics and policy -> Capacity building" . +_:bcevkkf0edaas73bi7l4g3 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7l4g3 "Community Based Seawater Monitoring for Organic Contaminants and Mercury in the Canadian Arctic" . +_:bcevkkf0edaas73bi7l4g3 _:bcevkkf0edaas73bi7mc0 . +_:bcevkkf0edaas73bi7l4g3 "2007-May-1/Not Defined" . +_:bcevkkf0edaas73bi7l4g3 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12073" . +_:bcevkkf0edaas73bi7mo0 . +_:bcevkkf0edaas73bi7mo0 _:bcevkkf0edaas73bi7lk019 . +_:bcevkkf0edaas73bi7mbg6 . +_:bcevkkf0edaas73bi7mbg6 "polardata.ca" . +_:bcevkkf0edaas73bi7lng . +_:bcevkkf0edaas73bi7lng _:bcevkkf0edaas73bi7mqg . +_:bcevkkf0edaas73bi7lng "9"^^ . +_:bcevkkf0edaas73bi7lr0 . +_:bcevkkf0edaas73bi7lr0 _:bcevkkf0edaas73bi7m401 . +_:bcevkkf0edaas73bi7lr0 "18"^^ . +_:bcevkkf0edaas73bi7mrg . +_:bcevkkf0edaas73bi7mrg _:bcevkkf0edaas73bi7la0 . +_:bcevkkf0edaas73bi7mrg "Inuit Qaujisarvingat, Inuit Tapiriit Kanatami" . +_:bcevkkf0edaas73bi7mrg "www.inuitknowledge.ca" . +_:bcevkkf0edaas73bi7ks06 . +_:bcevkkf0edaas73bi7ks06 _:bcevkkf0edaas73bi7ks07 . +_:bcevkkf0edaas73bi7ks06 "Nunavut General Monitoring Plan" . +_:bcevkkf0edaas73bi7ksg8 . +_:bcevkkf0edaas73bi7ksg8 _:bcevkkf0edaas73bi7ksg9 . +_:bcevkkf0edaas73bi7ksg8 "12"^^ . +_:bcevkkf0edaas73bi7lkg8 . +_:bcevkkf0edaas73bi7lkg8 "technical support" . +_:bcevkkf0edaas73bi7lkg8 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7lkg8 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7mt0 . +_:bcevkkf0edaas73bi7mt0 "81.0 -155.0 62.0 135.0" . +_:bcevkkf0edaas73bi7l7g . +_:bcevkkf0edaas73bi7l7g _:bcevkkf0edaas73bi7ku0 . +_:bcevkkf0edaas73bi7l7g "Joannie Ferland" . +_:bcevkkf0edaas73bi7mqg . +_:bcevkkf0edaas73bi7mqg _:bcevkkf0edaas73bi7meg . +_:bcevkkf0edaas73bi7mqg "2015-02-18" . +_:bcevkkf0edaas73bi7mqg "2015-02-09" . +_:bcevkkf0edaas73bi7mqg "The river thermal, hydrochemical and isotopic composition was surveyed and sampled through the baseflow period (July) to determine the contributions of lateral inflows from slopes to river flow. Temperature was measured with a high sensitivity tow devise along the river channel and sampling was carried out at fixed stations at regular intervals. The goal was to improve our understanding of slope-channel water exchanges in Arctic rivers." . +_:bcevkkf0edaas73bi7mqg _:bcevkkf0edaas73bi7m0g . +_:bcevkkf0edaas73bi7mqg "Geographic locations -> Cape Bounty" . +_:bcevkkf0edaas73bi7mqg "Natural sciences -> Hydrology" . +_:bcevkkf0edaas73bi7mqg "Natural sciences -> Isotopes" . +_:bcevkkf0edaas73bi7mqg "Natural sciences -> River" . +_:bcevkkf0edaas73bi7mqg "Natural sciences -> Soil moisture" . +_:bcevkkf0edaas73bi7mqg "Natural sciences -> Stable isotope tracers" . +_:bcevkkf0edaas73bi7mqg "Natural sciences -> Water chemistry" . +_:bcevkkf0edaas73bi7mqg "Natural sciences -> Water temperature" . +_:bcevkkf0edaas73bi7mqg "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7mqg "2014 West River thermal, hydrochemical and isotopic profiling" . +_:bcevkkf0edaas73bi7mqg _:bcevkkf0edaas73bi7m6g . +_:bcevkkf0edaas73bi7mqg "2014-Jul-6/2014-Jul-27" . +_:bcevkkf0edaas73bi7mqg "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12078" . +_:bcevkkf0edaas73bi7m4g . +_:bcevkkf0edaas73bi7m4g "technical support" . +_:bcevkkf0edaas73bi7m4g "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7m4g "+1-867-975-4654" . +_:bcevkkf0edaas73bi7mtg . +_:bcevkkf0edaas73bi7mtg "technical support" . +_:bcevkkf0edaas73bi7mtg "wangf@ms.umanitoba.ca" . +_:bcevkkf0edaas73bi7mtg "+1-(204) 474-6250" . +_:bcevkkf0edaas73bi7lcg6 . +_:bcevkkf0edaas73bi7lcg6 _:bcevkkf0edaas73bi7lcg7 . +_:bcevkkf0edaas73bi7lcg6 "16"^^ . +_:bcevkkf0edaas73bi7me03 . +_:bcevkkf0edaas73bi7me03 "76.25 -96.32 75.82 -89.25" . +_:bcevkkf0edaas73bi7mcg . +_:bcevkkf0edaas73bi7mcg "75.0 -104.0 55.0 -62.0" . +_:bcevkkf0edaas73bi7mog . +_:bcevkkf0edaas73bi7mog "technical support" . +_:bcevkkf0edaas73bi7mog "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7mog "+1-867-975-4654" . +_:bcevkkf0edaas73bi7l50 . +_:bcevkkf0edaas73bi7l50 _:bcevkkf0edaas73bi7mtg . +_:bcevkkf0edaas73bi7l50 "Feiyue Wang" . +_:bcevkkf0edaas73bi7mu0 . +_:bcevkkf0edaas73bi7mu0 "polardata.ca" . +_:bcevkkf0edaas73bi7l20 . +_:bcevkkf0edaas73bi7l20 _:bcevkkf0edaas73bi7mug . +_:bcevkkf0edaas73bi7l20 "2021-02-12" . +_:bcevkkf0edaas73bi7l20 "2015-02-04" . +_:bcevkkf0edaas73bi7l20 "This purpose of this project is to study how food webs influence the transfer of contaminants to the top predator, landlocked Arctic char, in the Northern Contaminants Program's (NCP) 'focal ecosystem' lakes on Cornwallis Island. Previous studies have shown that mercury and perfluorinated chemicals are carried into Arctic lakes during spring melt and are taken up and concentrated through the food web into char. This research examined food web accumulation of mercury, which has both natural and human sources and undergoes complex transformations in lakes, and of perfluorinated chemicals, which are entirely human-made, arrive solely by atmospheric deposition, and are not transformed in the environment. We built on previous research by contrasting how these two persistent contaminants concentrate through lake food webs and examining factors that affect their levels in char and other organisms in High Arctic lakes. The research focused on lakes in the Resolute Bay area (North, Small, Meretta, Resolute, 9 Mile, Char), because the arctic char and the supporting food webs of these lakes hd already been studied." . +_:bcevkkf0edaas73bi7l20 _:bcevkkf0edaas73bi7mv0 . +_:bcevkkf0edaas73bi7l20 "Geographic locations -> Cornwallis Island" . +_:bcevkkf0edaas73bi7l20 "Geographic locations -> Resolute Bay" . +_:bcevkkf0edaas73bi7l20 "Health sciences and contaminants -> Mercury" . +_:bcevkkf0edaas73bi7l20 "Health sciences and contaminants -> Perfluorinated alkylated substances" . +_:bcevkkf0edaas73bi7l20 "Natural sciences -> Arctic char" . +_:bcevkkf0edaas73bi7l20 "Natural sciences -> Chironomids" . +_:bcevkkf0edaas73bi7l20 "Natural sciences -> Food web" . +_:bcevkkf0edaas73bi7l20 "Natural sciences -> Lake" . +_:bcevkkf0edaas73bi7l20 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7l20 "Contaminant Bioaccumulation in Landlocked Char Food Webs in the High Arctic" . +_:bcevkkf0edaas73bi7l20 _:bcevkkf0edaas73bi7mvg . +_:bcevkkf0edaas73bi7l20 "2010-Jun-1/2012-Mar-28" . +_:bcevkkf0edaas73bi7l20 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12074" . +_:bcevkkf0edaas73bi7ln0 . +_:bcevkkf0edaas73bi7ln0 _:bcevkkf0edaas73bi7mjg . +_:bcevkkf0edaas73bi7ln0 "8"^^ . +_:bcevkkf0edaas73bi7ml0 . +_:bcevkkf0edaas73bi7ml0 "74.9 -109.5 74.9 -109.5" . +_:bcevkkf0edaas73bi7ks07 . +_:bcevkkf0edaas73bi7ks07 "technical support" . +_:bcevkkf0edaas73bi7ks07 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7ks07 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7ksg9 . +_:bcevkkf0edaas73bi7ksg9 _:bcevkkf0edaas73bi7lkg0 . +_:bcevkkf0edaas73bi7ksg9 "2017-09-11" . +_:bcevkkf0edaas73bi7ksg9 "2015-02-09" . +_:bcevkkf0edaas73bi7ksg9 "This project will review, evaluate and present oil slick detection and modelling solutions using Earth Observation (EO) technology for the Hudson and Davis Strait regions. The project will show how these technologies can be included in local response, including how community involvement can be integrated into preparation for and response to oil spills in local waters. The three specific objectives of the project include: 1) To review and evaluate the state of the art in EO for oil spill detection solutions that is relevant to the Hudson and Davis Strait areas; 2) To identify gaps where local knowledge and capacity can contribute to improved oil spill surveillance and response; and 3) To show how EO technology can be better integrated into response efforts in local Nunavut communities." . +_:bcevkkf0edaas73bi7ksg9 _:bcevkkf0edaas73bi7lkg2 . +_:bcevkkf0edaas73bi7ksg9 "Geographic locations -> Davis Strait" . +_:bcevkkf0edaas73bi7ksg9 "Health sciences and contaminants -> Water quality" . +_:bcevkkf0edaas73bi7ksg9 "Natural sciences -> Contaminants" . +_:bcevkkf0edaas73bi7ksg9 "Natural sciences -> Remote sensing data" . +_:bcevkkf0edaas73bi7ksg9 "Natural sciences -> Sea ice" . +_:bcevkkf0edaas73bi7ksg9 "Social sciences, economics and policy -> Economics" . +_:bcevkkf0edaas73bi7ksg9 "Social sciences, economics and policy -> Environment surveillance" . +_:bcevkkf0edaas73bi7ksg9 "Social sciences, economics and policy -> Food security" . +_:bcevkkf0edaas73bi7ksg9 "Social sciences, economics and policy -> Transportation" . +_:bcevkkf0edaas73bi7ksg9 "Transdisciplinary -> Petroleum industry" . +_:bcevkkf0edaas73bi7ksg9 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7ksg9 "Oil spill detection and modelling solutions for Hudson and Davis Strait (NGMP ID LU06)" . +_:bcevkkf0edaas73bi7ksg9 _:bcevkkf0edaas73bi7kt0 . +_:bcevkkf0edaas73bi7ksg9 "2013-May-1/2013-Dec-31" . +_:bcevkkf0edaas73bi7ksg9 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12081" . +_:bcevkkf0edaas73bi7n00 . +_:bcevkkf0edaas73bi7n00 _:bcevkkf0edaas73bi7mbg8 . +_:bcevkkf0edaas73bi7me0 . +_:bcevkkf0edaas73bi7me0 _:bcevkkf0edaas73bi7mt0 . +_:bcevkkf0edaas73bi7ks08 . +_:bcevkkf0edaas73bi7ks08 "polardata.ca" . +_:bcevkkf0edaas73bi7lkg4 . +_:bcevkkf0edaas73bi7lkg4 "72.0 -74.0 61.0 -60.0" . +_:bcevkkf0edaas73bi7me00 . +_:bcevkkf0edaas73bi7me00 "technical support" . +_:bcevkkf0edaas73bi7me00 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7me00 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7mk0 . +_:bcevkkf0edaas73bi7mk0 "polardata.ca" . +_:bcevkkf0edaas73bi7leg . +_:bcevkkf0edaas73bi7leg _:bcevkkf0edaas73bi7mn0 . +_:bcevkkf0edaas73bi7leg "Gilles Gauthier" . +_:bcevkkf0edaas73bi7mbg2 . +_:bcevkkf0edaas73bi7mbg2 _:bcevkkf0edaas73bi7mbg3 . +_:bcevkkf0edaas73bi7mbg2 "14"^^ . +_:bcevkkf0edaas73bi7m9g . +_:bcevkkf0edaas73bi7m9g "65.1 -82.92 61.82 -67.52" . +_:bcevkkf0edaas73bi7mv0 . +_:bcevkkf0edaas73bi7mv0 "polardata.ca" . +_:bcevkkf0edaas73bi7ls0 . +_:bcevkkf0edaas73bi7ls0 _:bcevkkf0edaas73bi7mrg . +_:bcevkkf0edaas73bi7ls0 "2015-03-17" . +_:bcevkkf0edaas73bi7ls0 "2015-02-04" . +_:bcevkkf0edaas73bi7ls0 "To share Inuit perspectives on security, patriotism and sovereignty." . +_:bcevkkf0edaas73bi7ls0 _:bcevkkf0edaas73bi7mu0 . +_:bcevkkf0edaas73bi7ls0 "Geographic locations -> Inuit Nunangat" . +_:bcevkkf0edaas73bi7ls0 "Social sciences, economics and policy -> Governmental policies" . +_:bcevkkf0edaas73bi7ls0 "Social sciences, economics and policy -> Inuit Knowledge" . +_:bcevkkf0edaas73bi7ls0 "Social sciences, economics and policy -> Sovereignty" . +_:bcevkkf0edaas73bi7ls0 "Social sciences, economics and policy -> Traditional Knowledge" . +_:bcevkkf0edaas73bi7ls0 "Transdisciplinary -> Publication" . +_:bcevkkf0edaas73bi7ls0 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7ls0 "Nilliajut: Inuit Perspectives of Security, Patriotism and Sovereignty" . +_:bcevkkf0edaas73bi7ls0 _:bcevkkf0edaas73bi7l4g0 . +_:bcevkkf0edaas73bi7ls0 "2012-Jul-1/2013-Mar-31" . +_:bcevkkf0edaas73bi7ls0 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12072" . +_:bcevkkf0edaas73bi7l8g . +_:bcevkkf0edaas73bi7l8g _:bcevkkf0edaas73bi7m10 . +_:bcevkkf0edaas73bi7lo0 . +_:bcevkkf0edaas73bi7lo0 _:bcevkkf0edaas73bi7ks05 . +_:bcevkkf0edaas73bi7lo0 "10"^^ . +_:bcevkkf0edaas73bi7ksg6 . +_:bcevkkf0edaas73bi7ksg6 _:bcevkkf0edaas73bi7ksg7 . +_:bcevkkf0edaas73bi7mbg0 . +_:bcevkkf0edaas73bi7mbg0 _:bcevkkf0edaas73bi7mbg1 . +_:bcevkkf0edaas73bi7mp0 . +_:bcevkkf0edaas73bi7mp0 _:bcevkkf0edaas73bi7lu0 . +_:bcevkkf0edaas73bi7mp0 "2017-09-08" . +_:bcevkkf0edaas73bi7mp0 "2015-02-10" . +_:bcevkkf0edaas73bi7mp0 "The purpose and short-term objectives of this project were to summarize available information and establish baseline data (western scientific and (Inuit Qaujimajatuqangit) IQ data on biodiversity, contaminants, breeding biology) on wildlife and environmental features at two small polynyas in the Canadian High Arctic, and to develop a suitable protocol for environmental monitoring at these sites. The long-term objectives were to establish these two polynyas as suitable locations for intermittent, long-term data collection, and to use the established protocol to recommend other locations and features that could be monitored at polynyas elsewhere in Nunavut." . +_:bcevkkf0edaas73bi7mp0 _:bcevkkf0edaas73bi7m3g . +_:bcevkkf0edaas73bi7mp0 "Geographic locations -> Devon Island" . +_:bcevkkf0edaas73bi7mp0 "Inuktitut keywords -> Inuit Qaujimajatuqangit" . +_:bcevkkf0edaas73bi7mp0 "Natural sciences -> Marine birds" . +_:bcevkkf0edaas73bi7mp0 "Natural sciences -> Meteorology" . +_:bcevkkf0edaas73bi7mp0 "Natural sciences -> Polynya" . +_:bcevkkf0edaas73bi7mp0 "Natural sciences -> Vegetation" . +_:bcevkkf0edaas73bi7mp0 "Natural sciences -> Weather" . +_:bcevkkf0edaas73bi7mp0 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7mp0 "Small polynyas in Nunavut: targets for biodiversity, climate change and contamination (NGMP ID EC22)" . +_:bcevkkf0edaas73bi7mp0 _:bcevkkf0edaas73bi7me02 . +_:bcevkkf0edaas73bi7mp0 "2011-Nov-1/2014-Mar-1" . +_:bcevkkf0edaas73bi7mp0 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12088" . +_:bcevkkf0edaas73bi7lk01 . +_:bcevkkf0edaas73bi7lk01 "technical support" . +_:bcevkkf0edaas73bi7lk01 "cabo@natur.gl" . +_:bcevkkf0edaas73bi7lk01 "+1-418-634-0590 6228" . +_:bcevkkf0edaas73bi7mug . +_:bcevkkf0edaas73bi7mug _:bcevkkf0edaas73bi7n1g . +_:bcevkkf0edaas73bi7mug "Derek Muir" . +_:bcevkkf0edaas73bi7mvg . +_:bcevkkf0edaas73bi7mvg _:bcevkkf0edaas73bi7l505 . +_:bcevkkf0edaas73bi7mpg . +_:bcevkkf0edaas73bi7mpg "polardata.ca" . +_:bcevkkf0edaas73bi7l5g . +_:bcevkkf0edaas73bi7l5g "polardata.ca" . +_:bcevkkf0edaas73bi7lm0 . +_:bcevkkf0edaas73bi7lm0 _:bcevkkf0edaas73bi7l507 . +_:bcevkkf0edaas73bi7lm0 "6"^^ . +_:bcevkkf0edaas73bi7mbg3 . +_:bcevkkf0edaas73bi7mbg3 _:bcevkkf0edaas73bi7mbg4 . +_:bcevkkf0edaas73bi7mbg3 "2017-09-11" . +_:bcevkkf0edaas73bi7mbg3 "2015-02-09" . +_:bcevkkf0edaas73bi7mbg3 "The purpose of this project is to develop and implement a community-based fishery monitoring program and stock assessment framework for Arctic Char in partnership with the Pangnirtung community/HTA. The project consists in the identification of indicator stock(s) for Arctic Char in the Cumberland Sound Area. The indicator stock(s) will be the focus of annual sampling and monitoring efforts during five consecutive years, including: (i) a test fishery program with progressive increase in harvest; (ii) biological sampling of fish; (iii) harvest monitoring; and (iv) monitoring of selected environmental parameters related to Arctic Char movement, habitat and fishery productivity. The project involves a platform for IQ gathering and synthesis and for knowledge co-production on Arctic Char and freshwater ecosystems from Cumberland Sound. Expected outputs include significant data development on Arctic Char, information gap-filling on the responses of Char populations to fishing pressure and selected environmental drivers, and the provision of integrated IQ-science advice for fisheries co-management of the species. Community involvement and participation is at the core of this project, which is designed to stimulate and enhance local capacity for data collection and knowledge gathering and to integrate traditional practices with scientific expertise. Long-term goals are to demonstrate the effectiveness of community-based monitoring and knowledge co-production for realizing conservation and simultaneous optimization of Arctic Char resources in Nunavut and for fostering community involvement in stock assessment and decision-making processes. The implementation and fine-tuning of a community-based fishery monitoring program/stock assessment framework for Arctic Char in Pangnirtung should facilitate future expansions to other Baffin Island communities, which is the intended scope of the project." . +_:bcevkkf0edaas73bi7mbg3 _:bcevkkf0edaas73bi7mbg6 . +_:bcevkkf0edaas73bi7mbg3 "Natural sciences -> Arctic char" . +_:bcevkkf0edaas73bi7mbg3 "Natural sciences -> Community-based monitoring" . +_:bcevkkf0edaas73bi7mbg3 "Natural sciences -> Fisheries" . +_:bcevkkf0edaas73bi7mbg3 "Natural sciences -> Freshwaters" . +_:bcevkkf0edaas73bi7mbg3 "Natural sciences -> Hydrology" . +_:bcevkkf0edaas73bi7mbg3 "Social sciences, economics and policy -> Economics" . +_:bcevkkf0edaas73bi7mbg3 "Social sciences, economics and policy -> Education" . +_:bcevkkf0edaas73bi7mbg3 "Social sciences, economics and policy -> Food security" . +_:bcevkkf0edaas73bi7mbg3 "Social sciences, economics and policy -> Resource development" . +_:bcevkkf0edaas73bi7mbg3 "Social sciences, economics and policy -> Training" . +_:bcevkkf0edaas73bi7mbg3 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7mbg3 "Development and implementation of a community-based fishery monitoring programme and stock assessment framework for Arctic Char in Baffin Region, Nunavut (NGMP ID EC03)" . +_:bcevkkf0edaas73bi7mbg3 _:bcevkkf0edaas73bi7n00 . +_:bcevkkf0edaas73bi7mbg3 "2011-Nov-1/2017-Mar-1" . +_:bcevkkf0edaas73bi7mbg3 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12083" . +_:bcevkkf0edaas73bi7mbg5 . +_:bcevkkf0edaas73bi7mbg5 "technical support" . +_:bcevkkf0edaas73bi7mbg5 "ngmp-psgn@aandc-aadnc.gc.ca" . +_:bcevkkf0edaas73bi7mbg5 "+1-867-975-4654" . +_:bcevkkf0edaas73bi7mf0 . +_:bcevkkf0edaas73bi7mf0 _:bcevkkf0edaas73bi7mm0 . +_:bcevkkf0edaas73bi7mf0 "2017-09-08" . +_:bcevkkf0edaas73bi7mf0 "2015-02-10" . +_:bcevkkf0edaas73bi7mf0 "Understanding Eastern Canadian Arctic (ECA) killer whale distribution and diet is fundamental to developing appropriate management plans to address conservation challenges to predator and prey posed by a changing Arctic ecosystem. The study objectives include: 1) determine killer whale distribution and movement patterns in the Eastern Canadian Arctic and North Atlantic using satellite telemetry and photo identification, 2) study killer whale diet using stable isotope (SI) and fatty acid (FA) analyses of biopsied skin and blubber, including assessment of the degree of dietary specialization (i.e. individual foraging preferences), 3) assess killer whale hunting behavior by collecting sightings reports from Northerners across Nunavut, 4) estimate killer whale population size in the Eastern Canadian Arctic using photo identification, 5) assess group and population structure of eastern Canadian Arctic killer whales using genetic analysis of biopsied skin, and 6) develop a long-term network of research teams comprising Northerners in several communities across Nunavut who are trained and equipped to independently satellite tag, biopsy, and photograph killer whales." . +_:bcevkkf0edaas73bi7mf0 _:bcevkkf0edaas73bi7lcg3 . +_:bcevkkf0edaas73bi7mf0 "Natural sciences -> Beluga" . +_:bcevkkf0edaas73bi7mf0 "Natural sciences -> Bowhead whale" . +_:bcevkkf0edaas73bi7mf0 "Natural sciences -> Marine mammals" . +_:bcevkkf0edaas73bi7mf0 "Natural sciences -> Narwhals" . +_:bcevkkf0edaas73bi7mf0 "Natural sciences -> Whales" . +_:bcevkkf0edaas73bi7mf0 "Northern communities -> Arctic Bay" . +_:bcevkkf0edaas73bi7mf0 "Northern communities -> Pangnirtung" . +_:bcevkkf0edaas73bi7mf0 "Northern communities -> Pond Inlet" . +_:bcevkkf0edaas73bi7mf0 "Northern communities -> Repulse Bay" . +_:bcevkkf0edaas73bi7mf0 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7mf0 "Eastern Canadian Arctic Killer Whale Tagging, Biopsy, and Monitoring (NGMP ID EC05)" . +_:bcevkkf0edaas73bi7mf0 _:bcevkkf0edaas73bi7lcg4 . +_:bcevkkf0edaas73bi7mf0 "2013-Apr-1/2016-Mar-31" . +_:bcevkkf0edaas73bi7mf0 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12084" . +_:bcevkkf0edaas73bi7mdg . +_:bcevkkf0edaas73bi7mdg "69.54 -115.14 61.09 -81.26" . +_:bcevkkf0edaas73bi7l4g1 . +_:bcevkkf0edaas73bi7l4g1 "90.0 -180.0 50.0 180.0" . +_:bcevkkf0edaas73bi7ksg7 . +_:bcevkkf0edaas73bi7ksg7 "83.0 -121.0 52.0 -61.0" . +_:bcevkkf0edaas73bi7mh0 . +_:bcevkkf0edaas73bi7mh0 "polardata.ca" . +_:bcevkkf0edaas73bi7m401 . +_:bcevkkf0edaas73bi7m401 _:bcevkkf0edaas73bi7mi0 . +_:bcevkkf0edaas73bi7m401 "2017-09-11" . +_:bcevkkf0edaas73bi7m401 "2015-02-10" . +_:bcevkkf0edaas73bi7m401 "The purpose of this project is to estimate the distribution and abundance of marine birds in the Hudson Strait-Foxe Basin region during the summer breeding season and assess their vulnerability to development activities and potential industrial accidents. The research will also examine potential cascading ecological impacts resulting from the loss of summer sea ice on marine bird populations from increased predation by polar bears. Specific study objectives include: 1) Compilation of baseline data on eider and other marine bird abundance and distributions in coastal areas, 2) Estimation of the number and proportion of nests potentially susceptible to flooding by ships wakes, 3) Identification of critical habitats for nesting and brood rearing that could be damaged by industrial accidents such as oil discharge or grounding, 4) Monitoring of polar bear activity on bird colonies and quantify the extent of bear predation of bird nests, and 5) Documenting TEK of changing relationships between polar bear, seals, and birds as they relate to sea-ice conditions and climate change." . +_:bcevkkf0edaas73bi7m401 _:bcevkkf0edaas73bi7kvg . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Common eider" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Community-based monitoring" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Glaucous gull" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Guillemots" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Habitats" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Herring gull" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Loons" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Marine birds" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Marine mammals" . +_:bcevkkf0edaas73bi7m401 "Natural sciences -> Polar bear" . +_:bcevkkf0edaas73bi7m401 "https://www.polardata.ca/pdcinput/public/termsofuse" . +_:bcevkkf0edaas73bi7m401 "Hudson Strait-Foxe Basin Marine Coastal Monitoring Surveys: Assessing the Impacts of Declining Summer Sea-Ice and Northern Development (NGMP ID EC20)" . +_:bcevkkf0edaas73bi7m401 _:bcevkkf0edaas73bi7m405 . +_:bcevkkf0edaas73bi7m401 "2011-Nov-1/2014-Mar-1" . +_:bcevkkf0edaas73bi7m401 "https://www.polardata.ca/pdcsearch/PDCSearch.jsp?doi_id=12087" . +_:bcevkkf0edaas73bi7mt00 . +_:bcevkkf0edaas73bi7mt00 "68.53 -89.83 68.53 -89.83" . +_:bcevkkf0edaas73bi7n1g . +_:bcevkkf0edaas73bi7n1g "technical support" . +_:bcevkkf0edaas73bi7n1g "derek.muir@ec.gc.ca" . +_:bcevkkf0edaas73bi7n1g "+1-905-319-6921" . diff --git a/internal/common/testdata/schemaorg-current-https.jsonld b/internal/common/testdata/schemaorg-current-https.jsonld new file mode 100644 index 00000000..e4e31c7d --- /dev/null +++ b/internal/common/testdata/schemaorg-current-https.jsonld @@ -0,0 +1,42161 @@ +{ + "@context": { + "brick": "https://brickschema.org/schema/Brick#", + "csvw": "http://www.w3.org/ns/csvw#", + "dc": "http://purl.org/dc/elements/1.1/", + "dcam": "http://purl.org/dc/dcam/", + "dcat": "http://www.w3.org/ns/dcat#", + "dcmitype": "http://purl.org/dc/dcmitype/", + "dcterms": "http://purl.org/dc/terms/", + "doap": "http://usefulinc.com/ns/doap#", + "foaf": "http://xmlns.com/foaf/0.1/", + "odrl": "http://www.w3.org/ns/odrl/2/", + "org": "http://www.w3.org/ns/org#", + "owl": "http://www.w3.org/2002/07/owl#", + "prof": "http://www.w3.org/ns/dx/prof/", + "prov": "http://www.w3.org/ns/prov#", + "qb": "http://purl.org/linked-data/cube#", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "schema": "https://schema.org/", + "sh": "http://www.w3.org/ns/shacl#", + "skos": "http://www.w3.org/2004/02/skos/core#", + "sosa": "http://www.w3.org/ns/sosa/", + "ssn": "http://www.w3.org/ns/ssn/", + "time": "http://www.w3.org/2006/time#", + "vann": "http://purl.org/vocab/vann/", + "void": "http://rdfs.org/ns/void#", + "xsd": "http://www.w3.org/2001/XMLSchema#" + }, + "@graph": [ + { + "@id": "schema:spouse", + "@type": "rdf:Property", + "rdfs:comment": "The person's spouse.", + "rdfs:label": "spouse", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:floorLevel", + "@type": "rdf:Property", + "rdfs:comment": "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.", + "rdfs:label": "floorLevel", + "schema:domainIncludes": { + "@id": "schema:Accommodation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:StatusEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Lists or enumerations dealing with status types.", + "rdfs:label": "StatusEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2604" + } + }, + { + "@id": "schema:NotInForce", + "@type": "schema:LegalForceStatus", + "rdfs:comment": "Indicates that a legislation is currently not in force.", + "rdfs:label": "NotInForce", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + }, + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#InForce-notInForce" + } + }, + { + "@id": "schema:isrcCode", + "@type": "rdf:Property", + "rdfs:comment": "The International Standard Recording Code for the recording.", + "rdfs:label": "isrcCode", + "schema:domainIncludes": { + "@id": "schema:MusicRecording" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:originAddress", + "@type": "rdf:Property", + "rdfs:comment": "Shipper's address.", + "rdfs:label": "originAddress", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": { + "@id": "schema:PostalAddress" + } + }, + { + "@id": "schema:isbn", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/bibo/isbn" + }, + "rdfs:comment": "The ISBN of the book.", + "rdfs:label": "isbn", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Book" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Restaurant", + "@type": "rdfs:Class", + "rdfs:comment": "A restaurant.", + "rdfs:label": "Restaurant", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:Genitourinary", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Genitourinary system function assessment with clinical examination.", + "rdfs:label": "Genitourinary", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:catalog", + "@type": "rdf:Property", + "rdfs:comment": "A data catalog which contains this dataset.", + "rdfs:label": "catalog", + "schema:domainIncludes": { + "@id": "schema:Dataset" + }, + "schema:rangeIncludes": { + "@id": "schema:DataCatalog" + }, + "schema:supersededBy": { + "@id": "schema:includedInDataCatalog" + } + }, + { + "@id": "schema:LocalBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.", + "rdfs:label": "LocalBusiness", + "rdfs:subClassOf": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Place" + } + ], + "skos:closeMatch": { + "@id": "http://www.w3.org/ns/regorg#RegisteredOrganization" + } + }, + { + "@id": "schema:Registry", + "@type": "schema:MedicalObservationalStudyDesign", + "rdfs:comment": "A registry-based study design.", + "rdfs:label": "Registry", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:contentSize", + "@type": "rdf:Property", + "rdfs:comment": "File size in (mega/kilo) bytes.", + "rdfs:label": "contentSize", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:NLNonprofitType", + "@type": "rdfs:Class", + "rdfs:comment": "NLNonprofitType: Non-profit organization type originating from the Netherlands.", + "rdfs:label": "NLNonprofitType", + "rdfs:subClassOf": { + "@id": "schema:NonprofitType" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:FundingScheme", + "@type": "rdfs:Class", + "rdfs:comment": "A FundingScheme combines organizational, project and policy aspects of grant-based funding\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities.\n Funding is typically organized via [[Grant]] funding. Examples of funding schemes: Swiss Priority Programmes (SPPs); EU Framework 7 (FP7); Horizon 2020; the NIH-R01 Grant Program; Wellcome institutional strategic support fund. For large scale public sector funding, the management and administration of grant awards is often handled by other, dedicated, organizations - [[FundingAgency]]s such as ERC, REA, ...", + "rdfs:label": "FundingScheme", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab" + } + ] + }, + { + "@id": "schema:employerOverview", + "@type": "rdf:Property", + "rdfs:comment": "A description of the employer, career opportunities and work environment for this position.", + "rdfs:label": "employerOverview", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2396" + } + }, + { + "@id": "schema:annualPercentageRate", + "@type": "rdf:Property", + "rdfs:comment": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.", + "rdfs:label": "annualPercentageRate", + "schema:domainIncludes": { + "@id": "schema:FinancialProduct" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:InternetCafe", + "@type": "rdfs:Class", + "rdfs:comment": "An internet cafe.", + "rdfs:label": "InternetCafe", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:MensClothingStore", + "@type": "rdfs:Class", + "rdfs:comment": "A men's clothing store.", + "rdfs:label": "MensClothingStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:isAcceptingNewPatients", + "@type": "rdf:Property", + "rdfs:comment": "Whether the provider is accepting new patients.", + "rdfs:label": "isAcceptingNewPatients", + "schema:domainIncludes": { + "@id": "schema:MedicalOrganization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:HealthCare", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "HealthCare: this is a benefit for health care.", + "rdfs:label": "HealthCare", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:MedicalProcedure", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/50731006" + }, + "rdfs:comment": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.", + "rdfs:label": "MedicalProcedure", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Hospital", + "@type": "rdfs:Class", + "rdfs:comment": "A hospital.", + "rdfs:label": "Hospital", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalOrganization" + }, + { + "@id": "schema:EmergencyService" + }, + { + "@id": "schema:CivicStructure" + } + ] + }, + { + "@id": "schema:countriesSupported", + "@type": "rdf:Property", + "rdfs:comment": "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.", + "rdfs:label": "countriesSupported", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:SideEffectsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Side effects that can be observed from the usage of the topic.", + "rdfs:label": "SideEffectsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:CheckOutAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).\\n\\nRelated actions:\\n\\n* [[CheckInAction]]: The antonym of CheckOutAction.\\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.", + "rdfs:label": "CheckOutAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:returnPolicyCategory", + "@type": "rdf:Property", + "rdfs:comment": "Specifies an applicable return policy (from an enumeration).", + "rdfs:label": "returnPolicyCategory", + "schema:domainIncludes": [ + { + "@id": "schema:MerchantReturnPolicySeasonalOverride" + }, + { + "@id": "schema:MerchantReturnPolicy" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MerchantReturnEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:BuyAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.", + "rdfs:label": "BuyAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:cvdNumBedsOcc", + "@type": "rdf:Property", + "rdfs:comment": "numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.", + "rdfs:label": "cvdNumBedsOcc", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:UnincorporatedAssociationCharity", + "@type": "schema:UKNonprofitType", + "rdfs:comment": "UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK).", + "rdfs:label": "UnincorporatedAssociationCharity", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:lastReviewed", + "@type": "rdf:Property", + "rdfs:comment": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.", + "rdfs:label": "lastReviewed", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:ApprovedIndication", + "@type": "rdfs:Class", + "rdfs:comment": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.", + "rdfs:label": "ApprovedIndication", + "rdfs:subClassOf": { + "@id": "schema:MedicalIndication" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:TelevisionStation", + "@type": "rdfs:Class", + "rdfs:comment": "A television station.", + "rdfs:label": "TelevisionStation", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:targetPopulation", + "@type": "rdf:Property", + "rdfs:comment": "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.", + "rdfs:label": "targetPopulation", + "schema:domainIncludes": [ + { + "@id": "schema:DietarySupplement" + }, + { + "@id": "schema:DoseSchedule" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:recommendedIntake", + "@type": "rdf:Property", + "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.", + "rdfs:label": "recommendedIntake", + "schema:domainIncludes": { + "@id": "schema:DietarySupplement" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:RecommendedDoseSchedule" + } + }, + { + "@id": "schema:DefinitiveLegalValue", + "@type": "schema:LegalValueLevel", + "rdfs:comment": "Indicates a document for which the text is conclusively what the law says and is legally binding. (e.g. The digitally signed version of an Official Journal.)\n Something \"Definitive\" is considered to be also [[AuthoritativeLegalValue]].", + "rdfs:label": "DefinitiveLegalValue", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + }, + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#LegalValue-definitive" + } + }, + { + "@id": "schema:BodyMeasurementHand", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Maximum hand girth (measured over the knuckles of the open right hand excluding thumb, fingers together). Used, for example, to fit gloves.", + "rdfs:label": "BodyMeasurementHand", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:passengerPriorityStatus", + "@type": "rdf:Property", + "rdfs:comment": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).", + "rdfs:label": "passengerPriorityStatus", + "schema:domainIncludes": { + "@id": "schema:FlightReservation" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Festival", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Festival.", + "rdfs:label": "Festival", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:MarryAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of marrying a person.", + "rdfs:label": "MarryAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:totalPaymentDue", + "@type": "rdf:Property", + "rdfs:comment": "The total amount due.", + "rdfs:label": "totalPaymentDue", + "schema:domainIncludes": { + "@id": "schema:Invoice" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:PriceSpecification" + } + ] + }, + { + "@id": "schema:parentTaxon", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Taxon" + }, + "rdfs:comment": "Closest parent taxon of the taxon in question.", + "rdfs:label": "parentTaxon", + "schema:domainIncludes": { + "@id": "schema:Taxon" + }, + "schema:inverseOf": { + "@id": "schema:childTaxon" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Taxon" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:publicationType", + "@type": "rdf:Property", + "rdfs:comment": "The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).", + "rdfs:label": "publicationType", + "schema:domainIncludes": { + "@id": "schema:MedicalScholarlyArticle" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:PriceSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use [[MonetaryAmount]] to describe independent amounts of money such as a salary, credit card limits, etc.", + "rdfs:label": "PriceSpecification", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:healthPlanNetworkId", + "@type": "rdf:Property", + "rdfs:comment": "Name or unique ID of network. (Networks are often reused across different insurance plans).", + "rdfs:label": "healthPlanNetworkId", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalOrganization" + }, + { + "@id": "schema:HealthPlanNetwork" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:SportsEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Sports event.", + "rdfs:label": "SportsEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:rsvpResponse", + "@type": "rdf:Property", + "rdfs:comment": "The response (yes, no, maybe) to the RSVP.", + "rdfs:label": "rsvpResponse", + "schema:domainIncludes": { + "@id": "schema:RsvpAction" + }, + "schema:rangeIncludes": { + "@id": "schema:RsvpResponseType" + } + }, + { + "@id": "schema:transitTime", + "@type": "rdf:Property", + "rdfs:comment": "The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode (d for DAY).", + "rdfs:label": "transitTime", + "schema:domainIncludes": { + "@id": "schema:ShippingDeliveryTime" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:energyEfficiencyScaleMin", + "@type": "rdf:Property", + "rdfs:comment": "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.", + "rdfs:label": "energyEfficiencyScaleMin", + "schema:domainIncludes": { + "@id": "schema:EnergyConsumptionDetails" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:EUEnergyEfficiencyEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:WearableSizeGroupEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates common size groups (also known as \"size types\") for wearable products.", + "rdfs:label": "WearableSizeGroupEnumeration", + "rdfs:subClassOf": { + "@id": "schema:SizeGroupEnumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:GolfCourse", + "@type": "rdfs:Class", + "rdfs:comment": "A golf course.", + "rdfs:label": "GolfCourse", + "rdfs:subClassOf": { + "@id": "schema:SportsActivityLocation" + } + }, + { + "@id": "schema:WinAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of achieving victory in a competitive activity.", + "rdfs:label": "WinAction", + "rdfs:subClassOf": { + "@id": "schema:AchieveAction" + } + }, + { + "@id": "schema:OnlineFull", + "@type": "schema:GameServerStatus", + "rdfs:comment": "Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.", + "rdfs:label": "OnlineFull" + }, + { + "@id": "schema:healthPlanCoinsuranceRate", + "@type": "rdf:Property", + "rdfs:comment": "Whether The rate of coinsurance expressed as a number between 0.0 and 1.0.", + "rdfs:label": "healthPlanCoinsuranceRate", + "schema:domainIncludes": { + "@id": "schema:HealthPlanCostSharingSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:TravelAgency", + "@type": "rdfs:Class", + "rdfs:comment": "A travel agency.", + "rdfs:label": "TravelAgency", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:Mountain", + "@type": "rdfs:Class", + "rdfs:comment": "A mountain, like Mount Whitney or Mount Everest.", + "rdfs:label": "Mountain", + "rdfs:subClassOf": { + "@id": "schema:Landform" + } + }, + { + "@id": "schema:DrugCostCategory", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerated categories of medical drug costs.", + "rdfs:label": "DrugCostCategory", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:percentile75", + "@type": "rdf:Property", + "rdfs:comment": "The 75th percentile value.", + "rdfs:label": "percentile75", + "schema:domainIncludes": { + "@id": "schema:QuantitativeValueDistribution" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:teaches", + "@type": "rdf:Property", + "rdfs:comment": "The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.", + "rdfs:label": "teaches", + "schema:domainIncludes": [ + { + "@id": "schema:LearningResource" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:EducationEvent" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2427" + } + }, + { + "@id": "schema:RVPark", + "@type": "rdfs:Class", + "rdfs:comment": "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.", + "rdfs:label": "RVPark", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:PlayAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.", + "rdfs:label": "PlayAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:modifiedTime", + "@type": "rdf:Property", + "rdfs:comment": "The date and time the reservation was modified.", + "rdfs:label": "modifiedTime", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:Abdomen", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Abdomen clinical examination.", + "rdfs:label": "Abdomen", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:PoliceStation", + "@type": "rdfs:Class", + "rdfs:comment": "A police station.", + "rdfs:label": "PoliceStation", + "rdfs:subClassOf": [ + { + "@id": "schema:CivicStructure" + }, + { + "@id": "schema:EmergencyService" + } + ] + }, + { + "@id": "schema:MovieRentalStore", + "@type": "rdfs:Class", + "rdfs:comment": "A movie rental store.", + "rdfs:label": "MovieRentalStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:fuelCapacity", + "@type": "rdf:Property", + "rdfs:comment": "The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.\\n\\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).", + "rdfs:label": "fuelCapacity", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:scheduledTime", + "@type": "rdf:Property", + "rdfs:comment": "The time the object is scheduled to.", + "rdfs:label": "scheduledTime", + "schema:domainIncludes": { + "@id": "schema:PlanAction" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:WearableSizeGroupShort", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Short\" for wearables.", + "rdfs:label": "WearableSizeGroupShort", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:programPrerequisites", + "@type": "rdf:Property", + "rdfs:comment": "Prerequisites for enrolling in the program.", + "rdfs:label": "programPrerequisites", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AlignmentObject" + }, + { + "@id": "schema:Course" + }, + { + "@id": "schema:EducationalOccupationalCredential" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:coverageEndTime", + "@type": "rdf:Property", + "rdfs:comment": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.", + "rdfs:label": "coverageEndTime", + "schema:domainIncludes": { + "@id": "schema:LiveBlogPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:Homeopathic", + "@type": "schema:MedicineSystem", + "rdfs:comment": "A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.", + "rdfs:label": "Homeopathic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:isAccessoryOrSparePartFor", + "@type": "rdf:Property", + "rdfs:comment": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.", + "rdfs:label": "isAccessoryOrSparePartFor", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:rangeIncludes": { + "@id": "schema:Product" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:additionalName", + "@type": "rdf:Property", + "rdfs:comment": "An additional name for a Person, can be used for a middle name.", + "rdfs:label": "additionalName", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Nonprofit501c4", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.", + "rdfs:label": "Nonprofit501c4", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:EducationalOccupationalCredential", + "@type": "rdfs:Class", + "rdfs:comment": "An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer.", + "rdfs:label": "EducationalOccupationalCredential", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + }, + { + "@id": "schema:minPrice", + "@type": "rdf:Property", + "rdfs:comment": "The lowest price if the price is a range.", + "rdfs:label": "minPrice", + "schema:domainIncludes": { + "@id": "schema:PriceSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:PotentialActionStatus", + "@type": "schema:ActionStatusType", + "rdfs:comment": "A description of an action that is supported.", + "rdfs:label": "PotentialActionStatus" + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryD", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryD", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:MobileWebPlatform", + "@type": "schema:DigitalPlatformEnumeration", + "rdfs:comment": "Represents the broad notion of 'mobile' browsers as a Web Platform.", + "rdfs:label": "MobileWebPlatform", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3057" + } + }, + { + "@id": "schema:season", + "@type": "rdf:Property", + "rdfs:comment": "A season in a media series.", + "rdfs:label": "season", + "rdfs:subPropertyOf": { + "@id": "schema:hasPart" + }, + "schema:domainIncludes": [ + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:RadioSeries" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWorkSeason" + } + ], + "schema:supersededBy": { + "@id": "schema:containsSeason" + } + }, + { + "@id": "schema:BikeStore", + "@type": "rdfs:Class", + "rdfs:comment": "A bike store.", + "rdfs:label": "BikeStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:shippingDestination", + "@type": "rdf:Property", + "rdfs:comment": "indicates (possibly multiple) shipping destinations. These can be defined in several ways e.g. postalCode ranges.", + "rdfs:label": "shippingDestination", + "schema:domainIncludes": [ + { + "@id": "schema:ShippingRateSettings" + }, + { + "@id": "schema:OfferShippingDetails" + }, + { + "@id": "schema:DeliveryTimeSettings" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DefinedRegion" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:hasAdultConsideration", + "@type": "rdf:Property", + "rdfs:comment": "Used to tag an item to be intended or suitable for consumption or use by adults only.", + "rdfs:label": "hasAdultConsideration", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Offer" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AdultOrientedEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:Energy", + "@type": "rdfs:Class", + "rdfs:comment": "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.", + "rdfs:label": "Energy", + "rdfs:subClassOf": { + "@id": "schema:Quantity" + } + }, + { + "@id": "schema:assembly", + "@type": "rdf:Property", + "rdfs:comment": "Library file name e.g., mscorlib.dll, system.web.dll.", + "rdfs:label": "assembly", + "schema:domainIncludes": { + "@id": "schema:APIReference" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:executableLibraryName" + } + }, + { + "@id": "schema:cvdNumICUBedsOcc", + "@type": "rdf:Property", + "rdfs:comment": "numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.", + "rdfs:label": "cvdNumICUBedsOcc", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:BrokerageAccount", + "@type": "rdfs:Class", + "rdfs:comment": "An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm.", + "rdfs:label": "BrokerageAccount", + "rdfs:subClassOf": { + "@id": "schema:InvestmentOrDeposit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:flightDistance", + "@type": "rdf:Property", + "rdfs:comment": "The distance of the flight.", + "rdfs:label": "flightDistance", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Distance" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:validFor", + "@type": "rdf:Property", + "rdfs:comment": "The duration of validity of a permit or similar thing.", + "rdfs:label": "validFor", + "schema:domainIncludes": [ + { + "@id": "schema:Permit" + }, + { + "@id": "schema:EducationalOccupationalCredential" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Duration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + }, + { + "@id": "schema:MedicalClinic", + "@type": "rdfs:Class", + "rdfs:comment": "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.", + "rdfs:label": "MedicalClinic", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalOrganization" + }, + { + "@id": "schema:MedicalBusiness" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:SeatingMap", + "@type": "schema:MapCategoryType", + "rdfs:comment": "A seating map.", + "rdfs:label": "SeatingMap" + }, + { + "@id": "schema:Bacteria", + "@type": "schema:InfectiousAgentClass", + "rdfs:comment": "Pathogenic bacteria that cause bacterial infection.", + "rdfs:label": "Bacteria", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:LearningResource", + "@type": "rdfs:Class", + "rdfs:comment": "The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.\n\n[[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[VideoObject]], [[Product]] etc.\n\n[[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one.", + "rdfs:label": "LearningResource", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1401" + } + }, + { + "@id": "schema:educationalLevel", + "@type": "rdf:Property", + "rdfs:comment": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.", + "rdfs:label": "educationalLevel", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:EducationalOccupationalCredential" + }, + { + "@id": "schema:LearningResource" + }, + { + "@id": "schema:EducationEvent" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + }, + { + "@id": "schema:programmingLanguage", + "@type": "rdf:Property", + "rdfs:comment": "The computer programming language.", + "rdfs:label": "programmingLanguage", + "schema:domainIncludes": { + "@id": "schema:SoftwareSourceCode" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:ComputerLanguage" + } + ] + }, + { + "@id": "schema:Brand", + "@type": "rdfs:Class", + "rdfs:comment": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.", + "rdfs:label": "Brand", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:abstract", + "@type": "rdf:Property", + "rdfs:comment": "An abstract is a short description that summarizes a [[CreativeWork]].", + "rdfs:label": "abstract", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/276" + } + }, + { + "@id": "schema:SoundtrackAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "SoundtrackAlbum.", + "rdfs:label": "SoundtrackAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:FDAcategoryC", + "@type": "schema:DrugPregnancyCategory", + "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.", + "rdfs:label": "FDAcategoryC", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:creativeWorkStatus", + "@type": "rdf:Property", + "rdfs:comment": "The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.", + "rdfs:label": "creativeWorkStatus", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/987" + } + }, + { + "@id": "schema:BodyMeasurementHips", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Girth of hips (measured around the buttocks). Used, for example, to fit skirts.", + "rdfs:label": "BodyMeasurementHips", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:ReducedRelevanceForChildrenConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc.", + "rdfs:label": "ReducedRelevanceForChildrenConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:beneficiaryBank", + "@type": "rdf:Property", + "rdfs:comment": "A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary.", + "rdfs:label": "beneficiaryBank", + "schema:domainIncludes": { + "@id": "schema:MoneyTransfer" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:BankOrCreditUnion" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:estimatedSalary", + "@type": "rdf:Property", + "rdfs:comment": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.", + "rdfs:label": "estimatedSalary", + "schema:domainIncludes": [ + { + "@id": "schema:JobPosting" + }, + { + "@id": "schema:Occupation" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:MonetaryAmountDistribution" + }, + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:cvdNumVent", + "@type": "rdf:Property", + "rdfs:comment": "numvent - MECHANICAL VENTILATORS: Total number of ventilators available.", + "rdfs:label": "cvdNumVent", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:yield", + "@type": "rdf:Property", + "rdfs:comment": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.", + "rdfs:label": "yield", + "schema:domainIncludes": { + "@id": "schema:HowTo" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:billingPeriod", + "@type": "rdf:Property", + "rdfs:comment": "The time interval used to compute the invoice.", + "rdfs:label": "billingPeriod", + "schema:domainIncludes": { + "@id": "schema:Invoice" + }, + "schema:rangeIncludes": { + "@id": "schema:Duration" + } + }, + { + "@id": "schema:BodyMeasurementUnderbust", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Girth of body just below the bust. Used, for example, to fit women's swimwear.", + "rdfs:label": "BodyMeasurementUnderbust", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:ContactPoint", + "@type": "rdfs:Class", + "rdfs:comment": "A contact point—for example, a Customer Complaints department.", + "rdfs:label": "ContactPoint", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + } + }, + { + "@id": "schema:expectsAcceptanceOf", + "@type": "rdf:Property", + "rdfs:comment": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.", + "rdfs:label": "expectsAcceptanceOf", + "schema:domainIncludes": [ + { + "@id": "schema:MediaSubscription" + }, + { + "@id": "schema:ActionAccessSpecification" + }, + { + "@id": "schema:ConsumeAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Offer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + }, + { + "@id": "schema:installUrl", + "@type": "rdf:Property", + "rdfs:comment": "URL at which the app may be installed, if different from the URL of the item.", + "rdfs:label": "installUrl", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:supplyTo", + "@type": "rdf:Property", + "rdfs:comment": "The area to which the artery supplies blood.", + "rdfs:label": "supplyTo", + "schema:domainIncludes": { + "@id": "schema:Artery" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + } + }, + { + "@id": "schema:ownershipFundingInfo", + "@type": "rdf:Property", + "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.", + "rdfs:label": "ownershipFundingInfo", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": [ + { + "@id": "schema:NewsMediaOrganization" + }, + { + "@id": "schema:Organization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:AboutPage" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:valueReference", + "@type": "rdf:Property", + "rdfs:comment": "A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.", + "rdfs:label": "valueReference", + "schema:domainIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:QualitativeValue" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Enumeration" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:MeasurementTypeEnumeration" + }, + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:StructuredValue" + }, + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:JobPosting", + "@type": "rdfs:Class", + "rdfs:comment": "A listing that describes a job opening in a certain organization.", + "rdfs:label": "JobPosting", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:Nonprofit501c23", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c23: Non-profit type referring to Veterans Organizations.", + "rdfs:label": "Nonprofit501c23", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:taxonRank", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Taxon" + }, + "rdfs:comment": "The taxonomic rank of this taxon given preferably as a URI from a controlled vocabulary – (typically the ranks from TDWG TaxonRank ontology or equivalent Wikidata URIs).", + "rdfs:label": "taxonRank", + "schema:domainIncludes": { + "@id": "schema:Taxon" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:containsSeason", + "@type": "rdf:Property", + "rdfs:comment": "A season that is part of the media series.", + "rdfs:label": "containsSeason", + "rdfs:subPropertyOf": { + "@id": "schema:hasPart" + }, + "schema:domainIncludes": [ + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:RadioSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:CreativeWorkSeason" + } + }, + { + "@id": "schema:accelerationTime", + "@type": "rdf:Property", + "rdfs:comment": "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\\n\\nTypical unit code(s): SEC for seconds\\n\\n* Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use \"SEC\" for seconds and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]] with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds.", + "rdfs:label": "accelerationTime", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:Accommodation", + "@type": "rdfs:Class", + "rdfs:comment": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "Accommodation", + "rdfs:subClassOf": { + "@id": "schema:Place" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:RsvpResponseNo", + "@type": "schema:RsvpResponseType", + "rdfs:comment": "The invitee will not attend.", + "rdfs:label": "RsvpResponseNo" + }, + { + "@id": "schema:ticketToken", + "@type": "rdf:Property", + "rdfs:comment": "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.", + "rdfs:label": "ticketToken", + "schema:domainIncludes": { + "@id": "schema:Ticket" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Male", + "@type": "schema:GenderType", + "rdfs:comment": "The male gender.", + "rdfs:label": "Male" + }, + { + "@id": "schema:MultiPlayer", + "@type": "schema:GamePlayMode", + "rdfs:comment": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.", + "rdfs:label": "MultiPlayer" + }, + { + "@id": "schema:PercutaneousProcedure", + "@type": "schema:MedicalProcedureType", + "rdfs:comment": "A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.", + "rdfs:label": "PercutaneousProcedure", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:False", + "@type": "schema:Boolean", + "rdfs:comment": "The boolean value false.", + "rdfs:label": "False" + }, + { + "@id": "schema:MedicalRiskScore", + "@type": "rdfs:Class", + "rdfs:comment": "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.", + "rdfs:label": "MedicalRiskScore", + "rdfs:subClassOf": { + "@id": "schema:MedicalRiskEstimator" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:pregnancyCategory", + "@type": "rdf:Property", + "rdfs:comment": "Pregnancy category of this drug.", + "rdfs:label": "pregnancyCategory", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DrugPregnancyCategory" + } + }, + { + "@id": "schema:legislationLegalValue", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#legal_value" + }, + "rdfs:comment": "The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a \"stronger\" legal value than the HTML file of the same act.", + "rdfs:label": "legislationLegalValue", + "schema:domainIncludes": { + "@id": "schema:LegislationObject" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:LegalValueLevel" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#legal_value" + } + }, + { + "@id": "schema:Nonprofit501k", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501k: Non-profit type referring to Child Care Organizations.", + "rdfs:label": "Nonprofit501k", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:operatingSystem", + "@type": "rdf:Property", + "rdfs:comment": "Operating systems supported (Windows 7, OSX 10.6, Android 1.6).", + "rdfs:label": "operatingSystem", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:bccRecipient", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of recipient. The recipient blind copied on a message.", + "rdfs:label": "bccRecipient", + "rdfs:subPropertyOf": { + "@id": "schema:recipient" + }, + "schema:domainIncludes": { + "@id": "schema:Message" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:recipeInstructions", + "@type": "rdf:Property", + "rdfs:comment": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.", + "rdfs:label": "recipeInstructions", + "rdfs:subPropertyOf": { + "@id": "schema:step" + }, + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:ItemList" + } + ] + }, + { + "@id": "schema:HotelRoom", + "@type": "rdfs:Class", + "rdfs:comment": "A hotel room is a single room in a hotel.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "HotelRoom", + "rdfs:subClassOf": { + "@id": "schema:Room" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:SchoolDistrict", + "@type": "rdfs:Class", + "rdfs:comment": "A School District is an administrative area for the administration of schools.", + "rdfs:label": "SchoolDistrict", + "rdfs:subClassOf": { + "@id": "schema:AdministrativeArea" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2500" + } + }, + { + "@id": "schema:availableIn", + "@type": "rdf:Property", + "rdfs:comment": "The location in which the strength is available.", + "rdfs:label": "availableIn", + "schema:domainIncludes": { + "@id": "schema:DrugStrength" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AdministrativeArea" + } + }, + { + "@id": "schema:candidate", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The candidate subject of this action.", + "rdfs:label": "candidate", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:VoteAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:addressCountry", + "@type": "rdf:Property", + "rdfs:comment": "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).", + "rdfs:label": "addressCountry", + "schema:domainIncludes": [ + { + "@id": "schema:DefinedRegion" + }, + { + "@id": "schema:GeoShape" + }, + { + "@id": "schema:GeoCoordinates" + }, + { + "@id": "schema:PostalAddress" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Country" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:lodgingUnitType", + "@type": "rdf:Property", + "rdfs:comment": "Textual description of the unit type (including suite vs. room, size of bed, etc.).", + "rdfs:label": "lodgingUnitType", + "schema:domainIncludes": { + "@id": "schema:LodgingReservation" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:expires", + "@type": "rdf:Property", + "rdfs:comment": "Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.", + "rdfs:label": "expires", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:gtin12", + "@type": "rdf:Property", + "rdfs:comment": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.", + "rdfs:label": "gtin12", + "rdfs:subPropertyOf": [ + { + "@id": "schema:gtin" + }, + { + "@id": "schema:identifier" + } + ], + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:speed", + "@type": "rdf:Property", + "rdfs:comment": "The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by [[maxValue]] should be the maximum speed achievable under regular conditions.\\n\\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\\n\\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\\n* Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the [[valueReference]] property.", + "rdfs:label": "speed", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:PlayGameAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of playing a video game.", + "rdfs:label": "PlayGameAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3058" + } + }, + { + "@id": "schema:EventCancelled", + "@type": "schema:EventStatusType", + "rdfs:comment": "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s).", + "rdfs:label": "EventCancelled" + }, + { + "@id": "schema:overdosage", + "@type": "rdf:Property", + "rdfs:comment": "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.", + "rdfs:label": "overdosage", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Reservation", + "@type": "rdfs:Class", + "rdfs:comment": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].", + "rdfs:label": "Reservation", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:superEvent", + "@type": "rdf:Property", + "rdfs:comment": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.", + "rdfs:label": "superEvent", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:inverseOf": { + "@id": "schema:subEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:TrackAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.", + "rdfs:label": "TrackAction", + "rdfs:subClassOf": { + "@id": "schema:FindAction" + } + }, + { + "@id": "schema:contentUrl", + "@type": "rdf:Property", + "rdfs:comment": "Actual bytes of the media object, for example the image file or video file.", + "rdfs:label": "contentUrl", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:printEdition", + "@type": "rdf:Property", + "rdfs:comment": "The edition of the print product in which the NewsArticle appears.", + "rdfs:label": "printEdition", + "schema:domainIncludes": { + "@id": "schema:NewsArticle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:hasCredential", + "@type": "rdf:Property", + "rdfs:comment": "A credential awarded to the Person or Organization.", + "rdfs:label": "hasCredential", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:EducationalOccupationalCredential" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:scheduleTimezone", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the timezone for which the time(s) indicated in the [[Schedule]] are given. The value provided should be among those listed in the IANA Time Zone Database.", + "rdfs:label": "scheduleTimezone", + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:URL", + "@type": "rdfs:Class", + "rdfs:comment": "Data type: URL.", + "rdfs:label": "URL", + "rdfs:subClassOf": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Person", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "foaf:Person" + }, + "rdfs:comment": "A person (alive, dead, undead, or fictional).", + "rdfs:label": "Person", + "rdfs:subClassOf": { + "@id": "schema:Thing" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + }, + { + "@id": "schema:StadiumOrArena", + "@type": "rdfs:Class", + "rdfs:comment": "A stadium.", + "rdfs:label": "StadiumOrArena", + "rdfs:subClassOf": [ + { + "@id": "schema:SportsActivityLocation" + }, + { + "@id": "schema:CivicStructure" + } + ] + }, + { + "@id": "schema:founders", + "@type": "rdf:Property", + "rdfs:comment": "A person who founded this organization.", + "rdfs:label": "founders", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:founder" + } + }, + { + "@id": "schema:Cardiovascular", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.", + "rdfs:label": "Cardiovascular", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MedicalGuideline", + "@type": "rdfs:Class", + "rdfs:comment": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.", + "rdfs:label": "MedicalGuideline", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:propertyID", + "@type": "rdf:Property", + "rdfs:comment": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.", + "rdfs:label": "propertyID", + "schema:domainIncludes": { + "@id": "schema:PropertyValue" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:runsTo", + "@type": "rdf:Property", + "rdfs:comment": "The vasculature the lymphatic structure runs, or efferents, to.", + "rdfs:label": "runsTo", + "schema:domainIncludes": { + "@id": "schema:LymphaticVessel" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Vessel" + } + }, + { + "@id": "schema:iataCode", + "@type": "rdf:Property", + "rdfs:comment": "IATA identifier for an airline or airport.", + "rdfs:label": "iataCode", + "schema:domainIncludes": [ + { + "@id": "schema:Airport" + }, + { + "@id": "schema:Airline" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:QuantitativeValue", + "@type": "rdfs:Class", + "rdfs:comment": " A point value or interval for product characteristics and other purposes.", + "rdfs:label": "QuantitativeValue", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:mathExpression", + "@type": "rdf:Property", + "rdfs:comment": "A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.", + "rdfs:label": "mathExpression", + "schema:domainIncludes": { + "@id": "schema:MathSolver" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:SolveMathAction" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2740" + } + }, + { + "@id": "schema:requiredMinAge", + "@type": "rdf:Property", + "rdfs:comment": "Audiences defined by a person's minimum age.", + "rdfs:label": "requiredMinAge", + "schema:domainIncludes": { + "@id": "schema:PeopleAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:Campground", + "@type": "rdfs:Class", + "rdfs:comment": "A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \\n\\n\nIn British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (Source: Wikipedia see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n", + "rdfs:label": "Campground", + "rdfs:subClassOf": [ + { + "@id": "schema:LodgingBusiness" + }, + { + "@id": "schema:CivicStructure" + } + ], + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:cashBack", + "@type": "rdf:Property", + "rdfs:comment": "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.", + "rdfs:label": "cashBack", + "schema:domainIncludes": { + "@id": "schema:PaymentCard" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:Boolean" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:hasCourse", + "@type": "rdf:Property", + "rdfs:comment": "A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program.", + "rdfs:label": "hasCourse", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Course" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2483" + } + }, + { + "@id": "schema:procedureType", + "@type": "rdf:Property", + "rdfs:comment": "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.", + "rdfs:label": "procedureType", + "schema:domainIncludes": { + "@id": "schema:MedicalProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalProcedureType" + } + }, + { + "@id": "schema:WearableMeasurementSleeve", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the sleeve length, for example of a shirt", + "rdfs:label": "WearableMeasurementSleeve", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:fatContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of fat.", + "rdfs:label": "fatContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:MedicalProcedureType", + "@type": "rdfs:Class", + "rdfs:comment": "An enumeration that describes different types of medical procedures.", + "rdfs:label": "MedicalProcedureType", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:contentReferenceTime", + "@type": "rdf:Property", + "rdfs:comment": "The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.", + "rdfs:label": "contentReferenceTime", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1050" + } + }, + { + "@id": "schema:OpinionNewsArticle", + "@type": "rdfs:Class", + "rdfs:comment": "An [[OpinionNewsArticle]] is a [[NewsArticle]] that primarily expresses opinions rather than journalistic reporting of news and events. For example, a [[NewsArticle]] consisting of a column or [[Blog]]/[[BlogPosting]] entry in the Opinions section of a news publication. ", + "rdfs:label": "OpinionNewsArticle", + "rdfs:subClassOf": { + "@id": "schema:NewsArticle" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + ] + }, + { + "@id": "schema:preparation", + "@type": "rdf:Property", + "rdfs:comment": "Typical preparation that a patient must undergo before having the procedure performed.", + "rdfs:label": "preparation", + "schema:domainIncludes": { + "@id": "schema:MedicalProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MedicalEntity" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:PriceTypeEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates different price types, for example list price, invoice price, and sale price.", + "rdfs:label": "PriceTypeEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2712" + } + }, + { + "@id": "schema:iswcCode", + "@type": "rdf:Property", + "rdfs:comment": "The International Standard Musical Work Code for the composition.", + "rdfs:label": "iswcCode", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:priceComponent", + "@type": "rdf:Property", + "rdfs:comment": "This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node.", + "rdfs:label": "priceComponent", + "schema:domainIncludes": { + "@id": "schema:CompoundPriceSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:UnitPriceSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:ParcelDelivery", + "@type": "rdfs:Class", + "rdfs:comment": "The delivery of a parcel either via the postal service or a commercial service.", + "rdfs:label": "ParcelDelivery", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:serverStatus", + "@type": "rdf:Property", + "rdfs:comment": "Status of a game server.", + "rdfs:label": "serverStatus", + "schema:domainIncludes": { + "@id": "schema:GameServer" + }, + "schema:rangeIncludes": { + "@id": "schema:GameServerStatus" + } + }, + { + "@id": "schema:ownedFrom", + "@type": "rdf:Property", + "rdfs:comment": "The date and time of obtaining the product.", + "rdfs:label": "ownedFrom", + "schema:domainIncludes": { + "@id": "schema:OwnershipInfo" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:question", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. A question.", + "rdfs:label": "question", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:AskAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Question" + } + }, + { + "@id": "schema:FrontWheelDriveConfiguration", + "@type": "schema:DriveWheelConfigurationValue", + "rdfs:comment": "Front-wheel drive is a transmission layout where the engine drives the front wheels.", + "rdfs:label": "FrontWheelDriveConfiguration", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:nsn", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. ", + "rdfs:label": "nsn", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2126" + } + }, + { + "@id": "schema:PaymentStatusType", + "@type": "rdfs:Class", + "rdfs:comment": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.", + "rdfs:label": "PaymentStatusType", + "rdfs:subClassOf": { + "@id": "schema:StatusEnumeration" + } + }, + { + "@id": "schema:SpeakableSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A SpeakableSpecification indicates (typically via [[xpath]] or [[cssSelector]]) sections of a document that are highlighted as particularly [[speakable]]. Instances of this type are expected to be used primarily as values of the [[speakable]] property.", + "rdfs:label": "SpeakableSpecification", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1389" + } + }, + { + "@id": "schema:servingSize", + "@type": "rdf:Property", + "rdfs:comment": "The serving size, in terms of the number of volume or mass.", + "rdfs:label": "servingSize", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:alignmentType", + "@type": "rdf:Property", + "rdfs:comment": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.", + "rdfs:label": "alignmentType", + "schema:domainIncludes": { + "@id": "schema:AlignmentObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Boolean", + "@type": [ + "rdfs:Class", + "schema:DataType" + ], + "rdfs:comment": "Boolean: True or False.", + "rdfs:label": "Boolean" + }, + { + "@id": "schema:legalStatus", + "@type": "rdf:Property", + "rdfs:comment": "The drug or supplement's legal status, including any controlled substance schedules that apply.", + "rdfs:label": "legalStatus", + "schema:domainIncludes": [ + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DietarySupplement" + }, + { + "@id": "schema:MedicalEntity" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DrugLegalStatus" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:MedicalEnumeration" + } + ] + }, + { + "@id": "schema:Drawing", + "@type": "rdfs:Class", + "rdfs:comment": "A picture or diagram made with a pencil, pen, or crayon rather than paint.", + "rdfs:label": "Drawing", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1448" + } + }, + { + "@id": "schema:suggestedMaxAge", + "@type": "rdf:Property", + "rdfs:comment": "Maximum recommended age in years for the audience or user.", + "rdfs:label": "suggestedMaxAge", + "schema:domainIncludes": { + "@id": "schema:PeopleAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:Wholesale", + "@type": "schema:DrugCostCategory", + "rdfs:comment": "The drug's cost represents the wholesale acquisition cost of the drug.", + "rdfs:label": "Wholesale", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:telephone", + "@type": "rdf:Property", + "rdfs:comment": "The telephone number.", + "rdfs:label": "telephone", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:ContactPoint" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:orderDelivery", + "@type": "rdf:Property", + "rdfs:comment": "The delivery of the parcel related to this order or order item.", + "rdfs:label": "orderDelivery", + "schema:domainIncludes": [ + { + "@id": "schema:Order" + }, + { + "@id": "schema:OrderItem" + } + ], + "schema:rangeIncludes": { + "@id": "schema:ParcelDelivery" + } + }, + { + "@id": "schema:InformAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of notifying someone of information pertinent to them, with no expectation of a response.", + "rdfs:label": "InformAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:adverseOutcome", + "@type": "rdf:Property", + "rdfs:comment": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention), tag it as a seriouseAdverseOutcome instead.", + "rdfs:label": "adverseOutcome", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalDevice" + }, + { + "@id": "schema:TherapeuticProcedure" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEntity" + } + }, + { + "@id": "schema:honorificPrefix", + "@type": "rdf:Property", + "rdfs:comment": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.", + "rdfs:label": "honorificPrefix", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:bodyLocation", + "@type": "rdf:Property", + "rdfs:comment": "Location in the body of the anatomical structure.", + "rdfs:label": "bodyLocation", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalProcedure" + }, + { + "@id": "schema:AnatomicalStructure" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ItemListUnordered", + "@type": "schema:ItemListOrderType", + "rdfs:comment": "An ItemList ordered with no explicit order.", + "rdfs:label": "ItemListUnordered" + }, + { + "@id": "schema:ReturnFeesCustomerResponsibility", + "@type": "schema:ReturnFeesEnumeration", + "rdfs:comment": "Specifies that product returns must be paid for, and are the responsibility of, the customer.", + "rdfs:label": "ReturnFeesCustomerResponsibility", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:reviewRating", + "@type": "rdf:Property", + "rdfs:comment": "The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.", + "rdfs:label": "reviewRating", + "schema:domainIncludes": { + "@id": "schema:Review" + }, + "schema:rangeIncludes": { + "@id": "schema:Rating" + } + }, + { + "@id": "schema:warrantyPromise", + "@type": "rdf:Property", + "rdfs:comment": "The warranty promise(s) included in the offer.", + "rdfs:label": "warrantyPromise", + "schema:domainIncludes": [ + { + "@id": "schema:SellAction" + }, + { + "@id": "schema:BuyAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:WarrantyPromise" + }, + "schema:supersededBy": { + "@id": "schema:warranty" + } + }, + { + "@id": "schema:jobLocationType", + "@type": "rdf:Property", + "rdfs:comment": "A description of the job location (e.g TELECOMMUTE for telecommute jobs).", + "rdfs:label": "jobLocationType", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1591" + } + }, + { + "@id": "schema:Time", + "@type": [ + "schema:DataType", + "rdfs:Class" + ], + "rdfs:comment": "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)).", + "rdfs:label": "Time" + }, + { + "@id": "schema:ReviewNewsArticle", + "@type": "rdfs:Class", + "rdfs:comment": "A [[NewsArticle]] and [[CriticReview]] providing a professional critic's assessment of a service, product, performance, or artistic or literary work.", + "rdfs:label": "ReviewNewsArticle", + "rdfs:subClassOf": [ + { + "@id": "schema:CriticReview" + }, + { + "@id": "schema:NewsArticle" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:membershipPointsEarned", + "@type": "rdf:Property", + "rdfs:comment": "The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. (e.g. stars, miles, etc.)", + "rdfs:label": "membershipPointsEarned", + "schema:domainIncludes": { + "@id": "schema:ProgramMembership" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2085" + } + }, + { + "@id": "schema:ReimbursementCap", + "@type": "schema:DrugCostCategory", + "rdfs:comment": "The drug's cost represents the maximum reimbursement paid by an insurer for the drug.", + "rdfs:label": "ReimbursementCap", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MovingCompany", + "@type": "rdfs:Class", + "rdfs:comment": "A moving company.", + "rdfs:label": "MovingCompany", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:CDFormat", + "@type": "schema:MusicReleaseFormatType", + "rdfs:comment": "CDFormat.", + "rdfs:label": "CDFormat", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:trainName", + "@type": "rdf:Property", + "rdfs:comment": "The name of the train (e.g. The Orient Express).", + "rdfs:label": "trainName", + "schema:domainIncludes": { + "@id": "schema:TrainTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:parents", + "@type": "rdf:Property", + "rdfs:comment": "A parents of the person.", + "rdfs:label": "parents", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:parent" + } + }, + { + "@id": "schema:providesService", + "@type": "rdf:Property", + "rdfs:comment": "The service provided by this channel.", + "rdfs:label": "providesService", + "schema:domainIncludes": { + "@id": "schema:ServiceChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:Service" + } + }, + { + "@id": "schema:namedPosition", + "@type": "rdf:Property", + "rdfs:comment": "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.", + "rdfs:label": "namedPosition", + "schema:domainIncludes": { + "@id": "schema:Role" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:supersededBy": { + "@id": "schema:roleName" + } + }, + { + "@id": "schema:BoardingPolicyType", + "@type": "rdfs:Class", + "rdfs:comment": "A type of boarding policy used by an airline.", + "rdfs:label": "BoardingPolicyType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:responsibilities", + "@type": "rdf:Property", + "rdfs:comment": "Responsibilities associated with this role or Occupation.", + "rdfs:label": "responsibilities", + "schema:domainIncludes": [ + { + "@id": "schema:JobPosting" + }, + { + "@id": "schema:Occupation" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:NGO", + "@type": "rdfs:Class", + "rdfs:comment": "Organization: Non-governmental Organization.", + "rdfs:label": "NGO", + "rdfs:subClassOf": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:eventAttendanceMode", + "@type": "rdf:Property", + "rdfs:comment": "The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.", + "rdfs:label": "eventAttendanceMode", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:EventAttendanceModeEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:PlaceboControlledTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A placebo-controlled trial design.", + "rdfs:label": "PlaceboControlledTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:DeliveryTimeSettings", + "@type": "rdfs:Class", + "rdfs:comment": "A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of a [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]].", + "rdfs:label": "DeliveryTimeSettings", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:Invoice", + "@type": "rdfs:Class", + "rdfs:comment": "A statement of the money due for goods or services; a bill.", + "rdfs:label": "Invoice", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:WearableMeasurementChestOrBust", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the chest/bust section, for example of a suit", + "rdfs:label": "WearableMeasurementChestOrBust", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:startOffset", + "@type": "rdf:Property", + "rdfs:comment": "The start time of the clip expressed as the number of seconds from the beginning of the work.", + "rdfs:label": "startOffset", + "schema:domainIncludes": [ + { + "@id": "schema:SeekToAction" + }, + { + "@id": "schema:Clip" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:HyperTocEntry" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2021" + } + }, + { + "@id": "schema:familyName", + "@type": "rdf:Property", + "rdfs:comment": "Family name. In the U.S., the last name of a Person.", + "rdfs:label": "familyName", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:causeOf", + "@type": "rdf:Property", + "rdfs:comment": "The condition, complication, symptom, sign, etc. caused.", + "rdfs:label": "causeOf", + "schema:domainIncludes": { + "@id": "schema:MedicalCause" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEntity" + } + }, + { + "@id": "schema:GasStation", + "@type": "rdfs:Class", + "rdfs:comment": "A gas station.", + "rdfs:label": "GasStation", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:embeddedTextCaption", + "@type": "rdf:Property", + "rdfs:comment": "Represents textual captioning from a [[MediaObject]], e.g. text of a 'meme'.", + "rdfs:label": "embeddedTextCaption", + "rdfs:subPropertyOf": { + "@id": "schema:caption" + }, + "schema:domainIncludes": [ + { + "@id": "schema:VideoObject" + }, + { + "@id": "schema:AudioObject" + }, + { + "@id": "schema:ImageObject" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:RecommendedDoseSchedule", + "@type": "rdfs:Class", + "rdfs:comment": "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.", + "rdfs:label": "RecommendedDoseSchedule", + "rdfs:subClassOf": { + "@id": "schema:DoseSchedule" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:DrugCost", + "@type": "rdfs:Class", + "rdfs:comment": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.", + "rdfs:label": "DrugCost", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:orderItemStatus", + "@type": "rdf:Property", + "rdfs:comment": "The current status of the order item.", + "rdfs:label": "orderItemStatus", + "schema:domainIncludes": { + "@id": "schema:OrderItem" + }, + "schema:rangeIncludes": { + "@id": "schema:OrderStatus" + } + }, + { + "@id": "schema:applicableLocation", + "@type": "rdf:Property", + "rdfs:comment": "The location in which the status applies.", + "rdfs:label": "applicableLocation", + "schema:domainIncludes": [ + { + "@id": "schema:DrugCost" + }, + { + "@id": "schema:DrugLegalStatus" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AdministrativeArea" + } + }, + { + "@id": "schema:Car", + "@type": "rdfs:Class", + "rdfs:comment": "A car is a wheeled, self-powered motor vehicle used for transportation.", + "rdfs:label": "Car", + "rdfs:subClassOf": { + "@id": "schema:Vehicle" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:OriginalMediaContent", + "@type": "schema:MediaManipulationRatingEnumeration", + "rdfs:comment": "Content coded 'as original media content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'original': No evidence the footage has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n\nFor an [[ImageObject]] to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[ImageObject]] with embedded text to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[AudioObject]] to be 'original': No evidence the audio has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n", + "rdfs:label": "OriginalMediaContent", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:tracks", + "@type": "rdf:Property", + "rdfs:comment": "A music recording (track)—usually a single song.", + "rdfs:label": "tracks", + "schema:domainIncludes": [ + { + "@id": "schema:MusicPlaylist" + }, + { + "@id": "schema:MusicGroup" + } + ], + "schema:rangeIncludes": { + "@id": "schema:MusicRecording" + }, + "schema:supersededBy": { + "@id": "schema:track" + } + }, + { + "@id": "schema:material", + "@type": "rdf:Property", + "rdfs:comment": "A material that something is made from, e.g. leather, wool, cotton, paper.", + "rdfs:label": "material", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:Product" + } + ] + }, + { + "@id": "schema:touristType", + "@type": "rdf:Property", + "rdfs:comment": "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. ", + "rdfs:label": "touristType", + "schema:domainIncludes": [ + { + "@id": "schema:TouristTrip" + }, + { + "@id": "schema:TouristDestination" + }, + { + "@id": "schema:TouristAttraction" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Audience" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + } + ] + }, + { + "@id": "schema:AboutPage", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: About page.", + "rdfs:label": "AboutPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:valueMaxLength", + "@type": "rdf:Property", + "rdfs:comment": "Specifies the allowed range for number of characters in a literal value.", + "rdfs:label": "valueMaxLength", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:representativeOfPage", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether this image is representative of the content of the page.", + "rdfs:label": "representativeOfPage", + "schema:domainIncludes": { + "@id": "schema:ImageObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:review", + "@type": "rdf:Property", + "rdfs:comment": "A review of the item.", + "rdfs:label": "review", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Brand" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Review" + } + }, + { + "@id": "schema:OfferItemCondition", + "@type": "rdfs:Class", + "rdfs:comment": "A list of possible conditions for the item.", + "rdfs:label": "OfferItemCondition", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:LodgingReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.", + "rdfs:label": "LodgingReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:fileFormat", + "@type": "rdf:Property", + "rdfs:comment": "Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.", + "rdfs:label": "fileFormat", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:supersededBy": { + "@id": "schema:encodingFormat" + } + }, + { + "@id": "schema:EndorsementRating", + "@type": "rdfs:Class", + "rdfs:comment": "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n", + "rdfs:label": "EndorsementRating", + "rdfs:subClassOf": { + "@id": "schema:Rating" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1293" + } + }, + { + "@id": "schema:Renal", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.", + "rdfs:label": "Renal", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ShortStory", + "@type": "rdfs:Class", + "rdfs:comment": "Short story or tale. A brief work of literature, usually written in narrative prose.", + "rdfs:label": "ShortStory", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1976" + } + }, + { + "@id": "schema:Subscription", + "@type": "schema:PriceComponentTypeEnumeration", + "rdfs:comment": "Represents the subscription pricing component of the total price for an offered product.", + "rdfs:label": "Subscription", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:sensoryUnit", + "@type": "rdf:Property", + "rdfs:comment": "The neurological pathway extension that inputs and sends information to the brain or spinal cord.", + "rdfs:label": "sensoryUnit", + "schema:domainIncludes": { + "@id": "schema:Nerve" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:SuperficialAnatomy" + }, + { + "@id": "schema:AnatomicalStructure" + } + ] + }, + { + "@id": "schema:UserPageVisits", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserPageVisits", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:accessCode", + "@type": "rdf:Property", + "rdfs:comment": "Password, PIN, or access code needed for delivery (e.g. from a locker).", + "rdfs:label": "accessCode", + "schema:domainIncludes": { + "@id": "schema:DeliveryEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:givenName", + "@type": "rdf:Property", + "rdfs:comment": "Given name. In the U.S., the first name of a Person.", + "rdfs:label": "givenName", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Appearance", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Appearance assessment with clinical examination.", + "rdfs:label": "Appearance", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:knowsAbout", + "@type": "rdf:Property", + "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.", + "rdfs:label": "knowsAbout", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:Thing" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1688" + } + ] + }, + { + "@id": "schema:TipAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.", + "rdfs:label": "TipAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:performerIn", + "@type": "rdf:Property", + "rdfs:comment": "Event that this person is a performer or participant in.", + "rdfs:label": "performerIn", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:WearableSizeGroupExtraTall", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Extra Tall\" for wearables.", + "rdfs:label": "WearableSizeGroupExtraTall", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:availableTest", + "@type": "rdf:Property", + "rdfs:comment": "A diagnostic test or procedure offered by this lab.", + "rdfs:label": "availableTest", + "schema:domainIncludes": { + "@id": "schema:DiagnosticLab" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTest" + } + }, + { + "@id": "schema:PerformingArtsTheater", + "@type": "rdfs:Class", + "rdfs:comment": "A theater or other performing art center.", + "rdfs:label": "PerformingArtsTheater", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:Event", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "dcmitype:Event" + }, + "rdfs:comment": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.", + "rdfs:label": "Event", + "rdfs:subClassOf": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:mechanismOfAction", + "@type": "rdf:Property", + "rdfs:comment": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.", + "rdfs:label": "mechanismOfAction", + "schema:domainIncludes": [ + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DietarySupplement" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:includedDataCatalog", + "@type": "rdf:Property", + "rdfs:comment": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').", + "rdfs:label": "includedDataCatalog", + "schema:domainIncludes": { + "@id": "schema:Dataset" + }, + "schema:rangeIncludes": { + "@id": "schema:DataCatalog" + }, + "schema:supersededBy": { + "@id": "schema:includedInDataCatalog" + } + }, + { + "@id": "schema:AllergiesHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about the allergy-related aspects of a health topic.", + "rdfs:label": "AllergiesHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2799" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryA2Plus", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryA2Plus", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:FoodEstablishment", + "@type": "rdfs:Class", + "rdfs:comment": "A food-related business.", + "rdfs:label": "FoodEstablishment", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:entertainmentBusiness", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The entertainment business where the action occurred.", + "rdfs:label": "entertainmentBusiness", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:PerformAction" + }, + "schema:rangeIncludes": { + "@id": "schema:EntertainmentBusiness" + } + }, + { + "@id": "schema:SubscribeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.", + "rdfs:label": "SubscribeAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:WearableSizeSystemJP", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "Japanese size system for wearables.", + "rdfs:label": "WearableSizeSystemJP", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:releaseOf", + "@type": "rdf:Property", + "rdfs:comment": "The album this is a release of.", + "rdfs:label": "releaseOf", + "schema:domainIncludes": { + "@id": "schema:MusicRelease" + }, + "schema:inverseOf": { + "@id": "schema:albumRelease" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicAlbum" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:netWorth", + "@type": "rdf:Property", + "rdfs:comment": "The total financial value of the person as calculated by subtracting assets from liabilities.", + "rdfs:label": "netWorth", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:PriceSpecification" + } + ] + }, + { + "@id": "schema:OfferForLease", + "@type": "rdfs:Class", + "rdfs:comment": "An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose\n [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ", + "rdfs:label": "OfferForLease", + "rdfs:subClassOf": { + "@id": "schema:Offer" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2348" + } + }, + { + "@id": "schema:BusinessSupport", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "BusinessSupport: this is a benefit for supporting businesses.", + "rdfs:label": "BusinessSupport", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:CompleteDataFeed", + "@type": "rdfs:Class", + "rdfs:comment": "A [[CompleteDataFeed]] is a [[DataFeed]] whose standard representation includes content for every item currently in the feed.\n\nThis is the equivalent of Atom's element as defined in Feed Paging and Archiving [RFC 5005](https://tools.ietf.org/html/rfc5005), For example (and as defined for Atom), when using data from a feed that represents a collection of items that varies over time (e.g. \"Top Twenty Records\") there is no need to have newer entries mixed in alongside older, obsolete entries. By marking this feed as a CompleteDataFeed, old entries can be safely discarded when the feed is refreshed, since we can assume the feed has provided descriptions for all current items.", + "rdfs:label": "CompleteDataFeed", + "rdfs:subClassOf": { + "@id": "schema:DataFeed" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1397" + } + }, + { + "@id": "schema:numTracks", + "@type": "rdf:Property", + "rdfs:comment": "The number of tracks in this album or playlist.", + "rdfs:label": "numTracks", + "schema:domainIncludes": { + "@id": "schema:MusicPlaylist" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:Nonprofit501c1", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations.", + "rdfs:label": "Nonprofit501c1", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:homeTeam", + "@type": "rdf:Property", + "rdfs:comment": "The home team in a sports event.", + "rdfs:label": "homeTeam", + "rdfs:subPropertyOf": { + "@id": "schema:competitor" + }, + "schema:domainIncludes": { + "@id": "schema:SportsEvent" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:SportsTeam" + } + ] + }, + { + "@id": "schema:OutletStore", + "@type": "rdfs:Class", + "rdfs:comment": "An outlet store.", + "rdfs:label": "OutletStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:Country", + "@type": "rdfs:Class", + "rdfs:comment": "A country.", + "rdfs:label": "Country", + "rdfs:subClassOf": { + "@id": "schema:AdministrativeArea" + } + }, + { + "@id": "schema:BenefitsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about the benefits and advantages of usage or utilization of topic.", + "rdfs:label": "BenefitsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:HealthClub", + "@type": "rdfs:Class", + "rdfs:comment": "A health club.", + "rdfs:label": "HealthClub", + "rdfs:subClassOf": [ + { + "@id": "schema:HealthAndBeautyBusiness" + }, + { + "@id": "schema:SportsActivityLocation" + } + ] + }, + { + "@id": "schema:agent", + "@type": "rdf:Property", + "rdfs:comment": "The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book.", + "rdfs:label": "agent", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:text", + "@type": "rdf:Property", + "rdfs:comment": "The textual content of this CreativeWork.", + "rdfs:label": "text", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ticketedSeat", + "@type": "rdf:Property", + "rdfs:comment": "The seat associated with the ticket.", + "rdfs:label": "ticketedSeat", + "schema:domainIncludes": { + "@id": "schema:Ticket" + }, + "schema:rangeIncludes": { + "@id": "schema:Seat" + } + }, + { + "@id": "schema:Female", + "@type": "schema:GenderType", + "rdfs:comment": "The female gender.", + "rdfs:label": "Female" + }, + { + "@id": "schema:CardiovascularExam", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Cardiovascular system assessment withclinical examination.", + "rdfs:label": "CardiovascularExam", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Diet", + "@type": "rdfs:Class", + "rdfs:comment": "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.", + "rdfs:label": "Diet", + "rdfs:subClassOf": [ + { + "@id": "schema:LifestyleModification" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:BoatReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for boat travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].", + "rdfs:label": "BoatReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1755" + } + }, + { + "@id": "schema:circle", + "@type": "rdf:Property", + "rdfs:comment": "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.", + "rdfs:label": "circle", + "schema:domainIncludes": { + "@id": "schema:GeoShape" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:referencesOrder", + "@type": "rdf:Property", + "rdfs:comment": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.", + "rdfs:label": "referencesOrder", + "schema:domainIncludes": { + "@id": "schema:Invoice" + }, + "schema:rangeIncludes": { + "@id": "schema:Order" + } + }, + { + "@id": "schema:ElementarySchool", + "@type": "rdfs:Class", + "rdfs:comment": "An elementary school.", + "rdfs:label": "ElementarySchool", + "rdfs:subClassOf": { + "@id": "schema:EducationalOrganization" + } + }, + { + "@id": "schema:translator", + "@type": "rdf:Property", + "rdfs:comment": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.", + "rdfs:label": "translator", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Event" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:trailerWeight", + "@type": "rdf:Property", + "rdfs:comment": "The permitted weight of a trailer attached to the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "trailerWeight", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:returnPolicyCountry", + "@type": "rdf:Property", + "rdfs:comment": "The country where the product has to be sent to for returns, for example \"Ireland\" using the [[name]] property of [[Country]]. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). Note that this can be different from the country where the product was originally shipped from or sent too.", + "rdfs:label": "returnPolicyCountry", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Country" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:startDate", + "@type": "rdf:Property", + "rdfs:comment": "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", + "rdfs:label": "startDate", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWorkSeries" + }, + { + "@id": "schema:EducationalOccupationalProgram" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:Schedule" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:Role" + }, + { + "@id": "schema:DatedMoneySpecification" + }, + { + "@id": "schema:MerchantReturnPolicySeasonalOverride" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2486" + } + }, + { + "@id": "schema:award", + "@type": "rdf:Property", + "rdfs:comment": "An award won by or for this item.", + "rdfs:label": "award", + "schema:domainIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:maps", + "@type": "rdf:Property", + "rdfs:comment": "A URL to a map of the place.", + "rdfs:label": "maps", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:supersededBy": { + "@id": "schema:hasMap" + } + }, + { + "@id": "schema:BodyMeasurementWeight", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Body weight. Used, for example, to measure pantyhose.", + "rdfs:label": "BodyMeasurementWeight", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:MusicAlbum", + "@type": "rdfs:Class", + "rdfs:comment": "A collection of music tracks.", + "rdfs:label": "MusicAlbum", + "rdfs:subClassOf": { + "@id": "schema:MusicPlaylist" + } + }, + { + "@id": "schema:MeasurementTypeEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumeration of common measurement types (or dimensions), for example \"chest\" for a person, \"inseam\" for pants, \"gauge\" for screws, or \"wheel\" for bicycles.", + "rdfs:label": "MeasurementTypeEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:ExerciseAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of participating in exertive activity for the purposes of improving health and fitness.", + "rdfs:label": "ExerciseAction", + "rdfs:subClassOf": { + "@id": "schema:PlayAction" + } + }, + { + "@id": "schema:WearableSizeSystemCN", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "Chinese size system for wearables.", + "rdfs:label": "WearableSizeSystemCN", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:MusicAlbumReleaseType", + "@type": "rdfs:Class", + "rdfs:comment": "The kind of release which this album is: single, EP or album.", + "rdfs:label": "MusicAlbumReleaseType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:assesses", + "@type": "rdf:Property", + "rdfs:comment": "The item being described is intended to assess the competency or learning outcome defined by the referenced term.", + "rdfs:label": "assesses", + "schema:domainIncludes": [ + { + "@id": "schema:EducationEvent" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:LearningResource" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2427" + } + }, + { + "@id": "schema:billingAddress", + "@type": "rdf:Property", + "rdfs:comment": "The billing address for the order.", + "rdfs:label": "billingAddress", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:PostalAddress" + } + }, + { + "@id": "schema:AutoPartsStore", + "@type": "rdfs:Class", + "rdfs:comment": "An auto parts store.", + "rdfs:label": "AutoPartsStore", + "rdfs:subClassOf": [ + { + "@id": "schema:Store" + }, + { + "@id": "schema:AutomotiveBusiness" + } + ] + }, + { + "@id": "schema:EventAttendanceModeEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline.", + "rdfs:label": "EventAttendanceModeEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:DanceEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: A social dance.", + "rdfs:label": "DanceEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:originalMediaContextDescription", + "@type": "rdf:Property", + "rdfs:comment": "Describes, in a [[MediaReview]] when dealing with [[DecontextualizedContent]], background information that can contribute to better interpretation of the [[MediaObject]].", + "rdfs:label": "originalMediaContextDescription", + "rdfs:subPropertyOf": { + "@id": "schema:description" + }, + "schema:domainIncludes": { + "@id": "schema:MediaReview" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:DeleteAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of editing a recipient by removing one of its objects.", + "rdfs:label": "DeleteAction", + "rdfs:subClassOf": { + "@id": "schema:UpdateAction" + } + }, + { + "@id": "schema:QuantitativeValueDistribution", + "@type": "rdfs:Class", + "rdfs:comment": "A statistical distribution of values.", + "rdfs:label": "QuantitativeValueDistribution", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:RemixAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "RemixAlbum.", + "rdfs:label": "RemixAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:greaterOrEqual", + "@type": "rdf:Property", + "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.", + "rdfs:label": "greaterOrEqual", + "schema:domainIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:rangeIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:accountId", + "@type": "rdf:Property", + "rdfs:comment": "The identifier for the account the payment will be applied to.", + "rdfs:label": "accountId", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Invoice" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:copyrightNotice", + "@type": "rdf:Property", + "rdfs:comment": "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.", + "rdfs:label": "copyrightNotice", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2659" + } + }, + { + "@id": "schema:composer", + "@type": "rdf:Property", + "rdfs:comment": "The person or organization who wrote a composition, or who is the composer of a work performed at some event.", + "rdfs:label": "composer", + "schema:domainIncludes": [ + { + "@id": "schema:Event" + }, + { + "@id": "schema:MusicComposition" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:DiscussionForumPosting", + "@type": "rdfs:Class", + "rdfs:comment": "A posting to a discussion forum.", + "rdfs:label": "DiscussionForumPosting", + "rdfs:subClassOf": { + "@id": "schema:SocialMediaPosting" + } + }, + { + "@id": "schema:Nursing", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A health profession of a person formally educated and trained in the care of the sick or infirm person.", + "rdfs:label": "Nursing", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:PublicSwimmingPool", + "@type": "rdfs:Class", + "rdfs:comment": "A public swimming pool.", + "rdfs:label": "PublicSwimmingPool", + "rdfs:subClassOf": { + "@id": "schema:SportsActivityLocation" + } + }, + { + "@id": "schema:recipient", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The participant who is at the receiving end of the action.", + "rdfs:label": "recipient", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Message" + }, + { + "@id": "schema:SendAction" + }, + { + "@id": "schema:AuthorizeAction" + }, + { + "@id": "schema:ReturnAction" + }, + { + "@id": "schema:PayAction" + }, + { + "@id": "schema:DonateAction" + }, + { + "@id": "schema:CommunicateAction" + }, + { + "@id": "schema:GiveAction" + }, + { + "@id": "schema:TipAction" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Audience" + }, + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:Nerve", + "@type": "rdfs:Class", + "rdfs:comment": "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.", + "rdfs:label": "Nerve", + "rdfs:subClassOf": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:trackingNumber", + "@type": "rdf:Property", + "rdfs:comment": "Shipper tracking number.", + "rdfs:label": "trackingNumber", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:schemaVersion", + "@type": "rdf:Property", + "rdfs:comment": "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to\n indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```https://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.", + "rdfs:label": "schemaVersion", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:endOffset", + "@type": "rdf:Property", + "rdfs:comment": "The end time of the clip expressed as the number of seconds from the beginning of the work.", + "rdfs:label": "endOffset", + "schema:domainIncludes": { + "@id": "schema:Clip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:HyperTocEntry" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2021" + } + }, + { + "@id": "schema:offersPrescriptionByMail", + "@type": "rdf:Property", + "rdfs:comment": "Whether prescriptions can be delivered by mail.", + "rdfs:label": "offersPrescriptionByMail", + "schema:domainIncludes": { + "@id": "schema:HealthPlanFormulary" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:BackgroundNewsArticle", + "@type": "rdfs:Class", + "rdfs:comment": "A [[NewsArticle]] providing historical context, definition and detail on a specific topic (aka \"explainer\" or \"backgrounder\"). For example, an in-depth article or frequently-asked-questions ([FAQ](https://en.wikipedia.org/wiki/FAQ)) document on topics such as Climate Change or the European Union. Other kinds of background material from a non-news setting are often described using [[Book]] or [[Article]], in particular [[ScholarlyArticle]]. See also [[NewsArticle]] for related vocabulary from a learning/education perspective.", + "rdfs:label": "BackgroundNewsArticle", + "rdfs:subClassOf": { + "@id": "schema:NewsArticle" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + ] + }, + { + "@id": "schema:totalPrice", + "@type": "rdf:Property", + "rdfs:comment": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.", + "rdfs:label": "totalPrice", + "schema:domainIncludes": [ + { + "@id": "schema:Reservation" + }, + { + "@id": "schema:Ticket" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:PriceSpecification" + }, + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:legislationTransposes", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#transposes" + }, + "rdfs:comment": "Indicates that this legislation (or part of legislation) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.", + "rdfs:label": "legislationTransposes", + "rdfs:subPropertyOf": { + "@id": "schema:legislationApplies" + }, + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Legislation" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + }, + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#transposes" + } + }, + { + "@id": "schema:DataFeedItem", + "@type": "rdfs:Class", + "rdfs:comment": "A single item within a larger data feed.", + "rdfs:label": "DataFeedItem", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:PaymentMethod", + "@type": "rdfs:Class", + "rdfs:comment": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\n ", + "rdfs:label": "PaymentMethod", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:WearAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of dressing oneself in clothing.", + "rdfs:label": "WearAction", + "rdfs:subClassOf": { + "@id": "schema:UseAction" + } + }, + { + "@id": "schema:merchantReturnLink", + "@type": "rdf:Property", + "rdfs:comment": "Specifies a Web page or service by URL, for product returns.", + "rdfs:label": "merchantReturnLink", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:OutOfStock", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item is out of stock.", + "rdfs:label": "OutOfStock" + }, + { + "@id": "schema:Corporation", + "@type": "rdfs:Class", + "rdfs:comment": "Organization: A business corporation.", + "rdfs:label": "Corporation", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + }, + { + "@id": "schema:SocialEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Social event.", + "rdfs:label": "SocialEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:HowToSupply", + "@type": "rdfs:Class", + "rdfs:comment": "A supply consumed when performing the instructions for how to achieve a result.", + "rdfs:label": "HowToSupply", + "rdfs:subClassOf": { + "@id": "schema:HowToItem" + } + }, + { + "@id": "schema:ExercisePlan", + "@type": "rdfs:Class", + "rdfs:comment": "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.", + "rdfs:label": "ExercisePlan", + "rdfs:subClassOf": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:PhysicalActivity" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:AutoRepair", + "@type": "rdfs:Class", + "rdfs:comment": "Car repair business.", + "rdfs:label": "AutoRepair", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:doesNotShip", + "@type": "rdf:Property", + "rdfs:comment": "Indicates when shipping to a particular [[shippingDestination]] is not available.", + "rdfs:label": "doesNotShip", + "schema:domainIncludes": [ + { + "@id": "schema:ShippingRateSettings" + }, + { + "@id": "schema:OfferShippingDetails" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:TraditionalChinese", + "@type": "schema:MedicineSystem", + "rdfs:comment": "A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.", + "rdfs:label": "TraditionalChinese", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:closes", + "@type": "rdf:Property", + "rdfs:comment": "The closing hour of the place or service on the given day(s) of the week.", + "rdfs:label": "closes", + "schema:domainIncludes": { + "@id": "schema:OpeningHoursSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Time" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:Dermatologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "Something relating to or practicing dermatology.", + "rdfs:label": "Dermatologic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:supersededBy": { + "@id": "schema:Dermatology" + } + }, + { + "@id": "schema:episodeNumber", + "@type": "rdf:Property", + "rdfs:comment": "Position of the episode within an ordered group of episodes.", + "rdfs:label": "episodeNumber", + "rdfs:subPropertyOf": { + "@id": "schema:position" + }, + "schema:domainIncludes": { + "@id": "schema:Episode" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:workLocation", + "@type": "rdf:Property", + "rdfs:comment": "A contact location for a person's place of work.", + "rdfs:label": "workLocation", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:ContactPoint" + } + ] + }, + { + "@id": "schema:width", + "@type": "rdf:Property", + "rdfs:comment": "The width of the item.", + "rdfs:label": "width", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:VisualArtwork" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Distance" + } + ] + }, + { + "@id": "schema:numberOfItems", + "@type": "rdf:Property", + "rdfs:comment": "The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.", + "rdfs:label": "numberOfItems", + "schema:domainIncludes": { + "@id": "schema:ItemList" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:SubwayStation", + "@type": "rdfs:Class", + "rdfs:comment": "A subway station.", + "rdfs:label": "SubwayStation", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:DaySpa", + "@type": "rdfs:Class", + "rdfs:comment": "A day spa.", + "rdfs:label": "DaySpa", + "rdfs:subClassOf": { + "@id": "schema:HealthAndBeautyBusiness" + } + }, + { + "@id": "schema:honorificSuffix", + "@type": "rdf:Property", + "rdfs:comment": "An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.", + "rdfs:label": "honorificSuffix", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:governmentBenefitsInfo", + "@type": "rdf:Property", + "rdfs:comment": "governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.", + "rdfs:label": "governmentBenefitsInfo", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:GovernmentService" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:geoContains", + "@type": "rdf:Property", + "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", + "rdfs:label": "geoContains", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ] + }, + { + "@id": "schema:jobLocation", + "@type": "rdf:Property", + "rdfs:comment": "A (typically single) geographic location associated with the job position.", + "rdfs:label": "jobLocation", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:shippingSettingsLink", + "@type": "rdf:Property", + "rdfs:comment": "Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.", + "rdfs:label": "shippingSettingsLink", + "schema:domainIncludes": { + "@id": "schema:OfferShippingDetails" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:Radiography", + "@type": [ + "schema:MedicalSpecialty", + "schema:MedicalImagingTechnique" + ], + "rdfs:comment": "Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body.", + "rdfs:label": "Radiography", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:RadioStation", + "@type": "rdfs:Class", + "rdfs:comment": "A radio station.", + "rdfs:label": "RadioStation", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:proteinContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of protein.", + "rdfs:label": "proteinContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:memoryRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Minimum memory requirements.", + "rdfs:label": "memoryRequirements", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:serviceAudience", + "@type": "rdf:Property", + "rdfs:comment": "The audience eligible for this service.", + "rdfs:label": "serviceAudience", + "schema:domainIncludes": { + "@id": "schema:Service" + }, + "schema:rangeIncludes": { + "@id": "schema:Audience" + }, + "schema:supersededBy": { + "@id": "schema:audience" + } + }, + { + "@id": "schema:SatireOrParodyContent", + "@type": "schema:MediaManipulationRatingEnumeration", + "rdfs:comment": "Content coded 'satire or parody content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'satire or parody content': A video that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] with embedded text to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[AudioObject]] to be 'satire or parody content': Audio that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n", + "rdfs:label": "SatireOrParodyContent", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:PaymentCard", + "@type": "rdfs:Class", + "rdfs:comment": "A payment method using a credit, debit, store or other card to associate the payment with an account.", + "rdfs:label": "PaymentCard", + "rdfs:subClassOf": [ + { + "@id": "schema:PaymentMethod" + }, + { + "@id": "schema:FinancialProduct" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:studyDesign", + "@type": "rdf:Property", + "rdfs:comment": "Specifics about the observational study design (enumerated).", + "rdfs:label": "studyDesign", + "schema:domainIncludes": { + "@id": "schema:MedicalObservationalStudy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalObservationalStudyDesign" + } + }, + { + "@id": "schema:loanMortgageMandateAmount", + "@type": "rdf:Property", + "rdfs:comment": "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.", + "rdfs:label": "loanMortgageMandateAmount", + "schema:domainIncludes": { + "@id": "schema:MortgageLoan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:codeValue", + "@type": "rdf:Property", + "rdfs:comment": "A short textual code that uniquely identifies the value.", + "rdfs:label": "codeValue", + "rdfs:subPropertyOf": { + "@id": "schema:termCode" + }, + "schema:domainIncludes": [ + { + "@id": "schema:MedicalCode" + }, + { + "@id": "schema:CategoryCode" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:acceptedOffer", + "@type": "rdf:Property", + "rdfs:comment": "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.", + "rdfs:label": "acceptedOffer", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:Offer" + } + }, + { + "@id": "schema:ProductGroup", + "@type": "rdfs:Class", + "rdfs:comment": "A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc.\n\nWhile a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. ", + "rdfs:label": "ProductGroup", + "rdfs:subClassOf": { + "@id": "schema:Product" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2597" + } + }, + { + "@id": "schema:ShoeStore", + "@type": "rdfs:Class", + "rdfs:comment": "A shoe store.", + "rdfs:label": "ShoeStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:Recruiting", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Recruiting participants.", + "rdfs:label": "Recruiting", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Nonprofit501n", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501n: Non-profit type referring to Charitable Risk Pools.", + "rdfs:label": "Nonprofit501n", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:PerformanceRole", + "@type": "rdfs:Class", + "rdfs:comment": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.", + "rdfs:label": "PerformanceRole", + "rdfs:subClassOf": { + "@id": "schema:Role" + } + }, + { + "@id": "schema:DietNutrition", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "Dietetic and nutrition as a medical specialty.", + "rdfs:label": "DietNutrition", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:SportsActivityLocation", + "@type": "rdfs:Class", + "rdfs:comment": "A sports location, such as a playing field.", + "rdfs:label": "SportsActivityLocation", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:BodyMeasurementTypeEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates types (or dimensions) of a person's body measurements, for example for fitting of clothes.", + "rdfs:label": "BodyMeasurementTypeEnumeration", + "rdfs:subClassOf": { + "@id": "schema:MeasurementTypeEnumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:deathPlace", + "@type": "rdf:Property", + "rdfs:comment": "The place where the person died.", + "rdfs:label": "deathPlace", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:isPlanForApartment", + "@type": "rdf:Property", + "rdfs:comment": "Indicates some accommodation that this floor plan describes.", + "rdfs:label": "isPlanForApartment", + "schema:domainIncludes": { + "@id": "schema:FloorPlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Accommodation" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:TieAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of reaching a draw in a competitive activity.", + "rdfs:label": "TieAction", + "rdfs:subClassOf": { + "@id": "schema:AchieveAction" + } + }, + { + "@id": "schema:AuthorizeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of granting permission to an object.", + "rdfs:label": "AuthorizeAction", + "rdfs:subClassOf": { + "@id": "schema:AllocateAction" + } + }, + { + "@id": "schema:AutoRental", + "@type": "rdfs:Class", + "rdfs:comment": "A car rental business.", + "rdfs:label": "AutoRental", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:MortgageLoan", + "@type": "rdfs:Class", + "rdfs:comment": "A loan in which property or real estate is used as collateral. (A loan securitized against some real estate).", + "rdfs:label": "MortgageLoan", + "rdfs:subClassOf": { + "@id": "schema:LoanOrCredit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:restockingFee", + "@type": "rdf:Property", + "rdfs:comment": "Use [[MonetaryAmount]] to specify a fixed restocking fee for product returns, or use [[Number]] to specify a percentage of the product price paid by the customer.", + "rdfs:label": "restockingFee", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:countryOfOrigin", + "@type": "rdf:Property", + "rdfs:comment": "The country of origin of something, including products as well as creative works such as movie and TV content.\n\nIn the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.\n\nIn the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.", + "rdfs:label": "countryOfOrigin", + "schema:domainIncludes": [ + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:TVSeason" + }, + { + "@id": "schema:TVEpisode" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Country" + } + }, + { + "@id": "schema:costPerUnit", + "@type": "rdf:Property", + "rdfs:comment": "The cost per unit of the drug.", + "rdfs:label": "costPerUnit", + "schema:domainIncludes": { + "@id": "schema:DrugCost" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:QualitativeValue" + } + ] + }, + { + "@id": "schema:pattern", + "@type": "rdf:Property", + "rdfs:comment": "A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.", + "rdfs:label": "pattern", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1797" + } + }, + { + "@id": "schema:cvdNumC19Died", + "@type": "rdf:Property", + "rdfs:comment": "numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.", + "rdfs:label": "cvdNumC19Died", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:numberOfLoanPayments", + "@type": "rdf:Property", + "rdfs:comment": "The number of payments contractually required at origination to repay the loan. For monthly paying loans this is the number of months from the contractual first payment date to the maturity date.", + "rdfs:label": "numberOfLoanPayments", + "schema:domainIncludes": { + "@id": "schema:RepaymentSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:MovieSeries", + "@type": "rdfs:Class", + "rdfs:comment": "A series of movies. Included movies can be indicated with the hasPart property.", + "rdfs:label": "MovieSeries", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeries" + } + }, + { + "@id": "schema:musicCompositionForm", + "@type": "rdf:Property", + "rdfs:comment": "The type of composition (e.g. overture, sonata, symphony, etc.).", + "rdfs:label": "musicCompositionForm", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:includesHealthPlanFormulary", + "@type": "rdf:Property", + "rdfs:comment": "Formularies covered by this plan.", + "rdfs:label": "includesHealthPlanFormulary", + "schema:domainIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:HealthPlanFormulary" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:ReturnAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).", + "rdfs:label": "ReturnAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:arrivalTime", + "@type": "rdf:Property", + "rdfs:comment": "The expected arrival time.", + "rdfs:label": "arrivalTime", + "schema:domainIncludes": { + "@id": "schema:Trip" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Time" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:maximumAttendeeCapacity", + "@type": "rdf:Property", + "rdfs:comment": "The total number of individuals that may attend an event or venue.", + "rdfs:label": "maximumAttendeeCapacity", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:Event" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:itemOffered", + "@type": "rdf:Property", + "rdfs:comment": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.", + "rdfs:label": "itemOffered", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:inverseOf": { + "@id": "schema:offers" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Trip" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:AggregateOffer" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:MenuItem" + }, + { + "@id": "schema:Service" + } + ] + }, + { + "@id": "schema:VeganDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet exclusive of all animal products.", + "rdfs:label": "VeganDiet" + }, + { + "@id": "schema:healthPlanCoinsuranceOption", + "@type": "rdf:Property", + "rdfs:comment": "Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?", + "rdfs:label": "healthPlanCoinsuranceOption", + "schema:domainIncludes": { + "@id": "schema:HealthPlanCostSharingSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:FinancialProduct", + "@type": "rdfs:Class", + "rdfs:comment": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.", + "rdfs:label": "FinancialProduct", + "rdfs:subClassOf": { + "@id": "schema:Service" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:MotorcycleRepair", + "@type": "rdfs:Class", + "rdfs:comment": "A motorcycle repair shop.", + "rdfs:label": "MotorcycleRepair", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:Book", + "@type": "rdfs:Class", + "rdfs:comment": "A book.", + "rdfs:label": "Book", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:MedicalRiskCalculator", + "@type": "rdfs:Class", + "rdfs:comment": "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.", + "rdfs:label": "MedicalRiskCalculator", + "rdfs:subClassOf": { + "@id": "schema:MedicalRiskEstimator" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:VideoObject", + "@type": "rdfs:Class", + "rdfs:comment": "A video file.", + "rdfs:label": "VideoObject", + "rdfs:subClassOf": { + "@id": "schema:MediaObject" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + }, + { + "@id": "schema:MusicRelease", + "@type": "rdfs:Class", + "rdfs:comment": "A MusicRelease is a specific release of a music album.", + "rdfs:label": "MusicRelease", + "rdfs:subClassOf": { + "@id": "schema:MusicPlaylist" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:calories", + "@type": "rdf:Property", + "rdfs:comment": "The number of calories.", + "rdfs:label": "calories", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Energy" + } + }, + { + "@id": "schema:containsPlace", + "@type": "rdf:Property", + "rdfs:comment": "The basic containment relation between a place and another that it contains.", + "rdfs:label": "containsPlace", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:inverseOf": { + "@id": "schema:containedInPlace" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:EvidenceLevelA", + "@type": "schema:MedicalEvidenceLevel", + "rdfs:comment": "Data derived from multiple randomized clinical trials or meta-analyses.", + "rdfs:label": "EvidenceLevelA", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:DoubleBlindedTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.", + "rdfs:label": "DoubleBlindedTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:geoRadius", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).", + "rdfs:label": "geoRadius", + "schema:domainIncludes": { + "@id": "schema:GeoCircle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:Distance" + } + ] + }, + { + "@id": "schema:CableOrSatelliteService", + "@type": "rdfs:Class", + "rdfs:comment": "A service which provides access to media programming like TV or radio. Access may be via cable or satellite.", + "rdfs:label": "CableOrSatelliteService", + "rdfs:subClassOf": { + "@id": "schema:Service" + } + }, + { + "@id": "schema:PaintAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of producing a painting, typically with paint and canvas as instruments.", + "rdfs:label": "PaintAction", + "rdfs:subClassOf": { + "@id": "schema:CreateAction" + } + }, + { + "@id": "schema:PaymentDue", + "@type": "schema:PaymentStatusType", + "rdfs:comment": "The payment is due, but still within an acceptable time to be received.", + "rdfs:label": "PaymentDue" + }, + { + "@id": "schema:VenueMap", + "@type": "schema:MapCategoryType", + "rdfs:comment": "A venue map (e.g. for malls, auditoriums, museums, etc.).", + "rdfs:label": "VenueMap" + }, + { + "@id": "schema:CancelAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of asserting that a future event/action is no longer going to happen.\\n\\nRelated actions:\\n\\n* [[ConfirmAction]]: The antonym of CancelAction.", + "rdfs:label": "CancelAction", + "rdfs:subClassOf": { + "@id": "schema:PlanAction" + } + }, + { + "@id": "schema:credentialCategory", + "@type": "rdf:Property", + "rdfs:comment": "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.", + "rdfs:label": "credentialCategory", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalCredential" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + }, + { + "@id": "schema:LeftHandDriving", + "@type": "schema:SteeringPositionValue", + "rdfs:comment": "The steering position is on the left side of the vehicle (viewed from the main direction of driving).", + "rdfs:label": "LeftHandDriving", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:issuedBy", + "@type": "rdf:Property", + "rdfs:comment": "The organization issuing the ticket or permit.", + "rdfs:label": "issuedBy", + "schema:domainIncludes": [ + { + "@id": "schema:Ticket" + }, + { + "@id": "schema:Permit" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:accountablePerson", + "@type": "rdf:Property", + "rdfs:comment": "Specifies the Person that is legally accountable for the CreativeWork.", + "rdfs:label": "accountablePerson", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:boardingGroup", + "@type": "rdf:Property", + "rdfs:comment": "The airline-specific indicator of boarding order / preference.", + "rdfs:label": "boardingGroup", + "schema:domainIncludes": { + "@id": "schema:FlightReservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:category", + "@type": "rdf:Property", + "rdfs:comment": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.", + "rdfs:label": "category", + "schema:domainIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:Recommendation" + }, + { + "@id": "schema:SpecialAnnouncement" + }, + { + "@id": "schema:Invoice" + }, + { + "@id": "schema:ActionAccessSpecification" + }, + { + "@id": "schema:PhysicalActivity" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:PhysicalActivityCategory" + }, + { + "@id": "schema:Thing" + }, + { + "@id": "schema:CategoryCode" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + ] + }, + { + "@id": "schema:SymptomsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Symptoms or related symptoms of a Topic.", + "rdfs:label": "SymptomsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:mediaAuthenticityCategory", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).", + "rdfs:label": "mediaAuthenticityCategory", + "schema:domainIncludes": { + "@id": "schema:MediaReview" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MediaManipulationRatingEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:Dataset", + "@type": "rdfs:Class", + "owl:equivalentClass": [ + { + "@id": "dcmitype:Dataset" + }, + { + "@id": "dcat:Dataset" + }, + { + "@id": "void:Dataset" + } + ], + "rdfs:comment": "A body of structured information describing some topic(s) of interest.", + "rdfs:label": "Dataset", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass" + } + }, + { + "@id": "schema:diseaseSpreadStatistics", + "@type": "rdf:Property", + "rdfs:comment": "Statistical information about the spread of a disease, either as [[WebContent]], or\n described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is\n provided, the page indicated might also contain more such markup.", + "rdfs:label": "diseaseSpreadStatistics", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Dataset" + }, + { + "@id": "schema:Observation" + }, + { + "@id": "schema:WebContent" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:legislationLegalForce", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#in_force" + }, + "rdfs:comment": "Whether the legislation is currently in force, not in force, or partially in force.", + "rdfs:label": "legislationLegalForce", + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:LegalForceStatus" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#in_force" + } + }, + { + "@id": "schema:AutoWash", + "@type": "rdfs:Class", + "rdfs:comment": "A car wash business.", + "rdfs:label": "AutoWash", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:clinicalPharmacology", + "@type": "rdf:Property", + "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).", + "rdfs:label": "clinicalPharmacology", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:NailSalon", + "@type": "rdfs:Class", + "rdfs:comment": "A nail salon.", + "rdfs:label": "NailSalon", + "rdfs:subClassOf": { + "@id": "schema:HealthAndBeautyBusiness" + } + }, + { + "@id": "schema:Painting", + "@type": "rdfs:Class", + "rdfs:comment": "A painting.", + "rdfs:label": "Painting", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:RsvpResponseMaybe", + "@type": "schema:RsvpResponseType", + "rdfs:comment": "The invitee may or may not attend.", + "rdfs:label": "RsvpResponseMaybe" + }, + { + "@id": "schema:Physician", + "@type": "rdfs:Class", + "rdfs:comment": "A doctor's office.", + "rdfs:label": "Physician", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalOrganization" + }, + { + "@id": "schema:MedicalBusiness" + } + ] + }, + { + "@id": "schema:TaxiService", + "@type": "rdfs:Class", + "rdfs:comment": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.", + "rdfs:label": "TaxiService", + "rdfs:subClassOf": { + "@id": "schema:Service" + } + }, + { + "@id": "schema:priceValidUntil", + "@type": "rdf:Property", + "rdfs:comment": "The date after which the price is no longer available.", + "rdfs:label": "priceValidUntil", + "schema:domainIncludes": { + "@id": "schema:Offer" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:possibleComplication", + "@type": "rdf:Property", + "rdfs:comment": "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.", + "rdfs:label": "possibleComplication", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Nonprofit501c7", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.", + "rdfs:label": "Nonprofit501c7", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:characterName", + "@type": "rdf:Property", + "rdfs:comment": "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.", + "rdfs:label": "characterName", + "schema:domainIncludes": { + "@id": "schema:PerformanceRole" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DigitalAudioTapeFormat", + "@type": "schema:MusicReleaseFormatType", + "rdfs:comment": "DigitalAudioTapeFormat.", + "rdfs:label": "DigitalAudioTapeFormat", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:InteractAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of interacting with another person or organization.", + "rdfs:label": "InteractAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:TaxiReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].", + "rdfs:label": "TaxiReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:line", + "@type": "rdf:Property", + "rdfs:comment": "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.", + "rdfs:label": "line", + "schema:domainIncludes": { + "@id": "schema:GeoShape" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:webCheckinTime", + "@type": "rdf:Property", + "rdfs:comment": "The time when a passenger can check into the flight online.", + "rdfs:label": "webCheckinTime", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:evidenceLevel", + "@type": "rdf:Property", + "rdfs:comment": "Strength of evidence of the data used to formulate the guideline (enumerated).", + "rdfs:label": "evidenceLevel", + "schema:domainIncludes": { + "@id": "schema:MedicalGuideline" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEvidenceLevel" + } + }, + { + "@id": "schema:PhysicalActivityCategory", + "@type": "rdfs:Class", + "rdfs:comment": "Categories of physical activity, organized by physiologic classification.", + "rdfs:label": "PhysicalActivityCategory", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:InfectiousAgentClass", + "@type": "rdfs:Class", + "rdfs:comment": "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.", + "rdfs:label": "InfectiousAgentClass", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:successorOf", + "@type": "rdf:Property", + "rdfs:comment": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.", + "rdfs:label": "successorOf", + "schema:domainIncludes": { + "@id": "schema:ProductModel" + }, + "schema:rangeIncludes": { + "@id": "schema:ProductModel" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:ReadAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of consuming written content.", + "rdfs:label": "ReadAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:originalMediaLink", + "@type": "rdf:Property", + "rdfs:comment": "Link to the page containing an original version of the content, or directly to an online copy of the original [[MediaObject]] content, e.g. video file.", + "rdfs:label": "originalMediaLink", + "schema:domainIncludes": { + "@id": "schema:MediaReview" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:MediaObject" + }, + { + "@id": "schema:WebPage" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:MedicalScholarlyArticle", + "@type": "rdfs:Class", + "rdfs:comment": "A scholarly article in the medical domain.", + "rdfs:label": "MedicalScholarlyArticle", + "rdfs:subClassOf": { + "@id": "schema:ScholarlyArticle" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ItemAvailability", + "@type": "rdfs:Class", + "rdfs:comment": "A list of possible product availability options.", + "rdfs:label": "ItemAvailability", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:DayOfWeek", + "@type": "rdfs:Class", + "rdfs:comment": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) were used (for [[Monday]], [[Tuesday]], [[Wednesday]], [[Thursday]], [[Friday]], [[Saturday]], [[Sunday]] plus a special entry for [[PublicHolidays]]); these have now been integrated directly into schema.org.\n ", + "rdfs:label": "DayOfWeek", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:CategoryCodeSet", + "@type": "rdfs:Class", + "rdfs:comment": "A set of Category Code values.", + "rdfs:label": "CategoryCodeSet", + "rdfs:subClassOf": { + "@id": "schema:DefinedTermSet" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:healthCondition", + "@type": "rdf:Property", + "rdfs:comment": "Specifying the health condition(s) of a patient, medical study, or other target audience.", + "rdfs:label": "healthCondition", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalStudy" + }, + { + "@id": "schema:Patient" + }, + { + "@id": "schema:PeopleAudience" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalCondition" + } + }, + { + "@id": "schema:BookStore", + "@type": "rdfs:Class", + "rdfs:comment": "A bookstore.", + "rdfs:label": "BookStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:tissueSample", + "@type": "rdf:Property", + "rdfs:comment": "The type of tissue sample required for the test.", + "rdfs:label": "tissueSample", + "schema:domainIncludes": { + "@id": "schema:PathologyTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Skin", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Skin assessment with clinical examination.", + "rdfs:label": "Skin", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:exceptDate", + "@type": "rdf:Property", + "rdfs:comment": "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n a [[Schedule]] to be specified. If an exception is specified as a [[DateTime]] then only the event that would have started at that specific date and time\n should be excluded from the schedule. If an exception is specified as a [[Date]] then any event that is scheduled for that 24 hour period should be\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.", + "rdfs:label": "exceptDate", + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:expertConsiderations", + "@type": "rdf:Property", + "rdfs:comment": "Medical expert advice related to the plan.", + "rdfs:label": "expertConsiderations", + "schema:domainIncludes": { + "@id": "schema:Diet" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Taxon", + "@type": "rdfs:Class", + "dcterms:source": { + "@id": "http://bioschemas.org" + }, + "rdfs:comment": "A set of organisms asserted to represent a natural cohesive biological unit.", + "rdfs:label": "Taxon", + "rdfs:subClassOf": { + "@id": "schema:Thing" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + } + }, + { + "@id": "schema:Balance", + "@type": "schema:PhysicalActivityCategory", + "rdfs:comment": "Physical activity that is engaged to help maintain posture and balance.", + "rdfs:label": "Balance", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:TVSeries", + "@type": "rdfs:Class", + "rdfs:comment": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.", + "rdfs:label": "TVSeries", + "rdfs:subClassOf": [ + { + "@id": "schema:CreativeWorkSeries" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:shippingDetails", + "@type": "rdf:Property", + "rdfs:comment": "Indicates information about the shipping policies and options associated with an [[Offer]].", + "rdfs:label": "shippingDetails", + "schema:domainIncludes": { + "@id": "schema:Offer" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:OfferShippingDetails" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:sportsTeam", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The sports team that participated on this action.", + "rdfs:label": "sportsTeam", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:rangeIncludes": { + "@id": "schema:SportsTeam" + } + }, + { + "@id": "schema:LandmarksOrHistoricalBuildings", + "@type": "rdfs:Class", + "rdfs:comment": "An historical landmark or building.", + "rdfs:label": "LandmarksOrHistoricalBuildings", + "rdfs:subClassOf": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:scheduledPaymentDate", + "@type": "rdf:Property", + "rdfs:comment": "The date the invoice is scheduled to be paid.", + "rdfs:label": "scheduledPaymentDate", + "schema:domainIncludes": { + "@id": "schema:Invoice" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:homeLocation", + "@type": "rdf:Property", + "rdfs:comment": "A contact location for a person's residence.", + "rdfs:label": "homeLocation", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:ContactPoint" + } + ] + }, + { + "@id": "schema:Service", + "@type": "rdfs:Class", + "rdfs:comment": "A service provided by an organization, e.g. delivery service, print services, etc.", + "rdfs:label": "Service", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:VisualArtwork", + "@type": "rdfs:Class", + "rdfs:comment": "A work of art that is primarily visual in character.", + "rdfs:label": "VisualArtwork", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass" + } + }, + { + "@id": "schema:DefinedTerm", + "@type": "rdfs:Class", + "rdfs:comment": "A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.", + "rdfs:label": "DefinedTerm", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:Specialty", + "@type": "rdfs:Class", + "rdfs:comment": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.", + "rdfs:label": "Specialty", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:FullGameAvailability", + "@type": "schema:GameAvailabilityEnumeration", + "rdfs:comment": "Indicates full game availability.", + "rdfs:label": "FullGameAvailability", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3058" + } + }, + { + "@id": "schema:costCategory", + "@type": "rdf:Property", + "rdfs:comment": "The category of cost, such as wholesale, retail, reimbursement cap, etc.", + "rdfs:label": "costCategory", + "schema:domainIncludes": { + "@id": "schema:DrugCost" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DrugCostCategory" + } + }, + { + "@id": "schema:physicalRequirement", + "@type": "rdf:Property", + "rdfs:comment": "A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.", + "rdfs:label": "physicalRequirement", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2384" + } + }, + { + "@id": "schema:Lung", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Lung and respiratory system clinical examination.", + "rdfs:label": "Lung", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:highPrice", + "@type": "rdf:Property", + "rdfs:comment": "The highest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.", + "rdfs:label": "highPrice", + "schema:domainIncludes": { + "@id": "schema:AggregateOffer" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ] + }, + { + "@id": "schema:CoverArt", + "@type": "rdfs:Class", + "rdfs:comment": "The artwork on the outer surface of a CreativeWork.", + "rdfs:label": "CoverArt", + "rdfs:subClassOf": { + "@id": "schema:VisualArtwork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:maximumVirtualAttendeeCapacity", + "@type": "rdf:Property", + "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). ", + "rdfs:label": "maximumVirtualAttendeeCapacity", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:PrimaryCare", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.", + "rdfs:label": "PrimaryCare", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:rxcui", + "@type": "rdf:Property", + "rdfs:comment": "The RxCUI drug identifier from RXNORM.", + "rdfs:label": "rxcui", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:ChildCare", + "@type": "rdfs:Class", + "rdfs:comment": "A Childcare center.", + "rdfs:label": "ChildCare", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:interactingDrug", + "@type": "rdf:Property", + "rdfs:comment": "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.", + "rdfs:label": "interactingDrug", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Drug" + } + }, + { + "@id": "schema:merchant", + "@type": "rdf:Property", + "rdfs:comment": "'merchant' is an out-dated term for 'seller'.", + "rdfs:label": "merchant", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:supersededBy": { + "@id": "schema:seller" + } + }, + { + "@id": "schema:SexualContentConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "The item contains sexually oriented content such as nudity, suggestive or explicit material, or related online services, or is intended to enhance sexual activity. Examples: Erotic videos or magazine, sexual enhancement devices, sex toys.", + "rdfs:label": "SexualContentConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:Order", + "@type": "rdfs:Class", + "rdfs:comment": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.", + "rdfs:label": "Order", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:GroceryStore", + "@type": "rdfs:Class", + "rdfs:comment": "A grocery store.", + "rdfs:label": "GroceryStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:numberOfBathroomsTotal", + "@type": "rdf:Property", + "rdfs:comment": "The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.\". See also [[numberOfRooms]].", + "rdfs:label": "numberOfBathroomsTotal", + "schema:domainIncludes": [ + { + "@id": "schema:FloorPlan" + }, + { + "@id": "schema:Accommodation" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:subStageSuffix", + "@type": "rdf:Property", + "rdfs:comment": "The substage, e.g. 'a' for Stage IIIa.", + "rdfs:label": "subStageSuffix", + "schema:domainIncludes": { + "@id": "schema:MedicalConditionStage" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Continent", + "@type": "rdfs:Class", + "rdfs:comment": "One of the continents (for example, Europe or Africa).", + "rdfs:label": "Continent", + "rdfs:subClassOf": { + "@id": "schema:Landform" + } + }, + { + "@id": "schema:mainEntityOfPage", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.", + "rdfs:label": "mainEntityOfPage", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:inverseOf": { + "@id": "schema:mainEntity" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:SportsClub", + "@type": "rdfs:Class", + "rdfs:comment": "A sports club.", + "rdfs:label": "SportsClub", + "rdfs:subClassOf": { + "@id": "schema:SportsActivityLocation" + } + }, + { + "@id": "schema:frequency", + "@type": "rdf:Property", + "rdfs:comment": "How often the dose is taken, e.g. 'daily'.", + "rdfs:label": "frequency", + "schema:domainIncludes": { + "@id": "schema:DoseSchedule" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:member", + "@type": "rdf:Property", + "rdfs:comment": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.", + "rdfs:label": "member", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:ProgramMembership" + } + ], + "schema:inverseOf": { + "@id": "schema:memberOf" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:incentives", + "@type": "rdf:Property", + "rdfs:comment": "Description of bonus and commission compensation aspects of the job.", + "rdfs:label": "incentives", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:incentiveCompensation" + } + }, + { + "@id": "schema:tocContinuation", + "@type": "rdf:Property", + "rdfs:comment": "A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.", + "rdfs:label": "tocContinuation", + "schema:domainIncludes": { + "@id": "schema:HyperTocEntry" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:HyperTocEntry" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2766" + } + }, + { + "@id": "schema:increasesRiskOf", + "@type": "rdf:Property", + "rdfs:comment": "The condition, complication, etc. influenced by this factor.", + "rdfs:label": "increasesRiskOf", + "schema:domainIncludes": { + "@id": "schema:MedicalRiskFactor" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEntity" + } + }, + { + "@id": "schema:employee", + "@type": "rdf:Property", + "rdfs:comment": "Someone working for this organization.", + "rdfs:label": "employee", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:usedToDiagnose", + "@type": "rdf:Property", + "rdfs:comment": "A condition the test is used to diagnose.", + "rdfs:label": "usedToDiagnose", + "schema:domainIncludes": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalCondition" + } + }, + { + "@id": "schema:SearchRescueOrganization", + "@type": "rdfs:Class", + "rdfs:comment": "A Search and Rescue organization of some kind.", + "rdfs:label": "SearchRescueOrganization", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3052" + } + }, + { + "@id": "schema:OfferForPurchase", + "@type": "rdfs:Class", + "rdfs:comment": "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ", + "rdfs:label": "OfferForPurchase", + "rdfs:subClassOf": { + "@id": "schema:Offer" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2348" + } + }, + { + "@id": "schema:vehicleEngine", + "@type": "rdf:Property", + "rdfs:comment": "Information about the engine or engines of the vehicle.", + "rdfs:label": "vehicleEngine", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:EngineSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:PostOffice", + "@type": "rdfs:Class", + "rdfs:comment": "A post office.", + "rdfs:label": "PostOffice", + "rdfs:subClassOf": { + "@id": "schema:GovernmentOffice" + } + }, + { + "@id": "schema:PaymentDeclined", + "@type": "schema:PaymentStatusType", + "rdfs:comment": "The payee received the payment, but it was declined for some reason.", + "rdfs:label": "PaymentDeclined" + }, + { + "@id": "schema:geoMidpoint", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.", + "rdfs:label": "geoMidpoint", + "schema:domainIncludes": { + "@id": "schema:GeoCircle" + }, + "schema:rangeIncludes": { + "@id": "schema:GeoCoordinates" + } + }, + { + "@id": "schema:Neck", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Neck assessment with clinical examination.", + "rdfs:label": "Neck", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:softwareVersion", + "@type": "rdf:Property", + "rdfs:comment": "Version of the software instance.", + "rdfs:label": "softwareVersion", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:EvidenceLevelB", + "@type": "schema:MedicalEvidenceLevel", + "rdfs:comment": "Data derived from a single randomized trial, or nonrandomized studies.", + "rdfs:label": "EvidenceLevelB", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:WearableSizeGroupMaternity", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Maternity\" for wearables.", + "rdfs:label": "WearableSizeGroupMaternity", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:BusOrCoach", + "@type": "rdfs:Class", + "rdfs:comment": "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel.", + "rdfs:label": "BusOrCoach", + "rdfs:subClassOf": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:Oncologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.", + "rdfs:label": "Oncologic", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:director", + "@type": "rdf:Property", + "rdfs:comment": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.", + "rdfs:label": "director", + "schema:domainIncludes": [ + { + "@id": "schema:Event" + }, + { + "@id": "schema:Episode" + }, + { + "@id": "schema:Clip" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:MovieSeries" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:VideoGame" + }, + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:VideoObject" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:EPRelease", + "@type": "schema:MusicAlbumReleaseType", + "rdfs:comment": "EPRelease.", + "rdfs:label": "EPRelease", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:DigitalFormat", + "@type": "schema:MusicReleaseFormatType", + "rdfs:comment": "DigitalFormat.", + "rdfs:label": "DigitalFormat", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:storageRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Storage requirements (free space required).", + "rdfs:label": "storageRequirements", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:HobbyShop", + "@type": "rdfs:Class", + "rdfs:comment": "A store that sells materials useful or necessary for various hobbies.", + "rdfs:label": "HobbyShop", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:smokingAllowed", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.", + "rdfs:label": "smokingAllowed", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:repetitions", + "@type": "rdf:Property", + "rdfs:comment": "Number of times one should repeat the activity.", + "rdfs:label": "repetitions", + "schema:domainIncludes": { + "@id": "schema:ExercisePlan" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:priceType", + "@type": "rdf:Property", + "rdfs:comment": "Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.", + "rdfs:label": "priceType", + "schema:domainIncludes": [ + { + "@id": "schema:CompoundPriceSpecification" + }, + { + "@id": "schema:UnitPriceSpecification" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:PriceTypeEnumeration" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:directApply", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether an [[url]] that is associated with a [[JobPosting]] enables direct application for the job, via the posting website. A job posting is considered to have directApply of [[True]] if an application process for the specified job can be directly initiated via the url(s) given (noting that e.g. multiple internet domains might nevertheless be involved at an implementation level). A value of [[False]] is appropriate if there is no clear path to applying directly online for the specified job, navigating directly from the JobPosting url(s) supplied.", + "rdfs:label": "directApply", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2907" + } + }, + { + "@id": "schema:GovernmentOffice", + "@type": "rdfs:Class", + "rdfs:comment": "A government office—for example, an IRS or DMV office.", + "rdfs:label": "GovernmentOffice", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:afterMedia", + "@type": "rdf:Property", + "rdfs:comment": "A media object representing the circumstances after performing this direction.", + "rdfs:label": "afterMedia", + "schema:domainIncludes": { + "@id": "schema:HowToDirection" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:MediaObject" + } + ] + }, + { + "@id": "schema:WearableSizeGroupWomens", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Womens\" for wearables.", + "rdfs:label": "WearableSizeGroupWomens", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:hoursAvailable", + "@type": "rdf:Property", + "rdfs:comment": "The hours during which this service or contact is available.", + "rdfs:label": "hoursAvailable", + "schema:domainIncludes": [ + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:LocationFeatureSpecification" + }, + { + "@id": "schema:Service" + } + ], + "schema:rangeIncludes": { + "@id": "schema:OpeningHoursSpecification" + } + }, + { + "@id": "schema:VeterinaryCare", + "@type": "rdfs:Class", + "rdfs:comment": "A vet's office.", + "rdfs:label": "VeterinaryCare", + "rdfs:subClassOf": { + "@id": "schema:MedicalOrganization" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:letterer", + "@type": "rdf:Property", + "rdfs:comment": "The individual who adds lettering, including speech balloons and sound effects, to artwork.", + "rdfs:label": "letterer", + "schema:domainIncludes": [ + { + "@id": "schema:ComicStory" + }, + { + "@id": "schema:ComicIssue" + }, + { + "@id": "schema:VisualArtwork" + } + ], + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:ContactPointOption", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerated options related to a ContactPoint.", + "rdfs:label": "ContactPointOption", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:tocEntry", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a [[HyperTocEntry]] in a [[HyperToc]].", + "rdfs:label": "tocEntry", + "rdfs:subPropertyOf": { + "@id": "schema:hasPart" + }, + "schema:domainIncludes": { + "@id": "schema:HyperToc" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:HyperTocEntry" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2766" + } + }, + { + "@id": "schema:dissolutionDate", + "@type": "rdf:Property", + "rdfs:comment": "The date that this organization was dissolved.", + "rdfs:label": "dissolutionDate", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:browserRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.", + "rdfs:label": "browserRequirements", + "schema:domainIncludes": { + "@id": "schema:WebApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:hasDigitalDocumentPermission", + "@type": "rdf:Property", + "rdfs:comment": "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".", + "rdfs:label": "hasDigitalDocumentPermission", + "schema:domainIncludes": { + "@id": "schema:DigitalDocument" + }, + "schema:rangeIncludes": { + "@id": "schema:DigitalDocumentPermission" + } + }, + { + "@id": "schema:Bridge", + "@type": "rdfs:Class", + "rdfs:comment": "A bridge.", + "rdfs:label": "Bridge", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:Claim", + "@type": "rdfs:Class", + "rdfs:comment": "A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholarlyArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ", + "rdfs:label": "Claim", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1828" + } + }, + { + "@id": "schema:AggregateRating", + "@type": "rdfs:Class", + "rdfs:comment": "The average rating based on multiple ratings or reviews.", + "rdfs:label": "AggregateRating", + "rdfs:subClassOf": { + "@id": "schema:Rating" + } + }, + { + "@id": "schema:occupationLocation", + "@type": "rdf:Property", + "rdfs:comment": " The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.", + "rdfs:label": "occupationLocation", + "schema:domainIncludes": { + "@id": "schema:Occupation" + }, + "schema:rangeIncludes": { + "@id": "schema:AdministrativeArea" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:HealthAndBeautyBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "Health and beauty.", + "rdfs:label": "HealthAndBeautyBusiness", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:estimatedCost", + "@type": "rdf:Property", + "rdfs:comment": "The estimated cost of the supply or supplies consumed when performing instructions.", + "rdfs:label": "estimatedCost", + "schema:domainIncludes": [ + { + "@id": "schema:HowToSupply" + }, + { + "@id": "schema:HowTo" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:MonetaryAmount" + } + ] + }, + { + "@id": "schema:Protozoa", + "@type": "schema:InfectiousAgentClass", + "rdfs:comment": "Single-celled organism that causes an infection.", + "rdfs:label": "Protozoa", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:softwareHelp", + "@type": "rdf:Property", + "rdfs:comment": "Software application help.", + "rdfs:label": "softwareHelp", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:InvestmentOrDeposit", + "@type": "rdfs:Class", + "rdfs:comment": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.", + "rdfs:label": "InvestmentOrDeposit", + "rdfs:subClassOf": { + "@id": "schema:FinancialProduct" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:funding", + "@type": "rdf:Property", + "rdfs:comment": "A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].", + "rdfs:label": "funding", + "schema:domainIncludes": [ + { + "@id": "schema:BioChemEntity" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:MedicalEntity" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Person" + } + ], + "schema:inverseOf": { + "@id": "schema:fundedItem" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Grant" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:itemDefectReturnShippingFeesAmount", + "@type": "rdf:Property", + "rdfs:comment": "Amount of shipping costs for defect product returns. Applicable when property [[itemDefectReturnFees]] equals [[ReturnShippingFees]].", + "rdfs:label": "itemDefectReturnShippingFeesAmount", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:titleEIDR", + "@type": "rdf:Property", + "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" has a titleEIDR of \"10.5240/7EC7-228A-510A-053E-CBB8-J\". This title (or work) may have several variants, which EIDR calls \"edits\". See [[editEIDR]].\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n", + "rdfs:label": "titleEIDR", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:TVEpisode" + }, + { + "@id": "schema:Movie" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2469" + } + }, + { + "@id": "schema:IgnoreAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of intentionally disregarding the object. An agent ignores an object.", + "rdfs:label": "IgnoreAction", + "rdfs:subClassOf": { + "@id": "schema:AssessAction" + } + }, + { + "@id": "schema:WPSideBar", + "@type": "rdfs:Class", + "rdfs:comment": "A sidebar section of the page.", + "rdfs:label": "WPSideBar", + "rdfs:subClassOf": { + "@id": "schema:WebPageElement" + } + }, + { + "@id": "schema:ReportedDoseSchedule", + "@type": "rdfs:Class", + "rdfs:comment": "A patient-reported or observed dosing schedule for a drug or supplement.", + "rdfs:label": "ReportedDoseSchedule", + "rdfs:subClassOf": { + "@id": "schema:DoseSchedule" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:GovernmentPermit", + "@type": "rdfs:Class", + "rdfs:comment": "A permit issued by a government agency.", + "rdfs:label": "GovernmentPermit", + "rdfs:subClassOf": { + "@id": "schema:Permit" + } + }, + { + "@id": "schema:salaryUponCompletion", + "@type": "rdf:Property", + "rdfs:comment": "The expected salary upon completing the training.", + "rdfs:label": "salaryUponCompletion", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmountDistribution" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:CurrencyConversionService", + "@type": "rdfs:Class", + "rdfs:comment": "A service to convert funds from one currency to another currency.", + "rdfs:label": "CurrencyConversionService", + "rdfs:subClassOf": { + "@id": "schema:FinancialProduct" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:BoatTerminal", + "@type": "rdfs:Class", + "rdfs:comment": "A terminal for boats, ships, and other water vessels.", + "rdfs:label": "BoatTerminal", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1755" + } + }, + { + "@id": "schema:SaleEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Sales event.", + "rdfs:label": "SaleEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:strengthUnit", + "@type": "rdf:Property", + "rdfs:comment": "The units of an active ingredient's strength, e.g. mg.", + "rdfs:label": "strengthUnit", + "schema:domainIncludes": { + "@id": "schema:DrugStrength" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:BedAndBreakfast", + "@type": "rdfs:Class", + "rdfs:comment": "Bed and breakfast.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "BedAndBreakfast", + "rdfs:subClassOf": { + "@id": "schema:LodgingBusiness" + } + }, + { + "@id": "schema:partySize", + "@type": "rdf:Property", + "rdfs:comment": "Number of people the reservation should accommodate.", + "rdfs:label": "partySize", + "schema:domainIncludes": [ + { + "@id": "schema:FoodEstablishmentReservation" + }, + { + "@id": "schema:TaxiReservation" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:sensoryRequirement", + "@type": "rdf:Property", + "rdfs:comment": "A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.", + "rdfs:label": "sensoryRequirement", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2384" + } + }, + { + "@id": "schema:bankAccountType", + "@type": "rdf:Property", + "rdfs:comment": "The type of a bank account.", + "rdfs:label": "bankAccountType", + "schema:domainIncludes": { + "@id": "schema:BankAccount" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:branch", + "@type": "rdf:Property", + "rdfs:comment": "The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]].", + "rdfs:label": "branch", + "schema:domainIncludes": { + "@id": "schema:Nerve" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + }, + "schema:supersededBy": { + "@id": "schema:arterialBranch" + } + }, + { + "@id": "schema:HealthAspectEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]].", + "rdfs:label": "HealthAspectEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:LowFatDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet focused on reduced fat and cholesterol intake.", + "rdfs:label": "LowFatDiet" + }, + { + "@id": "schema:Game", + "@type": "rdfs:Class", + "rdfs:comment": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.", + "rdfs:label": "Game", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:Intangible", + "@type": "rdfs:Class", + "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.", + "rdfs:label": "Intangible", + "rdfs:subClassOf": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:transitTimeLabel", + "@type": "rdf:Property", + "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).", + "rdfs:label": "transitTimeLabel", + "schema:domainIncludes": [ + { + "@id": "schema:OfferShippingDetails" + }, + { + "@id": "schema:DeliveryTimeSettings" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:actionApplication", + "@type": "rdf:Property", + "rdfs:comment": "An application that can complete the request.", + "rdfs:label": "actionApplication", + "schema:domainIncludes": { + "@id": "schema:EntryPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:SoftwareApplication" + } + }, + { + "@id": "schema:connectedTo", + "@type": "rdf:Property", + "rdfs:comment": "Other anatomical structures to which this structure is connected.", + "rdfs:label": "connectedTo", + "schema:domainIncludes": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + } + }, + { + "@id": "schema:benefitsSummaryUrl", + "@type": "rdf:Property", + "rdfs:comment": "The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.", + "rdfs:label": "benefitsSummaryUrl", + "schema:domainIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:Date", + "@type": [ + "schema:DataType", + "rdfs:Class" + ], + "rdfs:comment": "A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).", + "rdfs:label": "Date" + }, + { + "@id": "schema:SuspendAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).", + "rdfs:label": "SuspendAction", + "rdfs:subClassOf": { + "@id": "schema:ControlAction" + } + }, + { + "@id": "schema:SpokenWordAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "SpokenWordAlbum.", + "rdfs:label": "SpokenWordAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:educationalUse", + "@type": "rdf:Property", + "rdfs:comment": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.", + "rdfs:label": "educationalUse", + "schema:domainIncludes": [ + { + "@id": "schema:LearningResource" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:ticketNumber", + "@type": "rdf:Property", + "rdfs:comment": "The unique identifier for the ticket.", + "rdfs:label": "ticketNumber", + "schema:domainIncludes": { + "@id": "schema:Ticket" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:populationType", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the populationType common to all members of a [[StatisticalPopulation]].", + "rdfs:label": "populationType", + "schema:domainIncludes": { + "@id": "schema:StatisticalPopulation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Class" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:AdministrativeArea", + "@type": "rdfs:Class", + "rdfs:comment": "A geographical region, typically under the jurisdiction of a particular government.", + "rdfs:label": "AdministrativeArea", + "rdfs:subClassOf": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:LegislationObject", + "@type": "rdfs:Class", + "rdfs:comment": "A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files. For example, a digitally signed PDF, a plain PDF and an HTML version.", + "rdfs:label": "LegislationObject", + "rdfs:subClassOf": [ + { + "@id": "schema:Legislation" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + }, + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + } + ], + "skos:closeMatch": { + "@id": "http://data.europa.eu/eli/ontology#Format" + } + }, + { + "@id": "schema:StoreCreditRefund", + "@type": "schema:RefundTypeEnumeration", + "rdfs:comment": "Specifies that the customer receives a store credit as refund when returning a product", + "rdfs:label": "StoreCreditRefund", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:applicantLocationRequirements", + "@type": "rdf:Property", + "rdfs:comment": "The location(s) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements.", + "rdfs:label": "applicantLocationRequirements", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AdministrativeArea" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2083" + } + }, + { + "@id": "schema:CarUsageType", + "@type": "rdfs:Class", + "rdfs:comment": "A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.", + "rdfs:label": "CarUsageType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:PetStore", + "@type": "rdfs:Class", + "rdfs:comment": "A pet store.", + "rdfs:label": "PetStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:domainIncludes", + "@type": "rdf:Property", + "rdfs:comment": "Relates a property to a class that is (one of) the type(s) the property is expected to be used on.", + "rdfs:label": "domainIncludes", + "schema:domainIncludes": { + "@id": "schema:Property" + }, + "schema:isPartOf": { + "@id": "https://meta.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Class" + } + }, + { + "@id": "schema:PronounceableText", + "@type": "rdfs:Class", + "rdfs:comment": "Data type: PronounceableText.", + "rdfs:label": "PronounceableText", + "rdfs:subClassOf": { + "@id": "schema:Text" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2108" + } + }, + { + "@id": "schema:SportsTeam", + "@type": "rdfs:Class", + "rdfs:comment": "Organization: Sports team.", + "rdfs:label": "SportsTeam", + "rdfs:subClassOf": { + "@id": "schema:SportsOrganization" + } + }, + { + "@id": "schema:ProductCollection", + "@type": "rdfs:Class", + "rdfs:comment": "A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]].", + "rdfs:label": "ProductCollection", + "rdfs:subClassOf": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Collection" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2597" + } + }, + { + "@id": "schema:Physiotherapy", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery..", + "rdfs:label": "Physiotherapy", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:genre", + "@type": "rdf:Property", + "rdfs:comment": "Genre of the creative work, broadcast channel or group.", + "rdfs:label": "genre", + "schema:domainIncludes": [ + { + "@id": "schema:MusicGroup" + }, + { + "@id": "schema:BroadcastChannel" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:validUntil", + "@type": "rdf:Property", + "rdfs:comment": "The date when the item is no longer valid.", + "rdfs:label": "validUntil", + "schema:domainIncludes": { + "@id": "schema:Permit" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:ArriveAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.", + "rdfs:label": "ArriveAction", + "rdfs:subClassOf": { + "@id": "schema:MoveAction" + } + }, + { + "@id": "schema:BusReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].", + "rdfs:label": "BusReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:renegotiableLoan", + "@type": "rdf:Property", + "rdfs:comment": "Whether the terms for payment of interest can be renegotiated during the life of the loan.", + "rdfs:label": "renegotiableLoan", + "schema:domainIncludes": { + "@id": "schema:LoanOrCredit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:DietarySupplement", + "@type": "rdfs:Class", + "rdfs:comment": "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.", + "rdfs:label": "DietarySupplement", + "rdfs:subClassOf": { + "@id": "schema:Substance" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:specialty", + "@type": "rdf:Property", + "rdfs:comment": "One of the domain specialities to which this web page's content applies.", + "rdfs:label": "specialty", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": { + "@id": "schema:Specialty" + } + }, + { + "@id": "schema:reservedTicket", + "@type": "rdf:Property", + "rdfs:comment": "A ticket associated with the reservation.", + "rdfs:label": "reservedTicket", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Ticket" + } + }, + { + "@id": "schema:UserLikes", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserLikes", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:termCode", + "@type": "rdf:Property", + "rdfs:comment": "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]", + "rdfs:label": "termCode", + "schema:domainIncludes": { + "@id": "schema:DefinedTerm" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:inCodeSet", + "@type": "rdf:Property", + "rdfs:comment": "A [[CategoryCodeSet]] that contains this category code.", + "rdfs:label": "inCodeSet", + "rdfs:subPropertyOf": { + "@id": "schema:inDefinedTermSet" + }, + "schema:domainIncludes": { + "@id": "schema:CategoryCode" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CategoryCodeSet" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:evidenceOrigin", + "@type": "rdf:Property", + "rdfs:comment": "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.", + "rdfs:label": "evidenceOrigin", + "schema:domainIncludes": { + "@id": "schema:MedicalGuideline" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:numConstraints", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the number of constraints (not counting [[populationType]]) defined for a particular [[StatisticalPopulation]]. This helps applications understand if they have access to a sufficiently complete description of a [[StatisticalPopulation]].", + "rdfs:label": "numConstraints", + "schema:domainIncludes": { + "@id": "schema:StatisticalPopulation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:UnitPriceSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "The price asked for a given offer by the respective organization or person.", + "rdfs:label": "UnitPriceSpecification", + "rdfs:subClassOf": { + "@id": "schema:PriceSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:subReservation", + "@type": "rdf:Property", + "rdfs:comment": "The individual reservations included in the package. Typically a repeated property.", + "rdfs:label": "subReservation", + "schema:domainIncludes": { + "@id": "schema:ReservationPackage" + }, + "schema:rangeIncludes": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:DamagedCondition", + "@type": "schema:OfferItemCondition", + "rdfs:comment": "Indicates that the item is damaged.", + "rdfs:label": "DamagedCondition" + }, + { + "@id": "schema:AdultOrientedEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumeration of considerations that make a product relevant or potentially restricted for adults only.", + "rdfs:label": "AdultOrientedEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:CivicStructure", + "@type": "rdfs:Class", + "rdfs:comment": "A public structure, such as a town hall or concert hall.", + "rdfs:label": "CivicStructure", + "rdfs:subClassOf": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:StagesHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Stages that can be observed from a topic.", + "rdfs:label": "StagesHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:mpn", + "@type": "rdf:Property", + "rdfs:comment": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.", + "rdfs:label": "mpn", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:AllocateAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of organizing tasks/objects/events by associating resources to it.", + "rdfs:label": "AllocateAction", + "rdfs:subClassOf": { + "@id": "schema:OrganizeAction" + } + }, + { + "@id": "schema:ingredients", + "@type": "rdf:Property", + "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.", + "rdfs:label": "ingredients", + "rdfs:subPropertyOf": { + "@id": "schema:supply" + }, + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:recipeIngredient" + } + }, + { + "@id": "schema:HairSalon", + "@type": "rdfs:Class", + "rdfs:comment": "A hair salon.", + "rdfs:label": "HairSalon", + "rdfs:subClassOf": { + "@id": "schema:HealthAndBeautyBusiness" + } + }, + { + "@id": "schema:Hostel", + "@type": "rdfs:Class", + "rdfs:comment": "A hostel - cheap accommodation, often in shared dormitories.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "Hostel", + "rdfs:subClassOf": { + "@id": "schema:LodgingBusiness" + } + }, + { + "@id": "schema:MedicalResearcher", + "@type": "schema:MedicalAudienceType", + "rdfs:comment": "Medical researchers.", + "rdfs:label": "MedicalResearcher", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:screenCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of screens in the movie theater.", + "rdfs:label": "screenCount", + "schema:domainIncludes": { + "@id": "schema:MovieTheater" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:Nonprofit501c9", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.", + "rdfs:label": "Nonprofit501c9", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:alternateName", + "@type": "rdf:Property", + "rdfs:comment": "An alias for the item.", + "rdfs:label": "alternateName", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:reservationStatus", + "@type": "rdf:Property", + "rdfs:comment": "The current status of the reservation.", + "rdfs:label": "reservationStatus", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": { + "@id": "schema:ReservationStatusType" + } + }, + { + "@id": "schema:securityScreening", + "@type": "rdf:Property", + "rdfs:comment": "The type of security screening the passenger is subject to.", + "rdfs:label": "securityScreening", + "schema:domainIncludes": { + "@id": "schema:FlightReservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:median", + "@type": "rdf:Property", + "rdfs:comment": "The median value.", + "rdfs:label": "median", + "schema:domainIncludes": { + "@id": "schema:QuantitativeValueDistribution" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:supply", + "@type": "rdf:Property", + "rdfs:comment": "A sub-property of instrument. A supply consumed when performing instructions or a direction.", + "rdfs:label": "supply", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": [ + { + "@id": "schema:HowToDirection" + }, + { + "@id": "schema:HowTo" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:HowToSupply" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Nonprofit501c3", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c3: Non-profit type referring to Religious, Educational, Charitable, Scientific, Literary, Testing for Public Safety, to Foster National or International Amateur Sports Competition, or Prevention of Cruelty to Children or Animals Organizations.", + "rdfs:label": "Nonprofit501c3", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:NonprofitType", + "@type": "rdfs:Class", + "rdfs:comment": "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.", + "rdfs:label": "NonprofitType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:workHours", + "@type": "rdf:Property", + "rdfs:comment": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).", + "rdfs:label": "workHours", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ResearchOrganization", + "@type": "rdfs:Class", + "rdfs:comment": "A Research Organization (e.g. scientific institute, research company).", + "rdfs:label": "ResearchOrganization", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2877" + } + }, + { + "@id": "schema:Schedule", + "@type": "rdfs:Class", + "rdfs:comment": "A schedule defines a repeating time period used to describe a regularly occurring [[Event]]. At a minimum a schedule will specify [[repeatFrequency]] which describes the interval between occurences of the event. Additional information can be provided to specify the schedule more precisely.\n This includes identifying the day(s) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.", + "rdfs:label": "Schedule", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:nonEqual", + "@type": "rdf:Property", + "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is not equal to the object.", + "rdfs:label": "nonEqual", + "schema:domainIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:rangeIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:isEncodedByBioChemEntity", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Gene" + }, + "rdfs:comment": "Another BioChemEntity encoding by this one.", + "rdfs:label": "isEncodedByBioChemEntity", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:inverseOf": { + "@id": "schema:encodesBioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Gene" + } + }, + { + "@id": "schema:BarOrPub", + "@type": "rdfs:Class", + "rdfs:comment": "A bar or pub.", + "rdfs:label": "BarOrPub", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:ReturnFeesEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates several kinds of policies for product return fees.", + "rdfs:label": "ReturnFeesEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:vatID", + "@type": "rdf:Property", + "rdfs:comment": "The Value-added Tax ID of the organization or person.", + "rdfs:label": "vatID", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:height", + "@type": "rdf:Property", + "rdfs:comment": "The height of the item.", + "rdfs:label": "height", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:VisualArtwork" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Distance" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:globalLocationNumber", + "@type": "rdf:Property", + "rdfs:comment": "The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.", + "rdfs:label": "globalLocationNumber", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:serviceSmsNumber", + "@type": "rdf:Property", + "rdfs:comment": "The number to access the service by text message.", + "rdfs:label": "serviceSmsNumber", + "schema:domainIncludes": { + "@id": "schema:ServiceChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:ContactPoint" + } + }, + { + "@id": "schema:addressRegion", + "@type": "rdf:Property", + "rdfs:comment": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country) ", + "rdfs:label": "addressRegion", + "schema:domainIncludes": [ + { + "@id": "schema:PostalAddress" + }, + { + "@id": "schema:DefinedRegion" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:athlete", + "@type": "rdf:Property", + "rdfs:comment": "A person that acts as performing member of a sports team; a player as opposed to a coach.", + "rdfs:label": "athlete", + "schema:domainIncludes": { + "@id": "schema:SportsTeam" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:Cemetery", + "@type": "rdfs:Class", + "rdfs:comment": "A graveyard.", + "rdfs:label": "Cemetery", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:readonlyValue", + "@type": "rdf:Property", + "rdfs:comment": "Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.", + "rdfs:label": "readonlyValue", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:surface", + "@type": "rdf:Property", + "rdfs:comment": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.", + "rdfs:label": "surface", + "rdfs:subPropertyOf": { + "@id": "schema:material" + }, + "schema:domainIncludes": { + "@id": "schema:VisualArtwork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:supersededBy": { + "@id": "schema:artworkSurface" + } + }, + { + "@id": "schema:preOp", + "@type": "rdf:Property", + "rdfs:comment": "A description of the workup, testing, and other preparations required before implanting this device.", + "rdfs:label": "preOp", + "schema:domainIncludes": { + "@id": "schema:MedicalDevice" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:recipe", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. The recipe/instructions used to perform the action.", + "rdfs:label": "recipe", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": { + "@id": "schema:CookAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Recipe" + } + }, + { + "@id": "schema:keywords", + "@type": "rdf:Property", + "rdfs:comment": "Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.", + "rdfs:label": "keywords", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Event" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:orderStatus", + "@type": "rdf:Property", + "rdfs:comment": "The current status of the order.", + "rdfs:label": "orderStatus", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:OrderStatus" + } + }, + { + "@id": "schema:Message", + "@type": "rdfs:Class", + "rdfs:comment": "A single message from a sender to one or more organizations or people.", + "rdfs:label": "Message", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:BroadcastService", + "@type": "rdfs:Class", + "rdfs:comment": "A delivery service through which content is provided via broadcast over the air or online.", + "rdfs:label": "BroadcastService", + "rdfs:subClassOf": { + "@id": "schema:Service" + } + }, + { + "@id": "schema:termsPerYear", + "@type": "rdf:Property", + "rdfs:comment": "The number of times terms of study are offered per year. Semesters and quarters are common units for term. For example, if the student can only take 2 semesters for the program in one year, then termsPerYear should be 2.", + "rdfs:label": "termsPerYear", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:contactPoints", + "@type": "rdf:Property", + "rdfs:comment": "A contact point for a person or organization.", + "rdfs:label": "contactPoints", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:ContactPoint" + }, + "schema:supersededBy": { + "@id": "schema:contactPoint" + } + }, + { + "@id": "schema:hasEnergyEfficiencyCategory", + "@type": "rdf:Property", + "rdfs:comment": "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard.", + "rdfs:label": "hasEnergyEfficiencyCategory", + "schema:domainIncludes": { + "@id": "schema:EnergyConsumptionDetails" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:EnergyEfficiencyEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:naturalProgression", + "@type": "rdf:Property", + "rdfs:comment": "The expected progression of the condition if it is not treated and allowed to progress naturally.", + "rdfs:label": "naturalProgression", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DrugLegalStatus", + "@type": "rdfs:Class", + "rdfs:comment": "The legal availability status of a medical drug.", + "rdfs:label": "DrugLegalStatus", + "rdfs:subClassOf": { + "@id": "schema:MedicalIntangible" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:query", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. The query used on this action.", + "rdfs:label": "query", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": { + "@id": "schema:SearchAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:RepaymentSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A structured value representing repayment.", + "rdfs:label": "RepaymentSpecification", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:ReturnByMail", + "@type": "schema:ReturnMethodEnumeration", + "rdfs:comment": "Specifies that product returns must to be done by mail.", + "rdfs:label": "ReturnByMail", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:Muscle", + "@type": "rdfs:Class", + "rdfs:comment": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.", + "rdfs:label": "Muscle", + "rdfs:subClassOf": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Demand", + "@type": "rdfs:Class", + "rdfs:comment": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.", + "rdfs:label": "Demand", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:maxValue", + "@type": "rdf:Property", + "rdfs:comment": "The upper value of some characteristic or property.", + "rdfs:label": "maxValue", + "schema:domainIncludes": [ + { + "@id": "schema:PropertyValueSpecification" + }, + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:CommentPermission", + "@type": "schema:DigitalDocumentPermissionType", + "rdfs:comment": "Permission to add comments to the document.", + "rdfs:label": "CommentPermission" + }, + { + "@id": "schema:distinguishingSign", + "@type": "rdf:Property", + "rdfs:comment": "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.", + "rdfs:label": "distinguishingSign", + "schema:domainIncludes": { + "@id": "schema:DDxElement" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalSignOrSymptom" + } + }, + { + "@id": "schema:MedicalEvidenceLevel", + "@type": "rdfs:Class", + "rdfs:comment": "Level of evidence for a medical guideline. Enumerated type.", + "rdfs:label": "MedicalEvidenceLevel", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:WebAPI", + "@type": "rdfs:Class", + "rdfs:comment": "An application programming interface accessible over Web/Internet technologies.", + "rdfs:label": "WebAPI", + "rdfs:subClassOf": { + "@id": "schema:Service" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1423" + } + }, + { + "@id": "schema:confirmationNumber", + "@type": "rdf:Property", + "rdfs:comment": "A number that confirms the given order or payment has been received.", + "rdfs:label": "confirmationNumber", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Order" + }, + { + "@id": "schema:Invoice" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Chiropractic", + "@type": "schema:MedicineSystem", + "rdfs:comment": "A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.", + "rdfs:label": "Chiropractic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:XRay", + "@type": "schema:MedicalImagingTechnique", + "rdfs:comment": "X-ray imaging.", + "rdfs:label": "XRay", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:LegislativeBuilding", + "@type": "rdfs:Class", + "rdfs:comment": "A legislative building—for example, the state capitol.", + "rdfs:label": "LegislativeBuilding", + "rdfs:subClassOf": { + "@id": "schema:GovernmentBuilding" + } + }, + { + "@id": "schema:Nonprofit501c2", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.", + "rdfs:label": "Nonprofit501c2", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:dayOfWeek", + "@type": "rdf:Property", + "rdfs:comment": "The day of the week for which these opening hours are valid.", + "rdfs:label": "dayOfWeek", + "schema:domainIncludes": [ + { + "@id": "schema:OpeningHoursSpecification" + }, + { + "@id": "schema:EducationalOccupationalProgram" + } + ], + "schema:rangeIncludes": { + "@id": "schema:DayOfWeek" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:unitText", + "@type": "rdf:Property", + "rdfs:comment": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.", + "rdfs:label": "unitText", + "schema:domainIncludes": [ + { + "@id": "schema:TypeAndQuantityNode" + }, + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:UnitPriceSpecification" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:primaryPrevention", + "@type": "rdf:Property", + "rdfs:comment": "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.", + "rdfs:label": "primaryPrevention", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTherapy" + } + }, + { + "@id": "schema:includesObject", + "@type": "rdf:Property", + "rdfs:comment": "This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].", + "rdfs:label": "includesObject", + "schema:domainIncludes": [ + { + "@id": "schema:ProductCollection" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:TypeAndQuantityNode" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:OfflinePermanently", + "@type": "schema:GameServerStatus", + "rdfs:comment": "Game server status: OfflinePermanently. Server is offline and not available.", + "rdfs:label": "OfflinePermanently" + }, + { + "@id": "schema:branchOf", + "@type": "rdf:Property", + "rdfs:comment": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]].", + "rdfs:label": "branchOf", + "schema:domainIncludes": { + "@id": "schema:LocalBusiness" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + }, + "schema:supersededBy": { + "@id": "schema:parentOrganization" + } + }, + { + "@id": "schema:valueName", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.", + "rdfs:label": "valueName", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:emissionsCO2", + "@type": "rdf:Property", + "rdfs:comment": "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\".", + "rdfs:label": "emissionsCO2", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:RadioBroadcastService", + "@type": "rdfs:Class", + "rdfs:comment": "A delivery service through which radio content is provided via broadcast over the air or online.", + "rdfs:label": "RadioBroadcastService", + "rdfs:subClassOf": { + "@id": "schema:BroadcastService" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2109" + } + }, + { + "@id": "schema:followee", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The person or organization being followed.", + "rdfs:label": "followee", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:FollowAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:purchaseDate", + "@type": "rdf:Property", + "rdfs:comment": "The date the item e.g. vehicle was purchased by the current owner.", + "rdfs:label": "purchaseDate", + "schema:domainIncludes": [ + { + "@id": "schema:Vehicle" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:partOfSystem", + "@type": "rdf:Property", + "rdfs:comment": "The anatomical or organ system that this structure is part of.", + "rdfs:label": "partOfSystem", + "schema:domainIncludes": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalSystem" + } + }, + { + "@id": "schema:typeOfBed", + "@type": "rdf:Property", + "rdfs:comment": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.", + "rdfs:label": "typeOfBed", + "schema:domainIncludes": { + "@id": "schema:BedDetails" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:BedType" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:PET", + "@type": "schema:MedicalImagingTechnique", + "rdfs:comment": "Positron emission tomography imaging.", + "rdfs:label": "PET", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:legislationType", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#type_document" + }, + "rdfs:comment": "The type of the legislation. Examples of values are \"law\", \"act\", \"directive\", \"decree\", \"regulation\", \"statutory instrument\", \"loi organique\", \"règlement grand-ducal\", etc., depending on the country.", + "rdfs:label": "legislationType", + "rdfs:subPropertyOf": { + "@id": "schema:genre" + }, + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CategoryCode" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#type_document" + } + }, + { + "@id": "schema:ShippingDeliveryTime", + "@type": "rdfs:Class", + "rdfs:comment": "ShippingDeliveryTime provides various pieces of information about delivery times for shipping.", + "rdfs:label": "ShippingDeliveryTime", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:dateReceived", + "@type": "rdf:Property", + "rdfs:comment": "The date/time the message was received if a single recipient exists.", + "rdfs:label": "dateReceived", + "schema:domainIncludes": { + "@id": "schema:Message" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:insertion", + "@type": "rdf:Property", + "rdfs:comment": "The place of attachment of a muscle, or what the muscle moves.", + "rdfs:label": "insertion", + "schema:domainIncludes": { + "@id": "schema:Muscle" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + } + }, + { + "@id": "schema:winner", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The winner of the action.", + "rdfs:label": "winner", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:LoseAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:LymphaticVessel", + "@type": "rdfs:Class", + "rdfs:comment": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.", + "rdfs:label": "LymphaticVessel", + "rdfs:subClassOf": { + "@id": "schema:Vessel" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Product", + "@type": "rdfs:Class", + "rdfs:comment": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.", + "rdfs:label": "Product", + "rdfs:subClassOf": { + "@id": "schema:Thing" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:numberOfRooms", + "@type": "rdf:Property", + "rdfs:comment": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.", + "rdfs:label": "numberOfRooms", + "schema:domainIncludes": [ + { + "@id": "schema:Suite" + }, + { + "@id": "schema:Accommodation" + }, + { + "@id": "schema:LodgingBusiness" + }, + { + "@id": "schema:Apartment" + }, + { + "@id": "schema:House" + }, + { + "@id": "schema:SingleFamilyResidence" + }, + { + "@id": "schema:FloorPlan" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:BroadcastChannel", + "@type": "rdfs:Class", + "rdfs:comment": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.", + "rdfs:label": "BroadcastChannel", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:Thursday", + "@type": "schema:DayOfWeek", + "rdfs:comment": "The day of the week between Wednesday and Friday.", + "rdfs:label": "Thursday", + "schema:sameAs": { + "@id": "http://www.wikidata.org/entity/Q129" + } + }, + { + "@id": "schema:musicGroupMember", + "@type": "rdf:Property", + "rdfs:comment": "A member of a music group—for example, John, Paul, George, or Ringo.", + "rdfs:label": "musicGroupMember", + "schema:domainIncludes": { + "@id": "schema:MusicGroup" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:member" + } + }, + { + "@id": "schema:UnclassifiedAdultConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "The item is suitable only for adults, without indicating why. Due to widespread use of \"adult\" as a euphemism for \"sexual\", many such items are likely suited also for the SexualContentConsideration code.", + "rdfs:label": "UnclassifiedAdultConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:hasOccupation", + "@type": "rdf:Property", + "rdfs:comment": "The Person's occupation. For past professions, use Role for expressing dates.", + "rdfs:label": "hasOccupation", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Occupation" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:position", + "@type": "rdf:Property", + "rdfs:comment": "The position of an item in a series or sequence of items.", + "rdfs:label": "position", + "schema:domainIncludes": [ + { + "@id": "schema:ListItem" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:ComputerLanguage", + "@type": "rdfs:Class", + "rdfs:comment": "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type.", + "rdfs:label": "ComputerLanguage", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:menuAddOn", + "@type": "rdf:Property", + "rdfs:comment": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.", + "rdfs:label": "menuAddOn", + "schema:domainIncludes": { + "@id": "schema:MenuItem" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MenuItem" + }, + { + "@id": "schema:MenuSection" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1541" + } + }, + { + "@id": "schema:Nonprofit501a", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.", + "rdfs:label": "Nonprofit501a", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:GroupBoardingPolicy", + "@type": "schema:BoardingPolicyType", + "rdfs:comment": "The airline boards by groups based on check-in time, priority, etc.", + "rdfs:label": "GroupBoardingPolicy" + }, + { + "@id": "schema:OfflineEventAttendanceMode", + "@type": "schema:EventAttendanceModeEnumeration", + "rdfs:comment": "OfflineEventAttendanceMode - an event that is primarily conducted offline. ", + "rdfs:label": "OfflineEventAttendanceMode", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:itemReviewed", + "@type": "rdf:Property", + "rdfs:comment": "The item that is being reviewed/rated.", + "rdfs:label": "itemReviewed", + "schema:domainIncludes": [ + { + "@id": "schema:Review" + }, + { + "@id": "schema:AggregateRating" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:servicePostalAddress", + "@type": "rdf:Property", + "rdfs:comment": "The address for accessing the service by mail.", + "rdfs:label": "servicePostalAddress", + "schema:domainIncludes": { + "@id": "schema:ServiceChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:PostalAddress" + } + }, + { + "@id": "schema:Museum", + "@type": "rdfs:Class", + "rdfs:comment": "A museum.", + "rdfs:label": "Museum", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:ToyStore", + "@type": "rdfs:Class", + "rdfs:comment": "A toy store.", + "rdfs:label": "ToyStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:ReturnLabelCustomerResponsibility", + "@type": "schema:ReturnLabelSourceEnumeration", + "rdfs:comment": "Indicated that creating a return label is the responsibility of the customer.", + "rdfs:label": "ReturnLabelCustomerResponsibility", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:subOrganization", + "@type": "rdf:Property", + "rdfs:comment": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.", + "rdfs:label": "subOrganization", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:inverseOf": { + "@id": "schema:parentOrganization" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:sizeGroup", + "@type": "rdf:Property", + "rdfs:comment": "The size group (also known as \"size type\") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example \"men's big and tall\", \"petite maternity\" or \"regular\"", + "rdfs:label": "sizeGroup", + "schema:domainIncludes": { + "@id": "schema:SizeSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:SizeGroupEnumeration" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:DemoGameAvailability", + "@type": "schema:GameAvailabilityEnumeration", + "rdfs:comment": "Indicates demo game availability, i.e. a somehow limited demonstration of the full game.", + "rdfs:label": "DemoGameAvailability", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3058" + } + }, + { + "@id": "schema:serviceUrl", + "@type": "rdf:Property", + "rdfs:comment": "The website to access the service.", + "rdfs:label": "serviceUrl", + "schema:domainIncludes": { + "@id": "schema:ServiceChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:childMaxAge", + "@type": "rdf:Property", + "rdfs:comment": "Maximal age of the child.", + "rdfs:label": "childMaxAge", + "schema:domainIncludes": { + "@id": "schema:ParentAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:cvdNumTotBeds", + "@type": "rdf:Property", + "rdfs:comment": "numtotbeds - ALL HOSPITAL BEDS: Total number of all Inpatient and outpatient beds, including all staffed,ICU, licensed, and overflow (surge) beds used for inpatients or outpatients.", + "rdfs:label": "cvdNumTotBeds", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:ReservationPending", + "@type": "schema:ReservationStatusType", + "rdfs:comment": "The status of a reservation when a request has been sent, but not confirmed.", + "rdfs:label": "ReservationPending" + }, + { + "@id": "schema:RadioEpisode", + "@type": "rdfs:Class", + "rdfs:comment": "A radio episode which can be part of a series or season.", + "rdfs:label": "RadioEpisode", + "rdfs:subClassOf": { + "@id": "schema:Episode" + } + }, + { + "@id": "schema:WebSite", + "@type": "rdfs:Class", + "rdfs:comment": "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.", + "rdfs:label": "WebSite", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:businessFunction", + "@type": "rdf:Property", + "rdfs:comment": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.", + "rdfs:label": "businessFunction", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:TypeAndQuantityNode" + } + ], + "schema:rangeIncludes": { + "@id": "schema:BusinessFunction" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:spokenByCharacter", + "@type": "rdf:Property", + "rdfs:comment": "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.", + "rdfs:label": "spokenByCharacter", + "schema:domainIncludes": { + "@id": "schema:Quotation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/271" + } + }, + { + "@id": "schema:Optometric", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "The science or practice of testing visual acuity and prescribing corrective lenses.", + "rdfs:label": "Optometric", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:accessibilityHazard", + "@type": "rdf:Property", + "rdfs:comment": "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).", + "rdfs:label": "accessibilityHazard", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:status", + "@type": "rdf:Property", + "rdfs:comment": "The status of the study (enumerated).", + "rdfs:label": "status", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalCondition" + }, + { + "@id": "schema:MedicalProcedure" + }, + { + "@id": "schema:MedicalStudy" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:EventStatusType" + }, + { + "@id": "schema:MedicalStudyStatus" + } + ] + }, + { + "@id": "schema:postalCodeRange", + "@type": "rdf:Property", + "rdfs:comment": "A defined range of postal codes.", + "rdfs:label": "postalCodeRange", + "schema:domainIncludes": { + "@id": "schema:DefinedRegion" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:PostalCodeRangeSpecification" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:defaultValue", + "@type": "rdf:Property", + "rdfs:comment": "The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.", + "rdfs:label": "defaultValue", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Thing" + } + ] + }, + { + "@id": "schema:alternativeHeadline", + "@type": "rdf:Property", + "rdfs:comment": "A secondary title of the CreativeWork.", + "rdfs:label": "alternativeHeadline", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Gynecologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.", + "rdfs:label": "Gynecologic", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:geoIntersects", + "@type": "rdf:Property", + "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", + "rdfs:label": "geoIntersects", + "schema:domainIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ] + }, + { + "@id": "schema:PrognosisHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Typical progression and happenings of life course of the topic.", + "rdfs:label": "PrognosisHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:GatedResidenceCommunity", + "@type": "rdfs:Class", + "rdfs:comment": "Residence type: Gated community.", + "rdfs:label": "GatedResidenceCommunity", + "rdfs:subClassOf": { + "@id": "schema:Residence" + } + }, + { + "@id": "schema:gettingTestedInfo", + "@type": "rdf:Property", + "rdfs:comment": "Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.", + "rdfs:label": "gettingTestedInfo", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:WebContent" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:MedicalRiskFactor", + "@type": "rdfs:Class", + "rdfs:comment": "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.", + "rdfs:label": "MedicalRiskFactor", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:numberOfForwardGears", + "@type": "rdf:Property", + "rdfs:comment": "The total number of forward gears available for the transmission system of the vehicle.\\n\\nTypical unit code(s): C62", + "rdfs:label": "numberOfForwardGears", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:HowItWorksHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content that discusses and explains how a particular health-related topic works, e.g. in terms of mechanisms and underlying science.", + "rdfs:label": "HowItWorksHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2799" + } + }, + { + "@id": "schema:PhysicalActivity", + "@type": "rdfs:Class", + "rdfs:comment": "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.", + "rdfs:label": "PhysicalActivity", + "rdfs:subClassOf": { + "@id": "schema:LifestyleModification" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:hasEnergyConsumptionDetails", + "@type": "rdf:Property", + "rdfs:comment": "Defines the energy efficiency Category (also known as \"class\" or \"rating\") for a product according to an international energy efficiency standard.", + "rdfs:label": "hasEnergyConsumptionDetails", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:EnergyConsumptionDetails" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:SalePrice", + "@type": "schema:PriceTypeEnumeration", + "rdfs:comment": "Represents a sale price (usually active for a limited period) of an offered product.", + "rdfs:label": "SalePrice", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2712" + } + }, + { + "@id": "schema:WearableMeasurementOutsideLeg", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the outside leg, for example of pants", + "rdfs:label": "WearableMeasurementOutsideLeg", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:FastFoodRestaurant", + "@type": "rdfs:Class", + "rdfs:comment": "A fast-food restaurant.", + "rdfs:label": "FastFoodRestaurant", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:isResizable", + "@type": "rdf:Property", + "rdfs:comment": "Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.", + "rdfs:label": "isResizable", + "schema:domainIncludes": { + "@id": "schema:3DModel" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2394" + } + }, + { + "@id": "schema:educationalFramework", + "@type": "rdf:Property", + "rdfs:comment": "The framework to which the resource being described is aligned.", + "rdfs:label": "educationalFramework", + "schema:domainIncludes": { + "@id": "schema:AlignmentObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:regionsAllowed", + "@type": "rdf:Property", + "rdfs:comment": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166).", + "rdfs:label": "regionsAllowed", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:pageStart", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/bibo/pageStart" + }, + "rdfs:comment": "The page on which the work starts; for example \"135\" or \"xiii\".", + "rdfs:label": "pageStart", + "schema:domainIncludes": [ + { + "@id": "schema:PublicationIssue" + }, + { + "@id": "schema:Article" + }, + { + "@id": "schema:PublicationVolume" + }, + { + "@id": "schema:Chapter" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Integer" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:LegalForceStatus", + "@type": "rdfs:Class", + "rdfs:comment": "A list of possible statuses for the legal force of a legislation.", + "rdfs:label": "LegalForceStatus", + "rdfs:subClassOf": { + "@id": "schema:StatusEnumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#InForce" + } + }, + { + "@id": "schema:CreativeWorkSeason", + "@type": "rdfs:Class", + "rdfs:comment": "A media season e.g. tv, radio, video game etc.", + "rdfs:label": "CreativeWorkSeason", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:Chapter", + "@type": "rdfs:Class", + "rdfs:comment": "One of the sections into which a book is divided. A chapter usually has a section number or a name.", + "rdfs:label": "Chapter", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:measuredValue", + "@type": "rdf:Property", + "rdfs:comment": "The measuredValue of an [[Observation]].", + "rdfs:label": "measuredValue", + "schema:domainIncludes": { + "@id": "schema:Observation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DataType" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:authenticator", + "@type": "rdf:Property", + "rdfs:comment": "The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.", + "rdfs:label": "authenticator", + "schema:domainIncludes": { + "@id": "schema:MediaSubscription" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + }, + { + "@id": "schema:EducationalOccupationalProgram", + "@type": "rdfs:Class", + "rdfs:comment": "A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate. This would define a discrete set of opportunities (e.g., job, courses) that together constitute a program with a clear start, end, set of requirements, and transition to a new occupational opportunity (e.g., a job), or sometimes a higher educational opportunity (e.g., an advanced degree).", + "rdfs:label": "EducationalOccupationalProgram", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:audience", + "@type": "rdf:Property", + "rdfs:comment": "An intended audience, i.e. a group for whom something was created.", + "rdfs:label": "audience", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:PlayAction" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:LodgingBusiness" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Audience" + } + }, + { + "@id": "schema:Vessel", + "@type": "rdfs:Class", + "rdfs:comment": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.", + "rdfs:label": "Vessel", + "rdfs:subClassOf": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:loser", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The loser of the action.", + "rdfs:label": "loser", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:WinAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:negativeNotes", + "@type": "rdf:Property", + "rdfs:comment": "Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), negative considerations - either as unstructured text, or a list.", + "rdfs:label": "negativeNotes", + "schema:domainIncludes": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ListItem" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:WebContent" + }, + { + "@id": "schema:ItemList" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2832" + } + }, + { + "@id": "schema:parentService", + "@type": "rdf:Property", + "rdfs:comment": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.", + "rdfs:label": "parentService", + "schema:domainIncludes": { + "@id": "schema:BroadcastService" + }, + "schema:rangeIncludes": { + "@id": "schema:BroadcastService" + } + }, + { + "@id": "schema:OneTimePayments", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "OneTimePayments: this is a benefit for one-time payments for individuals.", + "rdfs:label": "OneTimePayments", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:weightTotal", + "@type": "rdf:Property", + "rdfs:comment": "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "weightTotal", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:FourWheelDriveConfiguration", + "@type": "schema:DriveWheelConfigurationValue", + "rdfs:comment": "Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.", + "rdfs:label": "FourWheelDriveConfiguration", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:UserPlusOnes", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserPlusOnes", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:BowlingAlley", + "@type": "rdfs:Class", + "rdfs:comment": "A bowling alley.", + "rdfs:label": "BowlingAlley", + "rdfs:subClassOf": { + "@id": "schema:SportsActivityLocation" + } + }, + { + "@id": "schema:ConvenienceStore", + "@type": "rdfs:Class", + "rdfs:comment": "A convenience store.", + "rdfs:label": "ConvenienceStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:SRP", + "@type": "schema:PriceTypeEnumeration", + "rdfs:comment": "Represents the suggested retail price (\"SRP\") of an offered product.", + "rdfs:label": "SRP", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2712" + } + }, + { + "@id": "schema:itemDefectReturnFees", + "@type": "rdf:Property", + "rdfs:comment": "The type of return fees for returns of defect products.", + "rdfs:label": "itemDefectReturnFees", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ReturnFeesEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:offers", + "@type": "rdf:Property", + "rdfs:comment": "An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.\n ", + "rdfs:label": "offers", + "schema:domainIncludes": [ + { + "@id": "schema:MenuItem" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:AggregateOffer" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:Trip" + }, + { + "@id": "schema:EducationalOccupationalProgram" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Service" + } + ], + "schema:inverseOf": { + "@id": "schema:itemOffered" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:productionDate", + "@type": "rdf:Property", + "rdfs:comment": "The date of production of the item, e.g. vehicle.", + "rdfs:label": "productionDate", + "schema:domainIncludes": [ + { + "@id": "schema:Vehicle" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:gender", + "@type": "rdf:Property", + "rdfs:comment": "Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of \"Mixed\".", + "rdfs:label": "gender", + "schema:domainIncludes": [ + { + "@id": "schema:SportsTeam" + }, + { + "@id": "schema:Person" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:GenderType" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2341" + } + }, + { + "@id": "schema:WearableSizeGroupBig", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Big\" for wearables.", + "rdfs:label": "WearableSizeGroupBig", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:cvdFacilityCounty", + "@type": "rdf:Property", + "rdfs:comment": "Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.", + "rdfs:label": "cvdFacilityCounty", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:EnergyEfficiencyEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates energy efficiency levels (also known as \"classes\" or \"ratings\") and certifications that are part of several international energy efficiency standards.", + "rdfs:label": "EnergyEfficiencyEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:TaxiStand", + "@type": "rdfs:Class", + "rdfs:comment": "A taxi stand.", + "rdfs:label": "TaxiStand", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:numberedPosition", + "@type": "rdf:Property", + "rdfs:comment": "A number associated with a role in an organization, for example, the number on an athlete's jersey.", + "rdfs:label": "numberedPosition", + "schema:domainIncludes": { + "@id": "schema:OrganizationRole" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:ApartmentComplex", + "@type": "rdfs:Class", + "rdfs:comment": "Residence type: Apartment complex.", + "rdfs:label": "ApartmentComplex", + "rdfs:subClassOf": { + "@id": "schema:Residence" + } + }, + { + "@id": "schema:PropertyValueSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A Property value specification.", + "rdfs:label": "PropertyValueSpecification", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass" + } + }, + { + "@id": "schema:locationCreated", + "@type": "rdf:Property", + "rdfs:comment": "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.", + "rdfs:label": "locationCreated", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:printColumn", + "@type": "rdf:Property", + "rdfs:comment": "The number of the column in which the NewsArticle appears in the print edition.", + "rdfs:label": "printColumn", + "schema:domainIncludes": { + "@id": "schema:NewsArticle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:membershipNumber", + "@type": "rdf:Property", + "rdfs:comment": "A unique identifier for the membership.", + "rdfs:label": "membershipNumber", + "schema:domainIncludes": { + "@id": "schema:ProgramMembership" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MediaObject", + "@type": "rdfs:Class", + "rdfs:comment": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).", + "rdfs:label": "MediaObject", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:Motel", + "@type": "rdfs:Class", + "rdfs:comment": "A motel.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "Motel", + "rdfs:subClassOf": { + "@id": "schema:LodgingBusiness" + } + }, + { + "@id": "schema:Nonprofit501c21", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.", + "rdfs:label": "Nonprofit501c21", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:Midwifery", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives.", + "rdfs:label": "Midwifery", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:constrainingProperty", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities\n corresponding to an indicated type (via [[populationType]]).", + "rdfs:label": "constrainingProperty", + "schema:domainIncludes": { + "@id": "schema:StatisticalPopulation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:estimatesRiskOf", + "@type": "rdf:Property", + "rdfs:comment": "The condition, complication, or symptom whose risk is being estimated.", + "rdfs:label": "estimatesRiskOf", + "schema:domainIncludes": { + "@id": "schema:MedicalRiskEstimator" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEntity" + } + }, + { + "@id": "schema:RsvpAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of notifying an event organizer as to whether you expect to attend the event.", + "rdfs:label": "RsvpAction", + "rdfs:subClassOf": { + "@id": "schema:InformAction" + } + }, + { + "@id": "schema:tickerSymbol", + "@type": "rdf:Property", + "rdfs:comment": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.", + "rdfs:label": "tickerSymbol", + "schema:domainIncludes": { + "@id": "schema:Corporation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MerchantReturnNotPermitted", + "@type": "schema:MerchantReturnEnumeration", + "rdfs:comment": "Specifies that product returns are not permitted.", + "rdfs:label": "MerchantReturnNotPermitted", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:AutomotiveBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "Car repair, sales, or parts.", + "rdfs:label": "AutomotiveBusiness", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:subtitleLanguage", + "@type": "rdf:Property", + "rdfs:comment": "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).", + "rdfs:label": "subtitleLanguage", + "schema:domainIncludes": [ + { + "@id": "schema:TVEpisode" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:ScreeningEvent" + }, + { + "@id": "schema:BroadcastEvent" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Language" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2110" + } + }, + { + "@id": "schema:Mosque", + "@type": "rdfs:Class", + "rdfs:comment": "A mosque.", + "rdfs:label": "Mosque", + "rdfs:subClassOf": { + "@id": "schema:PlaceOfWorship" + } + }, + { + "@id": "schema:inDefinedTermSet", + "@type": "rdf:Property", + "rdfs:comment": "A [[DefinedTermSet]] that contains this term.", + "rdfs:label": "inDefinedTermSet", + "rdfs:subPropertyOf": { + "@id": "schema:isPartOf" + }, + "schema:domainIncludes": { + "@id": "schema:DefinedTerm" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:DefinedTermSet" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:ChooseAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.", + "rdfs:label": "ChooseAction", + "rdfs:subClassOf": { + "@id": "schema:AssessAction" + } + }, + { + "@id": "schema:Online", + "@type": "schema:GameServerStatus", + "rdfs:comment": "Game server status: Online. Server is available.", + "rdfs:label": "Online" + }, + { + "@id": "schema:CohortStudy", + "@type": "schema:MedicalObservationalStudyDesign", + "rdfs:comment": "Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.", + "rdfs:label": "CohortStudy", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:game", + "@type": "rdf:Property", + "rdfs:comment": "Video game which is played on this server.", + "rdfs:label": "game", + "schema:domainIncludes": { + "@id": "schema:GameServer" + }, + "schema:inverseOf": { + "@id": "schema:gameServer" + }, + "schema:rangeIncludes": { + "@id": "schema:VideoGame" + } + }, + { + "@id": "schema:Courthouse", + "@type": "rdfs:Class", + "rdfs:comment": "A courthouse.", + "rdfs:label": "Courthouse", + "rdfs:subClassOf": { + "@id": "schema:GovernmentBuilding" + } + }, + { + "@id": "schema:AudioObject", + "@type": "rdfs:Class", + "rdfs:comment": "An audio file.", + "rdfs:label": "AudioObject", + "rdfs:subClassOf": { + "@id": "schema:MediaObject" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + }, + { + "@id": "schema:valueMinLength", + "@type": "rdf:Property", + "rdfs:comment": "Specifies the minimum allowed range for number of characters in a literal value.", + "rdfs:label": "valueMinLength", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:OfflineTemporarily", + "@type": "schema:GameServerStatus", + "rdfs:comment": "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.", + "rdfs:label": "OfflineTemporarily" + }, + { + "@id": "schema:associatedMedia", + "@type": "rdf:Property", + "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for encoding.", + "rdfs:label": "associatedMedia", + "schema:domainIncludes": [ + { + "@id": "schema:HyperToc" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:HyperTocEntry" + } + ], + "schema:rangeIncludes": { + "@id": "schema:MediaObject" + } + }, + { + "@id": "schema:sharedContent", + "@type": "rdf:Property", + "rdfs:comment": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.", + "rdfs:label": "sharedContent", + "schema:domainIncludes": { + "@id": "schema:SocialMediaPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:materialExtent", + "@type": "rdf:Property", + "rdfs:comment": { + "@language": "en", + "@value": "The quantity of the materials being described or an expression of the physical space they occupy." + }, + "rdfs:label": { + "@language": "en", + "@value": "materialExtent" + }, + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1759" + } + }, + { + "@id": "schema:includedComposition", + "@type": "rdf:Property", + "rdfs:comment": "Smaller compositions included in this work (e.g. a movement in a symphony).", + "rdfs:label": "includedComposition", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:partOfInvoice", + "@type": "rdf:Property", + "rdfs:comment": "The order is being paid as part of the referenced Invoice.", + "rdfs:label": "partOfInvoice", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:Invoice" + } + }, + { + "@id": "schema:yearlyRevenue", + "@type": "rdf:Property", + "rdfs:comment": "The size of the business in annual revenue.", + "rdfs:label": "yearlyRevenue", + "schema:domainIncludes": { + "@id": "schema:BusinessAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + } + }, + { + "@id": "schema:equal", + "@type": "rdf:Property", + "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is equal to the object.", + "rdfs:label": "equal", + "schema:domainIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:rangeIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:FDAcategoryA", + "@type": "schema:DrugPregnancyCategory", + "rdfs:comment": "A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).", + "rdfs:label": "FDAcategoryA", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:colorist", + "@type": "rdf:Property", + "rdfs:comment": "The individual who adds color to inked drawings.", + "rdfs:label": "colorist", + "schema:domainIncludes": [ + { + "@id": "schema:VisualArtwork" + }, + { + "@id": "schema:ComicStory" + }, + { + "@id": "schema:ComicIssue" + } + ], + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:Aquarium", + "@type": "rdfs:Class", + "rdfs:comment": "Aquarium.", + "rdfs:label": "Aquarium", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:hasHealthAspect", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the aspect or aspects specifically addressed in some [[HealthTopicContent]]. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.", + "rdfs:label": "hasHealthAspect", + "schema:domainIncludes": { + "@id": "schema:HealthTopicContent" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:HealthAspectEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:Review", + "@type": "rdfs:Class", + "rdfs:comment": "A review of an item - for example, of a restaurant, movie, or store.", + "rdfs:label": "Review", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:startTime", + "@type": "rdf:Property", + "rdfs:comment": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.", + "rdfs:label": "startTime", + "schema:domainIncludes": [ + { + "@id": "schema:Action" + }, + { + "@id": "schema:Schedule" + }, + { + "@id": "schema:FoodEstablishmentReservation" + }, + { + "@id": "schema:InteractionCounter" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Time" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2493" + } + }, + { + "@id": "schema:subEvent", + "@type": "rdf:Property", + "rdfs:comment": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.", + "rdfs:label": "subEvent", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:inverseOf": { + "@id": "schema:superEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:mainEntity", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the primary entity described in some page or other CreativeWork.", + "rdfs:label": "mainEntity", + "rdfs:subPropertyOf": { + "@id": "schema:about" + }, + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:mainEntityOfPage" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:Electrician", + "@type": "rdfs:Class", + "rdfs:comment": "An electrician.", + "rdfs:label": "Electrician", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:polygon", + "@type": "rdf:Property", + "rdfs:comment": "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.", + "rdfs:label": "polygon", + "schema:domainIncludes": { + "@id": "schema:GeoShape" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:parent", + "@type": "rdf:Property", + "rdfs:comment": "A parent of this person.", + "rdfs:label": "parent", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:MoveAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.", + "rdfs:label": "MoveAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:copyrightHolder", + "@type": "rdf:Property", + "rdfs:comment": "The party holding the legal copyright to the CreativeWork.", + "rdfs:label": "copyrightHolder", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:inStoreReturnsOffered", + "@type": "rdf:Property", + "rdfs:comment": "Are in-store returns offered? (for more advanced return methods use the [[returnMethod]] property)", + "rdfs:label": "inStoreReturnsOffered", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:numberOfPreviousOwners", + "@type": "rdf:Property", + "rdfs:comment": "The number of owners of the vehicle, including the current one.\\n\\nTypical unit code(s): C62", + "rdfs:label": "numberOfPreviousOwners", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:School", + "@type": "rdfs:Class", + "rdfs:comment": "A school.", + "rdfs:label": "School", + "rdfs:subClassOf": { + "@id": "schema:EducationalOrganization" + } + }, + { + "@id": "schema:Manuscript", + "@type": "rdfs:Class", + "rdfs:comment": "A book, document, or piece of music written by hand rather than typed or printed.", + "rdfs:label": "Manuscript", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1448" + } + }, + { + "@id": "schema:aircraft", + "@type": "rdf:Property", + "rdfs:comment": "The kind of aircraft (e.g., \"Boeing 747\").", + "rdfs:label": "aircraft", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Vehicle" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:SearchResultsPage", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Search results page.", + "rdfs:label": "SearchResultsPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:coursePrerequisites", + "@type": "rdf:Property", + "rdfs:comment": "Requirements for taking the Course. May be completion of another [[Course]] or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].", + "rdfs:label": "coursePrerequisites", + "schema:domainIncludes": { + "@id": "schema:Course" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:AlignmentObject" + }, + { + "@id": "schema:Course" + } + ] + }, + { + "@id": "schema:orderNumber", + "@type": "rdf:Property", + "rdfs:comment": "The identifier of the transaction.", + "rdfs:label": "orderNumber", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:suggestedMeasurement", + "@type": "rdf:Property", + "rdfs:comment": "A suggested range of body measurements for the intended audience or person, for example inseam between 32 and 34 inches or height between 170 and 190 cm. Typically found on a size chart for wearable products.", + "rdfs:label": "suggestedMeasurement", + "schema:domainIncludes": [ + { + "@id": "schema:PeopleAudience" + }, + { + "@id": "schema:SizeSpecification" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:awayTeam", + "@type": "rdf:Property", + "rdfs:comment": "The away team in a sports event.", + "rdfs:label": "awayTeam", + "rdfs:subPropertyOf": { + "@id": "schema:competitor" + }, + "schema:domainIncludes": { + "@id": "schema:SportsEvent" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:SportsTeam" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:typicalCreditsPerTerm", + "@type": "rdf:Property", + "rdfs:comment": "The number of credits or units a full-time student would be expected to take in 1 term however 'term' is defined by the institution.", + "rdfs:label": "typicalCreditsPerTerm", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:StructuredValue" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:sodiumContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of milligrams of sodium.", + "rdfs:label": "sodiumContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:Ear", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Ear function assessment with clinical examination.", + "rdfs:label": "Ear", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:requiredQuantity", + "@type": "rdf:Property", + "rdfs:comment": "The required quantity of the item(s).", + "rdfs:label": "requiredQuantity", + "schema:domainIncludes": { + "@id": "schema:HowToItem" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:ContactPage", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Contact page.", + "rdfs:label": "ContactPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:NewsArticle", + "@type": "rdfs:Class", + "rdfs:comment": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n", + "rdfs:label": "NewsArticle", + "rdfs:subClassOf": { + "@id": "schema:Article" + }, + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + ] + }, + { + "@id": "schema:WearableSizeGroupRegular", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Regular\" for wearables.", + "rdfs:label": "WearableSizeGroupRegular", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:subTest", + "@type": "rdf:Property", + "rdfs:comment": "A component test of the panel.", + "rdfs:label": "subTest", + "schema:domainIncludes": { + "@id": "schema:MedicalTestPanel" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTest" + } + }, + { + "@id": "schema:ScreeningEvent", + "@type": "rdfs:Class", + "rdfs:comment": "A screening of a movie or other video.", + "rdfs:label": "ScreeningEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:OwnershipInfo", + "@type": "rdfs:Class", + "rdfs:comment": "A structured value providing information about when a certain organization or person owned a certain product.", + "rdfs:label": "OwnershipInfo", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:applicationSubCategory", + "@type": "rdf:Property", + "rdfs:comment": "Subcategory of the application, e.g. 'Arcade Game'.", + "rdfs:label": "applicationSubCategory", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Movie", + "@type": "rdfs:Class", + "rdfs:comment": "A movie.", + "rdfs:label": "Movie", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:Observational", + "@type": "schema:MedicalObservationalStudyDesign", + "rdfs:comment": "An observational study design.", + "rdfs:label": "Observational", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:identifyingTest", + "@type": "rdf:Property", + "rdfs:comment": "A diagnostic test that can identify this sign.", + "rdfs:label": "identifyingTest", + "schema:domainIncludes": { + "@id": "schema:MedicalSign" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTest" + } + }, + { + "@id": "schema:AcceptAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n* [[RejectAction]]: The antonym of AcceptAction.", + "rdfs:label": "AcceptAction", + "rdfs:subClassOf": { + "@id": "schema:AllocateAction" + } + }, + { + "@id": "schema:regionDrained", + "@type": "rdf:Property", + "rdfs:comment": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.", + "rdfs:label": "regionDrained", + "schema:domainIncludes": [ + { + "@id": "schema:LymphaticVessel" + }, + { + "@id": "schema:Vein" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AnatomicalSystem" + }, + { + "@id": "schema:AnatomicalStructure" + } + ] + }, + { + "@id": "schema:itemCondition", + "@type": "rdf:Property", + "rdfs:comment": "A predefined value from OfferItemCondition specifying the condition of the product or service, or the products or services included in the offer. Also used for product return policies to specify the condition of products accepted for returns.", + "rdfs:label": "itemCondition", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:MerchantReturnPolicy" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": { + "@id": "schema:OfferItemCondition" + } + }, + { + "@id": "schema:availableService", + "@type": "rdf:Property", + "rdfs:comment": "A medical service available from this provider.", + "rdfs:label": "availableService", + "schema:domainIncludes": [ + { + "@id": "schema:Physician" + }, + { + "@id": "schema:Hospital" + }, + { + "@id": "schema:MedicalClinic" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MedicalTest" + }, + { + "@id": "schema:MedicalProcedure" + }, + { + "@id": "schema:MedicalTherapy" + } + ] + }, + { + "@id": "schema:actor", + "@type": "rdf:Property", + "rdfs:comment": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.", + "rdfs:label": "actor", + "schema:domainIncludes": [ + { + "@id": "schema:Event" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:PodcastSeries" + }, + { + "@id": "schema:VideoGame" + }, + { + "@id": "schema:Clip" + }, + { + "@id": "schema:Episode" + }, + { + "@id": "schema:MovieSeries" + }, + { + "@id": "schema:VideoObject" + }, + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:TVSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:targetPlatform", + "@type": "rdf:Property", + "rdfs:comment": "Type of app development: phone, Metro style, desktop, XBox, etc.", + "rdfs:label": "targetPlatform", + "schema:domainIncludes": { + "@id": "schema:APIReference" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:applicationStartDate", + "@type": "rdf:Property", + "rdfs:comment": "The date at which the program begins collecting applications for the next enrollment cycle.", + "rdfs:label": "applicationStartDate", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:Discontinued", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item has been discontinued.", + "rdfs:label": "Discontinued" + }, + { + "@id": "schema:Thing", + "@type": "rdfs:Class", + "rdfs:comment": "The most generic type of item.", + "rdfs:label": "Thing" + }, + { + "@id": "schema:application", + "@type": "rdf:Property", + "rdfs:comment": "An application that can complete the request.", + "rdfs:label": "application", + "schema:domainIncludes": { + "@id": "schema:EntryPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:supersededBy": { + "@id": "schema:actionApplication" + } + }, + { + "@id": "schema:awards", + "@type": "rdf:Property", + "rdfs:comment": "Awards won by or for this item.", + "rdfs:label": "awards", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:award" + } + }, + { + "@id": "schema:BedDetails", + "@type": "rdfs:Class", + "rdfs:comment": "An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).", + "rdfs:label": "BedDetails", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:contentLocation", + "@type": "rdf:Property", + "rdfs:comment": "The location depicted or described in the content. For example, the location in a photograph or painting.", + "rdfs:label": "contentLocation", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:SellAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.", + "rdfs:label": "SellAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:RentalCarReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.", + "rdfs:label": "RentalCarReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:targetDescription", + "@type": "rdf:Property", + "rdfs:comment": "The description of a node in an established educational framework.", + "rdfs:label": "targetDescription", + "schema:domainIncludes": { + "@id": "schema:AlignmentObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Osteopathic", + "@type": "schema:MedicineSystem", + "rdfs:comment": "A system of medicine focused on promoting the body's innate ability to heal itself.", + "rdfs:label": "Osteopathic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:LakeBodyOfWater", + "@type": "rdfs:Class", + "rdfs:comment": "A lake (for example, Lake Pontrachain).", + "rdfs:label": "LakeBodyOfWater", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:MediaReviewItem", + "@type": "rdfs:Class", + "rdfs:comment": "Represents an item or group of closely related items treated as a unit for the sake of evaluation in a [[MediaReview]]. Authorship etc. apply to the items rather than to the curation/grouping or reviewing party.", + "rdfs:label": "MediaReviewItem", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:partOfEpisode", + "@type": "rdf:Property", + "rdfs:comment": "The episode to which this clip belongs.", + "rdfs:label": "partOfEpisode", + "rdfs:subPropertyOf": { + "@id": "schema:isPartOf" + }, + "schema:domainIncludes": { + "@id": "schema:Clip" + }, + "schema:rangeIncludes": { + "@id": "schema:Episode" + } + }, + { + "@id": "schema:DepartmentStore", + "@type": "rdfs:Class", + "rdfs:comment": "A department store.", + "rdfs:label": "DepartmentStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:broadcastDisplayName", + "@type": "rdf:Property", + "rdfs:comment": "The name displayed in the channel guide. For many US affiliates, it is the network name.", + "rdfs:label": "broadcastDisplayName", + "schema:domainIncludes": { + "@id": "schema:BroadcastService" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:itemListElement", + "@type": "rdf:Property", + "rdfs:comment": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\\n\\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\\n\\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.", + "rdfs:label": "itemListElement", + "schema:domainIncludes": { + "@id": "schema:ItemList" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Thing" + }, + { + "@id": "schema:ListItem" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Distillery", + "@type": "rdfs:Class", + "rdfs:comment": "A distillery.", + "rdfs:label": "Distillery", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/743" + } + }, + { + "@id": "schema:SpeechPathology", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "The scientific study and treatment of defects, disorders, and malfunctions of speech and voice, as stuttering, lisping, or lalling, and of language disturbances, as aphasia or delayed language acquisition.", + "rdfs:label": "SpeechPathology", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ComedyEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Comedy event.", + "rdfs:label": "ComedyEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:nextItem", + "@type": "rdf:Property", + "rdfs:comment": "A link to the ListItem that follows the current one.", + "rdfs:label": "nextItem", + "schema:domainIncludes": { + "@id": "schema:ListItem" + }, + "schema:rangeIncludes": { + "@id": "schema:ListItem" + } + }, + { + "@id": "schema:Statement", + "@type": "rdfs:Class", + "rdfs:comment": "A statement about something, for example a fun or interesting fact. If known, the main entity this statement is about, can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.", + "rdfs:label": "Statement", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2912" + } + }, + { + "@id": "schema:Seat", + "@type": "rdfs:Class", + "rdfs:comment": "Used to describe a seat, such as a reserved seat in an event reservation.", + "rdfs:label": "Seat", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:WearableSizeSystemDE", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "German size system for wearables.", + "rdfs:label": "WearableSizeSystemDE", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:associatedArticle", + "@type": "rdf:Property", + "rdfs:comment": "A NewsArticle associated with the Media Object.", + "rdfs:label": "associatedArticle", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:NewsArticle" + } + }, + { + "@id": "schema:feesAndCommissionsSpecification", + "@type": "rdf:Property", + "rdfs:comment": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.", + "rdfs:label": "feesAndCommissionsSpecification", + "schema:domainIncludes": [ + { + "@id": "schema:FinancialProduct" + }, + { + "@id": "schema:FinancialService" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:course", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The course where this action was taken.", + "rdfs:label": "course", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + }, + "schema:supersededBy": { + "@id": "schema:exerciseCourse" + } + }, + { + "@id": "schema:Nonprofit501e", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.", + "rdfs:label": "Nonprofit501e", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:EventScheduled", + "@type": "schema:EventStatusType", + "rdfs:comment": "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.", + "rdfs:label": "EventScheduled" + }, + { + "@id": "schema:MovieTheater", + "@type": "rdfs:Class", + "rdfs:comment": "A movie theater.", + "rdfs:label": "MovieTheater", + "rdfs:subClassOf": [ + { + "@id": "schema:CivicStructure" + }, + { + "@id": "schema:EntertainmentBusiness" + } + ] + }, + { + "@id": "schema:audienceType", + "@type": "rdf:Property", + "rdfs:comment": "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).", + "rdfs:label": "audienceType", + "schema:domainIncludes": { + "@id": "schema:Audience" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:repeatCount", + "@type": "rdf:Property", + "rdfs:comment": "Defines the number of times a recurring [[Event]] will take place", + "rdfs:label": "repeatCount", + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:departureTime", + "@type": "rdf:Property", + "rdfs:comment": "The expected departure time.", + "rdfs:label": "departureTime", + "schema:domainIncludes": { + "@id": "schema:Trip" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Time" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:AnaerobicActivity", + "@type": "schema:PhysicalActivityCategory", + "rdfs:comment": "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.", + "rdfs:label": "AnaerobicActivity", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:sdDatePublished", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]", + "rdfs:label": "sdDatePublished", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1886" + } + }, + { + "@id": "schema:structuralClass", + "@type": "rdf:Property", + "rdfs:comment": "The name given to how bone physically connects to each other.", + "rdfs:label": "structuralClass", + "schema:domainIncludes": { + "@id": "schema:Joint" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:primaryImageOfPage", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the main image on the page.", + "rdfs:label": "primaryImageOfPage", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": { + "@id": "schema:ImageObject" + } + }, + { + "@id": "schema:RadiationTherapy", + "@type": "rdfs:Class", + "rdfs:comment": "A process of care using radiation aimed at improving a health condition.", + "rdfs:label": "RadiationTherapy", + "rdfs:subClassOf": { + "@id": "schema:MedicalTherapy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:interestRate", + "@type": "rdf:Property", + "rdfs:comment": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.", + "rdfs:label": "interestRate", + "schema:domainIncludes": { + "@id": "schema:FinancialProduct" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:PerformAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of participating in performance arts.", + "rdfs:label": "PerformAction", + "rdfs:subClassOf": { + "@id": "schema:PlayAction" + } + }, + { + "@id": "schema:readBy", + "@type": "rdf:Property", + "rdfs:comment": "A person who reads (performs) the audiobook.", + "rdfs:label": "readBy", + "rdfs:subPropertyOf": { + "@id": "schema:actor" + }, + "schema:domainIncludes": { + "@id": "schema:Audiobook" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:eventStatus", + "@type": "rdf:Property", + "rdfs:comment": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.", + "rdfs:label": "eventStatus", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": { + "@id": "schema:EventStatusType" + } + }, + { + "@id": "schema:alternativeOf", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Gene" + }, + "rdfs:comment": "Another gene which is a variation of this one.", + "rdfs:label": "alternativeOf", + "schema:domainIncludes": { + "@id": "schema:Gene" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Gene" + } + }, + { + "@id": "schema:PregnancyHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content discussing pregnancy-related aspects of a health topic.", + "rdfs:label": "PregnancyHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2799" + } + }, + { + "@id": "schema:CategoryCode", + "@type": "rdfs:Class", + "rdfs:comment": "A Category Code.", + "rdfs:label": "CategoryCode", + "rdfs:subClassOf": { + "@id": "schema:DefinedTerm" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:CriticReview", + "@type": "rdfs:Class", + "rdfs:comment": "A [[CriticReview]] is a more specialized form of Review written or published by a source that is recognized for its reviewing activities. These can include online columns, travel and food guides, TV and radio shows, blogs and other independent Web sites. [[CriticReview]]s are typically more in-depth and professionally written. For simpler, casually written user/visitor/viewer/customer reviews, it is more appropriate to use the [[UserReview]] type. Review aggregator sites such as Metacritic already separate out the site's user reviews from selected critic reviews that originate from third-party sources.", + "rdfs:label": "CriticReview", + "rdfs:subClassOf": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1589" + } + }, + { + "@id": "schema:BroadcastFrequencySpecification", + "@type": "rdfs:Class", + "rdfs:comment": "The frequency in MHz and the modulation used for a particular BroadcastService.", + "rdfs:label": "BroadcastFrequencySpecification", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1004" + } + }, + { + "@id": "schema:differentialDiagnosis", + "@type": "rdf:Property", + "rdfs:comment": "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.", + "rdfs:label": "differentialDiagnosis", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DDxElement" + } + }, + { + "@id": "schema:downloadUrl", + "@type": "rdf:Property", + "rdfs:comment": "If the file can be downloaded, URL to download the binary.", + "rdfs:label": "downloadUrl", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:observedNode", + "@type": "rdf:Property", + "rdfs:comment": "The observedNode of an [[Observation]], often a [[StatisticalPopulation]].", + "rdfs:label": "observedNode", + "schema:domainIncludes": { + "@id": "schema:Observation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:StatisticalPopulation" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:timeOfDay", + "@type": "rdf:Property", + "rdfs:comment": "The time of day the program normally runs. For example, \"evenings\".", + "rdfs:label": "timeOfDay", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:sibling", + "@type": "rdf:Property", + "rdfs:comment": "A sibling of the person.", + "rdfs:label": "sibling", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:RecyclingCenter", + "@type": "rdfs:Class", + "rdfs:comment": "A recycling center.", + "rdfs:label": "RecyclingCenter", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:videoFormat", + "@type": "rdf:Property", + "rdfs:comment": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).", + "rdfs:label": "videoFormat", + "schema:domainIncludes": [ + { + "@id": "schema:BroadcastService" + }, + { + "@id": "schema:ScreeningEvent" + }, + { + "@id": "schema:BroadcastEvent" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Duration", + "@type": "rdfs:Class", + "rdfs:comment": "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).", + "rdfs:label": "Duration", + "rdfs:subClassOf": { + "@id": "schema:Quantity" + } + }, + { + "@id": "schema:intensity", + "@type": "rdf:Property", + "rdfs:comment": "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.", + "rdfs:label": "intensity", + "schema:domainIncludes": { + "@id": "schema:ExercisePlan" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:hostingOrganization", + "@type": "rdf:Property", + "rdfs:comment": "The organization (airline, travelers' club, etc.) the membership is made with.", + "rdfs:label": "hostingOrganization", + "schema:domainIncludes": { + "@id": "schema:ProgramMembership" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:Synagogue", + "@type": "rdfs:Class", + "rdfs:comment": "A synagogue.", + "rdfs:label": "Synagogue", + "rdfs:subClassOf": { + "@id": "schema:PlaceOfWorship" + } + }, + { + "@id": "schema:ListenAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of consuming audio content.", + "rdfs:label": "ListenAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:announcementLocation", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use [[spatialCoverage]].", + "rdfs:label": "announcementLocation", + "rdfs:subPropertyOf": { + "@id": "schema:spatialCoverage" + }, + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CivicStructure" + }, + { + "@id": "schema:LocalBusiness" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2514" + } + }, + { + "@id": "schema:gtin", + "@type": "rdf:Property", + "rdfs:comment": "A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties. The GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a \"GS1 Digital Link\" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged.\n ", + "rdfs:label": "gtin", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:latitude", + "@type": "rdf:Property", + "rdfs:comment": "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", + "rdfs:label": "latitude", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeoCoordinates" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ] + }, + { + "@id": "schema:actionStatus", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the current disposition of the Action.", + "rdfs:label": "actionStatus", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": { + "@id": "schema:ActionStatusType" + } + }, + { + "@id": "schema:SolveMathAction", + "@type": "rdfs:Class", + "rdfs:comment": "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.", + "rdfs:label": "SolveMathAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2740" + } + }, + { + "@id": "schema:KosherDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet conforming to Jewish dietary practices.", + "rdfs:label": "KosherDiet" + }, + { + "@id": "schema:linkRelationship", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the relationship type of a Web link. ", + "rdfs:label": "linkRelationship", + "schema:domainIncludes": { + "@id": "schema:LinkRole" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1045" + } + }, + { + "@id": "schema:producer", + "@type": "rdf:Property", + "rdfs:comment": "The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.).", + "rdfs:label": "producer", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:trailer", + "@type": "rdf:Property", + "rdfs:comment": "The trailer of a movie or tv/radio series, season, episode, etc.", + "rdfs:label": "trailer", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:VideoGame" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:MovieSeries" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:Episode" + } + ], + "schema:rangeIncludes": { + "@id": "schema:VideoObject" + } + }, + { + "@id": "schema:ExchangeRefund", + "@type": "schema:RefundTypeEnumeration", + "rdfs:comment": "Specifies that a refund can be done as an exchange for the same product.", + "rdfs:label": "ExchangeRefund", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:spatial", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "dcterms:spatial" + }, + "rdfs:comment": "The \"spatial\" property can be used in cases when more specific properties\n(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", + "rdfs:label": "spatial", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:BroadcastEvent", + "@type": "rdfs:Class", + "rdfs:comment": "An over the air or online broadcast event.", + "rdfs:label": "BroadcastEvent", + "rdfs:subClassOf": { + "@id": "schema:PublicationEvent" + } + }, + { + "@id": "schema:steeringPosition", + "@type": "rdf:Property", + "rdfs:comment": "The position of the steering wheel or similar device (mostly for cars).", + "rdfs:label": "steeringPosition", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:SteeringPositionValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:HearingImpairedSupported", + "@type": "schema:ContactPointOption", + "rdfs:comment": "Uses devices to support users with hearing impairments.", + "rdfs:label": "HearingImpairedSupported" + }, + { + "@id": "schema:AppendAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of inserting at the end if an ordered collection.", + "rdfs:label": "AppendAction", + "rdfs:subClassOf": { + "@id": "schema:InsertAction" + } + }, + { + "@id": "schema:IndividualProduct", + "@type": "rdfs:Class", + "rdfs:comment": "A single, identifiable product instance (e.g. a laptop with a particular serial number).", + "rdfs:label": "IndividualProduct", + "rdfs:subClassOf": { + "@id": "schema:Product" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:endDate", + "@type": "rdf:Property", + "rdfs:comment": "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", + "rdfs:label": "endDate", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWorkSeries" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:DatedMoneySpecification" + }, + { + "@id": "schema:Role" + }, + { + "@id": "schema:Schedule" + }, + { + "@id": "schema:EducationalOccupationalProgram" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:MerchantReturnPolicySeasonalOverride" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2486" + } + }, + { + "@id": "schema:InfectiousDisease", + "@type": "rdfs:Class", + "rdfs:comment": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.", + "rdfs:label": "InfectiousDisease", + "rdfs:subClassOf": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:FDAcategoryX", + "@type": "schema:DrugPregnancyCategory", + "rdfs:comment": "A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.", + "rdfs:label": "FDAcategoryX", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:travelBans", + "@type": "rdf:Property", + "rdfs:comment": "Information about travel bans, e.g. in the context of a pandemic.", + "rdfs:label": "travelBans", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:WebContent" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:publisher", + "@type": "rdf:Property", + "rdfs:comment": "The publisher of the creative work.", + "rdfs:label": "publisher", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:PaymentAutomaticallyApplied", + "@type": "schema:PaymentStatusType", + "rdfs:comment": "An automatic payment system is in place and will be used.", + "rdfs:label": "PaymentAutomaticallyApplied" + }, + { + "@id": "schema:printPage", + "@type": "rdf:Property", + "rdfs:comment": "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).", + "rdfs:label": "printPage", + "schema:domainIncludes": { + "@id": "schema:NewsArticle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ReplyAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of responding to a question/message asked/sent by the object. Related to [[AskAction]]\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.", + "rdfs:label": "ReplyAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:jobTitle", + "@type": "rdf:Property", + "rdfs:comment": "The job title of the person (for example, Financial Manager).", + "rdfs:label": "jobTitle", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2192" + } + }, + { + "@id": "schema:PalliativeProcedure", + "@type": "rdfs:Class", + "rdfs:comment": "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.", + "rdfs:label": "PalliativeProcedure", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalTherapy" + }, + { + "@id": "schema:MedicalProcedure" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Winery", + "@type": "rdfs:Class", + "rdfs:comment": "A winery.", + "rdfs:label": "Winery", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:ccRecipient", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of recipient. The recipient copied on a message.", + "rdfs:label": "ccRecipient", + "rdfs:subPropertyOf": { + "@id": "schema:recipient" + }, + "schema:domainIncludes": { + "@id": "schema:Message" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:ContactPoint" + } + ] + }, + { + "@id": "schema:eligibleQuantity", + "@type": "rdf:Property", + "rdfs:comment": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.", + "rdfs:label": "eligibleQuantity", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:PriceSpecification" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:Saturday", + "@type": "schema:DayOfWeek", + "rdfs:comment": "The day of the week between Friday and Sunday.", + "rdfs:label": "Saturday", + "schema:sameAs": { + "@id": "http://www.wikidata.org/entity/Q131" + } + }, + { + "@id": "schema:gameEdition", + "@type": "rdf:Property", + "rdfs:comment": "The edition of a video game.", + "rdfs:label": "gameEdition", + "schema:domainIncludes": { + "@id": "schema:VideoGame" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:risks", + "@type": "rdf:Property", + "rdfs:comment": "Specific physiologic risks associated to the diet plan.", + "rdfs:label": "risks", + "schema:domainIncludes": { + "@id": "schema:Diet" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:productID", + "@type": "rdf:Property", + "rdfs:comment": "The product identifier, such as ISBN. For example: ``` meta itemprop=\"productID\" content=\"isbn:123-456-789\" ```.", + "rdfs:label": "productID", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:albumProductionType", + "@type": "rdf:Property", + "rdfs:comment": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.", + "rdfs:label": "albumProductionType", + "schema:domainIncludes": { + "@id": "schema:MusicAlbum" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicAlbumProductionType" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:cvdNumICUBeds", + "@type": "rdf:Property", + "rdfs:comment": "numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.", + "rdfs:label": "cvdNumICUBeds", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:duplicateTherapy", + "@type": "rdf:Property", + "rdfs:comment": "A therapy that duplicates or overlaps this one.", + "rdfs:label": "duplicateTherapy", + "schema:domainIncludes": { + "@id": "schema:MedicalTherapy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTherapy" + } + }, + { + "@id": "schema:MeetingRoom", + "@type": "rdfs:Class", + "rdfs:comment": "A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Conference_hall).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "MeetingRoom", + "rdfs:subClassOf": { + "@id": "schema:Room" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:PhotographAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of capturing still images of objects using a camera.", + "rdfs:label": "PhotographAction", + "rdfs:subClassOf": { + "@id": "schema:CreateAction" + } + }, + { + "@id": "schema:EngineSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.", + "rdfs:label": "EngineSpecification", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:SendAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).", + "rdfs:label": "SendAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:WearableSizeSystemAU", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "Australian size system for wearables.", + "rdfs:label": "WearableSizeSystemAU", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:replyToUrl", + "@type": "rdf:Property", + "rdfs:comment": "The URL at which a reply may be posted to the specified UserComment.", + "rdfs:label": "replyToUrl", + "schema:domainIncludes": { + "@id": "schema:UserComments" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:WearableMeasurementCup", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the cup, for example of a bra", + "rdfs:label": "WearableMeasurementCup", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:SelfCareHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Self care actions or measures that can be taken to sooth, health or avoid a topic. This may be carried at home and can be carried/managed by the person itself.", + "rdfs:label": "SelfCareHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:Installment", + "@type": "schema:PriceComponentTypeEnumeration", + "rdfs:comment": "Represents the installment pricing component of the total price for an offered product.", + "rdfs:label": "Installment", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:episodes", + "@type": "rdf:Property", + "rdfs:comment": "An episode of a TV/radio series or season.", + "rdfs:label": "episodes", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:RadioSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Episode" + }, + "schema:supersededBy": { + "@id": "schema:episode" + } + }, + { + "@id": "schema:variantCover", + "@type": "rdf:Property", + "rdfs:comment": "A description of the variant cover\n \tfor the issue, if the issue is a variant printing. For example, \"Bryan Hitch\n \tVariant Cover\" or \"2nd Printing Variant\".", + "rdfs:label": "variantCover", + "schema:domainIncludes": { + "@id": "schema:ComicIssue" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:earlyPrepaymentPenalty", + "@type": "rdf:Property", + "rdfs:comment": "The amount to be paid as a penalty in the event of early payment of the loan.", + "rdfs:label": "earlyPrepaymentPenalty", + "schema:domainIncludes": { + "@id": "schema:RepaymentSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:sourceOrganization", + "@type": "rdf:Property", + "rdfs:comment": "The Organization on whose behalf the creator was working.", + "rdfs:label": "sourceOrganization", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:cholesterolContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of milligrams of cholesterol.", + "rdfs:label": "cholesterolContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:Report", + "@type": "rdfs:Class", + "rdfs:comment": "A Report generated by governmental or non-governmental organization.", + "rdfs:label": "Report", + "rdfs:subClassOf": { + "@id": "schema:Article" + } + }, + { + "@id": "schema:acceptedPaymentMethod", + "@type": "rdf:Property", + "rdfs:comment": "The payment method(s) accepted by seller for this offer.", + "rdfs:label": "acceptedPaymentMethod", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:LoanOrCredit" + }, + { + "@id": "schema:PaymentMethod" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:applicationCategory", + "@type": "rdf:Property", + "rdfs:comment": "Type of software application, e.g. 'Game, Multimedia'.", + "rdfs:label": "applicationCategory", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:typeOfGood", + "@type": "rdf:Property", + "rdfs:comment": "The product that this structured value is referring to.", + "rdfs:label": "typeOfGood", + "schema:domainIncludes": [ + { + "@id": "schema:OwnershipInfo" + }, + { + "@id": "schema:TypeAndQuantityNode" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Service" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:warranty", + "@type": "rdf:Property", + "rdfs:comment": "The warranty promise(s) included in the offer.", + "rdfs:label": "warranty", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:WarrantyPromise" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:wheelbase", + "@type": "rdf:Property", + "rdfs:comment": "The distance between the centers of the front and rear wheels.\\n\\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet", + "rdfs:label": "wheelbase", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:variableMeasured", + "@type": "rdf:Property", + "rdfs:comment": "The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.", + "rdfs:label": "variableMeasured", + "schema:domainIncludes": { + "@id": "schema:Dataset" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1083" + } + }, + { + "@id": "schema:MotorizedBicycle", + "@type": "rdfs:Class", + "rdfs:comment": "A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling.", + "rdfs:label": "MotorizedBicycle", + "rdfs:subClassOf": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:characterAttribute", + "@type": "rdf:Property", + "rdfs:comment": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).", + "rdfs:label": "characterAttribute", + "schema:domainIncludes": [ + { + "@id": "schema:Game" + }, + { + "@id": "schema:VideoGameSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:WearableSizeGroupMens", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Mens\" for wearables.", + "rdfs:label": "WearableSizeGroupMens", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:DoseSchedule", + "@type": "rdfs:Class", + "rdfs:comment": "A specific dosing schedule for a drug or supplement.", + "rdfs:label": "DoseSchedule", + "rdfs:subClassOf": { + "@id": "schema:MedicalIntangible" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:itemShipped", + "@type": "rdf:Property", + "rdfs:comment": "Item(s) being shipped.", + "rdfs:label": "itemShipped", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": { + "@id": "schema:Product" + } + }, + { + "@id": "schema:ComicSeries", + "@type": "rdfs:Class", + "rdfs:comment": "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".", + "rdfs:label": "ComicSeries", + "rdfs:subClassOf": { + "@id": "schema:Periodical" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:inker", + "@type": "rdf:Property", + "rdfs:comment": "The individual who traces over the pencil drawings in ink after pencils are complete.", + "rdfs:label": "inker", + "schema:domainIncludes": [ + { + "@id": "schema:VisualArtwork" + }, + { + "@id": "schema:ComicStory" + }, + { + "@id": "schema:ComicIssue" + } + ], + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:targetName", + "@type": "rdf:Property", + "rdfs:comment": "The name of a node in an established educational framework.", + "rdfs:label": "targetName", + "schema:domainIncludes": { + "@id": "schema:AlignmentObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:relatedTherapy", + "@type": "rdf:Property", + "rdfs:comment": "A medical therapy related to this anatomy.", + "rdfs:label": "relatedTherapy", + "schema:domainIncludes": [ + { + "@id": "schema:AnatomicalSystem" + }, + { + "@id": "schema:SuperficialAnatomy" + }, + { + "@id": "schema:AnatomicalStructure" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTherapy" + } + }, + { + "@id": "schema:mediaItemAppearance", + "@type": "rdf:Property", + "rdfs:comment": "In the context of a [[MediaReview]], indicates specific media item(s) that are grouped using a [[MediaReviewItem]].", + "rdfs:label": "mediaItemAppearance", + "schema:domainIncludes": { + "@id": "schema:MediaReviewItem" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MediaObject" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:vehicleInteriorType", + "@type": "rdf:Property", + "rdfs:comment": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.", + "rdfs:label": "vehicleInteriorType", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:dosageForm", + "@type": "rdf:Property", + "rdfs:comment": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.", + "rdfs:label": "dosageForm", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MedicalContraindication", + "@type": "rdfs:Class", + "rdfs:comment": "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).", + "rdfs:label": "MedicalContraindication", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:CommunityHealth", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas.", + "rdfs:label": "CommunityHealth", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:serviceOutput", + "@type": "rdf:Property", + "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.", + "rdfs:label": "serviceOutput", + "schema:domainIncludes": { + "@id": "schema:Service" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:CheckoutPage", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Checkout page.", + "rdfs:label": "CheckoutPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:TheaterEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Theater performance.", + "rdfs:label": "TheaterEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:ListPrice", + "@type": "schema:PriceTypeEnumeration", + "rdfs:comment": "Represents the list price (the price a product is actually advertised for) of an offered product.", + "rdfs:label": "ListPrice", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2712" + } + }, + { + "@id": "schema:birthDate", + "@type": "rdf:Property", + "rdfs:comment": "Date of birth.", + "rdfs:label": "birthDate", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:programName", + "@type": "rdf:Property", + "rdfs:comment": "The program providing the membership.", + "rdfs:label": "programName", + "schema:domainIncludes": { + "@id": "schema:ProgramMembership" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DisabilitySupport", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "DisabilitySupport: this is a benefit for disability support.", + "rdfs:label": "DisabilitySupport", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:UpdateAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of managing by changing/editing the state of the object.", + "rdfs:label": "UpdateAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:ItemListOrderDescending", + "@type": "schema:ItemListOrderType", + "rdfs:comment": "An ItemList ordered with higher values listed first.", + "rdfs:label": "ItemListOrderDescending" + }, + { + "@id": "schema:healthPlanPharmacyCategory", + "@type": "rdf:Property", + "rdfs:comment": "The category or type of pharmacy associated with this cost sharing.", + "rdfs:label": "healthPlanPharmacyCategory", + "schema:domainIncludes": { + "@id": "schema:HealthPlanCostSharingSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:WearableSizeGroupMisses", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Misses\" (also known as \"Missy\") for wearables.", + "rdfs:label": "WearableSizeGroupMisses", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:Store", + "@type": "rdfs:Class", + "rdfs:comment": "A retail good store.", + "rdfs:label": "Store", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:Enumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Lists or enumerations—for example, a list of cuisines or music genres, etc.", + "rdfs:label": "Enumeration", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:LaserDiscFormat", + "@type": "schema:MusicReleaseFormatType", + "rdfs:comment": "LaserDiscFormat.", + "rdfs:label": "LaserDiscFormat", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:Nonprofit501c14", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.", + "rdfs:label": "Nonprofit501c14", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:Notary", + "@type": "rdfs:Class", + "rdfs:comment": "A notary.", + "rdfs:label": "Notary", + "rdfs:subClassOf": { + "@id": "schema:LegalService" + } + }, + { + "@id": "schema:artform", + "@type": "rdf:Property", + "rdfs:comment": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.", + "rdfs:label": "artform", + "schema:domainIncludes": { + "@id": "schema:VisualArtwork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:DefinedTermSet", + "@type": "rdfs:Class", + "rdfs:comment": "A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.", + "rdfs:label": "DefinedTermSet", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:SeeDoctorHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation.", + "rdfs:label": "SeeDoctorHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:sugarContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of sugar.", + "rdfs:label": "sugarContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:numberOfEmployees", + "@type": "rdf:Property", + "rdfs:comment": "The number of employees in an organization e.g. business.", + "rdfs:label": "numberOfEmployees", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:BusinessAudience" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + } + }, + { + "@id": "schema:LoseAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of being defeated in a competitive activity.", + "rdfs:label": "LoseAction", + "rdfs:subClassOf": { + "@id": "schema:AchieveAction" + } + }, + { + "@id": "schema:OrderAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent orders an object/product/service to be delivered/sent.", + "rdfs:label": "OrderAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:WearableMeasurementCollar", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the collar, for example of a shirt", + "rdfs:label": "WearableMeasurementCollar", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:character", + "@type": "rdf:Property", + "rdfs:comment": "Fictional person connected with a creative work.", + "rdfs:label": "character", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:utterances", + "@type": "rdf:Property", + "rdfs:comment": "Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].", + "rdfs:label": "utterances", + "schema:domainIncludes": { + "@id": "schema:HyperTocEntry" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2766" + } + }, + { + "@id": "schema:ComicIssue", + "@type": "rdfs:Class", + "rdfs:comment": "Individual comic issues are serially published as\n \tpart of a larger series. For the sake of consistency, even one-shot issues\n \tbelong to a series comprised of a single issue. All comic issues can be\n \tuniquely identified by: the combination of the name and volume number of the\n \tseries to which the issue belongs; the issue number; and the variant\n \tdescription of the issue (if any).", + "rdfs:label": "ComicIssue", + "rdfs:subClassOf": { + "@id": "schema:PublicationIssue" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:broadcastTimezone", + "@type": "rdf:Property", + "rdfs:comment": "The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts", + "rdfs:label": "broadcastTimezone", + "schema:domainIncludes": { + "@id": "schema:BroadcastService" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:CommunicateAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.", + "rdfs:label": "CommunicateAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:LegalService", + "@type": "rdfs:Class", + "rdfs:comment": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).", + "rdfs:label": "LegalService", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:Emergency", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.", + "rdfs:label": "Emergency", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:seller", + "@type": "rdf:Property", + "rdfs:comment": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.", + "rdfs:label": "seller", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Flight" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:BuyAction" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Order" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:ArchiveOrganization", + "@type": "rdfs:Class", + "rdfs:comment": { + "@language": "en", + "@value": "An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public." + }, + "rdfs:label": { + "@language": "en", + "@value": "ArchiveOrganization" + }, + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1758" + } + }, + { + "@id": "schema:coverageStartTime", + "@type": "rdf:Property", + "rdfs:comment": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.", + "rdfs:label": "coverageStartTime", + "schema:domainIncludes": { + "@id": "schema:LiveBlogPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:BodyMeasurementHeight", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Body height (measured between crown of head and soles of feet). Used, for example, to fit jackets.", + "rdfs:label": "BodyMeasurementHeight", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:labelDetails", + "@type": "rdf:Property", + "rdfs:comment": "Link to the drug's label details.", + "rdfs:label": "labelDetails", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:carbohydrateContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of carbohydrates.", + "rdfs:label": "carbohydrateContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:currentExchangeRate", + "@type": "rdf:Property", + "rdfs:comment": "The current price of a currency.", + "rdfs:label": "currentExchangeRate", + "schema:domainIncludes": { + "@id": "schema:ExchangeRateSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:UnitPriceSpecification" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:funder", + "@type": "rdf:Property", + "rdfs:comment": "A person or organization that supports (sponsors) something through some kind of financial contribution.", + "rdfs:label": "funder", + "rdfs:subPropertyOf": { + "@id": "schema:sponsor" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Grant" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:MonetaryGrant" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:recordedAs", + "@type": "rdf:Property", + "rdfs:comment": "An audio recording of the work.", + "rdfs:label": "recordedAs", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:inverseOf": { + "@id": "schema:recordingOf" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicRecording" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:QuoteAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.", + "rdfs:label": "QuoteAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:customer", + "@type": "rdf:Property", + "rdfs:comment": "Party placing the order or paying the invoice.", + "rdfs:label": "customer", + "schema:domainIncludes": [ + { + "@id": "schema:Invoice" + }, + { + "@id": "schema:Order" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:childTaxon", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Taxon" + }, + "rdfs:comment": "Closest child taxa of the taxon in question.", + "rdfs:label": "childTaxon", + "schema:domainIncludes": { + "@id": "schema:Taxon" + }, + "schema:inverseOf": { + "@id": "schema:parentTaxon" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Taxon" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:exampleOfWork", + "@type": "rdf:Property", + "rdfs:comment": "A creative work that this work is an example/instance/realization/derivation of.", + "rdfs:label": "exampleOfWork", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:workExample" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:maximumIntake", + "@type": "rdf:Property", + "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.", + "rdfs:label": "maximumIntake", + "schema:domainIncludes": [ + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DrugStrength" + }, + { + "@id": "schema:DietarySupplement" + }, + { + "@id": "schema:Substance" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MaximumDoseSchedule" + } + }, + { + "@id": "schema:cssSelector", + "@type": "rdf:Property", + "rdfs:comment": "A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".", + "rdfs:label": "cssSelector", + "schema:domainIncludes": [ + { + "@id": "schema:SpeakableSpecification" + }, + { + "@id": "schema:WebPageElement" + } + ], + "schema:rangeIncludes": { + "@id": "schema:CssSelectorType" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1389" + } + }, + { + "@id": "schema:NotYetRecruiting", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Not yet recruiting.", + "rdfs:label": "NotYetRecruiting", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:numberOfEpisodes", + "@type": "rdf:Property", + "rdfs:comment": "The number of episodes in this season or series.", + "rdfs:label": "numberOfEpisodes", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:RadioSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:numberOfAirbags", + "@type": "rdf:Property", + "rdfs:comment": "The number or type of airbags in the vehicle.", + "rdfs:label": "numberOfAirbags", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:AMRadioChannel", + "@type": "rdfs:Class", + "rdfs:comment": "A radio channel that uses AM.", + "rdfs:label": "AMRadioChannel", + "rdfs:subClassOf": { + "@id": "schema:RadioChannel" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1004" + } + }, + { + "@id": "schema:InsuranceAgency", + "@type": "rdfs:Class", + "rdfs:comment": "An Insurance agency.", + "rdfs:label": "InsuranceAgency", + "rdfs:subClassOf": { + "@id": "schema:FinancialService" + } + }, + { + "@id": "schema:countriesNotSupported", + "@type": "rdf:Property", + "rdfs:comment": "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.", + "rdfs:label": "countriesNotSupported", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MobileApplication", + "@type": "rdfs:Class", + "rdfs:comment": "A software application designed specifically to work well on a mobile device such as a telephone.", + "rdfs:label": "MobileApplication", + "rdfs:subClassOf": { + "@id": "schema:SoftwareApplication" + } + }, + { + "@id": "schema:publishedBy", + "@type": "rdf:Property", + "rdfs:comment": "An agent associated with the publication event.", + "rdfs:label": "publishedBy", + "schema:domainIncludes": { + "@id": "schema:PublicationEvent" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:phoneticText", + "@type": "rdf:Property", + "rdfs:comment": "Representation of a text [[textValue]] using the specified [[speechToTextMarkup]]. For example the city name of Houston in IPA: /ˈhjuːstən/.", + "rdfs:label": "phoneticText", + "schema:domainIncludes": { + "@id": "schema:PronounceableText" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2108" + } + }, + { + "@id": "schema:measuredProperty", + "@type": "rdf:Property", + "rdfs:comment": "The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems e.g. W3C RDF Data Cube, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties).", + "rdfs:label": "measuredProperty", + "schema:domainIncludes": { + "@id": "schema:Observation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Property" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:SelfStorage", + "@type": "rdfs:Class", + "rdfs:comment": "A self-storage facility.", + "rdfs:label": "SelfStorage", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:City", + "@type": "rdfs:Class", + "rdfs:comment": "A city or town.", + "rdfs:label": "City", + "rdfs:subClassOf": { + "@id": "schema:AdministrativeArea" + } + }, + { + "@id": "schema:OriginalShippingFees", + "@type": "schema:ReturnFeesEnumeration", + "rdfs:comment": "Specifies that the customer must pay the original shipping costs when returning a product.", + "rdfs:label": "OriginalShippingFees", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:CovidTestingFacility", + "@type": "rdfs:Class", + "rdfs:comment": "A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus\n disease is available. If the facility is being made available from an established [[Pharmacy]], [[Hotel]], or other\n non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information\n about that place e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.\n ", + "rdfs:label": "CovidTestingFacility", + "rdfs:subClassOf": { + "@id": "schema:MedicalClinic" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:numberOfAccommodationUnits", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the total (available plus unavailable) number of accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAvailableAccommodationUnits]].", + "rdfs:label": "numberOfAccommodationUnits", + "schema:domainIncludes": [ + { + "@id": "schema:FloorPlan" + }, + { + "@id": "schema:ApartmentComplex" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:healthPlanDrugOption", + "@type": "rdf:Property", + "rdfs:comment": "TODO.", + "rdfs:label": "healthPlanDrugOption", + "schema:domainIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:carrierRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).", + "rdfs:label": "carrierRequirements", + "schema:domainIncludes": { + "@id": "schema:MobileApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:makesOffer", + "@type": "rdf:Property", + "rdfs:comment": "A pointer to products or services offered by the organization or person.", + "rdfs:label": "makesOffer", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:inverseOf": { + "@id": "schema:offeredBy" + }, + "schema:rangeIncludes": { + "@id": "schema:Offer" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:jurisdiction", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.", + "rdfs:label": "jurisdiction", + "schema:domainIncludes": [ + { + "@id": "schema:GovernmentService" + }, + { + "@id": "schema:Legislation" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:AdministrativeArea" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:children", + "@type": "rdf:Property", + "rdfs:comment": "A child of the person.", + "rdfs:label": "children", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:usageInfo", + "@type": "rdf:Property", + "rdfs:comment": "The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.\n\nThis property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.", + "rdfs:label": "usageInfo", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2454" + } + }, + { + "@id": "schema:exchangeRateSpread", + "@type": "rdf:Property", + "rdfs:comment": "The difference between the price at which a broker or other intermediary buys and sells foreign currency.", + "rdfs:label": "exchangeRateSpread", + "schema:domainIncludes": { + "@id": "schema:ExchangeRateSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:MonetaryAmount" + } + ], + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:provider", + "@type": "rdf:Property", + "rdfs:comment": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.", + "rdfs:label": "provider", + "schema:domainIncludes": [ + { + "@id": "schema:Action" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:EducationalOccupationalProgram" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:ParcelDelivery" + }, + { + "@id": "schema:Invoice" + }, + { + "@id": "schema:Reservation" + }, + { + "@id": "schema:Trip" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2927" + } + ] + }, + { + "@id": "schema:legalName", + "@type": "rdf:Property", + "rdfs:comment": "The official name of the organization, e.g. the registered company name.", + "rdfs:label": "legalName", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:minimumPaymentDue", + "@type": "rdf:Property", + "rdfs:comment": "The minimum payment required at this time.", + "rdfs:label": "minimumPaymentDue", + "schema:domainIncludes": { + "@id": "schema:Invoice" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:PriceSpecification" + } + ] + }, + { + "@id": "schema:sdPublisher", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The\n[[sdPublisher]] property helps make such practices more explicit.", + "rdfs:label": "sdPublisher", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1886" + } + }, + { + "@id": "schema:seriousAdverseOutcome", + "@type": "rdf:Property", + "rdfs:comment": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.", + "rdfs:label": "seriousAdverseOutcome", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalDevice" + }, + { + "@id": "schema:MedicalTherapy" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEntity" + } + }, + { + "@id": "schema:comment", + "@type": "rdf:Property", + "rdfs:comment": "Comments, typically from users.", + "rdfs:label": "comment", + "schema:domainIncludes": [ + { + "@id": "schema:RsvpAction" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Comment" + } + }, + { + "@id": "schema:MRI", + "@type": "schema:MedicalImagingTechnique", + "rdfs:comment": "Magnetic resonance imaging.", + "rdfs:label": "MRI", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:userInteractionCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.", + "rdfs:label": "userInteractionCount", + "schema:domainIncludes": { + "@id": "schema:InteractionCounter" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:antagonist", + "@type": "rdf:Property", + "rdfs:comment": "The muscle whose action counteracts the specified muscle.", + "rdfs:label": "antagonist", + "schema:domainIncludes": { + "@id": "schema:Muscle" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Muscle" + } + }, + { + "@id": "schema:MusicVideoObject", + "@type": "rdfs:Class", + "rdfs:comment": "A music video file.", + "rdfs:label": "MusicVideoObject", + "rdfs:subClassOf": { + "@id": "schema:MediaObject" + } + }, + { + "@id": "schema:Blog", + "@type": "rdfs:Class", + "rdfs:comment": "A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a \"weblog\". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloqually referred to by the same term.", + "rdfs:label": "Blog", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:activeIngredient", + "@type": "rdf:Property", + "rdfs:comment": "An active ingredient, typically chemical compounds and/or biologic substances.", + "rdfs:label": "activeIngredient", + "schema:domainIncludes": [ + { + "@id": "schema:DrugStrength" + }, + { + "@id": "schema:Substance" + }, + { + "@id": "schema:DietarySupplement" + }, + { + "@id": "schema:Drug" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:firstPerformance", + "@type": "rdf:Property", + "rdfs:comment": "The date and place the work was first performed.", + "rdfs:label": "firstPerformance", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:Event" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:MedicalImagingTechnique", + "@type": "rdfs:Class", + "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.", + "rdfs:label": "MedicalImagingTechnique", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:countryOfAssembly", + "@type": "rdf:Property", + "rdfs:comment": "The place where the product was assembled.", + "rdfs:label": "countryOfAssembly", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/991" + } + }, + { + "@id": "schema:artworkSurface", + "@type": "rdf:Property", + "rdfs:comment": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.", + "rdfs:label": "artworkSurface", + "schema:domainIncludes": { + "@id": "schema:VisualArtwork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:geoTouches", + "@type": "rdf:Property", + "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) )", + "rdfs:label": "geoTouches", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ] + }, + { + "@id": "schema:CorrectionComment", + "@type": "rdfs:Class", + "rdfs:comment": "A [[comment]] that corrects [[CreativeWork]].", + "rdfs:label": "CorrectionComment", + "rdfs:subClassOf": { + "@id": "schema:Comment" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1950" + } + }, + { + "@id": "schema:fuelType", + "@type": "rdf:Property", + "rdfs:comment": "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.", + "rdfs:label": "fuelType", + "schema:domainIncludes": [ + { + "@id": "schema:EngineSpecification" + }, + { + "@id": "schema:Vehicle" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:QualitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:postOp", + "@type": "rdf:Property", + "rdfs:comment": "A description of the postoperative procedures, care, and/or followups for this device.", + "rdfs:label": "postOp", + "schema:domainIncludes": { + "@id": "schema:MedicalDevice" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:termsOfService", + "@type": "rdf:Property", + "rdfs:comment": "Human-readable terms of service documentation.", + "rdfs:label": "termsOfService", + "schema:domainIncludes": { + "@id": "schema:Service" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1423" + } + }, + { + "@id": "schema:significance", + "@type": "rdf:Property", + "rdfs:comment": "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.", + "rdfs:label": "significance", + "schema:domainIncludes": { + "@id": "schema:SuperficialAnatomy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:seasons", + "@type": "rdf:Property", + "rdfs:comment": "A season in a media series.", + "rdfs:label": "seasons", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:TVSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:CreativeWorkSeason" + }, + "schema:supersededBy": { + "@id": "schema:season" + } + }, + { + "@id": "schema:reviewAspect", + "@type": "rdf:Property", + "rdfs:comment": "This Review or Rating is relevant to this part or facet of the itemReviewed.", + "rdfs:label": "reviewAspect", + "schema:domainIncludes": [ + { + "@id": "schema:Review" + }, + { + "@id": "schema:Guide" + }, + { + "@id": "schema:Rating" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1689" + } + }, + { + "@id": "schema:RentAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.", + "rdfs:label": "RentAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:actionPlatform", + "@type": "rdf:Property", + "rdfs:comment": "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.", + "rdfs:label": "actionPlatform", + "schema:domainIncludes": { + "@id": "schema:EntryPoint" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:DigitalPlatformEnumeration" + } + ] + }, + { + "@id": "schema:AssignAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of allocating an action/event/task to some destination (someone or something).", + "rdfs:label": "AssignAction", + "rdfs:subClassOf": { + "@id": "schema:AllocateAction" + } + }, + { + "@id": "schema:accessibilityFeature", + "@type": "rdf:Property", + "rdfs:comment": "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).", + "rdfs:label": "accessibilityFeature", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ineligibleRegion", + "@type": "rdf:Property", + "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.\\n\\nSee also [[eligibleRegion]].\n ", + "rdfs:label": "ineligibleRegion", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:ActionAccessSpecification" + }, + { + "@id": "schema:DeliveryChargeSpecification" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:GeoShape" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2242" + } + }, + { + "@id": "schema:businessDays", + "@type": "rdf:Property", + "rdfs:comment": "Days of the week when the merchant typically operates, indicated via opening hours markup.", + "rdfs:label": "businessDays", + "schema:domainIncludes": { + "@id": "schema:ShippingDeliveryTime" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:OpeningHoursSpecification" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:cargoVolume", + "@type": "rdf:Property", + "rdfs:comment": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\\n\\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\\n\\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "cargoVolume", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:legislationIdentifier", + "@type": "rdf:Property", + "rdfs:comment": "An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex.", + "rdfs:label": "legislationIdentifier", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:closeMatch": { + "@id": "http://data.europa.eu/eli/ontology#id_local" + } + }, + { + "@id": "schema:Mass", + "@type": "rdfs:Class", + "rdfs:comment": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.", + "rdfs:label": "Mass", + "rdfs:subClassOf": { + "@id": "schema:Quantity" + } + }, + { + "@id": "schema:trainingSalary", + "@type": "rdf:Property", + "rdfs:comment": "The estimated salary earned while in the program.", + "rdfs:label": "trainingSalary", + "schema:domainIncludes": [ + { + "@id": "schema:EducationalOccupationalProgram" + }, + { + "@id": "schema:WorkBasedProgram" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmountDistribution" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2460" + } + ] + }, + { + "@id": "schema:PhysicalExam", + "@type": "rdfs:Class", + "rdfs:comment": "A type of physical examination of a patient performed by a physician. ", + "rdfs:label": "PhysicalExam", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalEnumeration" + }, + { + "@id": "schema:MedicalProcedure" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:geoCoveredBy", + "@type": "rdf:Property", + "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", + "rdfs:label": "geoCoveredBy", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ] + }, + { + "@id": "schema:arrivalAirport", + "@type": "rdf:Property", + "rdfs:comment": "The airport where the flight terminates.", + "rdfs:label": "arrivalAirport", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Airport" + } + }, + { + "@id": "schema:transFatContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of trans fat.", + "rdfs:label": "transFatContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:publication", + "@type": "rdf:Property", + "rdfs:comment": "A publication event associated with the item.", + "rdfs:label": "publication", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:PublicationEvent" + } + }, + { + "@id": "schema:OrganizeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of manipulating/administering/supervising/controlling one or more objects.", + "rdfs:label": "OrganizeAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:translationOfWork", + "@type": "rdf:Property", + "rdfs:comment": "The work that this work has been translated from. e.g. 物种起源 is a translationOf “On the Origin of Species”", + "rdfs:label": "translationOfWork", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:workTranslation" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:recipeCuisine", + "@type": "rdf:Property", + "rdfs:comment": "The cuisine of the recipe (for example, French or Ethiopian).", + "rdfs:label": "recipeCuisine", + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:paymentDueDate", + "@type": "rdf:Property", + "rdfs:comment": "The date that payment is due.", + "rdfs:label": "paymentDueDate", + "schema:domainIncludes": [ + { + "@id": "schema:Invoice" + }, + { + "@id": "schema:Order" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ] + }, + { + "@id": "schema:FMRadioChannel", + "@type": "rdfs:Class", + "rdfs:comment": "A radio channel that uses FM.", + "rdfs:label": "FMRadioChannel", + "rdfs:subClassOf": { + "@id": "schema:RadioChannel" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1004" + } + }, + { + "@id": "schema:inChIKey", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/MolecularEntity" + }, + "rdfs:comment": "InChIKey is a hashed version of the full InChI (using the SHA-256 algorithm).", + "rdfs:label": "inChIKey", + "rdfs:subPropertyOf": { + "@id": "schema:hasRepresentation" + }, + "schema:domainIncludes": { + "@id": "schema:MolecularEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:LaboratoryScience", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research.", + "rdfs:label": "LaboratoryScience", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:reviewCount", + "@type": "rdf:Property", + "rdfs:comment": "The count of total number of reviews.", + "rdfs:label": "reviewCount", + "schema:domainIncludes": { + "@id": "schema:AggregateRating" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:CreditCard", + "@type": "rdfs:Class", + "rdfs:comment": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ", + "rdfs:label": "CreditCard", + "rdfs:subClassOf": [ + { + "@id": "schema:PaymentCard" + }, + { + "@id": "schema:LoanOrCredit" + } + ], + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:LegalValueLevel", + "@type": "rdfs:Class", + "rdfs:comment": "A list of possible levels for the legal validity of a legislation.", + "rdfs:label": "LegalValueLevel", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:closeMatch": { + "@id": "http://data.europa.eu/eli/ontology#LegalValue" + } + }, + { + "@id": "schema:free", + "@type": "rdf:Property", + "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.", + "rdfs:label": "free", + "schema:domainIncludes": { + "@id": "schema:PublicationEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:supersededBy": { + "@id": "schema:isAccessibleForFree" + } + }, + { + "@id": "schema:instructor", + "@type": "rdf:Property", + "rdfs:comment": "A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].", + "rdfs:label": "instructor", + "schema:domainIncludes": { + "@id": "schema:CourseInstance" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:jobStartDate", + "@type": "rdf:Property", + "rdfs:comment": "The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible.", + "rdfs:label": "jobStartDate", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2244" + } + }, + { + "@id": "schema:providerMobility", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').", + "rdfs:label": "providerMobility", + "schema:domainIncludes": { + "@id": "schema:Service" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:articleSection", + "@type": "rdf:Property", + "rdfs:comment": "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.", + "rdfs:label": "articleSection", + "schema:domainIncludes": { + "@id": "schema:Article" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:parentItem", + "@type": "rdf:Property", + "rdfs:comment": "The parent of a question, answer or item in general.", + "rdfs:label": "parentItem", + "schema:domainIncludes": { + "@id": "schema:Comment" + }, + "schema:rangeIncludes": { + "@id": "schema:Comment" + } + }, + { + "@id": "schema:study", + "@type": "rdf:Property", + "rdfs:comment": "A medical study or trial related to this entity.", + "rdfs:label": "study", + "schema:domainIncludes": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalStudy" + } + }, + { + "@id": "schema:repeatFrequency", + "@type": "rdf:Property", + "rdfs:comment": "Defines the frequency at which [[Event]]s will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.", + "rdfs:label": "repeatFrequency", + "rdfs:subPropertyOf": { + "@id": "schema:frequency" + }, + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Duration" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:BuddhistTemple", + "@type": "rdfs:Class", + "rdfs:comment": "A Buddhist temple.", + "rdfs:label": "BuddhistTemple", + "rdfs:subClassOf": { + "@id": "schema:PlaceOfWorship" + } + }, + { + "@id": "schema:GeoShape", + "@type": "rdfs:Class", + "rdfs:comment": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.", + "rdfs:label": "GeoShape", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + }, + { + "@id": "schema:cvdCollectionDate", + "@type": "rdf:Property", + "rdfs:comment": "collectiondate - Date for which patient counts are reported.", + "rdfs:label": "cvdCollectionDate", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:leaseLength", + "@type": "rdf:Property", + "rdfs:comment": "Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.", + "rdfs:label": "leaseLength", + "schema:domainIncludes": [ + { + "@id": "schema:RealEstateListing" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Accommodation" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Duration" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:result", + "@type": "rdf:Property", + "rdfs:comment": "The result produced in the action. e.g. John wrote *a book*.", + "rdfs:label": "result", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:broker", + "@type": "rdf:Property", + "rdfs:comment": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.", + "rdfs:label": "broker", + "schema:domainIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:Order" + }, + { + "@id": "schema:Reservation" + }, + { + "@id": "schema:Invoice" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:House", + "@type": "rdfs:Class", + "rdfs:comment": "A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House).", + "rdfs:label": "House", + "rdfs:subClassOf": { + "@id": "schema:Accommodation" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:discountCode", + "@type": "rdf:Property", + "rdfs:comment": "Code used to redeem a discount.", + "rdfs:label": "discountCode", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ConsumeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of ingesting information/resources/food.", + "rdfs:label": "ConsumeAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:PawnShop", + "@type": "rdfs:Class", + "rdfs:comment": "A shop that will buy, or lend money against the security of, personal possessions.", + "rdfs:label": "PawnShop", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:correctionsPolicy", + "@type": "rdf:Property", + "rdfs:comment": "For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.", + "rdfs:label": "correctionsPolicy", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": [ + { + "@id": "schema:NewsMediaOrganization" + }, + { + "@id": "schema:Organization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:TreatmentsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Treatments or related therapies for a Topic.", + "rdfs:label": "TreatmentsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:monthlyMinimumRepaymentAmount", + "@type": "rdf:Property", + "rdfs:comment": "The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.", + "rdfs:label": "monthlyMinimumRepaymentAmount", + "schema:domainIncludes": { + "@id": "schema:PaymentCard" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:WPHeader", + "@type": "rdfs:Class", + "rdfs:comment": "The header section of the page.", + "rdfs:label": "WPHeader", + "rdfs:subClassOf": { + "@id": "schema:WebPageElement" + } + }, + { + "@id": "schema:TrainReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].", + "rdfs:label": "TrainReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:HowToSection", + "@type": "rdfs:Class", + "rdfs:comment": "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).", + "rdfs:label": "HowToSection", + "rdfs:subClassOf": [ + { + "@id": "schema:ListItem" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:ItemList" + } + ] + }, + { + "@id": "schema:HowOrWhereHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Information about how or where to find a topic. Also may contain location data that can be used for where to look for help if the topic is observed.", + "rdfs:label": "HowOrWhereHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:EvidenceLevelC", + "@type": "schema:MedicalEvidenceLevel", + "rdfs:comment": "Only consensus opinion of experts, case studies, or standard-of-care.", + "rdfs:label": "EvidenceLevelC", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:APIReference", + "@type": "rdfs:Class", + "rdfs:comment": "Reference documentation for application programming interfaces (APIs).", + "rdfs:label": "APIReference", + "rdfs:subClassOf": { + "@id": "schema:TechArticle" + } + }, + { + "@id": "schema:name", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "dcterms:title" + }, + "rdfs:comment": "The name of the item.", + "rdfs:label": "name", + "rdfs:subPropertyOf": { + "@id": "rdfs:label" + }, + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:affectedBy", + "@type": "rdf:Property", + "rdfs:comment": "Drugs that affect the test's results.", + "rdfs:label": "affectedBy", + "schema:domainIncludes": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Drug" + } + }, + { + "@id": "schema:OnlineStore", + "@type": "rdfs:Class", + "rdfs:comment": "An eCommerce site.", + "rdfs:label": "OnlineStore", + "rdfs:subClassOf": { + "@id": "schema:OnlineBusiness" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3028" + } + }, + { + "@id": "schema:VideoGallery", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Video gallery page.", + "rdfs:label": "VideoGallery", + "rdfs:subClassOf": { + "@id": "schema:MediaGallery" + } + }, + { + "@id": "schema:relatedDrug", + "@type": "rdf:Property", + "rdfs:comment": "Any other drug related to this one, for example commonly-prescribed alternatives.", + "rdfs:label": "relatedDrug", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Drug" + } + }, + { + "@id": "schema:Motorcycle", + "@type": "rdfs:Class", + "rdfs:comment": "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.", + "rdfs:label": "Motorcycle", + "rdfs:subClassOf": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:handlingTime", + "@type": "rdf:Property", + "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as \"d\"), i.e. only counting days when the business normally operates.", + "rdfs:label": "handlingTime", + "schema:domainIncludes": { + "@id": "schema:ShippingDeliveryTime" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:SoftwareSourceCode", + "@type": "rdfs:Class", + "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.", + "rdfs:label": "SoftwareSourceCode", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:AnalysisNewsArticle", + "@type": "rdfs:Class", + "rdfs:comment": "An AnalysisNewsArticle is a [[NewsArticle]] that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.", + "rdfs:label": "AnalysisNewsArticle", + "rdfs:subClassOf": { + "@id": "schema:NewsArticle" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:suitableForDiet", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.", + "rdfs:label": "suitableForDiet", + "schema:domainIncludes": [ + { + "@id": "schema:MenuItem" + }, + { + "@id": "schema:Recipe" + } + ], + "schema:rangeIncludes": { + "@id": "schema:RestrictedDiet" + } + }, + { + "@id": "schema:administrationRoute", + "@type": "rdf:Property", + "rdfs:comment": "A route by which this drug may be administered, e.g. 'oral'.", + "rdfs:label": "administrationRoute", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:isPartOfBioChemEntity", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org" + }, + "rdfs:comment": "Indicates a BioChemEntity that is (in some sense) a part of this BioChemEntity. ", + "rdfs:label": "isPartOfBioChemEntity", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:inverseOf": { + "@id": "schema:hasBioChemEntityPart" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BioChemEntity" + } + }, + { + "@id": "schema:3DModel", + "@type": "rdfs:Class", + "rdfs:comment": "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase of a single file published after Zip compression, the convention of appending '+zip' to the [[encodingFormat]] can be used. Geospatial, AR/VR, artistic/animation, gaming, engineering and scientific content can all be represented using [[3DModel]].", + "rdfs:label": "3DModel", + "rdfs:subClassOf": { + "@id": "schema:MediaObject" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2140" + } + }, + { + "@id": "schema:MultiCenterTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A trial that takes place at multiple centers.", + "rdfs:label": "MultiCenterTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:departureStation", + "@type": "rdf:Property", + "rdfs:comment": "The station from which the train departs.", + "rdfs:label": "departureStation", + "schema:domainIncludes": { + "@id": "schema:TrainTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:TrainStation" + } + }, + { + "@id": "schema:interactivityType", + "@type": "rdf:Property", + "rdfs:comment": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.", + "rdfs:label": "interactivityType", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MusicGroup", + "@type": "rdfs:Class", + "rdfs:comment": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.", + "rdfs:label": "MusicGroup", + "rdfs:subClassOf": { + "@id": "schema:PerformingGroup" + } + }, + { + "@id": "schema:Play", + "@type": "rdfs:Class", + "rdfs:comment": "A play is a form of literature, usually consisting of dialogue between characters, intended for theatrical performance rather than just reading. Note: A performance of a Play would be a [[TheaterEvent]] or [[BroadcastEvent]] - the *Play* being the [[workPerformed]].", + "rdfs:label": "Play", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1816" + } + }, + { + "@id": "schema:suggestedAge", + "@type": "rdf:Property", + "rdfs:comment": "The age or age range for the intended audience or person, for example 3-12 months for infants, 1-5 years for toddlers.", + "rdfs:label": "suggestedAge", + "schema:domainIncludes": [ + { + "@id": "schema:SizeSpecification" + }, + { + "@id": "schema:PeopleAudience" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:performer", + "@type": "rdf:Property", + "rdfs:comment": "A performer at the event—for example, a presenter, musician, musical group or actor.", + "rdfs:label": "performer", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:Guide", + "@type": "rdfs:Class", + "rdfs:comment": "[[Guide]] is a page or article that recommend specific products or services, or aspects of a thing for a user to consider. A [[Guide]] may represent a Buying Guide and detail aspects of products or services for a user to consider. A [[Guide]] may represent a Product Guide and recommend specific products or services. A [[Guide]] may represent a Ranked List and recommend specific products or services with ranking.", + "rdfs:label": "Guide", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2405" + } + }, + { + "@id": "schema:Geriatric", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.", + "rdfs:label": "Geriatric", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:broadcastFrequency", + "@type": "rdf:Property", + "rdfs:comment": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\".", + "rdfs:label": "broadcastFrequency", + "schema:domainIncludes": [ + { + "@id": "schema:BroadcastService" + }, + { + "@id": "schema:BroadcastChannel" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:BroadcastFrequencySpecification" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1004" + } + }, + { + "@id": "schema:EducationEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Education event.", + "rdfs:label": "EducationEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:includesAttraction", + "@type": "rdf:Property", + "rdfs:comment": "Attraction located at destination.", + "rdfs:label": "includesAttraction", + "schema:domainIncludes": { + "@id": "schema:TouristDestination" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:TouristAttraction" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1810" + } + ] + }, + { + "@id": "schema:color", + "@type": "rdf:Property", + "rdfs:comment": "The color of the product.", + "rdfs:label": "color", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:drugUnit", + "@type": "rdf:Property", + "rdfs:comment": "The unit in which the drug is measured, e.g. '5 mg tablet'.", + "rdfs:label": "drugUnit", + "schema:domainIncludes": [ + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DrugCost" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:valueRequired", + "@type": "rdf:Property", + "rdfs:comment": "Whether the property must be filled in to complete the action. Default is false.", + "rdfs:label": "valueRequired", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:cutoffTime", + "@type": "rdf:Property", + "rdfs:comment": "Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the [[ShippingRateSettings]] publication pattern. The time is indicated using the ISO-8601 Time format, e.g. \"23:30:00-05:00\" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).", + "rdfs:label": "cutoffTime", + "schema:domainIncludes": { + "@id": "schema:ShippingDeliveryTime" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Time" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:Zoo", + "@type": "rdfs:Class", + "rdfs:comment": "A zoo.", + "rdfs:label": "Zoo", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:competitor", + "@type": "rdf:Property", + "rdfs:comment": "A competitor in a sports event.", + "rdfs:label": "competitor", + "schema:domainIncludes": { + "@id": "schema:SportsEvent" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:SportsTeam" + } + ] + }, + { + "@id": "schema:ArchiveComponent", + "@type": "rdfs:Class", + "rdfs:comment": { + "@language": "en", + "@value": "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections." + }, + "rdfs:label": { + "@language": "en", + "@value": "ArchiveComponent" + }, + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1758" + } + }, + { + "@id": "schema:TVSeason", + "@type": "rdfs:Class", + "rdfs:comment": "Season dedicated to TV broadcast and associated online delivery.", + "rdfs:label": "TVSeason", + "rdfs:subClassOf": [ + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:trackingUrl", + "@type": "rdf:Property", + "rdfs:comment": "Tracking url for the parcel delivery.", + "rdfs:label": "trackingUrl", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:Anesthesia", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to study of anesthetics and their application.", + "rdfs:label": "Anesthesia", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:educationalCredentialAwarded", + "@type": "rdf:Property", + "rdfs:comment": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.", + "rdfs:label": "educationalCredentialAwarded", + "schema:domainIncludes": [ + { + "@id": "schema:Course" + }, + { + "@id": "schema:EducationalOccupationalProgram" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:EducationalOccupationalCredential" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:artEdition", + "@type": "rdf:Property", + "rdfs:comment": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").", + "rdfs:label": "artEdition", + "schema:domainIncludes": { + "@id": "schema:VisualArtwork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:ShoppingCenter", + "@type": "rdfs:Class", + "rdfs:comment": "A shopping center or mall.", + "rdfs:label": "ShoppingCenter", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:RefurbishedCondition", + "@type": "schema:OfferItemCondition", + "rdfs:comment": "Indicates that the item is refurbished.", + "rdfs:label": "RefurbishedCondition" + }, + { + "@id": "schema:DateTime", + "@type": [ + "schema:DataType", + "rdfs:Class" + ], + "rdfs:comment": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).", + "rdfs:label": "DateTime" + }, + { + "@id": "schema:starRating", + "@type": "rdf:Property", + "rdfs:comment": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", + "rdfs:label": "starRating", + "schema:domainIncludes": [ + { + "@id": "schema:FoodEstablishment" + }, + { + "@id": "schema:LodgingBusiness" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Rating" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:worksFor", + "@type": "rdf:Property", + "rdfs:comment": "Organizations that the person works for.", + "rdfs:label": "worksFor", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:Retail", + "@type": "schema:DrugCostCategory", + "rdfs:comment": "The drug's cost represents the retail cost of the drug.", + "rdfs:label": "Retail", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:FullRefund", + "@type": "schema:RefundTypeEnumeration", + "rdfs:comment": "Specifies that a refund can be done in the full amount the customer paid for the product", + "rdfs:label": "FullRefund", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:Flexibility", + "@type": "schema:PhysicalActivityCategory", + "rdfs:comment": "Physical activity that is engaged in to improve joint and muscle flexibility.", + "rdfs:label": "Flexibility", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:buyer", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The participant/person/organization that bought the object.", + "rdfs:label": "buyer", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:SellAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:cheatCode", + "@type": "rdf:Property", + "rdfs:comment": "Cheat codes to the game.", + "rdfs:label": "cheatCode", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:VideoGame" + } + ], + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:acquiredFrom", + "@type": "rdf:Property", + "rdfs:comment": "The organization or person from which the product was acquired.", + "rdfs:label": "acquiredFrom", + "schema:domainIncludes": { + "@id": "schema:OwnershipInfo" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:Recipe", + "@type": "rdfs:Class", + "rdfs:comment": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail.", + "rdfs:label": "Recipe", + "rdfs:subClassOf": { + "@id": "schema:HowTo" + } + }, + { + "@id": "schema:Vehicle", + "@type": "rdfs:Class", + "rdfs:comment": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.", + "rdfs:label": "Vehicle", + "rdfs:subClassOf": { + "@id": "schema:Product" + } + }, + { + "@id": "schema:yearsInOperation", + "@type": "rdf:Property", + "rdfs:comment": "The age of the business.", + "rdfs:label": "yearsInOperation", + "schema:domainIncludes": { + "@id": "schema:BusinessAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + } + }, + { + "@id": "schema:arrivalTerminal", + "@type": "rdf:Property", + "rdfs:comment": "Identifier of the flight's arrival terminal.", + "rdfs:label": "arrivalTerminal", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:WesternConventional", + "@type": "schema:MedicineSystem", + "rdfs:comment": "The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.", + "rdfs:label": "WesternConventional", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:yearBuilt", + "@type": "rdf:Property", + "rdfs:comment": "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ", + "rdfs:label": "yearBuilt", + "schema:domainIncludes": { + "@id": "schema:Accommodation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:Permit", + "@type": "rdfs:Class", + "rdfs:comment": "A permit issued by an organization, e.g. a parking pass.", + "rdfs:label": "Permit", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:dateDeleted", + "@type": "rdf:Property", + "rdfs:comment": "The datetime the item was removed from the DataFeed.", + "rdfs:label": "dateDeleted", + "schema:domainIncludes": { + "@id": "schema:DataFeedItem" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ] + }, + { + "@id": "schema:CheckInAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\\n\\nRelated actions:\\n\\n* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.", + "rdfs:label": "CheckInAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:WearableSizeGroupHusky", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Husky\" (or \"Stocky\") for wearables.", + "rdfs:label": "WearableSizeGroupHusky", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:measurementTechnique", + "@type": "rdf:Property", + "rdfs:comment": "A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),\ncorresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].\n ", + "rdfs:label": "measurementTechnique", + "schema:domainIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:DataCatalog" + }, + { + "@id": "schema:Dataset" + }, + { + "@id": "schema:DataDownload" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1425" + } + }, + { + "@id": "schema:identifyingExam", + "@type": "rdf:Property", + "rdfs:comment": "A physical examination that can identify this sign.", + "rdfs:label": "identifyingExam", + "schema:domainIncludes": { + "@id": "schema:MedicalSign" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:PhysicalExam" + } + }, + { + "@id": "schema:MedicineSystem", + "@type": "rdfs:Class", + "rdfs:comment": "Systems of medical practice.", + "rdfs:label": "MedicineSystem", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:CoOp", + "@type": "schema:GamePlayMode", + "rdfs:comment": "Play mode: CoOp. Co-operative games, where you play on the same team with friends.", + "rdfs:label": "CoOp" + }, + { + "@id": "schema:commentCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.", + "rdfs:label": "commentCount", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:inPlaylist", + "@type": "rdf:Property", + "rdfs:comment": "The playlist to which this recording belongs.", + "rdfs:label": "inPlaylist", + "schema:domainIncludes": { + "@id": "schema:MusicRecording" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicPlaylist" + } + }, + { + "@id": "schema:replacee", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The object that is being replaced.", + "rdfs:label": "replacee", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:ReplaceAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:costCurrency", + "@type": "rdf:Property", + "rdfs:comment": "The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217. ", + "rdfs:label": "costCurrency", + "schema:domainIncludes": { + "@id": "schema:DrugCost" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:requiresSubscription", + "@type": "rdf:Property", + "rdfs:comment": "Indicates if use of the media require a subscription (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had 'yes', 'no').", + "rdfs:label": "requiresSubscription", + "schema:domainIncludes": [ + { + "@id": "schema:MediaObject" + }, + { + "@id": "schema:ActionAccessSpecification" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:MediaSubscription" + }, + { + "@id": "schema:Boolean" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + }, + { + "@id": "schema:WearableSizeSystemBR", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "Brazilian size system for wearables.", + "rdfs:label": "WearableSizeSystemBR", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:inAlbum", + "@type": "rdf:Property", + "rdfs:comment": "The album to which this recording belongs.", + "rdfs:label": "inAlbum", + "schema:domainIncludes": { + "@id": "schema:MusicRecording" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicAlbum" + } + }, + { + "@id": "schema:DonateAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.", + "rdfs:label": "DonateAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:cvdNumC19HOPats", + "@type": "rdf:Property", + "rdfs:comment": "numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.", + "rdfs:label": "cvdNumC19HOPats", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:Hotel", + "@type": "rdfs:Class", + "rdfs:comment": "A hotel is an establishment that provides lodging paid on a short-term basis (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "Hotel", + "rdfs:subClassOf": { + "@id": "schema:LodgingBusiness" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:PostalCodeRangeSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "Indicates a range of postalcodes, usually defined as the set of valid codes between [[postalCodeBegin]] and [[postalCodeEnd]], inclusively.", + "rdfs:label": "PostalCodeRangeSpecification", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:actionAccessibilityRequirement", + "@type": "rdf:Property", + "rdfs:comment": "A set of requirements that a must be fulfilled in order to perform an Action. If more than one value is specied, fulfilling one set of requirements will allow the Action to be performed.", + "rdfs:label": "actionAccessibilityRequirement", + "schema:domainIncludes": { + "@id": "schema:ConsumeAction" + }, + "schema:rangeIncludes": { + "@id": "schema:ActionAccessSpecification" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + }, + { + "@id": "schema:gameItem", + "@type": "rdf:Property", + "rdfs:comment": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.", + "rdfs:label": "gameItem", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:Game" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:Endocrine", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.", + "rdfs:label": "Endocrine", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Fungus", + "@type": "schema:InfectiousAgentClass", + "rdfs:comment": "Pathogenic fungus.", + "rdfs:label": "Fungus", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ReservationConfirmed", + "@type": "schema:ReservationStatusType", + "rdfs:comment": "The status of a confirmed reservation.", + "rdfs:label": "ReservationConfirmed" + }, + { + "@id": "schema:stageAsNumber", + "@type": "rdf:Property", + "rdfs:comment": "The stage represented as a number, e.g. 3.", + "rdfs:label": "stageAsNumber", + "schema:domainIncludes": { + "@id": "schema:MedicalConditionStage" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:AchieveAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.", + "rdfs:label": "AchieveAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:accessMode", + "@type": "rdf:Property", + "rdfs:comment": "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).", + "rdfs:label": "accessMode", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1100" + } + }, + { + "@id": "schema:CafeOrCoffeeShop", + "@type": "rdfs:Class", + "rdfs:comment": "A cafe or coffee shop.", + "rdfs:label": "CafeOrCoffeeShop", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:EmployeeRole", + "@type": "rdfs:Class", + "rdfs:comment": "A subclass of OrganizationRole used to describe employee relationships.", + "rdfs:label": "EmployeeRole", + "rdfs:subClassOf": { + "@id": "schema:OrganizationRole" + } + }, + { + "@id": "schema:educationalRole", + "@type": "rdf:Property", + "rdfs:comment": "An educationalRole of an EducationalAudience.", + "rdfs:label": "educationalRole", + "schema:domainIncludes": { + "@id": "schema:EducationalAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:TouristTrip", + "@type": "rdfs:Class", + "rdfs:comment": "A tourist trip. A created itinerary of visits to one or more places of interest ([[TouristAttraction]]/[[TouristDestination]]) often linked by a similar theme, geographic area, or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below).", + "rdfs:label": "TouristTrip", + "rdfs:subClassOf": { + "@id": "schema:Trip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1810" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + } + ] + }, + { + "@id": "schema:knows", + "@type": "rdf:Property", + "rdfs:comment": "The most generic bi-directional social/work relation.", + "rdfs:label": "knows", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:potentialAction", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.", + "rdfs:label": "potentialAction", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:OverviewHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction.", + "rdfs:label": "OverviewHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:ArtGallery", + "@type": "rdfs:Class", + "rdfs:comment": "An art gallery.", + "rdfs:label": "ArtGallery", + "rdfs:subClassOf": { + "@id": "schema:EntertainmentBusiness" + } + }, + { + "@id": "schema:step", + "@type": "rdf:Property", + "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.", + "rdfs:label": "step", + "schema:domainIncludes": { + "@id": "schema:HowTo" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:HowToStep" + }, + { + "@id": "schema:HowToSection" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:OccupationalActivity", + "@type": "schema:PhysicalActivityCategory", + "rdfs:comment": "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.", + "rdfs:label": "OccupationalActivity", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:LeisureTimeActivity", + "@type": "schema:PhysicalActivityCategory", + "rdfs:comment": "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.", + "rdfs:label": "LeisureTimeActivity", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:hasBioPolymerSequence", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Gene" + }, + "rdfs:comment": "A symbolic representation of a BioChemEnity. For example, a nucleotide sequence of a Gene or an amino acid sequence of a Protein.", + "rdfs:label": "hasBioPolymerSequence", + "rdfs:subPropertyOf": { + "@id": "schema:hasRepresentation" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Gene" + }, + { + "@id": "schema:Protein" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:PathologyTest", + "@type": "rdfs:Class", + "rdfs:comment": "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.", + "rdfs:label": "PathologyTest", + "rdfs:subClassOf": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:code", + "@type": "rdf:Property", + "rdfs:comment": "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.", + "rdfs:label": "code", + "schema:domainIncludes": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalCode" + } + }, + { + "@id": "schema:foodWarning", + "@type": "rdf:Property", + "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.", + "rdfs:label": "foodWarning", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:amountOfThisGood", + "@type": "rdf:Property", + "rdfs:comment": "The quantity of the goods included in the offer.", + "rdfs:label": "amountOfThisGood", + "schema:domainIncludes": { + "@id": "schema:TypeAndQuantityNode" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:ReturnAtKiosk", + "@type": "schema:ReturnMethodEnumeration", + "rdfs:comment": "Specifies that product returns must be made at a kiosk.", + "rdfs:label": "ReturnAtKiosk", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:lowPrice", + "@type": "rdf:Property", + "rdfs:comment": "The lowest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.", + "rdfs:label": "lowPrice", + "schema:domainIncludes": { + "@id": "schema:AggregateOffer" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ] + }, + { + "@id": "schema:employmentType", + "@type": "rdf:Property", + "rdfs:comment": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).", + "rdfs:label": "employmentType", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:OrganizationRole", + "@type": "rdfs:Class", + "rdfs:comment": "A subclass of Role used to describe roles within organizations.", + "rdfs:label": "OrganizationRole", + "rdfs:subClassOf": { + "@id": "schema:Role" + } + }, + { + "@id": "schema:minValue", + "@type": "rdf:Property", + "rdfs:comment": "The lower value of some characteristic or property.", + "rdfs:label": "minValue", + "schema:domainIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:PropertyValueSpecification" + }, + { + "@id": "schema:PropertyValue" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:specialCommitments", + "@type": "rdf:Property", + "rdfs:comment": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.", + "rdfs:label": "specialCommitments", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:QualitativeValue", + "@type": "rdfs:Class", + "rdfs:comment": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.", + "rdfs:label": "QualitativeValue", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:MixtapeAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "MixtapeAlbum.", + "rdfs:label": "MixtapeAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:PeopleAudience", + "@type": "rdfs:Class", + "rdfs:comment": "A set of characteristics belonging to people, e.g. who compose an item's target audience.", + "rdfs:label": "PeopleAudience", + "rdfs:subClassOf": { + "@id": "schema:Audience" + } + }, + { + "@id": "schema:BusStop", + "@type": "rdfs:Class", + "rdfs:comment": "A bus stop.", + "rdfs:label": "BusStop", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:EntertainmentBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "A business providing entertainment.", + "rdfs:label": "EntertainmentBusiness", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:providesBroadcastService", + "@type": "rdf:Property", + "rdfs:comment": "The BroadcastService offered on this channel.", + "rdfs:label": "providesBroadcastService", + "schema:domainIncludes": { + "@id": "schema:BroadcastChannel" + }, + "schema:inverseOf": { + "@id": "schema:hasBroadcastChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:BroadcastService" + } + }, + { + "@id": "schema:BloodTest", + "@type": "rdfs:Class", + "rdfs:comment": "A medical test performed on a sample of a patient's blood.", + "rdfs:label": "BloodTest", + "rdfs:subClassOf": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ReturnMethodEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates several types of product return methods.", + "rdfs:label": "ReturnMethodEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:Suite", + "@type": "rdfs:Class", + "rdfs:comment": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "Suite", + "rdfs:subClassOf": { + "@id": "schema:Accommodation" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:GameAvailabilityEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "For a [[VideoGame]], such as used with a [[PlayGameAction]], an enumeration of the kind of game availability offered. ", + "rdfs:label": "GameAvailabilityEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3058" + } + }, + { + "@id": "schema:aggregateRating", + "@type": "rdf:Property", + "rdfs:comment": "The overall rating, based on a collection of reviews or ratings, of the item.", + "rdfs:label": "aggregateRating", + "schema:domainIncludes": [ + { + "@id": "schema:Brand" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:AggregateRating" + } + }, + { + "@id": "schema:Comment", + "@type": "rdfs:Class", + "rdfs:comment": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.", + "rdfs:label": "Comment", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:applicationContact", + "@type": "rdf:Property", + "rdfs:comment": "Contact details for further information relevant to this job posting.", + "rdfs:label": "applicationContact", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ContactPoint" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2396" + } + }, + { + "@id": "schema:billingIncrement", + "@type": "rdf:Property", + "rdfs:comment": "This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.", + "rdfs:label": "billingIncrement", + "schema:domainIncludes": { + "@id": "schema:UnitPriceSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:caption", + "@type": "rdf:Property", + "rdfs:comment": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].", + "rdfs:label": "caption", + "schema:domainIncludes": [ + { + "@id": "schema:AudioObject" + }, + { + "@id": "schema:ImageObject" + }, + { + "@id": "schema:VideoObject" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:MediaObject" + } + ] + }, + { + "@id": "schema:targetUrl", + "@type": "rdf:Property", + "rdfs:comment": "The URL of a node in an established educational framework.", + "rdfs:label": "targetUrl", + "schema:domainIncludes": { + "@id": "schema:AlignmentObject" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:OfficeEquipmentStore", + "@type": "rdfs:Class", + "rdfs:comment": "An office equipment store.", + "rdfs:label": "OfficeEquipmentStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:taxonomicRange", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org" + }, + "rdfs:comment": "The taxonomic grouping of the organism that expresses, encodes, or in someway related to the BioChemEntity.", + "rdfs:label": "taxonomicRange", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:Taxon" + } + ] + }, + { + "@id": "schema:ShareAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of distributing content to people for their amusement or edification.", + "rdfs:label": "ShareAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:CompilationAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "CompilationAlbum.", + "rdfs:label": "CompilationAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:BreadcrumbList", + "@type": "rdfs:Class", + "rdfs:comment": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ", + "rdfs:label": "BreadcrumbList", + "rdfs:subClassOf": { + "@id": "schema:ItemList" + } + }, + { + "@id": "schema:GeospatialGeometry", + "@type": "rdfs:Class", + "rdfs:comment": "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.", + "rdfs:label": "GeospatialGeometry", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1375" + } + }, + { + "@id": "schema:EffectivenessHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about the effectiveness-related aspects of a health topic.", + "rdfs:label": "EffectivenessHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2799" + } + }, + { + "@id": "schema:worstRating", + "@type": "rdf:Property", + "rdfs:comment": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.", + "rdfs:label": "worstRating", + "schema:domainIncludes": { + "@id": "schema:Rating" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ] + }, + { + "@id": "schema:openingHours", + "@type": "rdf:Property", + "rdfs:comment": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.", + "rdfs:label": "openingHours", + "schema:domainIncludes": [ + { + "@id": "schema:LocalBusiness" + }, + { + "@id": "schema:CivicStructure" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:isInvolvedInBiologicalProcess", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/BioChemEntity" + }, + "rdfs:comment": "Biological process this BioChemEntity is involved in; please use PropertyValue if you want to include any evidence.", + "rdfs:label": "isInvolvedInBiologicalProcess", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:DefinedTerm" + } + ] + }, + { + "@id": "schema:TouristDestination", + "@type": "rdfs:Class", + "rdfs:comment": "A tourist destination. In principle any [[Place]] can be a [[TouristDestination]] from a [[City]], Region or [[Country]] to an [[AmusementPark]] or [[Hotel]]. This Type can be used on its own to describe a general [[TouristDestination]], or be used as an [[additionalType]] to add tourist relevant properties to any other [[Place]]. A [[TouristDestination]] is defined as a [[Place]] that contains, or is colocated with, one or more [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below).", + "rdfs:label": "TouristDestination", + "rdfs:subClassOf": { + "@id": "schema:Place" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1810" + } + ] + }, + { + "@id": "schema:musicReleaseFormat", + "@type": "rdf:Property", + "rdfs:comment": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).", + "rdfs:label": "musicReleaseFormat", + "schema:domainIncludes": { + "@id": "schema:MusicRelease" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicReleaseFormatType" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:HealthcareConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "Item is a pharmaceutical (e.g., a prescription or OTC drug) or a restricted medical device.", + "rdfs:label": "HealthcareConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:TypesHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Categorization and other types related to a topic.", + "rdfs:label": "TypesHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:WebContent", + "@type": "rdfs:Class", + "rdfs:comment": "WebContent is a type representing all [[WebPage]], [[WebSite]] and [[WebPageElement]] content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts is not always important or obvious. The [[WebContent]] type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. (The intent is that the existing types [[WebPage]], [[WebSite]] and [[WebPageElement]] will eventually be declared as subtypes of [[WebContent]]).", + "rdfs:label": "WebContent", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2358" + } + }, + { + "@id": "schema:DJMixAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "DJMixAlbum.", + "rdfs:label": "DJMixAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:RoofingContractor", + "@type": "rdfs:Class", + "rdfs:comment": "A roofing contractor.", + "rdfs:label": "RoofingContractor", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:timeRequired", + "@type": "rdf:Property", + "rdfs:comment": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", + "rdfs:label": "timeRequired", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Duration" + } + }, + { + "@id": "schema:MobilePhoneStore", + "@type": "rdfs:Class", + "rdfs:comment": "A store that sells mobile phones and related accessories.", + "rdfs:label": "MobilePhoneStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:typicalAgeRange", + "@type": "rdf:Property", + "rdfs:comment": "The typical expected age range, e.g. '7-9', '11-'.", + "rdfs:label": "typicalAgeRange", + "schema:domainIncludes": [ + { + "@id": "schema:Event" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:dropoffLocation", + "@type": "rdf:Property", + "rdfs:comment": "Where a rental car can be dropped off.", + "rdfs:label": "dropoffLocation", + "schema:domainIncludes": { + "@id": "schema:RentalCarReservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:interactionStatistic", + "@type": "rdf:Property", + "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.", + "rdfs:label": "interactionStatistic", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": { + "@id": "schema:InteractionCounter" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2421" + } + }, + { + "@id": "schema:CrossSectional", + "@type": "schema:MedicalObservationalStudyDesign", + "rdfs:comment": "Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.", + "rdfs:label": "CrossSectional", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Clinician", + "@type": "schema:MedicalAudienceType", + "rdfs:comment": "Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.", + "rdfs:label": "Clinician", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:WarrantyPromise", + "@type": "rdfs:Class", + "rdfs:comment": "A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.", + "rdfs:label": "WarrantyPromise", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:location", + "@type": "rdf:Property", + "rdfs:comment": "The location of, for example, where an event is happening, where an organization is located, or where an action takes place.", + "rdfs:label": "location", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Action" + }, + { + "@id": "schema:InteractionCounter" + }, + { + "@id": "schema:Event" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:PostalAddress" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:VirtualLocation" + } + ] + }, + { + "@id": "schema:ListItem", + "@type": "rdfs:Class", + "rdfs:comment": "An list item, e.g. a step in a checklist or how-to description.", + "rdfs:label": "ListItem", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:OrderCancelled", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing cancellation of an order.", + "rdfs:label": "OrderCancelled" + }, + { + "@id": "schema:arrivalBoatTerminal", + "@type": "rdf:Property", + "rdfs:comment": "The terminal or port from which the boat arrives.", + "rdfs:label": "arrivalBoatTerminal", + "schema:domainIncludes": { + "@id": "schema:BoatTrip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BoatTerminal" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1755" + } + }, + { + "@id": "schema:stage", + "@type": "rdf:Property", + "rdfs:comment": "The stage of the condition, if applicable.", + "rdfs:label": "stage", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalConditionStage" + } + }, + { + "@id": "schema:relatedAnatomy", + "@type": "rdf:Property", + "rdfs:comment": "Anatomical systems or structures that relate to the superficial anatomy.", + "rdfs:label": "relatedAnatomy", + "schema:domainIncludes": { + "@id": "schema:SuperficialAnatomy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AnatomicalSystem" + }, + { + "@id": "schema:AnatomicalStructure" + } + ] + }, + { + "@id": "schema:EmailMessage", + "@type": "rdfs:Class", + "rdfs:comment": "An email message.", + "rdfs:label": "EmailMessage", + "rdfs:subClassOf": { + "@id": "schema:Message" + } + }, + { + "@id": "schema:address", + "@type": "rdf:Property", + "rdfs:comment": "Physical address of the item.", + "rdfs:label": "address", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:GeoShape" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:GeoCoordinates" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:PostalAddress" + } + ] + }, + { + "@id": "schema:deliveryAddress", + "@type": "rdf:Property", + "rdfs:comment": "Destination address.", + "rdfs:label": "deliveryAddress", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": { + "@id": "schema:PostalAddress" + } + }, + { + "@id": "schema:nutrition", + "@type": "rdf:Property", + "rdfs:comment": "Nutrition information about the recipe or menu item.", + "rdfs:label": "nutrition", + "schema:domainIncludes": [ + { + "@id": "schema:Recipe" + }, + { + "@id": "schema:MenuItem" + } + ], + "schema:rangeIncludes": { + "@id": "schema:NutritionInformation" + } + }, + { + "@id": "schema:geoEquals", + "@type": "rdf:Property", + "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship)", + "rdfs:label": "geoEquals", + "schema:domainIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ] + }, + { + "@id": "schema:legislationChanges", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#changes" + }, + "rdfs:comment": "Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change (textual or non-textual amendment) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the legislationConsolidates property.", + "rdfs:label": "legislationChanges", + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Legislation" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + }, + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#changes" + } + }, + { + "@id": "schema:postalCodePrefix", + "@type": "rdf:Property", + "rdfs:comment": "A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK.", + "rdfs:label": "postalCodePrefix", + "schema:domainIncludes": { + "@id": "schema:DefinedRegion" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:offeredBy", + "@type": "rdf:Property", + "rdfs:comment": "A pointer to the organization or person making the offer.", + "rdfs:label": "offeredBy", + "schema:domainIncludes": { + "@id": "schema:Offer" + }, + "schema:inverseOf": { + "@id": "schema:makesOffer" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:FAQPage", + "@type": "rdfs:Class", + "rdfs:comment": "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).", + "rdfs:label": "FAQPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1723" + } + }, + { + "@id": "schema:FindAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of finding an object.\\n\\nRelated actions:\\n\\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily.", + "rdfs:label": "FindAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:includedRiskFactor", + "@type": "rdf:Property", + "rdfs:comment": "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.", + "rdfs:label": "includedRiskFactor", + "schema:domainIncludes": { + "@id": "schema:MedicalRiskEstimator" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalRiskFactor" + } + }, + { + "@id": "schema:WearableMeasurementWaist", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the waist section, for example of pants", + "rdfs:label": "WearableMeasurementWaist", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:RsvpResponseType", + "@type": "rdfs:Class", + "rdfs:comment": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.", + "rdfs:label": "RsvpResponseType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:Park", + "@type": "rdfs:Class", + "rdfs:comment": "A park.", + "rdfs:label": "Park", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:loanPaymentAmount", + "@type": "rdf:Property", + "rdfs:comment": "The amount of money to pay in a single payment.", + "rdfs:label": "loanPaymentAmount", + "schema:domainIncludes": { + "@id": "schema:RepaymentSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:legislationResponsible", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#responsibility_of" + }, + "rdfs:comment": "An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.", + "rdfs:label": "legislationResponsible", + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + }, + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#responsibility_of" + } + }, + { + "@id": "schema:GovernmentOrganization", + "@type": "rdfs:Class", + "rdfs:comment": "A governmental organization or agency.", + "rdfs:label": "GovernmentOrganization", + "rdfs:subClassOf": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:ResultsNotAvailable", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Results are not available.", + "rdfs:label": "ResultsNotAvailable", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:datasetTimeInterval", + "@type": "rdf:Property", + "rdfs:comment": "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).", + "rdfs:label": "datasetTimeInterval", + "schema:domainIncludes": { + "@id": "schema:Dataset" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + }, + "schema:supersededBy": { + "@id": "schema:temporalCoverage" + } + }, + { + "@id": "schema:RespiratoryTherapy", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).", + "rdfs:label": "RespiratoryTherapy", + "rdfs:subClassOf": { + "@id": "schema:MedicalTherapy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:WearableSizeSystemEurope", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "European size system for wearables.", + "rdfs:label": "WearableSizeSystemEurope", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:interactionCount", + "@type": "rdf:Property", + "rdfs:comment": "This property is deprecated, alongside the UserInteraction types on which it depended.", + "rdfs:label": "interactionCount", + "schema:supersededBy": { + "@id": "schema:interactionStatistic" + } + }, + { + "@id": "schema:RealEstateListing", + "@type": "rdfs:Class", + "rdfs:comment": "A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell).\n The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]].\n ", + "rdfs:label": "RealEstateListing", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2348" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryE", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryE", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:MedicalAudience", + "@type": "rdfs:Class", + "rdfs:comment": "Target audiences for medical web pages.", + "rdfs:label": "MedicalAudience", + "rdfs:subClassOf": [ + { + "@id": "schema:Audience" + }, + { + "@id": "schema:PeopleAudience" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:copyrightYear", + "@type": "rdf:Property", + "rdfs:comment": "The year during which the claimed copyright for the CreativeWork was first asserted.", + "rdfs:label": "copyrightYear", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:Therapeutic", + "@type": "schema:MedicalDevicePurpose", + "rdfs:comment": "A medical device used for therapeutic purposes.", + "rdfs:label": "Therapeutic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:EventReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for an event like a concert, sporting event, or lecture.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].", + "rdfs:label": "EventReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:bed", + "@type": "rdf:Property", + "rdfs:comment": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.", + "rdfs:label": "bed", + "schema:domainIncludes": [ + { + "@id": "schema:HotelRoom" + }, + { + "@id": "schema:Suite" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:BedDetails" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:BedType" + } + ], + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:dropoffTime", + "@type": "rdf:Property", + "rdfs:comment": "When a rental car can be dropped off.", + "rdfs:label": "dropoffTime", + "schema:domainIncludes": { + "@id": "schema:RentalCarReservation" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:incentiveCompensation", + "@type": "rdf:Property", + "rdfs:comment": "Description of bonus and commission compensation aspects of the job.", + "rdfs:label": "incentiveCompensation", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:physiologicalBenefits", + "@type": "rdf:Property", + "rdfs:comment": "Specific physiologic benefits associated to the plan.", + "rdfs:label": "physiologicalBenefits", + "schema:domainIncludes": { + "@id": "schema:Diet" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:BodyMeasurementChest", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Maximum girth of chest. Used, for example, to fit men's suits.", + "rdfs:label": "BodyMeasurementChest", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:DisagreeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.", + "rdfs:label": "DisagreeAction", + "rdfs:subClassOf": { + "@id": "schema:ReactAction" + } + }, + { + "@id": "schema:pathophysiology", + "@type": "rdf:Property", + "rdfs:comment": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.", + "rdfs:label": "pathophysiology", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalCondition" + }, + { + "@id": "schema:PhysicalActivity" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ParcelService", + "@type": "schema:DeliveryMethod", + "rdfs:comment": "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ", + "rdfs:label": "ParcelService", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:warning", + "@type": "rdf:Property", + "rdfs:comment": "Any FDA or other warnings about the drug (text or URL).", + "rdfs:label": "warning", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:drug", + "@type": "rdf:Property", + "rdfs:comment": "Specifying a drug or medicine used in a medication procedure.", + "rdfs:label": "drug", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalCondition" + }, + { + "@id": "schema:Patient" + }, + { + "@id": "schema:DrugClass" + }, + { + "@id": "schema:TherapeuticProcedure" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Drug" + } + }, + { + "@id": "schema:pickupTime", + "@type": "rdf:Property", + "rdfs:comment": "When a taxi will pickup a passenger or a rental car can be picked up.", + "rdfs:label": "pickupTime", + "schema:domainIncludes": [ + { + "@id": "schema:TaxiReservation" + }, + { + "@id": "schema:RentalCarReservation" + } + ], + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:SinglePlayer", + "@type": "schema:GamePlayMode", + "rdfs:comment": "Play mode: SinglePlayer. Which is played by a lone player.", + "rdfs:label": "SinglePlayer" + }, + { + "@id": "schema:secondaryPrevention", + "@type": "rdf:Property", + "rdfs:comment": "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.", + "rdfs:label": "secondaryPrevention", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTherapy" + } + }, + { + "@id": "schema:departureBoatTerminal", + "@type": "rdf:Property", + "rdfs:comment": "The terminal or port from which the boat departs.", + "rdfs:label": "departureBoatTerminal", + "schema:domainIncludes": { + "@id": "schema:BoatTrip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BoatTerminal" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1755" + } + }, + { + "@id": "schema:isBasedOn", + "@type": "rdf:Property", + "rdfs:comment": "A resource from which this work is derived or from which it is a modification or adaption.", + "rdfs:label": "isBasedOn", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:Product" + } + ] + }, + { + "@id": "schema:messageAttachment", + "@type": "rdf:Property", + "rdfs:comment": "A CreativeWork attached to the message.", + "rdfs:label": "messageAttachment", + "schema:domainIncludes": { + "@id": "schema:Message" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:Nonprofit501c28", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.", + "rdfs:label": "Nonprofit501c28", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:illustrator", + "@type": "rdf:Property", + "rdfs:comment": "The illustrator of the book.", + "rdfs:label": "illustrator", + "schema:domainIncludes": { + "@id": "schema:Book" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:speechToTextMarkup", + "@type": "rdf:Property", + "rdfs:comment": "Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).", + "rdfs:label": "speechToTextMarkup", + "schema:domainIncludes": { + "@id": "schema:PronounceableText" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2108" + } + }, + { + "@id": "schema:Pediatric", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that specializes in the care of infants, children and adolescents.", + "rdfs:label": "Pediatric", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:workload", + "@type": "rdf:Property", + "rdfs:comment": "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.", + "rdfs:label": "workload", + "schema:domainIncludes": { + "@id": "schema:ExercisePlan" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Energy" + } + ] + }, + { + "@id": "schema:shippingLabel", + "@type": "rdf:Property", + "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).", + "rdfs:label": "shippingLabel", + "schema:domainIncludes": [ + { + "@id": "schema:ShippingRateSettings" + }, + { + "@id": "schema:OfferShippingDetails" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:IceCreamShop", + "@type": "rdfs:Class", + "rdfs:comment": "An ice cream shop.", + "rdfs:label": "IceCreamShop", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:hasMenuSection", + "@type": "rdf:Property", + "rdfs:comment": "A subgrouping of the menu (by dishes, course, serving time period, etc.).", + "rdfs:label": "hasMenuSection", + "schema:domainIncludes": [ + { + "@id": "schema:Menu" + }, + { + "@id": "schema:MenuSection" + } + ], + "schema:rangeIncludes": { + "@id": "schema:MenuSection" + } + }, + { + "@id": "schema:Nonprofit501c18", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959).", + "rdfs:label": "Nonprofit501c18", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:UnofficialLegalValue", + "@type": "schema:LegalValueLevel", + "rdfs:comment": "Indicates that a document has no particular or special standing (e.g. a republication of a law by a private publisher).", + "rdfs:label": "UnofficialLegalValue", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#LegalValue-unofficial" + } + }, + { + "@id": "schema:clipNumber", + "@type": "rdf:Property", + "rdfs:comment": "Position of the clip within an ordered group of clips.", + "rdfs:label": "clipNumber", + "rdfs:subPropertyOf": { + "@id": "schema:position" + }, + "schema:domainIncludes": { + "@id": "schema:Clip" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Integer" + } + ] + }, + { + "@id": "schema:percentile10", + "@type": "rdf:Property", + "rdfs:comment": "The 10th percentile value.", + "rdfs:label": "percentile10", + "schema:domainIncludes": { + "@id": "schema:QuantitativeValueDistribution" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:OnlineOnly", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item is available only online.", + "rdfs:label": "OnlineOnly" + }, + { + "@id": "schema:partOfSeries", + "@type": "rdf:Property", + "rdfs:comment": "The series to which this episode or season belongs.", + "rdfs:label": "partOfSeries", + "rdfs:subPropertyOf": { + "@id": "schema:isPartOf" + }, + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:Episode" + }, + { + "@id": "schema:Clip" + } + ], + "schema:rangeIncludes": { + "@id": "schema:CreativeWorkSeries" + } + }, + { + "@id": "schema:map", + "@type": "rdf:Property", + "rdfs:comment": "A URL to a map of the place.", + "rdfs:label": "map", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:supersededBy": { + "@id": "schema:hasMap" + } + }, + { + "@id": "schema:HinduTemple", + "@type": "rdfs:Class", + "rdfs:comment": "A Hindu temple.", + "rdfs:label": "HinduTemple", + "rdfs:subClassOf": { + "@id": "schema:PlaceOfWorship" + } + }, + { + "@id": "schema:AccountingService", + "@type": "rdfs:Class", + "rdfs:comment": "Accountancy business.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).\n ", + "rdfs:label": "AccountingService", + "rdfs:subClassOf": { + "@id": "schema:FinancialService" + } + }, + { + "@id": "schema:workExample", + "@type": "rdf:Property", + "rdfs:comment": "Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.", + "rdfs:label": "workExample", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:exampleOfWork" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:PlanAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of planning the execution of an event/task/action/reservation/plan to a future date.", + "rdfs:label": "PlanAction", + "rdfs:subClassOf": { + "@id": "schema:OrganizeAction" + } + }, + { + "@id": "schema:AmpStory", + "@type": "rdfs:Class", + "rdfs:comment": "A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices.", + "rdfs:label": "AmpStory", + "rdfs:subClassOf": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2646" + } + }, + { + "@id": "schema:DanceGroup", + "@type": "rdfs:Class", + "rdfs:comment": "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.", + "rdfs:label": "DanceGroup", + "rdfs:subClassOf": { + "@id": "schema:PerformingGroup" + } + }, + { + "@id": "schema:Genetic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.", + "rdfs:label": "Genetic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MedicalObservationalStudyDesign", + "@type": "rdfs:Class", + "rdfs:comment": "Design models for observational medical studies. Enumerated type.", + "rdfs:label": "MedicalObservationalStudyDesign", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:performers", + "@type": "rdf:Property", + "rdfs:comment": "The main performer or performers of the event—for example, a presenter, musician, or actor.", + "rdfs:label": "performers", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:supersededBy": { + "@id": "schema:performer" + } + }, + { + "@id": "schema:associatedAnatomy", + "@type": "rdf:Property", + "rdfs:comment": "The anatomy of the underlying organ system or structures associated with this entity.", + "rdfs:label": "associatedAnatomy", + "schema:domainIncludes": [ + { + "@id": "schema:PhysicalActivity" + }, + { + "@id": "schema:MedicalCondition" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AnatomicalStructure" + }, + { + "@id": "schema:AnatomicalSystem" + }, + { + "@id": "schema:SuperficialAnatomy" + } + ] + }, + { + "@id": "schema:isSimilarTo", + "@type": "rdf:Property", + "rdfs:comment": "A pointer to another, functionally similar product (or multiple products).", + "rdfs:label": "isSimilarTo", + "schema:domainIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:Product" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:MixedEventAttendanceMode", + "@type": "schema:EventAttendanceModeEnumeration", + "rdfs:comment": "MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.", + "rdfs:label": "MixedEventAttendanceMode", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:EmergencyService", + "@type": "rdfs:Class", + "rdfs:comment": "An emergency service, such as a fire station or ER.", + "rdfs:label": "EmergencyService", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:DrugPregnancyCategory", + "@type": "rdfs:Class", + "rdfs:comment": "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.", + "rdfs:label": "DrugPregnancyCategory", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:sampleType", + "@type": "rdf:Property", + "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", + "rdfs:label": "sampleType", + "schema:domainIncludes": { + "@id": "schema:SoftwareSourceCode" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:codeSampleType" + } + }, + { + "@id": "schema:memberOf", + "@type": "rdf:Property", + "rdfs:comment": "An Organization (or ProgramMembership) to which this Person or Organization belongs.", + "rdfs:label": "memberOf", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:inverseOf": { + "@id": "schema:member" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ProgramMembership" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:associatedClaimReview", + "@type": "rdf:Property", + "rdfs:comment": "An associated [[ClaimReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].", + "rdfs:label": "associatedClaimReview", + "rdfs:subPropertyOf": { + "@id": "schema:associatedReview" + }, + "schema:domainIncludes": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Review" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:numberOfCredits", + "@type": "rdf:Property", + "rdfs:comment": "The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.", + "rdfs:label": "numberOfCredits", + "schema:domainIncludes": [ + { + "@id": "schema:Course" + }, + { + "@id": "schema:EducationalOccupationalProgram" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:StructuredValue" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:downvoteCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of downvotes this question, answer or comment has received from the community.", + "rdfs:label": "downvoteCount", + "schema:domainIncludes": { + "@id": "schema:Comment" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:cookingMethod", + "@type": "rdf:Property", + "rdfs:comment": "The method of cooking, such as Frying, Steaming, ...", + "rdfs:label": "cookingMethod", + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:sourcedFrom", + "@type": "rdf:Property", + "rdfs:comment": "The neurological pathway that originates the neurons.", + "rdfs:label": "sourcedFrom", + "schema:domainIncludes": { + "@id": "schema:Nerve" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BrainStructure" + } + }, + { + "@id": "schema:DrugStrength", + "@type": "rdfs:Class", + "rdfs:comment": "A specific strength in which a medical drug is available in a specific country.", + "rdfs:label": "DrugStrength", + "rdfs:subClassOf": { + "@id": "schema:MedicalIntangible" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:FDAcategoryB", + "@type": "schema:DrugPregnancyCategory", + "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.", + "rdfs:label": "FDAcategoryB", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:OpeningHoursSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.\n ", + "rdfs:label": "OpeningHoursSpecification", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:BefriendAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.", + "rdfs:label": "BefriendAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:BioChemEntity", + "@type": "rdfs:Class", + "dcterms:source": { + "@id": "http://bioschemas.org" + }, + "rdfs:comment": "Any biological, chemical, or biochemical thing. For example: a protein; a gene; a chemical; a synthetic chemical.", + "rdfs:label": "BioChemEntity", + "rdfs:subClassOf": { + "@id": "schema:Thing" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + } + }, + { + "@id": "schema:expectedArrivalUntil", + "@type": "rdf:Property", + "rdfs:comment": "The latest date the package may arrive.", + "rdfs:label": "expectedArrivalUntil", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:HealthTopicContent", + "@type": "rdfs:Class", + "rdfs:comment": "[[HealthTopicContent]] is [[WebContent]] that is about some aspect of a health topic, e.g. a condition, its symptoms or treatments. Such content may be comprised of several parts or sections and use different types of media. Multiple instances of [[WebContent]] (and hence [[HealthTopicContent]]) can be related using [[hasPart]] / [[isPartOf]] where there is some kind of content hierarchy, and their content described with [[about]] and [[mentions]] e.g. building upon the existing [[MedicalCondition]] vocabulary.\n ", + "rdfs:label": "HealthTopicContent", + "rdfs:subClassOf": { + "@id": "schema:WebContent" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:SizeSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "Size related properties of a product, typically a size code ([[name]]) and optionally a [[sizeSystem]], [[sizeGroup]], and product measurements ([[hasMeasurement]]). In addition, the intended audience can be defined through [[suggestedAge]], [[suggestedGender]], and suggested body measurements ([[suggestedMeasurement]]).", + "rdfs:label": "SizeSpecification", + "rdfs:subClassOf": { + "@id": "schema:QualitativeValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:HighSchool", + "@type": "rdfs:Class", + "rdfs:comment": "A high school.", + "rdfs:label": "HighSchool", + "rdfs:subClassOf": { + "@id": "schema:EducationalOrganization" + } + }, + { + "@id": "schema:InvoicePrice", + "@type": "schema:PriceTypeEnumeration", + "rdfs:comment": "Represents the invoice price of an offered product.", + "rdfs:label": "InvoicePrice", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2712" + } + }, + { + "@id": "schema:ReviewAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.", + "rdfs:label": "ReviewAction", + "rdfs:subClassOf": { + "@id": "schema:AssessAction" + } + }, + { + "@id": "schema:studySubject", + "@type": "rdf:Property", + "rdfs:comment": "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.", + "rdfs:label": "studySubject", + "schema:domainIncludes": { + "@id": "schema:MedicalStudy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEntity" + } + }, + { + "@id": "schema:accountMinimumInflow", + "@type": "rdf:Property", + "rdfs:comment": "A minimum amount that has to be paid in every month.", + "rdfs:label": "accountMinimumInflow", + "schema:domainIncludes": { + "@id": "schema:BankAccount" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:EnergyStarCertified", + "@type": "schema:EnergyStarEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EnergyStar certification.", + "rdfs:label": "EnergyStarCertified", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:MiddleSchool", + "@type": "rdfs:Class", + "rdfs:comment": "A middle school (typically for children aged around 11-14, although this varies somewhat).", + "rdfs:label": "MiddleSchool", + "rdfs:subClassOf": { + "@id": "schema:EducationalOrganization" + } + }, + { + "@id": "schema:Map", + "@type": "rdfs:Class", + "rdfs:comment": "A map.", + "rdfs:label": "Map", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:gameServer", + "@type": "rdf:Property", + "rdfs:comment": "The server on which it is possible to play the game.", + "rdfs:label": "gameServer", + "schema:domainIncludes": { + "@id": "schema:VideoGame" + }, + "schema:inverseOf": { + "@id": "schema:game" + }, + "schema:rangeIncludes": { + "@id": "schema:GameServer" + } + }, + { + "@id": "schema:toRecipient", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of recipient. The recipient who was directly sent the message.", + "rdfs:label": "toRecipient", + "rdfs:subPropertyOf": { + "@id": "schema:recipient" + }, + "schema:domainIncludes": { + "@id": "schema:Message" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:Audience" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:loanType", + "@type": "rdf:Property", + "rdfs:comment": "The type of a loan or credit.", + "rdfs:label": "loanType", + "schema:domainIncludes": { + "@id": "schema:LoanOrCredit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:pickupLocation", + "@type": "rdf:Property", + "rdfs:comment": "Where a taxi will pick up a passenger or a rental car can be picked up.", + "rdfs:label": "pickupLocation", + "schema:domainIncludes": [ + { + "@id": "schema:RentalCarReservation" + }, + { + "@id": "schema:TaxiReservation" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:Drug", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/410942007" + }, + "rdfs:comment": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge make a clear difference between them.", + "rdfs:label": "Drug", + "rdfs:subClassOf": { + "@id": "schema:Substance" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:StructuredValue", + "@type": "rdfs:Class", + "rdfs:comment": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.", + "rdfs:label": "StructuredValue", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:EUEnergyEfficiencyEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369.", + "rdfs:label": "EUEnergyEfficiencyEnumeration", + "rdfs:subClassOf": { + "@id": "schema:EnergyEfficiencyEnumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:Waterfall", + "@type": "rdfs:Class", + "rdfs:comment": "A waterfall, like Niagara.", + "rdfs:label": "Waterfall", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:vehicleTransmission", + "@type": "rdf:Property", + "rdfs:comment": "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars).", + "rdfs:label": "vehicleTransmission", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:payload", + "@type": "rdf:Property", + "rdfs:comment": "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "payload", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:GardenStore", + "@type": "rdfs:Class", + "rdfs:comment": "A garden store.", + "rdfs:label": "GardenStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:Nonprofit501c27", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.", + "rdfs:label": "Nonprofit501c27", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:publishingPrinciples", + "@type": "rdf:Property", + "rdfs:comment": "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n", + "rdfs:label": "publishingPrinciples", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:Infectious", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections.", + "rdfs:label": "Infectious", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MedicalDevice", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/63653004" + }, + "rdfs:comment": "Any object used in a medical capacity, such as to diagnose or treat a patient.", + "rdfs:label": "MedicalDevice", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:relevantOccupation", + "@type": "rdf:Property", + "rdfs:comment": "The Occupation for the JobPosting.", + "rdfs:label": "relevantOccupation", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Occupation" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:OrderProblem", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing that there is a problem with the order.", + "rdfs:label": "OrderProblem" + }, + { + "@id": "schema:diseasePreventionInfo", + "@type": "rdf:Property", + "rdfs:comment": "Information about disease prevention.", + "rdfs:label": "diseasePreventionInfo", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:WebContent" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:MusicVenue", + "@type": "rdfs:Class", + "rdfs:comment": "A music venue.", + "rdfs:label": "MusicVenue", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:Property", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "rdf:Property" + }, + "rdfs:comment": "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.", + "rdfs:label": "Property", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://meta.schema.org" + } + }, + { + "@id": "schema:discussionUrl", + "@type": "rdf:Property", + "rdfs:comment": "A link to the page containing the comments of the CreativeWork.", + "rdfs:label": "discussionUrl", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:image", + "@type": "rdf:Property", + "rdfs:comment": "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", + "rdfs:label": "image", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:ImageObject" + } + ] + }, + { + "@id": "schema:availableChannel", + "@type": "rdf:Property", + "rdfs:comment": "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).", + "rdfs:label": "availableChannel", + "schema:domainIncludes": { + "@id": "schema:Service" + }, + "schema:rangeIncludes": { + "@id": "schema:ServiceChannel" + } + }, + { + "@id": "schema:orderQuantity", + "@type": "rdf:Property", + "rdfs:comment": "The number of the item ordered. If the property is not set, assume the quantity is one.", + "rdfs:label": "orderQuantity", + "schema:domainIncludes": { + "@id": "schema:OrderItem" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:itemDefectReturnLabelSource", + "@type": "rdf:Property", + "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a defect product.", + "rdfs:label": "itemDefectReturnLabelSource", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ReturnLabelSourceEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:ReservationCancelled", + "@type": "schema:ReservationStatusType", + "rdfs:comment": "The status for a previously confirmed reservation that is now cancelled.", + "rdfs:label": "ReservationCancelled" + }, + { + "@id": "schema:borrower", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The person that borrows the object being lent.", + "rdfs:label": "borrower", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:LendAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:distribution", + "@type": "rdf:Property", + "rdfs:comment": "A downloadable form of this dataset, at a specific location, in a specific format.", + "rdfs:label": "distribution", + "schema:domainIncludes": { + "@id": "schema:Dataset" + }, + "schema:rangeIncludes": { + "@id": "schema:DataDownload" + } + }, + { + "@id": "schema:releasedEvent", + "@type": "rdf:Property", + "rdfs:comment": "The place and time the release was issued, expressed as a PublicationEvent.", + "rdfs:label": "releasedEvent", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:PublicationEvent" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryA3Plus", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryA3Plus", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:Tuesday", + "@type": "schema:DayOfWeek", + "rdfs:comment": "The day of the week between Monday and Wednesday.", + "rdfs:label": "Tuesday", + "schema:sameAs": { + "@id": "http://www.wikidata.org/entity/Q127" + } + }, + { + "@id": "schema:fromLocation", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The original location of the object or the agent before the action.", + "rdfs:label": "fromLocation", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": [ + { + "@id": "schema:MoveAction" + }, + { + "@id": "schema:TransferAction" + }, + { + "@id": "schema:ExerciseAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:driveWheelConfiguration", + "@type": "rdf:Property", + "rdfs:comment": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.", + "rdfs:label": "driveWheelConfiguration", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DriveWheelConfigurationValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:MedicalSymptom", + "@type": "rdfs:Class", + "rdfs:comment": "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.", + "rdfs:label": "MedicalSymptom", + "rdfs:subClassOf": { + "@id": "schema:MedicalSignOrSymptom" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:servesCuisine", + "@type": "rdf:Property", + "rdfs:comment": "The cuisine of the restaurant.", + "rdfs:label": "servesCuisine", + "schema:domainIncludes": { + "@id": "schema:FoodEstablishment" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:dependencies", + "@type": "rdf:Property", + "rdfs:comment": "Prerequisites needed to fulfill steps in article.", + "rdfs:label": "dependencies", + "schema:domainIncludes": { + "@id": "schema:TechArticle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MerchantReturnUnlimitedWindow", + "@type": "schema:MerchantReturnEnumeration", + "rdfs:comment": "Specifies that there is an unlimited window for product returns.", + "rdfs:label": "MerchantReturnUnlimitedWindow", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:seatingType", + "@type": "rdf:Property", + "rdfs:comment": "The type/class of the seat.", + "rdfs:label": "seatingType", + "schema:domainIncludes": { + "@id": "schema:Seat" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Rheumatologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.", + "rdfs:label": "Rheumatologic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:torque", + "@type": "rdf:Property", + "rdfs:comment": "The torque (turning force) of the vehicle's engine.\\n\\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\\n\\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "torque", + "schema:domainIncludes": { + "@id": "schema:EngineSpecification" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:engineDisplacement", + "@type": "rdf:Property", + "rdfs:comment": "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \\n\\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "engineDisplacement", + "schema:domainIncludes": { + "@id": "schema:EngineSpecification" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:nerve", + "@type": "rdf:Property", + "rdfs:comment": "The underlying innervation associated with the muscle.", + "rdfs:label": "nerve", + "schema:domainIncludes": { + "@id": "schema:Muscle" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Nerve" + } + }, + { + "@id": "schema:seatSection", + "@type": "rdf:Property", + "rdfs:comment": "The section location of the reserved seat (e.g. Orchestra).", + "rdfs:label": "seatSection", + "schema:domainIncludes": { + "@id": "schema:Seat" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:OceanBodyOfWater", + "@type": "rdfs:Class", + "rdfs:comment": "An ocean (for example, the Pacific).", + "rdfs:label": "OceanBodyOfWater", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:EmployerAggregateRating", + "@type": "rdfs:Class", + "rdfs:comment": "An aggregate rating of an Organization related to its role as an employer.", + "rdfs:label": "EmployerAggregateRating", + "rdfs:subClassOf": { + "@id": "schema:AggregateRating" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1689" + } + }, + { + "@id": "schema:PreOrderAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent orders a (not yet released) object/product/service to be delivered/sent.", + "rdfs:label": "PreOrderAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1125" + } + }, + { + "@id": "schema:totalJobOpenings", + "@type": "rdf:Property", + "rdfs:comment": "The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.", + "rdfs:label": "totalJobOpenings", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2329" + } + }, + { + "@id": "schema:diversityStaffingReport", + "@type": "rdf:Property", + "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.", + "rdfs:label": "diversityStaffingReport", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": [ + { + "@id": "schema:NewsMediaOrganization" + }, + { + "@id": "schema:Organization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Article" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:RejectAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.", + "rdfs:label": "RejectAction", + "rdfs:subClassOf": { + "@id": "schema:AllocateAction" + } + }, + { + "@id": "schema:depth", + "@type": "rdf:Property", + "rdfs:comment": "The depth of the item.", + "rdfs:label": "depth", + "schema:domainIncludes": [ + { + "@id": "schema:VisualArtwork" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Distance" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:InternationalTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "An international trial.", + "rdfs:label": "InternationalTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:countryOfLastProcessing", + "@type": "rdf:Property", + "rdfs:comment": "The place where the item (typically [[Product]]) was last processed and tested before importation.", + "rdfs:label": "countryOfLastProcessing", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/991" + } + }, + { + "@id": "schema:percentile25", + "@type": "rdf:Property", + "rdfs:comment": "The 25th percentile value.", + "rdfs:label": "percentile25", + "schema:domainIncludes": { + "@id": "schema:QuantitativeValueDistribution" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:dateCreated", + "@type": "rdf:Property", + "rdfs:comment": "The date on which the CreativeWork was created or the item was added to a DataFeed.", + "rdfs:label": "dateCreated", + "schema:domainIncludes": [ + { + "@id": "schema:DataFeedItem" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:availableThrough", + "@type": "rdf:Property", + "rdfs:comment": "After this date, the item will no longer be available for pickup.", + "rdfs:label": "availableThrough", + "schema:domainIncludes": { + "@id": "schema:DeliveryEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:HowToItem", + "@type": "rdfs:Class", + "rdfs:comment": "An item used as either a tool or supply when performing the instructions for how to to achieve a result.", + "rdfs:label": "HowToItem", + "rdfs:subClassOf": { + "@id": "schema:ListItem" + } + }, + { + "@id": "schema:VideoObjectSnapshot", + "@type": "rdfs:Class", + "rdfs:comment": "A specific and exact (byte-for-byte) version of a [[VideoObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.", + "rdfs:label": "VideoObjectSnapshot", + "rdfs:subClassOf": { + "@id": "schema:VideoObject" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:ParentAudience", + "@type": "rdfs:Class", + "rdfs:comment": "A set of characteristics describing parents, who can be interested in viewing some content.", + "rdfs:label": "ParentAudience", + "rdfs:subClassOf": { + "@id": "schema:PeopleAudience" + } + }, + { + "@id": "schema:ExerciseGym", + "@type": "rdfs:Class", + "rdfs:comment": "A gym.", + "rdfs:label": "ExerciseGym", + "rdfs:subClassOf": { + "@id": "schema:SportsActivityLocation" + } + }, + { + "@id": "schema:TripleBlindedTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.", + "rdfs:label": "TripleBlindedTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:OpenTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A trial design in which the researcher knows the full details of the treatment, and so does the patient.", + "rdfs:label": "OpenTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:WearableSizeGroupPetite", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Petite\" for wearables.", + "rdfs:label": "WearableSizeGroupPetite", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:departureAirport", + "@type": "rdf:Property", + "rdfs:comment": "The airport where the flight originates.", + "rdfs:label": "departureAirport", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Airport" + } + }, + { + "@id": "schema:url", + "@type": "rdf:Property", + "rdfs:comment": "URL of the item.", + "rdfs:label": "url", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:dataset", + "@type": "rdf:Property", + "rdfs:comment": "A dataset contained in this catalog.", + "rdfs:label": "dataset", + "schema:domainIncludes": { + "@id": "schema:DataCatalog" + }, + "schema:inverseOf": { + "@id": "schema:includedInDataCatalog" + }, + "schema:rangeIncludes": { + "@id": "schema:Dataset" + } + }, + { + "@id": "schema:httpMethod", + "@type": "rdf:Property", + "rdfs:comment": "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.", + "rdfs:label": "httpMethod", + "schema:domainIncludes": { + "@id": "schema:EntryPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ContagiousnessHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about contagion mechanisms and contagiousness information over the topic.", + "rdfs:label": "ContagiousnessHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:diversityPolicy", + "@type": "rdf:Property", + "rdfs:comment": "Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.", + "rdfs:label": "diversityPolicy", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:NewsMediaOrganization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:Photograph", + "@type": "rdfs:Class", + "rdfs:comment": "A photograph.", + "rdfs:label": "Photograph", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:DepartAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.", + "rdfs:label": "DepartAction", + "rdfs:subClassOf": { + "@id": "schema:MoveAction" + } + }, + { + "@id": "schema:positiveNotes", + "@type": "rdf:Property", + "rdfs:comment": "Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), positive considerations - either as unstructured text, or a list.", + "rdfs:label": "positiveNotes", + "schema:domainIncludes": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:WebContent" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:ListItem" + }, + { + "@id": "schema:ItemList" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2832" + } + }, + { + "@id": "schema:Audiobook", + "@type": "rdfs:Class", + "rdfs:comment": "An audiobook.", + "rdfs:label": "Audiobook", + "rdfs:subClassOf": [ + { + "@id": "schema:AudioObject" + }, + { + "@id": "schema:Book" + } + ], + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:interactionType", + "@type": "rdf:Property", + "rdfs:comment": "The Action representing the type of interaction. For up votes, +1s, etc. use [[LikeAction]]. For down votes use [[DislikeAction]]. Otherwise, use the most specific Action.", + "rdfs:label": "interactionType", + "schema:domainIncludes": { + "@id": "schema:InteractionCounter" + }, + "schema:rangeIncludes": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:deliveryLeadTime", + "@type": "rdf:Property", + "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.", + "rdfs:label": "deliveryLeadTime", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:bookingTime", + "@type": "rdf:Property", + "rdfs:comment": "The date and time the reservation was booked.", + "rdfs:label": "bookingTime", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:WearableSizeGroupInfants", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Infants\" for wearables.", + "rdfs:label": "WearableSizeGroupInfants", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:legislationJurisdiction", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#jurisdiction" + }, + "rdfs:comment": "The jurisdiction from which the legislation originates.", + "rdfs:label": "legislationJurisdiction", + "rdfs:subPropertyOf": [ + { + "@id": "schema:jurisdiction" + }, + { + "@id": "schema:spatialCoverage" + } + ], + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AdministrativeArea" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#jurisdiction" + } + }, + { + "@id": "schema:Residence", + "@type": "rdfs:Class", + "rdfs:comment": "The place where a person lives.", + "rdfs:label": "Residence", + "rdfs:subClassOf": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:DeactivateAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).", + "rdfs:label": "DeactivateAction", + "rdfs:subClassOf": { + "@id": "schema:ControlAction" + } + }, + { + "@id": "schema:MedicalGuidelineContraindication", + "@type": "rdfs:Class", + "rdfs:comment": "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.", + "rdfs:label": "MedicalGuidelineContraindication", + "rdfs:subClassOf": { + "@id": "schema:MedicalGuideline" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Suspended", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Suspended.", + "rdfs:label": "Suspended", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:knownVehicleDamages", + "@type": "rdf:Property", + "rdfs:comment": "A textual description of known damages, both repaired and unrepaired.", + "rdfs:label": "knownVehicleDamages", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:WearableMeasurementHips", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the hip section, for example of a skirt", + "rdfs:label": "WearableMeasurementHips", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:blogPosts", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a post that is part of a [[Blog]]. Note that historically, what we term a \"Blog\" was once known as a \"weblog\", and that what we term a \"BlogPosting\" is now often colloquially referred to as a \"blog\".", + "rdfs:label": "blogPosts", + "schema:domainIncludes": { + "@id": "schema:Blog" + }, + "schema:rangeIncludes": { + "@id": "schema:BlogPosting" + }, + "schema:supersededBy": { + "@id": "schema:blogPost" + } + }, + { + "@id": "schema:vendor", + "@type": "rdf:Property", + "rdfs:comment": "'vendor' is an earlier term for 'seller'.", + "rdfs:label": "vendor", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:BuyAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:supersededBy": { + "@id": "schema:seller" + } + }, + { + "@id": "schema:Answer", + "@type": "rdfs:Class", + "rdfs:comment": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.", + "rdfs:label": "Answer", + "rdfs:subClassOf": { + "@id": "schema:Comment" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange" + } + }, + { + "@id": "schema:colleagues", + "@type": "rdf:Property", + "rdfs:comment": "A colleague of the person.", + "rdfs:label": "colleagues", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:colleague" + } + }, + { + "@id": "schema:courseWorkload", + "@type": "rdf:Property", + "rdfs:comment": "The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, \"2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week\".", + "rdfs:label": "courseWorkload", + "schema:domainIncludes": { + "@id": "schema:CourseInstance" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1909" + } + }, + { + "@id": "schema:ResumeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).", + "rdfs:label": "ResumeAction", + "rdfs:subClassOf": { + "@id": "schema:ControlAction" + } + }, + { + "@id": "schema:signOrSymptom", + "@type": "rdf:Property", + "rdfs:comment": "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.", + "rdfs:label": "signOrSymptom", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalSignOrSymptom" + } + }, + { + "@id": "schema:ReactAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of responding instinctively and emotionally to an object, expressing a sentiment.", + "rdfs:label": "ReactAction", + "rdfs:subClassOf": { + "@id": "schema:AssessAction" + } + }, + { + "@id": "schema:ActiveNotRecruiting", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Active, but not recruiting new participants.", + "rdfs:label": "ActiveNotRecruiting", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:accommodationCategory", + "@type": "rdf:Property", + "rdfs:comment": "Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).", + "rdfs:label": "accommodationCategory", + "rdfs:subPropertyOf": { + "@id": "schema:category" + }, + "schema:domainIncludes": { + "@id": "schema:Accommodation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:Conversation", + "@type": "rdfs:Class", + "rdfs:comment": "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.", + "rdfs:label": "Conversation", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:Plumber", + "@type": "rdfs:Class", + "rdfs:comment": "A plumbing service.", + "rdfs:label": "Plumber", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:requiredMaxAge", + "@type": "rdf:Property", + "rdfs:comment": "Audiences defined by a person's maximum age.", + "rdfs:label": "requiredMaxAge", + "schema:domainIncludes": { + "@id": "schema:PeopleAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:reportNumber", + "@type": "rdf:Property", + "rdfs:comment": "The number or other unique designator assigned to a Report by the publishing organization.", + "rdfs:label": "reportNumber", + "schema:domainIncludes": { + "@id": "schema:Report" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Organization", + "@type": "rdfs:Class", + "rdfs:comment": "An organization such as a school, NGO, corporation, club, etc.", + "rdfs:label": "Organization", + "rdfs:subClassOf": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:availableDeliveryMethod", + "@type": "rdf:Property", + "rdfs:comment": "The delivery method(s) available for this offer.", + "rdfs:label": "availableDeliveryMethod", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": { + "@id": "schema:DeliveryMethod" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:FireStation", + "@type": "rdfs:Class", + "rdfs:comment": "A fire station. With firemen.", + "rdfs:label": "FireStation", + "rdfs:subClassOf": [ + { + "@id": "schema:CivicStructure" + }, + { + "@id": "schema:EmergencyService" + } + ] + }, + { + "@id": "schema:Article", + "@type": "rdfs:Class", + "rdfs:comment": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).", + "rdfs:label": "Article", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + }, + { + "@id": "schema:TrainStation", + "@type": "rdfs:Class", + "rdfs:comment": "A train station.", + "rdfs:label": "TrainStation", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:deathDate", + "@type": "rdf:Property", + "rdfs:comment": "Date of death.", + "rdfs:label": "deathDate", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:email", + "@type": "rdf:Property", + "rdfs:comment": "Email address.", + "rdfs:label": "email", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:seatRow", + "@type": "rdf:Property", + "rdfs:comment": "The row location of the reserved seat (e.g., B).", + "rdfs:label": "seatRow", + "schema:domainIncludes": { + "@id": "schema:Seat" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:HinduDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet conforming to Hindu dietary practices, in particular, beef-free.", + "rdfs:label": "HinduDiet" + }, + { + "@id": "schema:InsertAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of adding at a specific location in an ordered collection.", + "rdfs:label": "InsertAction", + "rdfs:subClassOf": { + "@id": "schema:AddAction" + } + }, + { + "@id": "schema:DepositAccount", + "@type": "rdfs:Class", + "rdfs:comment": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.", + "rdfs:label": "DepositAccount", + "rdfs:subClassOf": [ + { + "@id": "schema:InvestmentOrDeposit" + }, + { + "@id": "schema:BankAccount" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:DefinedRegion", + "@type": "rdfs:Class", + "rdfs:comment": "A DefinedRegion is a geographic area defined by potentially arbitrary (rather than political, administrative or natural geographical) criteria. Properties are provided for defining a region by reference to sets of postal codes.\n\nExamples: a delivery destination when shopping. Region where regional pricing is configured.\n\nRequirement 1:\nCountry: US\nStates: \"NY\", \"CA\"\n\nRequirement 2:\nCountry: US\nPostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]}\n{ [12345, 12345], [78945, 78945], }\nRegion = state, canton, prefecture, autonomous community...\n", + "rdfs:label": "DefinedRegion", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:domiciledMortgage", + "@type": "rdf:Property", + "rdfs:comment": "Whether borrower is a resident of the jurisdiction where the property is located.", + "rdfs:label": "domiciledMortgage", + "schema:domainIncludes": { + "@id": "schema:MortgageLoan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:holdingArchive", + "@type": "rdf:Property", + "rdfs:comment": { + "@language": "en", + "@value": "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]." + }, + "rdfs:label": { + "@language": "en", + "@value": "holdingArchive" + }, + "schema:domainIncludes": { + "@id": "schema:ArchiveComponent" + }, + "schema:inverseOf": { + "@id": "schema:archiveHeld" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ArchiveOrganization" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1758" + } + }, + { + "@id": "schema:MediaGallery", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.", + "rdfs:label": "MediaGallery", + "rdfs:subClassOf": { + "@id": "schema:CollectionPage" + } + }, + { + "@id": "schema:roleName", + "@type": "rdf:Property", + "rdfs:comment": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.", + "rdfs:label": "roleName", + "schema:domainIncludes": { + "@id": "schema:Role" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:ImagingTest", + "@type": "rdfs:Class", + "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes.", + "rdfs:label": "ImagingTest", + "rdfs:subClassOf": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:isUnlabelledFallback", + "@type": "rdf:Property", + "rdfs:comment": "This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[ShippingRateSettings]] are intended to apply to all [[OfferShippingDetails]] published by the same merchant, when referenced by a [[shippingSettingsLink]] in those settings. It is not meaningful to use a 'true' value for this property alongside a transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings.", + "rdfs:label": "isUnlabelledFallback", + "schema:domainIncludes": [ + { + "@id": "schema:ShippingRateSettings" + }, + { + "@id": "schema:DeliveryTimeSettings" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:legislationDate", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#date_document" + }, + "rdfs:comment": "The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.", + "rdfs:label": "legislationDate", + "rdfs:subPropertyOf": { + "@id": "schema:dateCreated" + }, + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#date_document" + } + }, + { + "@id": "schema:employees", + "@type": "rdf:Property", + "rdfs:comment": "People working for this organization.", + "rdfs:label": "employees", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:employee" + } + }, + { + "@id": "schema:ImageObjectSnapshot", + "@type": "rdfs:Class", + "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[ImageObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata (e.g. XMP, EXIF) the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.", + "rdfs:label": "ImageObjectSnapshot", + "rdfs:subClassOf": { + "@id": "schema:ImageObject" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:WearableSizeGroupGirls", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Girls\" for wearables.", + "rdfs:label": "WearableSizeGroupGirls", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:MedicalOrganization", + "@type": "rdfs:Class", + "rdfs:comment": "A medical organization (physical or not), such as hospital, institution or clinic.", + "rdfs:label": "MedicalOrganization", + "rdfs:subClassOf": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:BodyMeasurementFoot", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Foot length (measured between end of the most prominent toe and the most prominent part of the heel). Used, for example, to measure socks.", + "rdfs:label": "BodyMeasurementFoot", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:healthPlanDrugTier", + "@type": "rdf:Property", + "rdfs:comment": "The tier(s) of drugs offered by this formulary or insurance plan.", + "rdfs:label": "healthPlanDrugTier", + "schema:domainIncludes": [ + { + "@id": "schema:HealthInsurancePlan" + }, + { + "@id": "schema:HealthPlanFormulary" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:healthPlanCostSharing", + "@type": "rdf:Property", + "rdfs:comment": "Whether The costs to the patient for services under this network or formulary.", + "rdfs:label": "healthPlanCostSharing", + "schema:domainIncludes": [ + { + "@id": "schema:HealthPlanFormulary" + }, + { + "@id": "schema:HealthPlanNetwork" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:contactOption", + "@type": "rdf:Property", + "rdfs:comment": "An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).", + "rdfs:label": "contactOption", + "schema:domainIncludes": { + "@id": "schema:ContactPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:ContactPointOption" + } + }, + { + "@id": "schema:iupacName", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/MolecularEntity" + }, + "rdfs:comment": "Systematic method of naming chemical compounds as recommended by the International Union of Pure and Applied Chemistry (IUPAC).", + "rdfs:label": "iupacName", + "schema:domainIncludes": { + "@id": "schema:MolecularEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:pageEnd", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/bibo/pageEnd" + }, + "rdfs:comment": "The page on which the work ends; for example \"138\" or \"xvi\".", + "rdfs:label": "pageEnd", + "schema:domainIncludes": [ + { + "@id": "schema:PublicationVolume" + }, + { + "@id": "schema:Article" + }, + { + "@id": "schema:PublicationIssue" + }, + { + "@id": "schema:Chapter" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Integer" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:mapType", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the kind of Map, from the MapCategoryType Enumeration.", + "rdfs:label": "mapType", + "schema:domainIncludes": { + "@id": "schema:Map" + }, + "schema:rangeIncludes": { + "@id": "schema:MapCategoryType" + } + }, + { + "@id": "schema:validFrom", + "@type": "rdf:Property", + "rdfs:comment": "The date when the item becomes valid.", + "rdfs:label": "validFrom", + "schema:domainIncludes": [ + { + "@id": "schema:OpeningHoursSpecification" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Permit" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:LocationFeatureSpecification" + }, + { + "@id": "schema:PriceSpecification" + }, + { + "@id": "schema:MonetaryAmount" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:UKNonprofitType", + "@type": "rdfs:Class", + "rdfs:comment": "UKNonprofitType: Non-profit organization type originating from the United Kingdom.", + "rdfs:label": "UKNonprofitType", + "rdfs:subClassOf": { + "@id": "schema:NonprofitType" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:healthPlanCopay", + "@type": "rdf:Property", + "rdfs:comment": "Whether The copay amount.", + "rdfs:label": "healthPlanCopay", + "schema:domainIncludes": { + "@id": "schema:HealthPlanCostSharingSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:PriceSpecification" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:Diagnostic", + "@type": "schema:MedicalDevicePurpose", + "rdfs:comment": "A medical device used for diagnostic purposes.", + "rdfs:label": "Diagnostic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:departurePlatform", + "@type": "rdf:Property", + "rdfs:comment": "The platform from which the train departs.", + "rdfs:label": "departurePlatform", + "schema:domainIncludes": { + "@id": "schema:TrainTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Ticket", + "@type": "rdfs:Class", + "rdfs:comment": "Used to describe a ticket to an event, a flight, a bus ride, etc.", + "rdfs:label": "Ticket", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:loanPaymentFrequency", + "@type": "rdf:Property", + "rdfs:comment": "Frequency of payments due, i.e. number of months between payments. This is defined as a frequency, i.e. the reciprocal of a period of time.", + "rdfs:label": "loanPaymentFrequency", + "schema:domainIncludes": { + "@id": "schema:RepaymentSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:softwareRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).", + "rdfs:label": "softwareRequirements", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:HowToStep", + "@type": "rdfs:Class", + "rdfs:comment": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.", + "rdfs:label": "HowToStep", + "rdfs:subClassOf": [ + { + "@id": "schema:ListItem" + }, + { + "@id": "schema:ItemList" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:albumReleaseType", + "@type": "rdf:Property", + "rdfs:comment": "The kind of release which this album is: single, EP or album.", + "rdfs:label": "albumReleaseType", + "schema:domainIncludes": { + "@id": "schema:MusicAlbum" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicAlbumReleaseType" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:prescriptionStatus", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.", + "rdfs:label": "prescriptionStatus", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DrugPrescriptionStatus" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Airport", + "@type": "rdfs:Class", + "rdfs:comment": "An airport.", + "rdfs:label": "Airport", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:lesser", + "@type": "rdf:Property", + "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than the object.", + "rdfs:label": "lesser", + "schema:domainIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:rangeIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:Trip", + "@type": "rdfs:Class", + "rdfs:comment": "A trip or journey. An itinerary of visits to one or more places.", + "rdfs:label": "Trip", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + } + }, + { + "@id": "schema:LifestyleModification", + "@type": "rdfs:Class", + "rdfs:comment": "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.", + "rdfs:label": "LifestyleModification", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:fuelConsumption", + "@type": "rdf:Property", + "rdfs:comment": "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\\n\\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel consumption to another value.", + "rdfs:label": "fuelConsumption", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:coach", + "@type": "rdf:Property", + "rdfs:comment": "A person that acts in a coaching role for a sports team.", + "rdfs:label": "coach", + "schema:domainIncludes": { + "@id": "schema:SportsTeam" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:EventRescheduled", + "@type": "schema:EventStatusType", + "rdfs:comment": "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated).", + "rdfs:label": "EventRescheduled" + }, + { + "@id": "schema:ReturnShippingFees", + "@type": "schema:ReturnFeesEnumeration", + "rdfs:comment": "Specifies that the customer must pay the return shipping costs when returning a product", + "rdfs:label": "ReturnShippingFees", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:OrderItem", + "@type": "rdfs:Class", + "rdfs:comment": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.", + "rdfs:label": "OrderItem", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryA1Plus", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryA1Plus", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:BlogPosting", + "@type": "rdfs:Class", + "rdfs:comment": "A blog post.", + "rdfs:label": "BlogPosting", + "rdfs:subClassOf": { + "@id": "schema:SocialMediaPosting" + } + }, + { + "@id": "schema:MerchantReturnPolicy", + "@type": "rdfs:Class", + "rdfs:comment": "A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]], [[Product]], or [[Offer]].", + "rdfs:label": "MerchantReturnPolicy", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:LikeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.", + "rdfs:label": "LikeAction", + "rdfs:subClassOf": { + "@id": "schema:ReactAction" + } + }, + { + "@id": "schema:nonprofitStatus", + "@type": "rdf:Property", + "rdfs:comment": "nonprofit Status indicates the legal status of a non-profit organization in its primary place of business.", + "rdfs:label": "nonprofitStatus", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:NonprofitType" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:ReturnLabelDownloadAndPrint", + "@type": "schema:ReturnLabelSourceEnumeration", + "rdfs:comment": "Indicated that a return label must be downloaded and printed by the customer.", + "rdfs:label": "ReturnLabelDownloadAndPrint", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:vehicleInteriorColor", + "@type": "rdf:Property", + "rdfs:comment": "The color or color combination of the interior of the vehicle.", + "rdfs:label": "vehicleInteriorColor", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:programMembershipUsed", + "@type": "rdf:Property", + "rdfs:comment": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.", + "rdfs:label": "programMembershipUsed", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": { + "@id": "schema:ProgramMembership" + } + }, + { + "@id": "schema:typicalTest", + "@type": "rdf:Property", + "rdfs:comment": "A medical test typically performed given this condition.", + "rdfs:label": "typicalTest", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTest" + } + }, + { + "@id": "schema:playerType", + "@type": "rdf:Property", + "rdfs:comment": "Player type required—for example, Flash or Silverlight.", + "rdfs:label": "playerType", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:numberOfAvailableAccommodationUnits", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]].", + "rdfs:label": "numberOfAvailableAccommodationUnits", + "schema:domainIncludes": [ + { + "@id": "schema:FloorPlan" + }, + { + "@id": "schema:ApartmentComplex" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:percentile90", + "@type": "rdf:Property", + "rdfs:comment": "The 90th percentile value.", + "rdfs:label": "percentile90", + "schema:domainIncludes": { + "@id": "schema:QuantitativeValueDistribution" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:Patient", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/116154003" + }, + "rdfs:comment": "A patient is any person recipient of health care services.", + "rdfs:label": "Patient", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalAudience" + }, + { + "@id": "schema:Person" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MotorcycleDealer", + "@type": "rdfs:Class", + "rdfs:comment": "A motorcycle dealer.", + "rdfs:label": "MotorcycleDealer", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:Nonprofit501d", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.", + "rdfs:label": "Nonprofit501d", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:deliveryStatus", + "@type": "rdf:Property", + "rdfs:comment": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).", + "rdfs:label": "deliveryStatus", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": { + "@id": "schema:DeliveryEvent" + } + }, + { + "@id": "schema:diagram", + "@type": "rdf:Property", + "rdfs:comment": "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.", + "rdfs:label": "diagram", + "schema:domainIncludes": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ImageObject" + } + }, + { + "@id": "schema:fundedItem", + "@type": "rdf:Property", + "rdfs:comment": "Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].", + "rdfs:label": "fundedItem", + "schema:domainIncludes": { + "@id": "schema:Grant" + }, + "schema:inverseOf": { + "@id": "schema:funding" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:BioChemEntity" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:MedicalEntity" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Organization" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1950" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + } + ] + }, + { + "@id": "schema:True", + "@type": "schema:Boolean", + "rdfs:comment": "The boolean value true.", + "rdfs:label": "True" + }, + { + "@id": "schema:softwareAddOn", + "@type": "rdf:Property", + "rdfs:comment": "Additional content for a software application.", + "rdfs:label": "softwareAddOn", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:SoftwareApplication" + } + }, + { + "@id": "schema:NonprofitANBI", + "@type": "schema:NLNonprofitType", + "rdfs:comment": "NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL).", + "rdfs:label": "NonprofitANBI", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:encodesCreativeWork", + "@type": "rdf:Property", + "rdfs:comment": "The CreativeWork encoded by this media object.", + "rdfs:label": "encodesCreativeWork", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:inverseOf": { + "@id": "schema:encoding" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:Atlas", + "@type": "rdfs:Class", + "rdfs:comment": "A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.", + "rdfs:label": "Atlas", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:source": { + "@id": "http://www.productontology.org/id/Atlas" + } + }, + { + "@id": "schema:workTranslation", + "@type": "rdf:Property", + "rdfs:comment": "A work that is a translation of the content of this work. e.g. 西遊記 has an English workTranslation “Journey to the West”,a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.", + "rdfs:label": "workTranslation", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:translationOfWork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:endorsers", + "@type": "rdf:Property", + "rdfs:comment": "People or organizations that endorse the plan.", + "rdfs:label": "endorsers", + "schema:domainIncludes": { + "@id": "schema:Diet" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:EventPostponed", + "@type": "schema:EventStatusType", + "rdfs:comment": "The event has been postponed and no new date has been set. The event's previousStartDate should be set.", + "rdfs:label": "EventPostponed" + }, + { + "@id": "schema:predecessorOf", + "@type": "rdf:Property", + "rdfs:comment": "A pointer from a previous, often discontinued variant of the product to its newer variant.", + "rdfs:label": "predecessorOf", + "schema:domainIncludes": { + "@id": "schema:ProductModel" + }, + "schema:rangeIncludes": { + "@id": "schema:ProductModel" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:duringMedia", + "@type": "rdf:Property", + "rdfs:comment": "A media object representing the circumstances while performing this direction.", + "rdfs:label": "duringMedia", + "schema:domainIncludes": { + "@id": "schema:HowToDirection" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:MediaObject" + } + ] + }, + { + "@id": "schema:diagnosis", + "@type": "rdf:Property", + "rdfs:comment": "One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process.", + "rdfs:label": "diagnosis", + "schema:domainIncludes": [ + { + "@id": "schema:DDxElement" + }, + { + "@id": "schema:Patient" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalCondition" + } + }, + { + "@id": "schema:affiliation", + "@type": "rdf:Property", + "rdfs:comment": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.", + "rdfs:label": "affiliation", + "rdfs:subPropertyOf": { + "@id": "schema:memberOf" + }, + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:UserTweets", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserTweets", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:returnLabelSource", + "@type": "rdf:Property", + "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned for any reason.", + "rdfs:label": "returnLabelSource", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ReturnLabelSourceEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:AskAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.", + "rdfs:label": "AskAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:PodcastEpisode", + "@type": "rdfs:Class", + "rdfs:comment": "A single episode of a podcast series.", + "rdfs:label": "PodcastEpisode", + "rdfs:subClassOf": { + "@id": "schema:Episode" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/373" + } + }, + { + "@id": "schema:Bone", + "@type": "rdfs:Class", + "rdfs:comment": "Rigid connective tissue that comprises up the skeletal structure of the human body.", + "rdfs:label": "Bone", + "rdfs:subClassOf": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:NarcoticConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "Item is a narcotic as defined by the [1961 UN convention](https://www.incb.org/incb/en/narcotic-drugs/Yellowlist/yellow-list.html), for example marijuna or heroin.", + "rdfs:label": "NarcoticConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:MonetaryGrant", + "@type": "rdfs:Class", + "rdfs:comment": "A monetary grant.", + "rdfs:label": "MonetaryGrant", + "rdfs:subClassOf": { + "@id": "schema:Grant" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab" + } + ] + }, + { + "@id": "schema:EducationalAudience", + "@type": "rdfs:Class", + "rdfs:comment": "An EducationalAudience.", + "rdfs:label": "EducationalAudience", + "rdfs:subClassOf": { + "@id": "schema:Audience" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass" + } + }, + { + "@id": "schema:SafetyHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about the safety-related aspects of a health topic.", + "rdfs:label": "SafetyHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2799" + } + }, + { + "@id": "schema:suggestedAnswer", + "@type": "rdf:Property", + "rdfs:comment": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.", + "rdfs:label": "suggestedAnswer", + "schema:domainIncludes": { + "@id": "schema:Question" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ItemList" + }, + { + "@id": "schema:Answer" + } + ] + }, + { + "@id": "schema:claimReviewed", + "@type": "rdf:Property", + "rdfs:comment": "A short summary of the specific claims reviewed in a ClaimReview.", + "rdfs:label": "claimReviewed", + "schema:domainIncludes": { + "@id": "schema:ClaimReview" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1061" + } + }, + { + "@id": "schema:experienceRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Description of skills and experience needed for the position or Occupation.", + "rdfs:label": "experienceRequirements", + "schema:domainIncludes": [ + { + "@id": "schema:Occupation" + }, + { + "@id": "schema:JobPosting" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:OccupationalExperienceRequirements" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:publicAccess", + "@type": "rdf:Property", + "rdfs:comment": "A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value", + "rdfs:label": "publicAccess", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:broadcastChannelId", + "@type": "rdf:Property", + "rdfs:comment": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.", + "rdfs:label": "broadcastChannelId", + "schema:domainIncludes": { + "@id": "schema:BroadcastChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:numberOfAxles", + "@type": "rdf:Property", + "rdfs:comment": "The number of axles.\\n\\nTypical unit code(s): C62", + "rdfs:label": "numberOfAxles", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:CompoundPriceSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption. Use the name property of the attached unit price specification for indicating the dimension of a price component (e.g. \"electricity\" or \"final cleaning\").", + "rdfs:label": "CompoundPriceSpecification", + "rdfs:subClassOf": { + "@id": "schema:PriceSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:SizeSystemMetric", + "@type": "schema:SizeSystemEnumeration", + "rdfs:comment": "Metric size system.", + "rdfs:label": "SizeSystemMetric", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:Nonprofit501c25", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.", + "rdfs:label": "Nonprofit501c25", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:isLocatedInSubcellularLocation", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/BioChemEntity" + }, + "rdfs:comment": "Subcellular location where this BioChemEntity is located; please use PropertyValue if you want to include any evidence.", + "rdfs:label": "isLocatedInSubcellularLocation", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:BodyOfWater", + "@type": "rdfs:Class", + "rdfs:comment": "A body of water, such as a sea, ocean, or lake.", + "rdfs:label": "BodyOfWater", + "rdfs:subClassOf": { + "@id": "schema:Landform" + } + }, + { + "@id": "schema:Season", + "@type": "rdfs:Class", + "rdfs:comment": "A media season e.g. tv, radio, video game etc.", + "rdfs:label": "Season", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:supersededBy": { + "@id": "schema:CreativeWorkSeason" + } + }, + { + "@id": "schema:geoCrosses", + "@type": "rdf:Property", + "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", + "rdfs:label": "geoCrosses", + "schema:domainIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ] + }, + { + "@id": "schema:timeToComplete", + "@type": "rdf:Property", + "rdfs:comment": "The expected length of time to complete the program if attending full-time.", + "rdfs:label": "timeToComplete", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Duration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:arrivalGate", + "@type": "rdf:Property", + "rdfs:comment": "Identifier of the flight's arrival gate.", + "rdfs:label": "arrivalGate", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:containedInPlace", + "@type": "rdf:Property", + "rdfs:comment": "The basic containment relation between a place and one that contains it.", + "rdfs:label": "containedInPlace", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:inverseOf": { + "@id": "schema:containsPlace" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:significantLink", + "@type": "rdf:Property", + "rdfs:comment": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.", + "rdfs:label": "significantLink", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:deliveryTime", + "@type": "rdf:Property", + "rdfs:comment": "The total delay between the receipt of the order and the goods reaching the final customer.", + "rdfs:label": "deliveryTime", + "schema:domainIncludes": [ + { + "@id": "schema:DeliveryTimeSettings" + }, + { + "@id": "schema:OfferShippingDetails" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ShippingDeliveryTime" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:SteeringPositionValue", + "@type": "rdfs:Class", + "rdfs:comment": "A value indicating a steering position.", + "rdfs:label": "SteeringPositionValue", + "rdfs:subClassOf": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:infectiousAgentClass", + "@type": "rdf:Property", + "rdfs:comment": "The class of infectious agent (bacteria, prion, etc.) that causes the disease.", + "rdfs:label": "infectiousAgentClass", + "schema:domainIncludes": { + "@id": "schema:InfectiousDisease" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:InfectiousAgentClass" + } + }, + { + "@id": "schema:arterialBranch", + "@type": "rdf:Property", + "rdfs:comment": "The branches that comprise the arterial structure.", + "rdfs:label": "arterialBranch", + "schema:domainIncludes": { + "@id": "schema:Artery" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + } + }, + { + "@id": "schema:DataType", + "@type": "rdfs:Class", + "rdfs:comment": "The basic data types such as Integers, Strings, etc.", + "rdfs:label": "DataType", + "rdfs:subClassOf": { + "@id": "rdfs:Class" + } + }, + { + "@id": "schema:JoinAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.", + "rdfs:label": "JoinAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:GameServer", + "@type": "rdfs:Class", + "rdfs:comment": "Server that provides game interaction in a multiplayer game.", + "rdfs:label": "GameServer", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:customerRemorseReturnShippingFeesAmount", + "@type": "rdf:Property", + "rdfs:comment": "The amount of shipping costs if a product is returned due to customer remorse. Applicable when property [[customerRemorseReturnFees]] equals [[ReturnShippingFees]].", + "rdfs:label": "customerRemorseReturnShippingFeesAmount", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:MediaSubscription", + "@type": "rdfs:Class", + "rdfs:comment": "A subscription which allows a user to access media including audio, video, books, etc.", + "rdfs:label": "MediaSubscription", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + }, + { + "@id": "schema:backstory", + "@type": "rdf:Property", + "rdfs:comment": "For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.", + "rdfs:label": "backstory", + "schema:domainIncludes": { + "@id": "schema:Article" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1688" + } + ] + }, + { + "@id": "schema:editor", + "@type": "rdf:Property", + "rdfs:comment": "Specifies the Person who edited the CreativeWork.", + "rdfs:label": "editor", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:ClaimReview", + "@type": "rdfs:Class", + "rdfs:comment": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).", + "rdfs:label": "ClaimReview", + "rdfs:subClassOf": { + "@id": "schema:Review" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1061" + } + }, + { + "@id": "schema:Locksmith", + "@type": "rdfs:Class", + "rdfs:comment": "A locksmith.", + "rdfs:label": "Locksmith", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:Attorney", + "@type": "rdfs:Class", + "rdfs:comment": "Professional service: Attorney. \\n\\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.", + "rdfs:label": "Attorney", + "rdfs:subClassOf": { + "@id": "schema:LegalService" + } + }, + { + "@id": "schema:discount", + "@type": "rdf:Property", + "rdfs:comment": "Any discount applied (to an Order).", + "rdfs:label": "discount", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ] + }, + { + "@id": "schema:RefundTypeEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates several kinds of product return refund types.", + "rdfs:label": "RefundTypeEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:applicationSuite", + "@type": "rdf:Property", + "rdfs:comment": "The name of the application suite to which the application belongs (e.g. Excel belongs to Office).", + "rdfs:label": "applicationSuite", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:EnergyStarEnergyEfficiencyEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Used to indicate whether a product is EnergyStar certified.", + "rdfs:label": "EnergyStarEnergyEfficiencyEnumeration", + "rdfs:subClassOf": { + "@id": "schema:EnergyEfficiencyEnumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:isVariantOf", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.", + "rdfs:label": "isVariantOf", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:ProductModel" + } + ], + "schema:inverseOf": { + "@id": "schema:hasVariant" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ProductModel" + }, + { + "@id": "schema:ProductGroup" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:WearableMeasurementWidth", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the width, for example of shoes", + "rdfs:label": "WearableMeasurementWidth", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:refundType", + "@type": "rdf:Property", + "rdfs:comment": "A refund type, from an enumerated list.", + "rdfs:label": "refundType", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:RefundTypeEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:Nonprofit501c15", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.", + "rdfs:label": "Nonprofit501c15", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:MusicStore", + "@type": "rdfs:Class", + "rdfs:comment": "A music store.", + "rdfs:label": "MusicStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:healthcareReportingData", + "@type": "rdf:Property", + "rdfs:comment": "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].", + "rdfs:label": "healthcareReportingData", + "schema:domainIncludes": { + "@id": "schema:Hospital" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Dataset" + }, + { + "@id": "schema:CDCPMDRecord" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:ImageGallery", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Image gallery page.", + "rdfs:label": "ImageGallery", + "rdfs:subClassOf": { + "@id": "schema:MediaGallery" + } + }, + { + "@id": "schema:siblings", + "@type": "rdf:Property", + "rdfs:comment": "A sibling of the person.", + "rdfs:label": "siblings", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:sibling" + } + }, + { + "@id": "schema:dateSent", + "@type": "rdf:Property", + "rdfs:comment": "The date/time at which the message was sent.", + "rdfs:label": "dateSent", + "schema:domainIncludes": { + "@id": "schema:Message" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:DDxElement", + "@type": "rdfs:Class", + "rdfs:comment": "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.", + "rdfs:label": "DDxElement", + "rdfs:subClassOf": { + "@id": "schema:MedicalIntangible" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:availabilityEnds", + "@type": "rdf:Property", + "rdfs:comment": "The end of the availability of the product or service included in the offer.", + "rdfs:label": "availabilityEnds", + "schema:domainIncludes": [ + { + "@id": "schema:ActionAccessSpecification" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Time" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + ] + }, + { + "@id": "schema:SoftwareApplication", + "@type": "rdfs:Class", + "rdfs:comment": "A software application.", + "rdfs:label": "SoftwareApplication", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:endorsee", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The person/organization being supported.", + "rdfs:label": "endorsee", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:EndorseAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:ConfirmAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.", + "rdfs:label": "ConfirmAction", + "rdfs:subClassOf": { + "@id": "schema:InformAction" + } + }, + { + "@id": "schema:creditText", + "@type": "rdf:Property", + "rdfs:comment": "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.", + "rdfs:label": "creditText", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2659" + } + }, + { + "@id": "schema:servicePhone", + "@type": "rdf:Property", + "rdfs:comment": "The phone number to use to access the service.", + "rdfs:label": "servicePhone", + "schema:domainIncludes": { + "@id": "schema:ServiceChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:ContactPoint" + } + }, + { + "@id": "schema:expectedArrivalFrom", + "@type": "rdf:Property", + "rdfs:comment": "The earliest date the package may arrive.", + "rdfs:label": "expectedArrivalFrom", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:biomechnicalClass", + "@type": "rdf:Property", + "rdfs:comment": "The biomechanical properties of the bone.", + "rdfs:label": "biomechnicalClass", + "schema:domainIncludes": { + "@id": "schema:Joint" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:publishedOn", + "@type": "rdf:Property", + "rdfs:comment": "A broadcast service associated with the publication event.", + "rdfs:label": "publishedOn", + "schema:domainIncludes": { + "@id": "schema:PublicationEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:BroadcastService" + } + }, + { + "@id": "schema:sport", + "@type": "rdf:Property", + "rdfs:comment": "A type of sport (e.g. Baseball).", + "rdfs:label": "sport", + "schema:domainIncludes": [ + { + "@id": "schema:SportsEvent" + }, + { + "@id": "schema:SportsOrganization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1951" + } + }, + { + "@id": "schema:ownedThrough", + "@type": "rdf:Property", + "rdfs:comment": "The date and time of giving up ownership on the product.", + "rdfs:label": "ownedThrough", + "schema:domainIncludes": { + "@id": "schema:OwnershipInfo" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:diet", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. The diet used in this action.", + "rdfs:label": "diet", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Diet" + } + }, + { + "@id": "schema:PreventionHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.", + "rdfs:label": "PreventionHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:amenityFeature", + "@type": "rdf:Property", + "rdfs:comment": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.", + "rdfs:label": "amenityFeature", + "schema:domainIncludes": [ + { + "@id": "schema:FloorPlan" + }, + { + "@id": "schema:Accommodation" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:LodgingBusiness" + } + ], + "schema:rangeIncludes": { + "@id": "schema:LocationFeatureSpecification" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:recognizedBy", + "@type": "rdf:Property", + "rdfs:comment": "An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.", + "rdfs:label": "recognizedBy", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalCredential" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + }, + { + "@id": "schema:encodesBioChemEntity", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Gene" + }, + "rdfs:comment": "Another BioChemEntity encoded by this one. ", + "rdfs:label": "encodesBioChemEntity", + "schema:domainIncludes": { + "@id": "schema:Gene" + }, + "schema:inverseOf": { + "@id": "schema:isEncodedByBioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BioChemEntity" + } + }, + { + "@id": "schema:Nonprofit501c12", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c12: Non-profit type referring to Benevolent Life Insurance Associations, Mutual Ditch or Irrigation Companies, Mutual or Cooperative Telephone Companies.", + "rdfs:label": "Nonprofit501c12", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:UserCheckins", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserCheckins", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:SizeGroupEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates common size groups for various product categories.", + "rdfs:label": "SizeGroupEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:EnrollingByInvitation", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Enrolling participants by invitation only.", + "rdfs:label": "EnrollingByInvitation", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:SocialMediaPosting", + "@type": "rdfs:Class", + "rdfs:comment": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.", + "rdfs:label": "SocialMediaPosting", + "rdfs:subClassOf": { + "@id": "schema:Article" + } + }, + { + "@id": "schema:healthPlanCopayOption", + "@type": "rdf:Property", + "rdfs:comment": "Whether the copay is before or after deductible, etc. TODO: Is this a closed set?", + "rdfs:label": "healthPlanCopayOption", + "schema:domainIncludes": { + "@id": "schema:HealthPlanCostSharingSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:HowToTool", + "@type": "rdfs:Class", + "rdfs:comment": "A tool used (but not consumed) when performing instructions for how to achieve a result.", + "rdfs:label": "HowToTool", + "rdfs:subClassOf": { + "@id": "schema:HowToItem" + } + }, + { + "@id": "schema:Ligament", + "@type": "rdfs:Class", + "rdfs:comment": "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.", + "rdfs:label": "Ligament", + "rdfs:subClassOf": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:GameServerStatus", + "@type": "rdfs:Class", + "rdfs:comment": "Status of a game server.", + "rdfs:label": "GameServerStatus", + "rdfs:subClassOf": { + "@id": "schema:StatusEnumeration" + } + }, + { + "@id": "schema:runtimePlatform", + "@type": "rdf:Property", + "rdfs:comment": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", + "rdfs:label": "runtimePlatform", + "schema:domainIncludes": { + "@id": "schema:SoftwareSourceCode" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:serviceOperator", + "@type": "rdf:Property", + "rdfs:comment": "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.", + "rdfs:label": "serviceOperator", + "schema:domainIncludes": { + "@id": "schema:GovernmentService" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:LivingWithHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Information about coping or life related to the topic.", + "rdfs:label": "LivingWithHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:slogan", + "@type": "rdf:Property", + "rdfs:comment": "A slogan or motto associated with the item.", + "rdfs:label": "slogan", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Brand" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:proprietaryName", + "@type": "rdf:Property", + "rdfs:comment": "Proprietary name given to the diet plan, typically by its originator or creator.", + "rdfs:label": "proprietaryName", + "schema:domainIncludes": [ + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DietarySupplement" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:executableLibraryName", + "@type": "rdf:Property", + "rdfs:comment": "Library file name e.g., mscorlib.dll, system.web.dll.", + "rdfs:label": "executableLibraryName", + "schema:domainIncludes": { + "@id": "schema:APIReference" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:drugClass", + "@type": "rdf:Property", + "rdfs:comment": "The class of drug this belongs to (e.g., statins).", + "rdfs:label": "drugClass", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DrugClass" + } + }, + { + "@id": "schema:MedicalRiskEstimator", + "@type": "rdfs:Class", + "rdfs:comment": "Any rule set or interactive tool for estimating the risk of developing a complication or condition.", + "rdfs:label": "MedicalRiskEstimator", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:occupationalCredentialAwarded", + "@type": "rdf:Property", + "rdfs:comment": "A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.", + "rdfs:label": "occupationalCredentialAwarded", + "schema:domainIncludes": [ + { + "@id": "schema:Course" + }, + { + "@id": "schema:EducationalOccupationalProgram" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:EducationalOccupationalCredential" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:Apartment", + "@type": "rdfs:Class", + "rdfs:comment": "An apartment (in American English) or flat (in British English) is a self-contained housing unit (a type of residential real estate) that occupies only part of a building (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Apartment).", + "rdfs:label": "Apartment", + "rdfs:subClassOf": { + "@id": "schema:Accommodation" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:availableLanguage", + "@type": "rdf:Property", + "rdfs:comment": "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]", + "rdfs:label": "availableLanguage", + "schema:domainIncludes": [ + { + "@id": "schema:ServiceChannel" + }, + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:TouristAttraction" + }, + { + "@id": "schema:LodgingBusiness" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Language" + } + ] + }, + { + "@id": "schema:prescribingInfo", + "@type": "rdf:Property", + "rdfs:comment": "Link to prescribing information for the drug.", + "rdfs:label": "prescribingInfo", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:Nonprofit501c13", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c13: Non-profit type referring to Cemetery Companies.", + "rdfs:label": "Nonprofit501c13", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:recourseLoan", + "@type": "rdf:Property", + "rdfs:comment": "The only way you get the money back in the event of default is the security. Recourse is where you still have the opportunity to go back to the borrower for the rest of the money.", + "rdfs:label": "recourseLoan", + "schema:domainIncludes": { + "@id": "schema:LoanOrCredit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:modelDate", + "@type": "rdf:Property", + "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).", + "rdfs:label": "modelDate", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:WearableSizeSystemGS1", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "GS1 (formerly NRF) size system for wearables.", + "rdfs:label": "WearableSizeSystemGS1", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:sportsActivityLocation", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The sports activity location where this action occurred.", + "rdfs:label": "sportsActivityLocation", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:rangeIncludes": { + "@id": "schema:SportsActivityLocation" + } + }, + { + "@id": "schema:associatedReview", + "@type": "rdf:Property", + "rdfs:comment": "An associated [[Review]].", + "rdfs:label": "associatedReview", + "schema:domainIncludes": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Review" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:WebPage", + "@type": "rdfs:Class", + "rdfs:comment": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.", + "rdfs:label": "WebPage", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:ethicsPolicy", + "@type": "rdf:Property", + "rdfs:comment": "Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.", + "rdfs:label": "ethicsPolicy", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:NewsMediaOrganization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + }, + { + "@id": "schema:Preschool", + "@type": "rdfs:Class", + "rdfs:comment": "A preschool.", + "rdfs:label": "Preschool", + "rdfs:subClassOf": { + "@id": "schema:EducationalOrganization" + } + }, + { + "@id": "schema:OnSitePickup", + "@type": "schema:DeliveryMethod", + "rdfs:comment": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.", + "rdfs:label": "OnSitePickup" + }, + { + "@id": "schema:jobBenefits", + "@type": "rdf:Property", + "rdfs:comment": "Description of benefits associated with the job.", + "rdfs:label": "jobBenefits", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:eligibleRegion", + "@type": "rdf:Property", + "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\\n\\nSee also [[ineligibleRegion]].\n ", + "rdfs:label": "eligibleRegion", + "rdfs:subPropertyOf": { + "@id": "schema:areaServed" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:DeliveryChargeSpecification" + }, + { + "@id": "schema:ActionAccessSpecification" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GeoShape" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:Place" + } + ], + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + ] + }, + { + "@id": "schema:includedInHealthInsurancePlan", + "@type": "rdf:Property", + "rdfs:comment": "The insurance plans that cover this drug.", + "rdfs:label": "includedInHealthInsurancePlan", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:HealthPlanNetwork", + "@type": "rdfs:Class", + "rdfs:comment": "A US-style health insurance plan network. ", + "rdfs:label": "HealthPlanNetwork", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:ScreeningHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about how to screen or further filter a topic.", + "rdfs:label": "ScreeningHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:birthPlace", + "@type": "rdf:Property", + "rdfs:comment": "The place where the person was born.", + "rdfs:label": "birthPlace", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:MedicalSpecialty", + "@type": "rdfs:Class", + "rdfs:comment": "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.", + "rdfs:label": "MedicalSpecialty", + "rdfs:subClassOf": [ + { + "@id": "schema:Specialty" + }, + { + "@id": "schema:MedicalEnumeration" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:inSupportOf", + "@type": "rdf:Property", + "rdfs:comment": "Qualification, candidature, degree, application that Thesis supports.", + "rdfs:label": "inSupportOf", + "schema:domainIncludes": { + "@id": "schema:Thesis" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Resort", + "@type": "rdfs:Class", + "rdfs:comment": "A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations. Resorts are places, towns or sometimes commercial establishment operated by a single company (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Resort).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n ", + "rdfs:label": "Resort", + "rdfs:subClassOf": { + "@id": "schema:LodgingBusiness" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:photos", + "@type": "rdf:Property", + "rdfs:comment": "Photographs of this place.", + "rdfs:label": "photos", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ImageObject" + }, + { + "@id": "schema:Photograph" + } + ], + "schema:supersededBy": { + "@id": "schema:photo" + } + }, + { + "@id": "schema:MayTreatHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Related topics may be treated by a Topic.", + "rdfs:label": "MayTreatHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:broadcastOfEvent", + "@type": "rdf:Property", + "rdfs:comment": "The event being broadcast such as a sporting event or awards ceremony.", + "rdfs:label": "broadcastOfEvent", + "schema:domainIncludes": { + "@id": "schema:BroadcastEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:termDuration", + "@type": "rdf:Property", + "rdfs:comment": "The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term.", + "rdfs:label": "termDuration", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Duration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:AudiobookFormat", + "@type": "schema:BookFormatType", + "rdfs:comment": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.", + "rdfs:label": "AudiobookFormat" + }, + { + "@id": "schema:MedicalStudyStatus", + "@type": "rdfs:Class", + "rdfs:comment": "The status of a medical study. Enumerated type.", + "rdfs:label": "MedicalStudyStatus", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:hasDefinedTerm", + "@type": "rdf:Property", + "rdfs:comment": "A Defined Term contained in this term set.", + "rdfs:label": "hasDefinedTerm", + "schema:domainIncludes": [ + { + "@id": "schema:DefinedTermSet" + }, + { + "@id": "schema:Taxon" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DefinedTerm" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:CourseInstance", + "@type": "rdfs:Class", + "rdfs:comment": "An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.", + "rdfs:label": "CourseInstance", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:HowTo", + "@type": "rdfs:Class", + "rdfs:comment": "Instructions that explain how to achieve a result by performing a sequence of steps.", + "rdfs:label": "HowTo", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:PublicationEvent", + "@type": "rdfs:Class", + "rdfs:comment": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.", + "rdfs:label": "PublicationEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:InForce", + "@type": "schema:LegalForceStatus", + "rdfs:comment": "Indicates that a legislation is in force.", + "rdfs:label": "InForce", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#InForce-inForce" + } + }, + { + "@id": "schema:energyEfficiencyScaleMax", + "@type": "rdf:Property", + "rdfs:comment": "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.", + "rdfs:label": "energyEfficiencyScaleMax", + "schema:domainIncludes": { + "@id": "schema:EnergyConsumptionDetails" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:EUEnergyEfficiencyEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:nonProprietaryName", + "@type": "rdf:Property", + "rdfs:comment": "The generic name of this drug or supplement.", + "rdfs:label": "nonProprietaryName", + "schema:domainIncludes": [ + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DietarySupplement" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:departureBusStop", + "@type": "rdf:Property", + "rdfs:comment": "The stop or station from which the bus departs.", + "rdfs:label": "departureBusStop", + "schema:domainIncludes": { + "@id": "schema:BusTrip" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:BusStop" + }, + { + "@id": "schema:BusStation" + } + ] + }, + { + "@id": "schema:liveBlogUpdate", + "@type": "rdf:Property", + "rdfs:comment": "An update to the LiveBlog.", + "rdfs:label": "liveBlogUpdate", + "schema:domainIncludes": { + "@id": "schema:LiveBlogPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:BlogPosting" + } + }, + { + "@id": "schema:SomeProducts", + "@type": "rdfs:Class", + "rdfs:comment": "A placeholder for multiple similar products of the same kind.", + "rdfs:label": "SomeProducts", + "rdfs:subClassOf": { + "@id": "schema:Product" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:recordedAt", + "@type": "rdf:Property", + "rdfs:comment": "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.", + "rdfs:label": "recordedAt", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:recordedIn" + }, + "schema:rangeIncludes": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:albums", + "@type": "rdf:Property", + "rdfs:comment": "A collection of music albums.", + "rdfs:label": "albums", + "schema:domainIncludes": { + "@id": "schema:MusicGroup" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicAlbum" + }, + "schema:supersededBy": { + "@id": "schema:album" + } + }, + { + "@id": "schema:WeaponConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears.", + "rdfs:label": "WeaponConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:Code", + "@type": "rdfs:Class", + "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.", + "rdfs:label": "Code", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:supersededBy": { + "@id": "schema:SoftwareSourceCode" + } + }, + { + "@id": "schema:DiscoverAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of discovering/finding an object.", + "rdfs:label": "DiscoverAction", + "rdfs:subClassOf": { + "@id": "schema:FindAction" + } + }, + { + "@id": "schema:salaryCurrency", + "@type": "rdf:Property", + "rdfs:comment": "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee.", + "rdfs:label": "salaryCurrency", + "schema:domainIncludes": [ + { + "@id": "schema:EmployeeRole" + }, + { + "@id": "schema:JobPosting" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:brand", + "@type": "rdf:Property", + "rdfs:comment": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.", + "rdfs:label": "brand", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Brand" + } + ] + }, + { + "@id": "schema:UKTrust", + "@type": "schema:UKNonprofitType", + "rdfs:comment": "UKTrust: Non-profit type referring to a UK trust.", + "rdfs:label": "UKTrust", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:manufacturer", + "@type": "rdf:Property", + "rdfs:comment": "The manufacturer of the product.", + "rdfs:label": "manufacturer", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DietarySupplement" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:geoCovers", + "@type": "rdf:Property", + "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", + "rdfs:label": "geoCovers", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ] + }, + { + "@id": "schema:EditedOrCroppedContent", + "@type": "schema:MediaManipulationRatingEnumeration", + "rdfs:comment": "Content coded 'edited or cropped content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'edited or cropped content': The video has been edited or rearranged. This category applies to time edits, including editing multiple videos together to alter the story being told or editing out large portions from a video.\n\nFor an [[ImageObject]] to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[ImageObject]] with embedded text to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[AudioObject]] to be 'edited or cropped content': The audio has been edited or rearranged. This category applies to time edits, including editing multiple audio clips together to alter the story being told or editing out large portions from the recording.\n", + "rdfs:label": "EditedOrCroppedContent", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:FinancialService", + "@type": "rdfs:Class", + "rdfs:comment": "Financial services business.", + "rdfs:label": "FinancialService", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:EmploymentAgency", + "@type": "rdfs:Class", + "rdfs:comment": "An employment agency.", + "rdfs:label": "EmploymentAgency", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:InteractionCounter", + "@type": "rdfs:Class", + "rdfs:comment": "A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.", + "rdfs:label": "InteractionCounter", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + } + }, + { + "@id": "schema:interactionService", + "@type": "rdf:Property", + "rdfs:comment": "The WebSite or SoftwareApplication where the interactions took place.", + "rdfs:label": "interactionService", + "schema:domainIncludes": { + "@id": "schema:InteractionCounter" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:SoftwareApplication" + }, + { + "@id": "schema:WebSite" + } + ] + }, + { + "@id": "schema:penciler", + "@type": "rdf:Property", + "rdfs:comment": "The individual who draws the primary narrative artwork.", + "rdfs:label": "penciler", + "schema:domainIncludes": [ + { + "@id": "schema:VisualArtwork" + }, + { + "@id": "schema:ComicStory" + }, + { + "@id": "schema:ComicIssue" + } + ], + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:containedIn", + "@type": "rdf:Property", + "rdfs:comment": "The basic containment relation between a place and one that contains it.", + "rdfs:label": "containedIn", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + }, + "schema:supersededBy": { + "@id": "schema:containedInPlace" + } + }, + { + "@id": "schema:LiveBlogPosting", + "@type": "rdfs:Class", + "rdfs:comment": "A [[LiveBlogPosting]] is a [[BlogPosting]] intended to provide a rolling textual coverage of an ongoing event through continuous updates.", + "rdfs:label": "LiveBlogPosting", + "rdfs:subClassOf": { + "@id": "schema:BlogPosting" + } + }, + { + "@id": "schema:urlTemplate", + "@type": "rdf:Property", + "rdfs:comment": "An url template (RFC6570) that will be used to construct the target of the execution of the action.", + "rdfs:label": "urlTemplate", + "schema:domainIncludes": { + "@id": "schema:EntryPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:WearableSizeSystemMX", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "Mexican size system for wearables.", + "rdfs:label": "WearableSizeSystemMX", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:FDAcategoryD", + "@type": "schema:DrugPregnancyCategory", + "rdfs:comment": "A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.", + "rdfs:label": "FDAcategoryD", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:option", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The options subject to this action.", + "rdfs:label": "option", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:ChooseAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Thing" + } + ], + "schema:supersededBy": { + "@id": "schema:actionOption" + } + }, + { + "@id": "schema:editEIDR", + "@type": "rdf:Property", + "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" whose [[titleEIDR]] is \"10.5240/7EC7-228A-510A-053E-CBB8-J\", has several edits e.g. \"10.5240/1F2A-E1C5-680A-14C6-E76B-I\" and \"10.5240/8A35-3BEE-6497-5D12-9E4F-3\".\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n", + "rdfs:label": "editEIDR", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2469" + } + }, + { + "@id": "schema:AskPublicNewsArticle", + "@type": "rdfs:Class", + "rdfs:comment": "A [[NewsArticle]] expressing an open call by a [[NewsMediaOrganization]] asking the public for input, insights, clarifications, anecdotes, documentation, etc., on an issue, for reporting purposes.", + "rdfs:label": "AskPublicNewsArticle", + "rdfs:subClassOf": { + "@id": "schema:NewsArticle" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:Substance", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/105590001" + }, + "rdfs:comment": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.", + "rdfs:label": "Substance", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryA", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryA", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:paymentStatus", + "@type": "rdf:Property", + "rdfs:comment": "The status of payment; whether the invoice has been paid or not.", + "rdfs:label": "paymentStatus", + "schema:domainIncludes": { + "@id": "schema:Invoice" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:PaymentStatusType" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:WearableSizeSystemEN13402", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "EN 13402 (joint European standard for size labelling of clothes).", + "rdfs:label": "WearableSizeSystemEN13402", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:recordingOf", + "@type": "rdf:Property", + "rdfs:comment": "The composition this track is a recording of.", + "rdfs:label": "recordingOf", + "schema:domainIncludes": { + "@id": "schema:MusicRecording" + }, + "schema:inverseOf": { + "@id": "schema:recordedAs" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:medicalSpecialty", + "@type": "rdf:Property", + "rdfs:comment": "A medical specialty of the provider.", + "rdfs:label": "medicalSpecialty", + "schema:domainIncludes": [ + { + "@id": "schema:Hospital" + }, + { + "@id": "schema:MedicalOrganization" + }, + { + "@id": "schema:Physician" + }, + { + "@id": "schema:MedicalClinic" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalSpecialty" + } + }, + { + "@id": "schema:dateRead", + "@type": "rdf:Property", + "rdfs:comment": "The date/time at which the message has been read by the recipient if a single recipient exists.", + "rdfs:label": "dateRead", + "schema:domainIncludes": { + "@id": "schema:Message" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:ActivationFee", + "@type": "schema:PriceComponentTypeEnumeration", + "rdfs:comment": "Represents the activation fee part of the total price for an offered product, for example a cellphone contract.", + "rdfs:label": "ActivationFee", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:RadioSeason", + "@type": "rdfs:Class", + "rdfs:comment": "Season dedicated to radio broadcast and associated online delivery.", + "rdfs:label": "RadioSeason", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeason" + } + }, + { + "@id": "schema:numberOfDoors", + "@type": "rdf:Property", + "rdfs:comment": "The number of doors.\\n\\nTypical unit code(s): C62", + "rdfs:label": "numberOfDoors", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:CreativeWorkSeries", + "@type": "rdfs:Class", + "rdfs:comment": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t ", + "rdfs:label": "CreativeWorkSeries", + "rdfs:subClassOf": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Series" + } + ] + }, + { + "@id": "schema:publicTransportClosuresInfo", + "@type": "rdf:Property", + "rdfs:comment": "Information about public transport closures.", + "rdfs:label": "publicTransportClosuresInfo", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:WebContent" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:BusinessEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Business event.", + "rdfs:label": "BusinessEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:Number", + "@type": [ + "rdfs:Class", + "schema:DataType" + ], + "rdfs:comment": "Data type: Number.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.", + "rdfs:label": "Number" + }, + { + "@id": "schema:hasDriveThroughService", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.", + "rdfs:label": "hasDriveThroughService", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:Nonprofit501c26", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.", + "rdfs:label": "Nonprofit501c26", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:OTC", + "@type": "schema:DrugPrescriptionStatus", + "rdfs:comment": "The character of a medical substance, typically a medicine, of being available over the counter or not.", + "rdfs:label": "OTC", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:hasCategoryCode", + "@type": "rdf:Property", + "rdfs:comment": "A Category code contained in this code set.", + "rdfs:label": "hasCategoryCode", + "rdfs:subPropertyOf": { + "@id": "schema:hasDefinedTerm" + }, + "schema:domainIncludes": { + "@id": "schema:CategoryCodeSet" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:CategoryCode" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/894" + } + }, + { + "@id": "schema:AssessAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of forming one's opinion, reaction or sentiment.", + "rdfs:label": "AssessAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:EventSeries", + "@type": "rdfs:Class", + "rdfs:comment": "A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property.\n\nAn EventSeries is a collection of events that share some unifying characteristic. For example, \"The Olympic Games\" is a series, which\nis repeated regularly. The \"2012 London Olympics\" can be presented both as an [[Event]] in the series \"Olympic Games\", and as an\n[[EventSeries]] that included a number of sporting competitions as Events.\n\nThe nature of the association between the events in an [[EventSeries]] can vary, but typical examples could\ninclude a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers.\n\nEventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without\nworrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries\nmay seem more Event-like when the period of time is compact and when aspects such as location are fixed, but\nit may also sometimes prove useful to describe a longer-term series as an Event.\n ", + "rdfs:label": "EventSeries", + "rdfs:subClassOf": [ + { + "@id": "schema:Series" + }, + { + "@id": "schema:Event" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/447" + } + }, + { + "@id": "schema:AudioObjectSnapshot", + "@type": "rdfs:Class", + "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[AudioObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.", + "rdfs:label": "AudioObjectSnapshot", + "rdfs:subClassOf": { + "@id": "schema:AudioObject" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:description", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "dcterms:description" + }, + "rdfs:comment": "A description of the item.", + "rdfs:label": "description", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:BeautySalon", + "@type": "rdfs:Class", + "rdfs:comment": "Beauty salon.", + "rdfs:label": "BeautySalon", + "rdfs:subClassOf": { + "@id": "schema:HealthAndBeautyBusiness" + } + }, + { + "@id": "schema:FoodService", + "@type": "rdfs:Class", + "rdfs:comment": "A food service, like breakfast, lunch, or dinner.", + "rdfs:label": "FoodService", + "rdfs:subClassOf": { + "@id": "schema:Service" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:Nonprofit501c8", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.", + "rdfs:label": "Nonprofit501c8", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:PodcastSeason", + "@type": "rdfs:Class", + "rdfs:comment": "A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used.", + "rdfs:label": "PodcastSeason", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeason" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/373" + } + }, + { + "@id": "schema:supersededBy", + "@type": "rdf:Property", + "rdfs:comment": "Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", + "rdfs:label": "supersededBy", + "schema:domainIncludes": [ + { + "@id": "schema:Class" + }, + { + "@id": "schema:Property" + }, + { + "@id": "schema:Enumeration" + } + ], + "schema:isPartOf": { + "@id": "https://meta.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Enumeration" + }, + { + "@id": "schema:Class" + }, + { + "@id": "schema:Property" + } + ] + }, + { + "@id": "schema:duration", + "@type": "rdf:Property", + "rdfs:comment": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).", + "rdfs:label": "duration", + "schema:domainIncludes": [ + { + "@id": "schema:Episode" + }, + { + "@id": "schema:MusicRecording" + }, + { + "@id": "schema:MediaObject" + }, + { + "@id": "schema:Audiobook" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:QuantitativeValueDistribution" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:MusicRelease" + }, + { + "@id": "schema:Schedule" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Duration" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + ] + }, + { + "@id": "schema:priceRange", + "@type": "rdf:Property", + "rdfs:comment": "The price range of the business, for example ```$$$```.", + "rdfs:label": "priceRange", + "schema:domainIncludes": { + "@id": "schema:LocalBusiness" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:BusinessAudience", + "@type": "rdfs:Class", + "rdfs:comment": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.", + "rdfs:label": "BusinessAudience", + "rdfs:subClassOf": { + "@id": "schema:Audience" + } + }, + { + "@id": "schema:author", + "@type": "rdf:Property", + "rdfs:comment": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.", + "rdfs:label": "author", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Rating" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:AggregateOffer", + "@type": "rdfs:Class", + "rdfs:comment": "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.", + "rdfs:label": "AggregateOffer", + "rdfs:subClassOf": { + "@id": "schema:Offer" + } + }, + { + "@id": "schema:missionCoveragePrioritiesPolicy", + "@type": "rdf:Property", + "rdfs:comment": "For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.", + "rdfs:label": "missionCoveragePrioritiesPolicy", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": { + "@id": "schema:NewsMediaOrganization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + ] + }, + { + "@id": "schema:foodEstablishment", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The specific food establishment where the action occurred.", + "rdfs:label": "foodEstablishment", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:CookAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:FoodEstablishment" + } + ] + }, + { + "@id": "schema:DeliveryMethod", + "@type": "rdfs:Class", + "rdfs:comment": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ", + "rdfs:label": "DeliveryMethod", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:playersOnline", + "@type": "rdf:Property", + "rdfs:comment": "Number of players on the server.", + "rdfs:label": "playersOnline", + "schema:domainIncludes": { + "@id": "schema:GameServer" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:track", + "@type": "rdf:Property", + "rdfs:comment": "A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.", + "rdfs:label": "track", + "schema:domainIncludes": [ + { + "@id": "schema:MusicGroup" + }, + { + "@id": "schema:MusicPlaylist" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:ItemList" + }, + { + "@id": "schema:MusicRecording" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:WearableSizeSystemUK", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "United Kingdom size system for wearables.", + "rdfs:label": "WearableSizeSystemUK", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:PartiallyInForce", + "@type": "schema:LegalForceStatus", + "rdfs:comment": "Indicates that parts of the legislation are in force, and parts are not.", + "rdfs:label": "PartiallyInForce", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#InForce-partiallyInForce" + } + }, + { + "@id": "schema:functionalClass", + "@type": "rdf:Property", + "rdfs:comment": "The degree of mobility the joint allows.", + "rdfs:label": "functionalClass", + "schema:domainIncludes": { + "@id": "schema:Joint" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:MedicalEntity" + } + ] + }, + { + "@id": "schema:wordCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of words in the text of the Article.", + "rdfs:label": "wordCount", + "schema:domainIncludes": { + "@id": "schema:Article" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:hasMeasurement", + "@type": "rdf:Property", + "rdfs:comment": "A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings.", + "rdfs:label": "hasMeasurement", + "schema:domainIncludes": [ + { + "@id": "schema:SizeSpecification" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Product" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:ItemListOrderAscending", + "@type": "schema:ItemListOrderType", + "rdfs:comment": "An ItemList ordered with lower values listed first.", + "rdfs:label": "ItemListOrderAscending" + }, + { + "@id": "schema:TechArticle", + "@type": "rdfs:Class", + "rdfs:comment": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.", + "rdfs:label": "TechArticle", + "rdfs:subClassOf": { + "@id": "schema:Article" + } + }, + { + "@id": "schema:experienceInPlaceOfEducation", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether a [[JobPosting]] will accept experience (as indicated by [[OccupationalExperienceRequirements]]) in place of its formal educational qualifications (as indicated by [[educationRequirements]]). If true, indicates that satisfying one of these requirements is sufficient.", + "rdfs:label": "experienceInPlaceOfEducation", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2681" + } + }, + { + "@id": "schema:recommendationStrength", + "@type": "rdf:Property", + "rdfs:comment": "Strength of the guideline's recommendation (e.g. 'class I').", + "rdfs:label": "recommendationStrength", + "schema:domainIncludes": { + "@id": "schema:MedicalGuidelineRecommendation" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:FreeReturn", + "@type": "schema:ReturnFeesEnumeration", + "rdfs:comment": "Specifies that product returns are free of charge for the customer.", + "rdfs:label": "FreeReturn", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:ReadPermission", + "@type": "schema:DigitalDocumentPermissionType", + "rdfs:comment": "Permission to read or view the document.", + "rdfs:label": "ReadPermission" + }, + { + "@id": "schema:AdultEntertainment", + "@type": "rdfs:Class", + "rdfs:comment": "An adult entertainment establishment.", + "rdfs:label": "AdultEntertainment", + "rdfs:subClassOf": { + "@id": "schema:EntertainmentBusiness" + } + }, + { + "@id": "schema:lodgingUnitDescription", + "@type": "rdf:Property", + "rdfs:comment": "A full description of the lodging unit.", + "rdfs:label": "lodgingUnitDescription", + "schema:domainIncludes": { + "@id": "schema:LodgingReservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:securityClearanceRequirement", + "@type": "rdf:Property", + "rdfs:comment": "A description of any security clearance requirements of the job.", + "rdfs:label": "securityClearanceRequirement", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2384" + } + }, + { + "@id": "schema:gameAvailabilityType", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the availability type of the game content associated with this action, such as whether it is a full version or a demo.", + "rdfs:label": "gameAvailabilityType", + "schema:domainIncludes": { + "@id": "schema:PlayGameAction" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:GameAvailabilityEnumeration" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3058" + } + }, + { + "@id": "schema:studyLocation", + "@type": "rdf:Property", + "rdfs:comment": "The location in which the study is taking/took place.", + "rdfs:label": "studyLocation", + "schema:domainIncludes": { + "@id": "schema:MedicalStudy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AdministrativeArea" + } + }, + { + "@id": "schema:procedure", + "@type": "rdf:Property", + "rdfs:comment": "A description of the procedure involved in setting up, using, and/or installing the device.", + "rdfs:label": "procedure", + "schema:domainIncludes": { + "@id": "schema:MedicalDevice" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:tributary", + "@type": "rdf:Property", + "rdfs:comment": "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.", + "rdfs:label": "tributary", + "schema:domainIncludes": { + "@id": "schema:Vein" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + } + }, + { + "@id": "schema:NutritionInformation", + "@type": "rdfs:Class", + "rdfs:comment": "Nutritional information about the recipe.", + "rdfs:label": "NutritionInformation", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + } + }, + { + "@id": "schema:artist", + "@type": "rdf:Property", + "rdfs:comment": "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.", + "rdfs:label": "artist", + "schema:domainIncludes": [ + { + "@id": "schema:ComicIssue" + }, + { + "@id": "schema:ComicStory" + }, + { + "@id": "schema:VisualArtwork" + } + ], + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:thumbnail", + "@type": "rdf:Property", + "rdfs:comment": "Thumbnail image for an image or video.", + "rdfs:label": "thumbnail", + "schema:domainIncludes": [ + { + "@id": "schema:VideoObject" + }, + { + "@id": "schema:ImageObject" + } + ], + "schema:rangeIncludes": { + "@id": "schema:ImageObject" + } + }, + { + "@id": "schema:Table", + "@type": "rdfs:Class", + "rdfs:comment": "A table on a Web page.", + "rdfs:label": "Table", + "rdfs:subClassOf": { + "@id": "schema:WebPageElement" + } + }, + { + "@id": "schema:creditedTo", + "@type": "rdf:Property", + "rdfs:comment": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga.", + "rdfs:label": "creditedTo", + "schema:domainIncludes": { + "@id": "schema:MusicRelease" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:isConsumableFor", + "@type": "rdf:Property", + "rdfs:comment": "A pointer to another product (or multiple products) for which this product is a consumable.", + "rdfs:label": "isConsumableFor", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:rangeIncludes": { + "@id": "schema:Product" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:dateModified", + "@type": "rdf:Property", + "rdfs:comment": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.", + "rdfs:label": "dateModified", + "schema:domainIncludes": [ + { + "@id": "schema:DataFeedItem" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ] + }, + { + "@id": "schema:OrderDelivered", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing successful delivery of an order.", + "rdfs:label": "OrderDelivered" + }, + { + "@id": "schema:VinylFormat", + "@type": "schema:MusicReleaseFormatType", + "rdfs:comment": "VinylFormat.", + "rdfs:label": "VinylFormat", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:RadioChannel", + "@type": "rdfs:Class", + "rdfs:comment": "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.", + "rdfs:label": "RadioChannel", + "rdfs:subClassOf": { + "@id": "schema:BroadcastChannel" + } + }, + { + "@id": "schema:Text", + "@type": [ + "schema:DataType", + "rdfs:Class" + ], + "rdfs:comment": "Data type: Text.", + "rdfs:label": "Text" + }, + { + "@id": "schema:guidelineSubject", + "@type": "rdf:Property", + "rdfs:comment": "The medical conditions, treatments, etc. that are the subject of the guideline.", + "rdfs:label": "guidelineSubject", + "schema:domainIncludes": { + "@id": "schema:MedicalGuideline" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalEntity" + } + }, + { + "@id": "schema:UserDownloads", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserDownloads", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:Ultrasound", + "@type": "schema:MedicalImagingTechnique", + "rdfs:comment": "Ultrasound imaging.", + "rdfs:label": "Ultrasound", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:InStock", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item is in stock.", + "rdfs:label": "InStock" + }, + { + "@id": "schema:healthPlanId", + "@type": "rdf:Property", + "rdfs:comment": "The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)", + "rdfs:label": "healthPlanId", + "schema:domainIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:item", + "@type": "rdf:Property", + "rdfs:comment": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')’.", + "rdfs:label": "item", + "schema:domainIncludes": [ + { + "@id": "schema:DataFeedItem" + }, + { + "@id": "schema:ListItem" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:OrderReturned", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing that an order has been returned.", + "rdfs:label": "OrderReturned" + }, + { + "@id": "schema:targetCollection", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The collection target of the action.", + "rdfs:label": "targetCollection", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:UpdateAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryB", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryB", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:Musculoskeletal", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.", + "rdfs:label": "Musculoskeletal", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:organizer", + "@type": "rdf:Property", + "rdfs:comment": "An organizer of an Event.", + "rdfs:label": "organizer", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:paymentMethodId", + "@type": "rdf:Property", + "rdfs:comment": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).", + "rdfs:label": "paymentMethodId", + "schema:domainIncludes": [ + { + "@id": "schema:Order" + }, + { + "@id": "schema:Invoice" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:LodgingBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "A lodging business, such as a motel, hotel, or inn.", + "rdfs:label": "LodgingBusiness", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:OfficialLegalValue", + "@type": "schema:LegalValueLevel", + "rdfs:comment": "All the documents published by an official publisher should have at least the legal value level \"OfficialLegalValue\". This indicates that the document was published by an organisation with the public task of making it available (e.g. a consolidated version of a EU directive published by the EU Office of Publications).", + "rdfs:label": "OfficialLegalValue", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#LegalValue-official" + } + }, + { + "@id": "schema:Series", + "@type": "rdfs:Class", + "rdfs:comment": "A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].", + "rdfs:label": "Series", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:Language", + "@type": "rdfs:Class", + "rdfs:comment": "Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].", + "rdfs:label": "Language", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:recordLabel", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/mo/label" + }, + "rdfs:comment": "The label that issued the release.", + "rdfs:label": "recordLabel", + "schema:domainIncludes": { + "@id": "schema:MusicRelease" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:cvdNumC19OFMechVentPats", + "@type": "rdf:Property", + "rdfs:comment": "numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.", + "rdfs:label": "cvdNumC19OFMechVentPats", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:numberOfPages", + "@type": "rdf:Property", + "rdfs:comment": "The number of pages in the book.", + "rdfs:label": "numberOfPages", + "schema:domainIncludes": { + "@id": "schema:Book" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:Podiatric", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.", + "rdfs:label": "Podiatric", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:infectiousAgent", + "@type": "rdf:Property", + "rdfs:comment": "The actual infectious agent, such as a specific bacterium.", + "rdfs:label": "infectiousAgent", + "schema:domainIncludes": { + "@id": "schema:InfectiousDisease" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:CollegeOrUniversity", + "@type": "rdfs:Class", + "rdfs:comment": "A college, university, or other third-level educational institution.", + "rdfs:label": "CollegeOrUniversity", + "rdfs:subClassOf": { + "@id": "schema:EducationalOrganization" + } + }, + { + "@id": "schema:inBroadcastLineup", + "@type": "rdf:Property", + "rdfs:comment": "The CableOrSatelliteService offering the channel.", + "rdfs:label": "inBroadcastLineup", + "schema:domainIncludes": { + "@id": "schema:BroadcastChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:CableOrSatelliteService" + } + }, + { + "@id": "schema:Obstetric", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.", + "rdfs:label": "Obstetric", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:partOfSeason", + "@type": "rdf:Property", + "rdfs:comment": "The season to which this episode belongs.", + "rdfs:label": "partOfSeason", + "rdfs:subPropertyOf": { + "@id": "schema:isPartOf" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Episode" + }, + { + "@id": "schema:Clip" + } + ], + "schema:rangeIncludes": { + "@id": "schema:CreativeWorkSeason" + } + }, + { + "@id": "schema:sponsor", + "@type": "rdf:Property", + "rdfs:comment": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.", + "rdfs:label": "sponsor", + "schema:domainIncludes": [ + { + "@id": "schema:Event" + }, + { + "@id": "schema:Grant" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:MedicalStudy" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:TattooParlor", + "@type": "rdfs:Class", + "rdfs:comment": "A tattoo parlor.", + "rdfs:label": "TattooParlor", + "rdfs:subClassOf": { + "@id": "schema:HealthAndBeautyBusiness" + } + }, + { + "@id": "schema:MusculoskeletalExam", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Musculoskeletal system clinical examination.", + "rdfs:label": "MusculoskeletalExam", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:DataFeed", + "@type": "rdfs:Class", + "rdfs:comment": "A single feed providing structured information about one or more entities or topics.", + "rdfs:label": "DataFeed", + "rdfs:subClassOf": { + "@id": "schema:Dataset" + } + }, + { + "@id": "schema:printSection", + "@type": "rdf:Property", + "rdfs:comment": "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.", + "rdfs:label": "printSection", + "schema:domainIncludes": { + "@id": "schema:NewsArticle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Completed", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Completed.", + "rdfs:label": "Completed", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:discusses", + "@type": "rdf:Property", + "rdfs:comment": "Specifies the CreativeWork associated with the UserComment.", + "rdfs:label": "discusses", + "schema:domainIncludes": { + "@id": "schema:UserComments" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:TherapeuticProcedure", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/277132007" + }, + "rdfs:comment": "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.", + "rdfs:label": "TherapeuticProcedure", + "rdfs:subClassOf": { + "@id": "schema:MedicalProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MusicEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Music event.", + "rdfs:label": "MusicEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:TradeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.", + "rdfs:label": "TradeAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:InStoreOnly", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item is available only at physical locations.", + "rdfs:label": "InStoreOnly" + }, + { + "@id": "schema:TobaccoNicotineConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "Item contains tobacco and/or nicotine, for example cigars, cigarettes, chewing tobacco, e-cigarettes, or hookahs.", + "rdfs:label": "TobaccoNicotineConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:healthPlanNetworkTier", + "@type": "rdf:Property", + "rdfs:comment": "The tier(s) for this network.", + "rdfs:label": "healthPlanNetworkTier", + "schema:domainIncludes": { + "@id": "schema:HealthPlanNetwork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:departureTerminal", + "@type": "rdf:Property", + "rdfs:comment": "Identifier of the flight's departure terminal.", + "rdfs:label": "departureTerminal", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Place", + "@type": "rdfs:Class", + "rdfs:comment": "Entities that have a somewhat fixed, physical extension.", + "rdfs:label": "Place", + "rdfs:subClassOf": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:textValue", + "@type": "rdf:Property", + "rdfs:comment": "Text value being annotated.", + "rdfs:label": "textValue", + "schema:domainIncludes": { + "@id": "schema:PronounceableText" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2108" + } + }, + { + "@id": "schema:accessibilitySummary", + "@type": "rdf:Property", + "rdfs:comment": "A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"", + "rdfs:label": "accessibilitySummary", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1100" + } + }, + { + "@id": "schema:Nonprofit501c10", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.", + "rdfs:label": "Nonprofit501c10", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:encodingFormat", + "@type": "rdf:Property", + "rdfs:comment": "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).\n\nIn cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.", + "rdfs:label": "encodingFormat", + "schema:domainIncludes": [ + { + "@id": "schema:MediaObject" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:logo", + "@type": "rdf:Property", + "rdfs:comment": "An associated logo.", + "rdfs:label": "logo", + "rdfs:subPropertyOf": { + "@id": "schema:image" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:Brand" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:ImageObject" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:MovieClip", + "@type": "rdfs:Class", + "rdfs:comment": "A short segment/part of a movie.", + "rdfs:label": "MovieClip", + "rdfs:subClassOf": { + "@id": "schema:Clip" + } + }, + { + "@id": "schema:monoisotopicMolecularWeight", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/MolecularEntity" + }, + "rdfs:comment": "The monoisotopic mass is the sum of the masses of the atoms in a molecule using the unbound, ground-state, rest mass of the principal (most abundant) isotope for each element instead of the isotopic average mass. Please include the units the form '<Number> <unit>', for example '770.230488 g/mol' or as '<QuantitativeValue>.", + "rdfs:label": "monoisotopicMolecularWeight", + "schema:domainIncludes": { + "@id": "schema:MolecularEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:addressLocality", + "@type": "rdf:Property", + "rdfs:comment": "The locality in which the street address is, and which is in the region. For example, Mountain View.", + "rdfs:label": "addressLocality", + "schema:domainIncludes": { + "@id": "schema:PostalAddress" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:monthsOfExperience", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the minimal number of months of experience required for a position.", + "rdfs:label": "monthsOfExperience", + "schema:domainIncludes": { + "@id": "schema:OccupationalExperienceRequirements" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2681" + } + }, + { + "@id": "schema:acceptedAnswer", + "@type": "rdf:Property", + "rdfs:comment": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.", + "rdfs:label": "acceptedAnswer", + "rdfs:subPropertyOf": { + "@id": "schema:suggestedAnswer" + }, + "schema:domainIncludes": { + "@id": "schema:Question" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Answer" + }, + { + "@id": "schema:ItemList" + } + ] + }, + { + "@id": "schema:PublicationVolume", + "@type": "rdfs:Class", + "rdfs:comment": "A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).", + "rdfs:label": "PublicationVolume", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:bookingAgent", + "@type": "rdf:Property", + "rdfs:comment": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.", + "rdfs:label": "bookingAgent", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:supersededBy": { + "@id": "schema:broker" + } + }, + { + "@id": "schema:associatedDisease", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/BioChemEntity" + }, + "rdfs:comment": "Disease associated to this BioChemEntity. Such disease can be a MedicalCondition or a URL. If you want to add an evidence supporting the association, please use PropertyValue.", + "rdfs:label": "associatedDisease", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:MedicalCondition" + } + ] + }, + { + "@id": "schema:State", + "@type": "rdfs:Class", + "rdfs:comment": "A state or province of a country.", + "rdfs:label": "State", + "rdfs:subClassOf": { + "@id": "schema:AdministrativeArea" + } + }, + { + "@id": "schema:ReturnLabelInBox", + "@type": "schema:ReturnLabelSourceEnumeration", + "rdfs:comment": "Specifies that a return label will be provided by the seller in the shipping box.", + "rdfs:label": "ReturnLabelInBox", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:checkoutTime", + "@type": "rdf:Property", + "rdfs:comment": "The latest someone may check out of a lodging establishment.", + "rdfs:label": "checkoutTime", + "schema:domainIncludes": [ + { + "@id": "schema:LodgingReservation" + }, + { + "@id": "schema:LodgingBusiness" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Time" + } + ] + }, + { + "@id": "schema:OrderPaymentDue", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing that payment is due on an order.", + "rdfs:label": "OrderPaymentDue" + }, + { + "@id": "schema:eligibilityToWorkRequirement", + "@type": "rdf:Property", + "rdfs:comment": "The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.", + "rdfs:label": "eligibilityToWorkRequirement", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2384" + } + }, + { + "@id": "schema:ComputerStore", + "@type": "rdfs:Class", + "rdfs:comment": "A computer store.", + "rdfs:label": "ComputerStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:requirements", + "@type": "rdf:Property", + "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).", + "rdfs:label": "requirements", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:supersededBy": { + "@id": "schema:softwareRequirements" + } + }, + { + "@id": "schema:Nonprofit501c11", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.", + "rdfs:label": "Nonprofit501c11", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:gtin8", + "@type": "rdf:Property", + "rdfs:comment": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.", + "rdfs:label": "gtin8", + "rdfs:subPropertyOf": [ + { + "@id": "schema:identifier" + }, + { + "@id": "schema:gtin" + } + ], + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:fiberContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of fiber.", + "rdfs:label": "fiberContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:ReceiveAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\\n\\nRelated actions:\\n\\n* [[SendAction]]: The reciprocal of ReceiveAction.\\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine).", + "rdfs:label": "ReceiveAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:educationRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Educational background needed for the position or Occupation.", + "rdfs:label": "educationRequirements", + "schema:domainIncludes": [ + { + "@id": "schema:JobPosting" + }, + { + "@id": "schema:Occupation" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:EducationalOccupationalCredential" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + ] + }, + { + "@id": "schema:Pond", + "@type": "rdfs:Class", + "rdfs:comment": "A pond.", + "rdfs:label": "Pond", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:issueNumber", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/bibo/issue" + }, + "rdfs:comment": "Identifies the issue of publication; for example, \"iii\" or \"2\".", + "rdfs:label": "issueNumber", + "rdfs:subPropertyOf": { + "@id": "schema:position" + }, + "schema:domainIncludes": { + "@id": "schema:PublicationIssue" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:AnatomicalSystem", + "@type": "rdfs:Class", + "rdfs:comment": "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.", + "rdfs:label": "AnatomicalSystem", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:cvdFacilityId", + "@type": "rdf:Property", + "rdfs:comment": "Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.", + "rdfs:label": "cvdFacilityId", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:trainNumber", + "@type": "rdf:Property", + "rdfs:comment": "The unique identifier for the train.", + "rdfs:label": "trainNumber", + "schema:domainIncludes": { + "@id": "schema:TrainTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:WritePermission", + "@type": "schema:DigitalDocumentPermissionType", + "rdfs:comment": "Permission to write or edit the document.", + "rdfs:label": "WritePermission" + }, + { + "@id": "schema:commentTime", + "@type": "rdf:Property", + "rdfs:comment": "The time at which the UserComment was made.", + "rdfs:label": "commentTime", + "schema:domainIncludes": { + "@id": "schema:UserComments" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ] + }, + { + "@id": "schema:PrescriptionOnly", + "@type": "schema:DrugPrescriptionStatus", + "rdfs:comment": "Available by prescription only.", + "rdfs:label": "PrescriptionOnly", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:maintainer", + "@type": "rdf:Property", + "rdfs:comment": "A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on \"upstream\" sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.\n ", + "rdfs:label": "maintainer", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2311" + } + }, + { + "@id": "schema:EndorseAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent approves/certifies/likes/supports/sanction an object.", + "rdfs:label": "EndorseAction", + "rdfs:subClassOf": { + "@id": "schema:ReactAction" + } + }, + { + "@id": "schema:HousePainter", + "@type": "rdfs:Class", + "rdfs:comment": "A house painting service.", + "rdfs:label": "HousePainter", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:EnergyConsumptionDetails", + "@type": "rdfs:Class", + "rdfs:comment": "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US.", + "rdfs:label": "EnergyConsumptionDetails", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:sender", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The participant who is at the sending end of the action.", + "rdfs:label": "sender", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": [ + { + "@id": "schema:ReceiveAction" + }, + { + "@id": "schema:Message" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Audience" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:educationalProgramMode", + "@type": "rdf:Property", + "rdfs:comment": "Similar to courseMode, The medium or means of delivery of the program as a whole. The value may either be a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).", + "rdfs:label": "educationalProgramMode", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:value", + "@type": "rdf:Property", + "rdfs:comment": "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.", + "rdfs:label": "value", + "schema:domainIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:MonetaryAmount" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + }, + { + "@id": "schema:StructuredValue" + }, + { + "@id": "schema:Boolean" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:MedicalTherapy", + "@type": "rdfs:Class", + "rdfs:comment": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.", + "rdfs:label": "MedicalTherapy", + "rdfs:subClassOf": { + "@id": "schema:TherapeuticProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:EmployerReview", + "@type": "rdfs:Class", + "rdfs:comment": "An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization.", + "rdfs:label": "EmployerReview", + "rdfs:subClassOf": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1589" + } + }, + { + "@id": "schema:previousItem", + "@type": "rdf:Property", + "rdfs:comment": "A link to the ListItem that preceeds the current one.", + "rdfs:label": "previousItem", + "schema:domainIncludes": { + "@id": "schema:ListItem" + }, + "schema:rangeIncludes": { + "@id": "schema:ListItem" + } + }, + { + "@id": "schema:Friday", + "@type": "schema:DayOfWeek", + "rdfs:comment": "The day of the week between Thursday and Saturday.", + "rdfs:label": "Friday", + "schema:sameAs": { + "@id": "http://www.wikidata.org/entity/Q130" + } + }, + { + "@id": "schema:AutoBodyShop", + "@type": "rdfs:Class", + "rdfs:comment": "Auto body shop.", + "rdfs:label": "AutoBodyShop", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:Pathology", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.", + "rdfs:label": "Pathology", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:dateIssued", + "@type": "rdf:Property", + "rdfs:comment": "The date the ticket was issued.", + "rdfs:label": "dateIssued", + "schema:domainIncludes": { + "@id": "schema:Ticket" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:isProprietary", + "@type": "rdf:Property", + "rdfs:comment": "True if this item's name is a proprietary/brand name (vs. generic name).", + "rdfs:label": "isProprietary", + "schema:domainIncludes": [ + { + "@id": "schema:Drug" + }, + { + "@id": "schema:DietarySupplement" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:DigitalPlatformEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates some common technology platforms, for use with properties such as [[actionPlatform]]. It is not supposed to be comprehensive - when a suitable code is not enumerated here, textual or URL values can be used instead. These codes are at a fairly high level and do not deal with versioning and other nuance. Additional codes can be suggested [in github](https://github.com/schemaorg/schemaorg/issues/3057). ", + "rdfs:label": "DigitalPlatformEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3057" + } + }, + { + "@id": "schema:observationDate", + "@type": "rdf:Property", + "rdfs:comment": "The observationDate of an [[Observation]].", + "rdfs:label": "observationDate", + "schema:domainIncludes": { + "@id": "schema:Observation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:answerExplanation", + "@type": "rdf:Property", + "rdfs:comment": "A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ", + "rdfs:label": "answerExplanation", + "schema:domainIncludes": { + "@id": "schema:Answer" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:WebContent" + }, + { + "@id": "schema:Comment" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2636" + } + }, + { + "@id": "schema:educationalAlignment", + "@type": "rdf:Property", + "rdfs:comment": "An alignment to an established educational framework.\n\nThis property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.", + "rdfs:label": "educationalAlignment", + "schema:domainIncludes": [ + { + "@id": "schema:LearningResource" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": { + "@id": "schema:AlignmentObject" + } + }, + { + "@id": "schema:AutomatedTeller", + "@type": "rdfs:Class", + "rdfs:comment": "ATM/cash machine.", + "rdfs:label": "AutomatedTeller", + "rdfs:subClassOf": { + "@id": "schema:FinancialService" + } + }, + { + "@id": "schema:actionableFeedbackPolicy", + "@type": "rdf:Property", + "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.", + "rdfs:label": "actionableFeedbackPolicy", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:NewsMediaOrganization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + ] + }, + { + "@id": "schema:MedicalAudienceType", + "@type": "rdfs:Class", + "rdfs:comment": "Target audiences types for medical web pages. Enumerated type.", + "rdfs:label": "MedicalAudienceType", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:AuthoritativeLegalValue", + "@type": "schema:LegalValueLevel", + "rdfs:comment": "Indicates that the publisher gives some special status to the publication of the document. (\"The Queens Printer\" version of a UK Act of Parliament, or the PDF version of a Directive published by the EU Office of Publications). Something \"Authoritative\" is considered to be also [[OfficialLegalValue]]\".", + "rdfs:label": "AuthoritativeLegalValue", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + }, + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#LegalValue-authoritative" + } + }, + { + "@id": "schema:chemicalComposition", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/ChemicalSubstance" + }, + "rdfs:comment": "The chemical composition describes the identity and relative ratio of the chemical elements that make up the substance.", + "rdfs:label": "chemicalComposition", + "schema:domainIncludes": { + "@id": "schema:ChemicalSubstance" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:GamePlayMode", + "@type": "rdfs:Class", + "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player.", + "rdfs:label": "GamePlayMode", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:album", + "@type": "rdf:Property", + "rdfs:comment": "A music album.", + "rdfs:label": "album", + "schema:domainIncludes": { + "@id": "schema:MusicGroup" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicAlbum" + } + }, + { + "@id": "schema:acquireLicensePage", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.", + "rdfs:label": "acquireLicensePage", + "rdfs:subPropertyOf": { + "@id": "schema:usageInfo" + }, + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2454" + } + }, + { + "@id": "schema:WearableSizeGroupPlus", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Plus\" for wearables.", + "rdfs:label": "WearableSizeGroupPlus", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:vehicleSeatingCapacity", + "@type": "rdf:Property", + "rdfs:comment": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons.", + "rdfs:label": "vehicleSeatingCapacity", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:AgreeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.", + "rdfs:label": "AgreeAction", + "rdfs:subClassOf": { + "@id": "schema:ReactAction" + } + }, + { + "@id": "schema:inventoryLevel", + "@type": "rdf:Property", + "rdfs:comment": "The current approximate inventory level for the item or items.", + "rdfs:label": "inventoryLevel", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:SomeProducts" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:RightHandDriving", + "@type": "schema:SteeringPositionValue", + "rdfs:comment": "The steering position is on the right side of the vehicle (viewed from the main direction of driving).", + "rdfs:label": "RightHandDriving", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:transcript", + "@type": "rdf:Property", + "rdfs:comment": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.", + "rdfs:label": "transcript", + "schema:domainIncludes": [ + { + "@id": "schema:AudioObject" + }, + { + "@id": "schema:VideoObject" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MedicalGuidelineRecommendation", + "@type": "rdfs:Class", + "rdfs:comment": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.", + "rdfs:label": "MedicalGuidelineRecommendation", + "rdfs:subClassOf": { + "@id": "schema:MedicalGuideline" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:workPresented", + "@type": "rdf:Property", + "rdfs:comment": "The movie presented during this event.", + "rdfs:label": "workPresented", + "rdfs:subPropertyOf": { + "@id": "schema:workFeatured" + }, + "schema:domainIncludes": { + "@id": "schema:ScreeningEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:Movie" + } + }, + { + "@id": "schema:OrderStatus", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerated status values for Order.", + "rdfs:label": "OrderStatus", + "rdfs:subClassOf": { + "@id": "schema:StatusEnumeration" + } + }, + { + "@id": "schema:subjectOf", + "@type": "rdf:Property", + "rdfs:comment": "A CreativeWork or Event about this Thing.", + "rdfs:label": "subjectOf", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:inverseOf": { + "@id": "schema:about" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Event" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1670" + } + }, + { + "@id": "schema:loanTerm", + "@type": "rdf:Property", + "rdfs:comment": "The duration of the loan or credit agreement.", + "rdfs:label": "loanTerm", + "rdfs:subPropertyOf": { + "@id": "schema:duration" + }, + "schema:domainIncludes": { + "@id": "schema:LoanOrCredit" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:HalalDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet conforming to Islamic dietary practices.", + "rdfs:label": "HalalDiet" + }, + { + "@id": "schema:DecontextualizedContent", + "@type": "schema:MediaManipulationRatingEnumeration", + "rdfs:comment": "Content coded 'missing context' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'missing context': Presenting unaltered video in an inaccurate manner that misrepresents the footage. For example, using incorrect dates or locations, altering the transcript or sharing brief clips from a longer video to mislead viewers. (A video rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] to be 'missing context': Presenting unaltered images in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An image rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] with embedded text to be 'missing context': An unaltered image presented in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An 'original' image with inaccurate text would generally fall in this category.)\n\nFor an [[AudioObject]] to be 'missing context': Unaltered audio presented in an inaccurate manner that misrepresents it. For example, using incorrect dates or locations, or sharing brief clips from a longer recording to mislead viewers. (Audio rated “original” can also be missing context.)\n", + "rdfs:label": "DecontextualizedContent", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:lender", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The person that lends the object being borrowed.", + "rdfs:label": "lender", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:BorrowAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:benefits", + "@type": "rdf:Property", + "rdfs:comment": "Description of benefits associated with the job.", + "rdfs:label": "benefits", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:jobBenefits" + } + }, + { + "@id": "schema:arrivalPlatform", + "@type": "rdf:Property", + "rdfs:comment": "The platform where the train arrives.", + "rdfs:label": "arrivalPlatform", + "schema:domainIncludes": { + "@id": "schema:TrainTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:gracePeriod", + "@type": "rdf:Property", + "rdfs:comment": "The period of time after any due date that the borrower has to fulfil its obligations before a default (failure to pay) is deemed to have occurred.", + "rdfs:label": "gracePeriod", + "schema:domainIncludes": { + "@id": "schema:LoanOrCredit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Duration" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:DigitalDocumentPermissionType", + "@type": "rdfs:Class", + "rdfs:comment": "A type of permission which can be granted for accessing a digital document.", + "rdfs:label": "DigitalDocumentPermissionType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:TouristAttraction", + "@type": "rdfs:Class", + "rdfs:comment": "A tourist attraction. In principle any Thing can be a [[TouristAttraction]], from a [[Mountain]] and [[LandmarksOrHistoricalBuildings]] to a [[LocalBusiness]]. This Type can be used on its own to describe a general [[TouristAttraction]], or be used as an [[additionalType]] to add tourist attraction properties to any other type. (See examples below)", + "rdfs:label": "TouristAttraction", + "rdfs:subClassOf": { + "@id": "schema:Place" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it" + } + ] + }, + { + "@id": "schema:maxPrice", + "@type": "rdf:Property", + "rdfs:comment": "The highest price if the price is a range.", + "rdfs:label": "maxPrice", + "schema:domainIncludes": { + "@id": "schema:PriceSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:WearableMeasurementBack", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the back section, for example of a jacket", + "rdfs:label": "WearableMeasurementBack", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:Newspaper", + "@type": "rdfs:Class", + "rdfs:comment": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i.e. business, culture, education). Often published daily.", + "rdfs:label": "Newspaper", + "rdfs:subClassOf": { + "@id": "schema:Periodical" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:source": { + "@id": "http://www.productontology.org/id/Newspaper" + } + }, + { + "@id": "schema:naics", + "@type": "rdf:Property", + "rdfs:comment": "The North American Industry Classification System (NAICS) code for a particular organization or business person.", + "rdfs:label": "naics", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:previousStartDate", + "@type": "rdf:Property", + "rdfs:comment": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.", + "rdfs:label": "previousStartDate", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:GenderType", + "@type": "rdfs:Class", + "rdfs:comment": "An enumeration of genders.", + "rdfs:label": "GenderType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:AndroidPlatform", + "@type": "schema:DigitalPlatformEnumeration", + "rdfs:comment": "Represents the broad notion of Android-based operating systems.", + "rdfs:label": "AndroidPlatform", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3057" + } + }, + { + "@id": "schema:contactPoint", + "@type": "rdf:Property", + "rdfs:comment": "A contact point for a person or organization.", + "rdfs:label": "contactPoint", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:HealthInsurancePlan" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": { + "@id": "schema:ContactPoint" + } + }, + { + "@id": "schema:OnlineEventAttendanceMode", + "@type": "schema:EventAttendanceModeEnumeration", + "rdfs:comment": "OnlineEventAttendanceMode - an event that is primarily conducted online. ", + "rdfs:label": "OnlineEventAttendanceMode", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:USNonprofitType", + "@type": "rdfs:Class", + "rdfs:comment": "USNonprofitType: Non-profit organization type originating from the United States.", + "rdfs:label": "USNonprofitType", + "rdfs:subClassOf": { + "@id": "schema:NonprofitType" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:requiredCollateral", + "@type": "rdf:Property", + "rdfs:comment": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)", + "rdfs:label": "requiredCollateral", + "schema:domainIncludes": { + "@id": "schema:LoanOrCredit" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Thing" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:returnShippingFeesAmount", + "@type": "rdf:Property", + "rdfs:comment": "Amount of shipping costs for product returns (for any reason). Applicable when property [[returnFees]] equals [[ReturnShippingFees]].", + "rdfs:label": "returnShippingFeesAmount", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:permissions", + "@type": "rdf:Property", + "rdfs:comment": "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).", + "rdfs:label": "permissions", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ProfessionalService", + "@type": "rdfs:Class", + "rdfs:comment": "Original definition: \"provider of professional services.\"\\n\\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],\n [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],\n [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].", + "rdfs:label": "ProfessionalService", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:itemLocation", + "@type": "rdf:Property", + "rdfs:comment": { + "@language": "en", + "@value": "Current location of the item." + }, + "rdfs:label": { + "@language": "en", + "@value": "itemLocation" + }, + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:ArchiveComponent" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:PostalAddress" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1758" + } + }, + { + "@id": "schema:ServiceChannel", + "@type": "rdfs:Class", + "rdfs:comment": "A means for accessing a service, e.g. a government office location, web site, or phone number.", + "rdfs:label": "ServiceChannel", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:hasMolecularFunction", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/BioChemEntity" + }, + "rdfs:comment": "Molecular function performed by this BioChemEntity; please use PropertyValue if you want to include any evidence.", + "rdfs:label": "hasMolecularFunction", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:BusinessEntityType", + "@type": "rdfs:Class", + "rdfs:comment": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Business\\n* http://purl.org/goodrelations/v1#Enduser\\n* http://purl.org/goodrelations/v1#PublicInstitution\\n* http://purl.org/goodrelations/v1#Reseller\n\t ", + "rdfs:label": "BusinessEntityType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:UserReview", + "@type": "rdfs:Class", + "rdfs:comment": "A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]].", + "rdfs:label": "UserReview", + "rdfs:subClassOf": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1589" + } + }, + { + "@id": "schema:unitCode", + "@type": "rdf:Property", + "rdfs:comment": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.", + "rdfs:label": "unitCode", + "schema:domainIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:UnitPriceSpecification" + }, + { + "@id": "schema:TypeAndQuantityNode" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:produces", + "@type": "rdf:Property", + "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.", + "rdfs:label": "produces", + "schema:domainIncludes": { + "@id": "schema:Service" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + }, + "schema:supersededBy": { + "@id": "schema:serviceOutput" + } + }, + { + "@id": "schema:ItemListOrderType", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.", + "rdfs:label": "ItemListOrderType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:DriveWheelConfigurationValue", + "@type": "rdfs:Class", + "rdfs:comment": "A value indicating which roadwheels will receive torque.", + "rdfs:label": "DriveWheelConfigurationValue", + "rdfs:subClassOf": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:QAPage", + "@type": "rdfs:Class", + "rdfs:comment": "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).", + "rdfs:label": "QAPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:Downpayment", + "@type": "schema:PriceComponentTypeEnumeration", + "rdfs:comment": "Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments.", + "rdfs:label": "Downpayment", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:ImageObject", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "dcmitype:Image" + }, + "rdfs:comment": "An image file.", + "rdfs:label": "ImageObject", + "rdfs:subClassOf": { + "@id": "schema:MediaObject" + } + }, + { + "@id": "schema:issn", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/bibo/issn" + }, + "rdfs:comment": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.", + "rdfs:label": "issn", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:WebSite" + }, + { + "@id": "schema:CreativeWorkSeries" + }, + { + "@id": "schema:Dataset" + }, + { + "@id": "schema:Blog" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:Protein", + "@type": "rdfs:Class", + "dcterms:source": { + "@id": "http://bioschemas.org" + }, + "rdfs:comment": "Protein is here used in its widest possible definition, as classes of amino acid based molecules. Amyloid-beta Protein in human (UniProt P05067), eukaryota (e.g. an OrthoDB group) or even a single molecule that one can point to are all of type schema:Protein. A protein can thus be a subclass of another protein, e.g. schema:Protein as a UniProt record can have multiple isoforms inside it which would also be schema:Protein. They can be imagined, synthetic, hypothetical or naturally occurring.", + "rdfs:label": "Protein", + "rdfs:subClassOf": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + } + }, + { + "@id": "schema:SoldOut", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item has sold out.", + "rdfs:label": "SoldOut" + }, + { + "@id": "schema:isAccessibleForFree", + "@type": "rdf:Property", + "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.", + "rdfs:label": "isAccessibleForFree", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:paymentUrl", + "@type": "rdf:Property", + "rdfs:comment": "The URL for sending a payment.", + "rdfs:label": "paymentUrl", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:landlord", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The owner of the real estate property.", + "rdfs:label": "landlord", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:RentAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:AdvertiserContentArticle", + "@type": "rdfs:Class", + "rdfs:comment": "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.", + "rdfs:label": "AdvertiserContentArticle", + "rdfs:subClassOf": { + "@id": "schema:Article" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + ] + }, + { + "@id": "schema:processorRequirements", + "@type": "rdf:Property", + "rdfs:comment": "Processor architecture required to run the application (e.g. IA64).", + "rdfs:label": "processorRequirements", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Monday", + "@type": "schema:DayOfWeek", + "rdfs:comment": "The day of the week between Sunday and Tuesday.", + "rdfs:label": "Monday", + "schema:sameAs": { + "@id": "http://www.wikidata.org/entity/Q105" + } + }, + { + "@id": "schema:BedType", + "@type": "rdfs:Class", + "rdfs:comment": "A type of bed. This is used for indicating the bed or beds available in an accommodation.", + "rdfs:label": "BedType", + "rdfs:subClassOf": { + "@id": "schema:QualitativeValue" + }, + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1262" + } + ] + }, + { + "@id": "schema:MonetaryAmount", + "@type": "rdfs:Class", + "rdfs:comment": "A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc. It is recommended to use [[PriceSpecification]] Types to describe the price of an Offer, Invoice, etc.", + "rdfs:label": "MonetaryAmount", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:industry", + "@type": "rdf:Property", + "rdfs:comment": "The industry associated with the job position.", + "rdfs:label": "industry", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:sku", + "@type": "rdf:Property", + "rdfs:comment": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.", + "rdfs:label": "sku", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:Collection", + "@type": "rdfs:Class", + "rdfs:comment": "A collection of items e.g. creative works or products.", + "rdfs:label": "Collection", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:addOn", + "@type": "rdf:Property", + "rdfs:comment": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).", + "rdfs:label": "addOn", + "schema:domainIncludes": { + "@id": "schema:Offer" + }, + "schema:rangeIncludes": { + "@id": "schema:Offer" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:GeoCoordinates", + "@type": "rdfs:Class", + "rdfs:comment": "The geographic coordinates of a place or event.", + "rdfs:label": "GeoCoordinates", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + } + }, + { + "@id": "schema:ActionAccessSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A set of requirements that a must be fulfilled in order to perform an Action.", + "rdfs:label": "ActionAccessSpecification", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + } + }, + { + "@id": "schema:HardwareStore", + "@type": "rdfs:Class", + "rdfs:comment": "A hardware store.", + "rdfs:label": "HardwareStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:ReturnInStore", + "@type": "schema:ReturnMethodEnumeration", + "rdfs:comment": "Specifies that product returns must be made in a store.", + "rdfs:label": "ReturnInStore", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:runtime", + "@type": "rdf:Property", + "rdfs:comment": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", + "rdfs:label": "runtime", + "schema:domainIncludes": { + "@id": "schema:SoftwareSourceCode" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:runtimePlatform" + } + }, + { + "@id": "schema:GenericWebPlatform", + "@type": "schema:DigitalPlatformEnumeration", + "rdfs:comment": "Represents the generic notion of the Web Platform. More specific codes include [[MobileWebPlatform]] and [[DesktopWebPlatform]], as an incomplete list. ", + "rdfs:label": "GenericWebPlatform", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3057" + } + }, + { + "@id": "schema:uploadDate", + "@type": "rdf:Property", + "rdfs:comment": "Date when this media object was uploaded to this site.", + "rdfs:label": "uploadDate", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:additionalType", + "@type": "rdf:Property", + "rdfs:comment": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.", + "rdfs:label": "additionalType", + "rdfs:subPropertyOf": { + "@id": "rdf:type" + }, + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:geographicArea", + "@type": "rdf:Property", + "rdfs:comment": "The geographic area associated with the audience.", + "rdfs:label": "geographicArea", + "schema:domainIncludes": { + "@id": "schema:Audience" + }, + "schema:rangeIncludes": { + "@id": "schema:AdministrativeArea" + } + }, + { + "@id": "schema:Gene", + "@type": "rdfs:Class", + "dcterms:source": { + "@id": "http://bioschemas.org" + }, + "rdfs:comment": "A discrete unit of inheritance which affects one or more biological traits (Source: [https://en.wikipedia.org/wiki/Gene](https://en.wikipedia.org/wiki/Gene)). Examples include FOXP2 (Forkhead box protein P2), SCARNA21 (small Cajal body-specific RNA 21), A- (agouti genotype).", + "rdfs:label": "Gene", + "rdfs:subClassOf": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + } + }, + { + "@id": "schema:TennisComplex", + "@type": "rdfs:Class", + "rdfs:comment": "A tennis complex.", + "rdfs:label": "TennisComplex", + "rdfs:subClassOf": { + "@id": "schema:SportsActivityLocation" + } + }, + { + "@id": "schema:TVEpisode", + "@type": "rdfs:Class", + "rdfs:comment": "A TV episode which can be part of a series or season.", + "rdfs:label": "TVEpisode", + "rdfs:subClassOf": { + "@id": "schema:Episode" + } + }, + { + "@id": "schema:originatesFrom", + "@type": "rdf:Property", + "rdfs:comment": "The vasculature the lymphatic structure originates, or afferents, from.", + "rdfs:label": "originatesFrom", + "schema:domainIncludes": { + "@id": "schema:LymphaticVessel" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Vessel" + } + }, + { + "@id": "schema:CheckAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.", + "rdfs:label": "CheckAction", + "rdfs:subClassOf": { + "@id": "schema:FindAction" + } + }, + { + "@id": "schema:carrier", + "@type": "rdf:Property", + "rdfs:comment": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.", + "rdfs:label": "carrier", + "schema:domainIncludes": [ + { + "@id": "schema:ParcelDelivery" + }, + { + "@id": "schema:Flight" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Organization" + }, + "schema:supersededBy": { + "@id": "schema:provider" + } + }, + { + "@id": "schema:distance", + "@type": "rdf:Property", + "rdfs:comment": "The distance travelled, e.g. exercising or travelling.", + "rdfs:label": "distance", + "schema:domainIncludes": [ + { + "@id": "schema:ExerciseAction" + }, + { + "@id": "schema:TravelAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Distance" + } + }, + { + "@id": "schema:PlaceOfWorship", + "@type": "rdfs:Class", + "rdfs:comment": "Place of worship, such as a church, synagogue, or mosque.", + "rdfs:label": "PlaceOfWorship", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:BodyMeasurementHead", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Maximum girth of head above the ears. Used, for example, to fit hats.", + "rdfs:label": "BodyMeasurementHead", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:Legislation", + "@type": "rdfs:Class", + "rdfs:comment": "A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article).", + "rdfs:label": "Legislation", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:closeMatch": [ + { + "@id": "http://data.europa.eu/eli/ontology#LegalResource" + }, + { + "@id": "http://data.europa.eu/eli/ontology#LegalExpression" + } + ] + }, + { + "@id": "schema:numAdults", + "@type": "rdf:Property", + "rdfs:comment": "The number of adults staying in the unit.", + "rdfs:label": "numAdults", + "schema:domainIncludes": { + "@id": "schema:LodgingReservation" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:SpecialAnnouncement", + "@type": "rdfs:Class", + "rdfs:comment": "A SpecialAnnouncement combines a simple date-stamped textual information update\n with contextualized Web links and other structured data. It represents an information update made by a\n locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police,\n local government.\n\nFor work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).\n\nThe motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org\nexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our\nusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).\n\n\nWhile this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover\nthe kinds of everyday practical information being posted to existing websites during an emergency situation.\n\nSeveral kinds of information can be provided:\n\nWe encourage the provision of \"name\", \"text\", \"datePosted\", \"expires\" (if appropriate), \"category\" and\n\"url\" as a simple baseline. It is important to provide a value for \"category\" where possible, most ideally as a well known\nURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be \"https://en.wikipedia.org/w/index.php?title=2019-20\\_coronavirus\\_pandemic\" or \"https://www.wikidata.org/wiki/Q81068910\".\n\nFor many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple \"[[text]]\" summary of the page. It is\nunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.\n\nWe expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].\n\nMany [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructure]]s. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].\n\nThe [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only\nfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of /about for locations too.\n\nThe basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting\n[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed\nwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providing\nmedia type information e.g. \"application/rss+xml\" or \"application/atom+xml\".\n", + "rdfs:label": "SpecialAnnouncement", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:LibrarySystem", + "@type": "rdfs:Class", + "rdfs:comment": "A [[LibrarySystem]] is a collaborative system amongst several libraries.", + "rdfs:label": "LibrarySystem", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1495" + } + }, + { + "@id": "schema:imagingTechnique", + "@type": "rdf:Property", + "rdfs:comment": "Imaging technique used.", + "rdfs:label": "imagingTechnique", + "schema:domainIncludes": { + "@id": "schema:ImagingTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalImagingTechnique" + } + }, + { + "@id": "schema:CollectionPage", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Collection page.", + "rdfs:label": "CollectionPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:bloodSupply", + "@type": "rdf:Property", + "rdfs:comment": "The blood vessel that carries blood from the heart to the muscle.", + "rdfs:label": "bloodSupply", + "schema:domainIncludes": { + "@id": "schema:Muscle" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Vessel" + } + }, + { + "@id": "schema:foodEvent", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The specific food event where the action occurred.", + "rdfs:label": "foodEvent", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:CookAction" + }, + "schema:rangeIncludes": { + "@id": "schema:FoodEvent" + } + }, + { + "@id": "schema:BroadcastRelease", + "@type": "schema:MusicAlbumReleaseType", + "rdfs:comment": "BroadcastRelease.", + "rdfs:label": "BroadcastRelease", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:hasBioChemEntityPart", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org" + }, + "rdfs:comment": "Indicates a BioChemEntity that (in some sense) has this BioChemEntity as a part. ", + "rdfs:label": "hasBioChemEntityPart", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:inverseOf": { + "@id": "schema:isPartOfBioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BioChemEntity" + } + }, + { + "@id": "schema:callSign", + "@type": "rdf:Property", + "rdfs:comment": "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.", + "rdfs:label": "callSign", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:BroadcastService" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:Vehicle" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2109" + } + }, + { + "@id": "schema:seatNumber", + "@type": "rdf:Property", + "rdfs:comment": "The location of the reserved seat (e.g., 27).", + "rdfs:label": "seatNumber", + "schema:domainIncludes": { + "@id": "schema:Seat" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:GraphicNovel", + "@type": "schema:BookFormatType", + "rdfs:comment": "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.", + "rdfs:label": "GraphicNovel", + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:MediaReview", + "@type": "rdfs:Class", + "rdfs:comment": "A [[MediaReview]] is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types. This definition is\n a work in progress. While the [[MediaManipulationRatingEnumeration]] list reflects significant community review amongst fact-checkers and others working\n to combat misinformation, the specific structures for representing media objects, their versions and publication context, is still evolving. Similarly, best practices for the relationship between [[MediaReview]] and [[ClaimReview]] markup has not yet been finalized.", + "rdfs:label": "MediaReview", + "rdfs:subClassOf": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:ProfilePage", + "@type": "rdfs:Class", + "rdfs:comment": "Web page type: Profile page.", + "rdfs:label": "ProfilePage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:WarrantyScope", + "@type": "rdfs:Class", + "rdfs:comment": "A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ", + "rdfs:label": "WarrantyScope", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:HomeAndConstructionBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).", + "rdfs:label": "HomeAndConstructionBusiness", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:PhysicalTherapy", + "@type": "rdfs:Class", + "rdfs:comment": "A process of progressive physical care and rehabilitation aimed at improving a health condition.", + "rdfs:label": "PhysicalTherapy", + "rdfs:subClassOf": { + "@id": "schema:MedicalTherapy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Pulmonary", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.", + "rdfs:label": "Pulmonary", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:cvdNumVentUse", + "@type": "rdf:Property", + "rdfs:comment": "numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.", + "rdfs:label": "cvdNumVentUse", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:object", + "@type": "rdf:Property", + "rdfs:comment": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read *a book*.", + "rdfs:label": "object", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:AllWheelDriveConfiguration", + "@type": "schema:DriveWheelConfigurationValue", + "rdfs:comment": "All-wheel Drive is a transmission layout where the engine drives all four wheels.", + "rdfs:label": "AllWheelDriveConfiguration", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:SkiResort", + "@type": "rdfs:Class", + "rdfs:comment": "A ski resort.", + "rdfs:label": "SkiResort", + "rdfs:subClassOf": [ + { + "@id": "schema:SportsActivityLocation" + }, + { + "@id": "schema:Resort" + } + ] + }, + { + "@id": "schema:datePublished", + "@type": "rdf:Property", + "rdfs:comment": "Date of first broadcast/publication.", + "rdfs:label": "datePublished", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:programmingModel", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether API is managed or unmanaged.", + "rdfs:label": "programmingModel", + "schema:domainIncludes": { + "@id": "schema:APIReference" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:FoodEstablishmentReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.", + "rdfs:label": "FoodEstablishmentReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:programType", + "@type": "rdf:Property", + "rdfs:comment": "The type of educational or occupational program. For example, classroom, internship, alternance, etc..", + "rdfs:label": "programType", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2460" + } + }, + { + "@id": "schema:EventStatusType", + "@type": "rdfs:Class", + "rdfs:comment": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.", + "rdfs:label": "EventStatusType", + "rdfs:subClassOf": { + "@id": "schema:StatusEnumeration" + } + }, + { + "@id": "schema:PublicationIssue", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.org/ontology/bibo/Issue" + }, + "rdfs:comment": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).", + "rdfs:label": "PublicationIssue", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:CDCPMDRecord", + "@type": "rdfs:Class", + "rdfs:comment": "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n definitions used as the source here.\n ", + "rdfs:label": "CDCPMDRecord", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:ViewAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of consuming static visual content.", + "rdfs:label": "ViewAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:serviceArea", + "@type": "rdf:Property", + "rdfs:comment": "The geographic area where the service is provided.", + "rdfs:label": "serviceArea", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:Service" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GeoShape" + }, + { + "@id": "schema:AdministrativeArea" + }, + { + "@id": "schema:Place" + } + ], + "schema:supersededBy": { + "@id": "schema:areaServed" + } + }, + { + "@id": "schema:Integer", + "@type": "rdfs:Class", + "rdfs:comment": "Data type: Integer.", + "rdfs:label": "Integer", + "rdfs:subClassOf": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:musicArrangement", + "@type": "rdf:Property", + "rdfs:comment": "An arrangement derived from the composition.", + "rdfs:label": "musicArrangement", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:WriteAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of authoring written creative content.", + "rdfs:label": "WriteAction", + "rdfs:subClassOf": { + "@id": "schema:CreateAction" + } + }, + { + "@id": "schema:enginePower", + "@type": "rdf:Property", + "rdfs:comment": "The power of the vehicle's engine.\n Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\\n\\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "enginePower", + "schema:domainIncludes": { + "@id": "schema:EngineSpecification" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryF", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryF", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:Dentist", + "@type": "rdfs:Class", + "rdfs:comment": "A dentist.", + "rdfs:label": "Dentist", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalOrganization" + }, + { + "@id": "schema:MedicalBusiness" + }, + { + "@id": "schema:LocalBusiness" + } + ] + }, + { + "@id": "schema:AerobicActivity", + "@type": "schema:PhysicalActivityCategory", + "rdfs:comment": "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.", + "rdfs:label": "AerobicActivity", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:cvdNumBeds", + "@type": "rdf:Property", + "rdfs:comment": "numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.", + "rdfs:label": "cvdNumBeds", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:Dermatology", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.", + "rdfs:label": "Dermatology", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:WearableMeasurementLength", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Represents the length, for example of a dress", + "rdfs:label": "WearableMeasurementLength", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:doseUnit", + "@type": "rdf:Property", + "rdfs:comment": "The unit of the dose, e.g. 'mg'.", + "rdfs:label": "doseUnit", + "schema:domainIncludes": { + "@id": "schema:DoseSchedule" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:TaxiVehicleUsage", + "@type": "schema:CarUsageType", + "rdfs:comment": "Indicates the usage of the car as a taxi.", + "rdfs:label": "TaxiVehicleUsage", + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:WearableSizeGroupJuniors", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Juniors\" for wearables.", + "rdfs:label": "WearableSizeGroupJuniors", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:numberOfBeds", + "@type": "rdf:Property", + "rdfs:comment": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.", + "rdfs:label": "numberOfBeds", + "schema:domainIncludes": { + "@id": "schema:BedDetails" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:SingleRelease", + "@type": "schema:MusicAlbumReleaseType", + "rdfs:comment": "SingleRelease.", + "rdfs:label": "SingleRelease", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:Dentistry", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A branch of medicine that is involved in the dental care.", + "rdfs:label": "Dentistry", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Wednesday", + "@type": "schema:DayOfWeek", + "rdfs:comment": "The day of the week between Tuesday and Thursday.", + "rdfs:label": "Wednesday", + "schema:sameAs": { + "@id": "http://www.wikidata.org/entity/Q128" + } + }, + { + "@id": "schema:merchantReturnDays", + "@type": "rdf:Property", + "rdfs:comment": "Specifies either a fixed return date or the number of days (from the delivery date) that a product can be returned. Used when the [[returnPolicyCategory]] property is specified as [[MerchantReturnFiniteReturnWindow]].", + "rdfs:label": "merchantReturnDays", + "schema:domainIncludes": [ + { + "@id": "schema:MerchantReturnPolicy" + }, + { + "@id": "schema:MerchantReturnPolicySeasonalOverride" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Integer" + }, + { + "@id": "schema:Date" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:Casino", + "@type": "rdfs:Class", + "rdfs:comment": "A casino.", + "rdfs:label": "Casino", + "rdfs:subClassOf": { + "@id": "schema:EntertainmentBusiness" + } + }, + { + "@id": "schema:greater", + "@type": "rdf:Property", + "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than the object.", + "rdfs:label": "greater", + "schema:domainIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:rangeIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:remainingAttendeeCapacity", + "@type": "rdf:Property", + "rdfs:comment": "The number of attendee places for an event that remain unallocated.", + "rdfs:label": "remainingAttendeeCapacity", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:Paperback", + "@type": "schema:BookFormatType", + "rdfs:comment": "Book format: Paperback.", + "rdfs:label": "Paperback" + }, + { + "@id": "schema:Nonprofit501f", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.", + "rdfs:label": "Nonprofit501f", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:MedicalEntity", + "@type": "rdfs:Class", + "rdfs:comment": "The most generic type of entity related to health and the practice of medicine.", + "rdfs:label": "MedicalEntity", + "rdfs:subClassOf": { + "@id": "schema:Thing" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:WearableSizeGroupTall", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Tall\" for wearables.", + "rdfs:label": "WearableSizeGroupTall", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:normalRange", + "@type": "rdf:Property", + "rdfs:comment": "Range of acceptable values for a typical patient, when applicable.", + "rdfs:label": "normalRange", + "schema:domainIncludes": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:MedicalEnumeration" + } + ] + }, + { + "@id": "schema:VideoGameClip", + "@type": "rdfs:Class", + "rdfs:comment": "A short segment/part of a video game.", + "rdfs:label": "VideoGameClip", + "rdfs:subClassOf": { + "@id": "schema:Clip" + } + }, + { + "@id": "schema:orderItemNumber", + "@type": "rdf:Property", + "rdfs:comment": "The identifier of the order item.", + "rdfs:label": "orderItemNumber", + "schema:domainIncludes": { + "@id": "schema:OrderItem" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:geoWithin", + "@type": "rdf:Property", + "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", + "rdfs:label": "geoWithin", + "schema:domainIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeospatialGeometry" + } + ] + }, + { + "@id": "schema:Gastroenterologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.", + "rdfs:label": "Gastroenterologic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:hasVariant", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]).", + "rdfs:label": "hasVariant", + "schema:domainIncludes": { + "@id": "schema:ProductGroup" + }, + "schema:inverseOf": { + "@id": "schema:isVariantOf" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Product" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1797" + } + }, + { + "@id": "schema:Virus", + "@type": "schema:InfectiousAgentClass", + "rdfs:comment": "Pathogenic virus that causes viral infection.", + "rdfs:label": "Virus", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:spatialCoverage", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "dcterms:spatial" + }, + "rdfs:comment": "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.", + "rdfs:label": "spatialCoverage", + "rdfs:subPropertyOf": { + "@id": "schema:contentLocation" + }, + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:PreSale", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item is available for ordering and delivery before general availability.", + "rdfs:label": "PreSale" + }, + { + "@id": "schema:TireShop", + "@type": "rdfs:Class", + "rdfs:comment": "A tire shop.", + "rdfs:label": "TireShop", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:encodingType", + "@type": "rdf:Property", + "rdfs:comment": "The supported encoding type(s) for an EntryPoint request.", + "rdfs:label": "encodingType", + "schema:domainIncludes": { + "@id": "schema:EntryPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:appliesToPaymentMethod", + "@type": "rdf:Property", + "rdfs:comment": "The payment method(s) to which the payment charge specification applies.", + "rdfs:label": "appliesToPaymentMethod", + "schema:domainIncludes": { + "@id": "schema:PaymentChargeSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:PaymentMethod" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:guideline", + "@type": "rdf:Property", + "rdfs:comment": "A medical guideline related to this entity.", + "rdfs:label": "guideline", + "schema:domainIncludes": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalGuideline" + } + }, + { + "@id": "schema:embedUrl", + "@type": "rdf:Property", + "rdfs:comment": "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.", + "rdfs:label": "embedUrl", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:BackOrder", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item is available on back order.", + "rdfs:label": "BackOrder" + }, + { + "@id": "schema:masthead", + "@type": "rdf:Property", + "rdfs:comment": "For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.", + "rdfs:label": "masthead", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": { + "@id": "schema:NewsMediaOrganization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + ] + }, + { + "@id": "schema:sdLicense", + "@type": "rdf:Property", + "rdfs:comment": "A license document that applies to this structured data, typically indicated by URL.", + "rdfs:label": "sdLicense", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1886" + } + }, + { + "@id": "schema:PrependAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of inserting at the beginning if an ordered collection.", + "rdfs:label": "PrependAction", + "rdfs:subClassOf": { + "@id": "schema:InsertAction" + } + }, + { + "@id": "schema:conditionsOfAccess", + "@type": "rdf:Property", + "rdfs:comment": "Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \". ", + "rdfs:label": "conditionsOfAccess", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2173" + } + }, + { + "@id": "schema:legislationPassedBy", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#passed_by" + }, + "rdfs:comment": "The person or organization that originally passed or made the law : typically parliament (for primary legislation) or government (for secondary legislation). This indicates the \"legal author\" of the law, as opposed to its physical author.", + "rdfs:label": "legislationPassedBy", + "rdfs:subPropertyOf": { + "@id": "schema:creator" + }, + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#passed_by" + } + }, + { + "@id": "schema:PreOrder", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item is available for pre-order.", + "rdfs:label": "PreOrder" + }, + { + "@id": "schema:WholesaleStore", + "@type": "rdfs:Class", + "rdfs:comment": "A wholesale store.", + "rdfs:label": "WholesaleStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:ReservationHold", + "@type": "schema:ReservationStatusType", + "rdfs:comment": "The status of a reservation on hold pending an update like credit card number or flight changes.", + "rdfs:label": "ReservationHold" + }, + { + "@id": "schema:bioChemInteraction", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org" + }, + "rdfs:comment": "A BioChemEntity that is known to interact with this item.", + "rdfs:label": "bioChemInteraction", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BioChemEntity" + } + }, + { + "@id": "schema:byMonthDay", + "@type": "rdf:Property", + "rdfs:comment": "Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31.", + "rdfs:label": "byMonthDay", + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:UsageOrScheduleHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about how, when, frequency and dosage of a topic.", + "rdfs:label": "UsageOrScheduleHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:Project", + "@type": "rdfs:Class", + "rdfs:comment": "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n ", + "rdfs:label": "Project", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + } + ] + }, + { + "@id": "schema:ExchangeRateSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A structured value representing exchange rate.", + "rdfs:label": "ExchangeRateSpecification", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:geoDisjoint", + "@type": "rdf:Property", + "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM))", + "rdfs:label": "geoDisjoint", + "schema:domainIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ] + }, + { + "@id": "schema:MusicPlaylist", + "@type": "rdfs:Class", + "rdfs:comment": "A collection of music tracks in playlist form.", + "rdfs:label": "MusicPlaylist", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:valuePattern", + "@type": "rdf:Property", + "rdfs:comment": "Specifies a regular expression for testing literal values according to the HTML spec.", + "rdfs:label": "valuePattern", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:unsaturatedFatContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of unsaturated fat.", + "rdfs:label": "unsaturatedFatContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:PaymentComplete", + "@type": "schema:PaymentStatusType", + "rdfs:comment": "The payment has been received and processed.", + "rdfs:label": "PaymentComplete" + }, + { + "@id": "schema:MapCategoryType", + "@type": "rdfs:Class", + "rdfs:comment": "An enumeration of several kinds of Map.", + "rdfs:label": "MapCategoryType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:RealEstateAgent", + "@type": "rdfs:Class", + "rdfs:comment": "A real-estate agent.", + "rdfs:label": "RealEstateAgent", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:opens", + "@type": "rdf:Property", + "rdfs:comment": "The opening hour of the place or service on the given day(s) of the week.", + "rdfs:label": "opens", + "schema:domainIncludes": { + "@id": "schema:OpeningHoursSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Time" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:recognizingAuthority", + "@type": "rdf:Property", + "rdfs:comment": "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.", + "rdfs:label": "recognizingAuthority", + "schema:domainIncludes": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:totalTime", + "@type": "rdf:Property", + "rdfs:comment": "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).", + "rdfs:label": "totalTime", + "schema:domainIncludes": [ + { + "@id": "schema:HowToDirection" + }, + { + "@id": "schema:HowTo" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Duration" + } + }, + { + "@id": "schema:inProductGroupWithID", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. ", + "rdfs:label": "inProductGroupWithID", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1797" + } + }, + { + "@id": "schema:grantee", + "@type": "rdf:Property", + "rdfs:comment": "The person, organization, contact point, or audience that has been granted this permission.", + "rdfs:label": "grantee", + "schema:domainIncludes": { + "@id": "schema:DigitalDocumentPermission" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Audience" + }, + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:tourBookingPage", + "@type": "rdf:Property", + "rdfs:comment": "A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.", + "rdfs:label": "tourBookingPage", + "schema:domainIncludes": [ + { + "@id": "schema:Accommodation" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:ApartmentComplex" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:WorkersUnion", + "@type": "rdfs:Class", + "rdfs:comment": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.", + "rdfs:label": "WorkersUnion", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/243" + } + }, + { + "@id": "schema:Role", + "@type": "rdfs:Class", + "rdfs:comment": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\\n\\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html).", + "rdfs:label": "Role", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:tongueWeight", + "@type": "rdf:Property", + "rdfs:comment": "The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "tongueWeight", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:isicV4", + "@type": "rdf:Property", + "rdfs:comment": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.", + "rdfs:label": "isicV4", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:model", + "@type": "rdf:Property", + "rdfs:comment": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.", + "rdfs:label": "model", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ProductModel" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:CreativeWork", + "@type": "rdfs:Class", + "rdfs:comment": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.", + "rdfs:label": "CreativeWork", + "rdfs:subClassOf": { + "@id": "schema:Thing" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + } + }, + { + "@id": "schema:exercisePlan", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. The exercise plan used on this action.", + "rdfs:label": "exercisePlan", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ExercisePlan" + } + }, + { + "@id": "schema:doseValue", + "@type": "rdf:Property", + "rdfs:comment": "The value of the dose, e.g. 500.", + "rdfs:label": "doseValue", + "schema:domainIncludes": { + "@id": "schema:DoseSchedule" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QualitativeValue" + } + ] + }, + { + "@id": "schema:DrugClass", + "@type": "rdfs:Class", + "rdfs:comment": "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.", + "rdfs:label": "DrugClass", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:GeoCircle", + "@type": "rdfs:Class", + "rdfs:comment": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n ", + "rdfs:label": "GeoCircle", + "rdfs:subClassOf": { + "@id": "schema:GeoShape" + } + }, + { + "@id": "schema:WearableMeasurementHeight", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the height, for example the heel height of a shoe", + "rdfs:label": "WearableMeasurementHeight", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:DrawAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.", + "rdfs:label": "DrawAction", + "rdfs:subClassOf": { + "@id": "schema:CreateAction" + } + }, + { + "@id": "schema:hasMerchantReturnPolicy", + "@type": "rdf:Property", + "rdfs:comment": "Specifies a MerchantReturnPolicy that may be applicable.", + "rdfs:label": "hasMerchantReturnPolicy", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Organization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:RisksOrComplicationsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Information about the risk factors and possible complications that may follow a topic.", + "rdfs:label": "RisksOrComplicationsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:ActivateAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).", + "rdfs:label": "ActivateAction", + "rdfs:subClassOf": { + "@id": "schema:ControlAction" + } + }, + { + "@id": "schema:bitrate", + "@type": "rdf:Property", + "rdfs:comment": "The bitrate of the media object.", + "rdfs:label": "bitrate", + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Playground", + "@type": "rdfs:Class", + "rdfs:comment": "A playground.", + "rdfs:label": "Playground", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:OfferShippingDetails", + "@type": "rdfs:Class", + "rdfs:comment": "OfferShippingDetails represents information about shipping destinations.\n\nMultiple of these entities can be used to represent different shipping rates for different destinations:\n\nOne entity for Alaska/Hawaii. A different one for continental US.A different one for all France.\n\nMultiple of these entities can be used to represent different shipping costs and delivery times.\n\nTwo entities that are identical but differ in rate and time:\n\ne.g. Cheaper and slower: $5 in 5-7days\nor Fast and expensive: $15 in 1-2 days.", + "rdfs:label": "OfferShippingDetails", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:molecularFormula", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/MolecularEntity" + }, + "rdfs:comment": "The empirical formula is the simplest whole number ratio of all the atoms in a molecule.", + "rdfs:label": "molecularFormula", + "schema:domainIncludes": { + "@id": "schema:MolecularEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:potentialUse", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/ChemicalSubstance" + }, + "rdfs:comment": "Intended use of the BioChemEntity by humans.", + "rdfs:label": "potentialUse", + "schema:domainIncludes": [ + { + "@id": "schema:ChemicalSubstance" + }, + { + "@id": "schema:MolecularEntity" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DefinedTerm" + } + }, + { + "@id": "schema:claimInterpreter", + "@type": "rdf:Property", + "rdfs:comment": "For a [[Claim]] interpreted from [[MediaObject]] content\n sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].", + "rdfs:label": "claimInterpreter", + "schema:domainIncludes": { + "@id": "schema:Claim" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:MolecularEntity", + "@type": "rdfs:Class", + "dcterms:source": { + "@id": "http://bioschemas.org" + }, + "rdfs:comment": "Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.", + "rdfs:label": "MolecularEntity", + "rdfs:subClassOf": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + } + }, + { + "@id": "schema:reviewedBy", + "@type": "rdf:Property", + "rdfs:comment": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.", + "rdfs:label": "reviewedBy", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:HyperToc", + "@type": "rdfs:Class", + "rdfs:comment": "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.", + "rdfs:label": "HyperToc", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2766" + } + }, + { + "@id": "schema:PostalAddress", + "@type": "rdfs:Class", + "rdfs:comment": "The mailing address.", + "rdfs:label": "PostalAddress", + "rdfs:subClassOf": { + "@id": "schema:ContactPoint" + } + }, + { + "@id": "schema:TelevisionChannel", + "@type": "rdfs:Class", + "rdfs:comment": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.", + "rdfs:label": "TelevisionChannel", + "rdfs:subClassOf": { + "@id": "schema:BroadcastChannel" + } + }, + { + "@id": "schema:ShippingRateSettings", + "@type": "rdfs:Class", + "rdfs:comment": "A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished and matched (i.e. identified/referenced) by their different values for [[shippingLabel]].", + "rdfs:label": "ShippingRateSettings", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:epidemiology", + "@type": "rdf:Property", + "rdfs:comment": "The characteristics of associated patients, such as age, gender, race etc.", + "rdfs:label": "epidemiology", + "schema:domainIncludes": [ + { + "@id": "schema:PhysicalActivity" + }, + { + "@id": "schema:MedicalCondition" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:postalCodeEnd", + "@type": "rdf:Property", + "rdfs:comment": "Last postal code in the range (included). Needs to be after [[postalCodeBegin]].", + "rdfs:label": "postalCodeEnd", + "schema:domainIncludes": { + "@id": "schema:PostalCodeRangeSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:usesHealthPlanIdStandard", + "@type": "rdf:Property", + "rdfs:comment": "The standard for interpreting thePlan ID. The preferred is \"HIOS\". See the Centers for Medicare & Medicaid Services for more details.", + "rdfs:label": "usesHealthPlanIdStandard", + "schema:domainIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:ElectronicsStore", + "@type": "rdfs:Class", + "rdfs:comment": "An electronics store.", + "rdfs:label": "ElectronicsStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:commentText", + "@type": "rdf:Property", + "rdfs:comment": "The text of the UserComment.", + "rdfs:label": "commentText", + "schema:domainIncludes": { + "@id": "schema:UserComments" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:albumRelease", + "@type": "rdf:Property", + "rdfs:comment": "A release of this album.", + "rdfs:label": "albumRelease", + "schema:domainIncludes": { + "@id": "schema:MusicAlbum" + }, + "schema:inverseOf": { + "@id": "schema:releaseOf" + }, + "schema:rangeIncludes": { + "@id": "schema:MusicRelease" + } + }, + { + "@id": "schema:hasPOS", + "@type": "rdf:Property", + "rdfs:comment": "Points-of-Sales operated by the organization or person.", + "rdfs:label": "hasPOS", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Place" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:cvdNumC19MechVentPats", + "@type": "rdf:Property", + "rdfs:comment": "numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.", + "rdfs:label": "cvdNumC19MechVentPats", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:PresentationDigitalDocument", + "@type": "rdfs:Class", + "rdfs:comment": "A file containing slides or used for a presentation.", + "rdfs:label": "PresentationDigitalDocument", + "rdfs:subClassOf": { + "@id": "schema:DigitalDocument" + } + }, + { + "@id": "schema:alumniOf", + "@type": "rdf:Property", + "rdfs:comment": "An organization that the person is an alumni of.", + "rdfs:label": "alumniOf", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:inverseOf": { + "@id": "schema:alumni" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:EducationalOrganization" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:CityHall", + "@type": "rdfs:Class", + "rdfs:comment": "A city hall.", + "rdfs:label": "CityHall", + "rdfs:subClassOf": { + "@id": "schema:GovernmentBuilding" + } + }, + { + "@id": "schema:FundingAgency", + "@type": "rdfs:Class", + "rdfs:comment": "A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages\n the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s).\n A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.\n \nExamples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation...\n ", + "rdfs:label": "FundingAgency", + "rdfs:subClassOf": { + "@id": "schema:Project" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + } + ] + }, + { + "@id": "schema:Thesis", + "@type": "rdfs:Class", + "rdfs:comment": "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.", + "rdfs:label": "Thesis", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:source": { + "@id": "http://www.productontology.org/id/Thesis" + } + }, + { + "@id": "schema:gameTip", + "@type": "rdf:Property", + "rdfs:comment": "Links to tips, tactics, etc.", + "rdfs:label": "gameTip", + "schema:domainIncludes": { + "@id": "schema:VideoGame" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:maximumEnrollment", + "@type": "rdf:Property", + "rdfs:comment": "The maximum number of students who may be enrolled in the program.", + "rdfs:label": "maximumEnrollment", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:PublicHealth", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.", + "rdfs:label": "PublicHealth", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:assemblyVersion", + "@type": "rdf:Property", + "rdfs:comment": "Associated product/technology version. e.g., .NET Framework 4.5.", + "rdfs:label": "assemblyVersion", + "schema:domainIncludes": { + "@id": "schema:APIReference" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:LeaveAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.", + "rdfs:label": "LeaveAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:bestRating", + "@type": "rdf:Property", + "rdfs:comment": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.", + "rdfs:label": "bestRating", + "schema:domainIncludes": { + "@id": "schema:Rating" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ] + }, + { + "@id": "schema:MedicalBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals.", + "rdfs:label": "MedicalBusiness", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:founder", + "@type": "rdf:Property", + "rdfs:comment": "A person who founded this organization.", + "rdfs:label": "founder", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:returnMethod", + "@type": "rdf:Property", + "rdfs:comment": "The type of return method offered, specified from an enumeration.", + "rdfs:label": "returnMethod", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ReturnMethodEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:SearchAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of searching for an object.\\n\\nRelated actions:\\n\\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.", + "rdfs:label": "SearchAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:UsedCondition", + "@type": "schema:OfferItemCondition", + "rdfs:comment": "Indicates that the item is used.", + "rdfs:label": "UsedCondition" + }, + { + "@id": "schema:advanceBookingRequirement", + "@type": "rdf:Property", + "rdfs:comment": "The amount of time that is required between accepting the offer and the actual usage of the resource or service.", + "rdfs:label": "advanceBookingRequirement", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:SizeSystemEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates common size systems for different categories of products, for example \"EN-13402\" or \"UK\" for wearables or \"Imperial\" for screws.", + "rdfs:label": "SizeSystemEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:MonetaryAmountDistribution", + "@type": "rdfs:Class", + "rdfs:comment": "A statistical distribution of monetary amounts.", + "rdfs:label": "MonetaryAmountDistribution", + "rdfs:subClassOf": { + "@id": "schema:QuantitativeValueDistribution" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:geoOverlaps", + "@type": "rdf:Property", + "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", + "rdfs:label": "geoOverlaps", + "schema:domainIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GeospatialGeometry" + }, + { + "@id": "schema:Place" + } + ] + }, + { + "@id": "schema:arrivalStation", + "@type": "rdf:Property", + "rdfs:comment": "The station where the train trip ends.", + "rdfs:label": "arrivalStation", + "schema:domainIncludes": { + "@id": "schema:TrainTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:TrainStation" + } + }, + { + "@id": "schema:productGroupID", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a textual identifier for a ProductGroup.", + "rdfs:label": "productGroupID", + "schema:domainIncludes": { + "@id": "schema:ProductGroup" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1797" + } + }, + { + "@id": "schema:childMinAge", + "@type": "rdf:Property", + "rdfs:comment": "Minimal age of the child.", + "rdfs:label": "childMinAge", + "schema:domainIncludes": { + "@id": "schema:ParentAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:Crematorium", + "@type": "rdfs:Class", + "rdfs:comment": "A crematorium.", + "rdfs:label": "Crematorium", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:mainContentOfPage", + "@type": "rdf:Property", + "rdfs:comment": "Indicates if this web page element is the main subject of the page.", + "rdfs:label": "mainContentOfPage", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": { + "@id": "schema:WebPageElement" + } + }, + { + "@id": "schema:DeliveryChargeSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "The price for the delivery of an offer using a particular delivery method.", + "rdfs:label": "DeliveryChargeSpecification", + "rdfs:subClassOf": { + "@id": "schema:PriceSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:Ayurvedic", + "@type": "schema:MedicineSystem", + "rdfs:comment": "A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.", + "rdfs:label": "Ayurvedic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Nonprofit501c5", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.", + "rdfs:label": "Nonprofit501c5", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:MedicalWebPage", + "@type": "rdfs:Class", + "rdfs:comment": "A web page that provides medical information.", + "rdfs:label": "MedicalWebPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:InviteAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of asking someone to attend an event. Reciprocal of RsvpAction.", + "rdfs:label": "InviteAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:numberOfBedrooms", + "@type": "rdf:Property", + "rdfs:comment": "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].", + "rdfs:label": "numberOfBedrooms", + "schema:domainIncludes": [ + { + "@id": "schema:ApartmentComplex" + }, + { + "@id": "schema:Accommodation" + }, + { + "@id": "schema:FloorPlan" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:DiagnosticLab", + "@type": "rdfs:Class", + "rdfs:comment": "A medical laboratory that offers on-site or off-site diagnostic services.", + "rdfs:label": "DiagnosticLab", + "rdfs:subClassOf": { + "@id": "schema:MedicalOrganization" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:unnamedSourcesPolicy", + "@type": "rdf:Property", + "rdfs:comment": "For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.", + "rdfs:label": "unnamedSourcesPolicy", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": [ + { + "@id": "schema:NewsMediaOrganization" + }, + { + "@id": "schema:Organization" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + } + ] + }, + { + "@id": "schema:PaymentPastDue", + "@type": "schema:PaymentStatusType", + "rdfs:comment": "The payment is due and considered late.", + "rdfs:label": "PaymentPastDue" + }, + { + "@id": "schema:screenshot", + "@type": "rdf:Property", + "rdfs:comment": "A link to a screenshot image of the app.", + "rdfs:label": "screenshot", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ImageObject" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:RandomizedTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A randomized trial design.", + "rdfs:label": "RandomizedTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Psychiatric", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.", + "rdfs:label": "Psychiatric", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:resultComment", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of result. The Comment created or sent as a result of this action.", + "rdfs:label": "resultComment", + "rdfs:subPropertyOf": { + "@id": "schema:result" + }, + "schema:domainIncludes": [ + { + "@id": "schema:CommentAction" + }, + { + "@id": "schema:ReplyAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Comment" + } + }, + { + "@id": "schema:processingTime", + "@type": "rdf:Property", + "rdfs:comment": "Estimated processing time for the service using this channel.", + "rdfs:label": "processingTime", + "schema:domainIncludes": { + "@id": "schema:ServiceChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:Duration" + } + }, + { + "@id": "schema:fuelEfficiency", + "@type": "rdf:Property", + "rdfs:comment": "The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\\n\\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel economy to another value.", + "rdfs:label": "fuelEfficiency", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:MedicalTest", + "@type": "rdfs:Class", + "rdfs:comment": "Any medical test, typically performed for diagnostic purposes.", + "rdfs:label": "MedicalTest", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:TollFree", + "@type": "schema:ContactPointOption", + "rdfs:comment": "The associated telephone number is toll free.", + "rdfs:label": "TollFree" + }, + { + "@id": "schema:contentType", + "@type": "rdf:Property", + "rdfs:comment": "The supported content type(s) for an EntryPoint response.", + "rdfs:label": "contentType", + "schema:domainIncludes": { + "@id": "schema:EntryPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:WearableMeasurementTypeEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates common types of measurement for wearables products.", + "rdfs:label": "WearableMeasurementTypeEnumeration", + "rdfs:subClassOf": { + "@id": "schema:MeasurementTypeEnumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:postalCode", + "@type": "rdf:Property", + "rdfs:comment": "The postal code. For example, 94043.", + "rdfs:label": "postalCode", + "schema:domainIncludes": [ + { + "@id": "schema:PostalAddress" + }, + { + "@id": "schema:DefinedRegion" + }, + { + "@id": "schema:GeoCoordinates" + }, + { + "@id": "schema:GeoShape" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:Airline", + "@type": "rdfs:Class", + "rdfs:comment": "An organization that provides flights for passengers.", + "rdfs:label": "Airline", + "rdfs:subClassOf": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:EatAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of swallowing solid objects.", + "rdfs:label": "EatAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:verificationFactCheckingPolicy", + "@type": "rdf:Property", + "rdfs:comment": "Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].", + "rdfs:label": "verificationFactCheckingPolicy", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": { + "@id": "schema:NewsMediaOrganization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:OnDemandEvent", + "@type": "rdfs:Class", + "rdfs:comment": "A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.", + "rdfs:label": "OnDemandEvent", + "rdfs:subClassOf": { + "@id": "schema:PublicationEvent" + } + }, + { + "@id": "schema:broadcastSubChannel", + "@type": "rdf:Property", + "rdfs:comment": "The subchannel used for the broadcast.", + "rdfs:label": "broadcastSubChannel", + "schema:domainIncludes": { + "@id": "schema:BroadcastFrequencySpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2111" + } + }, + { + "@id": "schema:VideoGame", + "@type": "rdfs:Class", + "rdfs:comment": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.", + "rdfs:label": "VideoGame", + "rdfs:subClassOf": [ + { + "@id": "schema:SoftwareApplication" + }, + { + "@id": "schema:Game" + } + ] + }, + { + "@id": "schema:LocationFeatureSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.", + "rdfs:label": "LocationFeatureSpecification", + "rdfs:subClassOf": { + "@id": "schema:PropertyValue" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:LiveAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "LiveAlbum.", + "rdfs:label": "LiveAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:financialAidEligible", + "@type": "rdf:Property", + "rdfs:comment": "A financial aid type or program which students may use to pay for tuition or fees associated with the program.", + "rdfs:label": "financialAidEligible", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2418" + } + }, + { + "@id": "schema:ChildrensEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Children's event.", + "rdfs:label": "ChildrensEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:releaseDate", + "@type": "rdf:Property", + "rdfs:comment": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.", + "rdfs:label": "releaseDate", + "schema:domainIncludes": { + "@id": "schema:Product" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:muscleAction", + "@type": "rdf:Property", + "rdfs:comment": "The movement the muscle generates.", + "rdfs:label": "muscleAction", + "schema:domainIncludes": { + "@id": "schema:Muscle" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ProgramMembership", + "@type": "rdfs:Class", + "rdfs:comment": "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.", + "rdfs:label": "ProgramMembership", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:AnimalShelter", + "@type": "rdfs:Class", + "rdfs:comment": "Animal shelter.", + "rdfs:label": "AnimalShelter", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:foundingLocation", + "@type": "rdf:Property", + "rdfs:comment": "The place where the Organization was founded.", + "rdfs:label": "foundingLocation", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:AmusementPark", + "@type": "rdfs:Class", + "rdfs:comment": "An amusement park.", + "rdfs:label": "AmusementPark", + "rdfs:subClassOf": { + "@id": "schema:EntertainmentBusiness" + } + }, + { + "@id": "schema:MedicalConditionStage", + "@type": "rdfs:Class", + "rdfs:comment": "A stage of a medical condition, such as 'Stage IIIa'.", + "rdfs:label": "MedicalConditionStage", + "rdfs:subClassOf": { + "@id": "schema:MedicalIntangible" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:PayAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent pays a price to a participant.", + "rdfs:label": "PayAction", + "rdfs:subClassOf": { + "@id": "schema:TradeAction" + } + }, + { + "@id": "schema:HealthPlanFormulary", + "@type": "rdfs:Class", + "rdfs:comment": "For a given health insurance plan, the specification for costs and coverage of prescription drugs. ", + "rdfs:label": "HealthPlanFormulary", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:passengerSequenceNumber", + "@type": "rdf:Property", + "rdfs:comment": "The passenger's sequence number as assigned by the airline.", + "rdfs:label": "passengerSequenceNumber", + "schema:domainIncludes": { + "@id": "schema:FlightReservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DataDownload", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "dcat:Distribution" + }, + "rdfs:comment": "A dataset in downloadable form.", + "rdfs:label": "DataDownload", + "rdfs:subClassOf": { + "@id": "schema:MediaObject" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass" + } + }, + { + "@id": "schema:ReportageNewsArticle", + "@type": "rdfs:Class", + "rdfs:comment": "The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing\n news articles which are the result of journalistic news reporting conventions.\n\nIn practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.\n\nThe [[ReportageNewsArticle]] type is based on a stricter ideal for \"news\" as a work of journalism, with articles based on factual information either observed or verified by the author, or reported and verified from knowledgeable sources. This often includes perspectives from multiple viewpoints on a particular issue (distinguishing news reports from public relations or propaganda). News reports in the [[ReportageNewsArticle]] sense de-emphasize the opinion of the author, with commentary and value judgements typically expressed elsewhere.\n\nA [[ReportageNewsArticle]] which goes deeper into analysis can also be marked with an additional type of [[AnalysisNewsArticle]].\n", + "rdfs:label": "ReportageNewsArticle", + "rdfs:subClassOf": { + "@id": "schema:NewsArticle" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:Nonprofit501c20", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.", + "rdfs:label": "Nonprofit501c20", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:WebPageElement", + "@type": "rdfs:Class", + "rdfs:comment": "A web page element, like a table or an image.", + "rdfs:label": "WebPageElement", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:LimitedAvailability", + "@type": "schema:ItemAvailability", + "rdfs:comment": "Indicates that the item has limited availability.", + "rdfs:label": "LimitedAvailability" + }, + { + "@id": "schema:PharmacySpecialty", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "The practice or art and science of preparing and dispensing drugs and medicines.", + "rdfs:label": "PharmacySpecialty", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:recipeIngredient", + "@type": "rdf:Property", + "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.", + "rdfs:label": "recipeIngredient", + "rdfs:subPropertyOf": { + "@id": "schema:supply" + }, + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Hematologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.", + "rdfs:label": "Hematologic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:BrainStructure", + "@type": "rdfs:Class", + "rdfs:comment": "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.", + "rdfs:label": "BrainStructure", + "rdfs:subClassOf": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:acceptsReservations", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```.", + "rdfs:label": "acceptsReservations", + "schema:domainIncludes": { + "@id": "schema:FoodEstablishment" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Boolean" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:PublicHolidays", + "@type": "schema:DayOfWeek", + "rdfs:comment": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a \"day of the week\", it can be used with [[OpeningHoursSpecification]]. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs.", + "rdfs:label": "PublicHolidays", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:ProductModel", + "@type": "rdfs:Class", + "rdfs:comment": "A datasheet or vendor specification of a product (in the sense of a prototypical description).", + "rdfs:label": "ProductModel", + "rdfs:subClassOf": { + "@id": "schema:Product" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:OnlineBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "A particular online business, either standalone or the online part of a broader organization. Examples include an eCommerce site, an online travel booking site, an online learning site, an online logistics and shipping provider, an online (virtual) doctor, etc.", + "rdfs:label": "OnlineBusiness", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3028" + } + }, + { + "@id": "schema:guidelineDate", + "@type": "rdf:Property", + "rdfs:comment": "Date on which this guideline's recommendation was made.", + "rdfs:label": "guidelineDate", + "schema:domainIncludes": { + "@id": "schema:MedicalGuideline" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:correction", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.", + "rdfs:label": "correction", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:CorrectionComment" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1950" + } + ] + }, + { + "@id": "schema:target", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a target EntryPoint for an Action.", + "rdfs:label": "target", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": { + "@id": "schema:EntryPoint" + } + }, + { + "@id": "schema:MerchantReturnFiniteReturnWindow", + "@type": "schema:MerchantReturnEnumeration", + "rdfs:comment": "Specifies that there is a finite window for product returns.", + "rdfs:label": "MerchantReturnFiniteReturnWindow", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:DrivingSchoolVehicleUsage", + "@type": "schema:CarUsageType", + "rdfs:comment": "Indicates the usage of the vehicle for driving school.", + "rdfs:label": "DrivingSchoolVehicleUsage", + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:contentRating", + "@type": "rdf:Property", + "rdfs:comment": "Official rating of a piece of content—for example,'MPAA PG-13'.", + "rdfs:label": "contentRating", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Rating" + } + ] + }, + { + "@id": "schema:MusicReleaseFormatType", + "@type": "rdfs:Class", + "rdfs:comment": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).", + "rdfs:label": "MusicReleaseFormatType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:duns", + "@type": "rdf:Property", + "rdfs:comment": "The Dun & Bradstreet DUNS number for identifying an organization or business person.", + "rdfs:label": "duns", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:MedicalObservationalStudy", + "@type": "rdfs:Class", + "rdfs:comment": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.", + "rdfs:label": "MedicalObservationalStudy", + "rdfs:subClassOf": { + "@id": "schema:MedicalStudy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:videoQuality", + "@type": "rdf:Property", + "rdfs:comment": "The quality of the video.", + "rdfs:label": "videoQuality", + "schema:domainIncludes": { + "@id": "schema:VideoObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:gtin14", + "@type": "rdf:Property", + "rdfs:comment": "The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.", + "rdfs:label": "gtin14", + "rdfs:subPropertyOf": [ + { + "@id": "schema:identifier" + }, + { + "@id": "schema:gtin" + } + ], + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:OrderInTransit", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing that an order is in transit.", + "rdfs:label": "OrderInTransit" + }, + { + "@id": "schema:endTime", + "@type": "rdf:Property", + "rdfs:comment": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.", + "rdfs:label": "endTime", + "schema:domainIncludes": [ + { + "@id": "schema:Schedule" + }, + { + "@id": "schema:FoodEstablishmentReservation" + }, + { + "@id": "schema:Action" + }, + { + "@id": "schema:InteractionCounter" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Time" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2493" + } + }, + { + "@id": "schema:ActiveActionStatus", + "@type": "schema:ActionStatusType", + "rdfs:comment": "An in-progress action (e.g, while watching the movie, or driving to a location).", + "rdfs:label": "ActiveActionStatus" + }, + { + "@id": "schema:dataFeedElement", + "@type": "rdf:Property", + "rdfs:comment": "An item within in a data feed. Data feeds may have many elements.", + "rdfs:label": "dataFeedElement", + "schema:domainIncludes": { + "@id": "schema:DataFeed" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Thing" + }, + { + "@id": "schema:DataFeedItem" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:lyrics", + "@type": "rdf:Property", + "rdfs:comment": "The words in the song.", + "rdfs:label": "lyrics", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:discountCurrency", + "@type": "rdf:Property", + "rdfs:comment": "The currency of the discount.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".", + "rdfs:label": "discountCurrency", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:branchCode", + "@type": "rdf:Property", + "rdfs:comment": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\\n\\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.\n ", + "rdfs:label": "branchCode", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:numberOfPartialBathrooms", + "@type": "rdf:Property", + "rdfs:comment": "Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ", + "rdfs:label": "numberOfPartialBathrooms", + "schema:domainIncludes": [ + { + "@id": "schema:Accommodation" + }, + { + "@id": "schema:FloorPlan" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:priceCurrency", + "@type": "rdf:Property", + "rdfs:comment": "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".", + "rdfs:label": "priceCurrency", + "schema:domainIncludes": [ + { + "@id": "schema:Ticket" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:PriceSpecification" + }, + { + "@id": "schema:Reservation" + }, + { + "@id": "schema:TradeAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Class", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "rdfs:Class" + }, + "rdfs:comment": "A class, also often called a 'Type'; equivalent to rdfs:Class.", + "rdfs:label": "Class", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://meta.schema.org" + } + }, + { + "@id": "schema:vehicleModelDate", + "@type": "rdf:Property", + "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).", + "rdfs:label": "vehicleModelDate", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:expressedIn", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/Gene" + }, + "rdfs:comment": "Tissue, organ, biological sample, etc in which activity of this gene has been observed experimentally. For example brain, digestive system.", + "rdfs:label": "expressedIn", + "schema:domainIncludes": { + "@id": "schema:Gene" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AnatomicalStructure" + }, + { + "@id": "schema:BioChemEntity" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:AnatomicalSystem" + } + ] + }, + { + "@id": "schema:MinimumAdvertisedPrice", + "@type": "schema:PriceTypeEnumeration", + "rdfs:comment": "Represents the minimum advertised price (\"MAP\") (as dictated by the manufacturer) of an offered product.", + "rdfs:label": "MinimumAdvertisedPrice", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2712" + } + }, + { + "@id": "schema:weight", + "@type": "rdf:Property", + "rdfs:comment": "The weight of the product or person.", + "rdfs:label": "weight", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:videoFrameSize", + "@type": "rdf:Property", + "rdfs:comment": "The frame size of the video.", + "rdfs:label": "videoFrameSize", + "schema:domainIncludes": { + "@id": "schema:VideoObject" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:RadioSeries", + "@type": "rdfs:Class", + "rdfs:comment": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.", + "rdfs:label": "RadioSeries", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeries" + } + }, + { + "@id": "schema:VisualArtsEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Visual arts event.", + "rdfs:label": "VisualArtsEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:Canal", + "@type": "rdfs:Class", + "rdfs:comment": "A canal, like the Panama Canal.", + "rdfs:label": "Canal", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:ZoneBoardingPolicy", + "@type": "schema:BoardingPolicyType", + "rdfs:comment": "The airline boards by zones of the plane.", + "rdfs:label": "ZoneBoardingPolicy" + }, + { + "@id": "schema:CassetteFormat", + "@type": "schema:MusicReleaseFormatType", + "rdfs:comment": "CassetteFormat.", + "rdfs:label": "CassetteFormat", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:FlightReservation", + "@type": "rdfs:Class", + "rdfs:comment": "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].", + "rdfs:label": "FlightReservation", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:SatiricalArticle", + "@type": "rdfs:Class", + "rdfs:comment": "An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized.", + "rdfs:label": "SatiricalArticle", + "rdfs:subClassOf": { + "@id": "schema:Article" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:itemListOrder", + "@type": "rdf:Property", + "rdfs:comment": "Type of ordering (e.g. Ascending, Descending, Unordered).", + "rdfs:label": "itemListOrder", + "schema:domainIncludes": { + "@id": "schema:ItemList" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:ItemListOrderType" + } + ] + }, + { + "@id": "schema:clincalPharmacology", + "@type": "rdf:Property", + "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).", + "rdfs:label": "clincalPharmacology", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:clinicalPharmacology" + } + }, + { + "@id": "schema:WorkBasedProgram", + "@type": "rdfs:Class", + "rdfs:comment": "A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs.", + "rdfs:label": "WorkBasedProgram", + "rdfs:subClassOf": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + } + }, + { + "@id": "schema:size", + "@type": "rdf:Property", + "rdfs:comment": "A standardized size of a product or creative work, specified either through a simple textual string (for example 'XL', '32Wx34L'), a QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. ", + "rdfs:label": "size", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:SizeSpecification" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1797" + } + }, + { + "@id": "schema:IngredientsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content discussing ingredients-related aspects of a health topic.", + "rdfs:label": "IngredientsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2799" + } + }, + { + "@id": "schema:Church", + "@type": "rdfs:Class", + "rdfs:comment": "A church.", + "rdfs:label": "Church", + "rdfs:subClassOf": { + "@id": "schema:PlaceOfWorship" + } + }, + { + "@id": "schema:abridged", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether the book is an abridged edition.", + "rdfs:label": "abridged", + "schema:domainIncludes": { + "@id": "schema:Book" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:vehicleConfiguration", + "@type": "rdf:Property", + "rdfs:comment": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.", + "rdfs:label": "vehicleConfiguration", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:drainsTo", + "@type": "rdf:Property", + "rdfs:comment": "The vasculature that the vein drains into.", + "rdfs:label": "drainsTo", + "schema:domainIncludes": { + "@id": "schema:Vein" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Vessel" + } + }, + { + "@id": "schema:riskFactor", + "@type": "rdf:Property", + "rdfs:comment": "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.", + "rdfs:label": "riskFactor", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalRiskFactor" + } + }, + { + "@id": "schema:elevation", + "@type": "rdf:Property", + "rdfs:comment": "The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT_OF_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.", + "rdfs:label": "elevation", + "schema:domainIncludes": [ + { + "@id": "schema:GeoShape" + }, + { + "@id": "schema:GeoCoordinates" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Number" + } + ] + }, + { + "@id": "schema:GovernmentBuilding", + "@type": "rdfs:Class", + "rdfs:comment": "A government building.", + "rdfs:label": "GovernmentBuilding", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:suggestedMinAge", + "@type": "rdf:Property", + "rdfs:comment": "Minimum recommended age in years for the audience or user.", + "rdfs:label": "suggestedMinAge", + "schema:domainIncludes": { + "@id": "schema:PeopleAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:Float", + "@type": "rdfs:Class", + "rdfs:comment": "Data type: Floating number.", + "rdfs:label": "Float", + "rdfs:subClassOf": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:ClothingStore", + "@type": "rdfs:Class", + "rdfs:comment": "A clothing store.", + "rdfs:label": "ClothingStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:paymentAccepted", + "@type": "rdf:Property", + "rdfs:comment": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", + "rdfs:label": "paymentAccepted", + "schema:domainIncludes": { + "@id": "schema:LocalBusiness" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:firstAppearance", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]].", + "rdfs:label": "firstAppearance", + "rdfs:subPropertyOf": { + "@id": "schema:workExample" + }, + "schema:domainIncludes": { + "@id": "schema:Claim" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1828" + } + }, + { + "@id": "schema:CatholicChurch", + "@type": "rdfs:Class", + "rdfs:comment": "A Catholic church.", + "rdfs:label": "CatholicChurch", + "rdfs:subClassOf": { + "@id": "schema:Church" + } + }, + { + "@id": "schema:BoatTrip", + "@type": "rdfs:Class", + "rdfs:comment": "A trip on a commercial ferry line.", + "rdfs:label": "BoatTrip", + "rdfs:subClassOf": { + "@id": "schema:Trip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1755" + } + }, + { + "@id": "schema:disambiguatingDescription", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.", + "rdfs:label": "disambiguatingDescription", + "rdfs:subPropertyOf": { + "@id": "schema:description" + }, + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:featureList", + "@type": "rdf:Property", + "rdfs:comment": "Features or modules provided by this application (and possibly required by other applications).", + "rdfs:label": "featureList", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:dietFeatures", + "@type": "rdf:Property", + "rdfs:comment": "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.", + "rdfs:label": "dietFeatures", + "schema:domainIncludes": { + "@id": "schema:Diet" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:sportsEvent", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The sports event where this action occurred.", + "rdfs:label": "sportsEvent", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:rangeIncludes": { + "@id": "schema:SportsEvent" + } + }, + { + "@id": "schema:parentOrganization", + "@type": "rdf:Property", + "rdfs:comment": "The larger organization that this organization is a [[subOrganization]] of, if any.", + "rdfs:label": "parentOrganization", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:inverseOf": { + "@id": "schema:subOrganization" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:trialDesign", + "@type": "rdf:Property", + "rdfs:comment": "Specifics about the trial design (enumerated).", + "rdfs:label": "trialDesign", + "schema:domainIncludes": { + "@id": "schema:MedicalTrial" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTrialDesign" + } + }, + { + "@id": "schema:answerCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of answers this question has received.", + "rdfs:label": "answerCount", + "schema:domainIncludes": { + "@id": "schema:Question" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:hasRepresentation", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org" + }, + "rdfs:comment": "A common representation such as a protein sequence or chemical structure for this entity. For images use schema.org/image.", + "rdfs:label": "hasRepresentation", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:ReservationStatusType", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerated status values for Reservation.", + "rdfs:label": "ReservationStatusType", + "rdfs:subClassOf": { + "@id": "schema:StatusEnumeration" + } + }, + { + "@id": "schema:courseMode", + "@type": "rdf:Property", + "rdfs:comment": "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).", + "rdfs:label": "courseMode", + "schema:domainIncludes": { + "@id": "schema:CourseInstance" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:algorithm", + "@type": "rdf:Property", + "rdfs:comment": "The algorithm or rules to follow to compute the score.", + "rdfs:label": "algorithm", + "schema:domainIncludes": { + "@id": "schema:MedicalRiskScore" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Researcher", + "@type": "rdfs:Class", + "rdfs:comment": "Researchers.", + "rdfs:label": "Researcher", + "rdfs:subClassOf": { + "@id": "schema:Audience" + } + }, + { + "@id": "schema:VegetarianDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet exclusive of animal meat.", + "rdfs:label": "VegetarianDiet" + }, + { + "@id": "schema:isPartOf", + "@type": "rdf:Property", + "rdfs:comment": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.", + "rdfs:label": "isPartOf", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:hasPart" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:participant", + "@type": "rdf:Property", + "rdfs:comment": "Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*.", + "rdfs:label": "participant", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:SportingGoodsStore", + "@type": "rdfs:Class", + "rdfs:comment": "A sporting goods store.", + "rdfs:label": "SportingGoodsStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:alumni", + "@type": "rdf:Property", + "rdfs:comment": "Alumni of an organization.", + "rdfs:label": "alumni", + "schema:domainIncludes": [ + { + "@id": "schema:EducationalOrganization" + }, + { + "@id": "schema:Organization" + } + ], + "schema:inverseOf": { + "@id": "schema:alumniOf" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:GovernmentBenefitsType", + "@type": "rdfs:Class", + "rdfs:comment": "GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.", + "rdfs:label": "GovernmentBenefitsType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:RentalVehicleUsage", + "@type": "schema:CarUsageType", + "rdfs:comment": "Indicates the usage of the vehicle as a rental car.", + "rdfs:label": "RentalVehicleUsage", + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:hasDeliveryMethod", + "@type": "rdf:Property", + "rdfs:comment": "Method used for delivery or shipping.", + "rdfs:label": "hasDeliveryMethod", + "schema:domainIncludes": [ + { + "@id": "schema:ParcelDelivery" + }, + { + "@id": "schema:DeliveryEvent" + } + ], + "schema:rangeIncludes": { + "@id": "schema:DeliveryMethod" + } + }, + { + "@id": "schema:WearableSizeGroupExtraShort", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Extra Short\" for wearables.", + "rdfs:label": "WearableSizeGroupExtraShort", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:CharitableIncorporatedOrganization", + "@type": "schema:UKNonprofitType", + "rdfs:comment": "CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK).", + "rdfs:label": "CharitableIncorporatedOrganization", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:Head", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Head assessment with clinical examination.", + "rdfs:label": "Head", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:TrainTrip", + "@type": "rdfs:Class", + "rdfs:comment": "A trip on a commercial train line.", + "rdfs:label": "TrainTrip", + "rdfs:subClassOf": { + "@id": "schema:Trip" + } + }, + { + "@id": "schema:recipeYield", + "@type": "rdf:Property", + "rdfs:comment": "The quantity produced by the recipe (for example, number of people served, number of servings, etc).", + "rdfs:label": "recipeYield", + "rdfs:subPropertyOf": { + "@id": "schema:yield" + }, + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:CausesHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Information about the causes and main actions that gave rise to the topic.", + "rdfs:label": "CausesHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:competencyRequired", + "@type": "rdf:Property", + "rdfs:comment": "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.", + "rdfs:label": "competencyRequired", + "schema:domainIncludes": [ + { + "@id": "schema:LearningResource" + }, + { + "@id": "schema:EducationalOccupationalCredential" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + }, + { + "@id": "schema:SuperficialAnatomy", + "@type": "rdfs:Class", + "rdfs:comment": "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).", + "rdfs:label": "SuperficialAnatomy", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:releaseNotes", + "@type": "rdf:Property", + "rdfs:comment": "Description of what changed in this version.", + "rdfs:label": "releaseNotes", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Flight", + "@type": "rdfs:Class", + "rdfs:comment": "An airline flight.", + "rdfs:label": "Flight", + "rdfs:subClassOf": { + "@id": "schema:Trip" + } + }, + { + "@id": "schema:activityDuration", + "@type": "rdf:Property", + "rdfs:comment": "Length of time to engage in the activity.", + "rdfs:label": "activityDuration", + "schema:domainIncludes": { + "@id": "schema:ExercisePlan" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Duration" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:beforeMedia", + "@type": "rdf:Property", + "rdfs:comment": "A media object representing the circumstances before performing this direction.", + "rdfs:label": "beforeMedia", + "schema:domainIncludes": { + "@id": "schema:HowToDirection" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:MediaObject" + } + ] + }, + { + "@id": "schema:subEvents", + "@type": "rdf:Property", + "rdfs:comment": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.", + "rdfs:label": "subEvents", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": { + "@id": "schema:Event" + }, + "schema:supersededBy": { + "@id": "schema:subEvent" + } + }, + { + "@id": "schema:icaoCode", + "@type": "rdf:Property", + "rdfs:comment": "ICAO identifier for an airport.", + "rdfs:label": "icaoCode", + "schema:domainIncludes": { + "@id": "schema:Airport" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DatedMoneySpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]] use of that type is recommended", + "rdfs:label": "DatedMoneySpecification", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:supersededBy": { + "@id": "schema:MonetaryAmount" + } + }, + { + "@id": "schema:paymentDue", + "@type": "rdf:Property", + "rdfs:comment": "The date that payment is due.", + "rdfs:label": "paymentDue", + "schema:domainIncludes": [ + { + "@id": "schema:Invoice" + }, + { + "@id": "schema:Order" + } + ], + "schema:rangeIncludes": { + "@id": "schema:DateTime" + }, + "schema:supersededBy": { + "@id": "schema:paymentDueDate" + } + }, + { + "@id": "schema:floorLimit", + "@type": "rdf:Property", + "rdfs:comment": "A floor limit is the amount of money above which credit card transactions must be authorized.", + "rdfs:label": "floorLimit", + "schema:domainIncludes": { + "@id": "schema:PaymentCard" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:additionalProperty", + "@type": "rdf:Property", + "rdfs:comment": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\\n\\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.\n", + "rdfs:label": "additionalProperty", + "schema:domainIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:MerchantReturnPolicy" + }, + { + "@id": "schema:QualitativeValue" + } + ], + "schema:rangeIncludes": { + "@id": "schema:PropertyValue" + } + }, + { + "@id": "schema:temporal", + "@type": "rdf:Property", + "rdfs:comment": "The \"temporal\" property can be used in cases where more specific properties\n(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.", + "rdfs:label": "temporal", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:FilmAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of capturing sound and moving images on film, video, or digitally.", + "rdfs:label": "FilmAction", + "rdfs:subClassOf": { + "@id": "schema:CreateAction" + } + }, + { + "@id": "schema:relatedCondition", + "@type": "rdf:Property", + "rdfs:comment": "A medical condition associated with this anatomy.", + "rdfs:label": "relatedCondition", + "schema:domainIncludes": [ + { + "@id": "schema:AnatomicalSystem" + }, + { + "@id": "schema:SuperficialAnatomy" + }, + { + "@id": "schema:AnatomicalStructure" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalCondition" + } + }, + { + "@id": "schema:eduQuestionType", + "@type": "rdf:Property", + "rdfs:comment": "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".", + "rdfs:label": "eduQuestionType", + "schema:domainIncludes": [ + { + "@id": "schema:SolveMathAction" + }, + { + "@id": "schema:Question" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2636" + } + }, + { + "@id": "schema:Consortium", + "@type": "rdfs:Class", + "rdfs:comment": "A Consortium is a membership [[Organization]] whose members are typically Organizations.", + "rdfs:label": "Consortium", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1559" + } + }, + { + "@id": "schema:HowToDirection", + "@type": "rdfs:Class", + "rdfs:comment": "A direction indicating a single action to do in the instructions for how to achieve a result.", + "rdfs:label": "HowToDirection", + "rdfs:subClassOf": [ + { + "@id": "schema:ListItem" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:ComicStory", + "@type": "rdfs:Class", + "rdfs:comment": "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.", + "rdfs:label": "ComicStory", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:bookFormat", + "@type": "rdf:Property", + "rdfs:comment": "The format of the book.", + "rdfs:label": "bookFormat", + "schema:domainIncludes": { + "@id": "schema:Book" + }, + "schema:rangeIncludes": { + "@id": "schema:BookFormatType" + } + }, + { + "@id": "schema:FoodEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Food event.", + "rdfs:label": "FoodEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:includedInDataCatalog", + "@type": "rdf:Property", + "rdfs:comment": "A data catalog which contains this dataset.", + "rdfs:label": "includedInDataCatalog", + "schema:domainIncludes": { + "@id": "schema:Dataset" + }, + "schema:inverseOf": { + "@id": "schema:dataset" + }, + "schema:rangeIncludes": { + "@id": "schema:DataCatalog" + } + }, + { + "@id": "schema:ReserveAction", + "@type": "rdfs:Class", + "rdfs:comment": "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.", + "rdfs:label": "ReserveAction", + "rdfs:subClassOf": { + "@id": "schema:PlanAction" + } + }, + { + "@id": "schema:variesBy", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. \"color\"; terms defined elsewhere can be referenced with their URIs.", + "rdfs:label": "variesBy", + "schema:domainIncludes": { + "@id": "schema:ProductGroup" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1797" + } + }, + { + "@id": "schema:Toxicologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.", + "rdfs:label": "Toxicologic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:workPerformed", + "@type": "rdf:Property", + "rdfs:comment": "A work performed in some event, for example a play performed in a TheaterEvent.", + "rdfs:label": "workPerformed", + "rdfs:subPropertyOf": { + "@id": "schema:workFeatured" + }, + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:ParkingFacility", + "@type": "rdfs:Class", + "rdfs:comment": "A parking lot or other parking facility.", + "rdfs:label": "ParkingFacility", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:LockerDelivery", + "@type": "schema:DeliveryMethod", + "rdfs:comment": "A DeliveryMethod in which an item is made available via locker.", + "rdfs:label": "LockerDelivery" + }, + { + "@id": "schema:BodyMeasurementNeck", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Girth of neck. Used, for example, to fit shirts.", + "rdfs:label": "BodyMeasurementNeck", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:schoolClosuresInfo", + "@type": "rdf:Property", + "rdfs:comment": "Information about school closures.", + "rdfs:label": "schoolClosuresInfo", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:WebContent" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:doorTime", + "@type": "rdf:Property", + "rdfs:comment": "The time admission will commence.", + "rdfs:label": "doorTime", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Time" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:medicineSystem", + "@type": "rdf:Property", + "rdfs:comment": "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.", + "rdfs:label": "medicineSystem", + "schema:domainIncludes": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicineSystem" + } + }, + { + "@id": "schema:ResultsAvailable", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Results are available.", + "rdfs:label": "ResultsAvailable", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:DrugPrescriptionStatus", + "@type": "rdfs:Class", + "rdfs:comment": "Indicates whether this drug is available by prescription or over-the-counter.", + "rdfs:label": "DrugPrescriptionStatus", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:mileageFromOdometer", + "@type": "rdf:Property", + "rdfs:comment": "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\\n\\nTypical unit code(s): KMT for kilometers, SMI for statute miles", + "rdfs:label": "mileageFromOdometer", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:thumbnailUrl", + "@type": "rdf:Property", + "rdfs:comment": "A thumbnail image relevant to the Thing.", + "rdfs:label": "thumbnailUrl", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:PreventionIndication", + "@type": "rdfs:Class", + "rdfs:comment": "An indication for preventing an underlying condition, symptom, etc.", + "rdfs:label": "PreventionIndication", + "rdfs:subClassOf": { + "@id": "schema:MedicalIndication" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Eye", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Eye or ophtalmological function assessment with clinical examination.", + "rdfs:label": "Eye", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:partOfTVSeries", + "@type": "rdf:Property", + "rdfs:comment": "The TV series to which this episode or season belongs.", + "rdfs:label": "partOfTVSeries", + "rdfs:subPropertyOf": { + "@id": "schema:isPartOf" + }, + "schema:domainIncludes": [ + { + "@id": "schema:TVEpisode" + }, + { + "@id": "schema:TVSeason" + }, + { + "@id": "schema:TVClip" + } + ], + "schema:rangeIncludes": { + "@id": "schema:TVSeries" + }, + "schema:supersededBy": { + "@id": "schema:partOfSeries" + } + }, + { + "@id": "schema:UserPlays", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserPlays", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:InvestmentFund", + "@type": "rdfs:Class", + "rdfs:comment": "A company or fund that gathers capital from a number of investors to create a pool of money that is then re-invested into stocks, bonds and other assets.", + "rdfs:label": "InvestmentFund", + "rdfs:subClassOf": { + "@id": "schema:InvestmentOrDeposit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:EntryPoint", + "@type": "rdfs:Class", + "rdfs:comment": "An entry point, within some Web-based protocol.", + "rdfs:label": "EntryPoint", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass" + } + }, + { + "@id": "schema:TransferAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.", + "rdfs:label": "TransferAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:GettingAccessHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content that discusses practical and policy aspects for getting access to specific kinds of healthcare (e.g. distribution mechanisms for vaccines).", + "rdfs:label": "GettingAccessHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2799" + } + }, + { + "@id": "schema:subStructure", + "@type": "rdf:Property", + "rdfs:comment": "Component (sub-)structure(s) that comprise this anatomical structure.", + "rdfs:label": "subStructure", + "schema:domainIncludes": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + } + }, + { + "@id": "schema:Barcode", + "@type": "rdfs:Class", + "rdfs:comment": "An image of a visual machine-readable code such as a barcode or QR code.", + "rdfs:label": "Barcode", + "rdfs:subClassOf": { + "@id": "schema:ImageObject" + } + }, + { + "@id": "schema:currency", + "@type": "rdf:Property", + "rdfs:comment": "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".", + "rdfs:label": "currency", + "schema:domainIncludes": [ + { + "@id": "schema:LoanOrCredit" + }, + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:MonetaryAmountDistribution" + }, + { + "@id": "schema:ExchangeRateSpecification" + }, + { + "@id": "schema:DatedMoneySpecification" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + }, + { + "@id": "schema:PodcastSeries", + "@type": "rdfs:Class", + "rdfs:comment": "A podcast is an episodic series of digital audio or video files which a user can download and listen to.", + "rdfs:label": "PodcastSeries", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeries" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/373" + } + }, + { + "@id": "schema:chemicalRole", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/ChemicalSubstance" + }, + "rdfs:comment": "A role played by the BioChemEntity within a chemical context.", + "rdfs:label": "chemicalRole", + "schema:domainIncludes": [ + { + "@id": "schema:MolecularEntity" + }, + { + "@id": "schema:ChemicalSubstance" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DefinedTerm" + } + }, + { + "@id": "schema:exerciseRelatedDiet", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. The diet used in this action.", + "rdfs:label": "exerciseRelatedDiet", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Diet" + } + }, + { + "@id": "schema:inLanguage", + "@type": "rdf:Property", + "rdfs:comment": "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].", + "rdfs:label": "inLanguage", + "schema:domainIncludes": [ + { + "@id": "schema:CommunicateAction" + }, + { + "@id": "schema:BroadcastService" + }, + { + "@id": "schema:Event" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:LinkRole" + }, + { + "@id": "schema:PronounceableText" + }, + { + "@id": "schema:WriteAction" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Language" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2382" + } + }, + { + "@id": "schema:restPeriods", + "@type": "rdf:Property", + "rdfs:comment": "How often one should break from the activity.", + "rdfs:label": "restPeriods", + "schema:domainIncludes": { + "@id": "schema:ExercisePlan" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:shippingRate", + "@type": "rdf:Property", + "rdfs:comment": "The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the [[MonetaryAmount]]) are most appropriate.", + "rdfs:label": "shippingRate", + "schema:domainIncludes": [ + { + "@id": "schema:ShippingRateSettings" + }, + { + "@id": "schema:OfferShippingDetails" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:strengthValue", + "@type": "rdf:Property", + "rdfs:comment": "The value of an active ingredient's strength, e.g. 325.", + "rdfs:label": "strengthValue", + "schema:domainIncludes": { + "@id": "schema:DrugStrength" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:license", + "@type": "rdf:Property", + "rdfs:comment": "A license document that applies to this content, typically indicated by URL.", + "rdfs:label": "license", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:LiteraryEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Literary event.", + "rdfs:label": "LiteraryEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:leiCode", + "@type": "rdf:Property", + "rdfs:comment": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.", + "rdfs:label": "leiCode", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF" + } + ] + }, + { + "@id": "schema:billingDuration", + "@type": "rdf:Property", + "rdfs:comment": "Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property).", + "rdfs:label": "billingDuration", + "schema:domainIncludes": { + "@id": "schema:UnitPriceSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Duration" + }, + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:Library", + "@type": "rdfs:Class", + "rdfs:comment": "A library.", + "rdfs:label": "Library", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:MedicalSign", + "@type": "rdfs:Class", + "rdfs:comment": "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.", + "rdfs:label": "MedicalSign", + "rdfs:subClassOf": { + "@id": "schema:MedicalSignOrSymptom" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryC", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryC", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:WearableSizeSystemUS", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "United States size system for wearables.", + "rdfs:label": "WearableSizeSystemUS", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:MediaManipulationRatingEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": " Codes for use with the [[mediaAuthenticityCategory]] property, indicating the authenticity of a media object (in the context of how it was published or shared). In general these codes are not mutually exclusive, although some combinations (such as 'original' versus 'transformed', 'edited' and 'staged') would be contradictory if applied in the same [[MediaReview]]. Note that the application of these codes is with regard to a piece of media shared or published in a particular context.", + "rdfs:label": "MediaManipulationRatingEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:LowSaltDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet focused on reduced sodium intake.", + "rdfs:label": "LowSaltDiet" + }, + { + "@id": "schema:WantAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of expressing a desire about the object. An agent wants an object.", + "rdfs:label": "WantAction", + "rdfs:subClassOf": { + "@id": "schema:ReactAction" + } + }, + { + "@id": "schema:DislikeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.", + "rdfs:label": "DislikeAction", + "rdfs:subClassOf": { + "@id": "schema:ReactAction" + } + }, + { + "@id": "schema:Observation", + "@type": "rdfs:Class", + "rdfs:comment": "Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube \"measure properties\", as in the [lifeExpectancy example](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).\nSee also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ", + "rdfs:label": "Observation", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:relatedStructure", + "@type": "rdf:Property", + "rdfs:comment": "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.", + "rdfs:label": "relatedStructure", + "schema:domainIncludes": { + "@id": "schema:AnatomicalSystem" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:AnatomicalStructure" + } + }, + { + "@id": "schema:AlignmentObject", + "@type": "rdfs:Class", + "rdfs:comment": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.", + "rdfs:label": "AlignmentObject", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass" + } + }, + { + "@id": "schema:broadcastServiceTier", + "@type": "rdf:Property", + "rdfs:comment": "The type of service required to have access to the channel (e.g. Standard or Premium).", + "rdfs:label": "broadcastServiceTier", + "schema:domainIncludes": { + "@id": "schema:BroadcastChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DemoAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "DemoAlbum.", + "rdfs:label": "DemoAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:AlcoholConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "Item contains alcohol or promotes alcohol consumption.", + "rdfs:label": "AlcoholConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:CaseSeries", + "@type": "schema:MedicalObservationalStudyDesign", + "rdfs:comment": "A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.", + "rdfs:label": "CaseSeries", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MusicComposition", + "@type": "rdfs:Class", + "rdfs:comment": "A musical composition.", + "rdfs:label": "MusicComposition", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:MedicalEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.", + "rdfs:label": "MedicalEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:language", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. The language used on this action.", + "rdfs:label": "language", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": [ + { + "@id": "schema:WriteAction" + }, + { + "@id": "schema:CommunicateAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Language" + }, + "schema:supersededBy": { + "@id": "schema:inLanguage" + } + }, + { + "@id": "schema:Longitudinal", + "@type": "schema:MedicalObservationalStudyDesign", + "rdfs:comment": "Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.", + "rdfs:label": "Longitudinal", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:exifData", + "@type": "rdf:Property", + "rdfs:comment": "exif data for this object.", + "rdfs:label": "exifData", + "schema:domainIncludes": { + "@id": "schema:ImageObject" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:PropertyValue" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:hasMenuItem", + "@type": "rdf:Property", + "rdfs:comment": "A food or drink item contained in a menu or menu section.", + "rdfs:label": "hasMenuItem", + "schema:domainIncludes": [ + { + "@id": "schema:MenuSection" + }, + { + "@id": "schema:Menu" + } + ], + "schema:rangeIncludes": { + "@id": "schema:MenuItem" + } + }, + { + "@id": "schema:applicationDeadline", + "@type": "rdf:Property", + "rdfs:comment": "The date at which the program stops collecting applications for the next enrollment cycle.", + "rdfs:label": "applicationDeadline", + "schema:domainIncludes": { + "@id": "schema:EducationalOccupationalProgram" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2419" + } + }, + { + "@id": "schema:PlasticSurgery", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.", + "rdfs:label": "PlasticSurgery", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:roofLoad", + "@type": "rdf:Property", + "rdfs:comment": "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.", + "rdfs:label": "roofLoad", + "schema:domainIncludes": [ + { + "@id": "schema:Car" + }, + { + "@id": "schema:BusOrCoach" + } + ], + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:broadcastSignalModulation", + "@type": "rdf:Property", + "rdfs:comment": "The modulation (e.g. FM, AM, etc) used by a particular broadcast service.", + "rdfs:label": "broadcastSignalModulation", + "schema:domainIncludes": { + "@id": "schema:BroadcastFrequencySpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2111" + } + }, + { + "@id": "schema:MedicalTrialDesign", + "@type": "rdfs:Class", + "rdfs:comment": "Design models for medical trials. Enumerated type.", + "rdfs:label": "MedicalTrialDesign", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc" + } + }, + { + "@id": "schema:hasBroadcastChannel", + "@type": "rdf:Property", + "rdfs:comment": "A broadcast channel of a broadcast service.", + "rdfs:label": "hasBroadcastChannel", + "schema:domainIncludes": { + "@id": "schema:BroadcastService" + }, + "schema:inverseOf": { + "@id": "schema:providesBroadcastService" + }, + "schema:rangeIncludes": { + "@id": "schema:BroadcastChannel" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1004" + } + }, + { + "@id": "schema:Optician", + "@type": "rdfs:Class", + "rdfs:comment": "A store that sells reading glasses and similar devices for improving vision.", + "rdfs:label": "Optician", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Prion", + "@type": "schema:InfectiousAgentClass", + "rdfs:comment": "A prion is an infectious agent composed of protein in a misfolded form.", + "rdfs:label": "Prion", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:baseSalary", + "@type": "rdf:Property", + "rdfs:comment": "The base salary of the job or of an employee in an EmployeeRole.", + "rdfs:label": "baseSalary", + "schema:domainIncludes": [ + { + "@id": "schema:EmployeeRole" + }, + { + "@id": "schema:JobPosting" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:PriceSpecification" + }, + { + "@id": "schema:MonetaryAmount" + } + ] + }, + { + "@id": "schema:EUEnergyEfficiencyCategoryG", + "@type": "schema:EUEnergyEfficiencyEnumeration", + "rdfs:comment": "Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations.", + "rdfs:label": "EUEnergyEfficiencyCategoryG", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2670" + } + }, + { + "@id": "schema:Brewery", + "@type": "rdfs:Class", + "rdfs:comment": "Brewery.", + "rdfs:label": "Brewery", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:StagedContent", + "@type": "schema:MediaManipulationRatingEnumeration", + "rdfs:comment": "Content coded 'staged content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'staged content': A video that has been created using actors or similarly contrived.\n\nFor an [[ImageObject]] to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[ImageObject]] with embedded text to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[AudioObject]] to be 'staged content': Audio that has been created using actors or similarly contrived.\n", + "rdfs:label": "StagedContent", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:TheaterGroup", + "@type": "rdfs:Class", + "rdfs:comment": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.", + "rdfs:label": "TheaterGroup", + "rdfs:subClassOf": { + "@id": "schema:PerformingGroup" + } + }, + { + "@id": "schema:MedicalTestPanel", + "@type": "rdfs:Class", + "rdfs:comment": "Any collection of tests commonly ordered together.", + "rdfs:label": "MedicalTestPanel", + "rdfs:subClassOf": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:courseCode", + "@type": "rdf:Property", + "rdfs:comment": "The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).", + "rdfs:label": "courseCode", + "schema:domainIncludes": { + "@id": "schema:Course" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:currenciesAccepted", + "@type": "rdf:Property", + "rdfs:comment": "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".", + "rdfs:label": "currenciesAccepted", + "schema:domainIncludes": { + "@id": "schema:LocalBusiness" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:broadcaster", + "@type": "rdf:Property", + "rdfs:comment": "The organization owning or operating the broadcast service.", + "rdfs:label": "broadcaster", + "schema:domainIncludes": { + "@id": "schema:BroadcastService" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:LinkRole", + "@type": "rdfs:Class", + "rdfs:comment": "A Role that represents a Web link e.g. as expressed via the 'url' property. Its linkRelationship property can indicate URL-based and plain textual link types e.g. those in IANA link registry or others such as 'amphtml'. This structure provides a placeholder where details from HTML's link element can be represented outside of HTML, e.g. in JSON-LD feeds.", + "rdfs:label": "LinkRole", + "rdfs:subClassOf": { + "@id": "schema:Role" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1045" + } + }, + { + "@id": "schema:Hardcover", + "@type": "schema:BookFormatType", + "rdfs:comment": "Book format: Hardcover.", + "rdfs:label": "Hardcover" + }, + { + "@id": "schema:CampingPitch", + "@type": "rdfs:Class", + "rdfs:comment": "A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\\n\\n\nIn British English a campsite, or campground, is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites.\n(Source: Wikipedia see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n", + "rdfs:label": "CampingPitch", + "rdfs:subClassOf": { + "@id": "schema:Accommodation" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:warrantyScope", + "@type": "rdf:Property", + "rdfs:comment": "The scope of the warranty promise.", + "rdfs:label": "warrantyScope", + "schema:domainIncludes": { + "@id": "schema:WarrantyPromise" + }, + "schema:rangeIncludes": { + "@id": "schema:WarrantyScope" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:Throat", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Throat assessment with clinical examination.", + "rdfs:label": "Throat", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:BookFormatType", + "@type": "rdfs:Class", + "rdfs:comment": "The publication format of the book.", + "rdfs:label": "BookFormatType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:Question", + "@type": "rdfs:Class", + "rdfs:comment": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.", + "rdfs:label": "Question", + "rdfs:subClassOf": { + "@id": "schema:Comment" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange" + } + }, + { + "@id": "schema:supportingData", + "@type": "rdf:Property", + "rdfs:comment": "Supporting data for a SoftwareApplication.", + "rdfs:label": "supportingData", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:DataFeed" + } + }, + { + "@id": "schema:StrengthTraining", + "@type": "schema:PhysicalActivityCategory", + "rdfs:comment": "Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.", + "rdfs:label": "StrengthTraining", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:serviceType", + "@type": "rdf:Property", + "rdfs:comment": "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.", + "rdfs:label": "serviceType", + "schema:domainIncludes": { + "@id": "schema:Service" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:GovernmentBenefitsType" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:SiteNavigationElement", + "@type": "rdfs:Class", + "rdfs:comment": "A navigation element of the page.", + "rdfs:label": "SiteNavigationElement", + "rdfs:subClassOf": { + "@id": "schema:WebPageElement" + } + }, + { + "@id": "schema:RiverBodyOfWater", + "@type": "rdfs:Class", + "rdfs:comment": "A river (for example, the broad majestic Shannon).", + "rdfs:label": "RiverBodyOfWater", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:datePosted", + "@type": "rdf:Property", + "rdfs:comment": "Publication date of an online listing.", + "rdfs:label": "datePosted", + "schema:domainIncludes": [ + { + "@id": "schema:CDCPMDRecord" + }, + { + "@id": "schema:RealEstateListing" + }, + { + "@id": "schema:JobPosting" + }, + { + "@id": "schema:SpecialAnnouncement" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + ] + }, + { + "@id": "schema:Nonprofit501c6", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.", + "rdfs:label": "Nonprofit501c6", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:hasCourseInstance", + "@type": "rdf:Property", + "rdfs:comment": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.", + "rdfs:label": "hasCourseInstance", + "schema:domainIncludes": { + "@id": "schema:Course" + }, + "schema:rangeIncludes": { + "@id": "schema:CourseInstance" + } + }, + { + "@id": "schema:valueAddedTaxIncluded", + "@type": "rdf:Property", + "rdfs:comment": "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.", + "rdfs:label": "valueAddedTaxIncluded", + "schema:domainIncludes": { + "@id": "schema:PriceSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:skills", + "@type": "rdf:Property", + "rdfs:comment": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.", + "rdfs:label": "skills", + "schema:domainIncludes": [ + { + "@id": "schema:Occupation" + }, + { + "@id": "schema:JobPosting" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:DefinedTerm" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2322" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + ] + }, + { + "@id": "schema:MSRP", + "@type": "schema:PriceTypeEnumeration", + "rdfs:comment": "Represents the manufacturer suggested retail price (\"MSRP\") of an offered product.", + "rdfs:label": "MSRP", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2712" + } + }, + { + "@id": "schema:byMonth", + "@type": "rdf:Property", + "rdfs:comment": "Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1.", + "rdfs:label": "byMonth", + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:DangerousGoodConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "The item is dangerous and requires careful handling and/or special training of the user. See also the [UN Model Classification](https://unece.org/DAM/trans/danger/publi/unrec/rev17/English/02EREv17_Part2.pdf) defining the 9 classes of dangerous goods such as explosives, gases, flammables, and more.", + "rdfs:label": "DangerousGoodConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:artMedium", + "@type": "rdf:Property", + "rdfs:comment": "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)", + "rdfs:label": "artMedium", + "rdfs:subPropertyOf": { + "@id": "schema:material" + }, + "schema:domainIncludes": { + "@id": "schema:VisualArtwork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:floorSize", + "@type": "rdf:Property", + "rdfs:comment": "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard ", + "rdfs:label": "floorSize", + "schema:domainIncludes": [ + { + "@id": "schema:FloorPlan" + }, + { + "@id": "schema:Accommodation" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:eligibleTransactionVolume", + "@type": "rdf:Property", + "rdfs:comment": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.", + "rdfs:label": "eligibleTransactionVolume", + "schema:domainIncludes": [ + { + "@id": "schema:PriceSpecification" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:PriceSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:archiveHeld", + "@type": "rdf:Property", + "rdfs:comment": { + "@language": "en", + "@value": "Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]]." + }, + "rdfs:label": { + "@language": "en", + "@value": "archiveHeld" + }, + "schema:domainIncludes": { + "@id": "schema:ArchiveOrganization" + }, + "schema:inverseOf": { + "@id": "schema:holdingArchive" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ArchiveComponent" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1758" + } + }, + { + "@id": "schema:durationOfWarranty", + "@type": "rdf:Property", + "rdfs:comment": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.", + "rdfs:label": "durationOfWarranty", + "schema:domainIncludes": { + "@id": "schema:WarrantyPromise" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:DownloadAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of downloading an object.", + "rdfs:label": "DownloadAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:stepValue", + "@type": "rdf:Property", + "rdfs:comment": "The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.", + "rdfs:label": "stepValue", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:Bakery", + "@type": "rdfs:Class", + "rdfs:comment": "A bakery.", + "rdfs:label": "Bakery", + "rdfs:subClassOf": { + "@id": "schema:FoodEstablishment" + } + }, + { + "@id": "schema:productionCompany", + "@type": "rdf:Property", + "rdfs:comment": "The production company or studio responsible for the item e.g. series, video game, episode etc.", + "rdfs:label": "productionCompany", + "schema:domainIncludes": [ + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:MediaObject" + }, + { + "@id": "schema:Episode" + }, + { + "@id": "schema:CreativeWorkSeason" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:MovieSeries" + }, + { + "@id": "schema:VideoGameSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:AlbumRelease", + "@type": "schema:MusicAlbumReleaseType", + "rdfs:comment": "AlbumRelease.", + "rdfs:label": "AlbumRelease", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:ParentalSupport", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "ParentalSupport: this is a benefit for parental support.", + "rdfs:label": "ParentalSupport", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:MedicalCondition", + "@type": "rdfs:Class", + "rdfs:comment": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.", + "rdfs:label": "MedicalCondition", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:areaServed", + "@type": "rdf:Property", + "rdfs:comment": "The geographic area where a service or offered item is provided.", + "rdfs:label": "areaServed", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Service" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:DeliveryChargeSpecification" + }, + { + "@id": "schema:ContactPoint" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:AdministrativeArea" + }, + { + "@id": "schema:GeoShape" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:Place" + } + ] + }, + { + "@id": "schema:nerveMotor", + "@type": "rdf:Property", + "rdfs:comment": "The neurological pathway extension that involves muscle control.", + "rdfs:label": "nerveMotor", + "schema:domainIncludes": { + "@id": "schema:Nerve" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Muscle" + } + }, + { + "@id": "schema:replacer", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The object that replaces.", + "rdfs:label": "replacer", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:ReplaceAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:byDay", + "@type": "rdf:Property", + "rdfs:comment": "Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [[Text]] conforming to iCal's syntax for byDay recurrence rules.", + "rdfs:label": "byDay", + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DayOfWeek" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:noBylinesPolicy", + "@type": "rdf:Property", + "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.", + "rdfs:label": "noBylinesPolicy", + "rdfs:subPropertyOf": { + "@id": "schema:publishingPrinciples" + }, + "schema:domainIncludes": { + "@id": "schema:NewsMediaOrganization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": [ + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1688" + } + ] + }, + { + "@id": "schema:SportsOrganization", + "@type": "rdfs:Class", + "rdfs:comment": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.", + "rdfs:label": "SportsOrganization", + "rdfs:subClassOf": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:Nonprofit527", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit527: Non-profit type referring to Political organizations.", + "rdfs:label": "Nonprofit527", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:foundingDate", + "@type": "rdf:Property", + "rdfs:comment": "The date that this organization was founded.", + "rdfs:label": "foundingDate", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + } + }, + { + "@id": "schema:Florist", + "@type": "rdfs:Class", + "rdfs:comment": "A florist.", + "rdfs:label": "Florist", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:UnRegisterAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people.", + "rdfs:label": "UnRegisterAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:Beach", + "@type": "rdfs:Class", + "rdfs:comment": "Beach.", + "rdfs:label": "Beach", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:Nonprofit501c19", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.", + "rdfs:label": "Nonprofit501c19", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:seatingCapacity", + "@type": "rdf:Property", + "rdfs:comment": "The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons ", + "rdfs:label": "seatingCapacity", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Number" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:Rating", + "@type": "rdfs:Class", + "rdfs:comment": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.", + "rdfs:label": "Rating", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:resultReview", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of result. The review that resulted in the performing of the action.", + "rdfs:label": "resultReview", + "rdfs:subPropertyOf": { + "@id": "schema:result" + }, + "schema:domainIncludes": { + "@id": "schema:ReviewAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Review" + } + }, + { + "@id": "schema:ChemicalSubstance", + "@type": "rdfs:Class", + "dcterms:source": [ + { + "@id": "http://bioschemas.org" + }, + { + "@id": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999" + } + ], + "rdfs:comment": "A chemical substance is 'a portion of matter of constant composition, composed of molecular entities of the same type or of different types' (source: [ChEBI:59999](https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999)).", + "rdfs:label": "ChemicalSubstance", + "rdfs:subClassOf": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + } + }, + { + "@id": "schema:WearableMeasurementInseam", + "@type": "schema:WearableMeasurementTypeEnumeration", + "rdfs:comment": "Measurement of the inseam, for example of pants", + "rdfs:label": "WearableMeasurementInseam", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:contactType", + "@type": "rdf:Property", + "rdfs:comment": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.", + "rdfs:label": "contactType", + "schema:domainIncludes": { + "@id": "schema:ContactPoint" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:title", + "@type": "rdf:Property", + "rdfs:comment": "The title of the job.", + "rdfs:label": "title", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:SurgicalProcedure", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/387713003" + }, + "rdfs:comment": "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.", + "rdfs:label": "SurgicalProcedure", + "rdfs:subClassOf": { + "@id": "schema:MedicalProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Taxi", + "@type": "rdfs:Class", + "rdfs:comment": "A taxi.", + "rdfs:label": "Taxi", + "rdfs:subClassOf": { + "@id": "schema:Service" + }, + "schema:supersededBy": { + "@id": "schema:TaxiService" + } + }, + { + "@id": "schema:sameAs", + "@type": "rdf:Property", + "rdfs:comment": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.", + "rdfs:label": "sameAs", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:BusTrip", + "@type": "rdfs:Class", + "rdfs:comment": "A trip on a commercial bus line.", + "rdfs:label": "BusTrip", + "rdfs:subClassOf": { + "@id": "schema:Trip" + } + }, + { + "@id": "schema:requiredGender", + "@type": "rdf:Property", + "rdfs:comment": "Audiences defined by a person's gender.", + "rdfs:label": "requiredGender", + "schema:domainIncludes": { + "@id": "schema:PeopleAudience" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ReturnLabelSourceEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates several types of return labels for product returns.", + "rdfs:label": "ReturnLabelSourceEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:actors", + "@type": "rdf:Property", + "rdfs:comment": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.", + "rdfs:label": "actors", + "schema:domainIncludes": [ + { + "@id": "schema:Clip" + }, + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:VideoObject" + }, + { + "@id": "schema:MovieSeries" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:VideoGame" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:Episode" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:actor" + } + }, + { + "@id": "schema:referenceQuantity", + "@type": "rdf:Property", + "rdfs:comment": "The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit.", + "rdfs:label": "referenceQuantity", + "schema:domainIncludes": { + "@id": "schema:UnitPriceSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + ] + }, + { + "@id": "schema:busName", + "@type": "rdf:Property", + "rdfs:comment": "The name of the bus (e.g. Bolt Express).", + "rdfs:label": "busName", + "schema:domainIncludes": { + "@id": "schema:BusTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MenuItem", + "@type": "rdfs:Class", + "rdfs:comment": "A food or drink item listed in a menu or menu section.", + "rdfs:label": "MenuItem", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:saturatedFatContent", + "@type": "rdf:Property", + "rdfs:comment": "The number of grams of saturated fat.", + "rdfs:label": "saturatedFatContent", + "schema:domainIncludes": { + "@id": "schema:NutritionInformation" + }, + "schema:rangeIncludes": { + "@id": "schema:Mass" + } + }, + { + "@id": "schema:knowsLanguage", + "@type": "rdf:Property", + "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).", + "rdfs:label": "knowsLanguage", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Language" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1688" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:TypeAndQuantityNode", + "@type": "rdfs:Class", + "rdfs:comment": "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.", + "rdfs:label": "TypeAndQuantityNode", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:Embassy", + "@type": "rdfs:Class", + "rdfs:comment": "An embassy.", + "rdfs:label": "Embassy", + "rdfs:subClassOf": { + "@id": "schema:GovernmentBuilding" + } + }, + { + "@id": "schema:tool", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.", + "rdfs:label": "tool", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": [ + { + "@id": "schema:HowTo" + }, + { + "@id": "schema:HowToDirection" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:HowToTool" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:eligibleCustomerType", + "@type": "rdf:Property", + "rdfs:comment": "The type(s) of customers for which the given offer is valid.", + "rdfs:label": "eligibleCustomerType", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:BusinessEntityType" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:HowToTip", + "@type": "rdfs:Class", + "rdfs:comment": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).", + "rdfs:label": "HowToTip", + "rdfs:subClassOf": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:ListItem" + } + ] + }, + { + "@id": "schema:WearableSizeSystemIT", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "Italian size system for wearables.", + "rdfs:label": "WearableSizeSystemIT", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:ParkingMap", + "@type": "schema:MapCategoryType", + "rdfs:comment": "A parking map.", + "rdfs:label": "ParkingMap" + }, + { + "@id": "schema:ControlAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent controls a device or application.", + "rdfs:label": "ControlAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:collectionSize", + "@type": "rdf:Property", + "rdfs:comment": { + "@language": "en", + "@value": "The number of items in the [[Collection]]." + }, + "rdfs:label": { + "@language": "en", + "@value": "collectionSize" + }, + "schema:domainIncludes": { + "@id": "schema:Collection" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1759" + } + }, + { + "@id": "schema:hiringOrganization", + "@type": "rdf:Property", + "rdfs:comment": "Organization offering the job position.", + "rdfs:label": "hiringOrganization", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:hasMenu", + "@type": "rdf:Property", + "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.", + "rdfs:label": "hasMenu", + "schema:domainIncludes": { + "@id": "schema:FoodEstablishment" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:Menu" + } + ] + }, + { + "@id": "schema:cvdNumC19OverflowPats", + "@type": "rdf:Property", + "rdfs:comment": "numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.", + "rdfs:label": "cvdNumC19OverflowPats", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:UnemploymentSupport", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "UnemploymentSupport: this is a benefit for unemployment support.", + "rdfs:label": "UnemploymentSupport", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:WearableSizeSystemFR", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "French size system for wearables.", + "rdfs:label": "WearableSizeSystemFR", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:estimatedFlightDuration", + "@type": "rdf:Property", + "rdfs:comment": "The estimated time the flight will take.", + "rdfs:label": "estimatedFlightDuration", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Duration" + } + ] + }, + { + "@id": "schema:Quiz", + "@type": "rdfs:Class", + "rdfs:comment": "Quiz: A test of knowledge, skills and abilities.", + "rdfs:label": "Quiz", + "rdfs:subClassOf": { + "@id": "schema:LearningResource" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2611" + } + }, + { + "@id": "schema:Nonprofit501c16", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.", + "rdfs:label": "Nonprofit501c16", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:Urologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.", + "rdfs:label": "Urologic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:relatedTo", + "@type": "rdf:Property", + "rdfs:comment": "The most generic familial relation.", + "rdfs:label": "relatedTo", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:articleBody", + "@type": "rdf:Property", + "rdfs:comment": "The actual body of the article.", + "rdfs:label": "articleBody", + "schema:domainIncludes": { + "@id": "schema:Article" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:molecularWeight", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/MolecularEntity" + }, + "rdfs:comment": "This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '<Number> <unit>', for example '12 amu' or as '<QuantitativeValue>.", + "rdfs:label": "molecularWeight", + "schema:domainIncludes": { + "@id": "schema:MolecularEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QuantitativeValue" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:contactlessPayment", + "@type": "rdf:Property", + "rdfs:comment": "A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.", + "rdfs:label": "contactlessPayment", + "schema:domainIncludes": { + "@id": "schema:PaymentCard" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:isAvailableGenerically", + "@type": "rdf:Property", + "rdfs:comment": "True if the drug is available in a generic form (regardless of name).", + "rdfs:label": "isAvailableGenerically", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:LowCalorieDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet focused on reduced calorie intake.", + "rdfs:label": "LowCalorieDiet" + }, + { + "@id": "schema:ComicCoverArt", + "@type": "rdfs:Class", + "rdfs:comment": "The artwork on the cover of a comic.", + "rdfs:label": "ComicCoverArt", + "rdfs:subClassOf": [ + { + "@id": "schema:ComicStory" + }, + { + "@id": "schema:CoverArt" + } + ], + "schema:isPartOf": { + "@id": "https://bib.schema.org" + } + }, + { + "@id": "schema:bookEdition", + "@type": "rdf:Property", + "rdfs:comment": "The edition of the book.", + "rdfs:label": "bookEdition", + "schema:domainIncludes": { + "@id": "schema:Book" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:LowLactoseDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet appropriate for people with lactose intolerance.", + "rdfs:label": "LowLactoseDiet" + }, + { + "@id": "schema:box", + "@type": "rdf:Property", + "rdfs:comment": "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.", + "rdfs:label": "box", + "schema:domainIncludes": { + "@id": "schema:GeoShape" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:inChI", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/MolecularEntity" + }, + "rdfs:comment": "Non-proprietary identifier for molecular entity that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations.", + "rdfs:label": "inChI", + "rdfs:subPropertyOf": { + "@id": "schema:hasRepresentation" + }, + "schema:domainIncludes": { + "@id": "schema:MolecularEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Sunday", + "@type": "schema:DayOfWeek", + "rdfs:comment": "The day of the week between Saturday and Monday.", + "rdfs:label": "Sunday", + "schema:sameAs": { + "@id": "http://www.wikidata.org/entity/Q132" + } + }, + { + "@id": "schema:issuedThrough", + "@type": "rdf:Property", + "rdfs:comment": "The service through with the permit was granted.", + "rdfs:label": "issuedThrough", + "schema:domainIncludes": { + "@id": "schema:Permit" + }, + "schema:rangeIncludes": { + "@id": "schema:Service" + } + }, + { + "@id": "schema:Quotation", + "@type": "rdfs:Class", + "rdfs:comment": "A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person. Use [[isBasedOn]] to link to source/origin. The [[recordedIn]] property can be used to reference a Quotation from an [[Event]].", + "rdfs:label": "Quotation", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/271" + } + }, + { + "@id": "schema:MerchantReturnPolicySeasonalOverride", + "@type": "rdfs:Class", + "rdfs:comment": "A seasonal override of a return policy, for example used for holidays.", + "rdfs:label": "MerchantReturnPolicySeasonalOverride", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:customerRemorseReturnLabelSource", + "@type": "rdf:Property", + "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned due to customer remorse.", + "rdfs:label": "customerRemorseReturnLabelSource", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ReturnLabelSourceEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:Neurologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that studies the nerves and nervous system and its respective disease states.", + "rdfs:label": "Neurologic", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:availability", + "@type": "rdf:Property", + "rdfs:comment": "The availability of this item—for example In stock, Out of stock, Pre-order, etc.", + "rdfs:label": "availability", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:ItemAvailability" + } + }, + { + "@id": "schema:instrument", + "@type": "rdf:Property", + "rdfs:comment": "The object that helped the agent perform the action. e.g. John wrote a book with *a pen*.", + "rdfs:label": "instrument", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:BodyMeasurementBust", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Maximum girth of bust. Used, for example, to fit women's suits.", + "rdfs:label": "BodyMeasurementBust", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:legislationConsolidates", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#consolidates" + }, + "rdfs:comment": "Indicates another legislation taken into account in this consolidated legislation (which is usually the product of an editorial process that revises the legislation). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.", + "rdfs:label": "legislationConsolidates", + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Legislation" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#consolidates" + } + }, + { + "@id": "schema:ReplaceAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of editing a recipient by replacing an old object with a new object.", + "rdfs:label": "ReplaceAction", + "rdfs:subClassOf": { + "@id": "schema:UpdateAction" + } + }, + { + "@id": "schema:colleague", + "@type": "rdf:Property", + "rdfs:comment": "A colleague of the person.", + "rdfs:label": "colleague", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:URL" + } + ] + }, + { + "@id": "schema:BodyMeasurementInsideLeg", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Inside leg (measured between crotch and soles of feet). Used, for example, to fit pants.", + "rdfs:label": "BodyMeasurementInsideLeg", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:amount", + "@type": "rdf:Property", + "rdfs:comment": "The amount of money.", + "rdfs:label": "amount", + "schema:domainIncludes": [ + { + "@id": "schema:MonetaryGrant" + }, + { + "@id": "schema:MoneyTransfer" + }, + { + "@id": "schema:LoanOrCredit" + }, + { + "@id": "schema:InvestmentOrDeposit" + }, + { + "@id": "schema:DatedMoneySpecification" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:MonetaryAmount" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:orderDate", + "@type": "rdf:Property", + "rdfs:comment": "Date order was placed.", + "rdfs:label": "orderDate", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Date" + }, + { + "@id": "schema:DateTime" + } + ] + }, + { + "@id": "schema:gtin13", + "@type": "rdf:Property", + "rdfs:comment": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.", + "rdfs:label": "gtin13", + "rdfs:subPropertyOf": [ + { + "@id": "schema:identifier" + }, + { + "@id": "schema:gtin" + } + ], + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:openingHoursSpecification", + "@type": "rdf:Property", + "rdfs:comment": "The opening hours of a certain place.", + "rdfs:label": "openingHoursSpecification", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:OpeningHoursSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:fileSize", + "@type": "rdf:Property", + "rdfs:comment": "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.", + "rdfs:label": "fileSize", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:customerRemorseReturnFees", + "@type": "rdf:Property", + "rdfs:comment": "The type of return fees if the product is returned due to customer remorse.", + "rdfs:label": "customerRemorseReturnFees", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ReturnFeesEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:GeneralContractor", + "@type": "rdfs:Class", + "rdfs:comment": "A general contractor.", + "rdfs:label": "GeneralContractor", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:creator", + "@type": "rdf:Property", + "rdfs:comment": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.", + "rdfs:label": "creator", + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:UserComments" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:signDetected", + "@type": "rdf:Property", + "rdfs:comment": "A sign detected by the test.", + "rdfs:label": "signDetected", + "schema:domainIncludes": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalSign" + } + }, + { + "@id": "schema:DeliveryEvent", + "@type": "rdfs:Class", + "rdfs:comment": "An event involving the delivery of an item.", + "rdfs:label": "DeliveryEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:device", + "@type": "rdf:Property", + "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.", + "rdfs:label": "device", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:availableOnDevice" + } + }, + { + "@id": "schema:DigitalDocument", + "@type": "rdfs:Class", + "rdfs:comment": "An electronic file or document.", + "rdfs:label": "DigitalDocument", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:newsUpdatesAndGuidelines", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site.", + "rdfs:label": "newsUpdatesAndGuidelines", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:WebContent" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:relevantSpecialty", + "@type": "rdf:Property", + "rdfs:comment": "If applicable, a medical specialty in which this entity is relevant.", + "rdfs:label": "relevantSpecialty", + "schema:domainIncludes": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalSpecialty" + } + }, + { + "@id": "schema:playMode", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.", + "rdfs:label": "playMode", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGame" + }, + { + "@id": "schema:VideoGameSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:GamePlayMode" + } + }, + { + "@id": "schema:HomeGoodsStore", + "@type": "rdfs:Class", + "rdfs:comment": "A home goods store.", + "rdfs:label": "HomeGoodsStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:accommodationFloorPlan", + "@type": "rdf:Property", + "rdfs:comment": "A floorplan of some [[Accommodation]].", + "rdfs:label": "accommodationFloorPlan", + "schema:domainIncludes": [ + { + "@id": "schema:Residence" + }, + { + "@id": "schema:Accommodation" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:FloorPlan" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:Menu", + "@type": "rdfs:Class", + "rdfs:comment": "A structured representation of food or drink items available from a FoodEstablishment.", + "rdfs:label": "Menu", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:codingSystem", + "@type": "rdf:Property", + "rdfs:comment": "The coding system, e.g. 'ICD-10'.", + "rdfs:label": "codingSystem", + "schema:domainIncludes": { + "@id": "schema:MedicalCode" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:reviews", + "@type": "rdf:Property", + "rdfs:comment": "Review of the item.", + "rdfs:label": "reviews", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Product" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Review" + }, + "schema:supersededBy": { + "@id": "schema:review" + } + }, + { + "@id": "schema:DryCleaningOrLaundry", + "@type": "rdfs:Class", + "rdfs:comment": "A dry-cleaning business.", + "rdfs:label": "DryCleaningOrLaundry", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:WPAdBlock", + "@type": "rdfs:Class", + "rdfs:comment": "An advertising section of the page.", + "rdfs:label": "WPAdBlock", + "rdfs:subClassOf": { + "@id": "schema:WebPageElement" + } + }, + { + "@id": "schema:about", + "@type": "rdf:Property", + "rdfs:comment": "The subject matter of the content.", + "rdfs:label": "about", + "schema:domainIncludes": [ + { + "@id": "schema:CommunicateAction" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Event" + } + ], + "schema:inverseOf": { + "@id": "schema:subjectOf" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1670" + } + }, + { + "@id": "schema:isFamilyFriendly", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether this content is family friendly.", + "rdfs:label": "isFamilyFriendly", + "schema:domainIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:BookmarkAction", + "@type": "rdfs:Class", + "rdfs:comment": "An agent bookmarks/flags/labels/tags/marks an object.", + "rdfs:label": "BookmarkAction", + "rdfs:subClassOf": { + "@id": "schema:OrganizeAction" + } + }, + { + "@id": "schema:contraindication", + "@type": "rdf:Property", + "rdfs:comment": "A contraindication for this therapy.", + "rdfs:label": "contraindication", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalDevice" + }, + { + "@id": "schema:MedicalTherapy" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:MedicalContraindication" + } + ] + }, + { + "@id": "schema:headline", + "@type": "rdf:Property", + "rdfs:comment": "Headline of the article.", + "rdfs:label": "headline", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:appearance", + "@type": "rdf:Property", + "rdfs:comment": "Indicates an occurence of a [[Claim]] in some [[CreativeWork]].", + "rdfs:label": "appearance", + "rdfs:subPropertyOf": { + "@id": "schema:workExample" + }, + "schema:domainIncludes": { + "@id": "schema:Claim" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1828" + } + }, + { + "@id": "schema:Grant", + "@type": "rdfs:Class", + "rdfs:comment": "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ", + "rdfs:label": "Grant", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab" + } + ] + }, + { + "@id": "schema:gamePlatform", + "@type": "rdf:Property", + "rdfs:comment": "The electronic systems used to play video games.", + "rdfs:label": "gamePlatform", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:VideoGame" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:Thing" + } + ] + }, + { + "@id": "schema:SpreadsheetDigitalDocument", + "@type": "rdfs:Class", + "rdfs:comment": "A spreadsheet file.", + "rdfs:label": "SpreadsheetDigitalDocument", + "rdfs:subClassOf": { + "@id": "schema:DigitalDocument" + } + }, + { + "@id": "schema:JewelryStore", + "@type": "rdfs:Class", + "rdfs:comment": "A jewelry store.", + "rdfs:label": "JewelryStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:FDAnotEvaluated", + "@type": "schema:DrugPregnancyCategory", + "rdfs:comment": "A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.", + "rdfs:label": "FDAnotEvaluated", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ResearchProject", + "@type": "rdfs:Class", + "rdfs:comment": "A Research project.", + "rdfs:label": "ResearchProject", + "rdfs:subClassOf": { + "@id": "schema:Project" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/383" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab" + } + ] + }, + { + "@id": "schema:LimitedByGuaranteeCharity", + "@type": "schema:UKNonprofitType", + "rdfs:comment": "LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK).", + "rdfs:label": "LimitedByGuaranteeCharity", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:SheetMusic", + "@type": "rdfs:Class", + "rdfs:comment": "Printed music, as opposed to performed or recorded music.", + "rdfs:label": "SheetMusic", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1448" + } + }, + { + "@id": "schema:rangeIncludes", + "@type": "rdf:Property", + "rdfs:comment": "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.", + "rdfs:label": "rangeIncludes", + "schema:domainIncludes": { + "@id": "schema:Property" + }, + "schema:isPartOf": { + "@id": "https://meta.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Class" + } + }, + { + "@id": "schema:jobImmediateStart", + "@type": "rdf:Property", + "rdfs:comment": "An indicator as to whether a position is available for an immediate start.", + "rdfs:label": "jobImmediateStart", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2244" + } + }, + { + "@id": "schema:PatientExperienceHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about the real life experience of patients or people that have lived a similar experience about the topic. May be forums, topics, Q-and-A and related material.", + "rdfs:label": "PatientExperienceHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:relatedLink", + "@type": "rdf:Property", + "rdfs:comment": "A link related to this web page, for example to other related web pages.", + "rdfs:label": "relatedLink", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:numberOfSeasons", + "@type": "rdf:Property", + "rdfs:comment": "The number of seasons in this series.", + "rdfs:label": "numberOfSeasons", + "schema:domainIncludes": [ + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:TVSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:Terminated", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Terminated.", + "rdfs:label": "Terminated", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Offer", + "@type": "rdfs:Class", + "rdfs:comment": "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\\n\\nNote: As the [[businessFunction]] property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\\n\\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).", + "rdfs:label": "Offer", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:GlutenFreeDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet exclusive of gluten.", + "rdfs:label": "GlutenFreeDiet" + }, + { + "@id": "schema:reservationId", + "@type": "rdf:Property", + "rdfs:comment": "A unique identifier for the reservation.", + "rdfs:label": "reservationId", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:recordedIn", + "@type": "rdf:Property", + "rdfs:comment": "The CreativeWork that captured all or part of this Event.", + "rdfs:label": "recordedIn", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:inverseOf": { + "@id": "schema:recordedAt" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:validThrough", + "@type": "rdf:Property", + "rdfs:comment": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.", + "rdfs:label": "validThrough", + "schema:domainIncludes": [ + { + "@id": "schema:OpeningHoursSpecification" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + }, + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:PriceSpecification" + }, + { + "@id": "schema:LocationFeatureSpecification" + }, + { + "@id": "schema:JobPosting" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:photo", + "@type": "rdf:Property", + "rdfs:comment": "A photograph of this place.", + "rdfs:label": "photo", + "rdfs:subPropertyOf": { + "@id": "schema:image" + }, + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Photograph" + }, + { + "@id": "schema:ImageObject" + } + ] + }, + { + "@id": "schema:MusicRecording", + "@type": "rdfs:Class", + "rdfs:comment": "A music recording (track), usually a single song.", + "rdfs:label": "MusicRecording", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:MedicalCode", + "@type": "rdfs:Class", + "rdfs:comment": "A code for a medical entity.", + "rdfs:label": "MedicalCode", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalIntangible" + }, + { + "@id": "schema:CategoryCode" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Joint", + "@type": "rdfs:Class", + "rdfs:comment": "The anatomical location at which two or more bones make contact.", + "rdfs:label": "Joint", + "rdfs:subClassOf": { + "@id": "schema:AnatomicalStructure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MoneyTransfer", + "@type": "rdfs:Class", + "rdfs:comment": "The act of transferring money from one place to another place. This may occur electronically or physically.", + "rdfs:label": "MoneyTransfer", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:numberOfFullBathrooms", + "@type": "rdf:Property", + "rdfs:comment": "Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).", + "rdfs:label": "numberOfFullBathrooms", + "schema:domainIncludes": [ + { + "@id": "schema:Accommodation" + }, + { + "@id": "schema:FloorPlan" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:CssSelectorType", + "@type": "rdfs:Class", + "rdfs:comment": "Text representing a CSS selector.", + "rdfs:label": "CssSelectorType", + "rdfs:subClassOf": { + "@id": "schema:Text" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1672" + } + }, + { + "@id": "schema:MenuSection", + "@type": "rdfs:Class", + "rdfs:comment": "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.", + "rdfs:label": "MenuSection", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:MedicalSignOrSymptom", + "@type": "rdfs:Class", + "rdfs:comment": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.", + "rdfs:label": "MedicalSignOrSymptom", + "rdfs:subClassOf": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:postOfficeBoxNumber", + "@type": "rdf:Property", + "rdfs:comment": "The post office box number for PO box addresses.", + "rdfs:label": "postOfficeBoxNumber", + "schema:domainIncludes": { + "@id": "schema:PostalAddress" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:BankOrCreditUnion", + "@type": "rdfs:Class", + "rdfs:comment": "Bank or credit union.", + "rdfs:label": "BankOrCreditUnion", + "rdfs:subClassOf": { + "@id": "schema:FinancialService" + } + }, + { + "@id": "schema:employmentUnit", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.", + "rdfs:label": "employmentUnit", + "schema:domainIncludes": { + "@id": "schema:JobPosting" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2296" + } + }, + { + "@id": "schema:actionOption", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The options subject to this action.", + "rdfs:label": "actionOption", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:ChooseAction" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Thing" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:documentation", + "@type": "rdf:Property", + "rdfs:comment": "Further documentation describing the Web API in more detail.", + "rdfs:label": "documentation", + "schema:domainIncludes": { + "@id": "schema:WebAPI" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1423" + } + }, + { + "@id": "schema:maximumPhysicalAttendeeCapacity", + "@type": "rdf:Property", + "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). ", + "rdfs:label": "maximumPhysicalAttendeeCapacity", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:sizeSystem", + "@type": "rdf:Property", + "rdfs:comment": "The size system used to identify a product's size. Typically either a standard (for example, \"GS1\" or \"ISO-EN13402\"), country code (for example \"US\" or \"JP\"), or a measuring system (for example \"Metric\" or \"Imperial\").", + "rdfs:label": "sizeSystem", + "schema:domainIncludes": { + "@id": "schema:SizeSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:SizeSystemEnumeration" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:TreatmentIndication", + "@type": "rdfs:Class", + "rdfs:comment": "An indication for treating an underlying condition, symptom, etc.", + "rdfs:label": "TreatmentIndication", + "rdfs:subClassOf": { + "@id": "schema:MedicalIndication" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:prepTime", + "@type": "rdf:Property", + "rdfs:comment": "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).", + "rdfs:label": "prepTime", + "schema:domainIncludes": [ + { + "@id": "schema:HowTo" + }, + { + "@id": "schema:HowToDirection" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Duration" + } + }, + { + "@id": "schema:NonprofitSBBI", + "@type": "schema:NLNonprofitType", + "rdfs:comment": "NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL).", + "rdfs:label": "NonprofitSBBI", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:musicBy", + "@type": "rdf:Property", + "rdfs:comment": "The composer of the soundtrack.", + "rdfs:label": "musicBy", + "schema:domainIncludes": [ + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:VideoGame" + }, + { + "@id": "schema:VideoObject" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:MovieSeries" + }, + { + "@id": "schema:Episode" + }, + { + "@id": "schema:Clip" + }, + { + "@id": "schema:RadioSeries" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:MusicGroup" + } + ] + }, + { + "@id": "schema:ItemList", + "@type": "rdfs:Class", + "rdfs:comment": "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.", + "rdfs:label": "ItemList", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:StudioAlbum", + "@type": "schema:MusicAlbumProductionType", + "rdfs:comment": "StudioAlbum.", + "rdfs:label": "StudioAlbum", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:MulticellularParasite", + "@type": "schema:InfectiousAgentClass", + "rdfs:comment": "Multicellular parasite that causes an infection.", + "rdfs:label": "MulticellularParasite", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:TouristInformationCenter", + "@type": "rdfs:Class", + "rdfs:comment": "A tourist information center.", + "rdfs:label": "TouristInformationCenter", + "rdfs:subClassOf": { + "@id": "schema:LocalBusiness" + } + }, + { + "@id": "schema:sha256", + "@type": "rdf:Property", + "rdfs:comment": "The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'", + "rdfs:label": "sha256", + "rdfs:subPropertyOf": { + "@id": "schema:description" + }, + "schema:domainIncludes": { + "@id": "schema:MediaObject" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:menu", + "@type": "rdf:Property", + "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.", + "rdfs:label": "menu", + "schema:domainIncludes": { + "@id": "schema:FoodEstablishment" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Menu" + }, + { + "@id": "schema:Text" + } + ], + "schema:supersededBy": { + "@id": "schema:hasMenu" + } + }, + { + "@id": "schema:additionalNumberOfGuests", + "@type": "rdf:Property", + "rdfs:comment": "If responding yes, the number of guests who will attend in addition to the invitee.", + "rdfs:label": "additionalNumberOfGuests", + "schema:domainIncludes": { + "@id": "schema:RsvpAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + } + }, + { + "@id": "schema:specialOpeningHoursSpecification", + "@type": "rdf:Property", + "rdfs:comment": "The special opening hours of a certain place.\\n\\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].\n ", + "rdfs:label": "specialOpeningHoursSpecification", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": { + "@id": "schema:OpeningHoursSpecification" + } + }, + { + "@id": "schema:OfferCatalog", + "@type": "rdfs:Class", + "rdfs:comment": "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.", + "rdfs:label": "OfferCatalog", + "rdfs:subClassOf": { + "@id": "schema:ItemList" + } + }, + { + "@id": "schema:NewCondition", + "@type": "schema:OfferItemCondition", + "rdfs:comment": "Indicates that the item is new.", + "rdfs:label": "NewCondition" + }, + { + "@id": "schema:departureGate", + "@type": "rdf:Property", + "rdfs:comment": "Identifier of the flight's departure gate.", + "rdfs:label": "departureGate", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:OccupationalTherapy", + "@type": "rdfs:Class", + "rdfs:comment": "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.", + "rdfs:label": "OccupationalTherapy", + "rdfs:subClassOf": { + "@id": "schema:MedicalTherapy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:PaymentChargeSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "The costs of settling the payment using a particular payment method.", + "rdfs:label": "PaymentChargeSpecification", + "rdfs:subClassOf": { + "@id": "schema:PriceSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:seeks", + "@type": "rdf:Property", + "rdfs:comment": "A pointer to products or services sought by the organization or person (demand).", + "rdfs:label": "seeks", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Demand" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:realEstateAgent", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The real estate agent involved in the action.", + "rdfs:label": "realEstateAgent", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:RentAction" + }, + "schema:rangeIncludes": { + "@id": "schema:RealEstateAgent" + } + }, + { + "@id": "schema:SingleBlindedTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.", + "rdfs:label": "SingleBlindedTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:safetyConsideration", + "@type": "rdf:Property", + "rdfs:comment": "Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.", + "rdfs:label": "safetyConsideration", + "schema:domainIncludes": { + "@id": "schema:DietarySupplement" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:BookSeries", + "@type": "rdfs:Class", + "rdfs:comment": "A series of books. Included books can be indicated with the hasPart property.", + "rdfs:label": "BookSeries", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeries" + } + }, + { + "@id": "schema:NewsMediaOrganization", + "@type": "rdfs:Class", + "rdfs:comment": "A News/Media organization such as a newspaper or TV station.", + "rdfs:label": "NewsMediaOrganization", + "rdfs:subClassOf": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1525" + }, + { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP" + } + ] + }, + { + "@id": "schema:breastfeedingWarning", + "@type": "rdf:Property", + "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.", + "rdfs:label": "breastfeedingWarning", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DesktopWebPlatform", + "@type": "schema:DigitalPlatformEnumeration", + "rdfs:comment": "Represents the broad notion of 'desktop' browsers as a Web Platform.", + "rdfs:label": "DesktopWebPlatform", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3057" + } + }, + { + "@id": "schema:returnPolicySeasonalOverride", + "@type": "rdf:Property", + "rdfs:comment": "Seasonal override of a return policy.", + "rdfs:label": "returnPolicySeasonalOverride", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MerchantReturnPolicySeasonalOverride" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2880" + } + }, + { + "@id": "schema:ScholarlyArticle", + "@type": "rdfs:Class", + "rdfs:comment": "A scholarly article.", + "rdfs:label": "ScholarlyArticle", + "rdfs:subClassOf": { + "@id": "schema:Article" + } + }, + { + "@id": "schema:qualifications", + "@type": "rdf:Property", + "rdfs:comment": "Specific qualifications required for this role or Occupation.", + "rdfs:label": "qualifications", + "schema:domainIncludes": [ + { + "@id": "schema:JobPosting" + }, + { + "@id": "schema:Occupation" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:EducationalOccupationalCredential" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + ] + }, + { + "@id": "schema:BusinessFunction", + "@type": "rdfs:Class", + "rdfs:comment": "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ConstructionInstallation\\n* http://purl.org/goodrelations/v1#Dispose\\n* http://purl.org/goodrelations/v1#LeaseOut\\n* http://purl.org/goodrelations/v1#Maintain\\n* http://purl.org/goodrelations/v1#ProvideService\\n* http://purl.org/goodrelations/v1#Repair\\n* http://purl.org/goodrelations/v1#Sell\\n* http://purl.org/goodrelations/v1#Buy\n ", + "rdfs:label": "BusinessFunction", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:WebApplication", + "@type": "rdfs:Class", + "rdfs:comment": "Web applications.", + "rdfs:label": "WebApplication", + "rdfs:subClassOf": { + "@id": "schema:SoftwareApplication" + } + }, + { + "@id": "schema:occupationalCategory", + "@type": "rdf:Property", + "rdfs:comment": "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.", + "rdfs:label": "occupationalCategory", + "schema:domainIncludes": [ + { + "@id": "schema:JobPosting" + }, + { + "@id": "schema:EducationalOccupationalProgram" + }, + { + "@id": "schema:Occupation" + }, + { + "@id": "schema:WorkBasedProgram" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CategoryCode" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2460" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2289" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/2192" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + ] + }, + { + "@id": "schema:accessibilityAPI", + "@type": "rdf:Property", + "rdfs:comment": "Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).", + "rdfs:label": "accessibilityAPI", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:isGift", + "@type": "rdf:Property", + "rdfs:comment": "Was the offer accepted as a gift for someone other than the buyer.", + "rdfs:label": "isGift", + "schema:domainIncludes": { + "@id": "schema:Order" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:opponent", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of participant. The opponent on this action.", + "rdfs:label": "opponent", + "rdfs:subPropertyOf": { + "@id": "schema:participant" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:hospitalAffiliation", + "@type": "rdf:Property", + "rdfs:comment": "A hospital with which the physician or office is affiliated.", + "rdfs:label": "hospitalAffiliation", + "schema:domainIncludes": { + "@id": "schema:Physician" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Hospital" + } + }, + { + "@id": "schema:priceSpecification", + "@type": "rdf:Property", + "rdfs:comment": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.", + "rdfs:label": "priceSpecification", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:TradeAction" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:PriceSpecification" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:lesserOrEqual", + "@type": "rdf:Property", + "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.", + "rdfs:label": "lesserOrEqual", + "schema:domainIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:rangeIncludes": { + "@id": "schema:QualitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:permittedUsage", + "@type": "rdf:Property", + "rdfs:comment": "Indications regarding the permitted usage of the accommodation.", + "rdfs:label": "permittedUsage", + "schema:domainIncludes": { + "@id": "schema:Accommodation" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:ExhibitionEvent", + "@type": "rdfs:Class", + "rdfs:comment": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...", + "rdfs:label": "ExhibitionEvent", + "rdfs:subClassOf": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:Audience", + "@type": "rdfs:Class", + "rdfs:comment": "Intended audience for an item, i.e. the group for whom the item was created.", + "rdfs:label": "Audience", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:orderedItem", + "@type": "rdf:Property", + "rdfs:comment": "The item ordered.", + "rdfs:label": "orderedItem", + "schema:domainIncludes": [ + { + "@id": "schema:Order" + }, + { + "@id": "schema:OrderItem" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:OrderItem" + }, + { + "@id": "schema:Product" + } + ] + }, + { + "@id": "schema:Artery", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/51114001" + }, + "rdfs:comment": "A type of blood vessel that specifically carries blood away from the heart.", + "rdfs:label": "Artery", + "rdfs:subClassOf": { + "@id": "schema:Vessel" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ViolenceConsideration", + "@type": "schema:AdultOrientedEnumeration", + "rdfs:comment": "Item shows or promotes violence.", + "rdfs:label": "ViolenceConsideration", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2989" + } + }, + { + "@id": "schema:PerformingGroup", + "@type": "rdfs:Class", + "rdfs:comment": "A performance group, such as a band, an orchestra, or a circus.", + "rdfs:label": "PerformingGroup", + "rdfs:subClassOf": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:taxID", + "@type": "rdf:Property", + "rdfs:comment": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.", + "rdfs:label": "taxID", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:MusicAlbumProductionType", + "@type": "rdfs:Class", + "rdfs:comment": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.", + "rdfs:label": "MusicAlbumProductionType", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:activityFrequency", + "@type": "rdf:Property", + "rdfs:comment": "How often one should engage in the activity.", + "rdfs:label": "activityFrequency", + "schema:domainIncludes": { + "@id": "schema:ExercisePlan" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:SingleFamilyResidence", + "@type": "rdfs:Class", + "rdfs:comment": "Residence type: Single-family home.", + "rdfs:label": "SingleFamilyResidence", + "rdfs:subClassOf": { + "@id": "schema:House" + } + }, + { + "@id": "schema:speakable", + "@type": "rdf:Property", + "rdfs:comment": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ", + "rdfs:label": "speakable", + "schema:domainIncludes": [ + { + "@id": "schema:WebPage" + }, + { + "@id": "schema:Article" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:SpeakableSpecification" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1389" + } + }, + { + "@id": "schema:price", + "@type": "rdf:Property", + "rdfs:comment": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\\n\\nUsage guidelines:\\n\\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n ", + "rdfs:label": "price", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:TradeAction" + }, + { + "@id": "schema:PriceSpecification" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:MedicalTrial", + "@type": "rdfs:Class", + "rdfs:comment": "A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.", + "rdfs:label": "MedicalTrial", + "rdfs:subClassOf": { + "@id": "schema:MedicalStudy" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:SizeSystemImperial", + "@type": "schema:SizeSystemEnumeration", + "rdfs:comment": "Imperial size system.", + "rdfs:label": "SizeSystemImperial", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:EducationalOrganization", + "@type": "rdfs:Class", + "rdfs:comment": "An educational organization.", + "rdfs:label": "EducationalOrganization", + "rdfs:subClassOf": [ + { + "@id": "schema:CivicStructure" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:cookTime", + "@type": "rdf:Property", + "rdfs:comment": "The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).", + "rdfs:label": "cookTime", + "rdfs:subPropertyOf": { + "@id": "schema:performTime" + }, + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": { + "@id": "schema:Duration" + } + }, + { + "@id": "schema:musicalKey", + "@type": "rdf:Property", + "rdfs:comment": "The key, mode, or scale this composition uses.", + "rdfs:label": "musicalKey", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:PsychologicalTreatment", + "@type": "rdfs:Class", + "rdfs:comment": "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.", + "rdfs:label": "PsychologicalTreatment", + "rdfs:subClassOf": { + "@id": "schema:TherapeuticProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:VirtualLocation", + "@type": "rdfs:Class", + "rdfs:comment": "An online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world.", + "rdfs:label": "VirtualLocation", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1842" + } + }, + { + "@id": "schema:Occupation", + "@type": "rdfs:Class", + "rdfs:comment": "A profession, may involve prolonged training and/or a formal qualification.", + "rdfs:label": "Occupation", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1698" + } + }, + { + "@id": "schema:numberOfPlayers", + "@type": "rdf:Property", + "rdfs:comment": "Indicate how many people can play this game (minimum, maximum, or range).", + "rdfs:label": "numberOfPlayers", + "schema:domainIncludes": [ + { + "@id": "schema:Game" + }, + { + "@id": "schema:VideoGameSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + } + }, + { + "@id": "schema:WPFooter", + "@type": "rdfs:Class", + "rdfs:comment": "The footer section of the page.", + "rdfs:label": "WPFooter", + "rdfs:subClassOf": { + "@id": "schema:WebPageElement" + } + }, + { + "@id": "schema:Nonprofit501c24", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.", + "rdfs:label": "Nonprofit501c24", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:recipeCategory", + "@type": "rdf:Property", + "rdfs:comment": "The category of the recipe—for example, appetizer, entree, etc.", + "rdfs:label": "recipeCategory", + "schema:domainIncludes": { + "@id": "schema:Recipe" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:bodyType", + "@type": "rdf:Property", + "rdfs:comment": "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).", + "rdfs:label": "bodyType", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:LoanOrCredit", + "@type": "rdfs:Class", + "rdfs:comment": "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.", + "rdfs:label": "LoanOrCredit", + "rdfs:subClassOf": { + "@id": "schema:FinancialProduct" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:ratingValue", + "@type": "rdf:Property", + "rdfs:comment": "The rating for the content.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.", + "rdfs:label": "ratingValue", + "schema:domainIncludes": { + "@id": "schema:Rating" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:IOSPlatform", + "@type": "schema:DigitalPlatformEnumeration", + "rdfs:comment": "Represents the broad notion of iOS-based operating systems.", + "rdfs:label": "IOSPlatform", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3057" + } + }, + { + "@id": "schema:MedicalCause", + "@type": "rdfs:Class", + "rdfs:comment": "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.", + "rdfs:label": "MedicalCause", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:isRelatedTo", + "@type": "rdf:Property", + "rdfs:comment": "A pointer to another, somehow related product (or multiple products).", + "rdfs:label": "isRelatedTo", + "schema:domainIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:Product" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Service" + }, + { + "@id": "schema:Product" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:includesHealthPlanNetwork", + "@type": "rdf:Property", + "rdfs:comment": "Networks covered by this plan.", + "rdfs:label": "includesHealthPlanNetwork", + "schema:domainIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:HealthPlanNetwork" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:FollowAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\\n\\nRelated actions:\\n\\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).", + "rdfs:label": "FollowAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:CookAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of producing/preparing food.", + "rdfs:label": "CookAction", + "rdfs:subClassOf": { + "@id": "schema:CreateAction" + } + }, + { + "@id": "schema:UseAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of applying an object to its intended purpose.", + "rdfs:label": "UseAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:loanRepaymentForm", + "@type": "rdf:Property", + "rdfs:comment": "A form of paying back money previously borrowed from a lender. Repayment usually takes the form of periodic payments that normally include part principal plus interest in each payment.", + "rdfs:label": "loanRepaymentForm", + "schema:domainIncludes": { + "@id": "schema:LoanOrCredit" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:RepaymentSpecification" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:CleaningFee", + "@type": "schema:PriceComponentTypeEnumeration", + "rdfs:comment": "Represents the cleaning fee part of the total price for an offered product, for example a vacation rental.", + "rdfs:label": "CleaningFee", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:checkinTime", + "@type": "rdf:Property", + "rdfs:comment": "The earliest someone may check into a lodging establishment.", + "rdfs:label": "checkinTime", + "schema:domainIncludes": [ + { + "@id": "schema:LodgingBusiness" + }, + { + "@id": "schema:LodgingReservation" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Time" + } + ] + }, + { + "@id": "schema:EventVenue", + "@type": "rdfs:Class", + "rdfs:comment": "An event venue.", + "rdfs:label": "EventVenue", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:inverseOf", + "@type": "rdf:Property", + "rdfs:comment": "Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.", + "rdfs:label": "inverseOf", + "schema:domainIncludes": { + "@id": "schema:Property" + }, + "schema:isPartOf": { + "@id": "https://meta.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Property" + } + }, + { + "@id": "schema:pregnancyWarning", + "@type": "rdf:Property", + "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.", + "rdfs:label": "pregnancyWarning", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Neuro", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Neurological system clinical examination.", + "rdfs:label": "Neuro", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:exerciseCourse", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The course where this action was taken.", + "rdfs:label": "exerciseCourse", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": { + "@id": "schema:ExerciseAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:alcoholWarning", + "@type": "rdf:Property", + "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.", + "rdfs:label": "alcoholWarning", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:engineType", + "@type": "rdf:Property", + "rdfs:comment": "The type of engine or engines powering the vehicle.", + "rdfs:label": "engineType", + "schema:domainIncludes": { + "@id": "schema:EngineSpecification" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:QualitativeValue" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:publisherImprint", + "@type": "rdf:Property", + "rdfs:comment": "The publishing division which published the comic.", + "rdfs:label": "publisherImprint", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://bib.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:FailedActionStatus", + "@type": "schema:ActionStatusType", + "rdfs:comment": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.", + "rdfs:label": "FailedActionStatus" + }, + { + "@id": "schema:costOrigin", + "@type": "rdf:Property", + "rdfs:comment": "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.", + "rdfs:label": "costOrigin", + "schema:domainIncludes": { + "@id": "schema:DrugCost" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:BankAccount", + "@type": "rdfs:Class", + "rdfs:comment": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.", + "rdfs:label": "BankAccount", + "rdfs:subClassOf": { + "@id": "schema:FinancialProduct" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:Hackathon", + "@type": "rdfs:Class", + "rdfs:comment": "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.", + "rdfs:label": "Hackathon", + "rdfs:subClassOf": { + "@id": "schema:Event" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2526" + } + }, + { + "@id": "schema:bioChemSimilarity", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org" + }, + "rdfs:comment": "A similar BioChemEntity, e.g., obtained by fingerprint similarity algorithms.", + "rdfs:label": "bioChemSimilarity", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:BioChemEntity" + } + }, + { + "@id": "schema:hasMap", + "@type": "rdf:Property", + "rdfs:comment": "A URL to a map of the place.", + "rdfs:label": "hasMap", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Map" + } + ] + }, + { + "@id": "schema:flightNumber", + "@type": "rdf:Property", + "rdfs:comment": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.", + "rdfs:label": "flightNumber", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:petsAllowed", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.", + "rdfs:label": "petsAllowed", + "schema:domainIncludes": [ + { + "@id": "schema:Accommodation" + }, + { + "@id": "schema:FloorPlan" + }, + { + "@id": "schema:ApartmentComplex" + }, + { + "@id": "schema:LodgingBusiness" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Boolean" + } + ], + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:owns", + "@type": "rdf:Property", + "rdfs:comment": "Products owned by the organization or person.", + "rdfs:label": "owns", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Product" + }, + { + "@id": "schema:OwnershipInfo" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:TransitMap", + "@type": "schema:MapCategoryType", + "rdfs:comment": "A transit map.", + "rdfs:label": "TransitMap" + }, + { + "@id": "schema:serviceLocation", + "@type": "rdf:Property", + "rdfs:comment": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service.", + "rdfs:label": "serviceLocation", + "schema:domainIncludes": { + "@id": "schema:ServiceChannel" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:longitude", + "@type": "rdf:Property", + "rdfs:comment": "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", + "rdfs:label": "longitude", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:GeoCoordinates" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:CreateAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of deliberately creating/producing/generating/building a result out of the agent.", + "rdfs:label": "CreateAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + } + }, + { + "@id": "schema:FurnitureStore", + "@type": "rdfs:Class", + "rdfs:comment": "A furniture store.", + "rdfs:label": "FurnitureStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:RsvpResponseYes", + "@type": "schema:RsvpResponseType", + "rdfs:comment": "The invitee will attend.", + "rdfs:label": "RsvpResponseYes" + }, + { + "@id": "schema:WearableSizeSystemEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates common size systems specific for wearable products", + "rdfs:label": "WearableSizeSystemEnumeration", + "rdfs:subClassOf": { + "@id": "schema:SizeSystemEnumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:BorrowAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\\n\\nRelated actions:\\n\\n* [[LendAction]]: Reciprocal of BorrowAction.", + "rdfs:label": "BorrowAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:PaidLeave", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "PaidLeave: this is a benefit for paid leave.", + "rdfs:label": "PaidLeave", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:PropertyValue", + "@type": "rdfs:Class", + "rdfs:comment": "A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\\n\\n Always use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.\n ", + "rdfs:label": "PropertyValue", + "rdfs:subClassOf": { + "@id": "schema:StructuredValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass" + } + }, + { + "@id": "schema:upvoteCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of upvotes this question, answer or comment has received from the community.", + "rdfs:label": "upvoteCount", + "schema:domainIncludes": { + "@id": "schema:Comment" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:hasOfferCatalog", + "@type": "rdf:Property", + "rdfs:comment": "Indicates an OfferCatalog listing for this Organization, Person, or Service.", + "rdfs:label": "hasOfferCatalog", + "schema:domainIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Service" + } + ], + "schema:rangeIncludes": { + "@id": "schema:OfferCatalog" + } + }, + { + "@id": "schema:availabilityStarts", + "@type": "rdf:Property", + "rdfs:comment": "The beginning of the availability of the product or service included in the offer.", + "rdfs:label": "availabilityStarts", + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:ActionAccessSpecification" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Time" + }, + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Date" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1741" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + ] + }, + { + "@id": "schema:DVDFormat", + "@type": "schema:MusicReleaseFormatType", + "rdfs:comment": "DVDFormat.", + "rdfs:label": "DVDFormat", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:DiagnosticProcedure", + "@type": "rdfs:Class", + "rdfs:comment": "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.", + "rdfs:label": "DiagnosticProcedure", + "rdfs:subClassOf": { + "@id": "schema:MedicalProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:dateVehicleFirstRegistered", + "@type": "rdf:Property", + "rdfs:comment": "The date of the first registration of the vehicle with the respective public authorities.", + "rdfs:label": "dateVehicleFirstRegistered", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:quest", + "@type": "rdf:Property", + "rdfs:comment": "The task that a player-controlled character, or group of characters may complete in order to gain a reward.", + "rdfs:label": "quest", + "schema:domainIncludes": [ + { + "@id": "schema:Game" + }, + { + "@id": "schema:VideoGameSeries" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:blogPost", + "@type": "rdf:Property", + "rdfs:comment": "A posting that is part of this blog.", + "rdfs:label": "blogPost", + "schema:domainIncludes": { + "@id": "schema:Blog" + }, + "schema:rangeIncludes": { + "@id": "schema:BlogPosting" + } + }, + { + "@id": "schema:legislationApplies", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#implements" + }, + "rdfs:comment": "Indicates that this legislation (or part of a legislation) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the legislationTransposes property. For example an informative consolidated law of a European Union's member state \"applies\" the consolidated version of the European Directive implemented in it.", + "rdfs:label": "legislationApplies", + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Legislation" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#implements" + } + }, + { + "@id": "schema:members", + "@type": "rdf:Property", + "rdfs:comment": "A member of this organization.", + "rdfs:label": "members", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:ProgramMembership" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:supersededBy": { + "@id": "schema:member" + } + }, + { + "@id": "schema:DrinkAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of swallowing liquids.", + "rdfs:label": "DrinkAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:Pharmacy", + "@type": "rdfs:Class", + "rdfs:comment": "A pharmacy or drugstore.", + "rdfs:label": "Pharmacy", + "rdfs:subClassOf": [ + { + "@id": "schema:MedicalOrganization" + }, + { + "@id": "schema:MedicalBusiness" + } + ] + }, + { + "@id": "schema:occupancy", + "@type": "rdf:Property", + "rdfs:comment": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person", + "rdfs:label": "occupancy", + "schema:domainIncludes": [ + { + "@id": "schema:Suite" + }, + { + "@id": "schema:Apartment" + }, + { + "@id": "schema:HotelRoom" + }, + { + "@id": "schema:SingleFamilyResidence" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:breadcrumb", + "@type": "rdf:Property", + "rdfs:comment": "A set of links that can help a user understand and navigate a website hierarchy.", + "rdfs:label": "breadcrumb", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:BreadcrumbList" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:Room", + "@type": "rdfs:Class", + "rdfs:comment": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", + "rdfs:label": "Room", + "rdfs:subClassOf": { + "@id": "schema:Accommodation" + }, + "schema:source": { + "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology" + } + }, + { + "@id": "schema:eligibleDuration", + "@type": "rdf:Property", + "rdfs:comment": "The duration for which the given offer is valid.", + "rdfs:label": "eligibleDuration", + "schema:domainIncludes": [ + { + "@id": "schema:Offer" + }, + { + "@id": "schema:Demand" + } + ], + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:doseSchedule", + "@type": "rdf:Property", + "rdfs:comment": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.", + "rdfs:label": "doseSchedule", + "schema:domainIncludes": [ + { + "@id": "schema:TherapeuticProcedure" + }, + { + "@id": "schema:Drug" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DoseSchedule" + } + }, + { + "@id": "schema:broadcastAffiliateOf", + "@type": "rdf:Property", + "rdfs:comment": "The media network(s) whose content is broadcast on this station.", + "rdfs:label": "broadcastAffiliateOf", + "schema:domainIncludes": { + "@id": "schema:BroadcastService" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:NoninvasiveProcedure", + "@type": "schema:MedicalProcedureType", + "rdfs:comment": "A type of medical procedure that involves noninvasive techniques.", + "rdfs:label": "NoninvasiveProcedure", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Otolaryngologic", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.", + "rdfs:label": "Otolaryngologic", + "rdfs:subClassOf": { + "@id": "schema:MedicalBusiness" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:TravelAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.", + "rdfs:label": "TravelAction", + "rdfs:subClassOf": { + "@id": "schema:MoveAction" + } + }, + { + "@id": "schema:permissionType", + "@type": "rdf:Property", + "rdfs:comment": "The type of permission granted the person, organization, or audience.", + "rdfs:label": "permissionType", + "schema:domainIncludes": { + "@id": "schema:DigitalDocumentPermission" + }, + "schema:rangeIncludes": { + "@id": "schema:DigitalDocumentPermissionType" + } + }, + { + "@id": "schema:underName", + "@type": "rdf:Property", + "rdfs:comment": "The person or organization the reservation or ticket is for.", + "rdfs:label": "underName", + "schema:domainIncludes": [ + { + "@id": "schema:Reservation" + }, + { + "@id": "schema:Ticket" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:isBasedOnUrl", + "@type": "rdf:Property", + "rdfs:comment": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.", + "rdfs:label": "isBasedOnUrl", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Product" + } + ], + "schema:supersededBy": { + "@id": "schema:isBasedOn" + } + }, + { + "@id": "schema:expectedPrognosis", + "@type": "rdf:Property", + "rdfs:comment": "The likely outcome in either the short term or long term of the medical condition.", + "rdfs:label": "expectedPrognosis", + "schema:domainIncludes": { + "@id": "schema:MedicalCondition" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:EBook", + "@type": "schema:BookFormatType", + "rdfs:comment": "Book format: Ebook.", + "rdfs:label": "EBook" + }, + { + "@id": "schema:Recommendation", + "@type": "rdfs:Class", + "rdfs:comment": "[[Recommendation]] is a type of [[Review]] that suggests or proposes something as the best option or best course of action. Recommendations may be for products or services, or other concrete things, as in the case of a ranked list or product guide. A [[Guide]] may list multiple recommendations for different categories. For example, in a [[Guide]] about which TVs to buy, the author may have several [[Recommendation]]s.", + "rdfs:label": "Recommendation", + "rdfs:subClassOf": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2405" + } + }, + { + "@id": "schema:SeaBodyOfWater", + "@type": "rdfs:Class", + "rdfs:comment": "A sea (for example, the Caspian sea).", + "rdfs:label": "SeaBodyOfWater", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:ratingExplanation", + "@type": "rdf:Property", + "rdfs:comment": "A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with \"fact check\" markup using [[ClaimReview]].", + "rdfs:label": "ratingExplanation", + "schema:domainIncludes": { + "@id": "schema:Rating" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2300" + } + }, + { + "@id": "schema:applicableCountry", + "@type": "rdf:Property", + "rdfs:comment": "A country where a particular merchant return policy applies to, for example the two-letter ISO 3166-1 alpha-2 country code.", + "rdfs:label": "applicableCountry", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Country" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/3001" + } + }, + { + "@id": "schema:encodings", + "@type": "rdf:Property", + "rdfs:comment": "A media object that encodes this CreativeWork.", + "rdfs:label": "encodings", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:MediaObject" + }, + "schema:supersededBy": { + "@id": "schema:encoding" + } + }, + { + "@id": "schema:BodyMeasurementWaist", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Girth of natural waistline (between hip bones and lower ribs). Used, for example, to fit pants.", + "rdfs:label": "BodyMeasurementWaist", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:paymentMethod", + "@type": "rdf:Property", + "rdfs:comment": "The name of the credit card or other method of payment for the order.", + "rdfs:label": "paymentMethod", + "schema:domainIncludes": [ + { + "@id": "schema:Order" + }, + { + "@id": "schema:Invoice" + } + ], + "schema:rangeIncludes": { + "@id": "schema:PaymentMethod" + } + }, + { + "@id": "schema:RearWheelDriveConfiguration", + "@type": "schema:DriveWheelConfigurationValue", + "rdfs:comment": "Real-wheel drive is a transmission layout where the engine drives the rear wheels.", + "rdfs:label": "RearWheelDriveConfiguration", + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:BodyMeasurementArm", + "@type": "schema:BodyMeasurementTypeEnumeration", + "rdfs:comment": "Arm length (measured between arms/shoulder line intersection and the prominent wrist bone). Used, for example, to fit shirts.", + "rdfs:label": "BodyMeasurementArm", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:arrivalBusStop", + "@type": "rdf:Property", + "rdfs:comment": "The stop or station from which the bus arrives.", + "rdfs:label": "arrivalBusStop", + "schema:domainIncludes": { + "@id": "schema:BusTrip" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:BusStation" + }, + { + "@id": "schema:BusStop" + } + ] + }, + { + "@id": "schema:availableStrength", + "@type": "rdf:Property", + "rdfs:comment": "An available dosage strength for the drug.", + "rdfs:label": "availableStrength", + "schema:domainIncludes": { + "@id": "schema:Drug" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DrugStrength" + } + }, + { + "@id": "schema:OccupationalExperienceRequirements", + "@type": "rdfs:Class", + "rdfs:comment": "Indicates employment-related experience requirements, e.g. [[monthsOfExperience]].", + "rdfs:label": "OccupationalExperienceRequirements", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2681" + } + }, + { + "@id": "schema:TVClip", + "@type": "rdfs:Class", + "rdfs:comment": "A short TV program or a segment/part of a TV program.", + "rdfs:label": "TVClip", + "rdfs:subClassOf": { + "@id": "schema:Clip" + } + }, + { + "@id": "schema:cvdNumC19HospPats", + "@type": "rdf:Property", + "rdfs:comment": "numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.", + "rdfs:label": "cvdNumC19HospPats", + "schema:domainIncludes": { + "@id": "schema:CDCPMDRecord" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2521" + } + }, + { + "@id": "schema:RelatedTopicsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Other prominent or relevant topics tied to the main topic.", + "rdfs:label": "RelatedTopicsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:attendee", + "@type": "rdf:Property", + "rdfs:comment": "A person or organization attending the event.", + "rdfs:label": "attendee", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ] + }, + { + "@id": "schema:subTrip", + "@type": "rdf:Property", + "rdfs:comment": "Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.", + "rdfs:label": "subTrip", + "schema:domainIncludes": { + "@id": "schema:Trip" + }, + "schema:inverseOf": { + "@id": "schema:partOfTrip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Trip" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1810" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + } + ] + }, + { + "@id": "schema:geo", + "@type": "rdf:Property", + "rdfs:comment": "The geo coordinates of the place.", + "rdfs:label": "geo", + "schema:domainIncludes": { + "@id": "schema:Place" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:GeoCoordinates" + }, + { + "@id": "schema:GeoShape" + } + ] + }, + { + "@id": "schema:vehicleIdentificationNumber", + "@type": "rdf:Property", + "rdfs:comment": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.", + "rdfs:label": "vehicleIdentificationNumber", + "rdfs:subPropertyOf": { + "@id": "schema:serialNumber" + }, + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:steps", + "@type": "rdf:Property", + "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).", + "rdfs:label": "steps", + "schema:domainIncludes": [ + { + "@id": "schema:HowTo" + }, + { + "@id": "schema:HowToSection" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:ItemList" + }, + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Text" + } + ], + "schema:supersededBy": { + "@id": "schema:step" + } + }, + { + "@id": "schema:events", + "@type": "rdf:Property", + "rdfs:comment": "Upcoming or past events associated with this place or organization.", + "rdfs:label": "events", + "schema:domainIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:Organization" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Event" + }, + "schema:supersededBy": { + "@id": "schema:event" + } + }, + { + "@id": "schema:MedicalIntangible", + "@type": "rdfs:Class", + "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.", + "rdfs:label": "MedicalIntangible", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:interpretedAsClaim", + "@type": "rdf:Property", + "rdfs:comment": "Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].", + "rdfs:label": "interpretedAsClaim", + "rdfs:subPropertyOf": { + "@id": "schema:description" + }, + "schema:domainIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:MediaObject" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Claim" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:TakeAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.", + "rdfs:label": "TakeAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:HVACBusiness", + "@type": "rdfs:Class", + "rdfs:comment": "A business that provide Heating, Ventilation and Air Conditioning services.", + "rdfs:label": "HVACBusiness", + "rdfs:subClassOf": { + "@id": "schema:HomeAndConstructionBusiness" + } + }, + { + "@id": "schema:ComedyClub", + "@type": "rdfs:Class", + "rdfs:comment": "A comedy club.", + "rdfs:label": "ComedyClub", + "rdfs:subClassOf": { + "@id": "schema:EntertainmentBusiness" + } + }, + { + "@id": "schema:accessibilityControl", + "@type": "rdf:Property", + "rdfs:comment": "Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).", + "rdfs:label": "accessibilityControl", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:RestrictedDiet", + "@type": "rdfs:Class", + "rdfs:comment": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ", + "rdfs:label": "RestrictedDiet", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + } + }, + { + "@id": "schema:gameLocation", + "@type": "rdf:Property", + "rdfs:comment": "Real or fictional location of the game (or part of game).", + "rdfs:label": "gameLocation", + "schema:domainIncludes": [ + { + "@id": "schema:Game" + }, + { + "@id": "schema:VideoGameSeries" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Place" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:PostalAddress" + } + ] + }, + { + "@id": "schema:itinerary", + "@type": "rdf:Property", + "rdfs:comment": "Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).", + "rdfs:label": "itinerary", + "schema:domainIncludes": { + "@id": "schema:Trip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ItemList" + }, + { + "@id": "schema:Place" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1810" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + } + ] + }, + { + "@id": "schema:acrissCode", + "@type": "rdf:Property", + "rdfs:comment": "The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.", + "rdfs:label": "acrissCode", + "schema:domainIncludes": [ + { + "@id": "schema:BusOrCoach" + }, + { + "@id": "schema:Car" + } + ], + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:partOfTrip", + "@type": "rdf:Property", + "rdfs:comment": "Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.", + "rdfs:label": "partOfTrip", + "schema:domainIncludes": { + "@id": "schema:Trip" + }, + "schema:inverseOf": { + "@id": "schema:subTrip" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Trip" + }, + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1810" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism" + } + ] + }, + { + "@id": "schema:RestockingFees", + "@type": "schema:ReturnFeesEnumeration", + "rdfs:comment": "Specifies that the customer must pay a restocking fee when returning a product", + "rdfs:label": "RestockingFees", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:MathSolver", + "@type": "rdfs:Class", + "rdfs:comment": "A math solver which is capable of solving a subset of mathematical problems.", + "rdfs:label": "MathSolver", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2740" + } + }, + { + "@id": "schema:citation", + "@type": "rdf:Property", + "rdfs:comment": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.", + "rdfs:label": "citation", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CreativeWork" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:LendAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\\n\\nRelated actions:\\n\\n* [[BorrowAction]]: Reciprocal of LendAction.", + "rdfs:label": "LendAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:VoteAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of expressing a preference from a fixed/finite/structured set of choices/options.", + "rdfs:label": "VoteAction", + "rdfs:subClassOf": { + "@id": "schema:ChooseAction" + } + }, + { + "@id": "schema:Nonprofit501q", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.", + "rdfs:label": "Nonprofit501q", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:volumeNumber", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/bibo/volume" + }, + "rdfs:comment": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".", + "rdfs:label": "volumeNumber", + "rdfs:subPropertyOf": { + "@id": "schema:position" + }, + "schema:domainIncludes": { + "@id": "schema:PublicationVolume" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:version", + "@type": "rdf:Property", + "rdfs:comment": "The version of the CreativeWork embodied by a specified resource.", + "rdfs:label": "version", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:WearableSizeSystemContinental", + "@type": "schema:WearableSizeSystemEnumeration", + "rdfs:comment": "Continental size system for wearables.", + "rdfs:label": "WearableSizeSystemContinental", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:SingleCenterTrial", + "@type": "schema:MedicalTrialDesign", + "rdfs:comment": "A trial that takes place at a single center.", + "rdfs:label": "SingleCenterTrial", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MedicalIndication", + "@type": "rdfs:Class", + "rdfs:comment": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.", + "rdfs:label": "MedicalIndication", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:MedicalStudy", + "@type": "rdfs:Class", + "rdfs:comment": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.", + "rdfs:label": "MedicalStudy", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:Landform", + "@type": "rdfs:Class", + "rdfs:comment": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.", + "rdfs:label": "Landform", + "rdfs:subClassOf": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:DefenceEstablishment", + "@type": "rdfs:Class", + "rdfs:comment": "A defence establishment, such as an army or navy base.", + "rdfs:label": "DefenceEstablishment", + "rdfs:subClassOf": { + "@id": "schema:GovernmentBuilding" + } + }, + { + "@id": "schema:legislationDateVersion", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://data.europa.eu/eli/ontology#version_date" + }, + "rdfs:comment": "The point-in-time at which the provided description of the legislation is valid (e.g. : when looking at the law on the 2016-04-07 (= dateVersion), I get the consolidation of 2015-04-12 of the \"National Insurance Contributions Act 2015\")", + "rdfs:label": "legislationDateVersion", + "schema:domainIncludes": { + "@id": "schema:Legislation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Date" + }, + "schema:source": [ + { + "@id": "http://publications.europa.eu/mdr/eli/index.html" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1156" + } + ], + "skos:exactMatch": { + "@id": "http://data.europa.eu/eli/ontology#version_date" + } + }, + { + "@id": "schema:Poster", + "@type": "rdfs:Class", + "rdfs:comment": "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.", + "rdfs:label": "Poster", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1448" + } + }, + { + "@id": "schema:Reservoir", + "@type": "rdfs:Class", + "rdfs:comment": "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.", + "rdfs:label": "Reservoir", + "rdfs:subClassOf": { + "@id": "schema:BodyOfWater" + } + }, + { + "@id": "schema:GiveAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\\n\\nRelated actions:\\n\\n* [[TakeAction]]: Reciprocal of GiveAction.\\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).", + "rdfs:label": "GiveAction", + "rdfs:subClassOf": { + "@id": "schema:TransferAction" + } + }, + { + "@id": "schema:follows", + "@type": "rdf:Property", + "rdfs:comment": "The most generic uni-directional social relation.", + "rdfs:label": "follows", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + } + }, + { + "@id": "schema:seasonNumber", + "@type": "rdf:Property", + "rdfs:comment": "Position of the season within an ordered group of seasons.", + "rdfs:label": "seasonNumber", + "rdfs:subPropertyOf": { + "@id": "schema:position" + }, + "schema:domainIncludes": { + "@id": "schema:CreativeWorkSeason" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Integer" + } + ] + }, + { + "@id": "schema:DigitalDocumentPermission", + "@type": "rdfs:Class", + "rdfs:comment": "A permission for a particular person or group to access a particular file.", + "rdfs:label": "DigitalDocumentPermission", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:ReservationPackage", + "@type": "rdfs:Class", + "rdfs:comment": "A group of multiple reservations with common values for all sub-reservations.", + "rdfs:label": "ReservationPackage", + "rdfs:subClassOf": { + "@id": "schema:Reservation" + } + }, + { + "@id": "schema:AnatomicalStructure", + "@type": "rdfs:Class", + "rdfs:comment": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.", + "rdfs:label": "AnatomicalStructure", + "rdfs:subClassOf": { + "@id": "schema:MedicalEntity" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:reservationFor", + "@type": "rdf:Property", + "rdfs:comment": "The thing -- flight, event, restaurant,etc. being reserved.", + "rdfs:label": "reservationFor", + "schema:domainIncludes": { + "@id": "schema:Reservation" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:additionalVariable", + "@type": "rdf:Property", + "rdfs:comment": "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.", + "rdfs:label": "additionalVariable", + "schema:domainIncludes": { + "@id": "schema:ExercisePlan" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:DataCatalog", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "dcat:Catalog" + }, + "rdfs:comment": "A collection of datasets.", + "rdfs:label": "DataCatalog", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass" + } + }, + { + "@id": "schema:associatedPathophysiology", + "@type": "rdf:Property", + "rdfs:comment": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.", + "rdfs:label": "associatedPathophysiology", + "schema:domainIncludes": [ + { + "@id": "schema:AnatomicalSystem" + }, + { + "@id": "schema:AnatomicalStructure" + }, + { + "@id": "schema:SuperficialAnatomy" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:priceComponentType", + "@type": "rdf:Property", + "rdfs:comment": "Identifies a price component (for example, a line item on an invoice), part of the total price for an offer.", + "rdfs:label": "priceComponentType", + "schema:domainIncludes": { + "@id": "schema:UnitPriceSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:PriceComponentTypeEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:quarantineGuidelines", + "@type": "rdf:Property", + "rdfs:comment": "Guidelines about quarantine rules, e.g. in the context of a pandemic.", + "rdfs:label": "quarantineGuidelines", + "schema:domainIncludes": { + "@id": "schema:SpecialAnnouncement" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:WebContent" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2490" + } + }, + { + "@id": "schema:WearableSizeGroupBoys", + "@type": "schema:WearableSizeGroupEnumeration", + "rdfs:comment": "Size group \"Boys\" for wearables.", + "rdfs:label": "WearableSizeGroupBoys", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2811" + } + }, + { + "@id": "schema:Surgical", + "@type": "schema:MedicalSpecialty", + "rdfs:comment": "A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.", + "rdfs:label": "Surgical", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:workFeatured", + "@type": "rdf:Property", + "rdfs:comment": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).", + "rdfs:label": "workFeatured", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:multipleValues", + "@type": "rdf:Property", + "rdfs:comment": "Whether multiple values are allowed for the property. Default is false.", + "rdfs:label": "multipleValues", + "schema:domainIncludes": { + "@id": "schema:PropertyValueSpecification" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:lyricist", + "@type": "rdf:Property", + "rdfs:comment": "The person who wrote the words.", + "rdfs:label": "lyricist", + "schema:domainIncludes": { + "@id": "schema:MusicComposition" + }, + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:episode", + "@type": "rdf:Property", + "rdfs:comment": "An episode of a tv, radio or game media within a series or season.", + "rdfs:label": "episode", + "rdfs:subPropertyOf": { + "@id": "schema:hasPart" + }, + "schema:domainIncludes": [ + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:CreativeWorkSeason" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Episode" + } + }, + { + "@id": "schema:SeekToAction", + "@type": "rdfs:Class", + "rdfs:comment": "This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure.", + "rdfs:label": "SeekToAction", + "rdfs:subClassOf": { + "@id": "schema:Action" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2722" + } + }, + { + "@id": "schema:Volcano", + "@type": "rdfs:Class", + "rdfs:comment": "A volcano, like Fuji san.", + "rdfs:label": "Volcano", + "rdfs:subClassOf": { + "@id": "schema:Landform" + } + }, + { + "@id": "schema:archivedAt", + "@type": "rdf:Property", + "rdfs:comment": "Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.", + "rdfs:label": "archivedAt", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:WebPage" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:MerchantReturnEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates several kinds of product return policies.", + "rdfs:label": "MerchantReturnEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:Course", + "@type": "rdfs:Class", + "rdfs:comment": "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.", + "rdfs:label": "Course", + "rdfs:subClassOf": [ + { + "@id": "schema:LearningResource" + }, + { + "@id": "schema:CreativeWork" + } + ] + }, + { + "@id": "schema:HealthPlanCostSharingSpecification", + "@type": "rdfs:Class", + "rdfs:comment": "A description of costs to the patient under a given network or formulary.", + "rdfs:label": "HealthPlanCostSharingSpecification", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:BusStation", + "@type": "rdfs:Class", + "rdfs:comment": "A bus station.", + "rdfs:label": "BusStation", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + } + }, + { + "@id": "schema:catalogNumber", + "@type": "rdf:Property", + "rdfs:comment": "The catalog number for the release.", + "rdfs:label": "catalogNumber", + "schema:domainIncludes": { + "@id": "schema:MusicRelease" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ" + } + }, + { + "@id": "schema:layoutImage", + "@type": "rdf:Property", + "rdfs:comment": "A schematic image showing the floorplan layout.", + "rdfs:label": "layoutImage", + "rdfs:subPropertyOf": { + "@id": "schema:image" + }, + "schema:domainIncludes": { + "@id": "schema:FloorPlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:ImageObject" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2690" + } + }, + { + "@id": "schema:DistanceFee", + "@type": "schema:PriceComponentTypeEnumeration", + "rdfs:comment": "Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental.", + "rdfs:label": "DistanceFee", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:learningResourceType", + "@type": "rdf:Property", + "rdfs:comment": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.", + "rdfs:label": "learningResourceType", + "schema:domainIncludes": [ + { + "@id": "schema:LearningResource" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:DefinedTerm" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:byArtist", + "@type": "rdf:Property", + "rdfs:comment": "The artist that performed this album or recording.", + "rdfs:label": "byArtist", + "schema:domainIncludes": [ + { + "@id": "schema:MusicRecording" + }, + { + "@id": "schema:MusicAlbum" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:MusicGroup" + } + ] + }, + { + "@id": "schema:freeShippingThreshold", + "@type": "rdf:Property", + "rdfs:comment": "A monetary value above which (or equal to) the shipping rate becomes free. Intended to be used via an [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]].", + "rdfs:label": "freeShippingThreshold", + "schema:domainIncludes": { + "@id": "schema:ShippingRateSettings" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MonetaryAmount" + }, + { + "@id": "schema:DeliveryChargeSpecification" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:encoding", + "@type": "rdf:Property", + "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", + "rdfs:label": "encoding", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:encodesCreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:MediaObject" + } + }, + { + "@id": "schema:directors", + "@type": "rdf:Property", + "rdfs:comment": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.", + "rdfs:label": "directors", + "schema:domainIncludes": [ + { + "@id": "schema:Episode" + }, + { + "@id": "schema:Movie" + }, + { + "@id": "schema:MovieSeries" + }, + { + "@id": "schema:VideoGame" + }, + { + "@id": "schema:Clip" + }, + { + "@id": "schema:RadioSeries" + }, + { + "@id": "schema:TVSeries" + }, + { + "@id": "schema:VideoGameSeries" + }, + { + "@id": "schema:VideoObject" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Person" + }, + "schema:supersededBy": { + "@id": "schema:director" + } + }, + { + "@id": "schema:healthPlanMarketingUrl", + "@type": "rdf:Property", + "rdfs:comment": "The URL that goes directly to the plan brochure for the specific standard plan or plan variation.", + "rdfs:label": "healthPlanMarketingUrl", + "schema:domainIncludes": { + "@id": "schema:HealthInsurancePlan" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:Periodical", + "@type": "rdfs:Class", + "owl:equivalentClass": { + "@id": "http://purl.org/ontology/bibo/Periodical" + }, + "rdfs:comment": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).", + "rdfs:label": "Periodical", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeries" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:RadioClip", + "@type": "rdfs:Class", + "rdfs:comment": "A short radio program or a segment/part of a radio program.", + "rdfs:label": "RadioClip", + "rdfs:subClassOf": { + "@id": "schema:Clip" + } + }, + { + "@id": "schema:targetProduct", + "@type": "rdf:Property", + "rdfs:comment": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.", + "rdfs:label": "targetProduct", + "schema:domainIncludes": { + "@id": "schema:SoftwareSourceCode" + }, + "schema:rangeIncludes": { + "@id": "schema:SoftwareApplication" + } + }, + { + "@id": "schema:XPathType", + "@type": "rdfs:Class", + "rdfs:comment": "Text representing an XPath (typically but not necessarily version 1.0).", + "rdfs:label": "XPathType", + "rdfs:subClassOf": { + "@id": "schema:Text" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1672" + } + }, + { + "@id": "schema:audio", + "@type": "rdf:Property", + "rdfs:comment": "An embedded audio object.", + "rdfs:label": "audio", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AudioObject" + }, + { + "@id": "schema:MusicRecording" + }, + { + "@id": "schema:Clip" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2420" + } + }, + { + "@id": "schema:mentions", + "@type": "rdf:Property", + "rdfs:comment": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.", + "rdfs:label": "mentions", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:meetsEmissionStandard", + "@type": "rdf:Property", + "rdfs:comment": "Indicates that the vehicle meets the respective emission standard.", + "rdfs:label": "meetsEmissionStandard", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:URL" + }, + { + "@id": "schema:QualitativeValue" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:accessModeSufficient", + "@type": "rdf:Property", + "rdfs:comment": "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).", + "rdfs:label": "accessModeSufficient", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": { + "@id": "schema:ItemList" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1100" + } + }, + { + "@id": "schema:proficiencyLevel", + "@type": "rdf:Property", + "rdfs:comment": "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.", + "rdfs:label": "proficiencyLevel", + "schema:domainIncludes": { + "@id": "schema:TechArticle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:MaximumDoseSchedule", + "@type": "rdfs:Class", + "rdfs:comment": "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.", + "rdfs:label": "MaximumDoseSchedule", + "rdfs:subClassOf": { + "@id": "schema:DoseSchedule" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:ItemPage", + "@type": "rdfs:Class", + "rdfs:comment": "A page devoted to a single item, such as a particular product or hotel.", + "rdfs:label": "ItemPage", + "rdfs:subClassOf": { + "@id": "schema:WebPage" + } + }, + { + "@id": "schema:smiles", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org/MolecularEntity" + }, + "rdfs:comment": "A specification in form of a line notation for describing the structure of chemical species using short ASCII strings. Double bond stereochemistry \\ indicators may need to be escaped in the string in formats where the backslash is an escape character.", + "rdfs:label": "smiles", + "rdfs:subPropertyOf": { + "@id": "schema:hasRepresentation" + }, + "schema:domainIncludes": { + "@id": "schema:MolecularEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:performTime", + "@type": "rdf:Property", + "rdfs:comment": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).", + "rdfs:label": "performTime", + "schema:domainIncludes": [ + { + "@id": "schema:HowTo" + }, + { + "@id": "schema:HowToDirection" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Duration" + } + }, + { + "@id": "schema:Clip", + "@type": "rdfs:Class", + "rdfs:comment": "A short TV or radio program or a segment/part of a program.", + "rdfs:label": "Clip", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:UserComments", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserComments", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:pagination", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "http://purl.org/ontology/bibo/pages" + }, + "rdfs:comment": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".", + "rdfs:label": "pagination", + "schema:domainIncludes": [ + { + "@id": "schema:Article" + }, + { + "@id": "schema:PublicationIssue" + }, + { + "@id": "schema:Chapter" + }, + { + "@id": "schema:PublicationVolume" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:PublicToilet", + "@type": "rdfs:Class", + "rdfs:comment": "A public toilet is a room or small building containing one or more toilets (and possibly also urinals) which is available for use by the general public, or by customers or employees of certain businesses.", + "rdfs:label": "PublicToilet", + "rdfs:subClassOf": { + "@id": "schema:CivicStructure" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1624" + } + }, + { + "@id": "schema:AutoDealer", + "@type": "rdfs:Class", + "rdfs:comment": "An car dealership.", + "rdfs:label": "AutoDealer", + "rdfs:subClassOf": { + "@id": "schema:AutomotiveBusiness" + } + }, + { + "@id": "schema:RegisterAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of registering to be a user of a service, product or web page.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\\n* [FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.", + "rdfs:label": "RegisterAction", + "rdfs:subClassOf": { + "@id": "schema:InteractAction" + } + }, + { + "@id": "schema:ScheduleAction", + "@type": "rdfs:Class", + "rdfs:comment": "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.", + "rdfs:label": "ScheduleAction", + "rdfs:subClassOf": { + "@id": "schema:PlanAction" + } + }, + { + "@id": "schema:offerCount", + "@type": "rdf:Property", + "rdfs:comment": "The number of offers for the product.", + "rdfs:label": "offerCount", + "schema:domainIncludes": { + "@id": "schema:AggregateOffer" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:nationality", + "@type": "rdf:Property", + "rdfs:comment": "Nationality of the person.", + "rdfs:label": "nationality", + "schema:domainIncludes": { + "@id": "schema:Person" + }, + "schema:rangeIncludes": { + "@id": "schema:Country" + } + }, + { + "@id": "schema:MerchantReturnUnspecified", + "@type": "schema:MerchantReturnEnumeration", + "rdfs:comment": "Specifies that a product return policy is not provided.", + "rdfs:label": "MerchantReturnUnspecified", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:TextDigitalDocument", + "@type": "rdfs:Class", + "rdfs:comment": "A file composed primarily of text.", + "rdfs:label": "TextDigitalDocument", + "rdfs:subClassOf": { + "@id": "schema:DigitalDocument" + } + }, + { + "@id": "schema:deliveryMethod", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of instrument. The method of delivery.", + "rdfs:label": "deliveryMethod", + "rdfs:subPropertyOf": { + "@id": "schema:instrument" + }, + "schema:domainIncludes": [ + { + "@id": "schema:ReceiveAction" + }, + { + "@id": "schema:OrderAction" + }, + { + "@id": "schema:TrackAction" + }, + { + "@id": "schema:SendAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:DeliveryMethod" + } + }, + { + "@id": "schema:byMonthWeek", + "@type": "rdf:Property", + "rdfs:comment": "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.", + "rdfs:label": "byMonthWeek", + "schema:domainIncludes": { + "@id": "schema:Schedule" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2599" + } + }, + { + "@id": "schema:OrderProcessing", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing that an order is being processed.", + "rdfs:label": "OrderProcessing" + }, + { + "@id": "schema:aspect", + "@type": "rdf:Property", + "rdfs:comment": "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.", + "rdfs:label": "aspect", + "schema:domainIncludes": { + "@id": "schema:MedicalWebPage" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:supersededBy": { + "@id": "schema:mainContentOfPage" + } + }, + { + "@id": "schema:postalCodeBegin", + "@type": "rdf:Property", + "rdfs:comment": "First postal code in a range (included).", + "rdfs:label": "postalCodeBegin", + "schema:domainIncludes": { + "@id": "schema:PostalCodeRangeSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2506" + } + }, + { + "@id": "schema:howPerformed", + "@type": "rdf:Property", + "rdfs:comment": "How the procedure is performed.", + "rdfs:label": "howPerformed", + "schema:domainIncludes": { + "@id": "schema:MedicalProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:HealthInsurancePlan", + "@type": "rdfs:Class", + "rdfs:comment": "A US-style health insurance plan, including PPOs, EPOs, and HMOs. ", + "rdfs:label": "HealthInsurancePlan", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1062" + } + }, + { + "@id": "schema:numChildren", + "@type": "rdf:Property", + "rdfs:comment": "The number of children staying in the unit.", + "rdfs:label": "numChildren", + "schema:domainIncludes": { + "@id": "schema:LodgingReservation" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Integer" + }, + { + "@id": "schema:QuantitativeValue" + } + ] + }, + { + "@id": "schema:MedicalDevicePurpose", + "@type": "rdfs:Class", + "rdfs:comment": "Categories of medical devices, organized by the purpose or intended use of the device.", + "rdfs:label": "MedicalDevicePurpose", + "rdfs:subClassOf": { + "@id": "schema:MedicalEnumeration" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:LiquorStore", + "@type": "rdfs:Class", + "rdfs:comment": "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.", + "rdfs:label": "LiquorStore", + "rdfs:subClassOf": { + "@id": "schema:Store" + } + }, + { + "@id": "schema:AddAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of editing by adding an object to a collection.", + "rdfs:label": "AddAction", + "rdfs:subClassOf": { + "@id": "schema:UpdateAction" + } + }, + { + "@id": "schema:vehicleSpecialUsage", + "@type": "rdf:Property", + "rdfs:comment": "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.", + "rdfs:label": "vehicleSpecialUsage", + "schema:domainIncludes": { + "@id": "schema:Vehicle" + }, + "schema:isPartOf": { + "@id": "https://auto.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:CarUsageType" + }, + { + "@id": "schema:Text" + } + ], + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group" + } + }, + { + "@id": "schema:webFeed", + "@type": "rdf:Property", + "rdfs:comment": "The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.", + "rdfs:label": "webFeed", + "schema:domainIncludes": [ + { + "@id": "schema:PodcastSeries" + }, + { + "@id": "schema:SpecialAnnouncement" + } + ], + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:DataFeed" + }, + { + "@id": "schema:URL" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/373" + } + }, + { + "@id": "schema:significantLinks", + "@type": "rdf:Property", + "rdfs:comment": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.", + "rdfs:label": "significantLinks", + "schema:domainIncludes": { + "@id": "schema:WebPage" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + }, + "schema:supersededBy": { + "@id": "schema:significantLink" + } + }, + { + "@id": "schema:NightClub", + "@type": "rdfs:Class", + "rdfs:comment": "A nightclub or discotheque.", + "rdfs:label": "NightClub", + "rdfs:subClassOf": { + "@id": "schema:EntertainmentBusiness" + } + }, + { + "@id": "schema:ApplyAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of registering to an organization/service without the guarantee to receive it.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.", + "rdfs:label": "ApplyAction", + "rdfs:subClassOf": { + "@id": "schema:OrganizeAction" + } + }, + { + "@id": "schema:OrderPickupAvailable", + "@type": "schema:OrderStatus", + "rdfs:comment": "OrderStatus representing availability of an order for pickup.", + "rdfs:label": "OrderPickupAvailable" + }, + { + "@id": "schema:HyperTocEntry", + "@type": "rdfs:Class", + "rdfs:comment": "A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]].", + "rdfs:label": "HyperTocEntry", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2766" + } + }, + { + "@id": "schema:availableOnDevice", + "@type": "rdf:Property", + "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.", + "rdfs:label": "availableOnDevice", + "schema:domainIncludes": { + "@id": "schema:SoftwareApplication" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:ratingCount", + "@type": "rdf:Property", + "rdfs:comment": "The count of total number of ratings.", + "rdfs:label": "ratingCount", + "schema:domainIncludes": { + "@id": "schema:AggregateRating" + }, + "schema:rangeIncludes": { + "@id": "schema:Integer" + } + }, + { + "@id": "schema:eventSchedule", + "@type": "rdf:Property", + "rdfs:comment": "Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of\n repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly\n gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that\n is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated\n [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months\n or seasons.", + "rdfs:label": "eventSchedule", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Schedule" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1457" + } + }, + { + "@id": "schema:DiabeticDiet", + "@type": "schema:RestrictedDiet", + "rdfs:comment": "A diet appropriate for people with diabetes.", + "rdfs:label": "DiabeticDiet" + }, + { + "@id": "schema:dateline", + "@type": "rdf:Property", + "rdfs:comment": "A [dateline](https://en.wikipedia.org/wiki/Dateline) is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ", + "rdfs:label": "dateline", + "schema:domainIncludes": { + "@id": "schema:NewsArticle" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Vein", + "@type": "rdfs:Class", + "rdfs:comment": "A type of blood vessel that specifically carries blood to the heart.", + "rdfs:label": "Vein", + "rdfs:subClassOf": { + "@id": "schema:Vessel" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:usesDevice", + "@type": "rdf:Property", + "rdfs:comment": "Device used to perform the test.", + "rdfs:label": "usesDevice", + "schema:domainIncludes": { + "@id": "schema:MedicalTest" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalDevice" + } + }, + { + "@id": "schema:marginOfError", + "@type": "rdf:Property", + "rdfs:comment": "A marginOfError for an [[Observation]].", + "rdfs:label": "marginOfError", + "schema:domainIncludes": { + "@id": "schema:Observation" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:QuantitativeValue" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:GovernmentService", + "@type": "rdfs:Class", + "rdfs:comment": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.", + "rdfs:label": "GovernmentService", + "rdfs:subClassOf": { + "@id": "schema:Service" + } + }, + { + "@id": "schema:xpath", + "@type": "rdf:Property", + "rdfs:comment": "An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".", + "rdfs:label": "xpath", + "schema:domainIncludes": [ + { + "@id": "schema:SpeakableSpecification" + }, + { + "@id": "schema:WebPageElement" + } + ], + "schema:rangeIncludes": { + "@id": "schema:XPathType" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1389" + } + }, + { + "@id": "schema:comprisedOf", + "@type": "rdf:Property", + "rdfs:comment": "Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system.", + "rdfs:label": "comprisedOf", + "schema:domainIncludes": { + "@id": "schema:AnatomicalSystem" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:AnatomicalStructure" + }, + { + "@id": "schema:AnatomicalSystem" + } + ] + }, + { + "@id": "schema:biologicalRole", + "@type": "rdf:Property", + "dcterms:source": { + "@id": "http://www.bioschemas.org" + }, + "rdfs:comment": "A role played by the BioChemEntity within a biological context.", + "rdfs:label": "biologicalRole", + "schema:domainIncludes": { + "@id": "schema:BioChemEntity" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:DefinedTerm" + } + }, + { + "@id": "schema:area", + "@type": "rdf:Property", + "rdfs:comment": "The area within which users can expect to reach the broadcast service.", + "rdfs:label": "area", + "schema:domainIncludes": { + "@id": "schema:BroadcastService" + }, + "schema:rangeIncludes": { + "@id": "schema:Place" + }, + "schema:supersededBy": { + "@id": "schema:serviceArea" + } + }, + { + "@id": "schema:toLocation", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of location. The final location of the object or the agent after the action.", + "rdfs:label": "toLocation", + "rdfs:subPropertyOf": { + "@id": "schema:location" + }, + "schema:domainIncludes": [ + { + "@id": "schema:InsertAction" + }, + { + "@id": "schema:ExerciseAction" + }, + { + "@id": "schema:TransferAction" + }, + { + "@id": "schema:MoveAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Place" + } + }, + { + "@id": "schema:UserInteraction", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserInteraction", + "rdfs:subClassOf": { + "@id": "schema:Event" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:UserBlocks", + "@type": "rdfs:Class", + "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", + "rdfs:label": "UserBlocks", + "rdfs:subClassOf": { + "@id": "schema:UserInteraction" + }, + "schema:supersededBy": { + "@id": "schema:InteractionCounter" + } + }, + { + "@id": "schema:Nonprofit501c22", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.", + "rdfs:label": "Nonprofit501c22", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:VideoGameSeries", + "@type": "rdfs:Class", + "rdfs:comment": "A video game series.", + "rdfs:label": "VideoGameSeries", + "rdfs:subClassOf": { + "@id": "schema:CreativeWorkSeries" + } + }, + { + "@id": "schema:CT", + "@type": "schema:MedicalImagingTechnique", + "rdfs:comment": "X-ray computed tomography imaging.", + "rdfs:label": "CT", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:busNumber", + "@type": "rdf:Property", + "rdfs:comment": "The unique identifier for the bus.", + "rdfs:label": "busNumber", + "schema:domainIncludes": { + "@id": "schema:BusTrip" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:productSupported", + "@type": "rdf:Property", + "rdfs:comment": "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").", + "rdfs:label": "productSupported", + "schema:domainIncludes": { + "@id": "schema:ContactPoint" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Text" + }, + { + "@id": "schema:Product" + } + ] + }, + { + "@id": "schema:validIn", + "@type": "rdf:Property", + "rdfs:comment": "The geographic area where a permit or similar thing is valid.", + "rdfs:label": "validIn", + "schema:domainIncludes": [ + { + "@id": "schema:EducationalOccupationalCredential" + }, + { + "@id": "schema:Permit" + } + ], + "schema:rangeIncludes": { + "@id": "schema:AdministrativeArea" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1779" + } + }, + { + "@id": "schema:iso6523Code", + "@type": "rdf:Property", + "rdfs:comment": "An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ", + "rdfs:label": "iso6523Code", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2915" + } + }, + { + "@id": "schema:MisconceptionsHealthAspect", + "@type": "schema:HealthAspectEnumeration", + "rdfs:comment": "Content about common misconceptions and myths that are related to a topic.", + "rdfs:label": "MisconceptionsHealthAspect", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2374" + } + }, + { + "@id": "schema:collection", + "@type": "rdf:Property", + "rdfs:comment": "A sub property of object. The collection target of the action.", + "rdfs:label": "collection", + "rdfs:subPropertyOf": { + "@id": "schema:object" + }, + "schema:domainIncludes": { + "@id": "schema:UpdateAction" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + }, + "schema:supersededBy": { + "@id": "schema:targetCollection" + } + }, + { + "@id": "schema:hasPart", + "@type": "rdf:Property", + "rdfs:comment": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).", + "rdfs:label": "hasPart", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:inverseOf": { + "@id": "schema:isPartOf" + }, + "schema:rangeIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex" + } + }, + { + "@id": "schema:Nonprofit501c17", + "@type": "schema:USNonprofitType", + "rdfs:comment": "Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.", + "rdfs:label": "Nonprofit501c17", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2543" + } + }, + { + "@id": "schema:Quantity", + "@type": "rdfs:Class", + "rdfs:comment": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.", + "rdfs:label": "Quantity", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + } + }, + { + "@id": "schema:codeRepository", + "@type": "rdf:Property", + "rdfs:comment": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).", + "rdfs:label": "codeRepository", + "schema:domainIncludes": { + "@id": "schema:SoftwareSourceCode" + }, + "schema:rangeIncludes": { + "@id": "schema:URL" + } + }, + { + "@id": "schema:department", + "@type": "rdf:Property", + "rdfs:comment": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.", + "rdfs:label": "department", + "schema:domainIncludes": { + "@id": "schema:Organization" + }, + "schema:rangeIncludes": { + "@id": "schema:Organization" + } + }, + { + "@id": "schema:streetAddress", + "@type": "rdf:Property", + "rdfs:comment": "The street address. For example, 1600 Amphitheatre Pkwy.", + "rdfs:label": "streetAddress", + "schema:domainIncludes": { + "@id": "schema:PostalAddress" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Distance", + "@type": "rdfs:Class", + "rdfs:comment": "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.", + "rdfs:label": "Distance", + "rdfs:subClassOf": { + "@id": "schema:Quantity" + } + }, + { + "@id": "schema:StatisticalPopulation", + "@type": "rdfs:Class", + "rdfs:comment": "A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints. The property [[populationType]] is used to specify the type. Any property that can be used on instances of that type can appear on the statistical population. For example, a [[StatisticalPopulation]] representing all [[Person]]s with a [[homeLocation]] of East Podunk California, would be described by applying the appropriate [[homeLocation]] and [[populationType]] properties to a [[StatisticalPopulation]] item that stands for that set of people.\nThe properties [[numConstraints]] and [[constrainingProperty]] are used to specify which of the populations properties are used to specify the population. Note that the sense of \"population\" used here is the general sense of a statistical\npopulation, and does not imply that the population consists of people. For example, a [[populationType]] of [[Event]] or [[NewsArticle]] could be used. See also [[Observation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ", + "rdfs:label": "StatisticalPopulation", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2291" + } + }, + { + "@id": "schema:suggestedGender", + "@type": "rdf:Property", + "rdfs:comment": "The suggested gender of the intended person or audience, for example \"male\", \"female\", or \"unisex\".", + "rdfs:label": "suggestedGender", + "schema:domainIncludes": [ + { + "@id": "schema:PeopleAudience" + }, + { + "@id": "schema:SizeSpecification" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:GenderType" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:broadcastFrequencyValue", + "@type": "rdf:Property", + "rdfs:comment": "The frequency in MHz for a particular broadcast.", + "rdfs:label": "broadcastFrequencyValue", + "schema:domainIncludes": { + "@id": "schema:BroadcastFrequencySpecification" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:QuantitativeValue" + } + ], + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/1004" + } + }, + { + "@id": "schema:accountOverdraftLimit", + "@type": "rdf:Property", + "rdfs:comment": "An overdraft is an extension of credit from a lending institution when an account reaches zero. An overdraft allows the individual to continue withdrawing money even if the account has no funds in it. Basically the bank allows people to borrow a set amount of money.", + "rdfs:label": "accountOverdraftLimit", + "schema:domainIncludes": { + "@id": "schema:BankAccount" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MonetaryAmount" + }, + "schema:source": [ + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + }, + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + } + ] + }, + { + "@id": "schema:returnFees", + "@type": "rdf:Property", + "rdfs:comment": "The type of return fees for purchased products (for any return reason)", + "rdfs:label": "returnFees", + "schema:domainIncludes": { + "@id": "schema:MerchantReturnPolicy" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:ReturnFeesEnumeration" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2288" + } + }, + { + "@id": "schema:faxNumber", + "@type": "rdf:Property", + "rdfs:comment": "The fax number.", + "rdfs:label": "faxNumber", + "schema:domainIncludes": [ + { + "@id": "schema:ContactPoint" + }, + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Place" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:error", + "@type": "rdf:Property", + "rdfs:comment": "For failed actions, more information on the cause of the failure.", + "rdfs:label": "error", + "schema:domainIncludes": { + "@id": "schema:Action" + }, + "schema:rangeIncludes": { + "@id": "schema:Thing" + } + }, + { + "@id": "schema:appliesToDeliveryMethod", + "@type": "rdf:Property", + "rdfs:comment": "The delivery method(s) to which the delivery charge or payment charge specification applies.", + "rdfs:label": "appliesToDeliveryMethod", + "schema:domainIncludes": [ + { + "@id": "schema:PaymentChargeSpecification" + }, + { + "@id": "schema:DeliveryChargeSpecification" + } + ], + "schema:rangeIncludes": { + "@id": "schema:DeliveryMethod" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:temporalCoverage", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "dcterms:temporal" + }, + "rdfs:comment": "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.", + "rdfs:label": "temporalCoverage", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:DateTime" + }, + { + "@id": "schema:Text" + } + ] + }, + { + "@id": "schema:mealService", + "@type": "rdf:Property", + "rdfs:comment": "Description of the meals that will be provided or available for purchase.", + "rdfs:label": "mealService", + "schema:domainIncludes": { + "@id": "schema:Flight" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:Episode", + "@type": "rdfs:Class", + "rdfs:comment": "A media episode (e.g. TV, radio, video game) which can be part of a series or season.", + "rdfs:label": "Episode", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:downPayment", + "@type": "rdf:Property", + "rdfs:comment": "a type of payment made in cash during the onset of the purchase of an expensive good/service. The payment typically represents only a percentage of the full purchase price.", + "rdfs:label": "downPayment", + "schema:domainIncludes": { + "@id": "schema:RepaymentSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Number" + }, + { + "@id": "schema:MonetaryAmount" + } + ], + "schema:source": [ + { + "@id": "https://github.com/schemaorg/schemaorg/issues/1253" + }, + { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + ] + }, + { + "@id": "schema:isLiveBroadcast", + "@type": "rdf:Property", + "rdfs:comment": "True if the broadcast is of a live event.", + "rdfs:label": "isLiveBroadcast", + "schema:domainIncludes": { + "@id": "schema:BroadcastEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:Boolean" + } + }, + { + "@id": "schema:InstallAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of installing an application.", + "rdfs:label": "InstallAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:contributor", + "@type": "rdf:Property", + "rdfs:comment": "A secondary contributor to the CreativeWork or Event.", + "rdfs:label": "contributor", + "schema:domainIncludes": [ + { + "@id": "schema:Event" + }, + { + "@id": "schema:CreativeWork" + } + ], + "schema:rangeIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:Person" + } + ] + }, + { + "@id": "schema:attendees", + "@type": "rdf:Property", + "rdfs:comment": "A person attending the event.", + "rdfs:label": "attendees", + "schema:domainIncludes": { + "@id": "schema:Event" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Person" + }, + { + "@id": "schema:Organization" + } + ], + "schema:supersededBy": { + "@id": "schema:attendee" + } + }, + { + "@id": "schema:possibleTreatment", + "@type": "rdf:Property", + "rdfs:comment": "A possible treatment to address this condition, sign or symptom.", + "rdfs:label": "possibleTreatment", + "schema:domainIncludes": [ + { + "@id": "schema:MedicalCondition" + }, + { + "@id": "schema:MedicalSignOrSymptom" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:MedicalTherapy" + } + }, + { + "@id": "schema:availableAtOrFrom", + "@type": "rdf:Property", + "rdfs:comment": "The place(s) from which the offer can be obtained (e.g. store locations).", + "rdfs:label": "availableAtOrFrom", + "rdfs:subPropertyOf": { + "@id": "schema:areaServed" + }, + "schema:domainIncludes": [ + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Place" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:availableFrom", + "@type": "rdf:Property", + "rdfs:comment": "When the item is available for pickup from the store, locker, etc.", + "rdfs:label": "availableFrom", + "schema:domainIncludes": { + "@id": "schema:DeliveryEvent" + }, + "schema:rangeIncludes": { + "@id": "schema:DateTime" + } + }, + { + "@id": "schema:VitalSign", + "@type": "rdfs:Class", + "rdfs:comment": "Vital signs are measures of various physiological functions in order to assess the most basic body functions.", + "rdfs:label": "VitalSign", + "rdfs:subClassOf": { + "@id": "schema:MedicalSign" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:TransformedContent", + "@type": "schema:MediaManipulationRatingEnumeration", + "rdfs:comment": "Content coded 'transformed content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'transformed content': or all of the video has been manipulated to transform the footage itself. This category includes using tools like the Adobe Suite to change the speed of the video, add or remove visual elements or dub audio. Deepfakes are also a subset of transformation.\n\nFor an [[ImageObject]] to be transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[ImageObject]] with embedded text to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[AudioObject]] to be 'transformed content': Part or all of the audio has been manipulated to alter the words or sounds, or the audio has been synthetically generated, such as to create a sound-alike voice.\n", + "rdfs:label": "TransformedContent", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:associatedMediaReview", + "@type": "rdf:Property", + "rdfs:comment": "An associated [[MediaReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].", + "rdfs:label": "associatedMediaReview", + "rdfs:subPropertyOf": { + "@id": "schema:associatedReview" + }, + "schema:domainIncludes": { + "@id": "schema:Review" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Review" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2450" + } + }, + { + "@id": "schema:medicalAudience", + "@type": "rdf:Property", + "rdfs:comment": "Medical audience for page.", + "rdfs:label": "medicalAudience", + "schema:domainIncludes": { + "@id": "schema:MedicalWebPage" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:MedicalAudienceType" + }, + { + "@id": "schema:MedicalAudience" + } + ] + }, + { + "@id": "schema:partOfOrder", + "@type": "rdf:Property", + "rdfs:comment": "The overall order the items in this delivery were included in.", + "rdfs:label": "partOfOrder", + "schema:domainIncludes": { + "@id": "schema:ParcelDelivery" + }, + "schema:rangeIncludes": { + "@id": "schema:Order" + } + }, + { + "@id": "schema:CommentAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of generating a comment about a subject.", + "rdfs:label": "CommentAction", + "rdfs:subClassOf": { + "@id": "schema:CommunicateAction" + } + }, + { + "@id": "schema:exerciseType", + "@type": "rdf:Property", + "rdfs:comment": "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.", + "rdfs:label": "exerciseType", + "schema:domainIncludes": [ + { + "@id": "schema:ExerciseAction" + }, + { + "@id": "schema:ExercisePlan" + } + ], + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:identifier", + "@type": "rdf:Property", + "owl:equivalentProperty": { + "@id": "dcterms:identifier" + }, + "rdfs:comment": "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n ", + "rdfs:label": "identifier", + "schema:domainIncludes": { + "@id": "schema:Thing" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:URL" + }, + { + "@id": "schema:Text" + }, + { + "@id": "schema:PropertyValue" + } + ] + }, + { + "@id": "schema:EventMovedOnline", + "@type": "schema:EventStatusType", + "rdfs:comment": "Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online.", + "rdfs:label": "EventMovedOnline" + }, + { + "@id": "schema:event", + "@type": "rdf:Property", + "rdfs:comment": "Upcoming or past event associated with this place, organization, or action.", + "rdfs:label": "event", + "schema:domainIncludes": [ + { + "@id": "schema:Organization" + }, + { + "@id": "schema:LeaveAction" + }, + { + "@id": "schema:JoinAction" + }, + { + "@id": "schema:InformAction" + }, + { + "@id": "schema:Place" + }, + { + "@id": "schema:PlayAction" + }, + { + "@id": "schema:InviteAction" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Event" + } + }, + { + "@id": "schema:billingStart", + "@type": "rdf:Property", + "rdfs:comment": "Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property.", + "rdfs:label": "billingStart", + "schema:domainIncludes": { + "@id": "schema:UnitPriceSpecification" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Number" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:WatchAction", + "@type": "rdfs:Class", + "rdfs:comment": "The act of consuming dynamic/moving visual content.", + "rdfs:label": "WatchAction", + "rdfs:subClassOf": { + "@id": "schema:ConsumeAction" + } + }, + { + "@id": "schema:followup", + "@type": "rdf:Property", + "rdfs:comment": "Typical or recommended followup care after the procedure is performed.", + "rdfs:label": "followup", + "schema:domainIncludes": { + "@id": "schema:MedicalProcedure" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:NoteDigitalDocument", + "@type": "rdfs:Class", + "rdfs:comment": "A file containing a note, primarily for the author.", + "rdfs:label": "NoteDigitalDocument", + "rdfs:subClassOf": { + "@id": "schema:DigitalDocument" + } + }, + { + "@id": "schema:PaymentService", + "@type": "rdfs:Class", + "rdfs:comment": "A Service to transfer funds from a person or organization to a beneficiary person or organization.", + "rdfs:label": "PaymentService", + "rdfs:subClassOf": { + "@id": "schema:FinancialProduct" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO" + } + }, + { + "@id": "schema:Sculpture", + "@type": "rdfs:Class", + "rdfs:comment": "A piece of sculpture.", + "rdfs:label": "Sculpture", + "rdfs:subClassOf": { + "@id": "schema:CreativeWork" + } + }, + { + "@id": "schema:BasicIncome", + "@type": "schema:GovernmentBenefitsType", + "rdfs:comment": "BasicIncome: this is a benefit for basic income.", + "rdfs:label": "BasicIncome", + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2534" + } + }, + { + "@id": "schema:permitAudience", + "@type": "rdf:Property", + "rdfs:comment": "The target audience for this permit.", + "rdfs:label": "permitAudience", + "schema:domainIncludes": { + "@id": "schema:Permit" + }, + "schema:rangeIncludes": { + "@id": "schema:Audience" + } + }, + { + "@id": "schema:Action", + "@type": "rdfs:Class", + "rdfs:comment": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).", + "rdfs:label": "Action", + "rdfs:subClassOf": { + "@id": "schema:Thing" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass" + } + }, + { + "@id": "schema:CompletedActionStatus", + "@type": "schema:ActionStatusType", + "rdfs:comment": "An action that has already taken place.", + "rdfs:label": "CompletedActionStatus" + }, + { + "@id": "schema:serialNumber", + "@type": "rdf:Property", + "rdfs:comment": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.", + "rdfs:label": "serialNumber", + "rdfs:subPropertyOf": { + "@id": "schema:identifier" + }, + "schema:domainIncludes": [ + { + "@id": "schema:IndividualProduct" + }, + { + "@id": "schema:Demand" + }, + { + "@id": "schema:Offer" + } + ], + "schema:rangeIncludes": { + "@id": "schema:Text" + }, + "schema:source": { + "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms" + } + }, + { + "@id": "schema:transmissionMethod", + "@type": "rdf:Property", + "rdfs:comment": "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.", + "rdfs:label": "transmissionMethod", + "schema:domainIncludes": { + "@id": "schema:InfectiousDisease" + }, + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:reviewBody", + "@type": "rdf:Property", + "rdfs:comment": "The actual body of the review.", + "rdfs:label": "reviewBody", + "schema:domainIncludes": { + "@id": "schema:Review" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + }, + { + "@id": "schema:PriceComponentTypeEnumeration", + "@type": "rdfs:Class", + "rdfs:comment": "Enumerates different price components that together make up the total price for an offered product.", + "rdfs:label": "PriceComponentTypeEnumeration", + "rdfs:subClassOf": { + "@id": "schema:Enumeration" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2689" + } + }, + { + "@id": "schema:boardingPolicy", + "@type": "rdf:Property", + "rdfs:comment": "The type of boarding policy used by the airline (e.g. zone-based or group-based).", + "rdfs:label": "boardingPolicy", + "schema:domainIncludes": [ + { + "@id": "schema:Flight" + }, + { + "@id": "schema:Airline" + } + ], + "schema:rangeIncludes": { + "@id": "schema:BoardingPolicyType" + } + }, + { + "@id": "schema:Withdrawn", + "@type": "schema:MedicalStudyStatus", + "rdfs:comment": "Withdrawn.", + "rdfs:label": "Withdrawn", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:video", + "@type": "rdf:Property", + "rdfs:comment": "An embedded video object.", + "rdfs:label": "video", + "schema:domainIncludes": { + "@id": "schema:CreativeWork" + }, + "schema:rangeIncludes": [ + { + "@id": "schema:Clip" + }, + { + "@id": "schema:VideoObject" + } + ] + }, + { + "@id": "schema:FloorPlan", + "@type": "rdfs:Class", + "rdfs:comment": "A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information (room counts, sizes, layout diagrams) and offers for rental or sale. In typical use, some [[ApartmentComplex]] has an [[accommodationFloorPlan]] which is a [[FloorPlan]]. A FloorPlan is always in the context of a particular place, either a larger [[ApartmentComplex]] or a single [[Apartment]]. The visual/spatial aspects of a floor plan (i.e. room layout, [see wikipedia](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. ", + "rdfs:label": "FloorPlan", + "rdfs:subClassOf": { + "@id": "schema:Intangible" + }, + "schema:isPartOf": { + "@id": "https://pending.schema.org" + }, + "schema:source": { + "@id": "https://github.com/schemaorg/schemaorg/issues/2373" + } + }, + { + "@id": "schema:ActionStatusType", + "@type": "rdfs:Class", + "rdfs:comment": "The status of an Action.", + "rdfs:label": "ActionStatusType", + "rdfs:subClassOf": { + "@id": "schema:StatusEnumeration" + } + }, + { + "@id": "schema:Nose", + "@type": "schema:PhysicalExam", + "rdfs:comment": "Nose function assessment with clinical examination.", + "rdfs:label": "Nose", + "schema:isPartOf": { + "@id": "https://health-lifesci.schema.org" + } + }, + { + "@id": "schema:codeSampleType", + "@type": "rdf:Property", + "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", + "rdfs:label": "codeSampleType", + "schema:domainIncludes": { + "@id": "schema:SoftwareSourceCode" + }, + "schema:rangeIncludes": { + "@id": "schema:Text" + } + } + ] +} \ No newline at end of file diff --git a/internal/summoner/acquire/jsonutils.go b/internal/summoner/acquire/jsonutils.go index 60342455..5688ba4a 100644 --- a/internal/summoner/acquire/jsonutils.go +++ b/internal/summoner/acquire/jsonutils.go @@ -148,15 +148,41 @@ func fixContextArray(jsonld string, option config.ContextOption) (string, error) // for details func fixId(jsonld string) (string, error) { var err error - jsonIdentifier := gjson.Get(jsonld, "@id").String() originalBase := gjson.Get(jsonld, "@context.@base").String() - idUrl, err := url.Parse(jsonIdentifier) - if originalBase == "" && idUrl.Scheme == "" { // we have a relative url and no base in the context - log.Trace("Transforming id: ", jsonIdentifier, " to file:// url because it is relative") - jsonld, err = sjson.Set(jsonld, "@id", "file://" + jsonIdentifier) - } else { - log.Trace("JSON-LD context base or IRI id found: ", originalBase, "ID: ", idUrl) + if originalBase != "" { // if we have a context base, there is no need to do any of this + return jsonld, err + } + topLevelType := gjson.Get(jsonld, "@type").String() + var selector string + var formatter func(index int) string + if topLevelType == "Dataset" { + selector = "@id" + formatter = func(index int) string { return "@id"} + } else if topLevelType == "ItemList" { + selector = "itemListElement.#.item.@id" + formatter = func(index int) string { return fmt.Sprintf("itemListElement.%v.item.@id", index) } + } else { // we don't know how to fix any of these other things + log.Trace("Found a top-level type of ", topLevelType, " in this jsonld document") + return jsonld, err } + jsonIdentifiers := gjson.Get(jsonld, selector) + index := 0 + jsonIdentifiers.ForEach(func(key, jsonResult gjson.Result) bool { + jsonIdentifier := jsonResult.String() + idUrl, idErr := url.Parse(jsonIdentifier) + if idUrl.Scheme == "" { // we have a relative url and no base in the context + log.Trace("Transforming id: ", jsonIdentifier, " to file:// url because it is relative") + jsonld, idErr = sjson.Set(jsonld, formatter(index), "file://" + jsonIdentifier) + } else { + log.Trace("JSON-LD context base or IRI id found: ", originalBase, "ID: ", idUrl) + } + if idErr != nil { + err = idErr + return false + } + index++ + return true + }) return jsonld, err } diff --git a/internal/summoner/acquire/jsonutils_test.go b/internal/summoner/acquire/jsonutils_test.go index 85e43501..ef800d20 100644 --- a/internal/summoner/acquire/jsonutils_test.go +++ b/internal/summoner/acquire/jsonutils_test.go @@ -409,6 +409,7 @@ func TestIdIRIFix(t *testing.T) { "@vocab": "https://schema.org/", "@base": "http://valid-json.com" }, + "@type": "Dataset", "@id": "some_cool_guid" } ` @@ -423,6 +424,7 @@ func TestIdIRIFix(t *testing.T) { "@context": { "@vocab": "https://schema.org/" }, + "@type": "Dataset", "@id": "http://www.test.com/some_cool_guid" } ` @@ -437,6 +439,7 @@ func TestIdIRIFix(t *testing.T) { "@context": { "@vocab": "https://schema.org/" }, + "@type": "Dataset", "@id": "some_cool_guid" } ` @@ -445,6 +448,7 @@ func TestIdIRIFix(t *testing.T) { "@context": { "@vocab": "https://schema.org/" }, + "@type": "Dataset", "@id": "file://some_cool_guid" } ` @@ -453,6 +457,68 @@ func TestIdIRIFix(t *testing.T) { assert.Equal(t, expected, result) }) + t.Run("It makes the ids in a list of datasets into file:// urls if there is no base in the context and the ids are relative", func(t *testing.T) { + var testJson = ` + { + "@context": { + "@vocab": "https://schema.org/" + }, + "@type":"ItemList", + "@id": "Some id we do not need to worry about" + "itemListElement": + [ + { + "@type": "ListItem", + "@id": "A list item id, perhaps" + "item": { + "@type": "Dataset", + "@id": "some_cool_guid" + } + }, + { + "@type": "ListItem", + "@id": "A list item id, perhaps" + "item": { + "@type": "Dataset", + "@id": "another_cool_guid" + } + }, + ] + } + ` + var expected = ` + { + "@context": { + "@vocab": "https://schema.org/" + }, + "@type":"ItemList", + "@id": "Some id we do not need to worry about" + "itemListElement": + [ + { + "@type": "ListItem", + "@id": "A list item id, perhaps" + "item": { + "@type": "Dataset", + "@id": "file://some_cool_guid" + } + }, + { + "@type": "ListItem", + "@id": "A list item id, perhaps" + "item": { + "@type": "Dataset", + "@id": "file://another_cool_guid" + } + }, + ] + } + ` + result, err := fixId(testJson) + assert.Nil(t, err) + assert.Equal(t, expected, result) + }) + t.Run("It does not make changes if there is a base in the context and the id is a full IRI", func(t *testing.T) { var testJson = ` { @@ -460,6 +526,7 @@ func TestIdIRIFix(t *testing.T) { "@vocab": "https://schema.org/", "@base": "http://valid-json.com" }, + "@type": "Dataset", "@id": "http://www.test.com/some_cool_guid" } ` From dcaee8e26cdd28dd1714329caff00e4c5ab5fcb1 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 11 Apr 2023 07:13:30 -0700 Subject: [PATCH 07/55] #182 aws issues. --- go.mod | 23 +++++++-------- go.sum | 40 +++++++++++++++++--------- internal/check/check.go | 24 +++++++++++++--- internal/summoner/acquire/jsonutils.go | 4 +-- internal/summoner/acquire/prov.go | 2 +- 5 files changed, 60 insertions(+), 33 deletions(-) diff --git a/go.mod b/go.mod index 2325d51c..39ae9d70 100644 --- a/go.mod +++ b/go.mod @@ -16,10 +16,10 @@ require ( github.com/gosuri/uiprogress v0.0.1 github.com/knakk/rdf v0.0.0-20190304171630-8521bf4c5042 github.com/mafredri/cdp v0.32.0 - github.com/minio/minio-go/v7 v7.0.15 + github.com/minio/minio-go/v7 v7.0.51 github.com/ohler55/ojg v1.14.5 github.com/piprate/json-gold v0.5.0 - github.com/rs/xid v1.2.1 + github.com/rs/xid v1.4.0 github.com/schollz/progressbar/v3 v3.8.3 github.com/spf13/cobra v1.5.0 github.com/spf13/viper v1.12.0 @@ -28,7 +28,7 @@ require ( github.com/xitongsys/parquet-go v1.6.0 github.com/xitongsys/parquet-go-source v0.0.0-20211010230925-397910c5e371 go.etcd.io/bbolt v1.3.6 - golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 + golang.org/x/crypto v0.6.0 ) require ( @@ -39,7 +39,7 @@ require ( github.com/chromedp/cdproto v0.0.0-20210122124816-7a656c010d57 // indirect github.com/chromedp/sysutil v1.0.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/dustin/go-humanize v1.0.0 // indirect + github.com/dustin/go-humanize v1.0.1 // indirect github.com/fsnotify/fsnotify v1.5.4 // indirect github.com/gobwas/httphead v0.1.0 // indirect github.com/gobwas/pool v0.2.1 // indirect @@ -48,7 +48,7 @@ require ( github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/golang/snappy v0.0.3 // indirect - github.com/google/uuid v1.2.0 // indirect + github.com/google/uuid v1.3.0 // indirect github.com/googleapis/gax-go/v2 v2.4.0 // indirect github.com/gorilla/websocket v1.4.2 // indirect github.com/gosuri/uilive v0.0.4 // indirect @@ -57,17 +57,16 @@ require ( github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect - github.com/klauspost/compress v1.15.6 // indirect - github.com/klauspost/cpuid v1.3.1 // indirect + github.com/klauspost/compress v1.16.0 // indirect + github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/magiconair/properties v1.8.6 // indirect github.com/mailru/easyjson v0.7.7 // indirect github.com/mattn/go-isatty v0.0.14 // indirect github.com/mattn/go-runewidth v0.0.13 // indirect github.com/meilisearch/meilisearch-go v0.21.1 // indirect - github.com/minio/md5-simd v1.1.0 // indirect - github.com/minio/sha256-simd v0.1.1 // indirect + github.com/minio/md5-simd v1.1.2 // indirect + github.com/minio/sha256-simd v1.0.0 // indirect github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect - github.com/mitchellh/go-homedir v1.1.0 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect @@ -94,7 +93,7 @@ require ( google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect google.golang.org/grpc v1.46.2 // indirect google.golang.org/protobuf v1.28.0 // indirect - gopkg.in/ini.v1 v1.66.4 // indirect + gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) @@ -107,7 +106,7 @@ require ( github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13 github.com/orandin/lumberjackrus v1.0.1 github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4 - github.com/sirupsen/logrus v1.8.1 + github.com/sirupsen/logrus v1.9.0 github.com/temoto/robotstxt v1.1.2 github.com/tidwall/gjson v1.14.4 github.com/tidwall/sjson v1.2.5 diff --git a/go.sum b/go.sum index 6277ca38..c63c30d5 100644 --- a/go.sum +++ b/go.sum @@ -174,8 +174,9 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= @@ -306,8 +307,9 @@ github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLe github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.2.0 h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs= github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= @@ -392,11 +394,15 @@ github.com/klauspost/compress v1.9.7/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0 github.com/klauspost/compress v1.10.5/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.15.6 h1:6D9PcO8QWu0JyaQ2zUMmu16T1T+zjjEpP91guRsvDfY= github.com/klauspost/compress v1.15.6/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= +github.com/klauspost/compress v1.16.0 h1:iULayQNOReoYUe+1qtKOqw9CwJv3aNQu8ivo7lw1HU4= +github.com/klauspost/compress v1.16.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= -github.com/klauspost/cpuid v1.3.1 h1:5JNjFYYQrZeKRJ0734q51WCEEn2huer72Dc7K+R/b6s= github.com/klauspost/cpuid v1.3.1/go.mod h1:bYW4mA6ZgKPob1/Dlai2LviZJO7KGI3uoWLd42rAQw4= +github.com/klauspost/cpuid/v2 v2.0.1/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/klauspost/cpuid/v2 v2.0.4/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= +github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/kljensen/snowball v0.6.0/go.mod h1:27N7E8fVU5H68RlUmnWwZCfxgt4POBJfENGMvNRhldw= github.com/knakk/rdf v0.0.0-20190304171630-8521bf4c5042 h1:Vzdm5hdlLdpJOKK+hKtkV5u7xGZmNW6aUBjGcTfwx84= github.com/knakk/rdf v0.0.0-20190304171630-8521bf4c5042/go.mod h1:fYE0718xXI13XMYLc6iHtvXudfyCGMsZ9hxSM1Ommpg= @@ -440,19 +446,21 @@ github.com/meilisearch/meilisearch-go v0.21.1 h1:Ns+R38TPitUKbz8hbg3ENzsR9J91Lpx github.com/meilisearch/meilisearch-go v0.21.1/go.mod h1:XmVwi0ZyCdkEQ4cQvA3nh5TT0UByux4kBEWs4WUEp20= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= -github.com/minio/md5-simd v1.1.0 h1:QPfiOqlZH+Cj9teu0t9b1nTBfPbyTl16Of5MeuShdK4= github.com/minio/md5-simd v1.1.0/go.mod h1:XpBqgZULrMYD3R+M28PcmP0CkI7PEMzB3U77ZrKZ0Gw= +github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= +github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= github.com/minio/minio-go v6.0.14+incompatible/go.mod h1:7guKYtitv8dktvNUGrhzmNlA5wrAABTQXCoesZdFQO8= -github.com/minio/minio-go/v7 v7.0.15 h1:r9/NhjJ+nXYrIYvbObhvc1wPj3YH1iDpJzz61uRKLyY= github.com/minio/minio-go/v7 v7.0.15/go.mod h1:pUV0Pc+hPd1nccgmzQF/EXh48l/Z/yps6QPF1aaie4g= -github.com/minio/sha256-simd v0.1.1 h1:5QHSlgo3nt5yKOJrC7W8w7X+NFl8cMPZm96iu8kKUJU= +github.com/minio/minio-go/v7 v7.0.51 h1:eSewrwc23TqUDEH8aw8Bwp4f+JDdozRrPWcKR7DZhmY= +github.com/minio/minio-go/v7 v7.0.51/go.mod h1:IbbodHyjUAguneyucUaahv+VMNs/EOTV9du7A7/Z3HU= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= +github.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g= +github.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db h1:62I3jR2EmQ4l5rM/4FEfDWcRD+abF5XlKShorW5LRoQ= github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= @@ -529,8 +537,9 @@ github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJ github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k= -github.com/rs/xid v1.2.1 h1:mhH9Nq+C1fY2l1XIpgxIiUOfNpRBYH1kKcr+qfKgjRc= github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= +github.com/rs/xid v1.4.0 h1:qd7wPTDkN6KQx2VmMBLrpHkiyQwgFXRnkOLacUiaSNY= +github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -543,8 +552,9 @@ github.com/scylladb/termtables v0.0.0-20191203121021-c4c0b6d42ff4/go.mod h1:C1a7 github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= +github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= @@ -670,8 +680,8 @@ golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5 golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA= -golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.6.0 h1:qfktjS5LUO+fFKeJXZ+ikTRijMmljikvG68fpMMruSc= +golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -878,6 +888,8 @@ golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= @@ -1148,8 +1160,8 @@ gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMy gopkg.in/ini.v1 v1.57.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.63.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.66.4 h1:SsAcf+mM7mRZo2nJNGt8mZCjG8ZRaNGMURJw7BsIST4= -gopkg.in/ini.v1 v1.66.4/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= +gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/jcmturner/aescts.v1 v1.0.1/go.mod h1:nsR8qBOg+OucoIW+WMhB3GspUQXq9XorLnQb9XtvcOo= gopkg.in/jcmturner/dnsutils.v1 v1.0.1/go.mod h1:m3v+5svpVOhtFAP/wSz+yzh4Mc0Fg7eRhxkJMWSIz9Q= gopkg.in/jcmturner/goidentity.v3 v3.0.0/go.mod h1:oG2kH0IvSYNIu80dVAyu/yoefjq1mNfM5bm88whjWx4= diff --git a/internal/check/check.go b/internal/check/check.go index d5a2dba2..de0a1c0d 100644 --- a/internal/check/check.go +++ b/internal/check/check.go @@ -12,16 +12,29 @@ import ( // ConnCheck check the connections with a list buckets call func ConnCheck(mc *minio.Client) error { - _, err := mc.ListBuckets(context.Background()) + buckets, err := mc.ListBuckets(context.Background()) + log.Trace(buckets) return err } +func isExists(value string, data []minio.BucketInfo) (exists bool) { + + for _, search := range data { + if search.Name == value { + return true + } + } + return false +} + // Buckets checks the setup func Buckets(mc *minio.Client, bucket string) error { var err error // for i := range bl { - found, err := mc.BucketExists(context.Background(), bucket) + //found, err := mc.BucketExists(context.Background(), bucket) // returns a redirect if region is not correct + buckets, err := mc.ListBuckets(context.Background()) + found := isExists(bucket, buckets) if err != nil { return err } @@ -102,13 +115,16 @@ func PreflightChecks(mc *minio.Client, v1 *viper.Viper) error { // Validate Minio access bucketName, err := config.GetBucketName(v1) + if err != nil { + log.Error("missing bucket name.", err) + return err + } err = ConnCheck(mc) if err != nil { log.Error("Connection issue, make sure the minio server is running and accessible.", err) return err } - - // Check our bucket is ready + //Check our bucket is ready err = Buckets(mc, bucketName) if err != nil { log.Error("Can not find bucket.", err) diff --git a/internal/summoner/acquire/jsonutils.go b/internal/summoner/acquire/jsonutils.go index 60342455..35f7fe6f 100644 --- a/internal/summoner/acquire/jsonutils.go +++ b/internal/summoner/acquire/jsonutils.go @@ -153,7 +153,7 @@ func fixId(jsonld string) (string, error) { idUrl, err := url.Parse(jsonIdentifier) if originalBase == "" && idUrl.Scheme == "" { // we have a relative url and no base in the context log.Trace("Transforming id: ", jsonIdentifier, " to file:// url because it is relative") - jsonld, err = sjson.Set(jsonld, "@id", "file://" + jsonIdentifier) + jsonld, err = sjson.Set(jsonld, "@id", "file://"+jsonIdentifier) } else { log.Trace("JSON-LD context base or IRI id found: ", originalBase, "ID: ", idUrl) } @@ -380,7 +380,7 @@ func Upload(v1 *viper.Viper, mc *minio.Client, bucketName string, site string, u // ProcessJson the file with FPutObject _, err = mc.PutObject(context.Background(), bucketName, objectName, b, int64(b.Len()), minio.PutObjectOptions{ContentType: contentType, UserMetadata: usermeta}) if err != nil { - log.Fatal(objectName, err) // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still. + log.Errorf("{s}: {s}", objectName, err) // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still. } log.Debug("Uploaded Bucket:", bucketName, " File:", objectName, "Size", int64(b.Len())) return sha, err diff --git a/internal/summoner/acquire/prov.go b/internal/summoner/acquire/prov.go index e8219dcd..cd491245 100644 --- a/internal/summoner/acquire/prov.go +++ b/internal/summoner/acquire/prov.go @@ -117,7 +117,7 @@ func StoreProvNG(v1 *viper.Viper, mc *minio.Client, k, sha, urlloc, objprefix st // Upload the file with FPutObject _, err = mc.PutObject(context.Background(), bucketName, objectName, b, int64(b.Len()), minio.PutObjectOptions{ContentType: contentType, UserMetadata: usermeta}) if err != nil { - log.Fatal(objectName, err) + log.Errorf("%w: %w", objectName, err) // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still. } From bd371613b62c101a868ff46d0f75454aec36bb1b Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 11 Apr 2023 07:24:35 -0700 Subject: [PATCH 08/55] #182 aws issues. #185 identifer is an array --- internal/common/identifier.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/common/identifier.go b/internal/common/identifier.go index 12de0217..47e3b546 100644 --- a/internal/common/identifier.go +++ b/internal/common/identifier.go @@ -62,7 +62,8 @@ func GetIdentifierByPath(jsonPath string, jsonld string) (interface{}, error) { // we need to sort the results aString := make([]string, len(ys)) for i, v := range ys { - aString[i] = v.(string) + aString[i] = fmt.Sprint(v) + } sort.SliceStable(aString, func(i, j int) bool { return aString[i] < aString[j] From fe42b4460c6457039a20d8439a4d4ba5f9a2f0e1 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 11 Apr 2023 07:28:53 -0700 Subject: [PATCH 09/55] #182 aws issues. #185 identifer is an array --- internal/summoner/acquire/jsonutils.go | 2 +- internal/summoner/acquire/prov.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/summoner/acquire/jsonutils.go b/internal/summoner/acquire/jsonutils.go index 35f7fe6f..10993072 100644 --- a/internal/summoner/acquire/jsonutils.go +++ b/internal/summoner/acquire/jsonutils.go @@ -380,7 +380,7 @@ func Upload(v1 *viper.Viper, mc *minio.Client, bucketName string, site string, u // ProcessJson the file with FPutObject _, err = mc.PutObject(context.Background(), bucketName, objectName, b, int64(b.Len()), minio.PutObjectOptions{ContentType: contentType, UserMetadata: usermeta}) if err != nil { - log.Errorf("{s}: {s}", objectName, err) // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still. + log.Errorf("%s: %s", objectName, err) // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still. } log.Debug("Uploaded Bucket:", bucketName, " File:", objectName, "Size", int64(b.Len())) return sha, err diff --git a/internal/summoner/acquire/prov.go b/internal/summoner/acquire/prov.go index cd491245..0e17cd80 100644 --- a/internal/summoner/acquire/prov.go +++ b/internal/summoner/acquire/prov.go @@ -117,7 +117,7 @@ func StoreProvNG(v1 *viper.Viper, mc *minio.Client, k, sha, urlloc, objprefix st // Upload the file with FPutObject _, err = mc.PutObject(context.Background(), bucketName, objectName, b, int64(b.Len()), minio.PutObjectOptions{ContentType: contentType, UserMetadata: usermeta}) if err != nil { - log.Errorf("%w: %w", objectName, err) + log.Errorf("%s: %s", objectName, err) // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still. } From ab2fc0f6fee08bcc16d1742a68b8769475b950b9 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Mon, 17 Apr 2023 11:19:16 -0700 Subject: [PATCH 10/55] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 5e333f9c..2251dc3e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v3.0.8 +v3.0.9 From 1e08c39fa78b033cb1d3a06da718c3f28f74debd Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 18 Apr 2023 09:27:32 -0700 Subject: [PATCH 11/55] #190 headless broken. --- VERSION | 2 +- cmd/glcon/main.go | 2 +- internal/summoner/acquire/headlessNG.go | 27 +++++------------ internal/summoner/summoner.go | 1 + pkg/cli/version.go | 39 +++++++++++++++++++++++++ 5 files changed, 49 insertions(+), 22 deletions(-) create mode 100644 pkg/cli/version.go diff --git a/VERSION b/VERSION index 2251dc3e..c0f1f8e0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v3.0.9 +v3.0.9_dev2 diff --git a/cmd/glcon/main.go b/cmd/glcon/main.go index 3c0d48a6..41d47760 100644 --- a/cmd/glcon/main.go +++ b/cmd/glcon/main.go @@ -8,6 +8,6 @@ import ( var VERSION string func main() { - log.Info("version: ", VERSION) + log.Print("version: ", VERSION) cli.Execute() } diff --git a/internal/summoner/acquire/headlessNG.go b/internal/summoner/acquire/headlessNG.go index 568556d8..86e60f60 100644 --- a/internal/summoner/acquire/headlessNG.go +++ b/internal/summoner/acquire/headlessNG.go @@ -164,9 +164,10 @@ func PageRenderAndUpload(v1 *viper.Viper, mc *minio.Client, timeout time.Duratio jsonlds, err := PageRender(v1, timeout, url, k, repologger, repoStats) - if err != nil { // from page render + if err == nil { // from page render. If there are no errros, upload. if len(jsonlds) > 1 { - repologger.WithFields(log.Fields{"url": url, "issue": "Multiple JSON"}).Debug(err) + log.WithFields(log.Fields{"url": url, "issue": "Multiple JSON"}).Info("Error uploading jsonld to object store:", url) + repologger.WithFields(log.Fields{"url": url, "issue": "Multiple JSON"}).Debug() } for _, jsonld := range jsonlds { sha, err := Upload(v1, mc, bucketName, k, url, jsonld) @@ -175,6 +176,7 @@ func PageRenderAndUpload(v1 *viper.Viper, mc *minio.Client, timeout time.Duratio repologger.WithFields(log.Fields{"url": url, "sha": sha, "issue": "Error uploading jsonld to object store"}).Error(err) repoStats.Inc(common.StoreError) } else { + log.WithFields(log.Fields{"url": url, "sha": sha, "issue": "Uploaded JSONLD to object store"}).Info("Uploaded JSONLD to object store:", url, err, sha) repologger.WithFields(log.Fields{"url": url, "sha": sha, "issue": "Uploaded JSONLD to object store"}).Debug() repoStats.Inc(common.Stored) } @@ -198,6 +200,7 @@ func PageRender(v1 *viper.Viper, timeout time.Duration, url, k string, repologge sources, err := configTypes.GetSources(v1) source, err := configTypes.GetSourceByName(sources, k) headlessWait := source.HeadlessWait + if timeout*time.Duration(retries) < time.Duration(headlessWait)*time.Second { timeout = time.Duration(headlessWait) * time.Second } @@ -389,24 +392,8 @@ func PageRender(v1 *viper.Viper, timeout time.Duration, url, k string, repologge } else if valid && jsonld != "" { // traps out the root domain... should do this different response = append(response, jsonld) err = nil - //sha, err := Upload(v1, mc, bucketName, k, url, jsonld) - //if err != nil { - // log.WithFields(log.Fields{"url": url, "sha": sha, "issue": "Error uploading jsonld to object store"}).Error("Error uploading jsonld to object store:", url, err, sha) - // repologger.WithFields(log.Fields{"url": url, "sha": sha, "issue": "Error uploading jsonld to object store"}).Error(err) - // repoStats.Inc(common.StoreError) - //} else { - // repologger.WithFields(log.Fields{"url": url, "sha": sha, "issue": "Uploaded JSONLD to object store"}).Debug() - // repoStats.Inc(common.Stored) - //} - //// TODO Is here where to add an entry to the KV store - //err = db.Update(func(tx *bolt.Tx) error { - // b := tx.Bucket([]byte(k)) - // err := b.Put([]byte(url), []byte(sha)) - // if err != nil { - // log.Error("Error writing to bolt", err) - // } - // return nil - //}) + // need to just return a list + } else { // there could be one bad jsonld, and one good. We want to process the jsonld // so, do not set an err diff --git a/internal/summoner/summoner.go b/internal/summoner/summoner.go index 6a50bf37..cf1042f8 100644 --- a/internal/summoner/summoner.go +++ b/internal/summoner/summoner.go @@ -70,6 +70,7 @@ func Summoner(mc *minio.Client, v1 *viper.Viper, db *bolt.DB) { } // just report the error, and then run gathered urls if len(hru) > 0 { + log.Info("running headless:") acquire.HeadlessNG(v1, mc, hru, db, runStats) } diff --git a/pkg/cli/version.go b/pkg/cli/version.go new file mode 100644 index 00000000..0ed3b02f --- /dev/null +++ b/pkg/cli/version.go @@ -0,0 +1,39 @@ +package cli + +import ( + log "github.com/sirupsen/logrus" + "github.com/spf13/cobra" +) + +// gleanerCmd represents the run command +var versionCmd = &cobra.Command{ + Use: "version", + TraverseChildren: true, + Short: "returns version ", + Long: `returns version +`, PersistentPreRun: func(cmd *cobra.Command, args []string) { + initGleanerConfig() + }, + Run: func(cmd *cobra.Command, args []string) { + log.Info("gleaner called") + log.Info("gleaner called") + + }, +} + +func init() { + rootCmd.AddCommand(versionCmd) + // Here you will define your flags and configuration settings. + + // Cobra supports Persistent Flags which will work for this command + // and all subcommands, e.g.: + // gleanerCmd.PersistentFlags().String("foo", "", "A help for foo") + + // Cobra supports local flags which will only run when this command + // is called directly, e.g.: + // gleanerCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") +} + +func returnVersion() { + log.Println("Version") +} From fba5fad80d2121c5bd597bcebc751d798b1bc574 Mon Sep 17 00:00:00 2001 From: Douglas Fils Date: Thu, 20 Apr 2023 12:42:41 -0500 Subject: [PATCH 12/55] removing bolt --- cmd/gleaner/main.go | 10 +- cmd/glweb/main.go | 9 +- cmd/husker/main.go | 10 +- go.mod | 6 +- go.sum | 12 +- internal/check/check.go | 1 - internal/summoner/acquire/acquire.go | 48 +- internal/summoner/acquire/api.go | 23 +- internal/summoner/acquire/headlessNG.go | 23 +- internal/summoner/acquire/resources.go | 53 +- internal/summoner/summoner.go | 15 +- pkg/cli/batch.go | 13 +- pkg/cli/root.go | 12 +- pkg/gleaner.go | 6 +- tools/boltminio/main.go | 168 - tools/boltminio/my.db | Bin 16384 -> 0 bytes tools/siteprovdiff/main.go | 166 - tools/siteprovdiff/test.txt | 116220 --------------------- 18 files changed, 70 insertions(+), 116725 deletions(-) delete mode 100644 tools/boltminio/main.go delete mode 100644 tools/boltminio/my.db delete mode 100644 tools/siteprovdiff/main.go delete mode 100644 tools/siteprovdiff/test.txt diff --git a/cmd/gleaner/main.go b/cmd/gleaner/main.go index 28ea06ef..34205bf9 100644 --- a/cmd/gleaner/main.go +++ b/cmd/gleaner/main.go @@ -11,7 +11,6 @@ import ( "path/filepath" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" "github.com/gleanerio/gleaner/internal/common" "github.com/gleanerio/gleaner/internal/objects" @@ -179,13 +178,6 @@ func main() { // os.Exit(1) //} - // setup the KV store to hold a record of indexed resources - db, err := bolt.Open("gleaner.db", 0600, nil) - if err != nil { - log.Fatal(err) - } - defer db.Close() - // Defer a function to be called on successful ending. Note, if gleaner crashes, this will NOT // get called, do consideration must be taken in such a cases. Some errors in such cases should // be sent to stdout to be captured by docker, k8s, Airflow etc in case they are being used. @@ -196,7 +188,7 @@ func main() { }() //cli(mc, v1, db) - pkg.Cli(mc, v1, db) // move to a common call in batch.go + pkg.Cli(mc, v1) // move to a common call in batch.go } func cleanUp() { diff --git a/cmd/glweb/main.go b/cmd/glweb/main.go index 44697119..978e39c1 100644 --- a/cmd/glweb/main.go +++ b/cmd/glweb/main.go @@ -12,7 +12,6 @@ import ( "github.com/minio/minio-go/v7" "github.com/rs/xid" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" "github.com/gleanerio/gleaner/internal/common" "github.com/gleanerio/gleaner/internal/millers" @@ -136,13 +135,7 @@ func cli(mc *minio.Client, v1 *viper.Viper) { mcfg := v1.GetStringMapString("gleaner") if mcfg["summon"] == "true" { - // setup the KV store to hold a record of indexed resources - db, err := bolt.Open("gleaner.db", 0600, nil) - if err != nil { - log.Fatal(err) - } - defer db.Close() - summoner.Summoner(mc, v1, db) + summoner.Summoner(mc, v1) } if mcfg["mill"] == "true" { diff --git a/cmd/husker/main.go b/cmd/husker/main.go index 3f864b9f..10bed365 100644 --- a/cmd/husker/main.go +++ b/cmd/husker/main.go @@ -10,7 +10,6 @@ import ( "github.com/gleanerio/gleaner/internal/summoner/acquire" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" ) var viperVal string @@ -58,17 +57,12 @@ func main() { // buf bytes.Buffer // logger = log.New(&buf, "logger: ", log.Lshortfile) //) - // setup the KV store to hold a record of indexed resources - db, err := bolt.Open("gleaner.db", 0600, nil) - if err != nil { - log.Fatal(err) - } - defer db.Close() + rlogginer, _ := common.LogIssues(v1, k) runStats := common.NewRunStats() repostats := runStats.Add(k) - err = acquire.PageRenderAndUpload(v1, mc, 45*time.Second, url, k, db, rlogginer, repostats) + err = acquire.PageRenderAndUpload(v1, mc, 45*time.Second, url, k, rlogginer, repostats) if err != nil { panic(fmt.Errorf("error when reading config: %v", err)) } diff --git a/go.mod b/go.mod index 39ae9d70..0a0f3d9e 100644 --- a/go.mod +++ b/go.mod @@ -14,9 +14,10 @@ require ( github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48 github.com/gorilla/mux v1.8.0 github.com/gosuri/uiprogress v0.0.1 + github.com/k4s/webrowser v0.0.0-20160107091637-934d526d0f27 github.com/knakk/rdf v0.0.0-20190304171630-8521bf4c5042 github.com/mafredri/cdp v0.32.0 - github.com/minio/minio-go/v7 v7.0.51 + github.com/minio/minio-go/v7 v7.0.52 github.com/ohler55/ojg v1.14.5 github.com/piprate/json-gold v0.5.0 github.com/rs/xid v1.4.0 @@ -27,7 +28,6 @@ require ( github.com/valyala/fasttemplate v1.2.2 github.com/xitongsys/parquet-go v1.6.0 github.com/xitongsys/parquet-go-source v0.0.0-20211010230925-397910c5e371 - go.etcd.io/bbolt v1.3.6 golang.org/x/crypto v0.6.0 ) @@ -57,6 +57,7 @@ require ( github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect + github.com/k4s/phantomgo v0.0.0-20161104020322-11963773aa04 // indirect github.com/klauspost/compress v1.16.0 // indirect github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/magiconair/properties v1.8.6 // indirect @@ -102,7 +103,6 @@ require ( //replace github.com/boltdb/bolt v1.3.1 => "go.etcd.io/bbolt" v1.3.6 require ( - github.com/boltdb/bolt v1.3.1 github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13 github.com/orandin/lumberjackrus v1.0.1 github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4 diff --git a/go.sum b/go.sum index c63c30d5..3fee5249 100644 --- a/go.sum +++ b/go.sum @@ -124,7 +124,6 @@ github.com/blevesearch/zap/v12 v12.0.14/go.mod h1:rOnuZOiMKPQj18AEKEHJxuI14236tT github.com/blevesearch/zap/v13 v13.0.6/go.mod h1:L89gsjdRKGyGrRN6nCpIScCvvkyxvmeDCwZRcjjPCrw= github.com/blevesearch/zap/v14 v14.0.5/go.mod h1:bWe8S7tRrSBTIaZ6cLRbgNH4TUDaC9LZSpRGs85AsGY= github.com/blevesearch/zap/v15 v15.0.3/go.mod h1:iuwQrImsh1WjWJ0Ue2kBqY83a0rFtJTqfa9fp1rbVVU= -github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4= github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= @@ -387,6 +386,10 @@ github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/X github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= +github.com/k4s/phantomgo v0.0.0-20161104020322-11963773aa04 h1:tA/Xc0VnJtHIdxAML0WraKG+ErOYVgJ6oDcuxOloZOM= +github.com/k4s/phantomgo v0.0.0-20161104020322-11963773aa04/go.mod h1:YWxksSger0gUVO0tKEY/mVkyBTPoKAf4KX/S8Vt7ndc= +github.com/k4s/webrowser v0.0.0-20160107091637-934d526d0f27 h1:YBHxM4fmxQghvs3Ty/rQIPnY+tdCFheIOMj/h0Zw0A8= +github.com/k4s/webrowser v0.0.0-20160107091637-934d526d0f27/go.mod h1:kd1f/k6xHQrfwfszgeiZklsPzBNJJj/el6cjp86YowQ= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/godepgraph v0.0.0-20190626013829-57a7e4a651a9/go.mod h1:Gb5YEgxqiSSVrXKWQxDcKoCM94NO5QAwOwTaVmIUAMI= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= @@ -451,8 +454,8 @@ github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= github.com/minio/minio-go v6.0.14+incompatible/go.mod h1:7guKYtitv8dktvNUGrhzmNlA5wrAABTQXCoesZdFQO8= github.com/minio/minio-go/v7 v7.0.15/go.mod h1:pUV0Pc+hPd1nccgmzQF/EXh48l/Z/yps6QPF1aaie4g= -github.com/minio/minio-go/v7 v7.0.51 h1:eSewrwc23TqUDEH8aw8Bwp4f+JDdozRrPWcKR7DZhmY= -github.com/minio/minio-go/v7 v7.0.51/go.mod h1:IbbodHyjUAguneyucUaahv+VMNs/EOTV9du7A7/Z3HU= +github.com/minio/minio-go/v7 v7.0.52 h1:8XhG36F6oKQUDDSuz6dY3rioMzovKjW40W6ANuN0Dps= +github.com/minio/minio-go/v7 v7.0.52/go.mod h1:IbbodHyjUAguneyucUaahv+VMNs/EOTV9du7A7/Z3HU= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= github.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g= github.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM= @@ -645,8 +648,6 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= -go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU= -go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= @@ -851,7 +852,6 @@ golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200828194041-157a740278f4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= diff --git a/internal/check/check.go b/internal/check/check.go index a5dcc97d..4a1dd5ff 100644 --- a/internal/check/check.go +++ b/internal/check/check.go @@ -111,7 +111,6 @@ func Setup(mc *minio.Client, v1 *viper.Viper) error { /* Check to see we can connect to s3 instance, and that buckets exist -Might also be used to flight check bolt database, and if containers are up */ func PreflightChecks(mc *minio.Client, v1 *viper.Viper) error { // Validate Minio access diff --git a/internal/summoner/acquire/acquire.go b/internal/summoner/acquire/acquire.go index 3f6e7e6a..58dcf780 100644 --- a/internal/summoner/acquire/acquire.go +++ b/internal/summoner/acquire/acquire.go @@ -1,7 +1,6 @@ package acquire import ( - "fmt" "github.com/gleanerio/gleaner/internal/common" "net/http" "net/url" @@ -17,14 +16,13 @@ import ( "github.com/minio/minio-go/v7" "github.com/schollz/progressbar/v3" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" ) const EarthCubeAgent = "EarthCube_DataBot/1.0" const JSONContentType = "application/ld+json" // ResRetrieve is a function to pull down the data graphs at resources -func ResRetrieve(v1 *viper.Viper, mc *minio.Client, m map[string][]string, db *bolt.DB, runStats *common.RunStats) { +func ResRetrieve(v1 *viper.Viper, mc *minio.Client, m map[string][]string, runStats *common.RunStats) { wg := sync.WaitGroup{} // Why do I pass the wg pointer? Just make a new one @@ -47,7 +45,7 @@ func ResRetrieve(v1 *viper.Viper, mc *minio.Client, m map[string][]string, db *b } wg.Add(1) //go getDomain(v1, mc, urls, domain, &wg, db) - go getDomain(v1, mc, urls, domain, &wg, db, repologger, r) + go getDomain(v1, mc, urls, domain, &wg, repologger, r) } wg.Wait() @@ -92,18 +90,9 @@ func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, error) { } func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string, - wg *sync.WaitGroup, db *bolt.DB, repologger *log.Logger, repoStats *common.RepoStats) { + wg *sync.WaitGroup, repologger *log.Logger, repoStats *common.RepoStats) { //func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string, wg *sync.WaitGroup, db *bolt.DB) { - // make the bucket (if it doesn't exist) - db.Update(func(tx *bolt.Tx) error { - _, err := tx.CreateBucket([]byte(sourceName)) - if err != nil { - return fmt.Errorf("create bucket: %s", err) - } - return nil - }) - bucketName, tc, delay, err := getConfig(v1, sourceName) if err != nil { // trying to read a source, so let's not kill everything with a panic/fatal @@ -178,17 +167,12 @@ func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName stri // TODO is her where I then try headless, and scope the following for into an else? log.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Info("Direct access failed, trying headless for ", urlloc) repologger.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Error() // this needs to go into the issues file - err := PageRenderAndUpload(v1, mc, 60*time.Second, urlloc, sourceName, db, repologger, repoStats) // TODO make delay configurable + err := PageRenderAndUpload(v1, mc, 60*time.Second, urlloc, sourceName, repologger, repoStats) // TODO make delay configurable if err != nil { log.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error("PageRenderAndUpload ", urlloc, "::", err) repologger.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error(err) } - db.Update(func(tx *bolt.Tx) error { - b := tx.Bucket([]byte(sourceName)) - err := b.Put([]byte(urlloc), []byte(fmt.Sprintf("NILL: %s", urlloc))) // no JOSN-LD found at this URL - return err - }) if err != nil { log.Error("DB Update", urlloc, "::", err) } @@ -199,7 +183,7 @@ func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName stri repoStats.Inc(common.Summoned) } - UploadWrapper(v1, mc, bucketName, sourceName, urlloc, db, repologger, repoStats, jsonlds) + UploadWrapper(v1, mc, bucketName, sourceName, urlloc, repologger, repoStats, jsonlds) bar.Add(1) // bar.Incr() log.Trace("#", i, "thread for", urlloc) // print an message containing the index (won't keep order) @@ -251,7 +235,7 @@ func FindJSONInResponse(v1 *viper.Viper, urlloc string, repologger *log.Logger, return jsonlds, nil } -func UploadWrapper(v1 *viper.Viper, mc *minio.Client, bucketName string, sourceName string, urlloc string, db *bolt.DB, repologger *log.Logger, repoStats *common.RepoStats, jsonlds []string) { +func UploadWrapper(v1 *viper.Viper, mc *minio.Client, bucketName string, sourceName string, urlloc string, repologger *log.Logger, repoStats *common.RepoStats, jsonlds []string) { for i, jsonld := range jsonlds { if jsonld != "" { // traps out the root domain... should do this different logFields := log.Fields{"url": urlloc, "issue": "Uploading"} @@ -269,28 +253,12 @@ func UploadWrapper(v1 *viper.Viper, mc *minio.Client, bucketName string, sourceN log.WithFields(logFields).Info("Successfully put ", sha, " in summoned bucket for ", urlloc) repoStats.Inc(common.Stored) } - // TODO Is here where to add an entry to the KV store - db.Update(func(tx *bolt.Tx) error { - b := tx.Bucket([]byte(sourceName)) - err := b.Put([]byte(urlloc), []byte(sha)) - if err != nil { - log.Error("Error writing to bolt ", err) - } - return nil - }) + } else { logFields := log.Fields{"url": urlloc, "issue": "Empty JSON-LD document found "} log.WithFields(logFields).Info("Empty JSON-LD document found. Continuing.") repologger.WithFields(logFields).Error("Empty JSON-LD document found. Continuing.") - // TODO Is here where to add an entry to the KV store - db.Update(func(tx *bolt.Tx) error { - b := tx.Bucket([]byte(sourceName)) - err := b.Put([]byte(urlloc), []byte(fmt.Sprintf("NULL: %s", urlloc))) // no JSON-LD found at this URL - if err != nil { - log.Error("Error writing to bolt ", err) - } - return nil - }) + } } } diff --git a/internal/summoner/acquire/api.go b/internal/summoner/acquire/api.go index 9c0aa5cf..fd831d8c 100644 --- a/internal/summoner/acquire/api.go +++ b/internal/summoner/acquire/api.go @@ -7,7 +7,6 @@ import ( "github.com/minio/minio-go/v7" log "github.com/sirupsen/logrus" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" "net/http" "sync" "time" @@ -33,7 +32,7 @@ func RetrieveAPIEndpoints(v1 *viper.Viper) ([]configTypes.Sources, error) { // given a paged API url template, iterate through the pages until we get // all the results we want. -func RetrieveAPIData(apiSources []configTypes.Sources, mc *minio.Client, db *bolt.DB, runStats *common.RunStats, v1 *viper.Viper) { +func RetrieveAPIData(apiSources []configTypes.Sources, mc *minio.Client, runStats *common.RunStats, v1 *viper.Viper) { wg := sync.WaitGroup{} for _, source := range apiSources { @@ -50,21 +49,13 @@ func RetrieveAPIData(apiSources []configTypes.Sources, mc *minio.Client, db *bol repologger.Info("Queuing API calls for ", source.Name) } wg.Add(1) - go getAPISource(v1, mc, source, &wg, db, repologger, r) + go getAPISource(v1, mc, source, &wg, repologger, r) } wg.Wait() } -func getAPISource(v1 *viper.Viper, mc *minio.Client, source configTypes.Sources, wg *sync.WaitGroup, db *bolt.DB, repologger *log.Logger, repoStats *common.RepoStats) { - // make the bucket (if it doesn't exist) - db.Update(func(tx *bolt.Tx) error { - _, err := tx.CreateBucket([]byte(source.Name)) - if err != nil { - return fmt.Errorf("create bucket: %s", err) - } - return nil - }) +func getAPISource(v1 *viper.Viper, mc *minio.Client, source configTypes.Sources, wg *sync.WaitGroup, repologger *log.Logger, repoStats *common.RepoStats) { bucketName, tc, delay, err := getConfig(v1, source.Name) if err != nil { @@ -140,19 +131,13 @@ func getAPISource(v1 *viper.Viper, mc *minio.Client, source configTypes.Sources, log.WithFields(log.Fields{"url": urlloc, "contentType": "No JSON-LD found']"}).Info("No JSON-LD found at ", urlloc) repologger.WithFields(log.Fields{"url": urlloc, "contentType": "No JSON-LD found']"}).Error() // this needs to go into the issues file - db.Update(func(tx *bolt.Tx) error { - b := tx.Bucket([]byte(sourceName)) - err := b.Put([]byte(urlloc), []byte(fmt.Sprintf("NILL: %s", urlloc))) // no JSON-LD found at this URL - return err - }) - } else { log.WithFields(log.Fields{"url": urlloc, "issue": "Indexed"}).Trace("Indexed ", urlloc) repologger.WithFields(log.Fields{"url": urlloc, "issue": "Indexed"}).Trace() repoStats.Inc(common.Summoned) } - UploadWrapper(v1, mc, bucketName, sourceName, urlloc, db, repologger, repoStats, jsonlds) + UploadWrapper(v1, mc, bucketName, sourceName, urlloc, repologger, repoStats, jsonlds) log.Trace("#", i, "thread for", urlloc) // print an message containing the index (won't keep order) time.Sleep(time.Duration(delay) * time.Millisecond) // sleep a bit if directed to by the provider diff --git a/internal/summoner/acquire/headlessNG.go b/internal/summoner/acquire/headlessNG.go index 86e60f60..122d8e66 100644 --- a/internal/summoner/acquire/headlessNG.go +++ b/internal/summoner/acquire/headlessNG.go @@ -18,13 +18,12 @@ import ( minio "github.com/minio/minio-go/v7" "github.com/spf13/viper" "github.com/valyala/fasttemplate" - bolt "go.etcd.io/bbolt" ) // HeadlessNG gets schema.org entries in sites that put the JSON-LD in dynamically with JS. // It uses a chrome headless instance (which MUST BE RUNNING). // TODO.. trap out error where headless is NOT running -func HeadlessNG(v1 *viper.Viper, mc *minio.Client, m map[string][]string, db *bolt.DB, runStats *common.RunStats) { +func HeadlessNG(v1 *viper.Viper, mc *minio.Client, m map[string][]string, runStats *common.RunStats) { // NOTE this function compares to ResRetrieve in acquire.go. They both approach things // in same ways due to hwo we deal with threading (opportunities). We don't queue up domains // multiple times since we are dealing with our local resource now in the form of the headless tooling. @@ -45,17 +44,10 @@ func HeadlessNG(v1 *viper.Viper, mc *minio.Client, m map[string][]string, db *bo } else { repologger.Info("Headless chrome call to ", k) } - db.Update(func(tx *bolt.Tx) error { - _, err := tx.CreateBucket([]byte(k)) - if err != nil { - return fmt.Errorf("create bucket: %s", err) - } - return nil - }) for i := range m[k] { - err := PageRenderAndUpload(v1, mc, 60*time.Second, m[k][i], k, db, repologger, r) // TODO make delay configurable + err := PageRenderAndUpload(v1, mc, 60*time.Second, m[k][i], k, repologger, r) // TODO make delay configurable if err != nil { log.Error(m[k][i], "::", err) } @@ -148,7 +140,7 @@ func HeadlessNG(v1 *viper.Viper, mc *minio.Client, m map[string][]string, db *bo // //} -func PageRenderAndUpload(v1 *viper.Viper, mc *minio.Client, timeout time.Duration, url, k string, db *bolt.DB, repologger *log.Logger, repoStats *common.RepoStats) error { +func PageRenderAndUpload(v1 *viper.Viper, mc *minio.Client, timeout time.Duration, url, k string, repologger *log.Logger, repoStats *common.RepoStats) error { repologger.WithFields(log.Fields{"url": url}).Trace("PageRenderAndUpload") // page render handles this //ctx, cancel := context.WithTimeout(context.Background(), timeout) @@ -180,15 +172,6 @@ func PageRenderAndUpload(v1 *viper.Viper, mc *minio.Client, timeout time.Duratio repologger.WithFields(log.Fields{"url": url, "sha": sha, "issue": "Uploaded JSONLD to object store"}).Debug() repoStats.Inc(common.Stored) } - // TODO Is here where to add an entry to the KV store - err = db.Update(func(tx *bolt.Tx) error { - b := tx.Bucket([]byte(k)) - err := b.Put([]byte(url), []byte(sha)) - if err != nil { - log.Error("Error writing to bolt", err) - } - return nil - }) } } return err diff --git a/internal/summoner/acquire/resources.go b/internal/summoner/acquire/resources.go index d2947381..300ac51e 100644 --- a/internal/summoner/acquire/resources.go +++ b/internal/summoner/acquire/resources.go @@ -1,14 +1,12 @@ package acquire import ( - "fmt" "github.com/gleanerio/gleaner/internal/common" log "github.com/sirupsen/logrus" "strings" "time" configTypes "github.com/gleanerio/gleaner/internal/config" - bolt "go.etcd.io/bbolt" "github.com/temoto/robotstxt" @@ -37,7 +35,7 @@ const robotsType = "robots" // ResourceURLs looks gets the resource URLs for a domain. The results is a // map with domain name as key and []string of the URLs to process. -func ResourceURLs(v1 *viper.Viper, mc *minio.Client, headless bool, db *bolt.DB) (map[string][]string, error) { +func ResourceURLs(v1 *viper.Viper, mc *minio.Client, headless bool) (map[string][]string, error) { domainsMap := make(map[string][]string) var repoFatalErrors common.MultiError // Know whether we are running in diff mode, in order to exclude urls that have already @@ -79,7 +77,8 @@ func ResourceURLs(v1 *viper.Viper, mc *minio.Client, headless bool, db *bolt.DB) //return domainsMap, err // returning means that domains after broken one do not get indexed. } if mcfg.Mode == "diff" { - urls = excludeAlreadySummoned(domain.Name, urls, db) + log.Error("Mode diff is not currently supported") + //urls = excludeAlreadySummoned(domain.Name, urls) } overrideCrawlDelayFromRobots(v1, domain.Name, mcfg.Delay, group) domainsMap[domain.Name] = urls @@ -110,7 +109,8 @@ func ResourceURLs(v1 *viper.Viper, mc *minio.Client, headless bool, db *bolt.DB) urls = append(urls, sitemapUrls...) } if mcfg.Mode == "diff" { - urls = excludeAlreadySummoned(domain.Name, urls, db) + log.Error("Mode diff is not currently supported") + //urls = excludeAlreadySummoned(domain.Name, urls) } overrideCrawlDelayFromRobots(v1, domain.Name, mcfg.Delay, group) domainsMap[domain.Name] = urls @@ -207,27 +207,30 @@ func getRobotsForDomain(url string) (*robotstxt.RobotsData, error) { return robots, nil } -func excludeAlreadySummoned(domainName string, urls []string, db *bolt.DB) []string { - // TODO if we check for URLs in prov.. do that here.. - //oa := objects.ProvURLs(v1, mc, bucketName, fmt.Sprintf("prov/%s", domain.Name)) +// TODO, with bolt gone, this capacity is no longer in Gleaner. That is fine, it +// is likely best done in other ways, but this function will also need to be removed above. - oa := []string{} - db.View(func(tx *bolt.Tx) error { - // Assume bucket exists and has keys - b := tx.Bucket([]byte(domainName)) - c := b.Cursor() - - for key, _ := c.First(); key != nil; key, _ = c.Next() { - //fmt.Printf("key=%s, value=%s\n", k, v) - oa = append(oa, fmt.Sprintf("%s", key)) - } - - return nil - }) - - d := difference(urls, oa) - return d -} +//func excludeAlreadySummoned(domainName string, urls []string, db *bolt.DB) []string { +// // TODO if we check for URLs in prov.. do that here.. +// //oa := objects.ProvURLs(v1, mc, bucketName, fmt.Sprintf("prov/%s", domain.Name)) +// +// oa := []string{} +// db.View(func(tx *bolt.Tx) error { +// // Assume bucket exists and has keys +// b := tx.Bucket([]byte(domainName)) +// c := b.Cursor() +// +// for key, _ := c.First(); key != nil; key, _ = c.Next() { +// //fmt.Printf("key=%s, value=%s\n", k, v) +// oa = append(oa, fmt.Sprintf("%s", key)) +// } +// +// return nil +// }) +// +// d := difference(urls, oa) +// return d +//} // difference returns the elements in `a` that aren't in `b`. func difference(a, b []string) []string { diff --git a/internal/summoner/summoner.go b/internal/summoner/summoner.go index cf1042f8..42cd6467 100644 --- a/internal/summoner/summoner.go +++ b/internal/summoner/summoner.go @@ -3,6 +3,7 @@ package summoner import ( "fmt" "github.com/gleanerio/gleaner/internal/common" + "github.com/minio/minio-go/v7" log "github.com/sirupsen/logrus" "os" "os/signal" @@ -10,9 +11,7 @@ import ( "time" "github.com/gleanerio/gleaner/internal/summoner/acquire" - "github.com/minio/minio-go/v7" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" ) func runStatsOutput(runStats *common.RunStats) { @@ -32,7 +31,7 @@ func runStatsOutput(runStats *common.RunStats) { // Summoner pulls the resources from the data facilities // func Summoner(mc *minio.Client, cs utils.Config) { -func Summoner(mc *minio.Client, v1 *viper.Viper, db *bolt.DB) { +func Summoner(mc *minio.Client, v1 *viper.Viper) { st := time.Now() log.Info("Summoner start time:", st) // Log the time at start for the record @@ -43,7 +42,7 @@ func Summoner(mc *minio.Client, v1 *viper.Viper, db *bolt.DB) { if err != nil { log.Error("Error getting API endpoint sources:", err) } else if len(apiSources) > 0 { - acquire.RetrieveAPIData(apiSources, mc, db, runStats, v1) + acquire.RetrieveAPIData(apiSources, mc, runStats, v1) } c := make(chan os.Signal) @@ -55,23 +54,23 @@ func Summoner(mc *minio.Client, v1 *viper.Viper, db *bolt.DB) { }() // Get a list of resource URLs that do and don't require headless processing - ru, err := acquire.ResourceURLs(v1, mc, false, db) + ru, err := acquire.ResourceURLs(v1, mc, false) if err != nil { log.Info("Error getting urls that do not require headless processing:", err) } // just report the error, and then run gathered urls if len(ru) > 0 { - acquire.ResRetrieve(v1, mc, ru, db, runStats) // TODO These can be go funcs that run all at the same time.. + acquire.ResRetrieve(v1, mc, ru, runStats) // TODO These can be go funcs that run all at the same time.. } - hru, err := acquire.ResourceURLs(v1, mc, true, db) + hru, err := acquire.ResourceURLs(v1, mc, true) if err != nil { log.Info("Error getting urls that require headless processing:", err) } // just report the error, and then run gathered urls if len(hru) > 0 { log.Info("running headless:") - acquire.HeadlessNG(v1, mc, hru, db, runStats) + acquire.HeadlessNG(v1, mc, hru, runStats) } // Time report diff --git a/pkg/cli/batch.go b/pkg/cli/batch.go index 76de37f3..a4efa093 100644 --- a/pkg/cli/batch.go +++ b/pkg/cli/batch.go @@ -21,12 +21,9 @@ import ( configTypes "github.com/gleanerio/gleaner/internal/config" "github.com/gleanerio/gleaner/pkg" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" "os" log "github.com/sirupsen/logrus" - "path" - "github.com/spf13/cobra" ) @@ -83,12 +80,7 @@ func Batch(v1 *viper.Viper, mode string, runSources []string) { //} mc := common.MinioConnection(v1) - // setup the KV store to hold a record of indexed resources - db, err := bolt.Open(path.Join(cfgPath, cfgName, "gleaner.db"), 0600, nil) - if err != nil { - log.Fatal(err) - } - defer db.Close() + //var gln = v1.Sub("gleaner") gln := v1.GetStringMapString("gleaner") if millVal { @@ -103,11 +95,12 @@ func Batch(v1 *viper.Viper, mode string, runSources []string) { } if len(runSources) > 0 { + var err error = nil v1, err = configTypes.PruneSources(v1, runSources) if err != nil { log.Fatal(err) os.Exit(1) } } - pkg.Cli(mc, v1, db) + pkg.Cli(mc, v1) } diff --git a/pkg/cli/root.go b/pkg/cli/root.go index 25084f4c..fc9ac362 100644 --- a/pkg/cli/root.go +++ b/pkg/cli/root.go @@ -9,7 +9,6 @@ import ( ///"time" - "github.com/boltdb/bolt" "github.com/spf13/viper" ) @@ -18,8 +17,6 @@ var minioVal, portVal, accessVal, secretVal, bucketVal string var sslVal bool var gleanerViperVal, nabuViperVal *viper.Viper -var db *bolt.DB - // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "glcon", @@ -87,12 +84,7 @@ func init() { // initConfig reads in config file and ENV variables if set. func initConfig() { - // Setup the KV store to hold a record of indexed resources - var err error - db, err = bolt.Open("gleaner.db", 0600, nil) - if err != nil { - log.Fatal(err) - } - defer db.Close() + // We no longer use bolt, so the Setup the KV store to hold a record of indexed resources + // is not done. left the initConfig here in case we needed this for something else } diff --git a/pkg/gleaner.go b/pkg/gleaner.go index ce9839ab..52836071 100644 --- a/pkg/gleaner.go +++ b/pkg/gleaner.go @@ -10,12 +10,11 @@ import ( "github.com/minio/minio-go/v7" log "github.com/sirupsen/logrus" "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" "os" //"os" ) -func Cli(mc *minio.Client, v1 *viper.Viper, db *bolt.DB) error { +func Cli(mc *minio.Client, v1 *viper.Viper) error { mcfg := v1.GetStringMapString("gleaner") @@ -40,7 +39,7 @@ func Cli(mc *minio.Client, v1 *viper.Viper, db *bolt.DB) error { } log.Info(fn) // summon sitemaps - summoner.Summoner(mc, v1, db) + summoner.Summoner(mc, v1) acquire.GetFromGDrive(mc, v1) } @@ -88,7 +87,6 @@ func Setup(mc *minio.Client, v1 *viper.Viper) error { /* Check to see we can connect to s3 instance, and that buckets exist -Might also be used to flight check bolt database, and if containers are up */ func PreflightChecks(mc *minio.Client, v1 *viper.Viper) error { // Validate Minio access diff --git a/tools/boltminio/main.go b/tools/boltminio/main.go deleted file mode 100644 index d0a166d0..00000000 --- a/tools/boltminio/main.go +++ /dev/null @@ -1,168 +0,0 @@ -package main - -import ( - "flag" - "fmt" - "log" - "time" - - bolt "go.etcd.io/bbolt" - - "github.com/gleanerio/gleaner/internal/objects" - "github.com/gleanerio/gleaner/internal/summoner/acquire" - "github.com/minio/minio-go/v7" - "github.com/minio/minio-go/v7/pkg/credentials" - "github.com/spf13/viper" -) - -var viperVal, modeVal string -var setupVal bool - -type BucketObjects struct { - Name string - Date time.Time -} - -type Qset struct { - Subject string `parquet:"name=Subject, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` - Predicate string `parquet:"name=Predicate, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` - Object string `parquet:"name=Object, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` - Graph string `parquet:"name=Graph, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` -} - -func init() { - log.SetFlags(log.Lshortfile) - // log.SetOutput(ioutil.Discard) // turn off all logging - // flag.StringVar(&sourceVal, "source", "", "Override config file source") - flag.BoolVar(&setupVal, "setup", false, "Run Gleaner configuration check and exit") - flag.StringVar(&viperVal, "cfg", "config", "Configuration file") - flag.StringVar(&modeVal, "mode", "mode", "Set the mode") -} - -func main() { - flag.Parse() // parse any command line flags... - - var v1 *viper.Viper - var err error - - // Load the config file and set some defaults (config overrides) - if isFlagPassed("cfg") { - v1, err = readConfig(viperVal, map[string]interface{}{ - "sqlfile": "", - "bucket": "", - "minio": map[string]string{ - "address": "localhost", - "port": "9000", - "accesskey": "", - "secretkey": "", - }, - }) - if err != nil { - panic(fmt.Errorf("error when reading config: %v", err)) - } - } - - // Set up the minio connector - mc := MinioConnection(v1) - - // read config file - miniocfg := v1.GetStringMapString("minio") - bucketName := miniocfg["bucket"] // get the top level bucket for all of gleaner operations from config file - db, err := bolt.Open("my.db", 0600, nil) - if err != nil { - log.Fatal(err) - } - - defer db.Close() - ru, err := acquire.ResourceURLs(v1, mc, false, db) - // hru := acquire.ResourceURLs(v1, true) - // log.Println(len(ru["samplesearth"].URL)) - // log.Println(len(hru["samplesearth"].URL)) - - d := "marinetraining" // domain to test obis marinetraining oceanexperts - - var u []string - for k := range ru[d] { - u = append(u, ru[d][k]) - } - - // fmt.Println("print sitemap urls -----------------------------------------------") - // for k := range u { - // fmt.Println(u[k]) - // } - - // // TEST - // u = append(u, "this is a test") - - // s3select prov call - oa := objects.ProvURLs(v1, mc, bucketName, fmt.Sprintf("prov/%s", d)) - // fmt.Println("print s3select urls -----------------------------------------------") - // for k := range oa { - // fmt.Println(oa[k]) - // } - - diff := difference(u, oa) - - fmt.Printf("Len sitemap: %d Len prov: %d Len diff: %d \n", len(u), len(oa), len(diff)) - - fmt.Println("print diff urls -----------------------------------------------") - for k := range diff { - fmt.Println(diff[k]) - } - -} - -// difference returns the elements in `a` that aren't in `b`. -func difference(a, b []string) []string { - mb := make(map[string]struct{}, len(b)) - for _, x := range b { - mb[x] = struct{}{} - } - var diff []string - for _, x := range a { - if _, found := mb[x]; !found { - diff = append(diff, x) - } - } - return diff -} - -func MinioConnection(v1 *viper.Viper) *minio.Client { - //mcfg := v1.GetStringMapString("minio") - mcfg := v1.Sub("minio") - endpoint := fmt.Sprintf("%s:%s", mcfg.GetString("address"), mcfg.GetString("port")) - accessKeyID := mcfg.GetString("accesskey") - secretAccessKey := mcfg.GetString("secretkey") - useSSL := mcfg.GetBool("ssl") - - minioClient, err := minio.New(endpoint, - &minio.Options{Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""), - Secure: useSSL}) - if err != nil { - log.Fatalln(err) - } - - return minioClient -} - -func readConfig(filename string, defaults map[string]interface{}) (*viper.Viper, error) { - v := viper.New() - for key, value := range defaults { - v.SetDefault(key, value) - } - v.SetConfigName(filename) - v.AddConfigPath(".") - v.AutomaticEnv() - err := v.ReadInConfig() - return v, err -} - -func isFlagPassed(name string) bool { - found := false - flag.Visit(func(f *flag.Flag) { - if f.Name == name { - found = true - } - }) - return found -} diff --git a/tools/boltminio/my.db b/tools/boltminio/my.db deleted file mode 100644 index e449c28987ce16bf4ca8ea054d2f468599fb2e03..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16384 zcmeI&yA8rH5C-7zkZ6#AmI2s+6%YkY7D=BGSdksV21q<|{{VDR^rbobY)ihcvz?|H zzjejou^pD*_I^yPDxdHh`*bot`RD6?IdttNeUShG0t5&UAV7cs0RjXF5SWg@qPCLr z{J-b_tlwSx_ISRXrc;@n5FkK+009C72oNAZfB*pk5y*RfJ@+Rq5+Fc;009C72oNAZ lfB*pkGZM)E{kaF2QE5scK!5-N0t5&UAV7cs0RjX{;0=f~3rhe1 diff --git a/tools/siteprovdiff/main.go b/tools/siteprovdiff/main.go deleted file mode 100644 index 4fb270dc..00000000 --- a/tools/siteprovdiff/main.go +++ /dev/null @@ -1,166 +0,0 @@ -package main - -import ( - "flag" - "fmt" - "log" - "time" - - "github.com/gleanerio/gleaner/internal/objects" - "github.com/gleanerio/gleaner/internal/summoner/acquire" - "github.com/minio/minio-go/v7" - "github.com/minio/minio-go/v7/pkg/credentials" - "github.com/spf13/viper" - bolt "go.etcd.io/bbolt" -) - -var viperVal string -var setupVal bool - -type BucketObjects struct { - Name string - Date time.Time -} - -type Qset struct { - Subject string `parquet:"name=Subject, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` - Predicate string `parquet:"name=Predicate, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` - Object string `parquet:"name=Object, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` - Graph string `parquet:"name=Graph, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` -} - -func init() { - log.SetFlags(log.Lshortfile) - // log.SetOutput(ioutil.Discard) // turn off all logging - - flag.BoolVar(&setupVal, "setup", false, "Run Gleaner configuration check and exit") - flag.StringVar(&viperVal, "cfg", "config", "Configuration file") -} - -func main() { - flag.Parse() // parse any command line flags... - - var v1 *viper.Viper - var err error - - // Load the config file and set some defaults (config overrides) - if isFlagPassed("cfg") { - v1, err = readConfig(viperVal, map[string]interface{}{ - "sqlfile": "", - "bucket": "", - "minio": map[string]string{ - "address": "localhost", - "port": "9000", - "accesskey": "", - "secretkey": "", - }, - }) - if err != nil { - panic(fmt.Errorf("error when reading config: %v", err)) - } - } - - // Set up the minio connector - mc := MinioConnection(v1) - - // read config file - miniocfg := v1.GetStringMapString("minio") - bucketName := miniocfg["bucket"] // get the top level bucket for all of gleaner operations from config file - // setup the KV store to hold a record of indexed resources - db, err := bolt.Open("gleaner.db", 0600, nil) - if err != nil { - log.Fatal(err) - } - defer db.Close() - ru, err := acquire.ResourceURLs(v1, mc, false, db) - // hru := acquire.ResourceURLs(v1, true) - // log.Println(len(ru["samplesearth"].URL)) - // log.Println(len(hru["samplesearth"].URL)) - - d := "oceanexperts" // domain to test obis marinetraining oceanexperts - - var u []string - for k := range ru[d] { - u = append(u, ru[d][k]) - } - - fmt.Println("print sitemap urls -----------------------------------------------") - for k := range u { - fmt.Println(u[k]) - } - - // // TEST - // u = append(u, "this is a test") - - // s3select prov call - oa := objects.ProvURLs(v1, mc, bucketName, fmt.Sprintf("prov/%s", d)) - fmt.Println("print s3select urls -----------------------------------------------") - for k := range oa { - fmt.Println(oa[k]) - } - - diff := difference(u, oa) - - fmt.Printf("Len sitemap: %d Len prov: %d Len diff: %d \n", len(u), len(oa), len(diff)) - - fmt.Println("print diff urls -----------------------------------------------") - for k := range diff { - fmt.Println(diff[k]) - } - -} - -// difference returns the elements in `a` that aren't in `b`. -func difference(a, b []string) []string { - mb := make(map[string]struct{}, len(b)) - for _, x := range b { - mb[x] = struct{}{} - } - var diff []string - for _, x := range a { - if _, found := mb[x]; !found { - diff = append(diff, x) - } - } - return diff -} - -func MinioConnection(v1 *viper.Viper) *minio.Client { - //mcfg := v1.GetStringMapString("minio") - mcfg := v1.Sub("minio") - endpoint := fmt.Sprintf("%s:%s", mcfg.GetString("address"), mcfg.GetString("port")) - accessKeyID := mcfg.GetString("accesskey") - secretAccessKey := mcfg.GetString("secretkey") - useSSL := mcfg.GetBool("ssl") - - minioClient, err := minio.New(endpoint, - &minio.Options{Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""), - Secure: useSSL}) - if err != nil { - log.Fatalln(err) - } - - return minioClient -} - -func readConfig(filename string, defaults map[string]interface{}) (*viper.Viper, error) { - v := viper.New() - for key, value := range defaults { - v.SetDefault(key, value) - } - v.SetConfigName(filename) - v.AddConfigPath(".") - v.AutomaticEnv() - err := v.ReadInConfig() - return v, err -} - -func isFlagPassed(name string) bool { - found := false - flag.Visit(func(f *flag.Flag) { - if f.Name == name { - found = true - } - }) - return found -} diff --git a/tools/siteprovdiff/test.txt b/tools/siteprovdiff/test.txt deleted file mode 100644 index adedb42d..00000000 --- a/tools/siteprovdiff/test.txt +++ /dev/null @@ -1,116220 +0,0 @@ -print sitemap urls ----------------------------------------------- -https://www.oceanexpert.org/expert/13 -https://www.oceanexpert.org/expert/30 -https://www.oceanexpert.org/expert/36 -https://www.oceanexpert.org/expert/40 -https://www.oceanexpert.org/expert/41 -https://www.oceanexpert.org/expert/52 -https://www.oceanexpert.org/expert/54 -https://www.oceanexpert.org/expert/59 -https://www.oceanexpert.org/expert/61 -https://www.oceanexpert.org/expert/66 -https://www.oceanexpert.org/expert/76 -https://www.oceanexpert.org/expert/78 -https://www.oceanexpert.org/expert/85 -https://www.oceanexpert.org/expert/96 -https://www.oceanexpert.org/expert/101 -https://www.oceanexpert.org/expert/105 -https://www.oceanexpert.org/expert/108 -https://www.oceanexpert.org/expert/110 -https://www.oceanexpert.org/expert/112 -https://www.oceanexpert.org/expert/117 -https://www.oceanexpert.org/expert/120 -https://www.oceanexpert.org/expert/122 -https://www.oceanexpert.org/expert/126 -https://www.oceanexpert.org/expert/153 -https://www.oceanexpert.org/expert/161 -https://www.oceanexpert.org/expert/168 -https://www.oceanexpert.org/expert/172 -https://www.oceanexpert.org/expert/178 -https://www.oceanexpert.org/expert/179 -https://www.oceanexpert.org/expert/184 -https://www.oceanexpert.org/expert/186 -https://www.oceanexpert.org/expert/189 -https://www.oceanexpert.org/expert/195 -https://www.oceanexpert.org/expert/200 -https://www.oceanexpert.org/expert/216 -https://www.oceanexpert.org/expert/217 -https://www.oceanexpert.org/expert/223 -https://www.oceanexpert.org/expert/224 -https://www.oceanexpert.org/expert/235 -https://www.oceanexpert.org/expert/237 -https://www.oceanexpert.org/expert/243 -https://www.oceanexpert.org/expert/261 -https://www.oceanexpert.org/expert/263 -https://www.oceanexpert.org/expert/267 -https://www.oceanexpert.org/expert/279 -https://www.oceanexpert.org/expert/280 -https://www.oceanexpert.org/expert/288 -https://www.oceanexpert.org/expert/291 -https://www.oceanexpert.org/expert/299 -https://www.oceanexpert.org/expert/310 -https://www.oceanexpert.org/expert/313 -https://www.oceanexpert.org/expert/317 -https://www.oceanexpert.org/expert/329 -https://www.oceanexpert.org/expert/361 -https://www.oceanexpert.org/expert/381 -https://www.oceanexpert.org/expert/386 -https://www.oceanexpert.org/expert/406 -https://www.oceanexpert.org/expert/408 -https://www.oceanexpert.org/expert/425 -https://www.oceanexpert.org/expert/464 -https://www.oceanexpert.org/expert/504 -https://www.oceanexpert.org/expert/506 -https://www.oceanexpert.org/expert/523 -https://www.oceanexpert.org/expert/529 -https://www.oceanexpert.org/expert/531 -https://www.oceanexpert.org/expert/533 -https://www.oceanexpert.org/expert/534 -https://www.oceanexpert.org/expert/536 -https://www.oceanexpert.org/expert/539 -https://www.oceanexpert.org/expert/541 -https://www.oceanexpert.org/expert/545 -https://www.oceanexpert.org/expert/547 -https://www.oceanexpert.org/expert/548 -https://www.oceanexpert.org/expert/559 -https://www.oceanexpert.org/expert/560 -https://www.oceanexpert.org/expert/575 -https://www.oceanexpert.org/expert/578 -https://www.oceanexpert.org/expert/586 -https://www.oceanexpert.org/expert/593 -https://www.oceanexpert.org/expert/594 -https://www.oceanexpert.org/expert/604 -https://www.oceanexpert.org/expert/605 -https://www.oceanexpert.org/expert/630 -https://www.oceanexpert.org/expert/632 -https://www.oceanexpert.org/expert/636 -https://www.oceanexpert.org/expert/640 -https://www.oceanexpert.org/expert/649 -https://www.oceanexpert.org/expert/650 -https://www.oceanexpert.org/expert/653 -https://www.oceanexpert.org/expert/659 -https://www.oceanexpert.org/expert/662 -https://www.oceanexpert.org/expert/665 -https://www.oceanexpert.org/expert/668 -https://www.oceanexpert.org/expert/673 -https://www.oceanexpert.org/expert/687 -https://www.oceanexpert.org/expert/698 -https://www.oceanexpert.org/expert/699 -https://www.oceanexpert.org/expert/707 -https://www.oceanexpert.org/expert/712 -https://www.oceanexpert.org/expert/713 -https://www.oceanexpert.org/expert/719 -https://www.oceanexpert.org/expert/720 -https://www.oceanexpert.org/expert/726 -https://www.oceanexpert.org/expert/731 -https://www.oceanexpert.org/expert/738 -https://www.oceanexpert.org/expert/748 -https://www.oceanexpert.org/expert/749 -https://www.oceanexpert.org/expert/750 -https://www.oceanexpert.org/expert/751 -https://www.oceanexpert.org/expert/756 -https://www.oceanexpert.org/expert/757 -https://www.oceanexpert.org/expert/758 -https://www.oceanexpert.org/expert/762 -https://www.oceanexpert.org/expert/777 -https://www.oceanexpert.org/expert/779 -https://www.oceanexpert.org/expert/781 -https://www.oceanexpert.org/expert/783 -https://www.oceanexpert.org/expert/785 -https://www.oceanexpert.org/expert/789 -https://www.oceanexpert.org/expert/807 -https://www.oceanexpert.org/expert/812 -https://www.oceanexpert.org/expert/817 -https://www.oceanexpert.org/expert/818 -https://www.oceanexpert.org/expert/821 -https://www.oceanexpert.org/expert/836 -https://www.oceanexpert.org/expert/851 -https://www.oceanexpert.org/expert/858 -https://www.oceanexpert.org/expert/865 -https://www.oceanexpert.org/expert/866 -https://www.oceanexpert.org/expert/869 -https://www.oceanexpert.org/expert/871 -https://www.oceanexpert.org/expert/881 -https://www.oceanexpert.org/expert/888 -https://www.oceanexpert.org/expert/892 -https://www.oceanexpert.org/expert/900 -https://www.oceanexpert.org/expert/904 -https://www.oceanexpert.org/expert/911 -https://www.oceanexpert.org/expert/936 -https://www.oceanexpert.org/expert/937 -https://www.oceanexpert.org/expert/942 -https://www.oceanexpert.org/expert/947 -https://www.oceanexpert.org/expert/968 -https://www.oceanexpert.org/expert/972 -https://www.oceanexpert.org/expert/973 -https://www.oceanexpert.org/expert/983 -https://www.oceanexpert.org/expert/985 -https://www.oceanexpert.org/expert/988 -https://www.oceanexpert.org/expert/990 -https://www.oceanexpert.org/expert/992 -https://www.oceanexpert.org/expert/1002 -https://www.oceanexpert.org/expert/1007 -https://www.oceanexpert.org/expert/1010 -https://www.oceanexpert.org/expert/1029 -https://www.oceanexpert.org/expert/1038 -https://www.oceanexpert.org/expert/1050 -https://www.oceanexpert.org/expert/1057 -https://www.oceanexpert.org/expert/1058 -https://www.oceanexpert.org/expert/1067 -https://www.oceanexpert.org/expert/1070 -https://www.oceanexpert.org/expert/1076 -https://www.oceanexpert.org/expert/1083 -https://www.oceanexpert.org/expert/1084 -https://www.oceanexpert.org/expert/1085 -https://www.oceanexpert.org/expert/1087 -https://www.oceanexpert.org/expert/1098 -https://www.oceanexpert.org/expert/1117 -https://www.oceanexpert.org/expert/1125 -https://www.oceanexpert.org/expert/1126 -https://www.oceanexpert.org/expert/1131 -https://www.oceanexpert.org/expert/1132 -https://www.oceanexpert.org/expert/1142 -https://www.oceanexpert.org/expert/1144 -https://www.oceanexpert.org/expert/1149 -https://www.oceanexpert.org/expert/1166 -https://www.oceanexpert.org/expert/1183 -https://www.oceanexpert.org/expert/1189 -https://www.oceanexpert.org/expert/1192 -https://www.oceanexpert.org/expert/1198 -https://www.oceanexpert.org/expert/1199 -https://www.oceanexpert.org/expert/1205 -https://www.oceanexpert.org/expert/1209 -https://www.oceanexpert.org/expert/1212 -https://www.oceanexpert.org/expert/1218 -https://www.oceanexpert.org/expert/1234 -https://www.oceanexpert.org/expert/1240 -https://www.oceanexpert.org/expert/1250 -https://www.oceanexpert.org/expert/1251 -https://www.oceanexpert.org/expert/1253 -https://www.oceanexpert.org/expert/1259 -https://www.oceanexpert.org/expert/1271 -https://www.oceanexpert.org/expert/1272 -https://www.oceanexpert.org/expert/1276 -https://www.oceanexpert.org/expert/1277 -https://www.oceanexpert.org/expert/1290 -https://www.oceanexpert.org/expert/1291 -https://www.oceanexpert.org/expert/1294 -https://www.oceanexpert.org/expert/1299 -https://www.oceanexpert.org/expert/1307 -https://www.oceanexpert.org/expert/1312 -https://www.oceanexpert.org/expert/1317 -https://www.oceanexpert.org/expert/1328 -https://www.oceanexpert.org/expert/1329 -https://www.oceanexpert.org/expert/1332 -https://www.oceanexpert.org/expert/1336 -https://www.oceanexpert.org/expert/1341 -https://www.oceanexpert.org/expert/1342 -https://www.oceanexpert.org/expert/1351 -https://www.oceanexpert.org/expert/1366 -https://www.oceanexpert.org/expert/1375 -https://www.oceanexpert.org/expert/1389 -https://www.oceanexpert.org/expert/1412 -https://www.oceanexpert.org/expert/1416 -https://www.oceanexpert.org/expert/1423 -https://www.oceanexpert.org/expert/1433 -https://www.oceanexpert.org/expert/1434 -https://www.oceanexpert.org/expert/1437 -https://www.oceanexpert.org/expert/1445 -https://www.oceanexpert.org/expert/1454 -https://www.oceanexpert.org/expert/1456 -https://www.oceanexpert.org/expert/1486 -https://www.oceanexpert.org/expert/1512 -https://www.oceanexpert.org/expert/1513 -https://www.oceanexpert.org/expert/1516 -https://www.oceanexpert.org/expert/1520 -https://www.oceanexpert.org/expert/1522 -https://www.oceanexpert.org/expert/1528 -https://www.oceanexpert.org/expert/1538 -https://www.oceanexpert.org/expert/1544 -https://www.oceanexpert.org/expert/1546 -https://www.oceanexpert.org/expert/1561 -https://www.oceanexpert.org/expert/1567 -https://www.oceanexpert.org/expert/1572 -https://www.oceanexpert.org/expert/1575 -https://www.oceanexpert.org/expert/1596 -https://www.oceanexpert.org/expert/1607 -https://www.oceanexpert.org/expert/1609 -https://www.oceanexpert.org/expert/1615 -https://www.oceanexpert.org/expert/1639 -https://www.oceanexpert.org/expert/1645 -https://www.oceanexpert.org/expert/1659 -https://www.oceanexpert.org/expert/1662 -https://www.oceanexpert.org/expert/1673 -https://www.oceanexpert.org/expert/1685 -https://www.oceanexpert.org/expert/1696 -https://www.oceanexpert.org/expert/1700 -https://www.oceanexpert.org/expert/1702 -https://www.oceanexpert.org/expert/1718 -https://www.oceanexpert.org/expert/1725 -https://www.oceanexpert.org/expert/1741 -https://www.oceanexpert.org/expert/1743 -https://www.oceanexpert.org/expert/1747 -https://www.oceanexpert.org/expert/1752 -https://www.oceanexpert.org/expert/1756 -https://www.oceanexpert.org/expert/1764 -https://www.oceanexpert.org/expert/1783 -https://www.oceanexpert.org/expert/1791 -https://www.oceanexpert.org/expert/1804 -https://www.oceanexpert.org/expert/1812 -https://www.oceanexpert.org/expert/1819 -https://www.oceanexpert.org/expert/1825 -https://www.oceanexpert.org/expert/1830 -https://www.oceanexpert.org/expert/1831 -https://www.oceanexpert.org/expert/1844 -https://www.oceanexpert.org/expert/1845 -https://www.oceanexpert.org/expert/1859 -https://www.oceanexpert.org/expert/1864 -https://www.oceanexpert.org/expert/1866 -https://www.oceanexpert.org/expert/1867 -https://www.oceanexpert.org/expert/1872 -https://www.oceanexpert.org/expert/1876 -https://www.oceanexpert.org/expert/1878 -https://www.oceanexpert.org/expert/1879 -https://www.oceanexpert.org/expert/1883 -https://www.oceanexpert.org/expert/1900 -https://www.oceanexpert.org/expert/1902 -https://www.oceanexpert.org/expert/1907 -https://www.oceanexpert.org/expert/1911 -https://www.oceanexpert.org/expert/1914 -https://www.oceanexpert.org/expert/1917 -https://www.oceanexpert.org/expert/1928 -https://www.oceanexpert.org/expert/1936 -https://www.oceanexpert.org/expert/1943 -https://www.oceanexpert.org/expert/1944 -https://www.oceanexpert.org/expert/1945 -https://www.oceanexpert.org/expert/1947 -https://www.oceanexpert.org/expert/1957 -https://www.oceanexpert.org/expert/1960 -https://www.oceanexpert.org/expert/1961 -https://www.oceanexpert.org/expert/1962 -https://www.oceanexpert.org/expert/1964 -https://www.oceanexpert.org/expert/1970 -https://www.oceanexpert.org/expert/1971 -https://www.oceanexpert.org/expert/1973 -https://www.oceanexpert.org/expert/1981 -https://www.oceanexpert.org/expert/1983 -https://www.oceanexpert.org/expert/1989 -https://www.oceanexpert.org/expert/1992 -https://www.oceanexpert.org/expert/1995 -https://www.oceanexpert.org/expert/1998 -https://www.oceanexpert.org/expert/2001 -https://www.oceanexpert.org/expert/2002 -https://www.oceanexpert.org/expert/2006 -https://www.oceanexpert.org/expert/2013 -https://www.oceanexpert.org/expert/2015 -https://www.oceanexpert.org/expert/2020 -https://www.oceanexpert.org/expert/2046 -https://www.oceanexpert.org/expert/2047 -https://www.oceanexpert.org/expert/2056 -https://www.oceanexpert.org/expert/2060 -https://www.oceanexpert.org/expert/2061 -https://www.oceanexpert.org/expert/2067 -https://www.oceanexpert.org/expert/2071 -https://www.oceanexpert.org/expert/2076 -https://www.oceanexpert.org/expert/2078 -https://www.oceanexpert.org/expert/2090 -https://www.oceanexpert.org/expert/2108 -https://www.oceanexpert.org/expert/2110 -https://www.oceanexpert.org/expert/2114 -https://www.oceanexpert.org/expert/2126 -https://www.oceanexpert.org/expert/2128 -https://www.oceanexpert.org/expert/2129 -https://www.oceanexpert.org/expert/2133 -https://www.oceanexpert.org/expert/2134 -https://www.oceanexpert.org/expert/2142 -https://www.oceanexpert.org/expert/2150 -https://www.oceanexpert.org/expert/2156 -https://www.oceanexpert.org/expert/2158 -https://www.oceanexpert.org/expert/2164 -https://www.oceanexpert.org/expert/2177 -https://www.oceanexpert.org/expert/2182 -https://www.oceanexpert.org/expert/2191 -https://www.oceanexpert.org/expert/2196 -https://www.oceanexpert.org/expert/2201 -https://www.oceanexpert.org/expert/2202 -https://www.oceanexpert.org/expert/2204 -https://www.oceanexpert.org/expert/2206 -https://www.oceanexpert.org/expert/2212 -https://www.oceanexpert.org/expert/2218 -https://www.oceanexpert.org/expert/2219 -https://www.oceanexpert.org/expert/2225 -https://www.oceanexpert.org/expert/2232 -https://www.oceanexpert.org/expert/2235 -https://www.oceanexpert.org/expert/2236 -https://www.oceanexpert.org/expert/2249 -https://www.oceanexpert.org/expert/2252 -https://www.oceanexpert.org/expert/2254 -https://www.oceanexpert.org/expert/2255 -https://www.oceanexpert.org/expert/2257 -https://www.oceanexpert.org/expert/2258 -https://www.oceanexpert.org/expert/2281 -https://www.oceanexpert.org/expert/2283 -https://www.oceanexpert.org/expert/2284 -https://www.oceanexpert.org/expert/2291 -https://www.oceanexpert.org/expert/2295 -https://www.oceanexpert.org/expert/2302 -https://www.oceanexpert.org/expert/2305 -https://www.oceanexpert.org/expert/2310 -https://www.oceanexpert.org/expert/2311 -https://www.oceanexpert.org/expert/2321 -https://www.oceanexpert.org/expert/2326 -https://www.oceanexpert.org/expert/2341 -https://www.oceanexpert.org/expert/2352 -https://www.oceanexpert.org/expert/2354 -https://www.oceanexpert.org/expert/2362 -https://www.oceanexpert.org/expert/2363 -https://www.oceanexpert.org/expert/2370 -https://www.oceanexpert.org/expert/2384 -https://www.oceanexpert.org/expert/2388 -https://www.oceanexpert.org/expert/2392 -https://www.oceanexpert.org/expert/2406 -https://www.oceanexpert.org/expert/2411 -https://www.oceanexpert.org/expert/2433 -https://www.oceanexpert.org/expert/2451 -https://www.oceanexpert.org/expert/2454 -https://www.oceanexpert.org/expert/2470 -https://www.oceanexpert.org/expert/2474 -https://www.oceanexpert.org/expert/2480 -https://www.oceanexpert.org/expert/2487 -https://www.oceanexpert.org/expert/2490 -https://www.oceanexpert.org/expert/2493 -https://www.oceanexpert.org/expert/2519 -https://www.oceanexpert.org/expert/2541 -https://www.oceanexpert.org/expert/2543 -https://www.oceanexpert.org/expert/2553 -https://www.oceanexpert.org/expert/2559 -https://www.oceanexpert.org/expert/2570 -https://www.oceanexpert.org/expert/2587 -https://www.oceanexpert.org/expert/2613 -https://www.oceanexpert.org/expert/2619 -https://www.oceanexpert.org/expert/2620 -https://www.oceanexpert.org/expert/2627 -https://www.oceanexpert.org/expert/2629 -https://www.oceanexpert.org/expert/2643 -https://www.oceanexpert.org/expert/2646 -https://www.oceanexpert.org/expert/2657 -https://www.oceanexpert.org/expert/2664 -https://www.oceanexpert.org/expert/2669 -https://www.oceanexpert.org/expert/2685 -https://www.oceanexpert.org/expert/2707 -https://www.oceanexpert.org/expert/2710 -https://www.oceanexpert.org/expert/2731 -https://www.oceanexpert.org/expert/2736 -https://www.oceanexpert.org/expert/2762 -https://www.oceanexpert.org/expert/2775 -https://www.oceanexpert.org/expert/2791 -https://www.oceanexpert.org/expert/2798 -https://www.oceanexpert.org/expert/2817 -https://www.oceanexpert.org/expert/2827 -https://www.oceanexpert.org/expert/2830 -https://www.oceanexpert.org/expert/2836 -https://www.oceanexpert.org/expert/2846 -https://www.oceanexpert.org/expert/2860 -https://www.oceanexpert.org/expert/2862 -https://www.oceanexpert.org/expert/2897 -https://www.oceanexpert.org/expert/2912 -https://www.oceanexpert.org/expert/2913 -https://www.oceanexpert.org/expert/2915 -https://www.oceanexpert.org/expert/2923 -https://www.oceanexpert.org/expert/2924 -https://www.oceanexpert.org/expert/2929 -https://www.oceanexpert.org/expert/2938 -https://www.oceanexpert.org/expert/2939 -https://www.oceanexpert.org/expert/2947 -https://www.oceanexpert.org/expert/2974 -https://www.oceanexpert.org/expert/2977 -https://www.oceanexpert.org/expert/2982 -https://www.oceanexpert.org/expert/3053 -https://www.oceanexpert.org/expert/3060 -https://www.oceanexpert.org/expert/3080 -https://www.oceanexpert.org/expert/3083 -https://www.oceanexpert.org/expert/3084 -https://www.oceanexpert.org/expert/3095 -https://www.oceanexpert.org/expert/3103 -https://www.oceanexpert.org/expert/3127 -https://www.oceanexpert.org/expert/3131 -https://www.oceanexpert.org/expert/3143 -https://www.oceanexpert.org/expert/3145 -https://www.oceanexpert.org/expert/3155 -https://www.oceanexpert.org/expert/3160 -https://www.oceanexpert.org/expert/3174 -https://www.oceanexpert.org/expert/3175 -https://www.oceanexpert.org/expert/3178 -https://www.oceanexpert.org/expert/3181 -https://www.oceanexpert.org/expert/3182 -https://www.oceanexpert.org/expert/3185 -https://www.oceanexpert.org/expert/3186 -https://www.oceanexpert.org/expert/3187 -https://www.oceanexpert.org/expert/3189 -https://www.oceanexpert.org/expert/3190 -https://www.oceanexpert.org/expert/3199 -https://www.oceanexpert.org/expert/3200 -https://www.oceanexpert.org/expert/3201 -https://www.oceanexpert.org/expert/3206 -https://www.oceanexpert.org/expert/3210 -https://www.oceanexpert.org/expert/3211 -https://www.oceanexpert.org/expert/3214 -https://www.oceanexpert.org/expert/3222 -https://www.oceanexpert.org/expert/3235 -https://www.oceanexpert.org/expert/3238 -https://www.oceanexpert.org/expert/3240 -https://www.oceanexpert.org/expert/3243 -https://www.oceanexpert.org/expert/3373 -https://www.oceanexpert.org/expert/3383 -https://www.oceanexpert.org/expert/3386 -https://www.oceanexpert.org/expert/3397 -https://www.oceanexpert.org/expert/3400 -https://www.oceanexpert.org/expert/3421 -https://www.oceanexpert.org/expert/3428 -https://www.oceanexpert.org/expert/3438 -https://www.oceanexpert.org/expert/3448 -https://www.oceanexpert.org/expert/3450 -https://www.oceanexpert.org/expert/3473 -https://www.oceanexpert.org/expert/3475 -https://www.oceanexpert.org/expert/3476 -https://www.oceanexpert.org/expert/3480 -https://www.oceanexpert.org/expert/3486 -https://www.oceanexpert.org/expert/3487 -https://www.oceanexpert.org/expert/3497 -https://www.oceanexpert.org/expert/3498 -https://www.oceanexpert.org/expert/3504 -https://www.oceanexpert.org/expert/3508 -https://www.oceanexpert.org/expert/3521 -https://www.oceanexpert.org/expert/3525 -https://www.oceanexpert.org/expert/3531 -https://www.oceanexpert.org/expert/3540 -https://www.oceanexpert.org/expert/3543 -https://www.oceanexpert.org/expert/3546 -https://www.oceanexpert.org/expert/3547 -https://www.oceanexpert.org/expert/3549 -https://www.oceanexpert.org/expert/3552 -https://www.oceanexpert.org/expert/3555 -https://www.oceanexpert.org/expert/3562 -https://www.oceanexpert.org/expert/3579 -https://www.oceanexpert.org/expert/3587 -https://www.oceanexpert.org/expert/3598 -https://www.oceanexpert.org/expert/3643 -https://www.oceanexpert.org/expert/3644 -https://www.oceanexpert.org/expert/3650 -https://www.oceanexpert.org/expert/3657 -https://www.oceanexpert.org/expert/3666 -https://www.oceanexpert.org/expert/3677 -https://www.oceanexpert.org/expert/3680 -https://www.oceanexpert.org/expert/3697 -https://www.oceanexpert.org/expert/3743 -https://www.oceanexpert.org/expert/3746 -https://www.oceanexpert.org/expert/3747 -https://www.oceanexpert.org/expert/3770 -https://www.oceanexpert.org/expert/3771 -https://www.oceanexpert.org/expert/3772 -https://www.oceanexpert.org/expert/3777 -https://www.oceanexpert.org/expert/3781 -https://www.oceanexpert.org/expert/3784 -https://www.oceanexpert.org/expert/3785 -https://www.oceanexpert.org/expert/3788 -https://www.oceanexpert.org/expert/3794 -https://www.oceanexpert.org/expert/3806 -https://www.oceanexpert.org/expert/3807 -https://www.oceanexpert.org/expert/3818 -https://www.oceanexpert.org/expert/3819 -https://www.oceanexpert.org/expert/3822 -https://www.oceanexpert.org/expert/3827 -https://www.oceanexpert.org/expert/3860 -https://www.oceanexpert.org/expert/3861 -https://www.oceanexpert.org/expert/3862 -https://www.oceanexpert.org/expert/3865 -https://www.oceanexpert.org/expert/3866 -https://www.oceanexpert.org/expert/3868 -https://www.oceanexpert.org/expert/3869 -https://www.oceanexpert.org/expert/3870 -https://www.oceanexpert.org/expert/3956 -https://www.oceanexpert.org/expert/3958 -https://www.oceanexpert.org/expert/3969 -https://www.oceanexpert.org/expert/3989 -https://www.oceanexpert.org/expert/3990 -https://www.oceanexpert.org/expert/3992 -https://www.oceanexpert.org/expert/3993 -https://www.oceanexpert.org/expert/4061 -https://www.oceanexpert.org/expert/4085 -https://www.oceanexpert.org/expert/4086 -https://www.oceanexpert.org/expert/4092 -https://www.oceanexpert.org/expert/4095 -https://www.oceanexpert.org/expert/4097 -https://www.oceanexpert.org/expert/4098 -https://www.oceanexpert.org/expert/4108 -https://www.oceanexpert.org/expert/4113 -https://www.oceanexpert.org/expert/4121 -https://www.oceanexpert.org/expert/4128 -https://www.oceanexpert.org/expert/4136 -https://www.oceanexpert.org/expert/4139 -https://www.oceanexpert.org/expert/4177 -https://www.oceanexpert.org/expert/4189 -https://www.oceanexpert.org/expert/4190 -https://www.oceanexpert.org/expert/4191 -https://www.oceanexpert.org/expert/4194 -https://www.oceanexpert.org/expert/4198 -https://www.oceanexpert.org/expert/4204 -https://www.oceanexpert.org/expert/4212 -https://www.oceanexpert.org/expert/4218 -https://www.oceanexpert.org/expert/4220 -https://www.oceanexpert.org/expert/4230 -https://www.oceanexpert.org/expert/4232 -https://www.oceanexpert.org/expert/4258 -https://www.oceanexpert.org/expert/4267 -https://www.oceanexpert.org/expert/4270 -https://www.oceanexpert.org/expert/4278 -https://www.oceanexpert.org/expert/4284 -https://www.oceanexpert.org/expert/4294 -https://www.oceanexpert.org/expert/4309 -https://www.oceanexpert.org/expert/4315 -https://www.oceanexpert.org/expert/4316 -https://www.oceanexpert.org/expert/4317 -https://www.oceanexpert.org/expert/4319 -https://www.oceanexpert.org/expert/4326 -https://www.oceanexpert.org/expert/4333 -https://www.oceanexpert.org/expert/4337 -https://www.oceanexpert.org/expert/4342 -https://www.oceanexpert.org/expert/4343 -https://www.oceanexpert.org/expert/4345 -https://www.oceanexpert.org/expert/4346 -https://www.oceanexpert.org/expert/4369 -https://www.oceanexpert.org/expert/4370 -https://www.oceanexpert.org/expert/4378 -https://www.oceanexpert.org/expert/4382 -https://www.oceanexpert.org/expert/4384 -https://www.oceanexpert.org/expert/4393 -https://www.oceanexpert.org/expert/4401 -https://www.oceanexpert.org/expert/4410 -https://www.oceanexpert.org/expert/4415 -https://www.oceanexpert.org/expert/4417 -https://www.oceanexpert.org/expert/4420 -https://www.oceanexpert.org/expert/4421 -https://www.oceanexpert.org/expert/4424 -https://www.oceanexpert.org/expert/4427 -https://www.oceanexpert.org/expert/4443 -https://www.oceanexpert.org/expert/4444 -https://www.oceanexpert.org/expert/4452 -https://www.oceanexpert.org/expert/4455 -https://www.oceanexpert.org/expert/4470 -https://www.oceanexpert.org/expert/4471 -https://www.oceanexpert.org/expert/4482 -https://www.oceanexpert.org/expert/4487 -https://www.oceanexpert.org/expert/4496 -https://www.oceanexpert.org/expert/4511 -https://www.oceanexpert.org/expert/4517 -https://www.oceanexpert.org/expert/4523 -https://www.oceanexpert.org/expert/4525 -https://www.oceanexpert.org/expert/4529 -https://www.oceanexpert.org/expert/4530 -https://www.oceanexpert.org/expert/4535 -https://www.oceanexpert.org/expert/4540 -https://www.oceanexpert.org/expert/4558 -https://www.oceanexpert.org/expert/4561 -https://www.oceanexpert.org/expert/4565 -https://www.oceanexpert.org/expert/4574 -https://www.oceanexpert.org/expert/4579 -https://www.oceanexpert.org/expert/4594 -https://www.oceanexpert.org/expert/4595 -https://www.oceanexpert.org/expert/4602 -https://www.oceanexpert.org/expert/4617 -https://www.oceanexpert.org/expert/4618 -https://www.oceanexpert.org/expert/4619 -https://www.oceanexpert.org/expert/4627 -https://www.oceanexpert.org/expert/4628 -https://www.oceanexpert.org/expert/4651 -https://www.oceanexpert.org/expert/4652 -https://www.oceanexpert.org/expert/4659 -https://www.oceanexpert.org/expert/4664 -https://www.oceanexpert.org/expert/4675 -https://www.oceanexpert.org/expert/4693 -https://www.oceanexpert.org/expert/4714 -https://www.oceanexpert.org/expert/4721 -https://www.oceanexpert.org/expert/4722 -https://www.oceanexpert.org/expert/4732 -https://www.oceanexpert.org/expert/4741 -https://www.oceanexpert.org/expert/4752 -https://www.oceanexpert.org/expert/4763 -https://www.oceanexpert.org/expert/4765 -https://www.oceanexpert.org/expert/4767 -https://www.oceanexpert.org/expert/4770 -https://www.oceanexpert.org/expert/4773 -https://www.oceanexpert.org/expert/4774 -https://www.oceanexpert.org/expert/4775 -https://www.oceanexpert.org/expert/4776 -https://www.oceanexpert.org/expert/4779 -https://www.oceanexpert.org/expert/4788 -https://www.oceanexpert.org/expert/4822 -https://www.oceanexpert.org/expert/4855 -https://www.oceanexpert.org/expert/4857 -https://www.oceanexpert.org/expert/4863 -https://www.oceanexpert.org/expert/4864 -https://www.oceanexpert.org/expert/4869 -https://www.oceanexpert.org/expert/4879 -https://www.oceanexpert.org/expert/4886 -https://www.oceanexpert.org/expert/4891 -https://www.oceanexpert.org/expert/4895 -https://www.oceanexpert.org/expert/4902 -https://www.oceanexpert.org/expert/4916 -https://www.oceanexpert.org/expert/4918 -https://www.oceanexpert.org/expert/4933 -https://www.oceanexpert.org/expert/4943 -https://www.oceanexpert.org/expert/4966 -https://www.oceanexpert.org/expert/4974 -https://www.oceanexpert.org/expert/4986 -https://www.oceanexpert.org/expert/5019 -https://www.oceanexpert.org/expert/5055 -https://www.oceanexpert.org/expert/5059 -https://www.oceanexpert.org/expert/5064 -https://www.oceanexpert.org/expert/5102 -https://www.oceanexpert.org/expert/5146 -https://www.oceanexpert.org/expert/5152 -https://www.oceanexpert.org/expert/5162 -https://www.oceanexpert.org/expert/5166 -https://www.oceanexpert.org/expert/5182 -https://www.oceanexpert.org/expert/5200 -https://www.oceanexpert.org/expert/5210 -https://www.oceanexpert.org/expert/5239 -https://www.oceanexpert.org/expert/5281 -https://www.oceanexpert.org/expert/5302 -https://www.oceanexpert.org/expert/5316 -https://www.oceanexpert.org/expert/5317 -https://www.oceanexpert.org/expert/5367 -https://www.oceanexpert.org/expert/5370 -https://www.oceanexpert.org/expert/5394 -https://www.oceanexpert.org/expert/5406 -https://www.oceanexpert.org/expert/5418 -https://www.oceanexpert.org/expert/5419 -https://www.oceanexpert.org/expert/5429 -https://www.oceanexpert.org/expert/5443 -https://www.oceanexpert.org/expert/5492 -https://www.oceanexpert.org/expert/5501 -https://www.oceanexpert.org/expert/5503 -https://www.oceanexpert.org/expert/5510 -https://www.oceanexpert.org/expert/5516 -https://www.oceanexpert.org/expert/5519 -https://www.oceanexpert.org/expert/5521 -https://www.oceanexpert.org/expert/5534 -https://www.oceanexpert.org/expert/5540 -https://www.oceanexpert.org/expert/5544 -https://www.oceanexpert.org/expert/5546 -https://www.oceanexpert.org/expert/5547 -https://www.oceanexpert.org/expert/5548 -https://www.oceanexpert.org/expert/5573 -https://www.oceanexpert.org/expert/5592 -https://www.oceanexpert.org/expert/5593 -https://www.oceanexpert.org/expert/5622 -https://www.oceanexpert.org/expert/5625 -https://www.oceanexpert.org/expert/5632 -https://www.oceanexpert.org/expert/5633 -https://www.oceanexpert.org/expert/5699 -https://www.oceanexpert.org/expert/5703 -https://www.oceanexpert.org/expert/5708 -https://www.oceanexpert.org/expert/5715 -https://www.oceanexpert.org/expert/5722 -https://www.oceanexpert.org/expert/5731 -https://www.oceanexpert.org/expert/5738 -https://www.oceanexpert.org/expert/5830 -https://www.oceanexpert.org/expert/5833 -https://www.oceanexpert.org/expert/5843 -https://www.oceanexpert.org/expert/5866 -https://www.oceanexpert.org/expert/5872 -https://www.oceanexpert.org/expert/5926 -https://www.oceanexpert.org/expert/5957 -https://www.oceanexpert.org/expert/5966 -https://www.oceanexpert.org/expert/5980 -https://www.oceanexpert.org/expert/6007 -https://www.oceanexpert.org/expert/6010 -https://www.oceanexpert.org/expert/6022 -https://www.oceanexpert.org/expert/6037 -https://www.oceanexpert.org/expert/6053 -https://www.oceanexpert.org/expert/6129 -https://www.oceanexpert.org/expert/6165 -https://www.oceanexpert.org/expert/6172 -https://www.oceanexpert.org/expert/6176 -https://www.oceanexpert.org/expert/6178 -https://www.oceanexpert.org/expert/6179 -https://www.oceanexpert.org/expert/6187 -https://www.oceanexpert.org/expert/6194 -https://www.oceanexpert.org/expert/6199 -https://www.oceanexpert.org/expert/6207 -https://www.oceanexpert.org/expert/6209 -https://www.oceanexpert.org/expert/6212 -https://www.oceanexpert.org/expert/6213 -https://www.oceanexpert.org/expert/6218 -https://www.oceanexpert.org/expert/6225 -https://www.oceanexpert.org/expert/6235 -https://www.oceanexpert.org/expert/6245 -https://www.oceanexpert.org/expert/6248 -https://www.oceanexpert.org/expert/6263 -https://www.oceanexpert.org/expert/6267 -https://www.oceanexpert.org/expert/6269 -https://www.oceanexpert.org/expert/6270 -https://www.oceanexpert.org/expert/6284 -https://www.oceanexpert.org/expert/6293 -https://www.oceanexpert.org/expert/6316 -https://www.oceanexpert.org/expert/6321 -https://www.oceanexpert.org/expert/6322 -https://www.oceanexpert.org/expert/6329 -https://www.oceanexpert.org/expert/6332 -https://www.oceanexpert.org/expert/6342 -https://www.oceanexpert.org/expert/6344 -https://www.oceanexpert.org/expert/6345 -https://www.oceanexpert.org/expert/6348 -https://www.oceanexpert.org/expert/6352 -https://www.oceanexpert.org/expert/6356 -https://www.oceanexpert.org/expert/6376 -https://www.oceanexpert.org/expert/6378 -https://www.oceanexpert.org/expert/6379 -https://www.oceanexpert.org/expert/6409 -https://www.oceanexpert.org/expert/6428 -https://www.oceanexpert.org/expert/6430 -https://www.oceanexpert.org/expert/6446 -https://www.oceanexpert.org/expert/6462 -https://www.oceanexpert.org/expert/6470 -https://www.oceanexpert.org/expert/6473 -https://www.oceanexpert.org/expert/6475 -https://www.oceanexpert.org/expert/6485 -https://www.oceanexpert.org/expert/6489 -https://www.oceanexpert.org/expert/6490 -https://www.oceanexpert.org/expert/6500 -https://www.oceanexpert.org/expert/6504 -https://www.oceanexpert.org/expert/6510 -https://www.oceanexpert.org/expert/6512 -https://www.oceanexpert.org/expert/6513 -https://www.oceanexpert.org/expert/6514 -https://www.oceanexpert.org/expert/6516 -https://www.oceanexpert.org/expert/6520 -https://www.oceanexpert.org/expert/6523 -https://www.oceanexpert.org/expert/6537 -https://www.oceanexpert.org/expert/6547 -https://www.oceanexpert.org/expert/6548 -https://www.oceanexpert.org/expert/6552 -https://www.oceanexpert.org/expert/6560 -https://www.oceanexpert.org/expert/6577 -https://www.oceanexpert.org/expert/6583 -https://www.oceanexpert.org/expert/6595 -https://www.oceanexpert.org/expert/6600 -https://www.oceanexpert.org/expert/6607 -https://www.oceanexpert.org/expert/6623 -https://www.oceanexpert.org/expert/6624 -https://www.oceanexpert.org/expert/6634 -https://www.oceanexpert.org/expert/6640 -https://www.oceanexpert.org/expert/6641 -https://www.oceanexpert.org/expert/6647 -https://www.oceanexpert.org/expert/6654 -https://www.oceanexpert.org/expert/6656 -https://www.oceanexpert.org/expert/6660 -https://www.oceanexpert.org/expert/6664 -https://www.oceanexpert.org/expert/6680 -https://www.oceanexpert.org/expert/6688 -https://www.oceanexpert.org/expert/6691 -https://www.oceanexpert.org/expert/6692 -https://www.oceanexpert.org/expert/6699 -https://www.oceanexpert.org/expert/6700 -https://www.oceanexpert.org/expert/6705 -https://www.oceanexpert.org/expert/6720 -https://www.oceanexpert.org/expert/6721 -https://www.oceanexpert.org/expert/6724 -https://www.oceanexpert.org/expert/6726 -https://www.oceanexpert.org/expert/6727 -https://www.oceanexpert.org/expert/6729 -https://www.oceanexpert.org/expert/6731 -https://www.oceanexpert.org/expert/6736 -https://www.oceanexpert.org/expert/6745 -https://www.oceanexpert.org/expert/6756 -https://www.oceanexpert.org/expert/6762 -https://www.oceanexpert.org/expert/6771 -https://www.oceanexpert.org/expert/6776 -https://www.oceanexpert.org/expert/6777 -https://www.oceanexpert.org/expert/6778 -https://www.oceanexpert.org/expert/6779 -https://www.oceanexpert.org/expert/6785 -https://www.oceanexpert.org/expert/6788 -https://www.oceanexpert.org/expert/6791 -https://www.oceanexpert.org/expert/6798 -https://www.oceanexpert.org/expert/6800 -https://www.oceanexpert.org/expert/6801 -https://www.oceanexpert.org/expert/6802 -https://www.oceanexpert.org/expert/6803 -https://www.oceanexpert.org/expert/6810 -https://www.oceanexpert.org/expert/6813 -https://www.oceanexpert.org/expert/6818 -https://www.oceanexpert.org/expert/6821 -https://www.oceanexpert.org/expert/6831 -https://www.oceanexpert.org/expert/6832 -https://www.oceanexpert.org/expert/6837 -https://www.oceanexpert.org/expert/6839 -https://www.oceanexpert.org/expert/6863 -https://www.oceanexpert.org/expert/6866 -https://www.oceanexpert.org/expert/6869 -https://www.oceanexpert.org/expert/6879 -https://www.oceanexpert.org/expert/6880 -https://www.oceanexpert.org/expert/6897 -https://www.oceanexpert.org/expert/6900 -https://www.oceanexpert.org/expert/6904 -https://www.oceanexpert.org/expert/6905 -https://www.oceanexpert.org/expert/6906 -https://www.oceanexpert.org/expert/6907 -https://www.oceanexpert.org/expert/6908 -https://www.oceanexpert.org/expert/6909 -https://www.oceanexpert.org/expert/6910 -https://www.oceanexpert.org/expert/6911 -https://www.oceanexpert.org/expert/6912 -https://www.oceanexpert.org/expert/6913 -https://www.oceanexpert.org/expert/6914 -https://www.oceanexpert.org/expert/6915 -https://www.oceanexpert.org/expert/6917 -https://www.oceanexpert.org/expert/6918 -https://www.oceanexpert.org/expert/6919 -https://www.oceanexpert.org/expert/6920 -https://www.oceanexpert.org/expert/6921 -https://www.oceanexpert.org/expert/6922 -https://www.oceanexpert.org/expert/6923 -https://www.oceanexpert.org/expert/6924 -https://www.oceanexpert.org/expert/6927 -https://www.oceanexpert.org/expert/6928 -https://www.oceanexpert.org/expert/6931 -https://www.oceanexpert.org/expert/6932 -https://www.oceanexpert.org/expert/6933 -https://www.oceanexpert.org/expert/6934 -https://www.oceanexpert.org/expert/6935 -https://www.oceanexpert.org/expert/6936 -https://www.oceanexpert.org/expert/6940 -https://www.oceanexpert.org/expert/6942 -https://www.oceanexpert.org/expert/6968 -https://www.oceanexpert.org/expert/6973 -https://www.oceanexpert.org/expert/6991 -https://www.oceanexpert.org/expert/6992 -https://www.oceanexpert.org/expert/6993 -https://www.oceanexpert.org/expert/6994 -https://www.oceanexpert.org/expert/6996 -https://www.oceanexpert.org/expert/6997 -https://www.oceanexpert.org/expert/7000 -https://www.oceanexpert.org/expert/7001 -https://www.oceanexpert.org/expert/7002 -https://www.oceanexpert.org/expert/7003 -https://www.oceanexpert.org/expert/7004 -https://www.oceanexpert.org/expert/7005 -https://www.oceanexpert.org/expert/7006 -https://www.oceanexpert.org/expert/7009 -https://www.oceanexpert.org/expert/7010 -https://www.oceanexpert.org/expert/7011 -https://www.oceanexpert.org/expert/7017 -https://www.oceanexpert.org/expert/7018 -https://www.oceanexpert.org/expert/7021 -https://www.oceanexpert.org/expert/7022 -https://www.oceanexpert.org/expert/7023 -https://www.oceanexpert.org/expert/7024 -https://www.oceanexpert.org/expert/7026 -https://www.oceanexpert.org/expert/7027 -https://www.oceanexpert.org/expert/7028 -https://www.oceanexpert.org/expert/7031 -https://www.oceanexpert.org/expert/7034 -https://www.oceanexpert.org/expert/7035 -https://www.oceanexpert.org/expert/7038 -https://www.oceanexpert.org/expert/7039 -https://www.oceanexpert.org/expert/7040 -https://www.oceanexpert.org/expert/7041 -https://www.oceanexpert.org/expert/7042 -https://www.oceanexpert.org/expert/7067 -https://www.oceanexpert.org/expert/7102 -https://www.oceanexpert.org/expert/7104 -https://www.oceanexpert.org/expert/7105 -https://www.oceanexpert.org/expert/7106 -https://www.oceanexpert.org/expert/7109 -https://www.oceanexpert.org/expert/7110 -https://www.oceanexpert.org/expert/7112 -https://www.oceanexpert.org/expert/7114 -https://www.oceanexpert.org/expert/7116 -https://www.oceanexpert.org/expert/7118 -https://www.oceanexpert.org/expert/7123 -https://www.oceanexpert.org/expert/7124 -https://www.oceanexpert.org/expert/7137 -https://www.oceanexpert.org/expert/7140 -https://www.oceanexpert.org/expert/7141 -https://www.oceanexpert.org/expert/7147 -https://www.oceanexpert.org/expert/7154 -https://www.oceanexpert.org/expert/7155 -https://www.oceanexpert.org/expert/7158 -https://www.oceanexpert.org/expert/7160 -https://www.oceanexpert.org/expert/7162 -https://www.oceanexpert.org/expert/7169 -https://www.oceanexpert.org/expert/7171 -https://www.oceanexpert.org/expert/7172 -https://www.oceanexpert.org/expert/7175 -https://www.oceanexpert.org/expert/7176 -https://www.oceanexpert.org/expert/7178 -https://www.oceanexpert.org/expert/7179 -https://www.oceanexpert.org/expert/7180 -https://www.oceanexpert.org/expert/7181 -https://www.oceanexpert.org/expert/7182 -https://www.oceanexpert.org/expert/7183 -https://www.oceanexpert.org/expert/7184 -https://www.oceanexpert.org/expert/7185 -https://www.oceanexpert.org/expert/7186 -https://www.oceanexpert.org/expert/7187 -https://www.oceanexpert.org/expert/7192 -https://www.oceanexpert.org/expert/7193 -https://www.oceanexpert.org/expert/7195 -https://www.oceanexpert.org/expert/7196 -https://www.oceanexpert.org/expert/7197 -https://www.oceanexpert.org/expert/7199 -https://www.oceanexpert.org/expert/7200 -https://www.oceanexpert.org/expert/7201 -https://www.oceanexpert.org/expert/7203 -https://www.oceanexpert.org/expert/7204 -https://www.oceanexpert.org/expert/7205 -https://www.oceanexpert.org/expert/7209 -https://www.oceanexpert.org/expert/7211 -https://www.oceanexpert.org/expert/7212 -https://www.oceanexpert.org/expert/7232 -https://www.oceanexpert.org/expert/7255 -https://www.oceanexpert.org/expert/7263 -https://www.oceanexpert.org/expert/7265 -https://www.oceanexpert.org/expert/7267 -https://www.oceanexpert.org/expert/7268 -https://www.oceanexpert.org/expert/7270 -https://www.oceanexpert.org/expert/7271 -https://www.oceanexpert.org/expert/7272 -https://www.oceanexpert.org/expert/7273 -https://www.oceanexpert.org/expert/7274 -https://www.oceanexpert.org/expert/7275 -https://www.oceanexpert.org/expert/7281 -https://www.oceanexpert.org/expert/7292 -https://www.oceanexpert.org/expert/7294 -https://www.oceanexpert.org/expert/7296 -https://www.oceanexpert.org/expert/7312 -https://www.oceanexpert.org/expert/7315 -https://www.oceanexpert.org/expert/7318 -https://www.oceanexpert.org/expert/7349 -https://www.oceanexpert.org/expert/7356 -https://www.oceanexpert.org/expert/7357 -https://www.oceanexpert.org/expert/7360 -https://www.oceanexpert.org/expert/7368 -https://www.oceanexpert.org/expert/7375 -https://www.oceanexpert.org/expert/7376 -https://www.oceanexpert.org/expert/7379 -https://www.oceanexpert.org/expert/7395 -https://www.oceanexpert.org/expert/7412 -https://www.oceanexpert.org/expert/7414 -https://www.oceanexpert.org/expert/7416 -https://www.oceanexpert.org/expert/7417 -https://www.oceanexpert.org/expert/7423 -https://www.oceanexpert.org/expert/7425 -https://www.oceanexpert.org/expert/7426 -https://www.oceanexpert.org/expert/7428 -https://www.oceanexpert.org/expert/7436 -https://www.oceanexpert.org/expert/7444 -https://www.oceanexpert.org/expert/7445 -https://www.oceanexpert.org/expert/7449 -https://www.oceanexpert.org/expert/7452 -https://www.oceanexpert.org/expert/7453 -https://www.oceanexpert.org/expert/7460 -https://www.oceanexpert.org/expert/7466 -https://www.oceanexpert.org/expert/7473 -https://www.oceanexpert.org/expert/7484 -https://www.oceanexpert.org/expert/7489 -https://www.oceanexpert.org/expert/7490 -https://www.oceanexpert.org/expert/7510 -https://www.oceanexpert.org/expert/7515 -https://www.oceanexpert.org/expert/7528 -https://www.oceanexpert.org/expert/7529 -https://www.oceanexpert.org/expert/7532 -https://www.oceanexpert.org/expert/7539 -https://www.oceanexpert.org/expert/7547 -https://www.oceanexpert.org/expert/7566 -https://www.oceanexpert.org/expert/7569 -https://www.oceanexpert.org/expert/7572 -https://www.oceanexpert.org/expert/7574 -https://www.oceanexpert.org/expert/7578 -https://www.oceanexpert.org/expert/7589 -https://www.oceanexpert.org/expert/7590 -https://www.oceanexpert.org/expert/7592 -https://www.oceanexpert.org/expert/7593 -https://www.oceanexpert.org/expert/7608 -https://www.oceanexpert.org/expert/7611 -https://www.oceanexpert.org/expert/7615 -https://www.oceanexpert.org/expert/7642 -https://www.oceanexpert.org/expert/7650 -https://www.oceanexpert.org/expert/7651 -https://www.oceanexpert.org/expert/7657 -https://www.oceanexpert.org/expert/7662 -https://www.oceanexpert.org/expert/7694 -https://www.oceanexpert.org/expert/7696 -https://www.oceanexpert.org/expert/7725 -https://www.oceanexpert.org/expert/7740 -https://www.oceanexpert.org/expert/7743 -https://www.oceanexpert.org/expert/7745 -https://www.oceanexpert.org/expert/7748 -https://www.oceanexpert.org/expert/7749 -https://www.oceanexpert.org/expert/7761 -https://www.oceanexpert.org/expert/7766 -https://www.oceanexpert.org/expert/7768 -https://www.oceanexpert.org/expert/7770 -https://www.oceanexpert.org/expert/7777 -https://www.oceanexpert.org/expert/7782 -https://www.oceanexpert.org/expert/7784 -https://www.oceanexpert.org/expert/7785 -https://www.oceanexpert.org/expert/7787 -https://www.oceanexpert.org/expert/7790 -https://www.oceanexpert.org/expert/7794 -https://www.oceanexpert.org/expert/7802 -https://www.oceanexpert.org/expert/7813 -https://www.oceanexpert.org/expert/7820 -https://www.oceanexpert.org/expert/7821 -https://www.oceanexpert.org/expert/7822 -https://www.oceanexpert.org/expert/7830 -https://www.oceanexpert.org/expert/7831 -https://www.oceanexpert.org/expert/7855 -https://www.oceanexpert.org/expert/7857 -https://www.oceanexpert.org/expert/7860 -https://www.oceanexpert.org/expert/7902 -https://www.oceanexpert.org/expert/7904 -https://www.oceanexpert.org/expert/7908 -https://www.oceanexpert.org/expert/7921 -https://www.oceanexpert.org/expert/7925 -https://www.oceanexpert.org/expert/7926 -https://www.oceanexpert.org/expert/7929 -https://www.oceanexpert.org/expert/7930 -https://www.oceanexpert.org/expert/7935 -https://www.oceanexpert.org/expert/7990 -https://www.oceanexpert.org/expert/8001 -https://www.oceanexpert.org/expert/8006 -https://www.oceanexpert.org/expert/8007 -https://www.oceanexpert.org/expert/8008 -https://www.oceanexpert.org/expert/8009 -https://www.oceanexpert.org/expert/8010 -https://www.oceanexpert.org/expert/8012 -https://www.oceanexpert.org/expert/8020 -https://www.oceanexpert.org/expert/8026 -https://www.oceanexpert.org/expert/8028 -https://www.oceanexpert.org/expert/8041 -https://www.oceanexpert.org/expert/8047 -https://www.oceanexpert.org/expert/8048 -https://www.oceanexpert.org/expert/8049 -https://www.oceanexpert.org/expert/8052 -https://www.oceanexpert.org/expert/8053 -https://www.oceanexpert.org/expert/8059 -https://www.oceanexpert.org/expert/8062 -https://www.oceanexpert.org/expert/8065 -https://www.oceanexpert.org/expert/8066 -https://www.oceanexpert.org/expert/8068 -https://www.oceanexpert.org/expert/8100 -https://www.oceanexpert.org/expert/8102 -https://www.oceanexpert.org/expert/8103 -https://www.oceanexpert.org/expert/8105 -https://www.oceanexpert.org/expert/8106 -https://www.oceanexpert.org/expert/8111 -https://www.oceanexpert.org/expert/8119 -https://www.oceanexpert.org/expert/8123 -https://www.oceanexpert.org/expert/8130 -https://www.oceanexpert.org/expert/8133 -https://www.oceanexpert.org/expert/8145 -https://www.oceanexpert.org/expert/8148 -https://www.oceanexpert.org/expert/8151 -https://www.oceanexpert.org/expert/8153 -https://www.oceanexpert.org/expert/8156 -https://www.oceanexpert.org/expert/8170 -https://www.oceanexpert.org/expert/8175 -https://www.oceanexpert.org/expert/8181 -https://www.oceanexpert.org/expert/8187 -https://www.oceanexpert.org/expert/8212 -https://www.oceanexpert.org/expert/8226 -https://www.oceanexpert.org/expert/8232 -https://www.oceanexpert.org/expert/8241 -https://www.oceanexpert.org/expert/8243 -https://www.oceanexpert.org/expert/8250 -https://www.oceanexpert.org/expert/8258 -https://www.oceanexpert.org/expert/8267 -https://www.oceanexpert.org/expert/8270 -https://www.oceanexpert.org/expert/8275 -https://www.oceanexpert.org/expert/8298 -https://www.oceanexpert.org/expert/8309 -https://www.oceanexpert.org/expert/8329 -https://www.oceanexpert.org/expert/8330 -https://www.oceanexpert.org/expert/8333 -https://www.oceanexpert.org/expert/8342 -https://www.oceanexpert.org/expert/8343 -https://www.oceanexpert.org/expert/8352 -https://www.oceanexpert.org/expert/8358 -https://www.oceanexpert.org/expert/8363 -https://www.oceanexpert.org/expert/8373 -https://www.oceanexpert.org/expert/8398 -https://www.oceanexpert.org/expert/8400 -https://www.oceanexpert.org/expert/8401 -https://www.oceanexpert.org/expert/8413 -https://www.oceanexpert.org/expert/8423 -https://www.oceanexpert.org/expert/8427 -https://www.oceanexpert.org/expert/8437 -https://www.oceanexpert.org/expert/8441 -https://www.oceanexpert.org/expert/8445 -https://www.oceanexpert.org/expert/8451 -https://www.oceanexpert.org/expert/8455 -https://www.oceanexpert.org/expert/8460 -https://www.oceanexpert.org/expert/8487 -https://www.oceanexpert.org/expert/8496 -https://www.oceanexpert.org/expert/8514 -https://www.oceanexpert.org/expert/8518 -https://www.oceanexpert.org/expert/8522 -https://www.oceanexpert.org/expert/8523 -https://www.oceanexpert.org/expert/8524 -https://www.oceanexpert.org/expert/8526 -https://www.oceanexpert.org/expert/8537 -https://www.oceanexpert.org/expert/8555 -https://www.oceanexpert.org/expert/8574 -https://www.oceanexpert.org/expert/8577 -https://www.oceanexpert.org/expert/8578 -https://www.oceanexpert.org/expert/8596 -https://www.oceanexpert.org/expert/8598 -https://www.oceanexpert.org/expert/8600 -https://www.oceanexpert.org/expert/8616 -https://www.oceanexpert.org/expert/8619 -https://www.oceanexpert.org/expert/8625 -https://www.oceanexpert.org/expert/8629 -https://www.oceanexpert.org/expert/8633 -https://www.oceanexpert.org/expert/8634 -https://www.oceanexpert.org/expert/8639 -https://www.oceanexpert.org/expert/8641 -https://www.oceanexpert.org/expert/8650 -https://www.oceanexpert.org/expert/8652 -https://www.oceanexpert.org/expert/8653 -https://www.oceanexpert.org/expert/8654 -https://www.oceanexpert.org/expert/8656 -https://www.oceanexpert.org/expert/8657 -https://www.oceanexpert.org/expert/8662 -https://www.oceanexpert.org/expert/8667 -https://www.oceanexpert.org/expert/8671 -https://www.oceanexpert.org/expert/8674 -https://www.oceanexpert.org/expert/8677 -https://www.oceanexpert.org/expert/8685 -https://www.oceanexpert.org/expert/8688 -https://www.oceanexpert.org/expert/8695 -https://www.oceanexpert.org/expert/8696 -https://www.oceanexpert.org/expert/8697 -https://www.oceanexpert.org/expert/8700 -https://www.oceanexpert.org/expert/8704 -https://www.oceanexpert.org/expert/8706 -https://www.oceanexpert.org/expert/8709 -https://www.oceanexpert.org/expert/8711 -https://www.oceanexpert.org/expert/8712 -https://www.oceanexpert.org/expert/8722 -https://www.oceanexpert.org/expert/8724 -https://www.oceanexpert.org/expert/8733 -https://www.oceanexpert.org/expert/8736 -https://www.oceanexpert.org/expert/8738 -https://www.oceanexpert.org/expert/8744 -https://www.oceanexpert.org/expert/8747 -https://www.oceanexpert.org/expert/8756 -https://www.oceanexpert.org/expert/8757 -https://www.oceanexpert.org/expert/8758 -https://www.oceanexpert.org/expert/8761 -https://www.oceanexpert.org/expert/8764 -https://www.oceanexpert.org/expert/8768 -https://www.oceanexpert.org/expert/8773 -https://www.oceanexpert.org/expert/8784 -https://www.oceanexpert.org/expert/8786 -https://www.oceanexpert.org/expert/8797 -https://www.oceanexpert.org/expert/8807 -https://www.oceanexpert.org/expert/8812 -https://www.oceanexpert.org/expert/8813 -https://www.oceanexpert.org/expert/8814 -https://www.oceanexpert.org/expert/8819 -https://www.oceanexpert.org/expert/8820 -https://www.oceanexpert.org/expert/8825 -https://www.oceanexpert.org/expert/8843 -https://www.oceanexpert.org/expert/8850 -https://www.oceanexpert.org/expert/8858 -https://www.oceanexpert.org/expert/8861 -https://www.oceanexpert.org/expert/8862 -https://www.oceanexpert.org/expert/8863 -https://www.oceanexpert.org/expert/8877 -https://www.oceanexpert.org/expert/8882 -https://www.oceanexpert.org/expert/8887 -https://www.oceanexpert.org/expert/8888 -https://www.oceanexpert.org/expert/8889 -https://www.oceanexpert.org/expert/8896 -https://www.oceanexpert.org/expert/8902 -https://www.oceanexpert.org/expert/8935 -https://www.oceanexpert.org/expert/8949 -https://www.oceanexpert.org/expert/8950 -https://www.oceanexpert.org/expert/8952 -https://www.oceanexpert.org/expert/8957 -https://www.oceanexpert.org/expert/8961 -https://www.oceanexpert.org/expert/9038 -https://www.oceanexpert.org/expert/9039 -https://www.oceanexpert.org/expert/9041 -https://www.oceanexpert.org/expert/9044 -https://www.oceanexpert.org/expert/9047 -https://www.oceanexpert.org/expert/9059 -https://www.oceanexpert.org/expert/9085 -https://www.oceanexpert.org/expert/9091 -https://www.oceanexpert.org/expert/9092 -https://www.oceanexpert.org/expert/9102 -https://www.oceanexpert.org/expert/9114 -https://www.oceanexpert.org/expert/9131 -https://www.oceanexpert.org/expert/9134 -https://www.oceanexpert.org/expert/9136 -https://www.oceanexpert.org/expert/9148 -https://www.oceanexpert.org/expert/9160 -https://www.oceanexpert.org/expert/9162 -https://www.oceanexpert.org/expert/9163 -https://www.oceanexpert.org/expert/9173 -https://www.oceanexpert.org/expert/9177 -https://www.oceanexpert.org/expert/9194 -https://www.oceanexpert.org/expert/9198 -https://www.oceanexpert.org/expert/9199 -https://www.oceanexpert.org/expert/9207 -https://www.oceanexpert.org/expert/9217 -https://www.oceanexpert.org/expert/9222 -https://www.oceanexpert.org/expert/9233 -https://www.oceanexpert.org/expert/9236 -https://www.oceanexpert.org/expert/9247 -https://www.oceanexpert.org/expert/9250 -https://www.oceanexpert.org/expert/9273 -https://www.oceanexpert.org/expert/9278 -https://www.oceanexpert.org/expert/9306 -https://www.oceanexpert.org/expert/9310 -https://www.oceanexpert.org/expert/9318 -https://www.oceanexpert.org/expert/9319 -https://www.oceanexpert.org/expert/9320 -https://www.oceanexpert.org/expert/9385 -https://www.oceanexpert.org/expert/9389 -https://www.oceanexpert.org/expert/9469 -https://www.oceanexpert.org/expert/9477 -https://www.oceanexpert.org/expert/9484 -https://www.oceanexpert.org/expert/9498 -https://www.oceanexpert.org/expert/9501 -https://www.oceanexpert.org/expert/9502 -https://www.oceanexpert.org/expert/9510 -https://www.oceanexpert.org/expert/9521 -https://www.oceanexpert.org/expert/9527 -https://www.oceanexpert.org/expert/9544 -https://www.oceanexpert.org/expert/9545 -https://www.oceanexpert.org/expert/9546 -https://www.oceanexpert.org/expert/9549 -https://www.oceanexpert.org/expert/9556 -https://www.oceanexpert.org/expert/9567 -https://www.oceanexpert.org/expert/9574 -https://www.oceanexpert.org/expert/9580 -https://www.oceanexpert.org/expert/9582 -https://www.oceanexpert.org/expert/9585 -https://www.oceanexpert.org/expert/9592 -https://www.oceanexpert.org/expert/9619 -https://www.oceanexpert.org/expert/9622 -https://www.oceanexpert.org/expert/9634 -https://www.oceanexpert.org/expert/9648 -https://www.oceanexpert.org/expert/9660 -https://www.oceanexpert.org/expert/9730 -https://www.oceanexpert.org/expert/9803 -https://www.oceanexpert.org/expert/9809 -https://www.oceanexpert.org/expert/9862 -https://www.oceanexpert.org/expert/9888 -https://www.oceanexpert.org/expert/9904 -https://www.oceanexpert.org/expert/10046 -https://www.oceanexpert.org/expert/10052 -https://www.oceanexpert.org/expert/10070 -https://www.oceanexpert.org/expert/10086 -https://www.oceanexpert.org/expert/10112 -https://www.oceanexpert.org/expert/10150 -https://www.oceanexpert.org/expert/10162 -https://www.oceanexpert.org/expert/10177 -https://www.oceanexpert.org/expert/10200 -https://www.oceanexpert.org/expert/10223 -https://www.oceanexpert.org/expert/10224 -https://www.oceanexpert.org/expert/10247 -https://www.oceanexpert.org/expert/10257 -https://www.oceanexpert.org/expert/10272 -https://www.oceanexpert.org/expert/10285 -https://www.oceanexpert.org/expert/10303 -https://www.oceanexpert.org/expert/10325 -https://www.oceanexpert.org/expert/10381 -https://www.oceanexpert.org/expert/10383 -https://www.oceanexpert.org/expert/10444 -https://www.oceanexpert.org/expert/10521 -https://www.oceanexpert.org/expert/10549 -https://www.oceanexpert.org/expert/10551 -https://www.oceanexpert.org/expert/10552 -https://www.oceanexpert.org/expert/10566 -https://www.oceanexpert.org/expert/10613 -https://www.oceanexpert.org/expert/10646 -https://www.oceanexpert.org/expert/10675 -https://www.oceanexpert.org/expert/10696 -https://www.oceanexpert.org/expert/10697 -https://www.oceanexpert.org/expert/10699 -https://www.oceanexpert.org/expert/10701 -https://www.oceanexpert.org/expert/10706 -https://www.oceanexpert.org/expert/10707 -https://www.oceanexpert.org/expert/10727 -https://www.oceanexpert.org/expert/10728 -https://www.oceanexpert.org/expert/10735 -https://www.oceanexpert.org/expert/10744 -https://www.oceanexpert.org/expert/10748 -https://www.oceanexpert.org/expert/10777 -https://www.oceanexpert.org/expert/10780 -https://www.oceanexpert.org/expert/10783 -https://www.oceanexpert.org/expert/10790 -https://www.oceanexpert.org/expert/10796 -https://www.oceanexpert.org/expert/10808 -https://www.oceanexpert.org/expert/10813 -https://www.oceanexpert.org/expert/10828 -https://www.oceanexpert.org/expert/10832 -https://www.oceanexpert.org/expert/10838 -https://www.oceanexpert.org/expert/10839 -https://www.oceanexpert.org/expert/10847 -https://www.oceanexpert.org/expert/10848 -https://www.oceanexpert.org/expert/10849 -https://www.oceanexpert.org/expert/10851 -https://www.oceanexpert.org/expert/10852 -https://www.oceanexpert.org/expert/10869 -https://www.oceanexpert.org/expert/10885 -https://www.oceanexpert.org/expert/10895 -https://www.oceanexpert.org/expert/10904 -https://www.oceanexpert.org/expert/10908 -https://www.oceanexpert.org/expert/10912 -https://www.oceanexpert.org/expert/10913 -https://www.oceanexpert.org/expert/10929 -https://www.oceanexpert.org/expert/10936 -https://www.oceanexpert.org/expert/10941 -https://www.oceanexpert.org/expert/10943 -https://www.oceanexpert.org/expert/10959 -https://www.oceanexpert.org/expert/10975 -https://www.oceanexpert.org/expert/10976 -https://www.oceanexpert.org/expert/10983 -https://www.oceanexpert.org/expert/10988 -https://www.oceanexpert.org/expert/10989 -https://www.oceanexpert.org/expert/11001 -https://www.oceanexpert.org/expert/11003 -https://www.oceanexpert.org/expert/11012 -https://www.oceanexpert.org/expert/11013 -https://www.oceanexpert.org/expert/11014 -https://www.oceanexpert.org/expert/11020 -https://www.oceanexpert.org/expert/11021 -https://www.oceanexpert.org/expert/11025 -https://www.oceanexpert.org/expert/11026 -https://www.oceanexpert.org/expert/11027 -https://www.oceanexpert.org/expert/11035 -https://www.oceanexpert.org/expert/11037 -https://www.oceanexpert.org/expert/11040 -https://www.oceanexpert.org/expert/11041 -https://www.oceanexpert.org/expert/11047 -https://www.oceanexpert.org/expert/11048 -https://www.oceanexpert.org/expert/11051 -https://www.oceanexpert.org/expert/11057 -https://www.oceanexpert.org/expert/11058 -https://www.oceanexpert.org/expert/11061 -https://www.oceanexpert.org/expert/11067 -https://www.oceanexpert.org/expert/11071 -https://www.oceanexpert.org/expert/11072 -https://www.oceanexpert.org/expert/11073 -https://www.oceanexpert.org/expert/11088 -https://www.oceanexpert.org/expert/11091 -https://www.oceanexpert.org/expert/11094 -https://www.oceanexpert.org/expert/11095 -https://www.oceanexpert.org/expert/11098 -https://www.oceanexpert.org/expert/11101 -https://www.oceanexpert.org/expert/11103 -https://www.oceanexpert.org/expert/11104 -https://www.oceanexpert.org/expert/11115 -https://www.oceanexpert.org/expert/11117 -https://www.oceanexpert.org/expert/11138 -https://www.oceanexpert.org/expert/11155 -https://www.oceanexpert.org/expert/11157 -https://www.oceanexpert.org/expert/11159 -https://www.oceanexpert.org/expert/11162 -https://www.oceanexpert.org/expert/11163 -https://www.oceanexpert.org/expert/11168 -https://www.oceanexpert.org/expert/11171 -https://www.oceanexpert.org/expert/11173 -https://www.oceanexpert.org/expert/11179 -https://www.oceanexpert.org/expert/11180 -https://www.oceanexpert.org/expert/11184 -https://www.oceanexpert.org/expert/11185 -https://www.oceanexpert.org/expert/11190 -https://www.oceanexpert.org/expert/11191 -https://www.oceanexpert.org/expert/11192 -https://www.oceanexpert.org/expert/11193 -https://www.oceanexpert.org/expert/11195 -https://www.oceanexpert.org/expert/11197 -https://www.oceanexpert.org/expert/11198 -https://www.oceanexpert.org/expert/11203 -https://www.oceanexpert.org/expert/11204 -https://www.oceanexpert.org/expert/11205 -https://www.oceanexpert.org/expert/11206 -https://www.oceanexpert.org/expert/11209 -https://www.oceanexpert.org/expert/11213 -https://www.oceanexpert.org/expert/11214 -https://www.oceanexpert.org/expert/11217 -https://www.oceanexpert.org/expert/11218 -https://www.oceanexpert.org/expert/11223 -https://www.oceanexpert.org/expert/11224 -https://www.oceanexpert.org/expert/11226 -https://www.oceanexpert.org/expert/11230 -https://www.oceanexpert.org/expert/11234 -https://www.oceanexpert.org/expert/11237 -https://www.oceanexpert.org/expert/11240 -https://www.oceanexpert.org/expert/11242 -https://www.oceanexpert.org/expert/11243 -https://www.oceanexpert.org/expert/11245 -https://www.oceanexpert.org/expert/11248 -https://www.oceanexpert.org/expert/11249 -https://www.oceanexpert.org/expert/11250 -https://www.oceanexpert.org/expert/11262 -https://www.oceanexpert.org/expert/11265 -https://www.oceanexpert.org/expert/11268 -https://www.oceanexpert.org/expert/11273 -https://www.oceanexpert.org/expert/11276 -https://www.oceanexpert.org/expert/11277 -https://www.oceanexpert.org/expert/11282 -https://www.oceanexpert.org/expert/11284 -https://www.oceanexpert.org/expert/11286 -https://www.oceanexpert.org/expert/11287 -https://www.oceanexpert.org/expert/11291 -https://www.oceanexpert.org/expert/11295 -https://www.oceanexpert.org/expert/11298 -https://www.oceanexpert.org/expert/11300 -https://www.oceanexpert.org/expert/11301 -https://www.oceanexpert.org/expert/11316 -https://www.oceanexpert.org/expert/11320 -https://www.oceanexpert.org/expert/11323 -https://www.oceanexpert.org/expert/11325 -https://www.oceanexpert.org/expert/11326 -https://www.oceanexpert.org/expert/11328 -https://www.oceanexpert.org/expert/11335 -https://www.oceanexpert.org/expert/11343 -https://www.oceanexpert.org/expert/11344 -https://www.oceanexpert.org/expert/11351 -https://www.oceanexpert.org/expert/11363 -https://www.oceanexpert.org/expert/11367 -https://www.oceanexpert.org/expert/11372 -https://www.oceanexpert.org/expert/11373 -https://www.oceanexpert.org/expert/11379 -https://www.oceanexpert.org/expert/11383 -https://www.oceanexpert.org/expert/11386 -https://www.oceanexpert.org/expert/11390 -https://www.oceanexpert.org/expert/11401 -https://www.oceanexpert.org/expert/11409 -https://www.oceanexpert.org/expert/11411 -https://www.oceanexpert.org/expert/11415 -https://www.oceanexpert.org/expert/11423 -https://www.oceanexpert.org/expert/11424 -https://www.oceanexpert.org/expert/11427 -https://www.oceanexpert.org/expert/11443 -https://www.oceanexpert.org/expert/11444 -https://www.oceanexpert.org/expert/11449 -https://www.oceanexpert.org/expert/11453 -https://www.oceanexpert.org/expert/11455 -https://www.oceanexpert.org/expert/11461 -https://www.oceanexpert.org/expert/11466 -https://www.oceanexpert.org/expert/11467 -https://www.oceanexpert.org/expert/11471 -https://www.oceanexpert.org/expert/11473 -https://www.oceanexpert.org/expert/11479 -https://www.oceanexpert.org/expert/11482 -https://www.oceanexpert.org/expert/11484 -https://www.oceanexpert.org/expert/11489 -https://www.oceanexpert.org/expert/11490 -https://www.oceanexpert.org/expert/11494 -https://www.oceanexpert.org/expert/11495 -https://www.oceanexpert.org/expert/11498 -https://www.oceanexpert.org/expert/11506 -https://www.oceanexpert.org/expert/11507 -https://www.oceanexpert.org/expert/11508 -https://www.oceanexpert.org/expert/11515 -https://www.oceanexpert.org/expert/11524 -https://www.oceanexpert.org/expert/11525 -https://www.oceanexpert.org/expert/11527 -https://www.oceanexpert.org/expert/11529 -https://www.oceanexpert.org/expert/11530 -https://www.oceanexpert.org/expert/11534 -https://www.oceanexpert.org/expert/11540 -https://www.oceanexpert.org/expert/11541 -https://www.oceanexpert.org/expert/11542 -https://www.oceanexpert.org/expert/11544 -https://www.oceanexpert.org/expert/11549 -https://www.oceanexpert.org/expert/11551 -https://www.oceanexpert.org/expert/11554 -https://www.oceanexpert.org/expert/11557 -https://www.oceanexpert.org/expert/11559 -https://www.oceanexpert.org/expert/11564 -https://www.oceanexpert.org/expert/11572 -https://www.oceanexpert.org/expert/11577 -https://www.oceanexpert.org/expert/11578 -https://www.oceanexpert.org/expert/11583 -https://www.oceanexpert.org/expert/11585 -https://www.oceanexpert.org/expert/11586 -https://www.oceanexpert.org/expert/11592 -https://www.oceanexpert.org/expert/11595 -https://www.oceanexpert.org/expert/11606 -https://www.oceanexpert.org/expert/11610 -https://www.oceanexpert.org/expert/11618 -https://www.oceanexpert.org/expert/11623 -https://www.oceanexpert.org/expert/11631 -https://www.oceanexpert.org/expert/11635 -https://www.oceanexpert.org/expert/11638 -https://www.oceanexpert.org/expert/11641 -https://www.oceanexpert.org/expert/11643 -https://www.oceanexpert.org/expert/11644 -https://www.oceanexpert.org/expert/11648 -https://www.oceanexpert.org/expert/11652 -https://www.oceanexpert.org/expert/11656 -https://www.oceanexpert.org/expert/11682 -https://www.oceanexpert.org/expert/11693 -https://www.oceanexpert.org/expert/11695 -https://www.oceanexpert.org/expert/11696 -https://www.oceanexpert.org/expert/11697 -https://www.oceanexpert.org/expert/11701 -https://www.oceanexpert.org/expert/11703 -https://www.oceanexpert.org/expert/11704 -https://www.oceanexpert.org/expert/11706 -https://www.oceanexpert.org/expert/11711 -https://www.oceanexpert.org/expert/11713 -https://www.oceanexpert.org/expert/11721 -https://www.oceanexpert.org/expert/11728 -https://www.oceanexpert.org/expert/11731 -https://www.oceanexpert.org/expert/11739 -https://www.oceanexpert.org/expert/11740 -https://www.oceanexpert.org/expert/11741 -https://www.oceanexpert.org/expert/11742 -https://www.oceanexpert.org/expert/11743 -https://www.oceanexpert.org/expert/11744 -https://www.oceanexpert.org/expert/11746 -https://www.oceanexpert.org/expert/11748 -https://www.oceanexpert.org/expert/11749 -https://www.oceanexpert.org/expert/11761 -https://www.oceanexpert.org/expert/11763 -https://www.oceanexpert.org/expert/11768 -https://www.oceanexpert.org/expert/11769 -https://www.oceanexpert.org/expert/11770 -https://www.oceanexpert.org/expert/11771 -https://www.oceanexpert.org/expert/11777 -https://www.oceanexpert.org/expert/11785 -https://www.oceanexpert.org/expert/11788 -https://www.oceanexpert.org/expert/11790 -https://www.oceanexpert.org/expert/11799 -https://www.oceanexpert.org/expert/11815 -https://www.oceanexpert.org/expert/11818 -https://www.oceanexpert.org/expert/11823 -https://www.oceanexpert.org/expert/11830 -https://www.oceanexpert.org/expert/11832 -https://www.oceanexpert.org/expert/11834 -https://www.oceanexpert.org/expert/11835 -https://www.oceanexpert.org/expert/11840 -https://www.oceanexpert.org/expert/11843 -https://www.oceanexpert.org/expert/11848 -https://www.oceanexpert.org/expert/11850 -https://www.oceanexpert.org/expert/11857 -https://www.oceanexpert.org/expert/11858 -https://www.oceanexpert.org/expert/11859 -https://www.oceanexpert.org/expert/11863 -https://www.oceanexpert.org/expert/11873 -https://www.oceanexpert.org/expert/11876 -https://www.oceanexpert.org/expert/11881 -https://www.oceanexpert.org/expert/11903 -https://www.oceanexpert.org/expert/11904 -https://www.oceanexpert.org/expert/11906 -https://www.oceanexpert.org/expert/11907 -https://www.oceanexpert.org/expert/11914 -https://www.oceanexpert.org/expert/11924 -https://www.oceanexpert.org/expert/11925 -https://www.oceanexpert.org/expert/11934 -https://www.oceanexpert.org/expert/11937 -https://www.oceanexpert.org/expert/11945 -https://www.oceanexpert.org/expert/11946 -https://www.oceanexpert.org/expert/11947 -https://www.oceanexpert.org/expert/11949 -https://www.oceanexpert.org/expert/11951 -https://www.oceanexpert.org/expert/11956 -https://www.oceanexpert.org/expert/11957 -https://www.oceanexpert.org/expert/11963 -https://www.oceanexpert.org/expert/11968 -https://www.oceanexpert.org/expert/11986 -https://www.oceanexpert.org/expert/11993 -https://www.oceanexpert.org/expert/12004 -https://www.oceanexpert.org/expert/12005 -https://www.oceanexpert.org/expert/12007 -https://www.oceanexpert.org/expert/12010 -https://www.oceanexpert.org/expert/12011 -https://www.oceanexpert.org/expert/12012 -https://www.oceanexpert.org/expert/12017 -https://www.oceanexpert.org/expert/12019 -https://www.oceanexpert.org/expert/12024 -https://www.oceanexpert.org/expert/12029 -https://www.oceanexpert.org/expert/12032 -https://www.oceanexpert.org/expert/12035 -https://www.oceanexpert.org/expert/12039 -https://www.oceanexpert.org/expert/12040 -https://www.oceanexpert.org/expert/12043 -https://www.oceanexpert.org/expert/12045 -https://www.oceanexpert.org/expert/12048 -https://www.oceanexpert.org/expert/12052 -https://www.oceanexpert.org/expert/12063 -https://www.oceanexpert.org/expert/12071 -https://www.oceanexpert.org/expert/12073 -https://www.oceanexpert.org/expert/12076 -https://www.oceanexpert.org/expert/12080 -https://www.oceanexpert.org/expert/12086 -https://www.oceanexpert.org/expert/12088 -https://www.oceanexpert.org/expert/12092 -https://www.oceanexpert.org/expert/12093 -https://www.oceanexpert.org/expert/12096 -https://www.oceanexpert.org/expert/12099 -https://www.oceanexpert.org/expert/12102 -https://www.oceanexpert.org/expert/12111 -https://www.oceanexpert.org/expert/12112 -https://www.oceanexpert.org/expert/12117 -https://www.oceanexpert.org/expert/12118 -https://www.oceanexpert.org/expert/12119 -https://www.oceanexpert.org/expert/12121 -https://www.oceanexpert.org/expert/12122 -https://www.oceanexpert.org/expert/12123 -https://www.oceanexpert.org/expert/12124 -https://www.oceanexpert.org/expert/12126 -https://www.oceanexpert.org/expert/12127 -https://www.oceanexpert.org/expert/12144 -https://www.oceanexpert.org/expert/12147 -https://www.oceanexpert.org/expert/12150 -https://www.oceanexpert.org/expert/12151 -https://www.oceanexpert.org/expert/12152 -https://www.oceanexpert.org/expert/12156 -https://www.oceanexpert.org/expert/12157 -https://www.oceanexpert.org/expert/12162 -https://www.oceanexpert.org/expert/12166 -https://www.oceanexpert.org/expert/12167 -https://www.oceanexpert.org/expert/12168 -https://www.oceanexpert.org/expert/12173 -https://www.oceanexpert.org/expert/12175 -https://www.oceanexpert.org/expert/12177 -https://www.oceanexpert.org/expert/12178 -https://www.oceanexpert.org/expert/12179 -https://www.oceanexpert.org/expert/12180 -https://www.oceanexpert.org/expert/12190 -https://www.oceanexpert.org/expert/12193 -https://www.oceanexpert.org/expert/12197 -https://www.oceanexpert.org/expert/12201 -https://www.oceanexpert.org/expert/12202 -https://www.oceanexpert.org/expert/12211 -https://www.oceanexpert.org/expert/12215 -https://www.oceanexpert.org/expert/12226 -https://www.oceanexpert.org/expert/12227 -https://www.oceanexpert.org/expert/12231 -https://www.oceanexpert.org/expert/12232 -https://www.oceanexpert.org/expert/12235 -https://www.oceanexpert.org/expert/12238 -https://www.oceanexpert.org/expert/12241 -https://www.oceanexpert.org/expert/12243 -https://www.oceanexpert.org/expert/12244 -https://www.oceanexpert.org/expert/12246 -https://www.oceanexpert.org/expert/12248 -https://www.oceanexpert.org/expert/12253 -https://www.oceanexpert.org/expert/12254 -https://www.oceanexpert.org/expert/12256 -https://www.oceanexpert.org/expert/12258 -https://www.oceanexpert.org/expert/12264 -https://www.oceanexpert.org/expert/12265 -https://www.oceanexpert.org/expert/12266 -https://www.oceanexpert.org/expert/12267 -https://www.oceanexpert.org/expert/12269 -https://www.oceanexpert.org/expert/12280 -https://www.oceanexpert.org/expert/12287 -https://www.oceanexpert.org/expert/12298 -https://www.oceanexpert.org/expert/12313 -https://www.oceanexpert.org/expert/12314 -https://www.oceanexpert.org/expert/12315 -https://www.oceanexpert.org/expert/12324 -https://www.oceanexpert.org/expert/12325 -https://www.oceanexpert.org/expert/12330 -https://www.oceanexpert.org/expert/12332 -https://www.oceanexpert.org/expert/12337 -https://www.oceanexpert.org/expert/12351 -https://www.oceanexpert.org/expert/12355 -https://www.oceanexpert.org/expert/12360 -https://www.oceanexpert.org/expert/12372 -https://www.oceanexpert.org/expert/12374 -https://www.oceanexpert.org/expert/12378 -https://www.oceanexpert.org/expert/12385 -https://www.oceanexpert.org/expert/12400 -https://www.oceanexpert.org/expert/12409 -https://www.oceanexpert.org/expert/12412 -https://www.oceanexpert.org/expert/12417 -https://www.oceanexpert.org/expert/12430 -https://www.oceanexpert.org/expert/12437 -https://www.oceanexpert.org/expert/12440 -https://www.oceanexpert.org/expert/12441 -https://www.oceanexpert.org/expert/12442 -https://www.oceanexpert.org/expert/12444 -https://www.oceanexpert.org/expert/12447 -https://www.oceanexpert.org/expert/12448 -https://www.oceanexpert.org/expert/12454 -https://www.oceanexpert.org/expert/12458 -https://www.oceanexpert.org/expert/12461 -https://www.oceanexpert.org/expert/12485 -https://www.oceanexpert.org/expert/12488 -https://www.oceanexpert.org/expert/12489 -https://www.oceanexpert.org/expert/12490 -https://www.oceanexpert.org/expert/12494 -https://www.oceanexpert.org/expert/12496 -https://www.oceanexpert.org/expert/12500 -https://www.oceanexpert.org/expert/12501 -https://www.oceanexpert.org/expert/12502 -https://www.oceanexpert.org/expert/12525 -https://www.oceanexpert.org/expert/12535 -https://www.oceanexpert.org/expert/12536 -https://www.oceanexpert.org/expert/12548 -https://www.oceanexpert.org/expert/12551 -https://www.oceanexpert.org/expert/12553 -https://www.oceanexpert.org/expert/12554 -https://www.oceanexpert.org/expert/12561 -https://www.oceanexpert.org/expert/12572 -https://www.oceanexpert.org/expert/12575 -https://www.oceanexpert.org/expert/12577 -https://www.oceanexpert.org/expert/12578 -https://www.oceanexpert.org/expert/12604 -https://www.oceanexpert.org/expert/12605 -https://www.oceanexpert.org/expert/12608 -https://www.oceanexpert.org/expert/12609 -https://www.oceanexpert.org/expert/12615 -https://www.oceanexpert.org/expert/12619 -https://www.oceanexpert.org/expert/12620 -https://www.oceanexpert.org/expert/12621 -https://www.oceanexpert.org/expert/12622 -https://www.oceanexpert.org/expert/12631 -https://www.oceanexpert.org/expert/12635 -https://www.oceanexpert.org/expert/12638 -https://www.oceanexpert.org/expert/12639 -https://www.oceanexpert.org/expert/12644 -https://www.oceanexpert.org/expert/12646 -https://www.oceanexpert.org/expert/12661 -https://www.oceanexpert.org/expert/12664 -https://www.oceanexpert.org/expert/12673 -https://www.oceanexpert.org/expert/12680 -https://www.oceanexpert.org/expert/12690 -https://www.oceanexpert.org/expert/12697 -https://www.oceanexpert.org/expert/12698 -https://www.oceanexpert.org/expert/12709 -https://www.oceanexpert.org/expert/12711 -https://www.oceanexpert.org/expert/12715 -https://www.oceanexpert.org/expert/12725 -https://www.oceanexpert.org/expert/12726 -https://www.oceanexpert.org/expert/12728 -https://www.oceanexpert.org/expert/12729 -https://www.oceanexpert.org/expert/12734 -https://www.oceanexpert.org/expert/12738 -https://www.oceanexpert.org/expert/12747 -https://www.oceanexpert.org/expert/12748 -https://www.oceanexpert.org/expert/12752 -https://www.oceanexpert.org/expert/12755 -https://www.oceanexpert.org/expert/12757 -https://www.oceanexpert.org/expert/12758 -https://www.oceanexpert.org/expert/12765 -https://www.oceanexpert.org/expert/12775 -https://www.oceanexpert.org/expert/12778 -https://www.oceanexpert.org/expert/12780 -https://www.oceanexpert.org/expert/12785 -https://www.oceanexpert.org/expert/12791 -https://www.oceanexpert.org/expert/12803 -https://www.oceanexpert.org/expert/12806 -https://www.oceanexpert.org/expert/12810 -https://www.oceanexpert.org/expert/12812 -https://www.oceanexpert.org/expert/12817 -https://www.oceanexpert.org/expert/12846 -https://www.oceanexpert.org/expert/12847 -https://www.oceanexpert.org/expert/12861 -https://www.oceanexpert.org/expert/12866 -https://www.oceanexpert.org/expert/12867 -https://www.oceanexpert.org/expert/12868 -https://www.oceanexpert.org/expert/12870 -https://www.oceanexpert.org/expert/12875 -https://www.oceanexpert.org/expert/12876 -https://www.oceanexpert.org/expert/12877 -https://www.oceanexpert.org/expert/12878 -https://www.oceanexpert.org/expert/12879 -https://www.oceanexpert.org/expert/12884 -https://www.oceanexpert.org/expert/12885 -https://www.oceanexpert.org/expert/12886 -https://www.oceanexpert.org/expert/12888 -https://www.oceanexpert.org/expert/12901 -https://www.oceanexpert.org/expert/12907 -https://www.oceanexpert.org/expert/12908 -https://www.oceanexpert.org/expert/12914 -https://www.oceanexpert.org/expert/12916 -https://www.oceanexpert.org/expert/12923 -https://www.oceanexpert.org/expert/12929 -https://www.oceanexpert.org/expert/12934 -https://www.oceanexpert.org/expert/12938 -https://www.oceanexpert.org/expert/12941 -https://www.oceanexpert.org/expert/12943 -https://www.oceanexpert.org/expert/12946 -https://www.oceanexpert.org/expert/12947 -https://www.oceanexpert.org/expert/12950 -https://www.oceanexpert.org/expert/12951 -https://www.oceanexpert.org/expert/12952 -https://www.oceanexpert.org/expert/12956 -https://www.oceanexpert.org/expert/12957 -https://www.oceanexpert.org/expert/12962 -https://www.oceanexpert.org/expert/12967 -https://www.oceanexpert.org/expert/12968 -https://www.oceanexpert.org/expert/12969 -https://www.oceanexpert.org/expert/12973 -https://www.oceanexpert.org/expert/12976 -https://www.oceanexpert.org/expert/12977 -https://www.oceanexpert.org/expert/12978 -https://www.oceanexpert.org/expert/12984 -https://www.oceanexpert.org/expert/12986 -https://www.oceanexpert.org/expert/12992 -https://www.oceanexpert.org/expert/12997 -https://www.oceanexpert.org/expert/12999 -https://www.oceanexpert.org/expert/13013 -https://www.oceanexpert.org/expert/13014 -https://www.oceanexpert.org/expert/13019 -https://www.oceanexpert.org/expert/13022 -https://www.oceanexpert.org/expert/13027 -https://www.oceanexpert.org/expert/13030 -https://www.oceanexpert.org/expert/13031 -https://www.oceanexpert.org/expert/13032 -https://www.oceanexpert.org/expert/13033 -https://www.oceanexpert.org/expert/13035 -https://www.oceanexpert.org/expert/13043 -https://www.oceanexpert.org/expert/13044 -https://www.oceanexpert.org/expert/13047 -https://www.oceanexpert.org/expert/13050 -https://www.oceanexpert.org/expert/13054 -https://www.oceanexpert.org/expert/13058 -https://www.oceanexpert.org/expert/13064 -https://www.oceanexpert.org/expert/13066 -https://www.oceanexpert.org/expert/13069 -https://www.oceanexpert.org/expert/13071 -https://www.oceanexpert.org/expert/13072 -https://www.oceanexpert.org/expert/13079 -https://www.oceanexpert.org/expert/13082 -https://www.oceanexpert.org/expert/13086 -https://www.oceanexpert.org/expert/13087 -https://www.oceanexpert.org/expert/13092 -https://www.oceanexpert.org/expert/13093 -https://www.oceanexpert.org/expert/13102 -https://www.oceanexpert.org/expert/13104 -https://www.oceanexpert.org/expert/13106 -https://www.oceanexpert.org/expert/13110 -https://www.oceanexpert.org/expert/13117 -https://www.oceanexpert.org/expert/13119 -https://www.oceanexpert.org/expert/13122 -https://www.oceanexpert.org/expert/13124 -https://www.oceanexpert.org/expert/13130 -https://www.oceanexpert.org/expert/13131 -https://www.oceanexpert.org/expert/13137 -https://www.oceanexpert.org/expert/13141 -https://www.oceanexpert.org/expert/13142 -https://www.oceanexpert.org/expert/13144 -https://www.oceanexpert.org/expert/13154 -https://www.oceanexpert.org/expert/13155 -https://www.oceanexpert.org/expert/13156 -https://www.oceanexpert.org/expert/13158 -https://www.oceanexpert.org/expert/13159 -https://www.oceanexpert.org/expert/13162 -https://www.oceanexpert.org/expert/13166 -https://www.oceanexpert.org/expert/13169 -https://www.oceanexpert.org/expert/13171 -https://www.oceanexpert.org/expert/13174 -https://www.oceanexpert.org/expert/13176 -https://www.oceanexpert.org/expert/13178 -https://www.oceanexpert.org/expert/13187 -https://www.oceanexpert.org/expert/13194 -https://www.oceanexpert.org/expert/13197 -https://www.oceanexpert.org/expert/13198 -https://www.oceanexpert.org/expert/13199 -https://www.oceanexpert.org/expert/13202 -https://www.oceanexpert.org/expert/13204 -https://www.oceanexpert.org/expert/13213 -https://www.oceanexpert.org/expert/13215 -https://www.oceanexpert.org/expert/13223 -https://www.oceanexpert.org/expert/13224 -https://www.oceanexpert.org/expert/13228 -https://www.oceanexpert.org/expert/13238 -https://www.oceanexpert.org/expert/13241 -https://www.oceanexpert.org/expert/13248 -https://www.oceanexpert.org/expert/13253 -https://www.oceanexpert.org/expert/13255 -https://www.oceanexpert.org/expert/13256 -https://www.oceanexpert.org/expert/13257 -https://www.oceanexpert.org/expert/13258 -https://www.oceanexpert.org/expert/13259 -https://www.oceanexpert.org/expert/13261 -https://www.oceanexpert.org/expert/13262 -https://www.oceanexpert.org/expert/13265 -https://www.oceanexpert.org/expert/13271 -https://www.oceanexpert.org/expert/13273 -https://www.oceanexpert.org/expert/13276 -https://www.oceanexpert.org/expert/13277 -https://www.oceanexpert.org/expert/13278 -https://www.oceanexpert.org/expert/13281 -https://www.oceanexpert.org/expert/13286 -https://www.oceanexpert.org/expert/13287 -https://www.oceanexpert.org/expert/13293 -https://www.oceanexpert.org/expert/13294 -https://www.oceanexpert.org/expert/13295 -https://www.oceanexpert.org/expert/13297 -https://www.oceanexpert.org/expert/13298 -https://www.oceanexpert.org/expert/13306 -https://www.oceanexpert.org/expert/13311 -https://www.oceanexpert.org/expert/13312 -https://www.oceanexpert.org/expert/13315 -https://www.oceanexpert.org/expert/13316 -https://www.oceanexpert.org/expert/13318 -https://www.oceanexpert.org/expert/13319 -https://www.oceanexpert.org/expert/13320 -https://www.oceanexpert.org/expert/13324 -https://www.oceanexpert.org/expert/13327 -https://www.oceanexpert.org/expert/13329 -https://www.oceanexpert.org/expert/13334 -https://www.oceanexpert.org/expert/13338 -https://www.oceanexpert.org/expert/13339 -https://www.oceanexpert.org/expert/13343 -https://www.oceanexpert.org/expert/13350 -https://www.oceanexpert.org/expert/13351 -https://www.oceanexpert.org/expert/13353 -https://www.oceanexpert.org/expert/13355 -https://www.oceanexpert.org/expert/13359 -https://www.oceanexpert.org/expert/13360 -https://www.oceanexpert.org/expert/13361 -https://www.oceanexpert.org/expert/13362 -https://www.oceanexpert.org/expert/13365 -https://www.oceanexpert.org/expert/13369 -https://www.oceanexpert.org/expert/13370 -https://www.oceanexpert.org/expert/13372 -https://www.oceanexpert.org/expert/13378 -https://www.oceanexpert.org/expert/13381 -https://www.oceanexpert.org/expert/13382 -https://www.oceanexpert.org/expert/13383 -https://www.oceanexpert.org/expert/13390 -https://www.oceanexpert.org/expert/13391 -https://www.oceanexpert.org/expert/13392 -https://www.oceanexpert.org/expert/13394 -https://www.oceanexpert.org/expert/13398 -https://www.oceanexpert.org/expert/13415 -https://www.oceanexpert.org/expert/13419 -https://www.oceanexpert.org/expert/13423 -https://www.oceanexpert.org/expert/13426 -https://www.oceanexpert.org/expert/13440 -https://www.oceanexpert.org/expert/13441 -https://www.oceanexpert.org/expert/13451 -https://www.oceanexpert.org/expert/13477 -https://www.oceanexpert.org/expert/13485 -https://www.oceanexpert.org/expert/13486 -https://www.oceanexpert.org/expert/13488 -https://www.oceanexpert.org/expert/13489 -https://www.oceanexpert.org/expert/13490 -https://www.oceanexpert.org/expert/13492 -https://www.oceanexpert.org/expert/13494 -https://www.oceanexpert.org/expert/13495 -https://www.oceanexpert.org/expert/13499 -https://www.oceanexpert.org/expert/13500 -https://www.oceanexpert.org/expert/13504 -https://www.oceanexpert.org/expert/13515 -https://www.oceanexpert.org/expert/13519 -https://www.oceanexpert.org/expert/13521 -https://www.oceanexpert.org/expert/13522 -https://www.oceanexpert.org/expert/13525 -https://www.oceanexpert.org/expert/13533 -https://www.oceanexpert.org/expert/13537 -https://www.oceanexpert.org/expert/13539 -https://www.oceanexpert.org/expert/13548 -https://www.oceanexpert.org/expert/13551 -https://www.oceanexpert.org/expert/13552 -https://www.oceanexpert.org/expert/13554 -https://www.oceanexpert.org/expert/13556 -https://www.oceanexpert.org/expert/13557 -https://www.oceanexpert.org/expert/13558 -https://www.oceanexpert.org/expert/13559 -https://www.oceanexpert.org/expert/13560 -https://www.oceanexpert.org/expert/13566 -https://www.oceanexpert.org/expert/13568 -https://www.oceanexpert.org/expert/13569 -https://www.oceanexpert.org/expert/13574 -https://www.oceanexpert.org/expert/13579 -https://www.oceanexpert.org/expert/13581 -https://www.oceanexpert.org/expert/13585 -https://www.oceanexpert.org/expert/13586 -https://www.oceanexpert.org/expert/13588 -https://www.oceanexpert.org/expert/13590 -https://www.oceanexpert.org/expert/13592 -https://www.oceanexpert.org/expert/13593 -https://www.oceanexpert.org/expert/13594 -https://www.oceanexpert.org/expert/13596 -https://www.oceanexpert.org/expert/13602 -https://www.oceanexpert.org/expert/13611 -https://www.oceanexpert.org/expert/13612 -https://www.oceanexpert.org/expert/13614 -https://www.oceanexpert.org/expert/13616 -https://www.oceanexpert.org/expert/13624 -https://www.oceanexpert.org/expert/13635 -https://www.oceanexpert.org/expert/13638 -https://www.oceanexpert.org/expert/13642 -https://www.oceanexpert.org/expert/13651 -https://www.oceanexpert.org/expert/13655 -https://www.oceanexpert.org/expert/13658 -https://www.oceanexpert.org/expert/13660 -https://www.oceanexpert.org/expert/13662 -https://www.oceanexpert.org/expert/13663 -https://www.oceanexpert.org/expert/13678 -https://www.oceanexpert.org/expert/13682 -https://www.oceanexpert.org/expert/13683 -https://www.oceanexpert.org/expert/13684 -https://www.oceanexpert.org/expert/13686 -https://www.oceanexpert.org/expert/13689 -https://www.oceanexpert.org/expert/13692 -https://www.oceanexpert.org/expert/13694 -https://www.oceanexpert.org/expert/13696 -https://www.oceanexpert.org/expert/13698 -https://www.oceanexpert.org/expert/13700 -https://www.oceanexpert.org/expert/13703 -https://www.oceanexpert.org/expert/13705 -https://www.oceanexpert.org/expert/13710 -https://www.oceanexpert.org/expert/13728 -https://www.oceanexpert.org/expert/13730 -https://www.oceanexpert.org/expert/13733 -https://www.oceanexpert.org/expert/13734 -https://www.oceanexpert.org/expert/13737 -https://www.oceanexpert.org/expert/13741 -https://www.oceanexpert.org/expert/13743 -https://www.oceanexpert.org/expert/13745 -https://www.oceanexpert.org/expert/13747 -https://www.oceanexpert.org/expert/13748 -https://www.oceanexpert.org/expert/13749 -https://www.oceanexpert.org/expert/13752 -https://www.oceanexpert.org/expert/13762 -https://www.oceanexpert.org/expert/13767 -https://www.oceanexpert.org/expert/13784 -https://www.oceanexpert.org/expert/13788 -https://www.oceanexpert.org/expert/13791 -https://www.oceanexpert.org/expert/13802 -https://www.oceanexpert.org/expert/13803 -https://www.oceanexpert.org/expert/13804 -https://www.oceanexpert.org/expert/13813 -https://www.oceanexpert.org/expert/13814 -https://www.oceanexpert.org/expert/13816 -https://www.oceanexpert.org/expert/13828 -https://www.oceanexpert.org/expert/13831 -https://www.oceanexpert.org/expert/13853 -https://www.oceanexpert.org/expert/13854 -https://www.oceanexpert.org/expert/13856 -https://www.oceanexpert.org/expert/13861 -https://www.oceanexpert.org/expert/13872 -https://www.oceanexpert.org/expert/13881 -https://www.oceanexpert.org/expert/13883 -https://www.oceanexpert.org/expert/13885 -https://www.oceanexpert.org/expert/13886 -https://www.oceanexpert.org/expert/13900 -https://www.oceanexpert.org/expert/13905 -https://www.oceanexpert.org/expert/13907 -https://www.oceanexpert.org/expert/13909 -https://www.oceanexpert.org/expert/13914 -https://www.oceanexpert.org/expert/13923 -https://www.oceanexpert.org/expert/13926 -https://www.oceanexpert.org/expert/13932 -https://www.oceanexpert.org/expert/13937 -https://www.oceanexpert.org/expert/13941 -https://www.oceanexpert.org/expert/13944 -https://www.oceanexpert.org/expert/13948 -https://www.oceanexpert.org/expert/13950 -https://www.oceanexpert.org/expert/13954 -https://www.oceanexpert.org/expert/13963 -https://www.oceanexpert.org/expert/13964 -https://www.oceanexpert.org/expert/13970 -https://www.oceanexpert.org/expert/13974 -https://www.oceanexpert.org/expert/13980 -https://www.oceanexpert.org/expert/13982 -https://www.oceanexpert.org/expert/13992 -https://www.oceanexpert.org/expert/13995 -https://www.oceanexpert.org/expert/13996 -https://www.oceanexpert.org/expert/14011 -https://www.oceanexpert.org/expert/14020 -https://www.oceanexpert.org/expert/14027 -https://www.oceanexpert.org/expert/14031 -https://www.oceanexpert.org/expert/14037 -https://www.oceanexpert.org/expert/14040 -https://www.oceanexpert.org/expert/14043 -https://www.oceanexpert.org/expert/14049 -https://www.oceanexpert.org/expert/14050 -https://www.oceanexpert.org/expert/14052 -https://www.oceanexpert.org/expert/14053 -https://www.oceanexpert.org/expert/14054 -https://www.oceanexpert.org/expert/14057 -https://www.oceanexpert.org/expert/14059 -https://www.oceanexpert.org/expert/14070 -https://www.oceanexpert.org/expert/14071 -https://www.oceanexpert.org/expert/14072 -https://www.oceanexpert.org/expert/14082 -https://www.oceanexpert.org/expert/14090 -https://www.oceanexpert.org/expert/14092 -https://www.oceanexpert.org/expert/14094 -https://www.oceanexpert.org/expert/14095 -https://www.oceanexpert.org/expert/14098 -https://www.oceanexpert.org/expert/14102 -https://www.oceanexpert.org/expert/14103 -https://www.oceanexpert.org/expert/14120 -https://www.oceanexpert.org/expert/14121 -https://www.oceanexpert.org/expert/14122 -https://www.oceanexpert.org/expert/14129 -https://www.oceanexpert.org/expert/14131 -https://www.oceanexpert.org/expert/14132 -https://www.oceanexpert.org/expert/14139 -https://www.oceanexpert.org/expert/14146 -https://www.oceanexpert.org/expert/14147 -https://www.oceanexpert.org/expert/14148 -https://www.oceanexpert.org/expert/14150 -https://www.oceanexpert.org/expert/14151 -https://www.oceanexpert.org/expert/14155 -https://www.oceanexpert.org/expert/14156 -https://www.oceanexpert.org/expert/14166 -https://www.oceanexpert.org/expert/14169 -https://www.oceanexpert.org/expert/14173 -https://www.oceanexpert.org/expert/14175 -https://www.oceanexpert.org/expert/14178 -https://www.oceanexpert.org/expert/14181 -https://www.oceanexpert.org/expert/14187 -https://www.oceanexpert.org/expert/14190 -https://www.oceanexpert.org/expert/14191 -https://www.oceanexpert.org/expert/14192 -https://www.oceanexpert.org/expert/14199 -https://www.oceanexpert.org/expert/14200 -https://www.oceanexpert.org/expert/14201 -https://www.oceanexpert.org/expert/14202 -https://www.oceanexpert.org/expert/14203 -https://www.oceanexpert.org/expert/14207 -https://www.oceanexpert.org/expert/14230 -https://www.oceanexpert.org/expert/14231 -https://www.oceanexpert.org/expert/14233 -https://www.oceanexpert.org/expert/14243 -https://www.oceanexpert.org/expert/14244 -https://www.oceanexpert.org/expert/14247 -https://www.oceanexpert.org/expert/14254 -https://www.oceanexpert.org/expert/14262 -https://www.oceanexpert.org/expert/14269 -https://www.oceanexpert.org/expert/14273 -https://www.oceanexpert.org/expert/14274 -https://www.oceanexpert.org/expert/14275 -https://www.oceanexpert.org/expert/14277 -https://www.oceanexpert.org/expert/14279 -https://www.oceanexpert.org/expert/14281 -https://www.oceanexpert.org/expert/14285 -https://www.oceanexpert.org/expert/14286 -https://www.oceanexpert.org/expert/14287 -https://www.oceanexpert.org/expert/14289 -https://www.oceanexpert.org/expert/14292 -https://www.oceanexpert.org/expert/14294 -https://www.oceanexpert.org/expert/14297 -https://www.oceanexpert.org/expert/14299 -https://www.oceanexpert.org/expert/14304 -https://www.oceanexpert.org/expert/14307 -https://www.oceanexpert.org/expert/14308 -https://www.oceanexpert.org/expert/14310 -https://www.oceanexpert.org/expert/14311 -https://www.oceanexpert.org/expert/14314 -https://www.oceanexpert.org/expert/14315 -https://www.oceanexpert.org/expert/14317 -https://www.oceanexpert.org/expert/14319 -https://www.oceanexpert.org/expert/14323 -https://www.oceanexpert.org/expert/14330 -https://www.oceanexpert.org/expert/14337 -https://www.oceanexpert.org/expert/14343 -https://www.oceanexpert.org/expert/14344 -https://www.oceanexpert.org/expert/14380 -https://www.oceanexpert.org/expert/14384 -https://www.oceanexpert.org/expert/14388 -https://www.oceanexpert.org/expert/14389 -https://www.oceanexpert.org/expert/14391 -https://www.oceanexpert.org/expert/14392 -https://www.oceanexpert.org/expert/14393 -https://www.oceanexpert.org/expert/14394 -https://www.oceanexpert.org/expert/14395 -https://www.oceanexpert.org/expert/14399 -https://www.oceanexpert.org/expert/14404 -https://www.oceanexpert.org/expert/14405 -https://www.oceanexpert.org/expert/14408 -https://www.oceanexpert.org/expert/14410 -https://www.oceanexpert.org/expert/14417 -https://www.oceanexpert.org/expert/14419 -https://www.oceanexpert.org/expert/14420 -https://www.oceanexpert.org/expert/14421 -https://www.oceanexpert.org/expert/14422 -https://www.oceanexpert.org/expert/14423 -https://www.oceanexpert.org/expert/14424 -https://www.oceanexpert.org/expert/14425 -https://www.oceanexpert.org/expert/14429 -https://www.oceanexpert.org/expert/14430 -https://www.oceanexpert.org/expert/14432 -https://www.oceanexpert.org/expert/14433 -https://www.oceanexpert.org/expert/14437 -https://www.oceanexpert.org/expert/14439 -https://www.oceanexpert.org/expert/14443 -https://www.oceanexpert.org/expert/14444 -https://www.oceanexpert.org/expert/14453 -https://www.oceanexpert.org/expert/14455 -https://www.oceanexpert.org/expert/14458 -https://www.oceanexpert.org/expert/14460 -https://www.oceanexpert.org/expert/14461 -https://www.oceanexpert.org/expert/14463 -https://www.oceanexpert.org/expert/14467 -https://www.oceanexpert.org/expert/14476 -https://www.oceanexpert.org/expert/14478 -https://www.oceanexpert.org/expert/14479 -https://www.oceanexpert.org/expert/14483 -https://www.oceanexpert.org/expert/14485 -https://www.oceanexpert.org/expert/14487 -https://www.oceanexpert.org/expert/14493 -https://www.oceanexpert.org/expert/14497 -https://www.oceanexpert.org/expert/14503 -https://www.oceanexpert.org/expert/14507 -https://www.oceanexpert.org/expert/14514 -https://www.oceanexpert.org/expert/14527 -https://www.oceanexpert.org/expert/14533 -https://www.oceanexpert.org/expert/14534 -https://www.oceanexpert.org/expert/14542 -https://www.oceanexpert.org/expert/14555 -https://www.oceanexpert.org/expert/14566 -https://www.oceanexpert.org/expert/14570 -https://www.oceanexpert.org/expert/14573 -https://www.oceanexpert.org/expert/14575 -https://www.oceanexpert.org/expert/14583 -https://www.oceanexpert.org/expert/14585 -https://www.oceanexpert.org/expert/14597 -https://www.oceanexpert.org/expert/14607 -https://www.oceanexpert.org/expert/14609 -https://www.oceanexpert.org/expert/14611 -https://www.oceanexpert.org/expert/14614 -https://www.oceanexpert.org/expert/14619 -https://www.oceanexpert.org/expert/14622 -https://www.oceanexpert.org/expert/14624 -https://www.oceanexpert.org/expert/14632 -https://www.oceanexpert.org/expert/14639 -https://www.oceanexpert.org/expert/14652 -https://www.oceanexpert.org/expert/14653 -https://www.oceanexpert.org/expert/14658 -https://www.oceanexpert.org/expert/14663 -https://www.oceanexpert.org/expert/14668 -https://www.oceanexpert.org/expert/14672 -https://www.oceanexpert.org/expert/14674 -https://www.oceanexpert.org/expert/14676 -https://www.oceanexpert.org/expert/14679 -https://www.oceanexpert.org/expert/14684 -https://www.oceanexpert.org/expert/14695 -https://www.oceanexpert.org/expert/14696 -https://www.oceanexpert.org/expert/14704 -https://www.oceanexpert.org/expert/14705 -https://www.oceanexpert.org/expert/14716 -https://www.oceanexpert.org/expert/14720 -https://www.oceanexpert.org/expert/14722 -https://www.oceanexpert.org/expert/14729 -https://www.oceanexpert.org/expert/14731 -https://www.oceanexpert.org/expert/14734 -https://www.oceanexpert.org/expert/14736 -https://www.oceanexpert.org/expert/14739 -https://www.oceanexpert.org/expert/14745 -https://www.oceanexpert.org/expert/14759 -https://www.oceanexpert.org/expert/14763 -https://www.oceanexpert.org/expert/14765 -https://www.oceanexpert.org/expert/14767 -https://www.oceanexpert.org/expert/14770 -https://www.oceanexpert.org/expert/14772 -https://www.oceanexpert.org/expert/14773 -https://www.oceanexpert.org/expert/14776 -https://www.oceanexpert.org/expert/14780 -https://www.oceanexpert.org/expert/14783 -https://www.oceanexpert.org/expert/14784 -https://www.oceanexpert.org/expert/14785 -https://www.oceanexpert.org/expert/14790 -https://www.oceanexpert.org/expert/14791 -https://www.oceanexpert.org/expert/14798 -https://www.oceanexpert.org/expert/14799 -https://www.oceanexpert.org/expert/14803 -https://www.oceanexpert.org/expert/14807 -https://www.oceanexpert.org/expert/14808 -https://www.oceanexpert.org/expert/14811 -https://www.oceanexpert.org/expert/14822 -https://www.oceanexpert.org/expert/14823 -https://www.oceanexpert.org/expert/14825 -https://www.oceanexpert.org/expert/14826 -https://www.oceanexpert.org/expert/14829 -https://www.oceanexpert.org/expert/14835 -https://www.oceanexpert.org/expert/14837 -https://www.oceanexpert.org/expert/14838 -https://www.oceanexpert.org/expert/14839 -https://www.oceanexpert.org/expert/14844 -https://www.oceanexpert.org/expert/14848 -https://www.oceanexpert.org/expert/14850 -https://www.oceanexpert.org/expert/14853 -https://www.oceanexpert.org/expert/14858 -https://www.oceanexpert.org/expert/14861 -https://www.oceanexpert.org/expert/14863 -https://www.oceanexpert.org/expert/14864 -https://www.oceanexpert.org/expert/14865 -https://www.oceanexpert.org/expert/14875 -https://www.oceanexpert.org/expert/14876 -https://www.oceanexpert.org/expert/14877 -https://www.oceanexpert.org/expert/14879 -https://www.oceanexpert.org/expert/14881 -https://www.oceanexpert.org/expert/14883 -https://www.oceanexpert.org/expert/14886 -https://www.oceanexpert.org/expert/14891 -https://www.oceanexpert.org/expert/14895 -https://www.oceanexpert.org/expert/14897 -https://www.oceanexpert.org/expert/14899 -https://www.oceanexpert.org/expert/14901 -https://www.oceanexpert.org/expert/14902 -https://www.oceanexpert.org/expert/14903 -https://www.oceanexpert.org/expert/14906 -https://www.oceanexpert.org/expert/14910 -https://www.oceanexpert.org/expert/14921 -https://www.oceanexpert.org/expert/14922 -https://www.oceanexpert.org/expert/14923 -https://www.oceanexpert.org/expert/14924 -https://www.oceanexpert.org/expert/14925 -https://www.oceanexpert.org/expert/14931 -https://www.oceanexpert.org/expert/14934 -https://www.oceanexpert.org/expert/14935 -https://www.oceanexpert.org/expert/14947 -https://www.oceanexpert.org/expert/14950 -https://www.oceanexpert.org/expert/14959 -https://www.oceanexpert.org/expert/14966 -https://www.oceanexpert.org/expert/14968 -https://www.oceanexpert.org/expert/14973 -https://www.oceanexpert.org/expert/14977 -https://www.oceanexpert.org/expert/14981 -https://www.oceanexpert.org/expert/14982 -https://www.oceanexpert.org/expert/14991 -https://www.oceanexpert.org/expert/14992 -https://www.oceanexpert.org/expert/14999 -https://www.oceanexpert.org/expert/15002 -https://www.oceanexpert.org/expert/15005 -https://www.oceanexpert.org/expert/15008 -https://www.oceanexpert.org/expert/15012 -https://www.oceanexpert.org/expert/15021 -https://www.oceanexpert.org/expert/15022 -https://www.oceanexpert.org/expert/15023 -https://www.oceanexpert.org/expert/15026 -https://www.oceanexpert.org/expert/15028 -https://www.oceanexpert.org/expert/15030 -https://www.oceanexpert.org/expert/15031 -https://www.oceanexpert.org/expert/15034 -https://www.oceanexpert.org/expert/15042 -https://www.oceanexpert.org/expert/15044 -https://www.oceanexpert.org/expert/15048 -https://www.oceanexpert.org/expert/15053 -https://www.oceanexpert.org/expert/15058 -https://www.oceanexpert.org/expert/15066 -https://www.oceanexpert.org/expert/15076 -https://www.oceanexpert.org/expert/15092 -https://www.oceanexpert.org/expert/15102 -https://www.oceanexpert.org/expert/15103 -https://www.oceanexpert.org/expert/15123 -https://www.oceanexpert.org/expert/15142 -https://www.oceanexpert.org/expert/15169 -https://www.oceanexpert.org/expert/15176 -https://www.oceanexpert.org/expert/15190 -https://www.oceanexpert.org/expert/15194 -https://www.oceanexpert.org/expert/15196 -https://www.oceanexpert.org/expert/15258 -https://www.oceanexpert.org/expert/15259 -https://www.oceanexpert.org/expert/15261 -https://www.oceanexpert.org/expert/15278 -https://www.oceanexpert.org/expert/15286 -https://www.oceanexpert.org/expert/15289 -https://www.oceanexpert.org/expert/15292 -https://www.oceanexpert.org/expert/15293 -https://www.oceanexpert.org/expert/15295 -https://www.oceanexpert.org/expert/15298 -https://www.oceanexpert.org/expert/15299 -https://www.oceanexpert.org/expert/15301 -https://www.oceanexpert.org/expert/15306 -https://www.oceanexpert.org/expert/15311 -https://www.oceanexpert.org/expert/15314 -https://www.oceanexpert.org/expert/15315 -https://www.oceanexpert.org/expert/15321 -https://www.oceanexpert.org/expert/15336 -https://www.oceanexpert.org/expert/15346 -https://www.oceanexpert.org/expert/15353 -https://www.oceanexpert.org/expert/15358 -https://www.oceanexpert.org/expert/15360 -https://www.oceanexpert.org/expert/15361 -https://www.oceanexpert.org/expert/15366 -https://www.oceanexpert.org/expert/15367 -https://www.oceanexpert.org/expert/15374 -https://www.oceanexpert.org/expert/15376 -https://www.oceanexpert.org/expert/15379 -https://www.oceanexpert.org/expert/15380 -https://www.oceanexpert.org/expert/15383 -https://www.oceanexpert.org/expert/15387 -https://www.oceanexpert.org/expert/15389 -https://www.oceanexpert.org/expert/15390 -https://www.oceanexpert.org/expert/15401 -https://www.oceanexpert.org/expert/15402 -https://www.oceanexpert.org/expert/15407 -https://www.oceanexpert.org/expert/15416 -https://www.oceanexpert.org/expert/15418 -https://www.oceanexpert.org/expert/15419 -https://www.oceanexpert.org/expert/15430 -https://www.oceanexpert.org/expert/15431 -https://www.oceanexpert.org/expert/15432 -https://www.oceanexpert.org/expert/15441 -https://www.oceanexpert.org/expert/15457 -https://www.oceanexpert.org/expert/15460 -https://www.oceanexpert.org/expert/15463 -https://www.oceanexpert.org/expert/15468 -https://www.oceanexpert.org/expert/15471 -https://www.oceanexpert.org/expert/15472 -https://www.oceanexpert.org/expert/15474 -https://www.oceanexpert.org/expert/15475 -https://www.oceanexpert.org/expert/15477 -https://www.oceanexpert.org/expert/15489 -https://www.oceanexpert.org/expert/15490 -https://www.oceanexpert.org/expert/15495 -https://www.oceanexpert.org/expert/15506 -https://www.oceanexpert.org/expert/15507 -https://www.oceanexpert.org/expert/15510 -https://www.oceanexpert.org/expert/15511 -https://www.oceanexpert.org/expert/15513 -https://www.oceanexpert.org/expert/15518 -https://www.oceanexpert.org/expert/15526 -https://www.oceanexpert.org/expert/15528 -https://www.oceanexpert.org/expert/15529 -https://www.oceanexpert.org/expert/15535 -https://www.oceanexpert.org/expert/15537 -https://www.oceanexpert.org/expert/15538 -https://www.oceanexpert.org/expert/15539 -https://www.oceanexpert.org/expert/15540 -https://www.oceanexpert.org/expert/15541 -https://www.oceanexpert.org/expert/15542 -https://www.oceanexpert.org/expert/15543 -https://www.oceanexpert.org/expert/15545 -https://www.oceanexpert.org/expert/15546 -https://www.oceanexpert.org/expert/15549 -https://www.oceanexpert.org/expert/15550 -https://www.oceanexpert.org/expert/15554 -https://www.oceanexpert.org/expert/15557 -https://www.oceanexpert.org/expert/15558 -https://www.oceanexpert.org/expert/15559 -https://www.oceanexpert.org/expert/15564 -https://www.oceanexpert.org/expert/15565 -https://www.oceanexpert.org/expert/15570 -https://www.oceanexpert.org/expert/15571 -https://www.oceanexpert.org/expert/15573 -https://www.oceanexpert.org/expert/15574 -https://www.oceanexpert.org/expert/15592 -https://www.oceanexpert.org/expert/15598 -https://www.oceanexpert.org/expert/15603 -https://www.oceanexpert.org/expert/15606 -https://www.oceanexpert.org/expert/15609 -https://www.oceanexpert.org/expert/15610 -https://www.oceanexpert.org/expert/15612 -https://www.oceanexpert.org/expert/15614 -https://www.oceanexpert.org/expert/15615 -https://www.oceanexpert.org/expert/15618 -https://www.oceanexpert.org/expert/15619 -https://www.oceanexpert.org/expert/15631 -https://www.oceanexpert.org/expert/15634 -https://www.oceanexpert.org/expert/15635 -https://www.oceanexpert.org/expert/15636 -https://www.oceanexpert.org/expert/15648 -https://www.oceanexpert.org/expert/15658 -https://www.oceanexpert.org/expert/15659 -https://www.oceanexpert.org/expert/15662 -https://www.oceanexpert.org/expert/15667 -https://www.oceanexpert.org/expert/15668 -https://www.oceanexpert.org/expert/15680 -https://www.oceanexpert.org/expert/15693 -https://www.oceanexpert.org/expert/15695 -https://www.oceanexpert.org/expert/15707 -https://www.oceanexpert.org/expert/15710 -https://www.oceanexpert.org/expert/15715 -https://www.oceanexpert.org/expert/15720 -https://www.oceanexpert.org/expert/15739 -https://www.oceanexpert.org/expert/15742 -https://www.oceanexpert.org/expert/15754 -https://www.oceanexpert.org/expert/15759 -https://www.oceanexpert.org/expert/15766 -https://www.oceanexpert.org/expert/15771 -https://www.oceanexpert.org/expert/15773 -https://www.oceanexpert.org/expert/15786 -https://www.oceanexpert.org/expert/15791 -https://www.oceanexpert.org/expert/15796 -https://www.oceanexpert.org/expert/15800 -https://www.oceanexpert.org/expert/15806 -https://www.oceanexpert.org/expert/15827 -https://www.oceanexpert.org/expert/15833 -https://www.oceanexpert.org/expert/15835 -https://www.oceanexpert.org/expert/15837 -https://www.oceanexpert.org/expert/15838 -https://www.oceanexpert.org/expert/15840 -https://www.oceanexpert.org/expert/15845 -https://www.oceanexpert.org/expert/15847 -https://www.oceanexpert.org/expert/15849 -https://www.oceanexpert.org/expert/15853 -https://www.oceanexpert.org/expert/15854 -https://www.oceanexpert.org/expert/15855 -https://www.oceanexpert.org/expert/15862 -https://www.oceanexpert.org/expert/15866 -https://www.oceanexpert.org/expert/15874 -https://www.oceanexpert.org/expert/15878 -https://www.oceanexpert.org/expert/15883 -https://www.oceanexpert.org/expert/15884 -https://www.oceanexpert.org/expert/15887 -https://www.oceanexpert.org/expert/15892 -https://www.oceanexpert.org/expert/15899 -https://www.oceanexpert.org/expert/15904 -https://www.oceanexpert.org/expert/15911 -https://www.oceanexpert.org/expert/15919 -https://www.oceanexpert.org/expert/15922 -https://www.oceanexpert.org/expert/15924 -https://www.oceanexpert.org/expert/15925 -https://www.oceanexpert.org/expert/15926 -https://www.oceanexpert.org/expert/15930 -https://www.oceanexpert.org/expert/15933 -https://www.oceanexpert.org/expert/15942 -https://www.oceanexpert.org/expert/15947 -https://www.oceanexpert.org/expert/15950 -https://www.oceanexpert.org/expert/15954 -https://www.oceanexpert.org/expert/15955 -https://www.oceanexpert.org/expert/15957 -https://www.oceanexpert.org/expert/15959 -https://www.oceanexpert.org/expert/15960 -https://www.oceanexpert.org/expert/15963 -https://www.oceanexpert.org/expert/15968 -https://www.oceanexpert.org/expert/15973 -https://www.oceanexpert.org/expert/15976 -https://www.oceanexpert.org/expert/15978 -https://www.oceanexpert.org/expert/15982 -https://www.oceanexpert.org/expert/15983 -https://www.oceanexpert.org/expert/15984 -https://www.oceanexpert.org/expert/15992 -https://www.oceanexpert.org/expert/15993 -https://www.oceanexpert.org/expert/15996 -https://www.oceanexpert.org/expert/15999 -https://www.oceanexpert.org/expert/16000 -https://www.oceanexpert.org/expert/16002 -https://www.oceanexpert.org/expert/16005 -https://www.oceanexpert.org/expert/16006 -https://www.oceanexpert.org/expert/16012 -https://www.oceanexpert.org/expert/16016 -https://www.oceanexpert.org/expert/16017 -https://www.oceanexpert.org/expert/16019 -https://www.oceanexpert.org/expert/16025 -https://www.oceanexpert.org/expert/16041 -https://www.oceanexpert.org/expert/16042 -https://www.oceanexpert.org/expert/16043 -https://www.oceanexpert.org/expert/16044 -https://www.oceanexpert.org/expert/16045 -https://www.oceanexpert.org/expert/16046 -https://www.oceanexpert.org/expert/16048 -https://www.oceanexpert.org/expert/16051 -https://www.oceanexpert.org/expert/16053 -https://www.oceanexpert.org/expert/16055 -https://www.oceanexpert.org/expert/16058 -https://www.oceanexpert.org/expert/16059 -https://www.oceanexpert.org/expert/16064 -https://www.oceanexpert.org/expert/16066 -https://www.oceanexpert.org/expert/16067 -https://www.oceanexpert.org/expert/16069 -https://www.oceanexpert.org/expert/16071 -https://www.oceanexpert.org/expert/16080 -https://www.oceanexpert.org/expert/16083 -https://www.oceanexpert.org/expert/16086 -https://www.oceanexpert.org/expert/16091 -https://www.oceanexpert.org/expert/16092 -https://www.oceanexpert.org/expert/16094 -https://www.oceanexpert.org/expert/16099 -https://www.oceanexpert.org/expert/16101 -https://www.oceanexpert.org/expert/16102 -https://www.oceanexpert.org/expert/16111 -https://www.oceanexpert.org/expert/16114 -https://www.oceanexpert.org/expert/16119 -https://www.oceanexpert.org/expert/16120 -https://www.oceanexpert.org/expert/16121 -https://www.oceanexpert.org/expert/16123 -https://www.oceanexpert.org/expert/16127 -https://www.oceanexpert.org/expert/16128 -https://www.oceanexpert.org/expert/16129 -https://www.oceanexpert.org/expert/16130 -https://www.oceanexpert.org/expert/16131 -https://www.oceanexpert.org/expert/16132 -https://www.oceanexpert.org/expert/16134 -https://www.oceanexpert.org/expert/16137 -https://www.oceanexpert.org/expert/16138 -https://www.oceanexpert.org/expert/16142 -https://www.oceanexpert.org/expert/16144 -https://www.oceanexpert.org/expert/16150 -https://www.oceanexpert.org/expert/16151 -https://www.oceanexpert.org/expert/16152 -https://www.oceanexpert.org/expert/16153 -https://www.oceanexpert.org/expert/16154 -https://www.oceanexpert.org/expert/16155 -https://www.oceanexpert.org/expert/16157 -https://www.oceanexpert.org/expert/16158 -https://www.oceanexpert.org/expert/16160 -https://www.oceanexpert.org/expert/16163 -https://www.oceanexpert.org/expert/16167 -https://www.oceanexpert.org/expert/16169 -https://www.oceanexpert.org/expert/16171 -https://www.oceanexpert.org/expert/16175 -https://www.oceanexpert.org/expert/16177 -https://www.oceanexpert.org/expert/16180 -https://www.oceanexpert.org/expert/16182 -https://www.oceanexpert.org/expert/16187 -https://www.oceanexpert.org/expert/16192 -https://www.oceanexpert.org/expert/16193 -https://www.oceanexpert.org/expert/16196 -https://www.oceanexpert.org/expert/16208 -https://www.oceanexpert.org/expert/16216 -https://www.oceanexpert.org/expert/16220 -https://www.oceanexpert.org/expert/16221 -https://www.oceanexpert.org/expert/16228 -https://www.oceanexpert.org/expert/16234 -https://www.oceanexpert.org/expert/16235 -https://www.oceanexpert.org/expert/16239 -https://www.oceanexpert.org/expert/16241 -https://www.oceanexpert.org/expert/16244 -https://www.oceanexpert.org/expert/16266 -https://www.oceanexpert.org/expert/16267 -https://www.oceanexpert.org/expert/16268 -https://www.oceanexpert.org/expert/16269 -https://www.oceanexpert.org/expert/16280 -https://www.oceanexpert.org/expert/16281 -https://www.oceanexpert.org/expert/16287 -https://www.oceanexpert.org/expert/16290 -https://www.oceanexpert.org/expert/16291 -https://www.oceanexpert.org/expert/16293 -https://www.oceanexpert.org/expert/16296 -https://www.oceanexpert.org/expert/16297 -https://www.oceanexpert.org/expert/16300 -https://www.oceanexpert.org/expert/16304 -https://www.oceanexpert.org/expert/16306 -https://www.oceanexpert.org/expert/16313 -https://www.oceanexpert.org/expert/16317 -https://www.oceanexpert.org/expert/16318 -https://www.oceanexpert.org/expert/16319 -https://www.oceanexpert.org/expert/16321 -https://www.oceanexpert.org/expert/16323 -https://www.oceanexpert.org/expert/16325 -https://www.oceanexpert.org/expert/16327 -https://www.oceanexpert.org/expert/16328 -https://www.oceanexpert.org/expert/16338 -https://www.oceanexpert.org/expert/16340 -https://www.oceanexpert.org/expert/16341 -https://www.oceanexpert.org/expert/16344 -https://www.oceanexpert.org/expert/16345 -https://www.oceanexpert.org/expert/16348 -https://www.oceanexpert.org/expert/16352 -https://www.oceanexpert.org/expert/16353 -https://www.oceanexpert.org/expert/16354 -https://www.oceanexpert.org/expert/16360 -https://www.oceanexpert.org/expert/16361 -https://www.oceanexpert.org/expert/16364 -https://www.oceanexpert.org/expert/16369 -https://www.oceanexpert.org/expert/16375 -https://www.oceanexpert.org/expert/16377 -https://www.oceanexpert.org/expert/16379 -https://www.oceanexpert.org/expert/16380 -https://www.oceanexpert.org/expert/16381 -https://www.oceanexpert.org/expert/16384 -https://www.oceanexpert.org/expert/16386 -https://www.oceanexpert.org/expert/16387 -https://www.oceanexpert.org/expert/16389 -https://www.oceanexpert.org/expert/16393 -https://www.oceanexpert.org/expert/16394 -https://www.oceanexpert.org/expert/16396 -https://www.oceanexpert.org/expert/16404 -https://www.oceanexpert.org/expert/16409 -https://www.oceanexpert.org/expert/16412 -https://www.oceanexpert.org/expert/16417 -https://www.oceanexpert.org/expert/16424 -https://www.oceanexpert.org/expert/16425 -https://www.oceanexpert.org/expert/16427 -https://www.oceanexpert.org/expert/16428 -https://www.oceanexpert.org/expert/16429 -https://www.oceanexpert.org/expert/16432 -https://www.oceanexpert.org/expert/16433 -https://www.oceanexpert.org/expert/16435 -https://www.oceanexpert.org/expert/16441 -https://www.oceanexpert.org/expert/16452 -https://www.oceanexpert.org/expert/16453 -https://www.oceanexpert.org/expert/16454 -https://www.oceanexpert.org/expert/16465 -https://www.oceanexpert.org/expert/16471 -https://www.oceanexpert.org/expert/16473 -https://www.oceanexpert.org/expert/16474 -https://www.oceanexpert.org/expert/16479 -https://www.oceanexpert.org/expert/16480 -https://www.oceanexpert.org/expert/16483 -https://www.oceanexpert.org/expert/16485 -https://www.oceanexpert.org/expert/16486 -https://www.oceanexpert.org/expert/16487 -https://www.oceanexpert.org/expert/16496 -https://www.oceanexpert.org/expert/16498 -https://www.oceanexpert.org/expert/16502 -https://www.oceanexpert.org/expert/16503 -https://www.oceanexpert.org/expert/16506 -https://www.oceanexpert.org/expert/16517 -https://www.oceanexpert.org/expert/16533 -https://www.oceanexpert.org/expert/16535 -https://www.oceanexpert.org/expert/16546 -https://www.oceanexpert.org/expert/16547 -https://www.oceanexpert.org/expert/16555 -https://www.oceanexpert.org/expert/16559 -https://www.oceanexpert.org/expert/16560 -https://www.oceanexpert.org/expert/16562 -https://www.oceanexpert.org/expert/16564 -https://www.oceanexpert.org/expert/16565 -https://www.oceanexpert.org/expert/16570 -https://www.oceanexpert.org/expert/16571 -https://www.oceanexpert.org/expert/16573 -https://www.oceanexpert.org/expert/16574 -https://www.oceanexpert.org/expert/16575 -https://www.oceanexpert.org/expert/16582 -https://www.oceanexpert.org/expert/16584 -https://www.oceanexpert.org/expert/16591 -https://www.oceanexpert.org/expert/16593 -https://www.oceanexpert.org/expert/16594 -https://www.oceanexpert.org/expert/16600 -https://www.oceanexpert.org/expert/16602 -https://www.oceanexpert.org/expert/16604 -https://www.oceanexpert.org/expert/16606 -https://www.oceanexpert.org/expert/16607 -https://www.oceanexpert.org/expert/16608 -https://www.oceanexpert.org/expert/16609 -https://www.oceanexpert.org/expert/16610 -https://www.oceanexpert.org/expert/16611 -https://www.oceanexpert.org/expert/16612 -https://www.oceanexpert.org/expert/16614 -https://www.oceanexpert.org/expert/16616 -https://www.oceanexpert.org/expert/16619 -https://www.oceanexpert.org/expert/16621 -https://www.oceanexpert.org/expert/16622 -https://www.oceanexpert.org/expert/16623 -https://www.oceanexpert.org/expert/16624 -https://www.oceanexpert.org/expert/16625 -https://www.oceanexpert.org/expert/16628 -https://www.oceanexpert.org/expert/16631 -https://www.oceanexpert.org/expert/16632 -https://www.oceanexpert.org/expert/16633 -https://www.oceanexpert.org/expert/16634 -https://www.oceanexpert.org/expert/16635 -https://www.oceanexpert.org/expert/16638 -https://www.oceanexpert.org/expert/16639 -https://www.oceanexpert.org/expert/16640 -https://www.oceanexpert.org/expert/16642 -https://www.oceanexpert.org/expert/16643 -https://www.oceanexpert.org/expert/16645 -https://www.oceanexpert.org/expert/16646 -https://www.oceanexpert.org/expert/16647 -https://www.oceanexpert.org/expert/16651 -https://www.oceanexpert.org/expert/16652 -https://www.oceanexpert.org/expert/16653 -https://www.oceanexpert.org/expert/16655 -https://www.oceanexpert.org/expert/16656 -https://www.oceanexpert.org/expert/16657 -https://www.oceanexpert.org/expert/16658 -https://www.oceanexpert.org/expert/16659 -https://www.oceanexpert.org/expert/16664 -https://www.oceanexpert.org/expert/16667 -https://www.oceanexpert.org/expert/16668 -https://www.oceanexpert.org/expert/16671 -https://www.oceanexpert.org/expert/16674 -https://www.oceanexpert.org/expert/16676 -https://www.oceanexpert.org/expert/16677 -https://www.oceanexpert.org/expert/16678 -https://www.oceanexpert.org/expert/16679 -https://www.oceanexpert.org/expert/16680 -https://www.oceanexpert.org/expert/16681 -https://www.oceanexpert.org/expert/16683 -https://www.oceanexpert.org/expert/16685 -https://www.oceanexpert.org/expert/16687 -https://www.oceanexpert.org/expert/16689 -https://www.oceanexpert.org/expert/16692 -https://www.oceanexpert.org/expert/16693 -https://www.oceanexpert.org/expert/16696 -https://www.oceanexpert.org/expert/16697 -https://www.oceanexpert.org/expert/16698 -https://www.oceanexpert.org/expert/16699 -https://www.oceanexpert.org/expert/16700 -https://www.oceanexpert.org/expert/16701 -https://www.oceanexpert.org/expert/16703 -https://www.oceanexpert.org/expert/16704 -https://www.oceanexpert.org/expert/16706 -https://www.oceanexpert.org/expert/16707 -https://www.oceanexpert.org/expert/16708 -https://www.oceanexpert.org/expert/16710 -https://www.oceanexpert.org/expert/16711 -https://www.oceanexpert.org/expert/16712 -https://www.oceanexpert.org/expert/16713 -https://www.oceanexpert.org/expert/16716 -https://www.oceanexpert.org/expert/16717 -https://www.oceanexpert.org/expert/16718 -https://www.oceanexpert.org/expert/16720 -https://www.oceanexpert.org/expert/16721 -https://www.oceanexpert.org/expert/16722 -https://www.oceanexpert.org/expert/16725 -https://www.oceanexpert.org/expert/16727 -https://www.oceanexpert.org/expert/16730 -https://www.oceanexpert.org/expert/16731 -https://www.oceanexpert.org/expert/16733 -https://www.oceanexpert.org/expert/16736 -https://www.oceanexpert.org/expert/16742 -https://www.oceanexpert.org/expert/16743 -https://www.oceanexpert.org/expert/16744 -https://www.oceanexpert.org/expert/16745 -https://www.oceanexpert.org/expert/16746 -https://www.oceanexpert.org/expert/16749 -https://www.oceanexpert.org/expert/16750 -https://www.oceanexpert.org/expert/16755 -https://www.oceanexpert.org/expert/16756 -https://www.oceanexpert.org/expert/16759 -https://www.oceanexpert.org/expert/16762 -https://www.oceanexpert.org/expert/16763 -https://www.oceanexpert.org/expert/16765 -https://www.oceanexpert.org/expert/16767 -https://www.oceanexpert.org/expert/16769 -https://www.oceanexpert.org/expert/16770 -https://www.oceanexpert.org/expert/16771 -https://www.oceanexpert.org/expert/16772 -https://www.oceanexpert.org/expert/16773 -https://www.oceanexpert.org/expert/16774 -https://www.oceanexpert.org/expert/16775 -https://www.oceanexpert.org/expert/16776 -https://www.oceanexpert.org/expert/16780 -https://www.oceanexpert.org/expert/16783 -https://www.oceanexpert.org/expert/16785 -https://www.oceanexpert.org/expert/16788 -https://www.oceanexpert.org/expert/16789 -https://www.oceanexpert.org/expert/16792 -https://www.oceanexpert.org/expert/16794 -https://www.oceanexpert.org/expert/16797 -https://www.oceanexpert.org/expert/16804 -https://www.oceanexpert.org/expert/16805 -https://www.oceanexpert.org/expert/16806 -https://www.oceanexpert.org/expert/16808 -https://www.oceanexpert.org/expert/16811 -https://www.oceanexpert.org/expert/16812 -https://www.oceanexpert.org/expert/16815 -https://www.oceanexpert.org/expert/16822 -https://www.oceanexpert.org/expert/16823 -https://www.oceanexpert.org/expert/16834 -https://www.oceanexpert.org/expert/16835 -https://www.oceanexpert.org/expert/16837 -https://www.oceanexpert.org/expert/16839 -https://www.oceanexpert.org/expert/16840 -https://www.oceanexpert.org/expert/16841 -https://www.oceanexpert.org/expert/16843 -https://www.oceanexpert.org/expert/16845 -https://www.oceanexpert.org/expert/16847 -https://www.oceanexpert.org/expert/16848 -https://www.oceanexpert.org/expert/16849 -https://www.oceanexpert.org/expert/16852 -https://www.oceanexpert.org/expert/16858 -https://www.oceanexpert.org/expert/16859 -https://www.oceanexpert.org/expert/16860 -https://www.oceanexpert.org/expert/16861 -https://www.oceanexpert.org/expert/16862 -https://www.oceanexpert.org/expert/16863 -https://www.oceanexpert.org/expert/16865 -https://www.oceanexpert.org/expert/16868 -https://www.oceanexpert.org/expert/16870 -https://www.oceanexpert.org/expert/16872 -https://www.oceanexpert.org/expert/16873 -https://www.oceanexpert.org/expert/16874 -https://www.oceanexpert.org/expert/16876 -https://www.oceanexpert.org/expert/16877 -https://www.oceanexpert.org/expert/16878 -https://www.oceanexpert.org/expert/16879 -https://www.oceanexpert.org/expert/16881 -https://www.oceanexpert.org/expert/16882 -https://www.oceanexpert.org/expert/16883 -https://www.oceanexpert.org/expert/16884 -https://www.oceanexpert.org/expert/16885 -https://www.oceanexpert.org/expert/16887 -https://www.oceanexpert.org/expert/16889 -https://www.oceanexpert.org/expert/16890 -https://www.oceanexpert.org/expert/16899 -https://www.oceanexpert.org/expert/16900 -https://www.oceanexpert.org/expert/16901 -https://www.oceanexpert.org/expert/16902 -https://www.oceanexpert.org/expert/16903 -https://www.oceanexpert.org/expert/16908 -https://www.oceanexpert.org/expert/16911 -https://www.oceanexpert.org/expert/16912 -https://www.oceanexpert.org/expert/16913 -https://www.oceanexpert.org/expert/16915 -https://www.oceanexpert.org/expert/16921 -https://www.oceanexpert.org/expert/16922 -https://www.oceanexpert.org/expert/16924 -https://www.oceanexpert.org/expert/16925 -https://www.oceanexpert.org/expert/16926 -https://www.oceanexpert.org/expert/16929 -https://www.oceanexpert.org/expert/16937 -https://www.oceanexpert.org/expert/16941 -https://www.oceanexpert.org/expert/16943 -https://www.oceanexpert.org/expert/16945 -https://www.oceanexpert.org/expert/16946 -https://www.oceanexpert.org/expert/16955 -https://www.oceanexpert.org/expert/16957 -https://www.oceanexpert.org/expert/16959 -https://www.oceanexpert.org/expert/16960 -https://www.oceanexpert.org/expert/16961 -https://www.oceanexpert.org/expert/16962 -https://www.oceanexpert.org/expert/16963 -https://www.oceanexpert.org/expert/16966 -https://www.oceanexpert.org/expert/16967 -https://www.oceanexpert.org/expert/16968 -https://www.oceanexpert.org/expert/16969 -https://www.oceanexpert.org/expert/16970 -https://www.oceanexpert.org/expert/16971 -https://www.oceanexpert.org/expert/16973 -https://www.oceanexpert.org/expert/16974 -https://www.oceanexpert.org/expert/16977 -https://www.oceanexpert.org/expert/16978 -https://www.oceanexpert.org/expert/16980 -https://www.oceanexpert.org/expert/16984 -https://www.oceanexpert.org/expert/16985 -https://www.oceanexpert.org/expert/16986 -https://www.oceanexpert.org/expert/16988 -https://www.oceanexpert.org/expert/16989 -https://www.oceanexpert.org/expert/16990 -https://www.oceanexpert.org/expert/16991 -https://www.oceanexpert.org/expert/16994 -https://www.oceanexpert.org/expert/16996 -https://www.oceanexpert.org/expert/16998 -https://www.oceanexpert.org/expert/16999 -https://www.oceanexpert.org/expert/17001 -https://www.oceanexpert.org/expert/17003 -https://www.oceanexpert.org/expert/17005 -https://www.oceanexpert.org/expert/17006 -https://www.oceanexpert.org/expert/17007 -https://www.oceanexpert.org/expert/17010 -https://www.oceanexpert.org/expert/17011 -https://www.oceanexpert.org/expert/17015 -https://www.oceanexpert.org/expert/17016 -https://www.oceanexpert.org/expert/17017 -https://www.oceanexpert.org/expert/17019 -https://www.oceanexpert.org/expert/17022 -https://www.oceanexpert.org/expert/17026 -https://www.oceanexpert.org/expert/17029 -https://www.oceanexpert.org/expert/17032 -https://www.oceanexpert.org/expert/17035 -https://www.oceanexpert.org/expert/17037 -https://www.oceanexpert.org/expert/17041 -https://www.oceanexpert.org/expert/17042 -https://www.oceanexpert.org/expert/17043 -https://www.oceanexpert.org/expert/17045 -https://www.oceanexpert.org/expert/17046 -https://www.oceanexpert.org/expert/17048 -https://www.oceanexpert.org/expert/17049 -https://www.oceanexpert.org/expert/17050 -https://www.oceanexpert.org/expert/17052 -https://www.oceanexpert.org/expert/17053 -https://www.oceanexpert.org/expert/17056 -https://www.oceanexpert.org/expert/17062 -https://www.oceanexpert.org/expert/17064 -https://www.oceanexpert.org/expert/17065 -https://www.oceanexpert.org/expert/17067 -https://www.oceanexpert.org/expert/17069 -https://www.oceanexpert.org/expert/17070 -https://www.oceanexpert.org/expert/17071 -https://www.oceanexpert.org/expert/17076 -https://www.oceanexpert.org/expert/17087 -https://www.oceanexpert.org/expert/17090 -https://www.oceanexpert.org/expert/17091 -https://www.oceanexpert.org/expert/17092 -https://www.oceanexpert.org/expert/17093 -https://www.oceanexpert.org/expert/17094 -https://www.oceanexpert.org/expert/17096 -https://www.oceanexpert.org/expert/17100 -https://www.oceanexpert.org/expert/17104 -https://www.oceanexpert.org/expert/17105 -https://www.oceanexpert.org/expert/17106 -https://www.oceanexpert.org/expert/17108 -https://www.oceanexpert.org/expert/17111 -https://www.oceanexpert.org/expert/17112 -https://www.oceanexpert.org/expert/17116 -https://www.oceanexpert.org/expert/17121 -https://www.oceanexpert.org/expert/17122 -https://www.oceanexpert.org/expert/17123 -https://www.oceanexpert.org/expert/17124 -https://www.oceanexpert.org/expert/17126 -https://www.oceanexpert.org/expert/17128 -https://www.oceanexpert.org/expert/17129 -https://www.oceanexpert.org/expert/17132 -https://www.oceanexpert.org/expert/17133 -https://www.oceanexpert.org/expert/17135 -https://www.oceanexpert.org/expert/17136 -https://www.oceanexpert.org/expert/17141 -https://www.oceanexpert.org/expert/17143 -https://www.oceanexpert.org/expert/17144 -https://www.oceanexpert.org/expert/17145 -https://www.oceanexpert.org/expert/17147 -https://www.oceanexpert.org/expert/17148 -https://www.oceanexpert.org/expert/17149 -https://www.oceanexpert.org/expert/17150 -https://www.oceanexpert.org/expert/17151 -https://www.oceanexpert.org/expert/17155 -https://www.oceanexpert.org/expert/17157 -https://www.oceanexpert.org/expert/17158 -https://www.oceanexpert.org/expert/17159 -https://www.oceanexpert.org/expert/17161 -https://www.oceanexpert.org/expert/17162 -https://www.oceanexpert.org/expert/17163 -https://www.oceanexpert.org/expert/17164 -https://www.oceanexpert.org/expert/17165 -https://www.oceanexpert.org/expert/17170 -https://www.oceanexpert.org/expert/17171 -https://www.oceanexpert.org/expert/17173 -https://www.oceanexpert.org/expert/17174 -https://www.oceanexpert.org/expert/17175 -https://www.oceanexpert.org/expert/17176 -https://www.oceanexpert.org/expert/17177 -https://www.oceanexpert.org/expert/17180 -https://www.oceanexpert.org/expert/17182 -https://www.oceanexpert.org/expert/17183 -https://www.oceanexpert.org/expert/17191 -https://www.oceanexpert.org/expert/17192 -https://www.oceanexpert.org/expert/17193 -https://www.oceanexpert.org/expert/17194 -https://www.oceanexpert.org/expert/17195 -https://www.oceanexpert.org/expert/17198 -https://www.oceanexpert.org/expert/17199 -https://www.oceanexpert.org/expert/17201 -https://www.oceanexpert.org/expert/17202 -https://www.oceanexpert.org/expert/17204 -https://www.oceanexpert.org/expert/17205 -https://www.oceanexpert.org/expert/17206 -https://www.oceanexpert.org/expert/17208 -https://www.oceanexpert.org/expert/17209 -https://www.oceanexpert.org/expert/17210 -https://www.oceanexpert.org/expert/17211 -https://www.oceanexpert.org/expert/17212 -https://www.oceanexpert.org/expert/17213 -https://www.oceanexpert.org/expert/17214 -https://www.oceanexpert.org/expert/17218 -https://www.oceanexpert.org/expert/17219 -https://www.oceanexpert.org/expert/17220 -https://www.oceanexpert.org/expert/17221 -https://www.oceanexpert.org/expert/17224 -https://www.oceanexpert.org/expert/17225 -https://www.oceanexpert.org/expert/17226 -https://www.oceanexpert.org/expert/17227 -https://www.oceanexpert.org/expert/17228 -https://www.oceanexpert.org/expert/17229 -https://www.oceanexpert.org/expert/17230 -https://www.oceanexpert.org/expert/17231 -https://www.oceanexpert.org/expert/17233 -https://www.oceanexpert.org/expert/17235 -https://www.oceanexpert.org/expert/17236 -https://www.oceanexpert.org/expert/17242 -https://www.oceanexpert.org/expert/17243 -https://www.oceanexpert.org/expert/17244 -https://www.oceanexpert.org/expert/17245 -https://www.oceanexpert.org/expert/17248 -https://www.oceanexpert.org/expert/17249 -https://www.oceanexpert.org/expert/17250 -https://www.oceanexpert.org/expert/17251 -https://www.oceanexpert.org/expert/17252 -https://www.oceanexpert.org/expert/17255 -https://www.oceanexpert.org/expert/17256 -https://www.oceanexpert.org/expert/17260 -https://www.oceanexpert.org/expert/17261 -https://www.oceanexpert.org/expert/17262 -https://www.oceanexpert.org/expert/17265 -https://www.oceanexpert.org/expert/17266 -https://www.oceanexpert.org/expert/17268 -https://www.oceanexpert.org/expert/17270 -https://www.oceanexpert.org/expert/17272 -https://www.oceanexpert.org/expert/17274 -https://www.oceanexpert.org/expert/17275 -https://www.oceanexpert.org/expert/17276 -https://www.oceanexpert.org/expert/17277 -https://www.oceanexpert.org/expert/17279 -https://www.oceanexpert.org/expert/17280 -https://www.oceanexpert.org/expert/17281 -https://www.oceanexpert.org/expert/17283 -https://www.oceanexpert.org/expert/17284 -https://www.oceanexpert.org/expert/17286 -https://www.oceanexpert.org/expert/17291 -https://www.oceanexpert.org/expert/17292 -https://www.oceanexpert.org/expert/17296 -https://www.oceanexpert.org/expert/17298 -https://www.oceanexpert.org/expert/17299 -https://www.oceanexpert.org/expert/17301 -https://www.oceanexpert.org/expert/17302 -https://www.oceanexpert.org/expert/17303 -https://www.oceanexpert.org/expert/17304 -https://www.oceanexpert.org/expert/17305 -https://www.oceanexpert.org/expert/17306 -https://www.oceanexpert.org/expert/17307 -https://www.oceanexpert.org/expert/17308 -https://www.oceanexpert.org/expert/17309 -https://www.oceanexpert.org/expert/17313 -https://www.oceanexpert.org/expert/17316 -https://www.oceanexpert.org/expert/17318 -https://www.oceanexpert.org/expert/17319 -https://www.oceanexpert.org/expert/17320 -https://www.oceanexpert.org/expert/17322 -https://www.oceanexpert.org/expert/17324 -https://www.oceanexpert.org/expert/17325 -https://www.oceanexpert.org/expert/17327 -https://www.oceanexpert.org/expert/17329 -https://www.oceanexpert.org/expert/17330 -https://www.oceanexpert.org/expert/17332 -https://www.oceanexpert.org/expert/17334 -https://www.oceanexpert.org/expert/17335 -https://www.oceanexpert.org/expert/17336 -https://www.oceanexpert.org/expert/17337 -https://www.oceanexpert.org/expert/17338 -https://www.oceanexpert.org/expert/17339 -https://www.oceanexpert.org/expert/17343 -https://www.oceanexpert.org/expert/17344 -https://www.oceanexpert.org/expert/17347 -https://www.oceanexpert.org/expert/17349 -https://www.oceanexpert.org/expert/17351 -https://www.oceanexpert.org/expert/17352 -https://www.oceanexpert.org/expert/17355 -https://www.oceanexpert.org/expert/17356 -https://www.oceanexpert.org/expert/17359 -https://www.oceanexpert.org/expert/17360 -https://www.oceanexpert.org/expert/17362 -https://www.oceanexpert.org/expert/17363 -https://www.oceanexpert.org/expert/17366 -https://www.oceanexpert.org/expert/17367 -https://www.oceanexpert.org/expert/17369 -https://www.oceanexpert.org/expert/17370 -https://www.oceanexpert.org/expert/17373 -https://www.oceanexpert.org/expert/17374 -https://www.oceanexpert.org/expert/17376 -https://www.oceanexpert.org/expert/17377 -https://www.oceanexpert.org/expert/17378 -https://www.oceanexpert.org/expert/17380 -https://www.oceanexpert.org/expert/17384 -https://www.oceanexpert.org/expert/17385 -https://www.oceanexpert.org/expert/17387 -https://www.oceanexpert.org/expert/17391 -https://www.oceanexpert.org/expert/17392 -https://www.oceanexpert.org/expert/17394 -https://www.oceanexpert.org/expert/17395 -https://www.oceanexpert.org/expert/17398 -https://www.oceanexpert.org/expert/17399 -https://www.oceanexpert.org/expert/17401 -https://www.oceanexpert.org/expert/17404 -https://www.oceanexpert.org/expert/17409 -https://www.oceanexpert.org/expert/17412 -https://www.oceanexpert.org/expert/17413 -https://www.oceanexpert.org/expert/17418 -https://www.oceanexpert.org/expert/17419 -https://www.oceanexpert.org/expert/17420 -https://www.oceanexpert.org/expert/17421 -https://www.oceanexpert.org/expert/17422 -https://www.oceanexpert.org/expert/17423 -https://www.oceanexpert.org/expert/17424 -https://www.oceanexpert.org/expert/17425 -https://www.oceanexpert.org/expert/17426 -https://www.oceanexpert.org/expert/17427 -https://www.oceanexpert.org/expert/17429 -https://www.oceanexpert.org/expert/17430 -https://www.oceanexpert.org/expert/17431 -https://www.oceanexpert.org/expert/17432 -https://www.oceanexpert.org/expert/17434 -https://www.oceanexpert.org/expert/17435 -https://www.oceanexpert.org/expert/17439 -https://www.oceanexpert.org/expert/17442 -https://www.oceanexpert.org/expert/17444 -https://www.oceanexpert.org/expert/17445 -https://www.oceanexpert.org/expert/17447 -https://www.oceanexpert.org/expert/17449 -https://www.oceanexpert.org/expert/17452 -https://www.oceanexpert.org/expert/17454 -https://www.oceanexpert.org/expert/17455 -https://www.oceanexpert.org/expert/17456 -https://www.oceanexpert.org/expert/17457 -https://www.oceanexpert.org/expert/17458 -https://www.oceanexpert.org/expert/17460 -https://www.oceanexpert.org/expert/17461 -https://www.oceanexpert.org/expert/17463 -https://www.oceanexpert.org/expert/17464 -https://www.oceanexpert.org/expert/17467 -https://www.oceanexpert.org/expert/17468 -https://www.oceanexpert.org/expert/17469 -https://www.oceanexpert.org/expert/17472 -https://www.oceanexpert.org/expert/17473 -https://www.oceanexpert.org/expert/17474 -https://www.oceanexpert.org/expert/17476 -https://www.oceanexpert.org/expert/17477 -https://www.oceanexpert.org/expert/17483 -https://www.oceanexpert.org/expert/17487 -https://www.oceanexpert.org/expert/17488 -https://www.oceanexpert.org/expert/17490 -https://www.oceanexpert.org/expert/17492 -https://www.oceanexpert.org/expert/17494 -https://www.oceanexpert.org/expert/17495 -https://www.oceanexpert.org/expert/17497 -https://www.oceanexpert.org/expert/17501 -https://www.oceanexpert.org/expert/17502 -https://www.oceanexpert.org/expert/17504 -https://www.oceanexpert.org/expert/17506 -https://www.oceanexpert.org/expert/17507 -https://www.oceanexpert.org/expert/17508 -https://www.oceanexpert.org/expert/17510 -https://www.oceanexpert.org/expert/17511 -https://www.oceanexpert.org/expert/17512 -https://www.oceanexpert.org/expert/17513 -https://www.oceanexpert.org/expert/17514 -https://www.oceanexpert.org/expert/17515 -https://www.oceanexpert.org/expert/17518 -https://www.oceanexpert.org/expert/17522 -https://www.oceanexpert.org/expert/17526 -https://www.oceanexpert.org/expert/17527 -https://www.oceanexpert.org/expert/17528 -https://www.oceanexpert.org/expert/17533 -https://www.oceanexpert.org/expert/17540 -https://www.oceanexpert.org/expert/17541 -https://www.oceanexpert.org/expert/17542 -https://www.oceanexpert.org/expert/17546 -https://www.oceanexpert.org/expert/17548 -https://www.oceanexpert.org/expert/17549 -https://www.oceanexpert.org/expert/17554 -https://www.oceanexpert.org/expert/17557 -https://www.oceanexpert.org/expert/17558 -https://www.oceanexpert.org/expert/17560 -https://www.oceanexpert.org/expert/17561 -https://www.oceanexpert.org/expert/17562 -https://www.oceanexpert.org/expert/17563 -https://www.oceanexpert.org/expert/17566 -https://www.oceanexpert.org/expert/17572 -https://www.oceanexpert.org/expert/17574 -https://www.oceanexpert.org/expert/17576 -https://www.oceanexpert.org/expert/17579 -https://www.oceanexpert.org/expert/17580 -https://www.oceanexpert.org/expert/17581 -https://www.oceanexpert.org/expert/17582 -https://www.oceanexpert.org/expert/17583 -https://www.oceanexpert.org/expert/17584 -https://www.oceanexpert.org/expert/17585 -https://www.oceanexpert.org/expert/17586 -https://www.oceanexpert.org/expert/17587 -https://www.oceanexpert.org/expert/17588 -https://www.oceanexpert.org/expert/17590 -https://www.oceanexpert.org/expert/17591 -https://www.oceanexpert.org/expert/17592 -https://www.oceanexpert.org/expert/17593 -https://www.oceanexpert.org/expert/17594 -https://www.oceanexpert.org/expert/17595 -https://www.oceanexpert.org/expert/17596 -https://www.oceanexpert.org/expert/17597 -https://www.oceanexpert.org/expert/17601 -https://www.oceanexpert.org/expert/17604 -https://www.oceanexpert.org/expert/17605 -https://www.oceanexpert.org/expert/17608 -https://www.oceanexpert.org/expert/17610 -https://www.oceanexpert.org/expert/17611 -https://www.oceanexpert.org/expert/17612 -https://www.oceanexpert.org/expert/17617 -https://www.oceanexpert.org/expert/17618 -https://www.oceanexpert.org/expert/17620 -https://www.oceanexpert.org/expert/17626 -https://www.oceanexpert.org/expert/17628 -https://www.oceanexpert.org/expert/17629 -https://www.oceanexpert.org/expert/17630 -https://www.oceanexpert.org/expert/17631 -https://www.oceanexpert.org/expert/17632 -https://www.oceanexpert.org/expert/17633 -https://www.oceanexpert.org/expert/17634 -https://www.oceanexpert.org/expert/17635 -https://www.oceanexpert.org/expert/17638 -https://www.oceanexpert.org/expert/17639 -https://www.oceanexpert.org/expert/17641 -https://www.oceanexpert.org/expert/17642 -https://www.oceanexpert.org/expert/17643 -https://www.oceanexpert.org/expert/17644 -https://www.oceanexpert.org/expert/17648 -https://www.oceanexpert.org/expert/17651 -https://www.oceanexpert.org/expert/17652 -https://www.oceanexpert.org/expert/17653 -https://www.oceanexpert.org/expert/17654 -https://www.oceanexpert.org/expert/17656 -https://www.oceanexpert.org/expert/17658 -https://www.oceanexpert.org/expert/17664 -https://www.oceanexpert.org/expert/17667 -https://www.oceanexpert.org/expert/17697 -https://www.oceanexpert.org/expert/17703 -https://www.oceanexpert.org/expert/17706 -https://www.oceanexpert.org/expert/17712 -https://www.oceanexpert.org/expert/17716 -https://www.oceanexpert.org/expert/17717 -https://www.oceanexpert.org/expert/17721 -https://www.oceanexpert.org/expert/17724 -https://www.oceanexpert.org/expert/17725 -https://www.oceanexpert.org/expert/17726 -https://www.oceanexpert.org/expert/17727 -https://www.oceanexpert.org/expert/17735 -https://www.oceanexpert.org/expert/17741 -https://www.oceanexpert.org/expert/17747 -https://www.oceanexpert.org/expert/17751 -https://www.oceanexpert.org/expert/17754 -https://www.oceanexpert.org/expert/17758 -https://www.oceanexpert.org/expert/17767 -https://www.oceanexpert.org/expert/17768 -https://www.oceanexpert.org/expert/17769 -https://www.oceanexpert.org/expert/17772 -https://www.oceanexpert.org/expert/17773 -https://www.oceanexpert.org/expert/17776 -https://www.oceanexpert.org/expert/17781 -https://www.oceanexpert.org/expert/17782 -https://www.oceanexpert.org/expert/17786 -https://www.oceanexpert.org/expert/17789 -https://www.oceanexpert.org/expert/17790 -https://www.oceanexpert.org/expert/17791 -https://www.oceanexpert.org/expert/17795 -https://www.oceanexpert.org/expert/17801 -https://www.oceanexpert.org/expert/17802 -https://www.oceanexpert.org/expert/17805 -https://www.oceanexpert.org/expert/17806 -https://www.oceanexpert.org/expert/17807 -https://www.oceanexpert.org/expert/17809 -https://www.oceanexpert.org/expert/17812 -https://www.oceanexpert.org/expert/17813 -https://www.oceanexpert.org/expert/17816 -https://www.oceanexpert.org/expert/17820 -https://www.oceanexpert.org/expert/17823 -https://www.oceanexpert.org/expert/17824 -https://www.oceanexpert.org/expert/17826 -https://www.oceanexpert.org/expert/17831 -https://www.oceanexpert.org/expert/17834 -https://www.oceanexpert.org/expert/17836 -https://www.oceanexpert.org/expert/17837 -https://www.oceanexpert.org/expert/17840 -https://www.oceanexpert.org/expert/17841 -https://www.oceanexpert.org/expert/17844 -https://www.oceanexpert.org/expert/17845 -https://www.oceanexpert.org/expert/17846 -https://www.oceanexpert.org/expert/17847 -https://www.oceanexpert.org/expert/17848 -https://www.oceanexpert.org/expert/17849 -https://www.oceanexpert.org/expert/17852 -https://www.oceanexpert.org/expert/17854 -https://www.oceanexpert.org/expert/17856 -https://www.oceanexpert.org/expert/17879 -https://www.oceanexpert.org/expert/17880 -https://www.oceanexpert.org/expert/17895 -https://www.oceanexpert.org/expert/17902 -https://www.oceanexpert.org/expert/17906 -https://www.oceanexpert.org/expert/17907 -https://www.oceanexpert.org/expert/17909 -https://www.oceanexpert.org/expert/17910 -https://www.oceanexpert.org/expert/17913 -https://www.oceanexpert.org/expert/17917 -https://www.oceanexpert.org/expert/17918 -https://www.oceanexpert.org/expert/17919 -https://www.oceanexpert.org/expert/17920 -https://www.oceanexpert.org/expert/17922 -https://www.oceanexpert.org/expert/17925 -https://www.oceanexpert.org/expert/17926 -https://www.oceanexpert.org/expert/17927 -https://www.oceanexpert.org/expert/17928 -https://www.oceanexpert.org/expert/17929 -https://www.oceanexpert.org/expert/17931 -https://www.oceanexpert.org/expert/17932 -https://www.oceanexpert.org/expert/17936 -https://www.oceanexpert.org/expert/17938 -https://www.oceanexpert.org/expert/17939 -https://www.oceanexpert.org/expert/17941 -https://www.oceanexpert.org/expert/17942 -https://www.oceanexpert.org/expert/17945 -https://www.oceanexpert.org/expert/17953 -https://www.oceanexpert.org/expert/17957 -https://www.oceanexpert.org/expert/17959 -https://www.oceanexpert.org/expert/17961 -https://www.oceanexpert.org/expert/17962 -https://www.oceanexpert.org/expert/17965 -https://www.oceanexpert.org/expert/17967 -https://www.oceanexpert.org/expert/17969 -https://www.oceanexpert.org/expert/17970 -https://www.oceanexpert.org/expert/17972 -https://www.oceanexpert.org/expert/17973 -https://www.oceanexpert.org/expert/17974 -https://www.oceanexpert.org/expert/17975 -https://www.oceanexpert.org/expert/17976 -https://www.oceanexpert.org/expert/17978 -https://www.oceanexpert.org/expert/17980 -https://www.oceanexpert.org/expert/17981 -https://www.oceanexpert.org/expert/17983 -https://www.oceanexpert.org/expert/17984 -https://www.oceanexpert.org/expert/17985 -https://www.oceanexpert.org/expert/17987 -https://www.oceanexpert.org/expert/17988 -https://www.oceanexpert.org/expert/17991 -https://www.oceanexpert.org/expert/17993 -https://www.oceanexpert.org/expert/17997 -https://www.oceanexpert.org/expert/17999 -https://www.oceanexpert.org/expert/18001 -https://www.oceanexpert.org/expert/18002 -https://www.oceanexpert.org/expert/18003 -https://www.oceanexpert.org/expert/18004 -https://www.oceanexpert.org/expert/18006 -https://www.oceanexpert.org/expert/18007 -https://www.oceanexpert.org/expert/18009 -https://www.oceanexpert.org/expert/18010 -https://www.oceanexpert.org/expert/18013 -https://www.oceanexpert.org/expert/18017 -https://www.oceanexpert.org/expert/18019 -https://www.oceanexpert.org/expert/18020 -https://www.oceanexpert.org/expert/18021 -https://www.oceanexpert.org/expert/18022 -https://www.oceanexpert.org/expert/18023 -https://www.oceanexpert.org/expert/18024 -https://www.oceanexpert.org/expert/18028 -https://www.oceanexpert.org/expert/18029 -https://www.oceanexpert.org/expert/18030 -https://www.oceanexpert.org/expert/18031 -https://www.oceanexpert.org/expert/18032 -https://www.oceanexpert.org/expert/18033 -https://www.oceanexpert.org/expert/18036 -https://www.oceanexpert.org/expert/18037 -https://www.oceanexpert.org/expert/18042 -https://www.oceanexpert.org/expert/18044 -https://www.oceanexpert.org/expert/18047 -https://www.oceanexpert.org/expert/18050 -https://www.oceanexpert.org/expert/18051 -https://www.oceanexpert.org/expert/18052 -https://www.oceanexpert.org/expert/18054 -https://www.oceanexpert.org/expert/18055 -https://www.oceanexpert.org/expert/18057 -https://www.oceanexpert.org/expert/18059 -https://www.oceanexpert.org/expert/18060 -https://www.oceanexpert.org/expert/18063 -https://www.oceanexpert.org/expert/18066 -https://www.oceanexpert.org/expert/18070 -https://www.oceanexpert.org/expert/18071 -https://www.oceanexpert.org/expert/18081 -https://www.oceanexpert.org/expert/18085 -https://www.oceanexpert.org/expert/18090 -https://www.oceanexpert.org/expert/18097 -https://www.oceanexpert.org/expert/18113 -https://www.oceanexpert.org/expert/18116 -https://www.oceanexpert.org/expert/18117 -https://www.oceanexpert.org/expert/18118 -https://www.oceanexpert.org/expert/18120 -https://www.oceanexpert.org/expert/18121 -https://www.oceanexpert.org/expert/18122 -https://www.oceanexpert.org/expert/18123 -https://www.oceanexpert.org/expert/18124 -https://www.oceanexpert.org/expert/18125 -https://www.oceanexpert.org/expert/18126 -https://www.oceanexpert.org/expert/18128 -https://www.oceanexpert.org/expert/18129 -https://www.oceanexpert.org/expert/18131 -https://www.oceanexpert.org/expert/18132 -https://www.oceanexpert.org/expert/18133 -https://www.oceanexpert.org/expert/18137 -https://www.oceanexpert.org/expert/18141 -https://www.oceanexpert.org/expert/18143 -https://www.oceanexpert.org/expert/18145 -https://www.oceanexpert.org/expert/18147 -https://www.oceanexpert.org/expert/18148 -https://www.oceanexpert.org/expert/18149 -https://www.oceanexpert.org/expert/18150 -https://www.oceanexpert.org/expert/18151 -https://www.oceanexpert.org/expert/18152 -https://www.oceanexpert.org/expert/18155 -https://www.oceanexpert.org/expert/18156 -https://www.oceanexpert.org/expert/18159 -https://www.oceanexpert.org/expert/18160 -https://www.oceanexpert.org/expert/18161 -https://www.oceanexpert.org/expert/18162 -https://www.oceanexpert.org/expert/18167 -https://www.oceanexpert.org/expert/18170 -https://www.oceanexpert.org/expert/18171 -https://www.oceanexpert.org/expert/18173 -https://www.oceanexpert.org/expert/18174 -https://www.oceanexpert.org/expert/18175 -https://www.oceanexpert.org/expert/18176 -https://www.oceanexpert.org/expert/18177 -https://www.oceanexpert.org/expert/18178 -https://www.oceanexpert.org/expert/18180 -https://www.oceanexpert.org/expert/18184 -https://www.oceanexpert.org/expert/18185 -https://www.oceanexpert.org/expert/18186 -https://www.oceanexpert.org/expert/18189 -https://www.oceanexpert.org/expert/18190 -https://www.oceanexpert.org/expert/18191 -https://www.oceanexpert.org/expert/18195 -https://www.oceanexpert.org/expert/18196 -https://www.oceanexpert.org/expert/18197 -https://www.oceanexpert.org/expert/18198 -https://www.oceanexpert.org/expert/18199 -https://www.oceanexpert.org/expert/18200 -https://www.oceanexpert.org/expert/18202 -https://www.oceanexpert.org/expert/18206 -https://www.oceanexpert.org/expert/18207 -https://www.oceanexpert.org/expert/18208 -https://www.oceanexpert.org/expert/18209 -https://www.oceanexpert.org/expert/18211 -https://www.oceanexpert.org/expert/18213 -https://www.oceanexpert.org/expert/18214 -https://www.oceanexpert.org/expert/18215 -https://www.oceanexpert.org/expert/18216 -https://www.oceanexpert.org/expert/18218 -https://www.oceanexpert.org/expert/18219 -https://www.oceanexpert.org/expert/18221 -https://www.oceanexpert.org/expert/18222 -https://www.oceanexpert.org/expert/18224 -https://www.oceanexpert.org/expert/18227 -https://www.oceanexpert.org/expert/18230 -https://www.oceanexpert.org/expert/18231 -https://www.oceanexpert.org/expert/18235 -https://www.oceanexpert.org/expert/18238 -https://www.oceanexpert.org/expert/18240 -https://www.oceanexpert.org/expert/18241 -https://www.oceanexpert.org/expert/18242 -https://www.oceanexpert.org/expert/18243 -https://www.oceanexpert.org/expert/18244 -https://www.oceanexpert.org/expert/18249 -https://www.oceanexpert.org/expert/18251 -https://www.oceanexpert.org/expert/18253 -https://www.oceanexpert.org/expert/18256 -https://www.oceanexpert.org/expert/18257 -https://www.oceanexpert.org/expert/18262 -https://www.oceanexpert.org/expert/18264 -https://www.oceanexpert.org/expert/18266 -https://www.oceanexpert.org/expert/18267 -https://www.oceanexpert.org/expert/18273 -https://www.oceanexpert.org/expert/18276 -https://www.oceanexpert.org/expert/18278 -https://www.oceanexpert.org/expert/18279 -https://www.oceanexpert.org/expert/18280 -https://www.oceanexpert.org/expert/18283 -https://www.oceanexpert.org/expert/18284 -https://www.oceanexpert.org/expert/18285 -https://www.oceanexpert.org/expert/18286 -https://www.oceanexpert.org/expert/18287 -https://www.oceanexpert.org/expert/18288 -https://www.oceanexpert.org/expert/18289 -https://www.oceanexpert.org/expert/18291 -https://www.oceanexpert.org/expert/18292 -https://www.oceanexpert.org/expert/18297 -https://www.oceanexpert.org/expert/18298 -https://www.oceanexpert.org/expert/18301 -https://www.oceanexpert.org/expert/18302 -https://www.oceanexpert.org/expert/18303 -https://www.oceanexpert.org/expert/18304 -https://www.oceanexpert.org/expert/18306 -https://www.oceanexpert.org/expert/18309 -https://www.oceanexpert.org/expert/18310 -https://www.oceanexpert.org/expert/18313 -https://www.oceanexpert.org/expert/18317 -https://www.oceanexpert.org/expert/18319 -https://www.oceanexpert.org/expert/18321 -https://www.oceanexpert.org/expert/18322 -https://www.oceanexpert.org/expert/18323 -https://www.oceanexpert.org/expert/18324 -https://www.oceanexpert.org/expert/18327 -https://www.oceanexpert.org/expert/18329 -https://www.oceanexpert.org/expert/18331 -https://www.oceanexpert.org/expert/18332 -https://www.oceanexpert.org/expert/18333 -https://www.oceanexpert.org/expert/18337 -https://www.oceanexpert.org/expert/18338 -https://www.oceanexpert.org/expert/18340 -https://www.oceanexpert.org/expert/18341 -https://www.oceanexpert.org/expert/18342 -https://www.oceanexpert.org/expert/18343 -https://www.oceanexpert.org/expert/18344 -https://www.oceanexpert.org/expert/18345 -https://www.oceanexpert.org/expert/18346 -https://www.oceanexpert.org/expert/18347 -https://www.oceanexpert.org/expert/18348 -https://www.oceanexpert.org/expert/18349 -https://www.oceanexpert.org/expert/18350 -https://www.oceanexpert.org/expert/18352 -https://www.oceanexpert.org/expert/18353 -https://www.oceanexpert.org/expert/18354 -https://www.oceanexpert.org/expert/18355 -https://www.oceanexpert.org/expert/18356 -https://www.oceanexpert.org/expert/18359 -https://www.oceanexpert.org/expert/18361 -https://www.oceanexpert.org/expert/18362 -https://www.oceanexpert.org/expert/18365 -https://www.oceanexpert.org/expert/18369 -https://www.oceanexpert.org/expert/18370 -https://www.oceanexpert.org/expert/18371 -https://www.oceanexpert.org/expert/18372 -https://www.oceanexpert.org/expert/18377 -https://www.oceanexpert.org/expert/18379 -https://www.oceanexpert.org/expert/18380 -https://www.oceanexpert.org/expert/18382 -https://www.oceanexpert.org/expert/18386 -https://www.oceanexpert.org/expert/18387 -https://www.oceanexpert.org/expert/18388 -https://www.oceanexpert.org/expert/18389 -https://www.oceanexpert.org/expert/18390 -https://www.oceanexpert.org/expert/18392 -https://www.oceanexpert.org/expert/18393 -https://www.oceanexpert.org/expert/18395 -https://www.oceanexpert.org/expert/18396 -https://www.oceanexpert.org/expert/18397 -https://www.oceanexpert.org/expert/18398 -https://www.oceanexpert.org/expert/18399 -https://www.oceanexpert.org/expert/18400 -https://www.oceanexpert.org/expert/18401 -https://www.oceanexpert.org/expert/18402 -https://www.oceanexpert.org/expert/18406 -https://www.oceanexpert.org/expert/18408 -https://www.oceanexpert.org/expert/18409 -https://www.oceanexpert.org/expert/18419 -https://www.oceanexpert.org/expert/18427 -https://www.oceanexpert.org/expert/18429 -https://www.oceanexpert.org/expert/18431 -https://www.oceanexpert.org/expert/18432 -https://www.oceanexpert.org/expert/18434 -https://www.oceanexpert.org/expert/18435 -https://www.oceanexpert.org/expert/18437 -https://www.oceanexpert.org/expert/18438 -https://www.oceanexpert.org/expert/18442 -https://www.oceanexpert.org/expert/18443 -https://www.oceanexpert.org/expert/18445 -https://www.oceanexpert.org/expert/18449 -https://www.oceanexpert.org/expert/18452 -https://www.oceanexpert.org/expert/18453 -https://www.oceanexpert.org/expert/18455 -https://www.oceanexpert.org/expert/18456 -https://www.oceanexpert.org/expert/18462 -https://www.oceanexpert.org/expert/18467 -https://www.oceanexpert.org/expert/18469 -https://www.oceanexpert.org/expert/18470 -https://www.oceanexpert.org/expert/18472 -https://www.oceanexpert.org/expert/18474 -https://www.oceanexpert.org/expert/18475 -https://www.oceanexpert.org/expert/18476 -https://www.oceanexpert.org/expert/18478 -https://www.oceanexpert.org/expert/18479 -https://www.oceanexpert.org/expert/18480 -https://www.oceanexpert.org/expert/18481 -https://www.oceanexpert.org/expert/18483 -https://www.oceanexpert.org/expert/18484 -https://www.oceanexpert.org/expert/18487 -https://www.oceanexpert.org/expert/18488 -https://www.oceanexpert.org/expert/18489 -https://www.oceanexpert.org/expert/18490 -https://www.oceanexpert.org/expert/18491 -https://www.oceanexpert.org/expert/18493 -https://www.oceanexpert.org/expert/18495 -https://www.oceanexpert.org/expert/18497 -https://www.oceanexpert.org/expert/18498 -https://www.oceanexpert.org/expert/18500 -https://www.oceanexpert.org/expert/18502 -https://www.oceanexpert.org/expert/18504 -https://www.oceanexpert.org/expert/18509 -https://www.oceanexpert.org/expert/18512 -https://www.oceanexpert.org/expert/18513 -https://www.oceanexpert.org/expert/18517 -https://www.oceanexpert.org/expert/18520 -https://www.oceanexpert.org/expert/18521 -https://www.oceanexpert.org/expert/18526 -https://www.oceanexpert.org/expert/18533 -https://www.oceanexpert.org/expert/18535 -https://www.oceanexpert.org/expert/18536 -https://www.oceanexpert.org/expert/18540 -https://www.oceanexpert.org/expert/18545 -https://www.oceanexpert.org/expert/18546 -https://www.oceanexpert.org/expert/18547 -https://www.oceanexpert.org/expert/18549 -https://www.oceanexpert.org/expert/18550 -https://www.oceanexpert.org/expert/18551 -https://www.oceanexpert.org/expert/18552 -https://www.oceanexpert.org/expert/18555 -https://www.oceanexpert.org/expert/18556 -https://www.oceanexpert.org/expert/18557 -https://www.oceanexpert.org/expert/18561 -https://www.oceanexpert.org/expert/18562 -https://www.oceanexpert.org/expert/18563 -https://www.oceanexpert.org/expert/18564 -https://www.oceanexpert.org/expert/18565 -https://www.oceanexpert.org/expert/18566 -https://www.oceanexpert.org/expert/18569 -https://www.oceanexpert.org/expert/18570 -https://www.oceanexpert.org/expert/18573 -https://www.oceanexpert.org/expert/18575 -https://www.oceanexpert.org/expert/18578 -https://www.oceanexpert.org/expert/18579 -https://www.oceanexpert.org/expert/18582 -https://www.oceanexpert.org/expert/18584 -https://www.oceanexpert.org/expert/18585 -https://www.oceanexpert.org/expert/18587 -https://www.oceanexpert.org/expert/18589 -https://www.oceanexpert.org/expert/18591 -https://www.oceanexpert.org/expert/18592 -https://www.oceanexpert.org/expert/18593 -https://www.oceanexpert.org/expert/18595 -https://www.oceanexpert.org/expert/18598 -https://www.oceanexpert.org/expert/18599 -https://www.oceanexpert.org/expert/18600 -https://www.oceanexpert.org/expert/18601 -https://www.oceanexpert.org/expert/18603 -https://www.oceanexpert.org/expert/18606 -https://www.oceanexpert.org/expert/18610 -https://www.oceanexpert.org/expert/18612 -https://www.oceanexpert.org/expert/18613 -https://www.oceanexpert.org/expert/18614 -https://www.oceanexpert.org/expert/18616 -https://www.oceanexpert.org/expert/18617 -https://www.oceanexpert.org/expert/18619 -https://www.oceanexpert.org/expert/18620 -https://www.oceanexpert.org/expert/18623 -https://www.oceanexpert.org/expert/18624 -https://www.oceanexpert.org/expert/18625 -https://www.oceanexpert.org/expert/18626 -https://www.oceanexpert.org/expert/18628 -https://www.oceanexpert.org/expert/18631 -https://www.oceanexpert.org/expert/18632 -https://www.oceanexpert.org/expert/18633 -https://www.oceanexpert.org/expert/18636 -https://www.oceanexpert.org/expert/18637 -https://www.oceanexpert.org/expert/18639 -https://www.oceanexpert.org/expert/18644 -https://www.oceanexpert.org/expert/18645 -https://www.oceanexpert.org/expert/18646 -https://www.oceanexpert.org/expert/18647 -https://www.oceanexpert.org/expert/18648 -https://www.oceanexpert.org/expert/18649 -https://www.oceanexpert.org/expert/18652 -https://www.oceanexpert.org/expert/18654 -https://www.oceanexpert.org/expert/18656 -https://www.oceanexpert.org/expert/18659 -https://www.oceanexpert.org/expert/18660 -https://www.oceanexpert.org/expert/18663 -https://www.oceanexpert.org/expert/18664 -https://www.oceanexpert.org/expert/18666 -https://www.oceanexpert.org/expert/18669 -https://www.oceanexpert.org/expert/18672 -https://www.oceanexpert.org/expert/18679 -https://www.oceanexpert.org/expert/18681 -https://www.oceanexpert.org/expert/18682 -https://www.oceanexpert.org/expert/18684 -https://www.oceanexpert.org/expert/18685 -https://www.oceanexpert.org/expert/18686 -https://www.oceanexpert.org/expert/18688 -https://www.oceanexpert.org/expert/18689 -https://www.oceanexpert.org/expert/18690 -https://www.oceanexpert.org/expert/18691 -https://www.oceanexpert.org/expert/18693 -https://www.oceanexpert.org/expert/18694 -https://www.oceanexpert.org/expert/18697 -https://www.oceanexpert.org/expert/18703 -https://www.oceanexpert.org/expert/18705 -https://www.oceanexpert.org/expert/18706 -https://www.oceanexpert.org/expert/18707 -https://www.oceanexpert.org/expert/18708 -https://www.oceanexpert.org/expert/18709 -https://www.oceanexpert.org/expert/18712 -https://www.oceanexpert.org/expert/18713 -https://www.oceanexpert.org/expert/18714 -https://www.oceanexpert.org/expert/18716 -https://www.oceanexpert.org/expert/18717 -https://www.oceanexpert.org/expert/18718 -https://www.oceanexpert.org/expert/18719 -https://www.oceanexpert.org/expert/18723 -https://www.oceanexpert.org/expert/18724 -https://www.oceanexpert.org/expert/18728 -https://www.oceanexpert.org/expert/18730 -https://www.oceanexpert.org/expert/18734 -https://www.oceanexpert.org/expert/18736 -https://www.oceanexpert.org/expert/18738 -https://www.oceanexpert.org/expert/18739 -https://www.oceanexpert.org/expert/18742 -https://www.oceanexpert.org/expert/18743 -https://www.oceanexpert.org/expert/18744 -https://www.oceanexpert.org/expert/18750 -https://www.oceanexpert.org/expert/18753 -https://www.oceanexpert.org/expert/18754 -https://www.oceanexpert.org/expert/18757 -https://www.oceanexpert.org/expert/18758 -https://www.oceanexpert.org/expert/18759 -https://www.oceanexpert.org/expert/18760 -https://www.oceanexpert.org/expert/18761 -https://www.oceanexpert.org/expert/18762 -https://www.oceanexpert.org/expert/18766 -https://www.oceanexpert.org/expert/18770 -https://www.oceanexpert.org/expert/18777 -https://www.oceanexpert.org/expert/18778 -https://www.oceanexpert.org/expert/18779 -https://www.oceanexpert.org/expert/18781 -https://www.oceanexpert.org/expert/18782 -https://www.oceanexpert.org/expert/18784 -https://www.oceanexpert.org/expert/18786 -https://www.oceanexpert.org/expert/18787 -https://www.oceanexpert.org/expert/18788 -https://www.oceanexpert.org/expert/18790 -https://www.oceanexpert.org/expert/18791 -https://www.oceanexpert.org/expert/18792 -https://www.oceanexpert.org/expert/18793 -https://www.oceanexpert.org/expert/18794 -https://www.oceanexpert.org/expert/18795 -https://www.oceanexpert.org/expert/18797 -https://www.oceanexpert.org/expert/18798 -https://www.oceanexpert.org/expert/18799 -https://www.oceanexpert.org/expert/18803 -https://www.oceanexpert.org/expert/18805 -https://www.oceanexpert.org/expert/18806 -https://www.oceanexpert.org/expert/18807 -https://www.oceanexpert.org/expert/18810 -https://www.oceanexpert.org/expert/18815 -https://www.oceanexpert.org/expert/18820 -https://www.oceanexpert.org/expert/18821 -https://www.oceanexpert.org/expert/18823 -https://www.oceanexpert.org/expert/18824 -https://www.oceanexpert.org/expert/18826 -https://www.oceanexpert.org/expert/18828 -https://www.oceanexpert.org/expert/18829 -https://www.oceanexpert.org/expert/18830 -https://www.oceanexpert.org/expert/18832 -https://www.oceanexpert.org/expert/18834 -https://www.oceanexpert.org/expert/18835 -https://www.oceanexpert.org/expert/18837 -https://www.oceanexpert.org/expert/18838 -https://www.oceanexpert.org/expert/18839 -https://www.oceanexpert.org/expert/18841 -https://www.oceanexpert.org/expert/18842 -https://www.oceanexpert.org/expert/18843 -https://www.oceanexpert.org/expert/18844 -https://www.oceanexpert.org/expert/18846 -https://www.oceanexpert.org/expert/18847 -https://www.oceanexpert.org/expert/18848 -https://www.oceanexpert.org/expert/18850 -https://www.oceanexpert.org/expert/18851 -https://www.oceanexpert.org/expert/18852 -https://www.oceanexpert.org/expert/18856 -https://www.oceanexpert.org/expert/18857 -https://www.oceanexpert.org/expert/18858 -https://www.oceanexpert.org/expert/18860 -https://www.oceanexpert.org/expert/18861 -https://www.oceanexpert.org/expert/18862 -https://www.oceanexpert.org/expert/18863 -https://www.oceanexpert.org/expert/18864 -https://www.oceanexpert.org/expert/18865 -https://www.oceanexpert.org/expert/18866 -https://www.oceanexpert.org/expert/18869 -https://www.oceanexpert.org/expert/18870 -https://www.oceanexpert.org/expert/18871 -https://www.oceanexpert.org/expert/18873 -https://www.oceanexpert.org/expert/18874 -https://www.oceanexpert.org/expert/18876 -https://www.oceanexpert.org/expert/18877 -https://www.oceanexpert.org/expert/18878 -https://www.oceanexpert.org/expert/18880 -https://www.oceanexpert.org/expert/18884 -https://www.oceanexpert.org/expert/18885 -https://www.oceanexpert.org/expert/18886 -https://www.oceanexpert.org/expert/18887 -https://www.oceanexpert.org/expert/18889 -https://www.oceanexpert.org/expert/18890 -https://www.oceanexpert.org/expert/18891 -https://www.oceanexpert.org/expert/18892 -https://www.oceanexpert.org/expert/18893 -https://www.oceanexpert.org/expert/18897 -https://www.oceanexpert.org/expert/18898 -https://www.oceanexpert.org/expert/18899 -https://www.oceanexpert.org/expert/18901 -https://www.oceanexpert.org/expert/18905 -https://www.oceanexpert.org/expert/18907 -https://www.oceanexpert.org/expert/18909 -https://www.oceanexpert.org/expert/18910 -https://www.oceanexpert.org/expert/18912 -https://www.oceanexpert.org/expert/18915 -https://www.oceanexpert.org/expert/18916 -https://www.oceanexpert.org/expert/18917 -https://www.oceanexpert.org/expert/18918 -https://www.oceanexpert.org/expert/18919 -https://www.oceanexpert.org/expert/18921 -https://www.oceanexpert.org/expert/18925 -https://www.oceanexpert.org/expert/18926 -https://www.oceanexpert.org/expert/18927 -https://www.oceanexpert.org/expert/18928 -https://www.oceanexpert.org/expert/18929 -https://www.oceanexpert.org/expert/18932 -https://www.oceanexpert.org/expert/18934 -https://www.oceanexpert.org/expert/18937 -https://www.oceanexpert.org/expert/18939 -https://www.oceanexpert.org/expert/18941 -https://www.oceanexpert.org/expert/18944 -https://www.oceanexpert.org/expert/18948 -https://www.oceanexpert.org/expert/18949 -https://www.oceanexpert.org/expert/18951 -https://www.oceanexpert.org/expert/18952 -https://www.oceanexpert.org/expert/18954 -https://www.oceanexpert.org/expert/18955 -https://www.oceanexpert.org/expert/18956 -https://www.oceanexpert.org/expert/18957 -https://www.oceanexpert.org/expert/18962 -https://www.oceanexpert.org/expert/18964 -https://www.oceanexpert.org/expert/18965 -https://www.oceanexpert.org/expert/18966 -https://www.oceanexpert.org/expert/18969 -https://www.oceanexpert.org/expert/18975 -https://www.oceanexpert.org/expert/18977 -https://www.oceanexpert.org/expert/18978 -https://www.oceanexpert.org/expert/18980 -https://www.oceanexpert.org/expert/18985 -https://www.oceanexpert.org/expert/18987 -https://www.oceanexpert.org/expert/18988 -https://www.oceanexpert.org/expert/18990 -https://www.oceanexpert.org/expert/18991 -https://www.oceanexpert.org/expert/18992 -https://www.oceanexpert.org/expert/18993 -https://www.oceanexpert.org/expert/18994 -https://www.oceanexpert.org/expert/18995 -https://www.oceanexpert.org/expert/18997 -https://www.oceanexpert.org/expert/18998 -https://www.oceanexpert.org/expert/18999 -https://www.oceanexpert.org/expert/19000 -https://www.oceanexpert.org/expert/19003 -https://www.oceanexpert.org/expert/19005 -https://www.oceanexpert.org/expert/19006 -https://www.oceanexpert.org/expert/19007 -https://www.oceanexpert.org/expert/19009 -https://www.oceanexpert.org/expert/19010 -https://www.oceanexpert.org/expert/19011 -https://www.oceanexpert.org/expert/19012 -https://www.oceanexpert.org/expert/19013 -https://www.oceanexpert.org/expert/19014 -https://www.oceanexpert.org/expert/19019 -https://www.oceanexpert.org/expert/19020 -https://www.oceanexpert.org/expert/19022 -https://www.oceanexpert.org/expert/19024 -https://www.oceanexpert.org/expert/19025 -https://www.oceanexpert.org/expert/19026 -https://www.oceanexpert.org/expert/19027 -https://www.oceanexpert.org/expert/19028 -https://www.oceanexpert.org/expert/19030 -https://www.oceanexpert.org/expert/19032 -https://www.oceanexpert.org/expert/19033 -https://www.oceanexpert.org/expert/19035 -https://www.oceanexpert.org/expert/19036 -https://www.oceanexpert.org/expert/19037 -https://www.oceanexpert.org/expert/19040 -https://www.oceanexpert.org/expert/19043 -https://www.oceanexpert.org/expert/19045 -https://www.oceanexpert.org/expert/19046 -https://www.oceanexpert.org/expert/19047 -https://www.oceanexpert.org/expert/19049 -https://www.oceanexpert.org/expert/19053 -https://www.oceanexpert.org/expert/19056 -https://www.oceanexpert.org/expert/19057 -https://www.oceanexpert.org/expert/19058 -https://www.oceanexpert.org/expert/19059 -https://www.oceanexpert.org/expert/19064 -https://www.oceanexpert.org/expert/19065 -https://www.oceanexpert.org/expert/19067 -https://www.oceanexpert.org/expert/19068 -https://www.oceanexpert.org/expert/19069 -https://www.oceanexpert.org/expert/19073 -https://www.oceanexpert.org/expert/19074 -https://www.oceanexpert.org/expert/19075 -https://www.oceanexpert.org/expert/19076 -https://www.oceanexpert.org/expert/19077 -https://www.oceanexpert.org/expert/19080 -https://www.oceanexpert.org/expert/19082 -https://www.oceanexpert.org/expert/19083 -https://www.oceanexpert.org/expert/19084 -https://www.oceanexpert.org/expert/19086 -https://www.oceanexpert.org/expert/19087 -https://www.oceanexpert.org/expert/19092 -https://www.oceanexpert.org/expert/19093 -https://www.oceanexpert.org/expert/19094 -https://www.oceanexpert.org/expert/19095 -https://www.oceanexpert.org/expert/19096 -https://www.oceanexpert.org/expert/19099 -https://www.oceanexpert.org/expert/19102 -https://www.oceanexpert.org/expert/19103 -https://www.oceanexpert.org/expert/19104 -https://www.oceanexpert.org/expert/19105 -https://www.oceanexpert.org/expert/19107 -https://www.oceanexpert.org/expert/19108 -https://www.oceanexpert.org/expert/19109 -https://www.oceanexpert.org/expert/19111 -https://www.oceanexpert.org/expert/19112 -https://www.oceanexpert.org/expert/19113 -https://www.oceanexpert.org/expert/19114 -https://www.oceanexpert.org/expert/19117 -https://www.oceanexpert.org/expert/19119 -https://www.oceanexpert.org/expert/19120 -https://www.oceanexpert.org/expert/19123 -https://www.oceanexpert.org/expert/19124 -https://www.oceanexpert.org/expert/19126 -https://www.oceanexpert.org/expert/19129 -https://www.oceanexpert.org/expert/19131 -https://www.oceanexpert.org/expert/19132 -https://www.oceanexpert.org/expert/19135 -https://www.oceanexpert.org/expert/19139 -https://www.oceanexpert.org/expert/19142 -https://www.oceanexpert.org/expert/19145 -https://www.oceanexpert.org/expert/19151 -https://www.oceanexpert.org/expert/19153 -https://www.oceanexpert.org/expert/19154 -https://www.oceanexpert.org/expert/19155 -https://www.oceanexpert.org/expert/19159 -https://www.oceanexpert.org/expert/19160 -https://www.oceanexpert.org/expert/19161 -https://www.oceanexpert.org/expert/19162 -https://www.oceanexpert.org/expert/19163 -https://www.oceanexpert.org/expert/19165 -https://www.oceanexpert.org/expert/19166 -https://www.oceanexpert.org/expert/19168 -https://www.oceanexpert.org/expert/19169 -https://www.oceanexpert.org/expert/19170 -https://www.oceanexpert.org/expert/19171 -https://www.oceanexpert.org/expert/19172 -https://www.oceanexpert.org/expert/19174 -https://www.oceanexpert.org/expert/19175 -https://www.oceanexpert.org/expert/19177 -https://www.oceanexpert.org/expert/19178 -https://www.oceanexpert.org/expert/19181 -https://www.oceanexpert.org/expert/19184 -https://www.oceanexpert.org/expert/19188 -https://www.oceanexpert.org/expert/19191 -https://www.oceanexpert.org/expert/19193 -https://www.oceanexpert.org/expert/19195 -https://www.oceanexpert.org/expert/19197 -https://www.oceanexpert.org/expert/19198 -https://www.oceanexpert.org/expert/19199 -https://www.oceanexpert.org/expert/19200 -https://www.oceanexpert.org/expert/19201 -https://www.oceanexpert.org/expert/19203 -https://www.oceanexpert.org/expert/19205 -https://www.oceanexpert.org/expert/19207 -https://www.oceanexpert.org/expert/19210 -https://www.oceanexpert.org/expert/19211 -https://www.oceanexpert.org/expert/19213 -https://www.oceanexpert.org/expert/19214 -https://www.oceanexpert.org/expert/19215 -https://www.oceanexpert.org/expert/19216 -https://www.oceanexpert.org/expert/19220 -https://www.oceanexpert.org/expert/19221 -https://www.oceanexpert.org/expert/19222 -https://www.oceanexpert.org/expert/19223 -https://www.oceanexpert.org/expert/19227 -https://www.oceanexpert.org/expert/19228 -https://www.oceanexpert.org/expert/19229 -https://www.oceanexpert.org/expert/19230 -https://www.oceanexpert.org/expert/19231 -https://www.oceanexpert.org/expert/19233 -https://www.oceanexpert.org/expert/19235 -https://www.oceanexpert.org/expert/19238 -https://www.oceanexpert.org/expert/19239 -https://www.oceanexpert.org/expert/19242 -https://www.oceanexpert.org/expert/19244 -https://www.oceanexpert.org/expert/19245 -https://www.oceanexpert.org/expert/19246 -https://www.oceanexpert.org/expert/19247 -https://www.oceanexpert.org/expert/19250 -https://www.oceanexpert.org/expert/19252 -https://www.oceanexpert.org/expert/19253 -https://www.oceanexpert.org/expert/19254 -https://www.oceanexpert.org/expert/19255 -https://www.oceanexpert.org/expert/19256 -https://www.oceanexpert.org/expert/19258 -https://www.oceanexpert.org/expert/19261 -https://www.oceanexpert.org/expert/19262 -https://www.oceanexpert.org/expert/19263 -https://www.oceanexpert.org/expert/19264 -https://www.oceanexpert.org/expert/19265 -https://www.oceanexpert.org/expert/19267 -https://www.oceanexpert.org/expert/19270 -https://www.oceanexpert.org/expert/19272 -https://www.oceanexpert.org/expert/19275 -https://www.oceanexpert.org/expert/19276 -https://www.oceanexpert.org/expert/19277 -https://www.oceanexpert.org/expert/19278 -https://www.oceanexpert.org/expert/19280 -https://www.oceanexpert.org/expert/19281 -https://www.oceanexpert.org/expert/19282 -https://www.oceanexpert.org/expert/19283 -https://www.oceanexpert.org/expert/19284 -https://www.oceanexpert.org/expert/19285 -https://www.oceanexpert.org/expert/19286 -https://www.oceanexpert.org/expert/19288 -https://www.oceanexpert.org/expert/19289 -https://www.oceanexpert.org/expert/19291 -https://www.oceanexpert.org/expert/19292 -https://www.oceanexpert.org/expert/19294 -https://www.oceanexpert.org/expert/19295 -https://www.oceanexpert.org/expert/19297 -https://www.oceanexpert.org/expert/19301 -https://www.oceanexpert.org/expert/19304 -https://www.oceanexpert.org/expert/19305 -https://www.oceanexpert.org/expert/19306 -https://www.oceanexpert.org/expert/19307 -https://www.oceanexpert.org/expert/19312 -https://www.oceanexpert.org/expert/19314 -https://www.oceanexpert.org/expert/19315 -https://www.oceanexpert.org/expert/19317 -https://www.oceanexpert.org/expert/19318 -https://www.oceanexpert.org/expert/19320 -https://www.oceanexpert.org/expert/19321 -https://www.oceanexpert.org/expert/19322 -https://www.oceanexpert.org/expert/19323 -https://www.oceanexpert.org/expert/19324 -https://www.oceanexpert.org/expert/19331 -https://www.oceanexpert.org/expert/19333 -https://www.oceanexpert.org/expert/19335 -https://www.oceanexpert.org/expert/19337 -https://www.oceanexpert.org/expert/19338 -https://www.oceanexpert.org/expert/19340 -https://www.oceanexpert.org/expert/19341 -https://www.oceanexpert.org/expert/19342 -https://www.oceanexpert.org/expert/19343 -https://www.oceanexpert.org/expert/19344 -https://www.oceanexpert.org/expert/19345 -https://www.oceanexpert.org/expert/19346 -https://www.oceanexpert.org/expert/19350 -https://www.oceanexpert.org/expert/19354 -https://www.oceanexpert.org/expert/19355 -https://www.oceanexpert.org/expert/19357 -https://www.oceanexpert.org/expert/19359 -https://www.oceanexpert.org/expert/19360 -https://www.oceanexpert.org/expert/19362 -https://www.oceanexpert.org/expert/19364 -https://www.oceanexpert.org/expert/19366 -https://www.oceanexpert.org/expert/19368 -https://www.oceanexpert.org/expert/19372 -https://www.oceanexpert.org/expert/19373 -https://www.oceanexpert.org/expert/19375 -https://www.oceanexpert.org/expert/19376 -https://www.oceanexpert.org/expert/19381 -https://www.oceanexpert.org/expert/19384 -https://www.oceanexpert.org/expert/19385 -https://www.oceanexpert.org/expert/19386 -https://www.oceanexpert.org/expert/19387 -https://www.oceanexpert.org/expert/19389 -https://www.oceanexpert.org/expert/19392 -https://www.oceanexpert.org/expert/19393 -https://www.oceanexpert.org/expert/19394 -https://www.oceanexpert.org/expert/19395 -https://www.oceanexpert.org/expert/19396 -https://www.oceanexpert.org/expert/19397 -https://www.oceanexpert.org/expert/19399 -https://www.oceanexpert.org/expert/19400 -https://www.oceanexpert.org/expert/19402 -https://www.oceanexpert.org/expert/19403 -https://www.oceanexpert.org/expert/19404 -https://www.oceanexpert.org/expert/19405 -https://www.oceanexpert.org/expert/19406 -https://www.oceanexpert.org/expert/19407 -https://www.oceanexpert.org/expert/19409 -https://www.oceanexpert.org/expert/19411 -https://www.oceanexpert.org/expert/19412 -https://www.oceanexpert.org/expert/19416 -https://www.oceanexpert.org/expert/19417 -https://www.oceanexpert.org/expert/19418 -https://www.oceanexpert.org/expert/19419 -https://www.oceanexpert.org/expert/19421 -https://www.oceanexpert.org/expert/19422 -https://www.oceanexpert.org/expert/19423 -https://www.oceanexpert.org/expert/19427 -https://www.oceanexpert.org/expert/19428 -https://www.oceanexpert.org/expert/19429 -https://www.oceanexpert.org/expert/19430 -https://www.oceanexpert.org/expert/19434 -https://www.oceanexpert.org/expert/19435 -https://www.oceanexpert.org/expert/19436 -https://www.oceanexpert.org/expert/19438 -https://www.oceanexpert.org/expert/19440 -https://www.oceanexpert.org/expert/19443 -https://www.oceanexpert.org/expert/19444 -https://www.oceanexpert.org/expert/19447 -https://www.oceanexpert.org/expert/19449 -https://www.oceanexpert.org/expert/19451 -https://www.oceanexpert.org/expert/19454 -https://www.oceanexpert.org/expert/19455 -https://www.oceanexpert.org/expert/19457 -https://www.oceanexpert.org/expert/19458 -https://www.oceanexpert.org/expert/19459 -https://www.oceanexpert.org/expert/19460 -https://www.oceanexpert.org/expert/19461 -https://www.oceanexpert.org/expert/19462 -https://www.oceanexpert.org/expert/19463 -https://www.oceanexpert.org/expert/19464 -https://www.oceanexpert.org/expert/19466 -https://www.oceanexpert.org/expert/19468 -https://www.oceanexpert.org/expert/19469 -https://www.oceanexpert.org/expert/19470 -https://www.oceanexpert.org/expert/19472 -https://www.oceanexpert.org/expert/19473 -https://www.oceanexpert.org/expert/19477 -https://www.oceanexpert.org/expert/19481 -https://www.oceanexpert.org/expert/19482 -https://www.oceanexpert.org/expert/19483 -https://www.oceanexpert.org/expert/19484 -https://www.oceanexpert.org/expert/19487 -https://www.oceanexpert.org/expert/19489 -https://www.oceanexpert.org/expert/19492 -https://www.oceanexpert.org/expert/19493 -https://www.oceanexpert.org/expert/19495 -https://www.oceanexpert.org/expert/19496 -https://www.oceanexpert.org/expert/19497 -https://www.oceanexpert.org/expert/19498 -https://www.oceanexpert.org/expert/19499 -https://www.oceanexpert.org/expert/19500 -https://www.oceanexpert.org/expert/19501 -https://www.oceanexpert.org/expert/19502 -https://www.oceanexpert.org/expert/19504 -https://www.oceanexpert.org/expert/19508 -https://www.oceanexpert.org/expert/19509 -https://www.oceanexpert.org/expert/19510 -https://www.oceanexpert.org/expert/19511 -https://www.oceanexpert.org/expert/19512 -https://www.oceanexpert.org/expert/19514 -https://www.oceanexpert.org/expert/19515 -https://www.oceanexpert.org/expert/19516 -https://www.oceanexpert.org/expert/19518 -https://www.oceanexpert.org/expert/19519 -https://www.oceanexpert.org/expert/19521 -https://www.oceanexpert.org/expert/19523 -https://www.oceanexpert.org/expert/19524 -https://www.oceanexpert.org/expert/19525 -https://www.oceanexpert.org/expert/19526 -https://www.oceanexpert.org/expert/19528 -https://www.oceanexpert.org/expert/19530 -https://www.oceanexpert.org/expert/19531 -https://www.oceanexpert.org/expert/19533 -https://www.oceanexpert.org/expert/19538 -https://www.oceanexpert.org/expert/19539 -https://www.oceanexpert.org/expert/19541 -https://www.oceanexpert.org/expert/19545 -https://www.oceanexpert.org/expert/19548 -https://www.oceanexpert.org/expert/19550 -https://www.oceanexpert.org/expert/19554 -https://www.oceanexpert.org/expert/19555 -https://www.oceanexpert.org/expert/19556 -https://www.oceanexpert.org/expert/19558 -https://www.oceanexpert.org/expert/19560 -https://www.oceanexpert.org/expert/19561 -https://www.oceanexpert.org/expert/19564 -https://www.oceanexpert.org/expert/19565 -https://www.oceanexpert.org/expert/19566 -https://www.oceanexpert.org/expert/19567 -https://www.oceanexpert.org/expert/19570 -https://www.oceanexpert.org/expert/19571 -https://www.oceanexpert.org/expert/19572 -https://www.oceanexpert.org/expert/19575 -https://www.oceanexpert.org/expert/19578 -https://www.oceanexpert.org/expert/19579 -https://www.oceanexpert.org/expert/19581 -https://www.oceanexpert.org/expert/19583 -https://www.oceanexpert.org/expert/19584 -https://www.oceanexpert.org/expert/19585 -https://www.oceanexpert.org/expert/19588 -https://www.oceanexpert.org/expert/19591 -https://www.oceanexpert.org/expert/19592 -https://www.oceanexpert.org/expert/19595 -https://www.oceanexpert.org/expert/19600 -https://www.oceanexpert.org/expert/19602 -https://www.oceanexpert.org/expert/19603 -https://www.oceanexpert.org/expert/19605 -https://www.oceanexpert.org/expert/19606 -https://www.oceanexpert.org/expert/19607 -https://www.oceanexpert.org/expert/19608 -https://www.oceanexpert.org/expert/19609 -https://www.oceanexpert.org/expert/19610 -https://www.oceanexpert.org/expert/19614 -https://www.oceanexpert.org/expert/19615 -https://www.oceanexpert.org/expert/19616 -https://www.oceanexpert.org/expert/19617 -https://www.oceanexpert.org/expert/19618 -https://www.oceanexpert.org/expert/19619 -https://www.oceanexpert.org/expert/19622 -https://www.oceanexpert.org/expert/19623 -https://www.oceanexpert.org/expert/19624 -https://www.oceanexpert.org/expert/19625 -https://www.oceanexpert.org/expert/19628 -https://www.oceanexpert.org/expert/19629 -https://www.oceanexpert.org/expert/19630 -https://www.oceanexpert.org/expert/19632 -https://www.oceanexpert.org/expert/19633 -https://www.oceanexpert.org/expert/19636 -https://www.oceanexpert.org/expert/19638 -https://www.oceanexpert.org/expert/19642 -https://www.oceanexpert.org/expert/19646 -https://www.oceanexpert.org/expert/19647 -https://www.oceanexpert.org/expert/19648 -https://www.oceanexpert.org/expert/19650 -https://www.oceanexpert.org/expert/19651 -https://www.oceanexpert.org/expert/19653 -https://www.oceanexpert.org/expert/19654 -https://www.oceanexpert.org/expert/19656 -https://www.oceanexpert.org/expert/19657 -https://www.oceanexpert.org/expert/19659 -https://www.oceanexpert.org/expert/19661 -https://www.oceanexpert.org/expert/19662 -https://www.oceanexpert.org/expert/19663 -https://www.oceanexpert.org/expert/19665 -https://www.oceanexpert.org/expert/19670 -https://www.oceanexpert.org/expert/19672 -https://www.oceanexpert.org/expert/19673 -https://www.oceanexpert.org/expert/19674 -https://www.oceanexpert.org/expert/19675 -https://www.oceanexpert.org/expert/19677 -https://www.oceanexpert.org/expert/19682 -https://www.oceanexpert.org/expert/19684 -https://www.oceanexpert.org/expert/19685 -https://www.oceanexpert.org/expert/19693 -https://www.oceanexpert.org/expert/19695 -https://www.oceanexpert.org/expert/19697 -https://www.oceanexpert.org/expert/19698 -https://www.oceanexpert.org/expert/19699 -https://www.oceanexpert.org/expert/19702 -https://www.oceanexpert.org/expert/19705 -https://www.oceanexpert.org/expert/19706 -https://www.oceanexpert.org/expert/19707 -https://www.oceanexpert.org/expert/19711 -https://www.oceanexpert.org/expert/19712 -https://www.oceanexpert.org/expert/19715 -https://www.oceanexpert.org/expert/19716 -https://www.oceanexpert.org/expert/19718 -https://www.oceanexpert.org/expert/19719 -https://www.oceanexpert.org/expert/19720 -https://www.oceanexpert.org/expert/19724 -https://www.oceanexpert.org/expert/19725 -https://www.oceanexpert.org/expert/19727 -https://www.oceanexpert.org/expert/19729 -https://www.oceanexpert.org/expert/19731 -https://www.oceanexpert.org/expert/19733 -https://www.oceanexpert.org/expert/19735 -https://www.oceanexpert.org/expert/19736 -https://www.oceanexpert.org/expert/19738 -https://www.oceanexpert.org/expert/19742 -https://www.oceanexpert.org/expert/19744 -https://www.oceanexpert.org/expert/19745 -https://www.oceanexpert.org/expert/19746 -https://www.oceanexpert.org/expert/19747 -https://www.oceanexpert.org/expert/19748 -https://www.oceanexpert.org/expert/19749 -https://www.oceanexpert.org/expert/19751 -https://www.oceanexpert.org/expert/19753 -https://www.oceanexpert.org/expert/19754 -https://www.oceanexpert.org/expert/19755 -https://www.oceanexpert.org/expert/19756 -https://www.oceanexpert.org/expert/19758 -https://www.oceanexpert.org/expert/19759 -https://www.oceanexpert.org/expert/19760 -https://www.oceanexpert.org/expert/19761 -https://www.oceanexpert.org/expert/19762 -https://www.oceanexpert.org/expert/19764 -https://www.oceanexpert.org/expert/19765 -https://www.oceanexpert.org/expert/19767 -https://www.oceanexpert.org/expert/19768 -https://www.oceanexpert.org/expert/19769 -https://www.oceanexpert.org/expert/19770 -https://www.oceanexpert.org/expert/19771 -https://www.oceanexpert.org/expert/19773 -https://www.oceanexpert.org/expert/19774 -https://www.oceanexpert.org/expert/19776 -https://www.oceanexpert.org/expert/19777 -https://www.oceanexpert.org/expert/19778 -https://www.oceanexpert.org/expert/19780 -https://www.oceanexpert.org/expert/19782 -https://www.oceanexpert.org/expert/19783 -https://www.oceanexpert.org/expert/19785 -https://www.oceanexpert.org/expert/19786 -https://www.oceanexpert.org/expert/19787 -https://www.oceanexpert.org/expert/19788 -https://www.oceanexpert.org/expert/19789 -https://www.oceanexpert.org/expert/19790 -https://www.oceanexpert.org/expert/19795 -https://www.oceanexpert.org/expert/19796 -https://www.oceanexpert.org/expert/19797 -https://www.oceanexpert.org/expert/19799 -https://www.oceanexpert.org/expert/19800 -https://www.oceanexpert.org/expert/19801 -https://www.oceanexpert.org/expert/19802 -https://www.oceanexpert.org/expert/19804 -https://www.oceanexpert.org/expert/19805 -https://www.oceanexpert.org/expert/19806 -https://www.oceanexpert.org/expert/19809 -https://www.oceanexpert.org/expert/19812 -https://www.oceanexpert.org/expert/19813 -https://www.oceanexpert.org/expert/19818 -https://www.oceanexpert.org/expert/19820 -https://www.oceanexpert.org/expert/19823 -https://www.oceanexpert.org/expert/19825 -https://www.oceanexpert.org/expert/19827 -https://www.oceanexpert.org/expert/19832 -https://www.oceanexpert.org/expert/19836 -https://www.oceanexpert.org/expert/19840 -https://www.oceanexpert.org/expert/19844 -https://www.oceanexpert.org/expert/19846 -https://www.oceanexpert.org/expert/19847 -https://www.oceanexpert.org/expert/19848 -https://www.oceanexpert.org/expert/19849 -https://www.oceanexpert.org/expert/19851 -https://www.oceanexpert.org/expert/19855 -https://www.oceanexpert.org/expert/19856 -https://www.oceanexpert.org/expert/19859 -https://www.oceanexpert.org/expert/19862 -https://www.oceanexpert.org/expert/19864 -https://www.oceanexpert.org/expert/19865 -https://www.oceanexpert.org/expert/19866 -https://www.oceanexpert.org/expert/19868 -https://www.oceanexpert.org/expert/19869 -https://www.oceanexpert.org/expert/19870 -https://www.oceanexpert.org/expert/19872 -https://www.oceanexpert.org/expert/19873 -https://www.oceanexpert.org/expert/19874 -https://www.oceanexpert.org/expert/19875 -https://www.oceanexpert.org/expert/19878 -https://www.oceanexpert.org/expert/19879 -https://www.oceanexpert.org/expert/19880 -https://www.oceanexpert.org/expert/19881 -https://www.oceanexpert.org/expert/19883 -https://www.oceanexpert.org/expert/19884 -https://www.oceanexpert.org/expert/19885 -https://www.oceanexpert.org/expert/19886 -https://www.oceanexpert.org/expert/19887 -https://www.oceanexpert.org/expert/19888 -https://www.oceanexpert.org/expert/19889 -https://www.oceanexpert.org/expert/19890 -https://www.oceanexpert.org/expert/19891 -https://www.oceanexpert.org/expert/19892 -https://www.oceanexpert.org/expert/19894 -https://www.oceanexpert.org/expert/19895 -https://www.oceanexpert.org/expert/19896 -https://www.oceanexpert.org/expert/19897 -https://www.oceanexpert.org/expert/19899 -https://www.oceanexpert.org/expert/19902 -https://www.oceanexpert.org/expert/19905 -https://www.oceanexpert.org/expert/19906 -https://www.oceanexpert.org/expert/19907 -https://www.oceanexpert.org/expert/19908 -https://www.oceanexpert.org/expert/19910 -https://www.oceanexpert.org/expert/19911 -https://www.oceanexpert.org/expert/19912 -https://www.oceanexpert.org/expert/19913 -https://www.oceanexpert.org/expert/19915 -https://www.oceanexpert.org/expert/19916 -https://www.oceanexpert.org/expert/19917 -https://www.oceanexpert.org/expert/19918 -https://www.oceanexpert.org/expert/19922 -https://www.oceanexpert.org/expert/19923 -https://www.oceanexpert.org/expert/19924 -https://www.oceanexpert.org/expert/19925 -https://www.oceanexpert.org/expert/19926 -https://www.oceanexpert.org/expert/19927 -https://www.oceanexpert.org/expert/19929 -https://www.oceanexpert.org/expert/19930 -https://www.oceanexpert.org/expert/19931 -https://www.oceanexpert.org/expert/19933 -https://www.oceanexpert.org/expert/19934 -https://www.oceanexpert.org/expert/19935 -https://www.oceanexpert.org/expert/19936 -https://www.oceanexpert.org/expert/19939 -https://www.oceanexpert.org/expert/19940 -https://www.oceanexpert.org/expert/19942 -https://www.oceanexpert.org/expert/19944 -https://www.oceanexpert.org/expert/19946 -https://www.oceanexpert.org/expert/19950 -https://www.oceanexpert.org/expert/19951 -https://www.oceanexpert.org/expert/19952 -https://www.oceanexpert.org/expert/19953 -https://www.oceanexpert.org/expert/19955 -https://www.oceanexpert.org/expert/19956 -https://www.oceanexpert.org/expert/19957 -https://www.oceanexpert.org/expert/19958 -https://www.oceanexpert.org/expert/19959 -https://www.oceanexpert.org/expert/19960 -https://www.oceanexpert.org/expert/19961 -https://www.oceanexpert.org/expert/19962 -https://www.oceanexpert.org/expert/19965 -https://www.oceanexpert.org/expert/19967 -https://www.oceanexpert.org/expert/19969 -https://www.oceanexpert.org/expert/19970 -https://www.oceanexpert.org/expert/19971 -https://www.oceanexpert.org/expert/19972 -https://www.oceanexpert.org/expert/19974 -https://www.oceanexpert.org/expert/19975 -https://www.oceanexpert.org/expert/19976 -https://www.oceanexpert.org/expert/19978 -https://www.oceanexpert.org/expert/19979 -https://www.oceanexpert.org/expert/19980 -https://www.oceanexpert.org/expert/19982 -https://www.oceanexpert.org/expert/19983 -https://www.oceanexpert.org/expert/19984 -https://www.oceanexpert.org/expert/19985 -https://www.oceanexpert.org/expert/19987 -https://www.oceanexpert.org/expert/19988 -https://www.oceanexpert.org/expert/19989 -https://www.oceanexpert.org/expert/19990 -https://www.oceanexpert.org/expert/19992 -https://www.oceanexpert.org/expert/19993 -https://www.oceanexpert.org/expert/19995 -https://www.oceanexpert.org/expert/19996 -https://www.oceanexpert.org/expert/19997 -https://www.oceanexpert.org/expert/19998 -https://www.oceanexpert.org/expert/19999 -https://www.oceanexpert.org/expert/20000 -https://www.oceanexpert.org/expert/20001 -https://www.oceanexpert.org/expert/20002 -https://www.oceanexpert.org/expert/20003 -https://www.oceanexpert.org/expert/20004 -https://www.oceanexpert.org/expert/20009 -https://www.oceanexpert.org/expert/20010 -https://www.oceanexpert.org/expert/20012 -https://www.oceanexpert.org/expert/20015 -https://www.oceanexpert.org/expert/20016 -https://www.oceanexpert.org/expert/20017 -https://www.oceanexpert.org/expert/20019 -https://www.oceanexpert.org/expert/20020 -https://www.oceanexpert.org/expert/20021 -https://www.oceanexpert.org/expert/20022 -https://www.oceanexpert.org/expert/20024 -https://www.oceanexpert.org/expert/20026 -https://www.oceanexpert.org/expert/20029 -https://www.oceanexpert.org/expert/20030 -https://www.oceanexpert.org/expert/20031 -https://www.oceanexpert.org/expert/20032 -https://www.oceanexpert.org/expert/20033 -https://www.oceanexpert.org/expert/20034 -https://www.oceanexpert.org/expert/20036 -https://www.oceanexpert.org/expert/20037 -https://www.oceanexpert.org/expert/20039 -https://www.oceanexpert.org/expert/20040 -https://www.oceanexpert.org/expert/20041 -https://www.oceanexpert.org/expert/20042 -https://www.oceanexpert.org/expert/20043 -https://www.oceanexpert.org/expert/20046 -https://www.oceanexpert.org/expert/20047 -https://www.oceanexpert.org/expert/20048 -https://www.oceanexpert.org/expert/20049 -https://www.oceanexpert.org/expert/20051 -https://www.oceanexpert.org/expert/20052 -https://www.oceanexpert.org/expert/20053 -https://www.oceanexpert.org/expert/20054 -https://www.oceanexpert.org/expert/20055 -https://www.oceanexpert.org/expert/20056 -https://www.oceanexpert.org/expert/20057 -https://www.oceanexpert.org/expert/20059 -https://www.oceanexpert.org/expert/20060 -https://www.oceanexpert.org/expert/20062 -https://www.oceanexpert.org/expert/20063 -https://www.oceanexpert.org/expert/20064 -https://www.oceanexpert.org/expert/20065 -https://www.oceanexpert.org/expert/20066 -https://www.oceanexpert.org/expert/20067 -https://www.oceanexpert.org/expert/20071 -https://www.oceanexpert.org/expert/20072 -https://www.oceanexpert.org/expert/20074 -https://www.oceanexpert.org/expert/20075 -https://www.oceanexpert.org/expert/20078 -https://www.oceanexpert.org/expert/20079 -https://www.oceanexpert.org/expert/20082 -https://www.oceanexpert.org/expert/20085 -https://www.oceanexpert.org/expert/20086 -https://www.oceanexpert.org/expert/20088 -https://www.oceanexpert.org/expert/20089 -https://www.oceanexpert.org/expert/20090 -https://www.oceanexpert.org/expert/20091 -https://www.oceanexpert.org/expert/20092 -https://www.oceanexpert.org/expert/20093 -https://www.oceanexpert.org/expert/20095 -https://www.oceanexpert.org/expert/20097 -https://www.oceanexpert.org/expert/20098 -https://www.oceanexpert.org/expert/20099 -https://www.oceanexpert.org/expert/20103 -https://www.oceanexpert.org/expert/20105 -https://www.oceanexpert.org/expert/20106 -https://www.oceanexpert.org/expert/20107 -https://www.oceanexpert.org/expert/20111 -https://www.oceanexpert.org/expert/20112 -https://www.oceanexpert.org/expert/20114 -https://www.oceanexpert.org/expert/20116 -https://www.oceanexpert.org/expert/20117 -https://www.oceanexpert.org/expert/20118 -https://www.oceanexpert.org/expert/20119 -https://www.oceanexpert.org/expert/20120 -https://www.oceanexpert.org/expert/20121 -https://www.oceanexpert.org/expert/20122 -https://www.oceanexpert.org/expert/20123 -https://www.oceanexpert.org/expert/20124 -https://www.oceanexpert.org/expert/20126 -https://www.oceanexpert.org/expert/20129 -https://www.oceanexpert.org/expert/20131 -https://www.oceanexpert.org/expert/20132 -https://www.oceanexpert.org/expert/20133 -https://www.oceanexpert.org/expert/20134 -https://www.oceanexpert.org/expert/20135 -https://www.oceanexpert.org/expert/20136 -https://www.oceanexpert.org/expert/20137 -https://www.oceanexpert.org/expert/20138 -https://www.oceanexpert.org/expert/20139 -https://www.oceanexpert.org/expert/20140 -https://www.oceanexpert.org/expert/20141 -https://www.oceanexpert.org/expert/20143 -https://www.oceanexpert.org/expert/20144 -https://www.oceanexpert.org/expert/20145 -https://www.oceanexpert.org/expert/20146 -https://www.oceanexpert.org/expert/20149 -https://www.oceanexpert.org/expert/20150 -https://www.oceanexpert.org/expert/20151 -https://www.oceanexpert.org/expert/20152 -https://www.oceanexpert.org/expert/20153 -https://www.oceanexpert.org/expert/20155 -https://www.oceanexpert.org/expert/20156 -https://www.oceanexpert.org/expert/20160 -https://www.oceanexpert.org/expert/20163 -https://www.oceanexpert.org/expert/20165 -https://www.oceanexpert.org/expert/20166 -https://www.oceanexpert.org/expert/20168 -https://www.oceanexpert.org/expert/20169 -https://www.oceanexpert.org/expert/20170 -https://www.oceanexpert.org/expert/20173 -https://www.oceanexpert.org/expert/20177 -https://www.oceanexpert.org/expert/20182 -https://www.oceanexpert.org/expert/20183 -https://www.oceanexpert.org/expert/20184 -https://www.oceanexpert.org/expert/20185 -https://www.oceanexpert.org/expert/20189 -https://www.oceanexpert.org/expert/20190 -https://www.oceanexpert.org/expert/20192 -https://www.oceanexpert.org/expert/20193 -https://www.oceanexpert.org/expert/20194 -https://www.oceanexpert.org/expert/20195 -https://www.oceanexpert.org/expert/20196 -https://www.oceanexpert.org/expert/20197 -https://www.oceanexpert.org/expert/20198 -https://www.oceanexpert.org/expert/20204 -https://www.oceanexpert.org/expert/20205 -https://www.oceanexpert.org/expert/20206 -https://www.oceanexpert.org/expert/20207 -https://www.oceanexpert.org/expert/20208 -https://www.oceanexpert.org/expert/20211 -https://www.oceanexpert.org/expert/20212 -https://www.oceanexpert.org/expert/20214 -https://www.oceanexpert.org/expert/20216 -https://www.oceanexpert.org/expert/20222 -https://www.oceanexpert.org/expert/20225 -https://www.oceanexpert.org/expert/20228 -https://www.oceanexpert.org/expert/20232 -https://www.oceanexpert.org/expert/20234 -https://www.oceanexpert.org/expert/20236 -https://www.oceanexpert.org/expert/20237 -https://www.oceanexpert.org/expert/20238 -https://www.oceanexpert.org/expert/20244 -https://www.oceanexpert.org/expert/20245 -https://www.oceanexpert.org/expert/20246 -https://www.oceanexpert.org/expert/20247 -https://www.oceanexpert.org/expert/20248 -https://www.oceanexpert.org/expert/20249 -https://www.oceanexpert.org/expert/20250 -https://www.oceanexpert.org/expert/20251 -https://www.oceanexpert.org/expert/20252 -https://www.oceanexpert.org/expert/20253 -https://www.oceanexpert.org/expert/20254 -https://www.oceanexpert.org/expert/20257 -https://www.oceanexpert.org/expert/20259 -https://www.oceanexpert.org/expert/20260 -https://www.oceanexpert.org/expert/20261 -https://www.oceanexpert.org/expert/20262 -https://www.oceanexpert.org/expert/20266 -https://www.oceanexpert.org/expert/20269 -https://www.oceanexpert.org/expert/20270 -https://www.oceanexpert.org/expert/20271 -https://www.oceanexpert.org/expert/20272 -https://www.oceanexpert.org/expert/20273 -https://www.oceanexpert.org/expert/20274 -https://www.oceanexpert.org/expert/20281 -https://www.oceanexpert.org/expert/20282 -https://www.oceanexpert.org/expert/20283 -https://www.oceanexpert.org/expert/20286 -https://www.oceanexpert.org/expert/20287 -https://www.oceanexpert.org/expert/20289 -https://www.oceanexpert.org/expert/20290 -https://www.oceanexpert.org/expert/20292 -https://www.oceanexpert.org/expert/20297 -https://www.oceanexpert.org/expert/20299 -https://www.oceanexpert.org/expert/20301 -https://www.oceanexpert.org/expert/20304 -https://www.oceanexpert.org/expert/20309 -https://www.oceanexpert.org/expert/20310 -https://www.oceanexpert.org/expert/20311 -https://www.oceanexpert.org/expert/20313 -https://www.oceanexpert.org/expert/20314 -https://www.oceanexpert.org/expert/20315 -https://www.oceanexpert.org/expert/20316 -https://www.oceanexpert.org/expert/20317 -https://www.oceanexpert.org/expert/20319 -https://www.oceanexpert.org/expert/20320 -https://www.oceanexpert.org/expert/20322 -https://www.oceanexpert.org/expert/20324 -https://www.oceanexpert.org/expert/20325 -https://www.oceanexpert.org/expert/20326 -https://www.oceanexpert.org/expert/20327 -https://www.oceanexpert.org/expert/20330 -https://www.oceanexpert.org/expert/20331 -https://www.oceanexpert.org/expert/20332 -https://www.oceanexpert.org/expert/20333 -https://www.oceanexpert.org/expert/20335 -https://www.oceanexpert.org/expert/20336 -https://www.oceanexpert.org/expert/20338 -https://www.oceanexpert.org/expert/20343 -https://www.oceanexpert.org/expert/20344 -https://www.oceanexpert.org/expert/20345 -https://www.oceanexpert.org/expert/20346 -https://www.oceanexpert.org/expert/20347 -https://www.oceanexpert.org/expert/20348 -https://www.oceanexpert.org/expert/20349 -https://www.oceanexpert.org/expert/20351 -https://www.oceanexpert.org/expert/20352 -https://www.oceanexpert.org/expert/20353 -https://www.oceanexpert.org/expert/20357 -https://www.oceanexpert.org/expert/20358 -https://www.oceanexpert.org/expert/20359 -https://www.oceanexpert.org/expert/20360 -https://www.oceanexpert.org/expert/20361 -https://www.oceanexpert.org/expert/20362 -https://www.oceanexpert.org/expert/20363 -https://www.oceanexpert.org/expert/20364 -https://www.oceanexpert.org/expert/20366 -https://www.oceanexpert.org/expert/20367 -https://www.oceanexpert.org/expert/20369 -https://www.oceanexpert.org/expert/20370 -https://www.oceanexpert.org/expert/20371 -https://www.oceanexpert.org/expert/20372 -https://www.oceanexpert.org/expert/20376 -https://www.oceanexpert.org/expert/20377 -https://www.oceanexpert.org/expert/20378 -https://www.oceanexpert.org/expert/20379 -https://www.oceanexpert.org/expert/20380 -https://www.oceanexpert.org/expert/20381 -https://www.oceanexpert.org/expert/20382 -https://www.oceanexpert.org/expert/20383 -https://www.oceanexpert.org/expert/20384 -https://www.oceanexpert.org/expert/20385 -https://www.oceanexpert.org/expert/20386 -https://www.oceanexpert.org/expert/20388 -https://www.oceanexpert.org/expert/20389 -https://www.oceanexpert.org/expert/20391 -https://www.oceanexpert.org/expert/20392 -https://www.oceanexpert.org/expert/20393 -https://www.oceanexpert.org/expert/20394 -https://www.oceanexpert.org/expert/20396 -https://www.oceanexpert.org/expert/20397 -https://www.oceanexpert.org/expert/20400 -https://www.oceanexpert.org/expert/20401 -https://www.oceanexpert.org/expert/20402 -https://www.oceanexpert.org/expert/20404 -https://www.oceanexpert.org/expert/20405 -https://www.oceanexpert.org/expert/20407 -https://www.oceanexpert.org/expert/20408 -https://www.oceanexpert.org/expert/20409 -https://www.oceanexpert.org/expert/20414 -https://www.oceanexpert.org/expert/20416 -https://www.oceanexpert.org/expert/20418 -https://www.oceanexpert.org/expert/20420 -https://www.oceanexpert.org/expert/20421 -https://www.oceanexpert.org/expert/20425 -https://www.oceanexpert.org/expert/20426 -https://www.oceanexpert.org/expert/20429 -https://www.oceanexpert.org/expert/20431 -https://www.oceanexpert.org/expert/20432 -https://www.oceanexpert.org/expert/20434 -https://www.oceanexpert.org/expert/20435 -https://www.oceanexpert.org/expert/20436 -https://www.oceanexpert.org/expert/20439 -https://www.oceanexpert.org/expert/20440 -https://www.oceanexpert.org/expert/20441 -https://www.oceanexpert.org/expert/20443 -https://www.oceanexpert.org/expert/20444 -https://www.oceanexpert.org/expert/20445 -https://www.oceanexpert.org/expert/20446 -https://www.oceanexpert.org/expert/20447 -https://www.oceanexpert.org/expert/20449 -https://www.oceanexpert.org/expert/20450 -https://www.oceanexpert.org/expert/20452 -https://www.oceanexpert.org/expert/20454 -https://www.oceanexpert.org/expert/20455 -https://www.oceanexpert.org/expert/20456 -https://www.oceanexpert.org/expert/20457 -https://www.oceanexpert.org/expert/20459 -https://www.oceanexpert.org/expert/20460 -https://www.oceanexpert.org/expert/20462 -https://www.oceanexpert.org/expert/20463 -https://www.oceanexpert.org/expert/20464 -https://www.oceanexpert.org/expert/20467 -https://www.oceanexpert.org/expert/20469 -https://www.oceanexpert.org/expert/20470 -https://www.oceanexpert.org/expert/20471 -https://www.oceanexpert.org/expert/20472 -https://www.oceanexpert.org/expert/20473 -https://www.oceanexpert.org/expert/20474 -https://www.oceanexpert.org/expert/20475 -https://www.oceanexpert.org/expert/20476 -https://www.oceanexpert.org/expert/20477 -https://www.oceanexpert.org/expert/20479 -https://www.oceanexpert.org/expert/20480 -https://www.oceanexpert.org/expert/20481 -https://www.oceanexpert.org/expert/20482 -https://www.oceanexpert.org/expert/20483 -https://www.oceanexpert.org/expert/20484 -https://www.oceanexpert.org/expert/20485 -https://www.oceanexpert.org/expert/20486 -https://www.oceanexpert.org/expert/20487 -https://www.oceanexpert.org/expert/20488 -https://www.oceanexpert.org/expert/20489 -https://www.oceanexpert.org/expert/20490 -https://www.oceanexpert.org/expert/20492 -https://www.oceanexpert.org/expert/20493 -https://www.oceanexpert.org/expert/20494 -https://www.oceanexpert.org/expert/20495 -https://www.oceanexpert.org/expert/20496 -https://www.oceanexpert.org/expert/20497 -https://www.oceanexpert.org/expert/20498 -https://www.oceanexpert.org/expert/20499 -https://www.oceanexpert.org/expert/20500 -https://www.oceanexpert.org/expert/20501 -https://www.oceanexpert.org/expert/20504 -https://www.oceanexpert.org/expert/20507 -https://www.oceanexpert.org/expert/20508 -https://www.oceanexpert.org/expert/20509 -https://www.oceanexpert.org/expert/20510 -https://www.oceanexpert.org/expert/20513 -https://www.oceanexpert.org/expert/20516 -https://www.oceanexpert.org/expert/20519 -https://www.oceanexpert.org/expert/20520 -https://www.oceanexpert.org/expert/20521 -https://www.oceanexpert.org/expert/20522 -https://www.oceanexpert.org/expert/20523 -https://www.oceanexpert.org/expert/20525 -https://www.oceanexpert.org/expert/20527 -https://www.oceanexpert.org/expert/20528 -https://www.oceanexpert.org/expert/20529 -https://www.oceanexpert.org/expert/20530 -https://www.oceanexpert.org/expert/20531 -https://www.oceanexpert.org/expert/20532 -https://www.oceanexpert.org/expert/20533 -https://www.oceanexpert.org/expert/20535 -https://www.oceanexpert.org/expert/20536 -https://www.oceanexpert.org/expert/20537 -https://www.oceanexpert.org/expert/20539 -https://www.oceanexpert.org/expert/20540 -https://www.oceanexpert.org/expert/20543 -https://www.oceanexpert.org/expert/20544 -https://www.oceanexpert.org/expert/20545 -https://www.oceanexpert.org/expert/20546 -https://www.oceanexpert.org/expert/20552 -https://www.oceanexpert.org/expert/20555 -https://www.oceanexpert.org/expert/20556 -https://www.oceanexpert.org/expert/20557 -https://www.oceanexpert.org/expert/20558 -https://www.oceanexpert.org/expert/20560 -https://www.oceanexpert.org/expert/20561 -https://www.oceanexpert.org/expert/20562 -https://www.oceanexpert.org/expert/20563 -https://www.oceanexpert.org/expert/20564 -https://www.oceanexpert.org/expert/20565 -https://www.oceanexpert.org/expert/20566 -https://www.oceanexpert.org/expert/20567 -https://www.oceanexpert.org/expert/20568 -https://www.oceanexpert.org/expert/20569 -https://www.oceanexpert.org/expert/20571 -https://www.oceanexpert.org/expert/20572 -https://www.oceanexpert.org/expert/20579 -https://www.oceanexpert.org/expert/20580 -https://www.oceanexpert.org/expert/20581 -https://www.oceanexpert.org/expert/20582 -https://www.oceanexpert.org/expert/20583 -https://www.oceanexpert.org/expert/20584 -https://www.oceanexpert.org/expert/20586 -https://www.oceanexpert.org/expert/20587 -https://www.oceanexpert.org/expert/20589 -https://www.oceanexpert.org/expert/20590 -https://www.oceanexpert.org/expert/20591 -https://www.oceanexpert.org/expert/20593 -https://www.oceanexpert.org/expert/20596 -https://www.oceanexpert.org/expert/20597 -https://www.oceanexpert.org/expert/20598 -https://www.oceanexpert.org/expert/20600 -https://www.oceanexpert.org/expert/20601 -https://www.oceanexpert.org/expert/20604 -https://www.oceanexpert.org/expert/20605 -https://www.oceanexpert.org/expert/20606 -https://www.oceanexpert.org/expert/20607 -https://www.oceanexpert.org/expert/20610 -https://www.oceanexpert.org/expert/20611 -https://www.oceanexpert.org/expert/20613 -https://www.oceanexpert.org/expert/20614 -https://www.oceanexpert.org/expert/20616 -https://www.oceanexpert.org/expert/20619 -https://www.oceanexpert.org/expert/20620 -https://www.oceanexpert.org/expert/20621 -https://www.oceanexpert.org/expert/20622 -https://www.oceanexpert.org/expert/20623 -https://www.oceanexpert.org/expert/20624 -https://www.oceanexpert.org/expert/20625 -https://www.oceanexpert.org/expert/20626 -https://www.oceanexpert.org/expert/20627 -https://www.oceanexpert.org/expert/20628 -https://www.oceanexpert.org/expert/20629 -https://www.oceanexpert.org/expert/20630 -https://www.oceanexpert.org/expert/20631 -https://www.oceanexpert.org/expert/20633 -https://www.oceanexpert.org/expert/20634 -https://www.oceanexpert.org/expert/20636 -https://www.oceanexpert.org/expert/20639 -https://www.oceanexpert.org/expert/20640 -https://www.oceanexpert.org/expert/20643 -https://www.oceanexpert.org/expert/20647 -https://www.oceanexpert.org/expert/20648 -https://www.oceanexpert.org/expert/20653 -https://www.oceanexpert.org/expert/20656 -https://www.oceanexpert.org/expert/20657 -https://www.oceanexpert.org/expert/20659 -https://www.oceanexpert.org/expert/20660 -https://www.oceanexpert.org/expert/20664 -https://www.oceanexpert.org/expert/20665 -https://www.oceanexpert.org/expert/20666 -https://www.oceanexpert.org/expert/20669 -https://www.oceanexpert.org/expert/20670 -https://www.oceanexpert.org/expert/20672 -https://www.oceanexpert.org/expert/20674 -https://www.oceanexpert.org/expert/20675 -https://www.oceanexpert.org/expert/20679 -https://www.oceanexpert.org/expert/20681 -https://www.oceanexpert.org/expert/20682 -https://www.oceanexpert.org/expert/20683 -https://www.oceanexpert.org/expert/20685 -https://www.oceanexpert.org/expert/20686 -https://www.oceanexpert.org/expert/20687 -https://www.oceanexpert.org/expert/20688 -https://www.oceanexpert.org/expert/20689 -https://www.oceanexpert.org/expert/20690 -https://www.oceanexpert.org/expert/20691 -https://www.oceanexpert.org/expert/20692 -https://www.oceanexpert.org/expert/20693 -https://www.oceanexpert.org/expert/20695 -https://www.oceanexpert.org/expert/20696 -https://www.oceanexpert.org/expert/20697 -https://www.oceanexpert.org/expert/20699 -https://www.oceanexpert.org/expert/20700 -https://www.oceanexpert.org/expert/20701 -https://www.oceanexpert.org/expert/20702 -https://www.oceanexpert.org/expert/20703 -https://www.oceanexpert.org/expert/20704 -https://www.oceanexpert.org/expert/20705 -https://www.oceanexpert.org/expert/20706 -https://www.oceanexpert.org/expert/20707 -https://www.oceanexpert.org/expert/20708 -https://www.oceanexpert.org/expert/20709 -https://www.oceanexpert.org/expert/20710 -https://www.oceanexpert.org/expert/20711 -https://www.oceanexpert.org/expert/20712 -https://www.oceanexpert.org/expert/20714 -https://www.oceanexpert.org/expert/20715 -https://www.oceanexpert.org/expert/20716 -https://www.oceanexpert.org/expert/20717 -https://www.oceanexpert.org/expert/20718 -https://www.oceanexpert.org/expert/20719 -https://www.oceanexpert.org/expert/20721 -https://www.oceanexpert.org/expert/20724 -https://www.oceanexpert.org/expert/20725 -https://www.oceanexpert.org/expert/20727 -https://www.oceanexpert.org/expert/20729 -https://www.oceanexpert.org/expert/20732 -https://www.oceanexpert.org/expert/20739 -https://www.oceanexpert.org/expert/20741 -https://www.oceanexpert.org/expert/20742 -https://www.oceanexpert.org/expert/20744 -https://www.oceanexpert.org/expert/20747 -https://www.oceanexpert.org/expert/20748 -https://www.oceanexpert.org/expert/20756 -https://www.oceanexpert.org/expert/20757 -https://www.oceanexpert.org/expert/20760 -https://www.oceanexpert.org/expert/20761 -https://www.oceanexpert.org/expert/20762 -https://www.oceanexpert.org/expert/20765 -https://www.oceanexpert.org/expert/20774 -https://www.oceanexpert.org/expert/20775 -https://www.oceanexpert.org/expert/20777 -https://www.oceanexpert.org/expert/20779 -https://www.oceanexpert.org/expert/20780 -https://www.oceanexpert.org/expert/20781 -https://www.oceanexpert.org/expert/20782 -https://www.oceanexpert.org/expert/20783 -https://www.oceanexpert.org/expert/20784 -https://www.oceanexpert.org/expert/20786 -https://www.oceanexpert.org/expert/20791 -https://www.oceanexpert.org/expert/20792 -https://www.oceanexpert.org/expert/20793 -https://www.oceanexpert.org/expert/20794 -https://www.oceanexpert.org/expert/20795 -https://www.oceanexpert.org/expert/20796 -https://www.oceanexpert.org/expert/20797 -https://www.oceanexpert.org/expert/20798 -https://www.oceanexpert.org/expert/20800 -https://www.oceanexpert.org/expert/20801 -https://www.oceanexpert.org/expert/20802 -https://www.oceanexpert.org/expert/20804 -https://www.oceanexpert.org/expert/20806 -https://www.oceanexpert.org/expert/20807 -https://www.oceanexpert.org/expert/20808 -https://www.oceanexpert.org/expert/20809 -https://www.oceanexpert.org/expert/20811 -https://www.oceanexpert.org/expert/20812 -https://www.oceanexpert.org/expert/20814 -https://www.oceanexpert.org/expert/20816 -https://www.oceanexpert.org/expert/20817 -https://www.oceanexpert.org/expert/20818 -https://www.oceanexpert.org/expert/20819 -https://www.oceanexpert.org/expert/20820 -https://www.oceanexpert.org/expert/20821 -https://www.oceanexpert.org/expert/20822 -https://www.oceanexpert.org/expert/20824 -https://www.oceanexpert.org/expert/20825 -https://www.oceanexpert.org/expert/20829 -https://www.oceanexpert.org/expert/20832 -https://www.oceanexpert.org/expert/20833 -https://www.oceanexpert.org/expert/20834 -https://www.oceanexpert.org/expert/20835 -https://www.oceanexpert.org/expert/20836 -https://www.oceanexpert.org/expert/20837 -https://www.oceanexpert.org/expert/20839 -https://www.oceanexpert.org/expert/20840 -https://www.oceanexpert.org/expert/20841 -https://www.oceanexpert.org/expert/20842 -https://www.oceanexpert.org/expert/20845 -https://www.oceanexpert.org/expert/20848 -https://www.oceanexpert.org/expert/20852 -https://www.oceanexpert.org/expert/20853 -https://www.oceanexpert.org/expert/20854 -https://www.oceanexpert.org/expert/20855 -https://www.oceanexpert.org/expert/20856 -https://www.oceanexpert.org/expert/20857 -https://www.oceanexpert.org/expert/20859 -https://www.oceanexpert.org/expert/20860 -https://www.oceanexpert.org/expert/20861 -https://www.oceanexpert.org/expert/20863 -https://www.oceanexpert.org/expert/20864 -https://www.oceanexpert.org/expert/20865 -https://www.oceanexpert.org/expert/20867 -https://www.oceanexpert.org/expert/20868 -https://www.oceanexpert.org/expert/20869 -https://www.oceanexpert.org/expert/20870 -https://www.oceanexpert.org/expert/20872 -https://www.oceanexpert.org/expert/20873 -https://www.oceanexpert.org/expert/20874 -https://www.oceanexpert.org/expert/20877 -https://www.oceanexpert.org/expert/20878 -https://www.oceanexpert.org/expert/20881 -https://www.oceanexpert.org/expert/20882 -https://www.oceanexpert.org/expert/20883 -https://www.oceanexpert.org/expert/20884 -https://www.oceanexpert.org/expert/20885 -https://www.oceanexpert.org/expert/20887 -https://www.oceanexpert.org/expert/20891 -https://www.oceanexpert.org/expert/20893 -https://www.oceanexpert.org/expert/20896 -https://www.oceanexpert.org/expert/20898 -https://www.oceanexpert.org/expert/20899 -https://www.oceanexpert.org/expert/20900 -https://www.oceanexpert.org/expert/20901 -https://www.oceanexpert.org/expert/20904 -https://www.oceanexpert.org/expert/20905 -https://www.oceanexpert.org/expert/20909 -https://www.oceanexpert.org/expert/20912 -https://www.oceanexpert.org/expert/20917 -https://www.oceanexpert.org/expert/20918 -https://www.oceanexpert.org/expert/20919 -https://www.oceanexpert.org/expert/20921 -https://www.oceanexpert.org/expert/20923 -https://www.oceanexpert.org/expert/20925 -https://www.oceanexpert.org/expert/20926 -https://www.oceanexpert.org/expert/20927 -https://www.oceanexpert.org/expert/20928 -https://www.oceanexpert.org/expert/20929 -https://www.oceanexpert.org/expert/20930 -https://www.oceanexpert.org/expert/20931 -https://www.oceanexpert.org/expert/20933 -https://www.oceanexpert.org/expert/20935 -https://www.oceanexpert.org/expert/20940 -https://www.oceanexpert.org/expert/20941 -https://www.oceanexpert.org/expert/20942 -https://www.oceanexpert.org/expert/20943 -https://www.oceanexpert.org/expert/20944 -https://www.oceanexpert.org/expert/20945 -https://www.oceanexpert.org/expert/20946 -https://www.oceanexpert.org/expert/20948 -https://www.oceanexpert.org/expert/20949 -https://www.oceanexpert.org/expert/20950 -https://www.oceanexpert.org/expert/20951 -https://www.oceanexpert.org/expert/20952 -https://www.oceanexpert.org/expert/20953 -https://www.oceanexpert.org/expert/20955 -https://www.oceanexpert.org/expert/20957 -https://www.oceanexpert.org/expert/20958 -https://www.oceanexpert.org/expert/20960 -https://www.oceanexpert.org/expert/20961 -https://www.oceanexpert.org/expert/20962 -https://www.oceanexpert.org/expert/20965 -https://www.oceanexpert.org/expert/20967 -https://www.oceanexpert.org/expert/20968 -https://www.oceanexpert.org/expert/20969 -https://www.oceanexpert.org/expert/20980 -https://www.oceanexpert.org/expert/20981 -https://www.oceanexpert.org/expert/20982 -https://www.oceanexpert.org/expert/20984 -https://www.oceanexpert.org/expert/20985 -https://www.oceanexpert.org/expert/20986 -https://www.oceanexpert.org/expert/20987 -https://www.oceanexpert.org/expert/20988 -https://www.oceanexpert.org/expert/20989 -https://www.oceanexpert.org/expert/20990 -https://www.oceanexpert.org/expert/20991 -https://www.oceanexpert.org/expert/20992 -https://www.oceanexpert.org/expert/20993 -https://www.oceanexpert.org/expert/20994 -https://www.oceanexpert.org/expert/20995 -https://www.oceanexpert.org/expert/21000 -https://www.oceanexpert.org/expert/21001 -https://www.oceanexpert.org/expert/21002 -https://www.oceanexpert.org/expert/21004 -https://www.oceanexpert.org/expert/21012 -https://www.oceanexpert.org/expert/21013 -https://www.oceanexpert.org/expert/21016 -https://www.oceanexpert.org/expert/21017 -https://www.oceanexpert.org/expert/21018 -https://www.oceanexpert.org/expert/21020 -https://www.oceanexpert.org/expert/21021 -https://www.oceanexpert.org/expert/21022 -https://www.oceanexpert.org/expert/21023 -https://www.oceanexpert.org/expert/21024 -https://www.oceanexpert.org/expert/21027 -https://www.oceanexpert.org/expert/21028 -https://www.oceanexpert.org/expert/21029 -https://www.oceanexpert.org/expert/21031 -https://www.oceanexpert.org/expert/21032 -https://www.oceanexpert.org/expert/21033 -https://www.oceanexpert.org/expert/21034 -https://www.oceanexpert.org/expert/21035 -https://www.oceanexpert.org/expert/21036 -https://www.oceanexpert.org/expert/21037 -https://www.oceanexpert.org/expert/21039 -https://www.oceanexpert.org/expert/21041 -https://www.oceanexpert.org/expert/21042 -https://www.oceanexpert.org/expert/21043 -https://www.oceanexpert.org/expert/21044 -https://www.oceanexpert.org/expert/21046 -https://www.oceanexpert.org/expert/21047 -https://www.oceanexpert.org/expert/21048 -https://www.oceanexpert.org/expert/21053 -https://www.oceanexpert.org/expert/21055 -https://www.oceanexpert.org/expert/21056 -https://www.oceanexpert.org/expert/21057 -https://www.oceanexpert.org/expert/21059 -https://www.oceanexpert.org/expert/21060 -https://www.oceanexpert.org/expert/21061 -https://www.oceanexpert.org/expert/21063 -https://www.oceanexpert.org/expert/21065 -https://www.oceanexpert.org/expert/21067 -https://www.oceanexpert.org/expert/21068 -https://www.oceanexpert.org/expert/21069 -https://www.oceanexpert.org/expert/21070 -https://www.oceanexpert.org/expert/21073 -https://www.oceanexpert.org/expert/21074 -https://www.oceanexpert.org/expert/21075 -https://www.oceanexpert.org/expert/21079 -https://www.oceanexpert.org/expert/21081 -https://www.oceanexpert.org/expert/21083 -https://www.oceanexpert.org/expert/21087 -https://www.oceanexpert.org/expert/21088 -https://www.oceanexpert.org/expert/21089 -https://www.oceanexpert.org/expert/21092 -https://www.oceanexpert.org/expert/21093 -https://www.oceanexpert.org/expert/21094 -https://www.oceanexpert.org/expert/21095 -https://www.oceanexpert.org/expert/21096 -https://www.oceanexpert.org/expert/21097 -https://www.oceanexpert.org/expert/21098 -https://www.oceanexpert.org/expert/21099 -https://www.oceanexpert.org/expert/21100 -https://www.oceanexpert.org/expert/21101 -https://www.oceanexpert.org/expert/21103 -https://www.oceanexpert.org/expert/21106 -https://www.oceanexpert.org/expert/21107 -https://www.oceanexpert.org/expert/21108 -https://www.oceanexpert.org/expert/21109 -https://www.oceanexpert.org/expert/21110 -https://www.oceanexpert.org/expert/21112 -https://www.oceanexpert.org/expert/21114 -https://www.oceanexpert.org/expert/21117 -https://www.oceanexpert.org/expert/21118 -https://www.oceanexpert.org/expert/21120 -https://www.oceanexpert.org/expert/21121 -https://www.oceanexpert.org/expert/21123 -https://www.oceanexpert.org/expert/21124 -https://www.oceanexpert.org/expert/21125 -https://www.oceanexpert.org/expert/21128 -https://www.oceanexpert.org/expert/21129 -https://www.oceanexpert.org/expert/21131 -https://www.oceanexpert.org/expert/21132 -https://www.oceanexpert.org/expert/21133 -https://www.oceanexpert.org/expert/21135 -https://www.oceanexpert.org/expert/21137 -https://www.oceanexpert.org/expert/21139 -https://www.oceanexpert.org/expert/21141 -https://www.oceanexpert.org/expert/21142 -https://www.oceanexpert.org/expert/21144 -https://www.oceanexpert.org/expert/21145 -https://www.oceanexpert.org/expert/21149 -https://www.oceanexpert.org/expert/21152 -https://www.oceanexpert.org/expert/21157 -https://www.oceanexpert.org/expert/21160 -https://www.oceanexpert.org/expert/21161 -https://www.oceanexpert.org/expert/21162 -https://www.oceanexpert.org/expert/21163 -https://www.oceanexpert.org/expert/21164 -https://www.oceanexpert.org/expert/21166 -https://www.oceanexpert.org/expert/21167 -https://www.oceanexpert.org/expert/21170 -https://www.oceanexpert.org/expert/21171 -https://www.oceanexpert.org/expert/21173 -https://www.oceanexpert.org/expert/21174 -https://www.oceanexpert.org/expert/21177 -https://www.oceanexpert.org/expert/21178 -https://www.oceanexpert.org/expert/21180 -https://www.oceanexpert.org/expert/21181 -https://www.oceanexpert.org/expert/21183 -https://www.oceanexpert.org/expert/21185 -https://www.oceanexpert.org/expert/21186 -https://www.oceanexpert.org/expert/21187 -https://www.oceanexpert.org/expert/21188 -https://www.oceanexpert.org/expert/21189 -https://www.oceanexpert.org/expert/21190 -https://www.oceanexpert.org/expert/21193 -https://www.oceanexpert.org/expert/21194 -https://www.oceanexpert.org/expert/21195 -https://www.oceanexpert.org/expert/21196 -https://www.oceanexpert.org/expert/21198 -https://www.oceanexpert.org/expert/21200 -https://www.oceanexpert.org/expert/21201 -https://www.oceanexpert.org/expert/21203 -https://www.oceanexpert.org/expert/21205 -https://www.oceanexpert.org/expert/21207 -https://www.oceanexpert.org/expert/21209 -https://www.oceanexpert.org/expert/21211 -https://www.oceanexpert.org/expert/21212 -https://www.oceanexpert.org/expert/21213 -https://www.oceanexpert.org/expert/21214 -https://www.oceanexpert.org/expert/21215 -https://www.oceanexpert.org/expert/21216 -https://www.oceanexpert.org/expert/21217 -https://www.oceanexpert.org/expert/21218 -https://www.oceanexpert.org/expert/21219 -https://www.oceanexpert.org/expert/21220 -https://www.oceanexpert.org/expert/21221 -https://www.oceanexpert.org/expert/21222 -https://www.oceanexpert.org/expert/21223 -https://www.oceanexpert.org/expert/21224 -https://www.oceanexpert.org/expert/21225 -https://www.oceanexpert.org/expert/21236 -https://www.oceanexpert.org/expert/21239 -https://www.oceanexpert.org/expert/21241 -https://www.oceanexpert.org/expert/21243 -https://www.oceanexpert.org/expert/21248 -https://www.oceanexpert.org/expert/21249 -https://www.oceanexpert.org/expert/21250 -https://www.oceanexpert.org/expert/21253 -https://www.oceanexpert.org/expert/21256 -https://www.oceanexpert.org/expert/21257 -https://www.oceanexpert.org/expert/21260 -https://www.oceanexpert.org/expert/21262 -https://www.oceanexpert.org/expert/21263 -https://www.oceanexpert.org/expert/21266 -https://www.oceanexpert.org/expert/21271 -https://www.oceanexpert.org/expert/21272 -https://www.oceanexpert.org/expert/21273 -https://www.oceanexpert.org/expert/21281 -https://www.oceanexpert.org/expert/21284 -https://www.oceanexpert.org/expert/21286 -https://www.oceanexpert.org/expert/21287 -https://www.oceanexpert.org/expert/21289 -https://www.oceanexpert.org/expert/21291 -https://www.oceanexpert.org/expert/21294 -https://www.oceanexpert.org/expert/21295 -https://www.oceanexpert.org/expert/21296 -https://www.oceanexpert.org/expert/21298 -https://www.oceanexpert.org/expert/21301 -https://www.oceanexpert.org/expert/21305 -https://www.oceanexpert.org/expert/21306 -https://www.oceanexpert.org/expert/21307 -https://www.oceanexpert.org/expert/21310 -https://www.oceanexpert.org/expert/21316 -https://www.oceanexpert.org/expert/21318 -https://www.oceanexpert.org/expert/21324 -https://www.oceanexpert.org/expert/21328 -https://www.oceanexpert.org/expert/21329 -https://www.oceanexpert.org/expert/21331 -https://www.oceanexpert.org/expert/21339 -https://www.oceanexpert.org/expert/21341 -https://www.oceanexpert.org/expert/21343 -https://www.oceanexpert.org/expert/21344 -https://www.oceanexpert.org/expert/21348 -https://www.oceanexpert.org/expert/21351 -https://www.oceanexpert.org/expert/21352 -https://www.oceanexpert.org/expert/21353 -https://www.oceanexpert.org/expert/21354 -https://www.oceanexpert.org/expert/21355 -https://www.oceanexpert.org/expert/21356 -https://www.oceanexpert.org/expert/21357 -https://www.oceanexpert.org/expert/21358 -https://www.oceanexpert.org/expert/21360 -https://www.oceanexpert.org/expert/21361 -https://www.oceanexpert.org/expert/21362 -https://www.oceanexpert.org/expert/21363 -https://www.oceanexpert.org/expert/21365 -https://www.oceanexpert.org/expert/21372 -https://www.oceanexpert.org/expert/21400 -https://www.oceanexpert.org/expert/21401 -https://www.oceanexpert.org/expert/21404 -https://www.oceanexpert.org/expert/21416 -https://www.oceanexpert.org/expert/21441 -https://www.oceanexpert.org/expert/21445 -https://www.oceanexpert.org/expert/21446 -https://www.oceanexpert.org/expert/21447 -https://www.oceanexpert.org/expert/21448 -https://www.oceanexpert.org/expert/21449 -https://www.oceanexpert.org/expert/21450 -https://www.oceanexpert.org/expert/21451 -https://www.oceanexpert.org/expert/21453 -https://www.oceanexpert.org/expert/21454 -https://www.oceanexpert.org/expert/21456 -https://www.oceanexpert.org/expert/21458 -https://www.oceanexpert.org/expert/21459 -https://www.oceanexpert.org/expert/21461 -https://www.oceanexpert.org/expert/21463 -https://www.oceanexpert.org/expert/21464 -https://www.oceanexpert.org/expert/21465 -https://www.oceanexpert.org/expert/21467 -https://www.oceanexpert.org/expert/21468 -https://www.oceanexpert.org/expert/21470 -https://www.oceanexpert.org/expert/21471 -https://www.oceanexpert.org/expert/21475 -https://www.oceanexpert.org/expert/21477 -https://www.oceanexpert.org/expert/21478 -https://www.oceanexpert.org/expert/21482 -https://www.oceanexpert.org/expert/21483 -https://www.oceanexpert.org/expert/21484 -https://www.oceanexpert.org/expert/21485 -https://www.oceanexpert.org/expert/21488 -https://www.oceanexpert.org/expert/21489 -https://www.oceanexpert.org/expert/21490 -https://www.oceanexpert.org/expert/21493 -https://www.oceanexpert.org/expert/21494 -https://www.oceanexpert.org/expert/21495 -https://www.oceanexpert.org/expert/21497 -https://www.oceanexpert.org/expert/21498 -https://www.oceanexpert.org/expert/21499 -https://www.oceanexpert.org/expert/21500 -https://www.oceanexpert.org/expert/21501 -https://www.oceanexpert.org/expert/21503 -https://www.oceanexpert.org/expert/21505 -https://www.oceanexpert.org/expert/21506 -https://www.oceanexpert.org/expert/21509 -https://www.oceanexpert.org/expert/21512 -https://www.oceanexpert.org/expert/21514 -https://www.oceanexpert.org/expert/21518 -https://www.oceanexpert.org/expert/21519 -https://www.oceanexpert.org/expert/21520 -https://www.oceanexpert.org/expert/21521 -https://www.oceanexpert.org/expert/21522 -https://www.oceanexpert.org/expert/21524 -https://www.oceanexpert.org/expert/21525 -https://www.oceanexpert.org/expert/21530 -https://www.oceanexpert.org/expert/21532 -https://www.oceanexpert.org/expert/21533 -https://www.oceanexpert.org/expert/21534 -https://www.oceanexpert.org/expert/21536 -https://www.oceanexpert.org/expert/21537 -https://www.oceanexpert.org/expert/21539 -https://www.oceanexpert.org/expert/21541 -https://www.oceanexpert.org/expert/21543 -https://www.oceanexpert.org/expert/21545 -https://www.oceanexpert.org/expert/21546 -https://www.oceanexpert.org/expert/21547 -https://www.oceanexpert.org/expert/21548 -https://www.oceanexpert.org/expert/21549 -https://www.oceanexpert.org/expert/21551 -https://www.oceanexpert.org/expert/21552 -https://www.oceanexpert.org/expert/21553 -https://www.oceanexpert.org/expert/21554 -https://www.oceanexpert.org/expert/21556 -https://www.oceanexpert.org/expert/21559 -https://www.oceanexpert.org/expert/21561 -https://www.oceanexpert.org/expert/21566 -https://www.oceanexpert.org/expert/21567 -https://www.oceanexpert.org/expert/21570 -https://www.oceanexpert.org/expert/21592 -https://www.oceanexpert.org/expert/21593 -https://www.oceanexpert.org/expert/21594 -https://www.oceanexpert.org/expert/21595 -https://www.oceanexpert.org/expert/21596 -https://www.oceanexpert.org/expert/21598 -https://www.oceanexpert.org/expert/21600 -https://www.oceanexpert.org/expert/21601 -https://www.oceanexpert.org/expert/21602 -https://www.oceanexpert.org/expert/21609 -https://www.oceanexpert.org/expert/21610 -https://www.oceanexpert.org/expert/21612 -https://www.oceanexpert.org/expert/21615 -https://www.oceanexpert.org/expert/21616 -https://www.oceanexpert.org/expert/21620 -https://www.oceanexpert.org/expert/21622 -https://www.oceanexpert.org/expert/21623 -https://www.oceanexpert.org/expert/21624 -https://www.oceanexpert.org/expert/21625 -https://www.oceanexpert.org/expert/21626 -https://www.oceanexpert.org/expert/21627 -https://www.oceanexpert.org/expert/21628 -https://www.oceanexpert.org/expert/21629 -https://www.oceanexpert.org/expert/21630 -https://www.oceanexpert.org/expert/21631 -https://www.oceanexpert.org/expert/21633 -https://www.oceanexpert.org/expert/21634 -https://www.oceanexpert.org/expert/21635 -https://www.oceanexpert.org/expert/21636 -https://www.oceanexpert.org/expert/21637 -https://www.oceanexpert.org/expert/21638 -https://www.oceanexpert.org/expert/21639 -https://www.oceanexpert.org/expert/21644 -https://www.oceanexpert.org/expert/21648 -https://www.oceanexpert.org/expert/21649 -https://www.oceanexpert.org/expert/21650 -https://www.oceanexpert.org/expert/21651 -https://www.oceanexpert.org/expert/21653 -https://www.oceanexpert.org/expert/21658 -https://www.oceanexpert.org/expert/21659 -https://www.oceanexpert.org/expert/21661 -https://www.oceanexpert.org/expert/21662 -https://www.oceanexpert.org/expert/21664 -https://www.oceanexpert.org/expert/21666 -https://www.oceanexpert.org/expert/21667 -https://www.oceanexpert.org/expert/21669 -https://www.oceanexpert.org/expert/21670 -https://www.oceanexpert.org/expert/21672 -https://www.oceanexpert.org/expert/21674 -https://www.oceanexpert.org/expert/21675 -https://www.oceanexpert.org/expert/21679 -https://www.oceanexpert.org/expert/21680 -https://www.oceanexpert.org/expert/21682 -https://www.oceanexpert.org/expert/21683 -https://www.oceanexpert.org/expert/21684 -https://www.oceanexpert.org/expert/21686 -https://www.oceanexpert.org/expert/21687 -https://www.oceanexpert.org/expert/21689 -https://www.oceanexpert.org/expert/21690 -https://www.oceanexpert.org/expert/21691 -https://www.oceanexpert.org/expert/21692 -https://www.oceanexpert.org/expert/21695 -https://www.oceanexpert.org/expert/21696 -https://www.oceanexpert.org/expert/21698 -https://www.oceanexpert.org/expert/21699 -https://www.oceanexpert.org/expert/21700 -https://www.oceanexpert.org/expert/21703 -https://www.oceanexpert.org/expert/21704 -https://www.oceanexpert.org/expert/21706 -https://www.oceanexpert.org/expert/21707 -https://www.oceanexpert.org/expert/21708 -https://www.oceanexpert.org/expert/21710 -https://www.oceanexpert.org/expert/21711 -https://www.oceanexpert.org/expert/21712 -https://www.oceanexpert.org/expert/21713 -https://www.oceanexpert.org/expert/21714 -https://www.oceanexpert.org/expert/21715 -https://www.oceanexpert.org/expert/21716 -https://www.oceanexpert.org/expert/21717 -https://www.oceanexpert.org/expert/21719 -https://www.oceanexpert.org/expert/21722 -https://www.oceanexpert.org/expert/21723 -https://www.oceanexpert.org/expert/21724 -https://www.oceanexpert.org/expert/21725 -https://www.oceanexpert.org/expert/21726 -https://www.oceanexpert.org/expert/21728 -https://www.oceanexpert.org/expert/21729 -https://www.oceanexpert.org/expert/21730 -https://www.oceanexpert.org/expert/21731 -https://www.oceanexpert.org/expert/21733 -https://www.oceanexpert.org/expert/21734 -https://www.oceanexpert.org/expert/21735 -https://www.oceanexpert.org/expert/21737 -https://www.oceanexpert.org/expert/21738 -https://www.oceanexpert.org/expert/21739 -https://www.oceanexpert.org/expert/21743 -https://www.oceanexpert.org/expert/21745 -https://www.oceanexpert.org/expert/21746 -https://www.oceanexpert.org/expert/21747 -https://www.oceanexpert.org/expert/21748 -https://www.oceanexpert.org/expert/21749 -https://www.oceanexpert.org/expert/21750 -https://www.oceanexpert.org/expert/21751 -https://www.oceanexpert.org/expert/21752 -https://www.oceanexpert.org/expert/21753 -https://www.oceanexpert.org/expert/21754 -https://www.oceanexpert.org/expert/21755 -https://www.oceanexpert.org/expert/21756 -https://www.oceanexpert.org/expert/21758 -https://www.oceanexpert.org/expert/21759 -https://www.oceanexpert.org/expert/21760 -https://www.oceanexpert.org/expert/21761 -https://www.oceanexpert.org/expert/21762 -https://www.oceanexpert.org/expert/21764 -https://www.oceanexpert.org/expert/21765 -https://www.oceanexpert.org/expert/21768 -https://www.oceanexpert.org/expert/21769 -https://www.oceanexpert.org/expert/21771 -https://www.oceanexpert.org/expert/21772 -https://www.oceanexpert.org/expert/21773 -https://www.oceanexpert.org/expert/21774 -https://www.oceanexpert.org/expert/21777 -https://www.oceanexpert.org/expert/21778 -https://www.oceanexpert.org/expert/21779 -https://www.oceanexpert.org/expert/21780 -https://www.oceanexpert.org/expert/21781 -https://www.oceanexpert.org/expert/21784 -https://www.oceanexpert.org/expert/21785 -https://www.oceanexpert.org/expert/21786 -https://www.oceanexpert.org/expert/21787 -https://www.oceanexpert.org/expert/21788 -https://www.oceanexpert.org/expert/21789 -https://www.oceanexpert.org/expert/21790 -https://www.oceanexpert.org/expert/21791 -https://www.oceanexpert.org/expert/21792 -https://www.oceanexpert.org/expert/21793 -https://www.oceanexpert.org/expert/21795 -https://www.oceanexpert.org/expert/21796 -https://www.oceanexpert.org/expert/21797 -https://www.oceanexpert.org/expert/21798 -https://www.oceanexpert.org/expert/21799 -https://www.oceanexpert.org/expert/21800 -https://www.oceanexpert.org/expert/21802 -https://www.oceanexpert.org/expert/21803 -https://www.oceanexpert.org/expert/21804 -https://www.oceanexpert.org/expert/21805 -https://www.oceanexpert.org/expert/21807 -https://www.oceanexpert.org/expert/21810 -https://www.oceanexpert.org/expert/21811 -https://www.oceanexpert.org/expert/21812 -https://www.oceanexpert.org/expert/21814 -https://www.oceanexpert.org/expert/21815 -https://www.oceanexpert.org/expert/21816 -https://www.oceanexpert.org/expert/21817 -https://www.oceanexpert.org/expert/21818 -https://www.oceanexpert.org/expert/21819 -https://www.oceanexpert.org/expert/21820 -https://www.oceanexpert.org/expert/21824 -https://www.oceanexpert.org/expert/21825 -https://www.oceanexpert.org/expert/21826 -https://www.oceanexpert.org/expert/21827 -https://www.oceanexpert.org/expert/21829 -https://www.oceanexpert.org/expert/21830 -https://www.oceanexpert.org/expert/21832 -https://www.oceanexpert.org/expert/21834 -https://www.oceanexpert.org/expert/21835 -https://www.oceanexpert.org/expert/21836 -https://www.oceanexpert.org/expert/21837 -https://www.oceanexpert.org/expert/21838 -https://www.oceanexpert.org/expert/21842 -https://www.oceanexpert.org/expert/21843 -https://www.oceanexpert.org/expert/21844 -https://www.oceanexpert.org/expert/21845 -https://www.oceanexpert.org/expert/21846 -https://www.oceanexpert.org/expert/21847 -https://www.oceanexpert.org/expert/21849 -https://www.oceanexpert.org/expert/21850 -https://www.oceanexpert.org/expert/21851 -https://www.oceanexpert.org/expert/21852 -https://www.oceanexpert.org/expert/21853 -https://www.oceanexpert.org/expert/21854 -https://www.oceanexpert.org/expert/21855 -https://www.oceanexpert.org/expert/21856 -https://www.oceanexpert.org/expert/21857 -https://www.oceanexpert.org/expert/21860 -https://www.oceanexpert.org/expert/21861 -https://www.oceanexpert.org/expert/21863 -https://www.oceanexpert.org/expert/21864 -https://www.oceanexpert.org/expert/21866 -https://www.oceanexpert.org/expert/21868 -https://www.oceanexpert.org/expert/21870 -https://www.oceanexpert.org/expert/21871 -https://www.oceanexpert.org/expert/21872 -https://www.oceanexpert.org/expert/21874 -https://www.oceanexpert.org/expert/21881 -https://www.oceanexpert.org/expert/21882 -https://www.oceanexpert.org/expert/21883 -https://www.oceanexpert.org/expert/21885 -https://www.oceanexpert.org/expert/21888 -https://www.oceanexpert.org/expert/21892 -https://www.oceanexpert.org/expert/21893 -https://www.oceanexpert.org/expert/21894 -https://www.oceanexpert.org/expert/21896 -https://www.oceanexpert.org/expert/21897 -https://www.oceanexpert.org/expert/21898 -https://www.oceanexpert.org/expert/21899 -https://www.oceanexpert.org/expert/21902 -https://www.oceanexpert.org/expert/21903 -https://www.oceanexpert.org/expert/21904 -https://www.oceanexpert.org/expert/21906 -https://www.oceanexpert.org/expert/21908 -https://www.oceanexpert.org/expert/21909 -https://www.oceanexpert.org/expert/21910 -https://www.oceanexpert.org/expert/21912 -https://www.oceanexpert.org/expert/21913 -https://www.oceanexpert.org/expert/21915 -https://www.oceanexpert.org/expert/21917 -https://www.oceanexpert.org/expert/21919 -https://www.oceanexpert.org/expert/21923 -https://www.oceanexpert.org/expert/21924 -https://www.oceanexpert.org/expert/21926 -https://www.oceanexpert.org/expert/21929 -https://www.oceanexpert.org/expert/21930 -https://www.oceanexpert.org/expert/21932 -https://www.oceanexpert.org/expert/21933 -https://www.oceanexpert.org/expert/21934 -https://www.oceanexpert.org/expert/21936 -https://www.oceanexpert.org/expert/21937 -https://www.oceanexpert.org/expert/21938 -https://www.oceanexpert.org/expert/21940 -https://www.oceanexpert.org/expert/21944 -https://www.oceanexpert.org/expert/21946 -https://www.oceanexpert.org/expert/21949 -https://www.oceanexpert.org/expert/21950 -https://www.oceanexpert.org/expert/21953 -https://www.oceanexpert.org/expert/21955 -https://www.oceanexpert.org/expert/21957 -https://www.oceanexpert.org/expert/21958 -https://www.oceanexpert.org/expert/21959 -https://www.oceanexpert.org/expert/21962 -https://www.oceanexpert.org/expert/21965 -https://www.oceanexpert.org/expert/21967 -https://www.oceanexpert.org/expert/21971 -https://www.oceanexpert.org/expert/21972 -https://www.oceanexpert.org/expert/21976 -https://www.oceanexpert.org/expert/21977 -https://www.oceanexpert.org/expert/21978 -https://www.oceanexpert.org/expert/21980 -https://www.oceanexpert.org/expert/21981 -https://www.oceanexpert.org/expert/21982 -https://www.oceanexpert.org/expert/21984 -https://www.oceanexpert.org/expert/21986 -https://www.oceanexpert.org/expert/21987 -https://www.oceanexpert.org/expert/21988 -https://www.oceanexpert.org/expert/21990 -https://www.oceanexpert.org/expert/21994 -https://www.oceanexpert.org/expert/21997 -https://www.oceanexpert.org/expert/21998 -https://www.oceanexpert.org/expert/22009 -https://www.oceanexpert.org/expert/22012 -https://www.oceanexpert.org/expert/22013 -https://www.oceanexpert.org/expert/22015 -https://www.oceanexpert.org/expert/22016 -https://www.oceanexpert.org/expert/22017 -https://www.oceanexpert.org/expert/22021 -https://www.oceanexpert.org/expert/22022 -https://www.oceanexpert.org/expert/22024 -https://www.oceanexpert.org/expert/22025 -https://www.oceanexpert.org/expert/22026 -https://www.oceanexpert.org/expert/22027 -https://www.oceanexpert.org/expert/22028 -https://www.oceanexpert.org/expert/22029 -https://www.oceanexpert.org/expert/22030 -https://www.oceanexpert.org/expert/22031 -https://www.oceanexpert.org/expert/22032 -https://www.oceanexpert.org/expert/22033 -https://www.oceanexpert.org/expert/22035 -https://www.oceanexpert.org/expert/22037 -https://www.oceanexpert.org/expert/22040 -https://www.oceanexpert.org/expert/22042 -https://www.oceanexpert.org/expert/22044 -https://www.oceanexpert.org/expert/22046 -https://www.oceanexpert.org/expert/22049 -https://www.oceanexpert.org/expert/22050 -https://www.oceanexpert.org/expert/22053 -https://www.oceanexpert.org/expert/22056 -https://www.oceanexpert.org/expert/22057 -https://www.oceanexpert.org/expert/22060 -https://www.oceanexpert.org/expert/22064 -https://www.oceanexpert.org/expert/22068 -https://www.oceanexpert.org/expert/22069 -https://www.oceanexpert.org/expert/22074 -https://www.oceanexpert.org/expert/22075 -https://www.oceanexpert.org/expert/22076 -https://www.oceanexpert.org/expert/22077 -https://www.oceanexpert.org/expert/22078 -https://www.oceanexpert.org/expert/22080 -https://www.oceanexpert.org/expert/22081 -https://www.oceanexpert.org/expert/22082 -https://www.oceanexpert.org/expert/22086 -https://www.oceanexpert.org/expert/22087 -https://www.oceanexpert.org/expert/22088 -https://www.oceanexpert.org/expert/22091 -https://www.oceanexpert.org/expert/22094 -https://www.oceanexpert.org/expert/22095 -https://www.oceanexpert.org/expert/22098 -https://www.oceanexpert.org/expert/22101 -https://www.oceanexpert.org/expert/22103 -https://www.oceanexpert.org/expert/22107 -https://www.oceanexpert.org/expert/22108 -https://www.oceanexpert.org/expert/22110 -https://www.oceanexpert.org/expert/22111 -https://www.oceanexpert.org/expert/22112 -https://www.oceanexpert.org/expert/22113 -https://www.oceanexpert.org/expert/22115 -https://www.oceanexpert.org/expert/22116 -https://www.oceanexpert.org/expert/22120 -https://www.oceanexpert.org/expert/22122 -https://www.oceanexpert.org/expert/22123 -https://www.oceanexpert.org/expert/22126 -https://www.oceanexpert.org/expert/22128 -https://www.oceanexpert.org/expert/22130 -https://www.oceanexpert.org/expert/22131 -https://www.oceanexpert.org/expert/22135 -https://www.oceanexpert.org/expert/22137 -https://www.oceanexpert.org/expert/22140 -https://www.oceanexpert.org/expert/22142 -https://www.oceanexpert.org/expert/22144 -https://www.oceanexpert.org/expert/22145 -https://www.oceanexpert.org/expert/22146 -https://www.oceanexpert.org/expert/22149 -https://www.oceanexpert.org/expert/22154 -https://www.oceanexpert.org/expert/22156 -https://www.oceanexpert.org/expert/22157 -https://www.oceanexpert.org/expert/22162 -https://www.oceanexpert.org/expert/22165 -https://www.oceanexpert.org/expert/22168 -https://www.oceanexpert.org/expert/22169 -https://www.oceanexpert.org/expert/22171 -https://www.oceanexpert.org/expert/22184 -https://www.oceanexpert.org/expert/22185 -https://www.oceanexpert.org/expert/22186 -https://www.oceanexpert.org/expert/22188 -https://www.oceanexpert.org/expert/22189 -https://www.oceanexpert.org/expert/22190 -https://www.oceanexpert.org/expert/22196 -https://www.oceanexpert.org/expert/22198 -https://www.oceanexpert.org/expert/22199 -https://www.oceanexpert.org/expert/22201 -https://www.oceanexpert.org/expert/22203 -https://www.oceanexpert.org/expert/22204 -https://www.oceanexpert.org/expert/22205 -https://www.oceanexpert.org/expert/22206 -https://www.oceanexpert.org/expert/22207 -https://www.oceanexpert.org/expert/22208 -https://www.oceanexpert.org/expert/22209 -https://www.oceanexpert.org/expert/22211 -https://www.oceanexpert.org/expert/22212 -https://www.oceanexpert.org/expert/22213 -https://www.oceanexpert.org/expert/22214 -https://www.oceanexpert.org/expert/22215 -https://www.oceanexpert.org/expert/22217 -https://www.oceanexpert.org/expert/22218 -https://www.oceanexpert.org/expert/22219 -https://www.oceanexpert.org/expert/22220 -https://www.oceanexpert.org/expert/22221 -https://www.oceanexpert.org/expert/22223 -https://www.oceanexpert.org/expert/22224 -https://www.oceanexpert.org/expert/22225 -https://www.oceanexpert.org/expert/22226 -https://www.oceanexpert.org/expert/22228 -https://www.oceanexpert.org/expert/22229 -https://www.oceanexpert.org/expert/22231 -https://www.oceanexpert.org/expert/22232 -https://www.oceanexpert.org/expert/22233 -https://www.oceanexpert.org/expert/22234 -https://www.oceanexpert.org/expert/22235 -https://www.oceanexpert.org/expert/22236 -https://www.oceanexpert.org/expert/22237 -https://www.oceanexpert.org/expert/22238 -https://www.oceanexpert.org/expert/22239 -https://www.oceanexpert.org/expert/22240 -https://www.oceanexpert.org/expert/22241 -https://www.oceanexpert.org/expert/22243 -https://www.oceanexpert.org/expert/22244 -https://www.oceanexpert.org/expert/22245 -https://www.oceanexpert.org/expert/22246 -https://www.oceanexpert.org/expert/22248 -https://www.oceanexpert.org/expert/22250 -https://www.oceanexpert.org/expert/22251 -https://www.oceanexpert.org/expert/22252 -https://www.oceanexpert.org/expert/22253 -https://www.oceanexpert.org/expert/22255 -https://www.oceanexpert.org/expert/22258 -https://www.oceanexpert.org/expert/22259 -https://www.oceanexpert.org/expert/22260 -https://www.oceanexpert.org/expert/22262 -https://www.oceanexpert.org/expert/22263 -https://www.oceanexpert.org/expert/22266 -https://www.oceanexpert.org/expert/22267 -https://www.oceanexpert.org/expert/22268 -https://www.oceanexpert.org/expert/22270 -https://www.oceanexpert.org/expert/22272 -https://www.oceanexpert.org/expert/22275 -https://www.oceanexpert.org/expert/22277 -https://www.oceanexpert.org/expert/22278 -https://www.oceanexpert.org/expert/22279 -https://www.oceanexpert.org/expert/22280 -https://www.oceanexpert.org/expert/22281 -https://www.oceanexpert.org/expert/22282 -https://www.oceanexpert.org/expert/22283 -https://www.oceanexpert.org/expert/22284 -https://www.oceanexpert.org/expert/22285 -https://www.oceanexpert.org/expert/22286 -https://www.oceanexpert.org/expert/22288 -https://www.oceanexpert.org/expert/22290 -https://www.oceanexpert.org/expert/22291 -https://www.oceanexpert.org/expert/22293 -https://www.oceanexpert.org/expert/22296 -https://www.oceanexpert.org/expert/22297 -https://www.oceanexpert.org/expert/22300 -https://www.oceanexpert.org/expert/22301 -https://www.oceanexpert.org/expert/22302 -https://www.oceanexpert.org/expert/22309 -https://www.oceanexpert.org/expert/22310 -https://www.oceanexpert.org/expert/22312 -https://www.oceanexpert.org/expert/22314 -https://www.oceanexpert.org/expert/22317 -https://www.oceanexpert.org/expert/22323 -https://www.oceanexpert.org/expert/22324 -https://www.oceanexpert.org/expert/22327 -https://www.oceanexpert.org/expert/22332 -https://www.oceanexpert.org/expert/22333 -https://www.oceanexpert.org/expert/22336 -https://www.oceanexpert.org/expert/22337 -https://www.oceanexpert.org/expert/22338 -https://www.oceanexpert.org/expert/22341 -https://www.oceanexpert.org/expert/22342 -https://www.oceanexpert.org/expert/22343 -https://www.oceanexpert.org/expert/22352 -https://www.oceanexpert.org/expert/22357 -https://www.oceanexpert.org/expert/22363 -https://www.oceanexpert.org/expert/22364 -https://www.oceanexpert.org/expert/22366 -https://www.oceanexpert.org/expert/22367 -https://www.oceanexpert.org/expert/22369 -https://www.oceanexpert.org/expert/22371 -https://www.oceanexpert.org/expert/22372 -https://www.oceanexpert.org/expert/22373 -https://www.oceanexpert.org/expert/22374 -https://www.oceanexpert.org/expert/22375 -https://www.oceanexpert.org/expert/22377 -https://www.oceanexpert.org/expert/22378 -https://www.oceanexpert.org/expert/22379 -https://www.oceanexpert.org/expert/22380 -https://www.oceanexpert.org/expert/22381 -https://www.oceanexpert.org/expert/22383 -https://www.oceanexpert.org/expert/22384 -https://www.oceanexpert.org/expert/22388 -https://www.oceanexpert.org/expert/22391 -https://www.oceanexpert.org/expert/22393 -https://www.oceanexpert.org/expert/22394 -https://www.oceanexpert.org/expert/22395 -https://www.oceanexpert.org/expert/22396 -https://www.oceanexpert.org/expert/22397 -https://www.oceanexpert.org/expert/22398 -https://www.oceanexpert.org/expert/22399 -https://www.oceanexpert.org/expert/22404 -https://www.oceanexpert.org/expert/22405 -https://www.oceanexpert.org/expert/22406 -https://www.oceanexpert.org/expert/22407 -https://www.oceanexpert.org/expert/22408 -https://www.oceanexpert.org/expert/22409 -https://www.oceanexpert.org/expert/22410 -https://www.oceanexpert.org/expert/22412 -https://www.oceanexpert.org/expert/22413 -https://www.oceanexpert.org/expert/22414 -https://www.oceanexpert.org/expert/22415 -https://www.oceanexpert.org/expert/22417 -https://www.oceanexpert.org/expert/22418 -https://www.oceanexpert.org/expert/22420 -https://www.oceanexpert.org/expert/22421 -https://www.oceanexpert.org/expert/22422 -https://www.oceanexpert.org/expert/22425 -https://www.oceanexpert.org/expert/22427 -https://www.oceanexpert.org/expert/22428 -https://www.oceanexpert.org/expert/22429 -https://www.oceanexpert.org/expert/22431 -https://www.oceanexpert.org/expert/22432 -https://www.oceanexpert.org/expert/22433 -https://www.oceanexpert.org/expert/22435 -https://www.oceanexpert.org/expert/22439 -https://www.oceanexpert.org/expert/22440 -https://www.oceanexpert.org/expert/22441 -https://www.oceanexpert.org/expert/22442 -https://www.oceanexpert.org/expert/22443 -https://www.oceanexpert.org/expert/22444 -https://www.oceanexpert.org/expert/22445 -https://www.oceanexpert.org/expert/22446 -https://www.oceanexpert.org/expert/22449 -https://www.oceanexpert.org/expert/22450 -https://www.oceanexpert.org/expert/22451 -https://www.oceanexpert.org/expert/22452 -https://www.oceanexpert.org/expert/22454 -https://www.oceanexpert.org/expert/22455 -https://www.oceanexpert.org/expert/22456 -https://www.oceanexpert.org/expert/22458 -https://www.oceanexpert.org/expert/22460 -https://www.oceanexpert.org/expert/22464 -https://www.oceanexpert.org/expert/22465 -https://www.oceanexpert.org/expert/22466 -https://www.oceanexpert.org/expert/22472 -https://www.oceanexpert.org/expert/22474 -https://www.oceanexpert.org/expert/22475 -https://www.oceanexpert.org/expert/22476 -https://www.oceanexpert.org/expert/22477 -https://www.oceanexpert.org/expert/22480 -https://www.oceanexpert.org/expert/22481 -https://www.oceanexpert.org/expert/22485 -https://www.oceanexpert.org/expert/22493 -https://www.oceanexpert.org/expert/22494 -https://www.oceanexpert.org/expert/22497 -https://www.oceanexpert.org/expert/22498 -https://www.oceanexpert.org/expert/22499 -https://www.oceanexpert.org/expert/22500 -https://www.oceanexpert.org/expert/22502 -https://www.oceanexpert.org/expert/22504 -https://www.oceanexpert.org/expert/22506 -https://www.oceanexpert.org/expert/22507 -https://www.oceanexpert.org/expert/22508 -https://www.oceanexpert.org/expert/22514 -https://www.oceanexpert.org/expert/22515 -https://www.oceanexpert.org/expert/22516 -https://www.oceanexpert.org/expert/22517 -https://www.oceanexpert.org/expert/22518 -https://www.oceanexpert.org/expert/22519 -https://www.oceanexpert.org/expert/22520 -https://www.oceanexpert.org/expert/22521 -https://www.oceanexpert.org/expert/22523 -https://www.oceanexpert.org/expert/22524 -https://www.oceanexpert.org/expert/22526 -https://www.oceanexpert.org/expert/22530 -https://www.oceanexpert.org/expert/22531 -https://www.oceanexpert.org/expert/22532 -https://www.oceanexpert.org/expert/22533 -https://www.oceanexpert.org/expert/22534 -https://www.oceanexpert.org/expert/22535 -https://www.oceanexpert.org/expert/22536 -https://www.oceanexpert.org/expert/22537 -https://www.oceanexpert.org/expert/22538 -https://www.oceanexpert.org/expert/22539 -https://www.oceanexpert.org/expert/22540 -https://www.oceanexpert.org/expert/22542 -https://www.oceanexpert.org/expert/22543 -https://www.oceanexpert.org/expert/22544 -https://www.oceanexpert.org/expert/22545 -https://www.oceanexpert.org/expert/22547 -https://www.oceanexpert.org/expert/22548 -https://www.oceanexpert.org/expert/22551 -https://www.oceanexpert.org/expert/22553 -https://www.oceanexpert.org/expert/22556 -https://www.oceanexpert.org/expert/22558 -https://www.oceanexpert.org/expert/22560 -https://www.oceanexpert.org/expert/22563 -https://www.oceanexpert.org/expert/22566 -https://www.oceanexpert.org/expert/22567 -https://www.oceanexpert.org/expert/22569 -https://www.oceanexpert.org/expert/22571 -https://www.oceanexpert.org/expert/22572 -https://www.oceanexpert.org/expert/22573 -https://www.oceanexpert.org/expert/22574 -https://www.oceanexpert.org/expert/22575 -https://www.oceanexpert.org/expert/22576 -https://www.oceanexpert.org/expert/22580 -https://www.oceanexpert.org/expert/22581 -https://www.oceanexpert.org/expert/22583 -https://www.oceanexpert.org/expert/22584 -https://www.oceanexpert.org/expert/22585 -https://www.oceanexpert.org/expert/22586 -https://www.oceanexpert.org/expert/22587 -https://www.oceanexpert.org/expert/22588 -https://www.oceanexpert.org/expert/22589 -https://www.oceanexpert.org/expert/22592 -https://www.oceanexpert.org/expert/22596 -https://www.oceanexpert.org/expert/22598 -https://www.oceanexpert.org/expert/22599 -https://www.oceanexpert.org/expert/22600 -https://www.oceanexpert.org/expert/22601 -https://www.oceanexpert.org/expert/22602 -https://www.oceanexpert.org/expert/22605 -https://www.oceanexpert.org/expert/22606 -https://www.oceanexpert.org/expert/22609 -https://www.oceanexpert.org/expert/22610 -https://www.oceanexpert.org/expert/22611 -https://www.oceanexpert.org/expert/22612 -https://www.oceanexpert.org/expert/22617 -https://www.oceanexpert.org/expert/22618 -https://www.oceanexpert.org/expert/22619 -https://www.oceanexpert.org/expert/22622 -https://www.oceanexpert.org/expert/22623 -https://www.oceanexpert.org/expert/22625 -https://www.oceanexpert.org/expert/22626 -https://www.oceanexpert.org/expert/22627 -https://www.oceanexpert.org/expert/22628 -https://www.oceanexpert.org/expert/22629 -https://www.oceanexpert.org/expert/22630 -https://www.oceanexpert.org/expert/22632 -https://www.oceanexpert.org/expert/22634 -https://www.oceanexpert.org/expert/22635 -https://www.oceanexpert.org/expert/22637 -https://www.oceanexpert.org/expert/22638 -https://www.oceanexpert.org/expert/22639 -https://www.oceanexpert.org/expert/22641 -https://www.oceanexpert.org/expert/22643 -https://www.oceanexpert.org/expert/22644 -https://www.oceanexpert.org/expert/22647 -https://www.oceanexpert.org/expert/22648 -https://www.oceanexpert.org/expert/22650 -https://www.oceanexpert.org/expert/22651 -https://www.oceanexpert.org/expert/22653 -https://www.oceanexpert.org/expert/22654 -https://www.oceanexpert.org/expert/22656 -https://www.oceanexpert.org/expert/22657 -https://www.oceanexpert.org/expert/22659 -https://www.oceanexpert.org/expert/22660 -https://www.oceanexpert.org/expert/22662 -https://www.oceanexpert.org/expert/22663 -https://www.oceanexpert.org/expert/22664 -https://www.oceanexpert.org/expert/22665 -https://www.oceanexpert.org/expert/22667 -https://www.oceanexpert.org/expert/22668 -https://www.oceanexpert.org/expert/22670 -https://www.oceanexpert.org/expert/22671 -https://www.oceanexpert.org/expert/22672 -https://www.oceanexpert.org/expert/22673 -https://www.oceanexpert.org/expert/22676 -https://www.oceanexpert.org/expert/22677 -https://www.oceanexpert.org/expert/22678 -https://www.oceanexpert.org/expert/22680 -https://www.oceanexpert.org/expert/22681 -https://www.oceanexpert.org/expert/22682 -https://www.oceanexpert.org/expert/22683 -https://www.oceanexpert.org/expert/22685 -https://www.oceanexpert.org/expert/22686 -https://www.oceanexpert.org/expert/22687 -https://www.oceanexpert.org/expert/22688 -https://www.oceanexpert.org/expert/22689 -https://www.oceanexpert.org/expert/22690 -https://www.oceanexpert.org/expert/22692 -https://www.oceanexpert.org/expert/22694 -https://www.oceanexpert.org/expert/22695 -https://www.oceanexpert.org/expert/22696 -https://www.oceanexpert.org/expert/22697 -https://www.oceanexpert.org/expert/22706 -https://www.oceanexpert.org/expert/22707 -https://www.oceanexpert.org/expert/22708 -https://www.oceanexpert.org/expert/22709 -https://www.oceanexpert.org/expert/22711 -https://www.oceanexpert.org/expert/22713 -https://www.oceanexpert.org/expert/22714 -https://www.oceanexpert.org/expert/22715 -https://www.oceanexpert.org/expert/22721 -https://www.oceanexpert.org/expert/22724 -https://www.oceanexpert.org/expert/22725 -https://www.oceanexpert.org/expert/22726 -https://www.oceanexpert.org/expert/22729 -https://www.oceanexpert.org/expert/22730 -https://www.oceanexpert.org/expert/22731 -https://www.oceanexpert.org/expert/22732 -https://www.oceanexpert.org/expert/22733 -https://www.oceanexpert.org/expert/22734 -https://www.oceanexpert.org/expert/22735 -https://www.oceanexpert.org/expert/22736 -https://www.oceanexpert.org/expert/22737 -https://www.oceanexpert.org/expert/22740 -https://www.oceanexpert.org/expert/22741 -https://www.oceanexpert.org/expert/22742 -https://www.oceanexpert.org/expert/22744 -https://www.oceanexpert.org/expert/22745 -https://www.oceanexpert.org/expert/22746 -https://www.oceanexpert.org/expert/22747 -https://www.oceanexpert.org/expert/22748 -https://www.oceanexpert.org/expert/22749 -https://www.oceanexpert.org/expert/22750 -https://www.oceanexpert.org/expert/22751 -https://www.oceanexpert.org/expert/22752 -https://www.oceanexpert.org/expert/22753 -https://www.oceanexpert.org/expert/22754 -https://www.oceanexpert.org/expert/22756 -https://www.oceanexpert.org/expert/22760 -https://www.oceanexpert.org/expert/22761 -https://www.oceanexpert.org/expert/22762 -https://www.oceanexpert.org/expert/22764 -https://www.oceanexpert.org/expert/22765 -https://www.oceanexpert.org/expert/22766 -https://www.oceanexpert.org/expert/22767 -https://www.oceanexpert.org/expert/22770 -https://www.oceanexpert.org/expert/22771 -https://www.oceanexpert.org/expert/22772 -https://www.oceanexpert.org/expert/22775 -https://www.oceanexpert.org/expert/22776 -https://www.oceanexpert.org/expert/22777 -https://www.oceanexpert.org/expert/22778 -https://www.oceanexpert.org/expert/22779 -https://www.oceanexpert.org/expert/22781 -https://www.oceanexpert.org/expert/22783 -https://www.oceanexpert.org/expert/22784 -https://www.oceanexpert.org/expert/22787 -https://www.oceanexpert.org/expert/22788 -https://www.oceanexpert.org/expert/22790 -https://www.oceanexpert.org/expert/22792 -https://www.oceanexpert.org/expert/22793 -https://www.oceanexpert.org/expert/22795 -https://www.oceanexpert.org/expert/22796 -https://www.oceanexpert.org/expert/22797 -https://www.oceanexpert.org/expert/22800 -https://www.oceanexpert.org/expert/22801 -https://www.oceanexpert.org/expert/22803 -https://www.oceanexpert.org/expert/22804 -https://www.oceanexpert.org/expert/22805 -https://www.oceanexpert.org/expert/22812 -https://www.oceanexpert.org/expert/22813 -https://www.oceanexpert.org/expert/22814 -https://www.oceanexpert.org/expert/22815 -https://www.oceanexpert.org/expert/22816 -https://www.oceanexpert.org/expert/22817 -https://www.oceanexpert.org/expert/22818 -https://www.oceanexpert.org/expert/22819 -https://www.oceanexpert.org/expert/22820 -https://www.oceanexpert.org/expert/22821 -https://www.oceanexpert.org/expert/22823 -https://www.oceanexpert.org/expert/22825 -https://www.oceanexpert.org/expert/22826 -https://www.oceanexpert.org/expert/22827 -https://www.oceanexpert.org/expert/22828 -https://www.oceanexpert.org/expert/22830 -https://www.oceanexpert.org/expert/22832 -https://www.oceanexpert.org/expert/22836 -https://www.oceanexpert.org/expert/22837 -https://www.oceanexpert.org/expert/22838 -https://www.oceanexpert.org/expert/22839 -https://www.oceanexpert.org/expert/22841 -https://www.oceanexpert.org/expert/22844 -https://www.oceanexpert.org/expert/22845 -https://www.oceanexpert.org/expert/22848 -https://www.oceanexpert.org/expert/22849 -https://www.oceanexpert.org/expert/22850 -https://www.oceanexpert.org/expert/22851 -https://www.oceanexpert.org/expert/22852 -https://www.oceanexpert.org/expert/22853 -https://www.oceanexpert.org/expert/22855 -https://www.oceanexpert.org/expert/22856 -https://www.oceanexpert.org/expert/22857 -https://www.oceanexpert.org/expert/22863 -https://www.oceanexpert.org/expert/22864 -https://www.oceanexpert.org/expert/22866 -https://www.oceanexpert.org/expert/22867 -https://www.oceanexpert.org/expert/22868 -https://www.oceanexpert.org/expert/22870 -https://www.oceanexpert.org/expert/22874 -https://www.oceanexpert.org/expert/22875 -https://www.oceanexpert.org/expert/22876 -https://www.oceanexpert.org/expert/22879 -https://www.oceanexpert.org/expert/22881 -https://www.oceanexpert.org/expert/22884 -https://www.oceanexpert.org/expert/22885 -https://www.oceanexpert.org/expert/22886 -https://www.oceanexpert.org/expert/22887 -https://www.oceanexpert.org/expert/22888 -https://www.oceanexpert.org/expert/22889 -https://www.oceanexpert.org/expert/22890 -https://www.oceanexpert.org/expert/22894 -https://www.oceanexpert.org/expert/22895 -https://www.oceanexpert.org/expert/22897 -https://www.oceanexpert.org/expert/22898 -https://www.oceanexpert.org/expert/22900 -https://www.oceanexpert.org/expert/22901 -https://www.oceanexpert.org/expert/22902 -https://www.oceanexpert.org/expert/22904 -https://www.oceanexpert.org/expert/22906 -https://www.oceanexpert.org/expert/22907 -https://www.oceanexpert.org/expert/22908 -https://www.oceanexpert.org/expert/22909 -https://www.oceanexpert.org/expert/22911 -https://www.oceanexpert.org/expert/22912 -https://www.oceanexpert.org/expert/22913 -https://www.oceanexpert.org/expert/22915 -https://www.oceanexpert.org/expert/22916 -https://www.oceanexpert.org/expert/22917 -https://www.oceanexpert.org/expert/22918 -https://www.oceanexpert.org/expert/22919 -https://www.oceanexpert.org/expert/22920 -https://www.oceanexpert.org/expert/22921 -https://www.oceanexpert.org/expert/22925 -https://www.oceanexpert.org/expert/22926 -https://www.oceanexpert.org/expert/22927 -https://www.oceanexpert.org/expert/22928 -https://www.oceanexpert.org/expert/22929 -https://www.oceanexpert.org/expert/22930 -https://www.oceanexpert.org/expert/22931 -https://www.oceanexpert.org/expert/22932 -https://www.oceanexpert.org/expert/22933 -https://www.oceanexpert.org/expert/22934 -https://www.oceanexpert.org/expert/22936 -https://www.oceanexpert.org/expert/22937 -https://www.oceanexpert.org/expert/22938 -https://www.oceanexpert.org/expert/22939 -https://www.oceanexpert.org/expert/22940 -https://www.oceanexpert.org/expert/22941 -https://www.oceanexpert.org/expert/22942 -https://www.oceanexpert.org/expert/22943 -https://www.oceanexpert.org/expert/22944 -https://www.oceanexpert.org/expert/22947 -https://www.oceanexpert.org/expert/22948 -https://www.oceanexpert.org/expert/22951 -https://www.oceanexpert.org/expert/22952 -https://www.oceanexpert.org/expert/22954 -https://www.oceanexpert.org/expert/22955 -https://www.oceanexpert.org/expert/22957 -https://www.oceanexpert.org/expert/22958 -https://www.oceanexpert.org/expert/22959 -https://www.oceanexpert.org/expert/22960 -https://www.oceanexpert.org/expert/22961 -https://www.oceanexpert.org/expert/22962 -https://www.oceanexpert.org/expert/22964 -https://www.oceanexpert.org/expert/22966 -https://www.oceanexpert.org/expert/22968 -https://www.oceanexpert.org/expert/22969 -https://www.oceanexpert.org/expert/22970 -https://www.oceanexpert.org/expert/22971 -https://www.oceanexpert.org/expert/22973 -https://www.oceanexpert.org/expert/22974 -https://www.oceanexpert.org/expert/22976 -https://www.oceanexpert.org/expert/22977 -https://www.oceanexpert.org/expert/22979 -https://www.oceanexpert.org/expert/22980 -https://www.oceanexpert.org/expert/22982 -https://www.oceanexpert.org/expert/22983 -https://www.oceanexpert.org/expert/22985 -https://www.oceanexpert.org/expert/22986 -https://www.oceanexpert.org/expert/22987 -https://www.oceanexpert.org/expert/22989 -https://www.oceanexpert.org/expert/22991 -https://www.oceanexpert.org/expert/22992 -https://www.oceanexpert.org/expert/22993 -https://www.oceanexpert.org/expert/22999 -https://www.oceanexpert.org/expert/23001 -https://www.oceanexpert.org/expert/23003 -https://www.oceanexpert.org/expert/23004 -https://www.oceanexpert.org/expert/23005 -https://www.oceanexpert.org/expert/23006 -https://www.oceanexpert.org/expert/23009 -https://www.oceanexpert.org/expert/23010 -https://www.oceanexpert.org/expert/23013 -https://www.oceanexpert.org/expert/23014 -https://www.oceanexpert.org/expert/23015 -https://www.oceanexpert.org/expert/23016 -https://www.oceanexpert.org/expert/23017 -https://www.oceanexpert.org/expert/23018 -https://www.oceanexpert.org/expert/23020 -https://www.oceanexpert.org/expert/23021 -https://www.oceanexpert.org/expert/23024 -https://www.oceanexpert.org/expert/23025 -https://www.oceanexpert.org/expert/23026 -https://www.oceanexpert.org/expert/23027 -https://www.oceanexpert.org/expert/23028 -https://www.oceanexpert.org/expert/23029 -https://www.oceanexpert.org/expert/23031 -https://www.oceanexpert.org/expert/23033 -https://www.oceanexpert.org/expert/23034 -https://www.oceanexpert.org/expert/23035 -https://www.oceanexpert.org/expert/23036 -https://www.oceanexpert.org/expert/23037 -https://www.oceanexpert.org/expert/23039 -https://www.oceanexpert.org/expert/23040 -https://www.oceanexpert.org/expert/23041 -https://www.oceanexpert.org/expert/23042 -https://www.oceanexpert.org/expert/23043 -https://www.oceanexpert.org/expert/23044 -https://www.oceanexpert.org/expert/23045 -https://www.oceanexpert.org/expert/23046 -https://www.oceanexpert.org/expert/23047 -https://www.oceanexpert.org/expert/23050 -https://www.oceanexpert.org/expert/23051 -https://www.oceanexpert.org/expert/23054 -https://www.oceanexpert.org/expert/23057 -https://www.oceanexpert.org/expert/23058 -https://www.oceanexpert.org/expert/23059 -https://www.oceanexpert.org/expert/23060 -https://www.oceanexpert.org/expert/23061 -https://www.oceanexpert.org/expert/23062 -https://www.oceanexpert.org/expert/23066 -https://www.oceanexpert.org/expert/23067 -https://www.oceanexpert.org/expert/23069 -https://www.oceanexpert.org/expert/23073 -https://www.oceanexpert.org/expert/23074 -https://www.oceanexpert.org/expert/23078 -https://www.oceanexpert.org/expert/23084 -https://www.oceanexpert.org/expert/23086 -https://www.oceanexpert.org/expert/23087 -https://www.oceanexpert.org/expert/23089 -https://www.oceanexpert.org/expert/23090 -https://www.oceanexpert.org/expert/23093 -https://www.oceanexpert.org/expert/23097 -https://www.oceanexpert.org/expert/23099 -https://www.oceanexpert.org/expert/23103 -https://www.oceanexpert.org/expert/23105 -https://www.oceanexpert.org/expert/23109 -https://www.oceanexpert.org/expert/23112 -https://www.oceanexpert.org/expert/23114 -https://www.oceanexpert.org/expert/23117 -https://www.oceanexpert.org/expert/23118 -https://www.oceanexpert.org/expert/23120 -https://www.oceanexpert.org/expert/23121 -https://www.oceanexpert.org/expert/23123 -https://www.oceanexpert.org/expert/23124 -https://www.oceanexpert.org/expert/23125 -https://www.oceanexpert.org/expert/23126 -https://www.oceanexpert.org/expert/23127 -https://www.oceanexpert.org/expert/23128 -https://www.oceanexpert.org/expert/23130 -https://www.oceanexpert.org/expert/23131 -https://www.oceanexpert.org/expert/23132 -https://www.oceanexpert.org/expert/23133 -https://www.oceanexpert.org/expert/23138 -https://www.oceanexpert.org/expert/23140 -https://www.oceanexpert.org/expert/23141 -https://www.oceanexpert.org/expert/23142 -https://www.oceanexpert.org/expert/23148 -https://www.oceanexpert.org/expert/23150 -https://www.oceanexpert.org/expert/23151 -https://www.oceanexpert.org/expert/23154 -https://www.oceanexpert.org/expert/23155 -https://www.oceanexpert.org/expert/23157 -https://www.oceanexpert.org/expert/23161 -https://www.oceanexpert.org/expert/23167 -https://www.oceanexpert.org/expert/23168 -https://www.oceanexpert.org/expert/23169 -https://www.oceanexpert.org/expert/23172 -https://www.oceanexpert.org/expert/23178 -https://www.oceanexpert.org/expert/23181 -https://www.oceanexpert.org/expert/23183 -https://www.oceanexpert.org/expert/23184 -https://www.oceanexpert.org/expert/23185 -https://www.oceanexpert.org/expert/23187 -https://www.oceanexpert.org/expert/23188 -https://www.oceanexpert.org/expert/23190 -https://www.oceanexpert.org/expert/23191 -https://www.oceanexpert.org/expert/23192 -https://www.oceanexpert.org/expert/23194 -https://www.oceanexpert.org/expert/23195 -https://www.oceanexpert.org/expert/23197 -https://www.oceanexpert.org/expert/23198 -https://www.oceanexpert.org/expert/23199 -https://www.oceanexpert.org/expert/23200 -https://www.oceanexpert.org/expert/23201 -https://www.oceanexpert.org/expert/23203 -https://www.oceanexpert.org/expert/23204 -https://www.oceanexpert.org/expert/23205 -https://www.oceanexpert.org/expert/23207 -https://www.oceanexpert.org/expert/23210 -https://www.oceanexpert.org/expert/23214 -https://www.oceanexpert.org/expert/23215 -https://www.oceanexpert.org/expert/23216 -https://www.oceanexpert.org/expert/23217 -https://www.oceanexpert.org/expert/23218 -https://www.oceanexpert.org/expert/23219 -https://www.oceanexpert.org/expert/23221 -https://www.oceanexpert.org/expert/23223 -https://www.oceanexpert.org/expert/23227 -https://www.oceanexpert.org/expert/23229 -https://www.oceanexpert.org/expert/23235 -https://www.oceanexpert.org/expert/23237 -https://www.oceanexpert.org/expert/23238 -https://www.oceanexpert.org/expert/23239 -https://www.oceanexpert.org/expert/23242 -https://www.oceanexpert.org/expert/23243 -https://www.oceanexpert.org/expert/23244 -https://www.oceanexpert.org/expert/23245 -https://www.oceanexpert.org/expert/23246 -https://www.oceanexpert.org/expert/23249 -https://www.oceanexpert.org/expert/23250 -https://www.oceanexpert.org/expert/23252 -https://www.oceanexpert.org/expert/23255 -https://www.oceanexpert.org/expert/23256 -https://www.oceanexpert.org/expert/23257 -https://www.oceanexpert.org/expert/23258 -https://www.oceanexpert.org/expert/23259 -https://www.oceanexpert.org/expert/23260 -https://www.oceanexpert.org/expert/23261 -https://www.oceanexpert.org/expert/23263 -https://www.oceanexpert.org/expert/23264 -https://www.oceanexpert.org/expert/23266 -https://www.oceanexpert.org/expert/23269 -https://www.oceanexpert.org/expert/23271 -https://www.oceanexpert.org/expert/23272 -https://www.oceanexpert.org/expert/23274 -https://www.oceanexpert.org/expert/23275 -https://www.oceanexpert.org/expert/23277 -https://www.oceanexpert.org/expert/23279 -https://www.oceanexpert.org/expert/23281 -https://www.oceanexpert.org/expert/23282 -https://www.oceanexpert.org/expert/23286 -https://www.oceanexpert.org/expert/23287 -https://www.oceanexpert.org/expert/23288 -https://www.oceanexpert.org/expert/23289 -https://www.oceanexpert.org/expert/23290 -https://www.oceanexpert.org/expert/23291 -https://www.oceanexpert.org/expert/23292 -https://www.oceanexpert.org/expert/23296 -https://www.oceanexpert.org/expert/23297 -https://www.oceanexpert.org/expert/23298 -https://www.oceanexpert.org/expert/23300 -https://www.oceanexpert.org/expert/23301 -https://www.oceanexpert.org/expert/23302 -https://www.oceanexpert.org/expert/23303 -https://www.oceanexpert.org/expert/23305 -https://www.oceanexpert.org/expert/23306 -https://www.oceanexpert.org/expert/23307 -https://www.oceanexpert.org/expert/23308 -https://www.oceanexpert.org/expert/23309 -https://www.oceanexpert.org/expert/23310 -https://www.oceanexpert.org/expert/23311 -https://www.oceanexpert.org/expert/23312 -https://www.oceanexpert.org/expert/23314 -https://www.oceanexpert.org/expert/23316 -https://www.oceanexpert.org/expert/23317 -https://www.oceanexpert.org/expert/23318 -https://www.oceanexpert.org/expert/23319 -https://www.oceanexpert.org/expert/23321 -https://www.oceanexpert.org/expert/23322 -https://www.oceanexpert.org/expert/23324 -https://www.oceanexpert.org/expert/23325 -https://www.oceanexpert.org/expert/23326 -https://www.oceanexpert.org/expert/23330 -https://www.oceanexpert.org/expert/23331 -https://www.oceanexpert.org/expert/23332 -https://www.oceanexpert.org/expert/23334 -https://www.oceanexpert.org/expert/23336 -https://www.oceanexpert.org/expert/23337 -https://www.oceanexpert.org/expert/23342 -https://www.oceanexpert.org/expert/23344 -https://www.oceanexpert.org/expert/23351 -https://www.oceanexpert.org/expert/23352 -https://www.oceanexpert.org/expert/23357 -https://www.oceanexpert.org/expert/23358 -https://www.oceanexpert.org/expert/23360 -https://www.oceanexpert.org/expert/23361 -https://www.oceanexpert.org/expert/23362 -https://www.oceanexpert.org/expert/23363 -https://www.oceanexpert.org/expert/23364 -https://www.oceanexpert.org/expert/23367 -https://www.oceanexpert.org/expert/23370 -https://www.oceanexpert.org/expert/23371 -https://www.oceanexpert.org/expert/23372 -https://www.oceanexpert.org/expert/23375 -https://www.oceanexpert.org/expert/23376 -https://www.oceanexpert.org/expert/23381 -https://www.oceanexpert.org/expert/23383 -https://www.oceanexpert.org/expert/23384 -https://www.oceanexpert.org/expert/23385 -https://www.oceanexpert.org/expert/23386 -https://www.oceanexpert.org/expert/23387 -https://www.oceanexpert.org/expert/23389 -https://www.oceanexpert.org/expert/23390 -https://www.oceanexpert.org/expert/23391 -https://www.oceanexpert.org/expert/23393 -https://www.oceanexpert.org/expert/23394 -https://www.oceanexpert.org/expert/23395 -https://www.oceanexpert.org/expert/23396 -https://www.oceanexpert.org/expert/23397 -https://www.oceanexpert.org/expert/23400 -https://www.oceanexpert.org/expert/23402 -https://www.oceanexpert.org/expert/23403 -https://www.oceanexpert.org/expert/23405 -https://www.oceanexpert.org/expert/23408 -https://www.oceanexpert.org/expert/23409 -https://www.oceanexpert.org/expert/23410 -https://www.oceanexpert.org/expert/23411 -https://www.oceanexpert.org/expert/23412 -https://www.oceanexpert.org/expert/23413 -https://www.oceanexpert.org/expert/23414 -https://www.oceanexpert.org/expert/23416 -https://www.oceanexpert.org/expert/23417 -https://www.oceanexpert.org/expert/23418 -https://www.oceanexpert.org/expert/23419 -https://www.oceanexpert.org/expert/23420 -https://www.oceanexpert.org/expert/23421 -https://www.oceanexpert.org/expert/23422 -https://www.oceanexpert.org/expert/23423 -https://www.oceanexpert.org/expert/23424 -https://www.oceanexpert.org/expert/23426 -https://www.oceanexpert.org/expert/23427 -https://www.oceanexpert.org/expert/23429 -https://www.oceanexpert.org/expert/23430 -https://www.oceanexpert.org/expert/23431 -https://www.oceanexpert.org/expert/23433 -https://www.oceanexpert.org/expert/23434 -https://www.oceanexpert.org/expert/23435 -https://www.oceanexpert.org/expert/23436 -https://www.oceanexpert.org/expert/23439 -https://www.oceanexpert.org/expert/23442 -https://www.oceanexpert.org/expert/23444 -https://www.oceanexpert.org/expert/23445 -https://www.oceanexpert.org/expert/23448 -https://www.oceanexpert.org/expert/23449 -https://www.oceanexpert.org/expert/23450 -https://www.oceanexpert.org/expert/23451 -https://www.oceanexpert.org/expert/23452 -https://www.oceanexpert.org/expert/23454 -https://www.oceanexpert.org/expert/23455 -https://www.oceanexpert.org/expert/23456 -https://www.oceanexpert.org/expert/23460 -https://www.oceanexpert.org/expert/23461 -https://www.oceanexpert.org/expert/23462 -https://www.oceanexpert.org/expert/23464 -https://www.oceanexpert.org/expert/23466 -https://www.oceanexpert.org/expert/23467 -https://www.oceanexpert.org/expert/23468 -https://www.oceanexpert.org/expert/23469 -https://www.oceanexpert.org/expert/23470 -https://www.oceanexpert.org/expert/23473 -https://www.oceanexpert.org/expert/23474 -https://www.oceanexpert.org/expert/23475 -https://www.oceanexpert.org/expert/23476 -https://www.oceanexpert.org/expert/23477 -https://www.oceanexpert.org/expert/23478 -https://www.oceanexpert.org/expert/23479 -https://www.oceanexpert.org/expert/23480 -https://www.oceanexpert.org/expert/23481 -https://www.oceanexpert.org/expert/23482 -https://www.oceanexpert.org/expert/23483 -https://www.oceanexpert.org/expert/23484 -https://www.oceanexpert.org/expert/23485 -https://www.oceanexpert.org/expert/23487 -https://www.oceanexpert.org/expert/23491 -https://www.oceanexpert.org/expert/23497 -https://www.oceanexpert.org/expert/23499 -https://www.oceanexpert.org/expert/23500 -https://www.oceanexpert.org/expert/23503 -https://www.oceanexpert.org/expert/23504 -https://www.oceanexpert.org/expert/23506 -https://www.oceanexpert.org/expert/23507 -https://www.oceanexpert.org/expert/23509 -https://www.oceanexpert.org/expert/23510 -https://www.oceanexpert.org/expert/23511 -https://www.oceanexpert.org/expert/23512 -https://www.oceanexpert.org/expert/23517 -https://www.oceanexpert.org/expert/23519 -https://www.oceanexpert.org/expert/23520 -https://www.oceanexpert.org/expert/23521 -https://www.oceanexpert.org/expert/23522 -https://www.oceanexpert.org/expert/23524 -https://www.oceanexpert.org/expert/23525 -https://www.oceanexpert.org/expert/23527 -https://www.oceanexpert.org/expert/23528 -https://www.oceanexpert.org/expert/23530 -https://www.oceanexpert.org/expert/23531 -https://www.oceanexpert.org/expert/23532 -https://www.oceanexpert.org/expert/23533 -https://www.oceanexpert.org/expert/23535 -https://www.oceanexpert.org/expert/23536 -https://www.oceanexpert.org/expert/23537 -https://www.oceanexpert.org/expert/23538 -https://www.oceanexpert.org/expert/23540 -https://www.oceanexpert.org/expert/23541 -https://www.oceanexpert.org/expert/23542 -https://www.oceanexpert.org/expert/23547 -https://www.oceanexpert.org/expert/23549 -https://www.oceanexpert.org/expert/23550 -https://www.oceanexpert.org/expert/23551 -https://www.oceanexpert.org/expert/23556 -https://www.oceanexpert.org/expert/23557 -https://www.oceanexpert.org/expert/23559 -https://www.oceanexpert.org/expert/23560 -https://www.oceanexpert.org/expert/23561 -https://www.oceanexpert.org/expert/23562 -https://www.oceanexpert.org/expert/23563 -https://www.oceanexpert.org/expert/23566 -https://www.oceanexpert.org/expert/23568 -https://www.oceanexpert.org/expert/23569 -https://www.oceanexpert.org/expert/23570 -https://www.oceanexpert.org/expert/23572 -https://www.oceanexpert.org/expert/23573 -https://www.oceanexpert.org/expert/23574 -https://www.oceanexpert.org/expert/23576 -https://www.oceanexpert.org/expert/23577 -https://www.oceanexpert.org/expert/23578 -https://www.oceanexpert.org/expert/23580 -https://www.oceanexpert.org/expert/23582 -https://www.oceanexpert.org/expert/23583 -https://www.oceanexpert.org/expert/23585 -https://www.oceanexpert.org/expert/23586 -https://www.oceanexpert.org/expert/23587 -https://www.oceanexpert.org/expert/23588 -https://www.oceanexpert.org/expert/23589 -https://www.oceanexpert.org/expert/23591 -https://www.oceanexpert.org/expert/23592 -https://www.oceanexpert.org/expert/23593 -https://www.oceanexpert.org/expert/23594 -https://www.oceanexpert.org/expert/23595 -https://www.oceanexpert.org/expert/23599 -https://www.oceanexpert.org/expert/23600 -https://www.oceanexpert.org/expert/23601 -https://www.oceanexpert.org/expert/23602 -https://www.oceanexpert.org/expert/23603 -https://www.oceanexpert.org/expert/23604 -https://www.oceanexpert.org/expert/23605 -https://www.oceanexpert.org/expert/23606 -https://www.oceanexpert.org/expert/23608 -https://www.oceanexpert.org/expert/23609 -https://www.oceanexpert.org/expert/23613 -https://www.oceanexpert.org/expert/23615 -https://www.oceanexpert.org/expert/23616 -https://www.oceanexpert.org/expert/23618 -https://www.oceanexpert.org/expert/23619 -https://www.oceanexpert.org/expert/23620 -https://www.oceanexpert.org/expert/23621 -https://www.oceanexpert.org/expert/23622 -https://www.oceanexpert.org/expert/23623 -https://www.oceanexpert.org/expert/23625 -https://www.oceanexpert.org/expert/23626 -https://www.oceanexpert.org/expert/23627 -https://www.oceanexpert.org/expert/23629 -https://www.oceanexpert.org/expert/23630 -https://www.oceanexpert.org/expert/23631 -https://www.oceanexpert.org/expert/23632 -https://www.oceanexpert.org/expert/23637 -https://www.oceanexpert.org/expert/23638 -https://www.oceanexpert.org/expert/23639 -https://www.oceanexpert.org/expert/23640 -https://www.oceanexpert.org/expert/23641 -https://www.oceanexpert.org/expert/23642 -https://www.oceanexpert.org/expert/23644 -https://www.oceanexpert.org/expert/23645 -https://www.oceanexpert.org/expert/23647 -https://www.oceanexpert.org/expert/23649 -https://www.oceanexpert.org/expert/23651 -https://www.oceanexpert.org/expert/23652 -https://www.oceanexpert.org/expert/23653 -https://www.oceanexpert.org/expert/23654 -https://www.oceanexpert.org/expert/23655 -https://www.oceanexpert.org/expert/23656 -https://www.oceanexpert.org/expert/23657 -https://www.oceanexpert.org/expert/23659 -https://www.oceanexpert.org/expert/23661 -https://www.oceanexpert.org/expert/23662 -https://www.oceanexpert.org/expert/23663 -https://www.oceanexpert.org/expert/23664 -https://www.oceanexpert.org/expert/23665 -https://www.oceanexpert.org/expert/23666 -https://www.oceanexpert.org/expert/23668 -https://www.oceanexpert.org/expert/23673 -https://www.oceanexpert.org/expert/23674 -https://www.oceanexpert.org/expert/23675 -https://www.oceanexpert.org/expert/23676 -https://www.oceanexpert.org/expert/23677 -https://www.oceanexpert.org/expert/23679 -https://www.oceanexpert.org/expert/23680 -https://www.oceanexpert.org/expert/23685 -https://www.oceanexpert.org/expert/23686 -https://www.oceanexpert.org/expert/23689 -https://www.oceanexpert.org/expert/23692 -https://www.oceanexpert.org/expert/23694 -https://www.oceanexpert.org/expert/23696 -https://www.oceanexpert.org/expert/23698 -https://www.oceanexpert.org/expert/23706 -https://www.oceanexpert.org/expert/23707 -https://www.oceanexpert.org/expert/23708 -https://www.oceanexpert.org/expert/23709 -https://www.oceanexpert.org/expert/23711 -https://www.oceanexpert.org/expert/23712 -https://www.oceanexpert.org/expert/23713 -https://www.oceanexpert.org/expert/23714 -https://www.oceanexpert.org/expert/23715 -https://www.oceanexpert.org/expert/23716 -https://www.oceanexpert.org/expert/23722 -https://www.oceanexpert.org/expert/23724 -https://www.oceanexpert.org/expert/23725 -https://www.oceanexpert.org/expert/23726 -https://www.oceanexpert.org/expert/23729 -https://www.oceanexpert.org/expert/23730 -https://www.oceanexpert.org/expert/23731 -https://www.oceanexpert.org/expert/23732 -https://www.oceanexpert.org/expert/23733 -https://www.oceanexpert.org/expert/23734 -https://www.oceanexpert.org/expert/23737 -https://www.oceanexpert.org/expert/23739 -https://www.oceanexpert.org/expert/23741 -https://www.oceanexpert.org/expert/23742 -https://www.oceanexpert.org/expert/23743 -https://www.oceanexpert.org/expert/23744 -https://www.oceanexpert.org/expert/23745 -https://www.oceanexpert.org/expert/23746 -https://www.oceanexpert.org/expert/23747 -https://www.oceanexpert.org/expert/23748 -https://www.oceanexpert.org/expert/23751 -https://www.oceanexpert.org/expert/23753 -https://www.oceanexpert.org/expert/23754 -https://www.oceanexpert.org/expert/23756 -https://www.oceanexpert.org/expert/23757 -https://www.oceanexpert.org/expert/23761 -https://www.oceanexpert.org/expert/23762 -https://www.oceanexpert.org/expert/23763 -https://www.oceanexpert.org/expert/23764 -https://www.oceanexpert.org/expert/23769 -https://www.oceanexpert.org/expert/23770 -https://www.oceanexpert.org/expert/23771 -https://www.oceanexpert.org/expert/23773 -https://www.oceanexpert.org/expert/23774 -https://www.oceanexpert.org/expert/23775 -https://www.oceanexpert.org/expert/23776 -https://www.oceanexpert.org/expert/23777 -https://www.oceanexpert.org/expert/23778 -https://www.oceanexpert.org/expert/23779 -https://www.oceanexpert.org/expert/23780 -https://www.oceanexpert.org/expert/23781 -https://www.oceanexpert.org/expert/23782 -https://www.oceanexpert.org/expert/23783 -https://www.oceanexpert.org/expert/23784 -https://www.oceanexpert.org/expert/23785 -https://www.oceanexpert.org/expert/23786 -https://www.oceanexpert.org/expert/23787 -https://www.oceanexpert.org/expert/23788 -https://www.oceanexpert.org/expert/23789 -https://www.oceanexpert.org/expert/23790 -https://www.oceanexpert.org/expert/23792 -https://www.oceanexpert.org/expert/23794 -https://www.oceanexpert.org/expert/23795 -https://www.oceanexpert.org/expert/23796 -https://www.oceanexpert.org/expert/23797 -https://www.oceanexpert.org/expert/23798 -https://www.oceanexpert.org/expert/23800 -https://www.oceanexpert.org/expert/23803 -https://www.oceanexpert.org/expert/23804 -https://www.oceanexpert.org/expert/23805 -https://www.oceanexpert.org/expert/23806 -https://www.oceanexpert.org/expert/23807 -https://www.oceanexpert.org/expert/23810 -https://www.oceanexpert.org/expert/23811 -https://www.oceanexpert.org/expert/23813 -https://www.oceanexpert.org/expert/23814 -https://www.oceanexpert.org/expert/23815 -https://www.oceanexpert.org/expert/23816 -https://www.oceanexpert.org/expert/23817 -https://www.oceanexpert.org/expert/23818 -https://www.oceanexpert.org/expert/23819 -https://www.oceanexpert.org/expert/23820 -https://www.oceanexpert.org/expert/23821 -https://www.oceanexpert.org/expert/23822 -https://www.oceanexpert.org/expert/23824 -https://www.oceanexpert.org/expert/23826 -https://www.oceanexpert.org/expert/23830 -https://www.oceanexpert.org/expert/23833 -https://www.oceanexpert.org/expert/23835 -https://www.oceanexpert.org/expert/23836 -https://www.oceanexpert.org/expert/23844 -https://www.oceanexpert.org/expert/23848 -https://www.oceanexpert.org/expert/23850 -https://www.oceanexpert.org/expert/23851 -https://www.oceanexpert.org/expert/23852 -https://www.oceanexpert.org/expert/23853 -https://www.oceanexpert.org/expert/23856 -https://www.oceanexpert.org/expert/23858 -https://www.oceanexpert.org/expert/23860 -https://www.oceanexpert.org/expert/23861 -https://www.oceanexpert.org/expert/23862 -https://www.oceanexpert.org/expert/23863 -https://www.oceanexpert.org/expert/23866 -https://www.oceanexpert.org/expert/23869 -https://www.oceanexpert.org/expert/23872 -https://www.oceanexpert.org/expert/23873 -https://www.oceanexpert.org/expert/23874 -https://www.oceanexpert.org/expert/23875 -https://www.oceanexpert.org/expert/23877 -https://www.oceanexpert.org/expert/23878 -https://www.oceanexpert.org/expert/23880 -https://www.oceanexpert.org/expert/23882 -https://www.oceanexpert.org/expert/23883 -https://www.oceanexpert.org/expert/23886 -https://www.oceanexpert.org/expert/23888 -https://www.oceanexpert.org/expert/23890 -https://www.oceanexpert.org/expert/23892 -https://www.oceanexpert.org/expert/23893 -https://www.oceanexpert.org/expert/23895 -https://www.oceanexpert.org/expert/23897 -https://www.oceanexpert.org/expert/23898 -https://www.oceanexpert.org/expert/23899 -https://www.oceanexpert.org/expert/23900 -https://www.oceanexpert.org/expert/23901 -https://www.oceanexpert.org/expert/23903 -https://www.oceanexpert.org/expert/23904 -https://www.oceanexpert.org/expert/23905 -https://www.oceanexpert.org/expert/23907 -https://www.oceanexpert.org/expert/23908 -https://www.oceanexpert.org/expert/23910 -https://www.oceanexpert.org/expert/23911 -https://www.oceanexpert.org/expert/23912 -https://www.oceanexpert.org/expert/23913 -https://www.oceanexpert.org/expert/23914 -https://www.oceanexpert.org/expert/23915 -https://www.oceanexpert.org/expert/23916 -https://www.oceanexpert.org/expert/23917 -https://www.oceanexpert.org/expert/23918 -https://www.oceanexpert.org/expert/23920 -https://www.oceanexpert.org/expert/23921 -https://www.oceanexpert.org/expert/23922 -https://www.oceanexpert.org/expert/23923 -https://www.oceanexpert.org/expert/23924 -https://www.oceanexpert.org/expert/23927 -https://www.oceanexpert.org/expert/23928 -https://www.oceanexpert.org/expert/23930 -https://www.oceanexpert.org/expert/23931 -https://www.oceanexpert.org/expert/23932 -https://www.oceanexpert.org/expert/23933 -https://www.oceanexpert.org/expert/23934 -https://www.oceanexpert.org/expert/23935 -https://www.oceanexpert.org/expert/23936 -https://www.oceanexpert.org/expert/23937 -https://www.oceanexpert.org/expert/23939 -https://www.oceanexpert.org/expert/23941 -https://www.oceanexpert.org/expert/23942 -https://www.oceanexpert.org/expert/23943 -https://www.oceanexpert.org/expert/23944 -https://www.oceanexpert.org/expert/23947 -https://www.oceanexpert.org/expert/23949 -https://www.oceanexpert.org/expert/23950 -https://www.oceanexpert.org/expert/23951 -https://www.oceanexpert.org/expert/23952 -https://www.oceanexpert.org/expert/23953 -https://www.oceanexpert.org/expert/23954 -https://www.oceanexpert.org/expert/23958 -https://www.oceanexpert.org/expert/23959 -https://www.oceanexpert.org/expert/23960 -https://www.oceanexpert.org/expert/23962 -https://www.oceanexpert.org/expert/23963 -https://www.oceanexpert.org/expert/23964 -https://www.oceanexpert.org/expert/23966 -https://www.oceanexpert.org/expert/23967 -https://www.oceanexpert.org/expert/23968 -https://www.oceanexpert.org/expert/23969 -https://www.oceanexpert.org/expert/23970 -https://www.oceanexpert.org/expert/23972 -https://www.oceanexpert.org/expert/23975 -https://www.oceanexpert.org/expert/23976 -https://www.oceanexpert.org/expert/23980 -https://www.oceanexpert.org/expert/23981 -https://www.oceanexpert.org/expert/23982 -https://www.oceanexpert.org/expert/23983 -https://www.oceanexpert.org/expert/23984 -https://www.oceanexpert.org/expert/23985 -https://www.oceanexpert.org/expert/23987 -https://www.oceanexpert.org/expert/23989 -https://www.oceanexpert.org/expert/23990 -https://www.oceanexpert.org/expert/23992 -https://www.oceanexpert.org/expert/23993 -https://www.oceanexpert.org/expert/23995 -https://www.oceanexpert.org/expert/23998 -https://www.oceanexpert.org/expert/23999 -https://www.oceanexpert.org/expert/24000 -https://www.oceanexpert.org/expert/24001 -https://www.oceanexpert.org/expert/24002 -https://www.oceanexpert.org/expert/24003 -https://www.oceanexpert.org/expert/24005 -https://www.oceanexpert.org/expert/24006 -https://www.oceanexpert.org/expert/24007 -https://www.oceanexpert.org/expert/24008 -https://www.oceanexpert.org/expert/24009 -https://www.oceanexpert.org/expert/24010 -https://www.oceanexpert.org/expert/24011 -https://www.oceanexpert.org/expert/24012 -https://www.oceanexpert.org/expert/24014 -https://www.oceanexpert.org/expert/24016 -https://www.oceanexpert.org/expert/24017 -https://www.oceanexpert.org/expert/24018 -https://www.oceanexpert.org/expert/24019 -https://www.oceanexpert.org/expert/24020 -https://www.oceanexpert.org/expert/24021 -https://www.oceanexpert.org/expert/24023 -https://www.oceanexpert.org/expert/24024 -https://www.oceanexpert.org/expert/24025 -https://www.oceanexpert.org/expert/24027 -https://www.oceanexpert.org/expert/24028 -https://www.oceanexpert.org/expert/24029 -https://www.oceanexpert.org/expert/24030 -https://www.oceanexpert.org/expert/24031 -https://www.oceanexpert.org/expert/24032 -https://www.oceanexpert.org/expert/24033 -https://www.oceanexpert.org/expert/24035 -https://www.oceanexpert.org/expert/24036 -https://www.oceanexpert.org/expert/24037 -https://www.oceanexpert.org/expert/24038 -https://www.oceanexpert.org/expert/24039 -https://www.oceanexpert.org/expert/24040 -https://www.oceanexpert.org/expert/24041 -https://www.oceanexpert.org/expert/24043 -https://www.oceanexpert.org/expert/24044 -https://www.oceanexpert.org/expert/24045 -https://www.oceanexpert.org/expert/24047 -https://www.oceanexpert.org/expert/24049 -https://www.oceanexpert.org/expert/24050 -https://www.oceanexpert.org/expert/24051 -https://www.oceanexpert.org/expert/24053 -https://www.oceanexpert.org/expert/24054 -https://www.oceanexpert.org/expert/24055 -https://www.oceanexpert.org/expert/24057 -https://www.oceanexpert.org/expert/24058 -https://www.oceanexpert.org/expert/24059 -https://www.oceanexpert.org/expert/24060 -https://www.oceanexpert.org/expert/24061 -https://www.oceanexpert.org/expert/24062 -https://www.oceanexpert.org/expert/24064 -https://www.oceanexpert.org/expert/24065 -https://www.oceanexpert.org/expert/24067 -https://www.oceanexpert.org/expert/24068 -https://www.oceanexpert.org/expert/24069 -https://www.oceanexpert.org/expert/24070 -https://www.oceanexpert.org/expert/24071 -https://www.oceanexpert.org/expert/24073 -https://www.oceanexpert.org/expert/24074 -https://www.oceanexpert.org/expert/24075 -https://www.oceanexpert.org/expert/24076 -https://www.oceanexpert.org/expert/24077 -https://www.oceanexpert.org/expert/24079 -https://www.oceanexpert.org/expert/24082 -https://www.oceanexpert.org/expert/24084 -https://www.oceanexpert.org/expert/24085 -https://www.oceanexpert.org/expert/24087 -https://www.oceanexpert.org/expert/24088 -https://www.oceanexpert.org/expert/24089 -https://www.oceanexpert.org/expert/24090 -https://www.oceanexpert.org/expert/24091 -https://www.oceanexpert.org/expert/24092 -https://www.oceanexpert.org/expert/24093 -https://www.oceanexpert.org/expert/24094 -https://www.oceanexpert.org/expert/24095 -https://www.oceanexpert.org/expert/24098 -https://www.oceanexpert.org/expert/24099 -https://www.oceanexpert.org/expert/24100 -https://www.oceanexpert.org/expert/24102 -https://www.oceanexpert.org/expert/24103 -https://www.oceanexpert.org/expert/24106 -https://www.oceanexpert.org/expert/24107 -https://www.oceanexpert.org/expert/24108 -https://www.oceanexpert.org/expert/24109 -https://www.oceanexpert.org/expert/24111 -https://www.oceanexpert.org/expert/24113 -https://www.oceanexpert.org/expert/24115 -https://www.oceanexpert.org/expert/24116 -https://www.oceanexpert.org/expert/24117 -https://www.oceanexpert.org/expert/24120 -https://www.oceanexpert.org/expert/24122 -https://www.oceanexpert.org/expert/24123 -https://www.oceanexpert.org/expert/24124 -https://www.oceanexpert.org/expert/24125 -https://www.oceanexpert.org/expert/24129 -https://www.oceanexpert.org/expert/24132 -https://www.oceanexpert.org/expert/24134 -https://www.oceanexpert.org/expert/24135 -https://www.oceanexpert.org/expert/24137 -https://www.oceanexpert.org/expert/24138 -https://www.oceanexpert.org/expert/24139 -https://www.oceanexpert.org/expert/24141 -https://www.oceanexpert.org/expert/24142 -https://www.oceanexpert.org/expert/24143 -https://www.oceanexpert.org/expert/24145 -https://www.oceanexpert.org/expert/24152 -https://www.oceanexpert.org/expert/24153 -https://www.oceanexpert.org/expert/24157 -https://www.oceanexpert.org/expert/24158 -https://www.oceanexpert.org/expert/24159 -https://www.oceanexpert.org/expert/24160 -https://www.oceanexpert.org/expert/24161 -https://www.oceanexpert.org/expert/24162 -https://www.oceanexpert.org/expert/24164 -https://www.oceanexpert.org/expert/24165 -https://www.oceanexpert.org/expert/24166 -https://www.oceanexpert.org/expert/24167 -https://www.oceanexpert.org/expert/24168 -https://www.oceanexpert.org/expert/24169 -https://www.oceanexpert.org/expert/24172 -https://www.oceanexpert.org/expert/24173 -https://www.oceanexpert.org/expert/24174 -https://www.oceanexpert.org/expert/24175 -https://www.oceanexpert.org/expert/24179 -https://www.oceanexpert.org/expert/24180 -https://www.oceanexpert.org/expert/24181 -https://www.oceanexpert.org/expert/24186 -https://www.oceanexpert.org/expert/24187 -https://www.oceanexpert.org/expert/24188 -https://www.oceanexpert.org/expert/24189 -https://www.oceanexpert.org/expert/24190 -https://www.oceanexpert.org/expert/24192 -https://www.oceanexpert.org/expert/24195 -https://www.oceanexpert.org/expert/24196 -https://www.oceanexpert.org/expert/24197 -https://www.oceanexpert.org/expert/24198 -https://www.oceanexpert.org/expert/24199 -https://www.oceanexpert.org/expert/24200 -https://www.oceanexpert.org/expert/24202 -https://www.oceanexpert.org/expert/24203 -https://www.oceanexpert.org/expert/24204 -https://www.oceanexpert.org/expert/24205 -https://www.oceanexpert.org/expert/24206 -https://www.oceanexpert.org/expert/24208 -https://www.oceanexpert.org/expert/24209 -https://www.oceanexpert.org/expert/24210 -https://www.oceanexpert.org/expert/24211 -https://www.oceanexpert.org/expert/24212 -https://www.oceanexpert.org/expert/24213 -https://www.oceanexpert.org/expert/24214 -https://www.oceanexpert.org/expert/24215 -https://www.oceanexpert.org/expert/24216 -https://www.oceanexpert.org/expert/24217 -https://www.oceanexpert.org/expert/24219 -https://www.oceanexpert.org/expert/24220 -https://www.oceanexpert.org/expert/24221 -https://www.oceanexpert.org/expert/24222 -https://www.oceanexpert.org/expert/24224 -https://www.oceanexpert.org/expert/24226 -https://www.oceanexpert.org/expert/24228 -https://www.oceanexpert.org/expert/24229 -https://www.oceanexpert.org/expert/24230 -https://www.oceanexpert.org/expert/24231 -https://www.oceanexpert.org/expert/24232 -https://www.oceanexpert.org/expert/24234 -https://www.oceanexpert.org/expert/24235 -https://www.oceanexpert.org/expert/24238 -https://www.oceanexpert.org/expert/24240 -https://www.oceanexpert.org/expert/24241 -https://www.oceanexpert.org/expert/24242 -https://www.oceanexpert.org/expert/24243 -https://www.oceanexpert.org/expert/24246 -https://www.oceanexpert.org/expert/24247 -https://www.oceanexpert.org/expert/24248 -https://www.oceanexpert.org/expert/24249 -https://www.oceanexpert.org/expert/24250 -https://www.oceanexpert.org/expert/24251 -https://www.oceanexpert.org/expert/24252 -https://www.oceanexpert.org/expert/24253 -https://www.oceanexpert.org/expert/24254 -https://www.oceanexpert.org/expert/24256 -https://www.oceanexpert.org/expert/24258 -https://www.oceanexpert.org/expert/24262 -https://www.oceanexpert.org/expert/24264 -https://www.oceanexpert.org/expert/24267 -https://www.oceanexpert.org/expert/24268 -https://www.oceanexpert.org/expert/24269 -https://www.oceanexpert.org/expert/24270 -https://www.oceanexpert.org/expert/24271 -https://www.oceanexpert.org/expert/24273 -https://www.oceanexpert.org/expert/24274 -https://www.oceanexpert.org/expert/24275 -https://www.oceanexpert.org/expert/24276 -https://www.oceanexpert.org/expert/24278 -https://www.oceanexpert.org/expert/24279 -https://www.oceanexpert.org/expert/24280 -https://www.oceanexpert.org/expert/24281 -https://www.oceanexpert.org/expert/24282 -https://www.oceanexpert.org/expert/24283 -https://www.oceanexpert.org/expert/24284 -https://www.oceanexpert.org/expert/24288 -https://www.oceanexpert.org/expert/24289 -https://www.oceanexpert.org/expert/24291 -https://www.oceanexpert.org/expert/24292 -https://www.oceanexpert.org/expert/24293 -https://www.oceanexpert.org/expert/24294 -https://www.oceanexpert.org/expert/24295 -https://www.oceanexpert.org/expert/24296 -https://www.oceanexpert.org/expert/24298 -https://www.oceanexpert.org/expert/24299 -https://www.oceanexpert.org/expert/24300 -https://www.oceanexpert.org/expert/24301 -https://www.oceanexpert.org/expert/24304 -https://www.oceanexpert.org/expert/24305 -https://www.oceanexpert.org/expert/24309 -https://www.oceanexpert.org/expert/24310 -https://www.oceanexpert.org/expert/24311 -https://www.oceanexpert.org/expert/24313 -https://www.oceanexpert.org/expert/24315 -https://www.oceanexpert.org/expert/24321 -https://www.oceanexpert.org/expert/24322 -https://www.oceanexpert.org/expert/24324 -https://www.oceanexpert.org/expert/24325 -https://www.oceanexpert.org/expert/24326 -https://www.oceanexpert.org/expert/24328 -https://www.oceanexpert.org/expert/24329 -https://www.oceanexpert.org/expert/24330 -https://www.oceanexpert.org/expert/24331 -https://www.oceanexpert.org/expert/24333 -https://www.oceanexpert.org/expert/24334 -https://www.oceanexpert.org/expert/24335 -https://www.oceanexpert.org/expert/24338 -https://www.oceanexpert.org/expert/24340 -https://www.oceanexpert.org/expert/24341 -https://www.oceanexpert.org/expert/24342 -https://www.oceanexpert.org/expert/24343 -https://www.oceanexpert.org/expert/24345 -https://www.oceanexpert.org/expert/24347 -https://www.oceanexpert.org/expert/24349 -https://www.oceanexpert.org/expert/24353 -https://www.oceanexpert.org/expert/24354 -https://www.oceanexpert.org/expert/24356 -https://www.oceanexpert.org/expert/24359 -https://www.oceanexpert.org/expert/24363 -https://www.oceanexpert.org/expert/24368 -https://www.oceanexpert.org/expert/24369 -https://www.oceanexpert.org/expert/24370 -https://www.oceanexpert.org/expert/24371 -https://www.oceanexpert.org/expert/24372 -https://www.oceanexpert.org/expert/24374 -https://www.oceanexpert.org/expert/24377 -https://www.oceanexpert.org/expert/24380 -https://www.oceanexpert.org/expert/24386 -https://www.oceanexpert.org/expert/24387 -https://www.oceanexpert.org/expert/24389 -https://www.oceanexpert.org/expert/24390 -https://www.oceanexpert.org/expert/24391 -https://www.oceanexpert.org/expert/24393 -https://www.oceanexpert.org/expert/24394 -https://www.oceanexpert.org/expert/24395 -https://www.oceanexpert.org/expert/24397 -https://www.oceanexpert.org/expert/24398 -https://www.oceanexpert.org/expert/24399 -https://www.oceanexpert.org/expert/24400 -https://www.oceanexpert.org/expert/24401 -https://www.oceanexpert.org/expert/24402 -https://www.oceanexpert.org/expert/24403 -https://www.oceanexpert.org/expert/24406 -https://www.oceanexpert.org/expert/24408 -https://www.oceanexpert.org/expert/24409 -https://www.oceanexpert.org/expert/24412 -https://www.oceanexpert.org/expert/24413 -https://www.oceanexpert.org/expert/24414 -https://www.oceanexpert.org/expert/24415 -https://www.oceanexpert.org/expert/24416 -https://www.oceanexpert.org/expert/24417 -https://www.oceanexpert.org/expert/24418 -https://www.oceanexpert.org/expert/24419 -https://www.oceanexpert.org/expert/24420 -https://www.oceanexpert.org/expert/24421 -https://www.oceanexpert.org/expert/24422 -https://www.oceanexpert.org/expert/24423 -https://www.oceanexpert.org/expert/24424 -https://www.oceanexpert.org/expert/24425 -https://www.oceanexpert.org/expert/24427 -https://www.oceanexpert.org/expert/24428 -https://www.oceanexpert.org/expert/24430 -https://www.oceanexpert.org/expert/24431 -https://www.oceanexpert.org/expert/24433 -https://www.oceanexpert.org/expert/24434 -https://www.oceanexpert.org/expert/24436 -https://www.oceanexpert.org/expert/24437 -https://www.oceanexpert.org/expert/24439 -https://www.oceanexpert.org/expert/24441 -https://www.oceanexpert.org/expert/24444 -https://www.oceanexpert.org/expert/24447 -https://www.oceanexpert.org/expert/24449 -https://www.oceanexpert.org/expert/24450 -https://www.oceanexpert.org/expert/24451 -https://www.oceanexpert.org/expert/24452 -https://www.oceanexpert.org/expert/24454 -https://www.oceanexpert.org/expert/24455 -https://www.oceanexpert.org/expert/24456 -https://www.oceanexpert.org/expert/24458 -https://www.oceanexpert.org/expert/24459 -https://www.oceanexpert.org/expert/24460 -https://www.oceanexpert.org/expert/24461 -https://www.oceanexpert.org/expert/24463 -https://www.oceanexpert.org/expert/24464 -https://www.oceanexpert.org/expert/24465 -https://www.oceanexpert.org/expert/24466 -https://www.oceanexpert.org/expert/24469 -https://www.oceanexpert.org/expert/24474 -https://www.oceanexpert.org/expert/24475 -https://www.oceanexpert.org/expert/24476 -https://www.oceanexpert.org/expert/24477 -https://www.oceanexpert.org/expert/24478 -https://www.oceanexpert.org/expert/24479 -https://www.oceanexpert.org/expert/24480 -https://www.oceanexpert.org/expert/24481 -https://www.oceanexpert.org/expert/24483 -https://www.oceanexpert.org/expert/24485 -https://www.oceanexpert.org/expert/24488 -https://www.oceanexpert.org/expert/24489 -https://www.oceanexpert.org/expert/24492 -https://www.oceanexpert.org/expert/24493 -https://www.oceanexpert.org/expert/24494 -https://www.oceanexpert.org/expert/24496 -https://www.oceanexpert.org/expert/24499 -https://www.oceanexpert.org/expert/24502 -https://www.oceanexpert.org/expert/24503 -https://www.oceanexpert.org/expert/24505 -https://www.oceanexpert.org/expert/24506 -https://www.oceanexpert.org/expert/24509 -https://www.oceanexpert.org/expert/24511 -https://www.oceanexpert.org/expert/24513 -https://www.oceanexpert.org/expert/24514 -https://www.oceanexpert.org/expert/24515 -https://www.oceanexpert.org/expert/24517 -https://www.oceanexpert.org/expert/24518 -https://www.oceanexpert.org/expert/24519 -https://www.oceanexpert.org/expert/24520 -https://www.oceanexpert.org/expert/24521 -https://www.oceanexpert.org/expert/24522 -https://www.oceanexpert.org/expert/24523 -https://www.oceanexpert.org/expert/24524 -https://www.oceanexpert.org/expert/24525 -https://www.oceanexpert.org/expert/24526 -https://www.oceanexpert.org/expert/24527 -https://www.oceanexpert.org/expert/24528 -https://www.oceanexpert.org/expert/24529 -https://www.oceanexpert.org/expert/24530 -https://www.oceanexpert.org/expert/24531 -https://www.oceanexpert.org/expert/24532 -https://www.oceanexpert.org/expert/24535 -https://www.oceanexpert.org/expert/24536 -https://www.oceanexpert.org/expert/24538 -https://www.oceanexpert.org/expert/24540 -https://www.oceanexpert.org/expert/24541 -https://www.oceanexpert.org/expert/24542 -https://www.oceanexpert.org/expert/24543 -https://www.oceanexpert.org/expert/24544 -https://www.oceanexpert.org/expert/24545 -https://www.oceanexpert.org/expert/24547 -https://www.oceanexpert.org/expert/24548 -https://www.oceanexpert.org/expert/24549 -https://www.oceanexpert.org/expert/24551 -https://www.oceanexpert.org/expert/24552 -https://www.oceanexpert.org/expert/24553 -https://www.oceanexpert.org/expert/24554 -https://www.oceanexpert.org/expert/24556 -https://www.oceanexpert.org/expert/24557 -https://www.oceanexpert.org/expert/24558 -https://www.oceanexpert.org/expert/24559 -https://www.oceanexpert.org/expert/24560 -https://www.oceanexpert.org/expert/24561 -https://www.oceanexpert.org/expert/24562 -https://www.oceanexpert.org/expert/24564 -https://www.oceanexpert.org/expert/24565 -https://www.oceanexpert.org/expert/24567 -https://www.oceanexpert.org/expert/24568 -https://www.oceanexpert.org/expert/24570 -https://www.oceanexpert.org/expert/24571 -https://www.oceanexpert.org/expert/24572 -https://www.oceanexpert.org/expert/24573 -https://www.oceanexpert.org/expert/24574 -https://www.oceanexpert.org/expert/24578 -https://www.oceanexpert.org/expert/24581 -https://www.oceanexpert.org/expert/24582 -https://www.oceanexpert.org/expert/24585 -https://www.oceanexpert.org/expert/24586 -https://www.oceanexpert.org/expert/24587 -https://www.oceanexpert.org/expert/24588 -https://www.oceanexpert.org/expert/24591 -https://www.oceanexpert.org/expert/24593 -https://www.oceanexpert.org/expert/24595 -https://www.oceanexpert.org/expert/24596 -https://www.oceanexpert.org/expert/24597 -https://www.oceanexpert.org/expert/24598 -https://www.oceanexpert.org/expert/24599 -https://www.oceanexpert.org/expert/24600 -https://www.oceanexpert.org/expert/24601 -https://www.oceanexpert.org/expert/24602 -https://www.oceanexpert.org/expert/24603 -https://www.oceanexpert.org/expert/24604 -https://www.oceanexpert.org/expert/24605 -https://www.oceanexpert.org/expert/24607 -https://www.oceanexpert.org/expert/24608 -https://www.oceanexpert.org/expert/24610 -https://www.oceanexpert.org/expert/24612 -https://www.oceanexpert.org/expert/24614 -https://www.oceanexpert.org/expert/24617 -https://www.oceanexpert.org/expert/24618 -https://www.oceanexpert.org/expert/24619 -https://www.oceanexpert.org/expert/24620 -https://www.oceanexpert.org/expert/24621 -https://www.oceanexpert.org/expert/24625 -https://www.oceanexpert.org/expert/24626 -https://www.oceanexpert.org/expert/24627 -https://www.oceanexpert.org/expert/24628 -https://www.oceanexpert.org/expert/24629 -https://www.oceanexpert.org/expert/24630 -https://www.oceanexpert.org/expert/24631 -https://www.oceanexpert.org/expert/24632 -https://www.oceanexpert.org/expert/24633 -https://www.oceanexpert.org/expert/24635 -https://www.oceanexpert.org/expert/24636 -https://www.oceanexpert.org/expert/24638 -https://www.oceanexpert.org/expert/24639 -https://www.oceanexpert.org/expert/24640 -https://www.oceanexpert.org/expert/24641 -https://www.oceanexpert.org/expert/24642 -https://www.oceanexpert.org/expert/24643 -https://www.oceanexpert.org/expert/24645 -https://www.oceanexpert.org/expert/24646 -https://www.oceanexpert.org/expert/24647 -https://www.oceanexpert.org/expert/24648 -https://www.oceanexpert.org/expert/24649 -https://www.oceanexpert.org/expert/24650 -https://www.oceanexpert.org/expert/24652 -https://www.oceanexpert.org/expert/24653 -https://www.oceanexpert.org/expert/24654 -https://www.oceanexpert.org/expert/24655 -https://www.oceanexpert.org/expert/24656 -https://www.oceanexpert.org/expert/24657 -https://www.oceanexpert.org/expert/24658 -https://www.oceanexpert.org/expert/24659 -https://www.oceanexpert.org/expert/24661 -https://www.oceanexpert.org/expert/24664 -https://www.oceanexpert.org/expert/24665 -https://www.oceanexpert.org/expert/24666 -https://www.oceanexpert.org/expert/24667 -https://www.oceanexpert.org/expert/24669 -https://www.oceanexpert.org/expert/24670 -https://www.oceanexpert.org/expert/24671 -https://www.oceanexpert.org/expert/24672 -https://www.oceanexpert.org/expert/24673 -https://www.oceanexpert.org/expert/24674 -https://www.oceanexpert.org/expert/24675 -https://www.oceanexpert.org/expert/24678 -https://www.oceanexpert.org/expert/24679 -https://www.oceanexpert.org/expert/24680 -https://www.oceanexpert.org/expert/24682 -https://www.oceanexpert.org/expert/24683 -https://www.oceanexpert.org/expert/24684 -https://www.oceanexpert.org/expert/24685 -https://www.oceanexpert.org/expert/24687 -https://www.oceanexpert.org/expert/24688 -https://www.oceanexpert.org/expert/24691 -https://www.oceanexpert.org/expert/24692 -https://www.oceanexpert.org/expert/24695 -https://www.oceanexpert.org/expert/24697 -https://www.oceanexpert.org/expert/24698 -https://www.oceanexpert.org/expert/24700 -https://www.oceanexpert.org/expert/24702 -https://www.oceanexpert.org/expert/24704 -https://www.oceanexpert.org/expert/24705 -https://www.oceanexpert.org/expert/24706 -https://www.oceanexpert.org/expert/24707 -https://www.oceanexpert.org/expert/24708 -https://www.oceanexpert.org/expert/24709 -https://www.oceanexpert.org/expert/24712 -https://www.oceanexpert.org/expert/24713 -https://www.oceanexpert.org/expert/24714 -https://www.oceanexpert.org/expert/24715 -https://www.oceanexpert.org/expert/24717 -https://www.oceanexpert.org/expert/24718 -https://www.oceanexpert.org/expert/24719 -https://www.oceanexpert.org/expert/24720 -https://www.oceanexpert.org/expert/24721 -https://www.oceanexpert.org/expert/24722 -https://www.oceanexpert.org/expert/24725 -https://www.oceanexpert.org/expert/24726 -https://www.oceanexpert.org/expert/24730 -https://www.oceanexpert.org/expert/24733 -https://www.oceanexpert.org/expert/24734 -https://www.oceanexpert.org/expert/24736 -https://www.oceanexpert.org/expert/24739 -https://www.oceanexpert.org/expert/24740 -https://www.oceanexpert.org/expert/24744 -https://www.oceanexpert.org/expert/24745 -https://www.oceanexpert.org/expert/24746 -https://www.oceanexpert.org/expert/24748 -https://www.oceanexpert.org/expert/24749 -https://www.oceanexpert.org/expert/24750 -https://www.oceanexpert.org/expert/24752 -https://www.oceanexpert.org/expert/24754 -https://www.oceanexpert.org/expert/24756 -https://www.oceanexpert.org/expert/24759 -https://www.oceanexpert.org/expert/24766 -https://www.oceanexpert.org/expert/24768 -https://www.oceanexpert.org/expert/24769 -https://www.oceanexpert.org/expert/24773 -https://www.oceanexpert.org/expert/24775 -https://www.oceanexpert.org/expert/24777 -https://www.oceanexpert.org/expert/24778 -https://www.oceanexpert.org/expert/24779 -https://www.oceanexpert.org/expert/24782 -https://www.oceanexpert.org/expert/24783 -https://www.oceanexpert.org/expert/24785 -https://www.oceanexpert.org/expert/24786 -https://www.oceanexpert.org/expert/24788 -https://www.oceanexpert.org/expert/24791 -https://www.oceanexpert.org/expert/24792 -https://www.oceanexpert.org/expert/24797 -https://www.oceanexpert.org/expert/24799 -https://www.oceanexpert.org/expert/24800 -https://www.oceanexpert.org/expert/24802 -https://www.oceanexpert.org/expert/24807 -https://www.oceanexpert.org/expert/24808 -https://www.oceanexpert.org/expert/24809 -https://www.oceanexpert.org/expert/24810 -https://www.oceanexpert.org/expert/24811 -https://www.oceanexpert.org/expert/24812 -https://www.oceanexpert.org/expert/24813 -https://www.oceanexpert.org/expert/24814 -https://www.oceanexpert.org/expert/24815 -https://www.oceanexpert.org/expert/24817 -https://www.oceanexpert.org/expert/24818 -https://www.oceanexpert.org/expert/24819 -https://www.oceanexpert.org/expert/24820 -https://www.oceanexpert.org/expert/24821 -https://www.oceanexpert.org/expert/24822 -https://www.oceanexpert.org/expert/24824 -https://www.oceanexpert.org/expert/24828 -https://www.oceanexpert.org/expert/24829 -https://www.oceanexpert.org/expert/24830 -https://www.oceanexpert.org/expert/24832 -https://www.oceanexpert.org/expert/24833 -https://www.oceanexpert.org/expert/24835 -https://www.oceanexpert.org/expert/24836 -https://www.oceanexpert.org/expert/24838 -https://www.oceanexpert.org/expert/24839 -https://www.oceanexpert.org/expert/24840 -https://www.oceanexpert.org/expert/24842 -https://www.oceanexpert.org/expert/24843 -https://www.oceanexpert.org/expert/24844 -https://www.oceanexpert.org/expert/24846 -https://www.oceanexpert.org/expert/24848 -https://www.oceanexpert.org/expert/24850 -https://www.oceanexpert.org/expert/24852 -https://www.oceanexpert.org/expert/24854 -https://www.oceanexpert.org/expert/24855 -https://www.oceanexpert.org/expert/24856 -https://www.oceanexpert.org/expert/24857 -https://www.oceanexpert.org/expert/24858 -https://www.oceanexpert.org/expert/24859 -https://www.oceanexpert.org/expert/24860 -https://www.oceanexpert.org/expert/24862 -https://www.oceanexpert.org/expert/24864 -https://www.oceanexpert.org/expert/24865 -https://www.oceanexpert.org/expert/24866 -https://www.oceanexpert.org/expert/24867 -https://www.oceanexpert.org/expert/24868 -https://www.oceanexpert.org/expert/24869 -https://www.oceanexpert.org/expert/24871 -https://www.oceanexpert.org/expert/24872 -https://www.oceanexpert.org/expert/24873 -https://www.oceanexpert.org/expert/24874 -https://www.oceanexpert.org/expert/24875 -https://www.oceanexpert.org/expert/24876 -https://www.oceanexpert.org/expert/24878 -https://www.oceanexpert.org/expert/24879 -https://www.oceanexpert.org/expert/24880 -https://www.oceanexpert.org/expert/24881 -https://www.oceanexpert.org/expert/24882 -https://www.oceanexpert.org/expert/24883 -https://www.oceanexpert.org/expert/24884 -https://www.oceanexpert.org/expert/24885 -https://www.oceanexpert.org/expert/24887 -https://www.oceanexpert.org/expert/24888 -https://www.oceanexpert.org/expert/24891 -https://www.oceanexpert.org/expert/24892 -https://www.oceanexpert.org/expert/24895 -https://www.oceanexpert.org/expert/24897 -https://www.oceanexpert.org/expert/24898 -https://www.oceanexpert.org/expert/24899 -https://www.oceanexpert.org/expert/24900 -https://www.oceanexpert.org/expert/24901 -https://www.oceanexpert.org/expert/24902 -https://www.oceanexpert.org/expert/24903 -https://www.oceanexpert.org/expert/24904 -https://www.oceanexpert.org/expert/24905 -https://www.oceanexpert.org/expert/24909 -https://www.oceanexpert.org/expert/24910 -https://www.oceanexpert.org/expert/24911 -https://www.oceanexpert.org/expert/24913 -https://www.oceanexpert.org/expert/24914 -https://www.oceanexpert.org/expert/24915 -https://www.oceanexpert.org/expert/24919 -https://www.oceanexpert.org/expert/24922 -https://www.oceanexpert.org/expert/24923 -https://www.oceanexpert.org/expert/24924 -https://www.oceanexpert.org/expert/24925 -https://www.oceanexpert.org/expert/24928 -https://www.oceanexpert.org/expert/24929 -https://www.oceanexpert.org/expert/24930 -https://www.oceanexpert.org/expert/24931 -https://www.oceanexpert.org/expert/24932 -https://www.oceanexpert.org/expert/24933 -https://www.oceanexpert.org/expert/24934 -https://www.oceanexpert.org/expert/24935 -https://www.oceanexpert.org/expert/24936 -https://www.oceanexpert.org/expert/24937 -https://www.oceanexpert.org/expert/24939 -https://www.oceanexpert.org/expert/24940 -https://www.oceanexpert.org/expert/24943 -https://www.oceanexpert.org/expert/24945 -https://www.oceanexpert.org/expert/24948 -https://www.oceanexpert.org/expert/24949 -https://www.oceanexpert.org/expert/24950 -https://www.oceanexpert.org/expert/24954 -https://www.oceanexpert.org/expert/24957 -https://www.oceanexpert.org/expert/24958 -https://www.oceanexpert.org/expert/24959 -https://www.oceanexpert.org/expert/24960 -https://www.oceanexpert.org/expert/24963 -https://www.oceanexpert.org/expert/24964 -https://www.oceanexpert.org/expert/24965 -https://www.oceanexpert.org/expert/24969 -https://www.oceanexpert.org/expert/24973 -https://www.oceanexpert.org/expert/24974 -https://www.oceanexpert.org/expert/24975 -https://www.oceanexpert.org/expert/24976 -https://www.oceanexpert.org/expert/24977 -https://www.oceanexpert.org/expert/24978 -https://www.oceanexpert.org/expert/24979 -https://www.oceanexpert.org/expert/24982 -https://www.oceanexpert.org/expert/24983 -https://www.oceanexpert.org/expert/24984 -https://www.oceanexpert.org/expert/24986 -https://www.oceanexpert.org/expert/24987 -https://www.oceanexpert.org/expert/24988 -https://www.oceanexpert.org/expert/24989 -https://www.oceanexpert.org/expert/24990 -https://www.oceanexpert.org/expert/24993 -https://www.oceanexpert.org/expert/24994 -https://www.oceanexpert.org/expert/24996 -https://www.oceanexpert.org/expert/24997 -https://www.oceanexpert.org/expert/24998 -https://www.oceanexpert.org/expert/24999 -https://www.oceanexpert.org/expert/25000 -https://www.oceanexpert.org/expert/25001 -https://www.oceanexpert.org/expert/25002 -https://www.oceanexpert.org/expert/25003 -https://www.oceanexpert.org/expert/25004 -https://www.oceanexpert.org/expert/25005 -https://www.oceanexpert.org/expert/25006 -https://www.oceanexpert.org/expert/25007 -https://www.oceanexpert.org/expert/25008 -https://www.oceanexpert.org/expert/25009 -https://www.oceanexpert.org/expert/25010 -https://www.oceanexpert.org/expert/25011 -https://www.oceanexpert.org/expert/25012 -https://www.oceanexpert.org/expert/25014 -https://www.oceanexpert.org/expert/25015 -https://www.oceanexpert.org/expert/25016 -https://www.oceanexpert.org/expert/25017 -https://www.oceanexpert.org/expert/25019 -https://www.oceanexpert.org/expert/25021 -https://www.oceanexpert.org/expert/25023 -https://www.oceanexpert.org/expert/25025 -https://www.oceanexpert.org/expert/25026 -https://www.oceanexpert.org/expert/25027 -https://www.oceanexpert.org/expert/25028 -https://www.oceanexpert.org/expert/25029 -https://www.oceanexpert.org/expert/25030 -https://www.oceanexpert.org/expert/25031 -https://www.oceanexpert.org/expert/25032 -https://www.oceanexpert.org/expert/25033 -https://www.oceanexpert.org/expert/25035 -https://www.oceanexpert.org/expert/25036 -https://www.oceanexpert.org/expert/25038 -https://www.oceanexpert.org/expert/25040 -https://www.oceanexpert.org/expert/25041 -https://www.oceanexpert.org/expert/25042 -https://www.oceanexpert.org/expert/25043 -https://www.oceanexpert.org/expert/25045 -https://www.oceanexpert.org/expert/25046 -https://www.oceanexpert.org/expert/25047 -https://www.oceanexpert.org/expert/25048 -https://www.oceanexpert.org/expert/25050 -https://www.oceanexpert.org/expert/25052 -https://www.oceanexpert.org/expert/25053 -https://www.oceanexpert.org/expert/25054 -https://www.oceanexpert.org/expert/25055 -https://www.oceanexpert.org/expert/25056 -https://www.oceanexpert.org/expert/25057 -https://www.oceanexpert.org/expert/25058 -https://www.oceanexpert.org/expert/25060 -https://www.oceanexpert.org/expert/25061 -https://www.oceanexpert.org/expert/25062 -https://www.oceanexpert.org/expert/25063 -https://www.oceanexpert.org/expert/25064 -https://www.oceanexpert.org/expert/25065 -https://www.oceanexpert.org/expert/25066 -https://www.oceanexpert.org/expert/25067 -https://www.oceanexpert.org/expert/25068 -https://www.oceanexpert.org/expert/25070 -https://www.oceanexpert.org/expert/25073 -https://www.oceanexpert.org/expert/25074 -https://www.oceanexpert.org/expert/25076 -https://www.oceanexpert.org/expert/25077 -https://www.oceanexpert.org/expert/25078 -https://www.oceanexpert.org/expert/25079 -https://www.oceanexpert.org/expert/25081 -https://www.oceanexpert.org/expert/25082 -https://www.oceanexpert.org/expert/25084 -https://www.oceanexpert.org/expert/25085 -https://www.oceanexpert.org/expert/25087 -https://www.oceanexpert.org/expert/25088 -https://www.oceanexpert.org/expert/25090 -https://www.oceanexpert.org/expert/25091 -https://www.oceanexpert.org/expert/25092 -https://www.oceanexpert.org/expert/25094 -https://www.oceanexpert.org/expert/25095 -https://www.oceanexpert.org/expert/25097 -https://www.oceanexpert.org/expert/25098 -https://www.oceanexpert.org/expert/25099 -https://www.oceanexpert.org/expert/25101 -https://www.oceanexpert.org/expert/25102 -https://www.oceanexpert.org/expert/25104 -https://www.oceanexpert.org/expert/25105 -https://www.oceanexpert.org/expert/25107 -https://www.oceanexpert.org/expert/25108 -https://www.oceanexpert.org/expert/25109 -https://www.oceanexpert.org/expert/25111 -https://www.oceanexpert.org/expert/25114 -https://www.oceanexpert.org/expert/25115 -https://www.oceanexpert.org/expert/25116 -https://www.oceanexpert.org/expert/25117 -https://www.oceanexpert.org/expert/25118 -https://www.oceanexpert.org/expert/25122 -https://www.oceanexpert.org/expert/25123 -https://www.oceanexpert.org/expert/25125 -https://www.oceanexpert.org/expert/25126 -https://www.oceanexpert.org/expert/25127 -https://www.oceanexpert.org/expert/25130 -https://www.oceanexpert.org/expert/25131 -https://www.oceanexpert.org/expert/25134 -https://www.oceanexpert.org/expert/25135 -https://www.oceanexpert.org/expert/25136 -https://www.oceanexpert.org/expert/25137 -https://www.oceanexpert.org/expert/25138 -https://www.oceanexpert.org/expert/25139 -https://www.oceanexpert.org/expert/25140 -https://www.oceanexpert.org/expert/25141 -https://www.oceanexpert.org/expert/25143 -https://www.oceanexpert.org/expert/25144 -https://www.oceanexpert.org/expert/25145 -https://www.oceanexpert.org/expert/25146 -https://www.oceanexpert.org/expert/25147 -https://www.oceanexpert.org/expert/25149 -https://www.oceanexpert.org/expert/25151 -https://www.oceanexpert.org/expert/25152 -https://www.oceanexpert.org/expert/25153 -https://www.oceanexpert.org/expert/25154 -https://www.oceanexpert.org/expert/25156 -https://www.oceanexpert.org/expert/25157 -https://www.oceanexpert.org/expert/25158 -https://www.oceanexpert.org/expert/25159 -https://www.oceanexpert.org/expert/25161 -https://www.oceanexpert.org/expert/25162 -https://www.oceanexpert.org/expert/25164 -https://www.oceanexpert.org/expert/25166 -https://www.oceanexpert.org/expert/25167 -https://www.oceanexpert.org/expert/25168 -https://www.oceanexpert.org/expert/25169 -https://www.oceanexpert.org/expert/25172 -https://www.oceanexpert.org/expert/25174 -https://www.oceanexpert.org/expert/25175 -https://www.oceanexpert.org/expert/25176 -https://www.oceanexpert.org/expert/25177 -https://www.oceanexpert.org/expert/25178 -https://www.oceanexpert.org/expert/25179 -https://www.oceanexpert.org/expert/25187 -https://www.oceanexpert.org/expert/25188 -https://www.oceanexpert.org/expert/25189 -https://www.oceanexpert.org/expert/25190 -https://www.oceanexpert.org/expert/25191 -https://www.oceanexpert.org/expert/25193 -https://www.oceanexpert.org/expert/25195 -https://www.oceanexpert.org/expert/25196 -https://www.oceanexpert.org/expert/25197 -https://www.oceanexpert.org/expert/25198 -https://www.oceanexpert.org/expert/25200 -https://www.oceanexpert.org/expert/25201 -https://www.oceanexpert.org/expert/25202 -https://www.oceanexpert.org/expert/25203 -https://www.oceanexpert.org/expert/25204 -https://www.oceanexpert.org/expert/25205 -https://www.oceanexpert.org/expert/25206 -https://www.oceanexpert.org/expert/25209 -https://www.oceanexpert.org/expert/25210 -https://www.oceanexpert.org/expert/25211 -https://www.oceanexpert.org/expert/25213 -https://www.oceanexpert.org/expert/25215 -https://www.oceanexpert.org/expert/25216 -https://www.oceanexpert.org/expert/25217 -https://www.oceanexpert.org/expert/25221 -https://www.oceanexpert.org/expert/25222 -https://www.oceanexpert.org/expert/25223 -https://www.oceanexpert.org/expert/25225 -https://www.oceanexpert.org/expert/25226 -https://www.oceanexpert.org/expert/25228 -https://www.oceanexpert.org/expert/25229 -https://www.oceanexpert.org/expert/25231 -https://www.oceanexpert.org/expert/25237 -https://www.oceanexpert.org/expert/25239 -https://www.oceanexpert.org/expert/25242 -https://www.oceanexpert.org/expert/25245 -https://www.oceanexpert.org/expert/25246 -https://www.oceanexpert.org/expert/25247 -https://www.oceanexpert.org/expert/25248 -https://www.oceanexpert.org/expert/25250 -https://www.oceanexpert.org/expert/25251 -https://www.oceanexpert.org/expert/25252 -https://www.oceanexpert.org/expert/25253 -https://www.oceanexpert.org/expert/25255 -https://www.oceanexpert.org/expert/25256 -https://www.oceanexpert.org/expert/25257 -https://www.oceanexpert.org/expert/25258 -https://www.oceanexpert.org/expert/25260 -https://www.oceanexpert.org/expert/25261 -https://www.oceanexpert.org/expert/25262 -https://www.oceanexpert.org/expert/25265 -https://www.oceanexpert.org/expert/25268 -https://www.oceanexpert.org/expert/25269 -https://www.oceanexpert.org/expert/25271 -https://www.oceanexpert.org/expert/25272 -https://www.oceanexpert.org/expert/25273 -https://www.oceanexpert.org/expert/25274 -https://www.oceanexpert.org/expert/25276 -https://www.oceanexpert.org/expert/25277 -https://www.oceanexpert.org/expert/25278 -https://www.oceanexpert.org/expert/25279 -https://www.oceanexpert.org/expert/25280 -https://www.oceanexpert.org/expert/25281 -https://www.oceanexpert.org/expert/25282 -https://www.oceanexpert.org/expert/25283 -https://www.oceanexpert.org/expert/25284 -https://www.oceanexpert.org/expert/25287 -https://www.oceanexpert.org/expert/25290 -https://www.oceanexpert.org/expert/25292 -https://www.oceanexpert.org/expert/25294 -https://www.oceanexpert.org/expert/25295 -https://www.oceanexpert.org/expert/25296 -https://www.oceanexpert.org/expert/25297 -https://www.oceanexpert.org/expert/25299 -https://www.oceanexpert.org/expert/25303 -https://www.oceanexpert.org/expert/25304 -https://www.oceanexpert.org/expert/25306 -https://www.oceanexpert.org/expert/25309 -https://www.oceanexpert.org/expert/25311 -https://www.oceanexpert.org/expert/25313 -https://www.oceanexpert.org/expert/25314 -https://www.oceanexpert.org/expert/25315 -https://www.oceanexpert.org/expert/25316 -https://www.oceanexpert.org/expert/25317 -https://www.oceanexpert.org/expert/25318 -https://www.oceanexpert.org/expert/25319 -https://www.oceanexpert.org/expert/25320 -https://www.oceanexpert.org/expert/25322 -https://www.oceanexpert.org/expert/25323 -https://www.oceanexpert.org/expert/25324 -https://www.oceanexpert.org/expert/25327 -https://www.oceanexpert.org/expert/25328 -https://www.oceanexpert.org/expert/25329 -https://www.oceanexpert.org/expert/25331 -https://www.oceanexpert.org/expert/25333 -https://www.oceanexpert.org/expert/25334 -https://www.oceanexpert.org/expert/25335 -https://www.oceanexpert.org/expert/25338 -https://www.oceanexpert.org/expert/25341 -https://www.oceanexpert.org/expert/25343 -https://www.oceanexpert.org/expert/25347 -https://www.oceanexpert.org/expert/25348 -https://www.oceanexpert.org/expert/25349 -https://www.oceanexpert.org/expert/25351 -https://www.oceanexpert.org/expert/25354 -https://www.oceanexpert.org/expert/25355 -https://www.oceanexpert.org/expert/25356 -https://www.oceanexpert.org/expert/25357 -https://www.oceanexpert.org/expert/25358 -https://www.oceanexpert.org/expert/25359 -https://www.oceanexpert.org/expert/25360 -https://www.oceanexpert.org/expert/25361 -https://www.oceanexpert.org/expert/25362 -https://www.oceanexpert.org/expert/25363 -https://www.oceanexpert.org/expert/25364 -https://www.oceanexpert.org/expert/25370 -https://www.oceanexpert.org/expert/25371 -https://www.oceanexpert.org/expert/25372 -https://www.oceanexpert.org/expert/25373 -https://www.oceanexpert.org/expert/25374 -https://www.oceanexpert.org/expert/25375 -https://www.oceanexpert.org/expert/25376 -https://www.oceanexpert.org/expert/25377 -https://www.oceanexpert.org/expert/25378 -https://www.oceanexpert.org/expert/25381 -https://www.oceanexpert.org/expert/25382 -https://www.oceanexpert.org/expert/25384 -https://www.oceanexpert.org/expert/25385 -https://www.oceanexpert.org/expert/25386 -https://www.oceanexpert.org/expert/25387 -https://www.oceanexpert.org/expert/25388 -https://www.oceanexpert.org/expert/25389 -https://www.oceanexpert.org/expert/25390 -https://www.oceanexpert.org/expert/25391 -https://www.oceanexpert.org/expert/25392 -https://www.oceanexpert.org/expert/25393 -https://www.oceanexpert.org/expert/25394 -https://www.oceanexpert.org/expert/25395 -https://www.oceanexpert.org/expert/25396 -https://www.oceanexpert.org/expert/25397 -https://www.oceanexpert.org/expert/25398 -https://www.oceanexpert.org/expert/25399 -https://www.oceanexpert.org/expert/25400 -https://www.oceanexpert.org/expert/25402 -https://www.oceanexpert.org/expert/25404 -https://www.oceanexpert.org/expert/25405 -https://www.oceanexpert.org/expert/25406 -https://www.oceanexpert.org/expert/25409 -https://www.oceanexpert.org/expert/25411 -https://www.oceanexpert.org/expert/25414 -https://www.oceanexpert.org/expert/25415 -https://www.oceanexpert.org/expert/25416 -https://www.oceanexpert.org/expert/25417 -https://www.oceanexpert.org/expert/25418 -https://www.oceanexpert.org/expert/25420 -https://www.oceanexpert.org/expert/25422 -https://www.oceanexpert.org/expert/25423 -https://www.oceanexpert.org/expert/25425 -https://www.oceanexpert.org/expert/25426 -https://www.oceanexpert.org/expert/25427 -https://www.oceanexpert.org/expert/25428 -https://www.oceanexpert.org/expert/25429 -https://www.oceanexpert.org/expert/25430 -https://www.oceanexpert.org/expert/25431 -https://www.oceanexpert.org/expert/25432 -https://www.oceanexpert.org/expert/25433 -https://www.oceanexpert.org/expert/25434 -https://www.oceanexpert.org/expert/25435 -https://www.oceanexpert.org/expert/25436 -https://www.oceanexpert.org/expert/25437 -https://www.oceanexpert.org/expert/25438 -https://www.oceanexpert.org/expert/25439 -https://www.oceanexpert.org/expert/25440 -https://www.oceanexpert.org/expert/25442 -https://www.oceanexpert.org/expert/25443 -https://www.oceanexpert.org/expert/25444 -https://www.oceanexpert.org/expert/25445 -https://www.oceanexpert.org/expert/25446 -https://www.oceanexpert.org/expert/25447 -https://www.oceanexpert.org/expert/25448 -https://www.oceanexpert.org/expert/25449 -https://www.oceanexpert.org/expert/25450 -https://www.oceanexpert.org/expert/25451 -https://www.oceanexpert.org/expert/25452 -https://www.oceanexpert.org/expert/25454 -https://www.oceanexpert.org/expert/25455 -https://www.oceanexpert.org/expert/25458 -https://www.oceanexpert.org/expert/25459 -https://www.oceanexpert.org/expert/25460 -https://www.oceanexpert.org/expert/25461 -https://www.oceanexpert.org/expert/25462 -https://www.oceanexpert.org/expert/25463 -https://www.oceanexpert.org/expert/25466 -https://www.oceanexpert.org/expert/25467 -https://www.oceanexpert.org/expert/25470 -https://www.oceanexpert.org/expert/25472 -https://www.oceanexpert.org/expert/25474 -https://www.oceanexpert.org/expert/25475 -https://www.oceanexpert.org/expert/25476 -https://www.oceanexpert.org/expert/25477 -https://www.oceanexpert.org/expert/25478 -https://www.oceanexpert.org/expert/25480 -https://www.oceanexpert.org/expert/25481 -https://www.oceanexpert.org/expert/25483 -https://www.oceanexpert.org/expert/25484 -https://www.oceanexpert.org/expert/25485 -https://www.oceanexpert.org/expert/25486 -https://www.oceanexpert.org/expert/25487 -https://www.oceanexpert.org/expert/25488 -https://www.oceanexpert.org/expert/25489 -https://www.oceanexpert.org/expert/25490 -https://www.oceanexpert.org/expert/25491 -https://www.oceanexpert.org/expert/25492 -https://www.oceanexpert.org/expert/25493 -https://www.oceanexpert.org/expert/25495 -https://www.oceanexpert.org/expert/25496 -https://www.oceanexpert.org/expert/25497 -https://www.oceanexpert.org/expert/25498 -https://www.oceanexpert.org/expert/25499 -https://www.oceanexpert.org/expert/25501 -https://www.oceanexpert.org/expert/25502 -https://www.oceanexpert.org/expert/25503 -https://www.oceanexpert.org/expert/25504 -https://www.oceanexpert.org/expert/25505 -https://www.oceanexpert.org/expert/25506 -https://www.oceanexpert.org/expert/25508 -https://www.oceanexpert.org/expert/25512 -https://www.oceanexpert.org/expert/25513 -https://www.oceanexpert.org/expert/25516 -https://www.oceanexpert.org/expert/25517 -https://www.oceanexpert.org/expert/25518 -https://www.oceanexpert.org/expert/25519 -https://www.oceanexpert.org/expert/25520 -https://www.oceanexpert.org/expert/25527 -https://www.oceanexpert.org/expert/25528 -https://www.oceanexpert.org/expert/25529 -https://www.oceanexpert.org/expert/25530 -https://www.oceanexpert.org/expert/25532 -https://www.oceanexpert.org/expert/25536 -https://www.oceanexpert.org/expert/25537 -https://www.oceanexpert.org/expert/25538 -https://www.oceanexpert.org/expert/25540 -https://www.oceanexpert.org/expert/25546 -https://www.oceanexpert.org/expert/25547 -https://www.oceanexpert.org/expert/25549 -https://www.oceanexpert.org/expert/25552 -https://www.oceanexpert.org/expert/25554 -https://www.oceanexpert.org/expert/25555 -https://www.oceanexpert.org/expert/25556 -https://www.oceanexpert.org/expert/25558 -https://www.oceanexpert.org/expert/25560 -https://www.oceanexpert.org/expert/25564 -https://www.oceanexpert.org/expert/25565 -https://www.oceanexpert.org/expert/25566 -https://www.oceanexpert.org/expert/25567 -https://www.oceanexpert.org/expert/25568 -https://www.oceanexpert.org/expert/25569 -https://www.oceanexpert.org/expert/25571 -https://www.oceanexpert.org/expert/25572 -https://www.oceanexpert.org/expert/25573 -https://www.oceanexpert.org/expert/25574 -https://www.oceanexpert.org/expert/25575 -https://www.oceanexpert.org/expert/25578 -https://www.oceanexpert.org/expert/25579 -https://www.oceanexpert.org/expert/25580 -https://www.oceanexpert.org/expert/25582 -https://www.oceanexpert.org/expert/25583 -https://www.oceanexpert.org/expert/25584 -https://www.oceanexpert.org/expert/25585 -https://www.oceanexpert.org/expert/25587 -https://www.oceanexpert.org/expert/25590 -https://www.oceanexpert.org/expert/25593 -https://www.oceanexpert.org/expert/25594 -https://www.oceanexpert.org/expert/25595 -https://www.oceanexpert.org/expert/25596 -https://www.oceanexpert.org/expert/25597 -https://www.oceanexpert.org/expert/25598 -https://www.oceanexpert.org/expert/25601 -https://www.oceanexpert.org/expert/25602 -https://www.oceanexpert.org/expert/25603 -https://www.oceanexpert.org/expert/25605 -https://www.oceanexpert.org/expert/25606 -https://www.oceanexpert.org/expert/25607 -https://www.oceanexpert.org/expert/25611 -https://www.oceanexpert.org/expert/25616 -https://www.oceanexpert.org/expert/25645 -https://www.oceanexpert.org/expert/25647 -https://www.oceanexpert.org/expert/25648 -https://www.oceanexpert.org/expert/25651 -https://www.oceanexpert.org/expert/25652 -https://www.oceanexpert.org/expert/25655 -https://www.oceanexpert.org/expert/25656 -https://www.oceanexpert.org/expert/25659 -https://www.oceanexpert.org/expert/25660 -https://www.oceanexpert.org/expert/25661 -https://www.oceanexpert.org/expert/25663 -https://www.oceanexpert.org/expert/25664 -https://www.oceanexpert.org/expert/25666 -https://www.oceanexpert.org/expert/25667 -https://www.oceanexpert.org/expert/25668 -https://www.oceanexpert.org/expert/25670 -https://www.oceanexpert.org/expert/25671 -https://www.oceanexpert.org/expert/25673 -https://www.oceanexpert.org/expert/25675 -https://www.oceanexpert.org/expert/25676 -https://www.oceanexpert.org/expert/25677 -https://www.oceanexpert.org/expert/25678 -https://www.oceanexpert.org/expert/25679 -https://www.oceanexpert.org/expert/25680 -https://www.oceanexpert.org/expert/25684 -https://www.oceanexpert.org/expert/25685 -https://www.oceanexpert.org/expert/25686 -https://www.oceanexpert.org/expert/25687 -https://www.oceanexpert.org/expert/25688 -https://www.oceanexpert.org/expert/25689 -https://www.oceanexpert.org/expert/25690 -https://www.oceanexpert.org/expert/25691 -https://www.oceanexpert.org/expert/25692 -https://www.oceanexpert.org/expert/25693 -https://www.oceanexpert.org/expert/25694 -https://www.oceanexpert.org/expert/25695 -https://www.oceanexpert.org/expert/25696 -https://www.oceanexpert.org/expert/25697 -https://www.oceanexpert.org/expert/25698 -https://www.oceanexpert.org/expert/25699 -https://www.oceanexpert.org/expert/25700 -https://www.oceanexpert.org/expert/25701 -https://www.oceanexpert.org/expert/25702 -https://www.oceanexpert.org/expert/25703 -https://www.oceanexpert.org/expert/25704 -https://www.oceanexpert.org/expert/25706 -https://www.oceanexpert.org/expert/25707 -https://www.oceanexpert.org/expert/25710 -https://www.oceanexpert.org/expert/25715 -https://www.oceanexpert.org/expert/25716 -https://www.oceanexpert.org/expert/25717 -https://www.oceanexpert.org/expert/25720 -https://www.oceanexpert.org/expert/25721 -https://www.oceanexpert.org/expert/25722 -https://www.oceanexpert.org/expert/25725 -https://www.oceanexpert.org/expert/25726 -https://www.oceanexpert.org/expert/25727 -https://www.oceanexpert.org/expert/25730 -https://www.oceanexpert.org/expert/25731 -https://www.oceanexpert.org/expert/25732 -https://www.oceanexpert.org/expert/25733 -https://www.oceanexpert.org/expert/25735 -https://www.oceanexpert.org/expert/25736 -https://www.oceanexpert.org/expert/25740 -https://www.oceanexpert.org/expert/25741 -https://www.oceanexpert.org/expert/25743 -https://www.oceanexpert.org/expert/25745 -https://www.oceanexpert.org/expert/25747 -https://www.oceanexpert.org/expert/25750 -https://www.oceanexpert.org/expert/25751 -https://www.oceanexpert.org/expert/25753 -https://www.oceanexpert.org/expert/25754 -https://www.oceanexpert.org/expert/25755 -https://www.oceanexpert.org/expert/25756 -https://www.oceanexpert.org/expert/25758 -https://www.oceanexpert.org/expert/25760 -https://www.oceanexpert.org/expert/25761 -https://www.oceanexpert.org/expert/25762 -https://www.oceanexpert.org/expert/25763 -https://www.oceanexpert.org/expert/25768 -https://www.oceanexpert.org/expert/25769 -https://www.oceanexpert.org/expert/25770 -https://www.oceanexpert.org/expert/25772 -https://www.oceanexpert.org/expert/25773 -https://www.oceanexpert.org/expert/25774 -https://www.oceanexpert.org/expert/25776 -https://www.oceanexpert.org/expert/25777 -https://www.oceanexpert.org/expert/25779 -https://www.oceanexpert.org/expert/25781 -https://www.oceanexpert.org/expert/25784 -https://www.oceanexpert.org/expert/25785 -https://www.oceanexpert.org/expert/25786 -https://www.oceanexpert.org/expert/25788 -https://www.oceanexpert.org/expert/25789 -https://www.oceanexpert.org/expert/25790 -https://www.oceanexpert.org/expert/25791 -https://www.oceanexpert.org/expert/25792 -https://www.oceanexpert.org/expert/25793 -https://www.oceanexpert.org/expert/25794 -https://www.oceanexpert.org/expert/25795 -https://www.oceanexpert.org/expert/25796 -https://www.oceanexpert.org/expert/25797 -https://www.oceanexpert.org/expert/25798 -https://www.oceanexpert.org/expert/25799 -https://www.oceanexpert.org/expert/25800 -https://www.oceanexpert.org/expert/25802 -https://www.oceanexpert.org/expert/25805 -https://www.oceanexpert.org/expert/25807 -https://www.oceanexpert.org/expert/25808 -https://www.oceanexpert.org/expert/25809 -https://www.oceanexpert.org/expert/25811 -https://www.oceanexpert.org/expert/25812 -https://www.oceanexpert.org/expert/25813 -https://www.oceanexpert.org/expert/25814 -https://www.oceanexpert.org/expert/25815 -https://www.oceanexpert.org/expert/25816 -https://www.oceanexpert.org/expert/25817 -https://www.oceanexpert.org/expert/25818 -https://www.oceanexpert.org/expert/25820 -https://www.oceanexpert.org/expert/25821 -https://www.oceanexpert.org/expert/25822 -https://www.oceanexpert.org/expert/25823 -https://www.oceanexpert.org/expert/25824 -https://www.oceanexpert.org/expert/25825 -https://www.oceanexpert.org/expert/25826 -https://www.oceanexpert.org/expert/25827 -https://www.oceanexpert.org/expert/25828 -https://www.oceanexpert.org/expert/25829 -https://www.oceanexpert.org/expert/25830 -https://www.oceanexpert.org/expert/25831 -https://www.oceanexpert.org/expert/25832 -https://www.oceanexpert.org/expert/25833 -https://www.oceanexpert.org/expert/25835 -https://www.oceanexpert.org/expert/25837 -https://www.oceanexpert.org/expert/25839 -https://www.oceanexpert.org/expert/25840 -https://www.oceanexpert.org/expert/25841 -https://www.oceanexpert.org/expert/25842 -https://www.oceanexpert.org/expert/25843 -https://www.oceanexpert.org/expert/25845 -https://www.oceanexpert.org/expert/25848 -https://www.oceanexpert.org/expert/25849 -https://www.oceanexpert.org/expert/25850 -https://www.oceanexpert.org/expert/25851 -https://www.oceanexpert.org/expert/25852 -https://www.oceanexpert.org/expert/25853 -https://www.oceanexpert.org/expert/25854 -https://www.oceanexpert.org/expert/25855 -https://www.oceanexpert.org/expert/25857 -https://www.oceanexpert.org/expert/25858 -https://www.oceanexpert.org/expert/25859 -https://www.oceanexpert.org/expert/25860 -https://www.oceanexpert.org/expert/25861 -https://www.oceanexpert.org/expert/25862 -https://www.oceanexpert.org/expert/25863 -https://www.oceanexpert.org/expert/25864 -https://www.oceanexpert.org/expert/25865 -https://www.oceanexpert.org/expert/25867 -https://www.oceanexpert.org/expert/25868 -https://www.oceanexpert.org/expert/25871 -https://www.oceanexpert.org/expert/25872 -https://www.oceanexpert.org/expert/25873 -https://www.oceanexpert.org/expert/25876 -https://www.oceanexpert.org/expert/25878 -https://www.oceanexpert.org/expert/25879 -https://www.oceanexpert.org/expert/25880 -https://www.oceanexpert.org/expert/25882 -https://www.oceanexpert.org/expert/25884 -https://www.oceanexpert.org/expert/25886 -https://www.oceanexpert.org/expert/25888 -https://www.oceanexpert.org/expert/25889 -https://www.oceanexpert.org/expert/25891 -https://www.oceanexpert.org/expert/25892 -https://www.oceanexpert.org/expert/25894 -https://www.oceanexpert.org/expert/25895 -https://www.oceanexpert.org/expert/25896 -https://www.oceanexpert.org/expert/25897 -https://www.oceanexpert.org/expert/25898 -https://www.oceanexpert.org/expert/25899 -https://www.oceanexpert.org/expert/25900 -https://www.oceanexpert.org/expert/25901 -https://www.oceanexpert.org/expert/25902 -https://www.oceanexpert.org/expert/25903 -https://www.oceanexpert.org/expert/25907 -https://www.oceanexpert.org/expert/25912 -https://www.oceanexpert.org/expert/25915 -https://www.oceanexpert.org/expert/25916 -https://www.oceanexpert.org/expert/25918 -https://www.oceanexpert.org/expert/25920 -https://www.oceanexpert.org/expert/25923 -https://www.oceanexpert.org/expert/25926 -https://www.oceanexpert.org/expert/25927 -https://www.oceanexpert.org/expert/25928 -https://www.oceanexpert.org/expert/25929 -https://www.oceanexpert.org/expert/25931 -https://www.oceanexpert.org/expert/25933 -https://www.oceanexpert.org/expert/25934 -https://www.oceanexpert.org/expert/25935 -https://www.oceanexpert.org/expert/25936 -https://www.oceanexpert.org/expert/25937 -https://www.oceanexpert.org/expert/25938 -https://www.oceanexpert.org/expert/25942 -https://www.oceanexpert.org/expert/25943 -https://www.oceanexpert.org/expert/25946 -https://www.oceanexpert.org/expert/25947 -https://www.oceanexpert.org/expert/25948 -https://www.oceanexpert.org/expert/25950 -https://www.oceanexpert.org/expert/25951 -https://www.oceanexpert.org/expert/25952 -https://www.oceanexpert.org/expert/25953 -https://www.oceanexpert.org/expert/25954 -https://www.oceanexpert.org/expert/25955 -https://www.oceanexpert.org/expert/25956 -https://www.oceanexpert.org/expert/25957 -https://www.oceanexpert.org/expert/25959 -https://www.oceanexpert.org/expert/25961 -https://www.oceanexpert.org/expert/25962 -https://www.oceanexpert.org/expert/25963 -https://www.oceanexpert.org/expert/25964 -https://www.oceanexpert.org/expert/25965 -https://www.oceanexpert.org/expert/25966 -https://www.oceanexpert.org/expert/25967 -https://www.oceanexpert.org/expert/25969 -https://www.oceanexpert.org/expert/25970 -https://www.oceanexpert.org/expert/25971 -https://www.oceanexpert.org/expert/25972 -https://www.oceanexpert.org/expert/25974 -https://www.oceanexpert.org/expert/25975 -https://www.oceanexpert.org/expert/25976 -https://www.oceanexpert.org/expert/25977 -https://www.oceanexpert.org/expert/25979 -https://www.oceanexpert.org/expert/25982 -https://www.oceanexpert.org/expert/25984 -https://www.oceanexpert.org/expert/25985 -https://www.oceanexpert.org/expert/25986 -https://www.oceanexpert.org/expert/25988 -https://www.oceanexpert.org/expert/25989 -https://www.oceanexpert.org/expert/25990 -https://www.oceanexpert.org/expert/25992 -https://www.oceanexpert.org/expert/25993 -https://www.oceanexpert.org/expert/25994 -https://www.oceanexpert.org/expert/25995 -https://www.oceanexpert.org/expert/25996 -https://www.oceanexpert.org/expert/25997 -https://www.oceanexpert.org/expert/25998 -https://www.oceanexpert.org/expert/25999 -https://www.oceanexpert.org/expert/26000 -https://www.oceanexpert.org/expert/26001 -https://www.oceanexpert.org/expert/26002 -https://www.oceanexpert.org/expert/26003 -https://www.oceanexpert.org/expert/26004 -https://www.oceanexpert.org/expert/26005 -https://www.oceanexpert.org/expert/26007 -https://www.oceanexpert.org/expert/26008 -https://www.oceanexpert.org/expert/26010 -https://www.oceanexpert.org/expert/26012 -https://www.oceanexpert.org/expert/26013 -https://www.oceanexpert.org/expert/26014 -https://www.oceanexpert.org/expert/26017 -https://www.oceanexpert.org/expert/26019 -https://www.oceanexpert.org/expert/26020 -https://www.oceanexpert.org/expert/26021 -https://www.oceanexpert.org/expert/26022 -https://www.oceanexpert.org/expert/26023 -https://www.oceanexpert.org/expert/26024 -https://www.oceanexpert.org/expert/26025 -https://www.oceanexpert.org/expert/26026 -https://www.oceanexpert.org/expert/26027 -https://www.oceanexpert.org/expert/26029 -https://www.oceanexpert.org/expert/26032 -https://www.oceanexpert.org/expert/26036 -https://www.oceanexpert.org/expert/26037 -https://www.oceanexpert.org/expert/26038 -https://www.oceanexpert.org/expert/26039 -https://www.oceanexpert.org/expert/26041 -https://www.oceanexpert.org/expert/26042 -https://www.oceanexpert.org/expert/26044 -https://www.oceanexpert.org/expert/26045 -https://www.oceanexpert.org/expert/26046 -https://www.oceanexpert.org/expert/26048 -https://www.oceanexpert.org/expert/26049 -https://www.oceanexpert.org/expert/26050 -https://www.oceanexpert.org/expert/26051 -https://www.oceanexpert.org/expert/26052 -https://www.oceanexpert.org/expert/26053 -https://www.oceanexpert.org/expert/26054 -https://www.oceanexpert.org/expert/26055 -https://www.oceanexpert.org/expert/26056 -https://www.oceanexpert.org/expert/26057 -https://www.oceanexpert.org/expert/26059 -https://www.oceanexpert.org/expert/26060 -https://www.oceanexpert.org/expert/26061 -https://www.oceanexpert.org/expert/26063 -https://www.oceanexpert.org/expert/26064 -https://www.oceanexpert.org/expert/26067 -https://www.oceanexpert.org/expert/26068 -https://www.oceanexpert.org/expert/26069 -https://www.oceanexpert.org/expert/26070 -https://www.oceanexpert.org/expert/26071 -https://www.oceanexpert.org/expert/26073 -https://www.oceanexpert.org/expert/26074 -https://www.oceanexpert.org/expert/26075 -https://www.oceanexpert.org/expert/26076 -https://www.oceanexpert.org/expert/26077 -https://www.oceanexpert.org/expert/26078 -https://www.oceanexpert.org/expert/26080 -https://www.oceanexpert.org/expert/26081 -https://www.oceanexpert.org/expert/26082 -https://www.oceanexpert.org/expert/26083 -https://www.oceanexpert.org/expert/26087 -https://www.oceanexpert.org/expert/26088 -https://www.oceanexpert.org/expert/26089 -https://www.oceanexpert.org/expert/26090 -https://www.oceanexpert.org/expert/26091 -https://www.oceanexpert.org/expert/26092 -https://www.oceanexpert.org/expert/26094 -https://www.oceanexpert.org/expert/26096 -https://www.oceanexpert.org/expert/26097 -https://www.oceanexpert.org/expert/26099 -https://www.oceanexpert.org/expert/26100 -https://www.oceanexpert.org/expert/26101 -https://www.oceanexpert.org/expert/26102 -https://www.oceanexpert.org/expert/26103 -https://www.oceanexpert.org/expert/26104 -https://www.oceanexpert.org/expert/26105 -https://www.oceanexpert.org/expert/26106 -https://www.oceanexpert.org/expert/26110 -https://www.oceanexpert.org/expert/26112 -https://www.oceanexpert.org/expert/26113 -https://www.oceanexpert.org/expert/26114 -https://www.oceanexpert.org/expert/26116 -https://www.oceanexpert.org/expert/26117 -https://www.oceanexpert.org/expert/26119 -https://www.oceanexpert.org/expert/26120 -https://www.oceanexpert.org/expert/26122 -https://www.oceanexpert.org/expert/26123 -https://www.oceanexpert.org/expert/26124 -https://www.oceanexpert.org/expert/26125 -https://www.oceanexpert.org/expert/26128 -https://www.oceanexpert.org/expert/26130 -https://www.oceanexpert.org/expert/26131 -https://www.oceanexpert.org/expert/26132 -https://www.oceanexpert.org/expert/26134 -https://www.oceanexpert.org/expert/26135 -https://www.oceanexpert.org/expert/26136 -https://www.oceanexpert.org/expert/26137 -https://www.oceanexpert.org/expert/26138 -https://www.oceanexpert.org/expert/26139 -https://www.oceanexpert.org/expert/26141 -https://www.oceanexpert.org/expert/26142 -https://www.oceanexpert.org/expert/26143 -https://www.oceanexpert.org/expert/26144 -https://www.oceanexpert.org/expert/26147 -https://www.oceanexpert.org/expert/26148 -https://www.oceanexpert.org/expert/26150 -https://www.oceanexpert.org/expert/26151 -https://www.oceanexpert.org/expert/26152 -https://www.oceanexpert.org/expert/26155 -https://www.oceanexpert.org/expert/26156 -https://www.oceanexpert.org/expert/26159 -https://www.oceanexpert.org/expert/26162 -https://www.oceanexpert.org/expert/26163 -https://www.oceanexpert.org/expert/26164 -https://www.oceanexpert.org/expert/26165 -https://www.oceanexpert.org/expert/26167 -https://www.oceanexpert.org/expert/26169 -https://www.oceanexpert.org/expert/26170 -https://www.oceanexpert.org/expert/26171 -https://www.oceanexpert.org/expert/26172 -https://www.oceanexpert.org/expert/26174 -https://www.oceanexpert.org/expert/26175 -https://www.oceanexpert.org/expert/26176 -https://www.oceanexpert.org/expert/26177 -https://www.oceanexpert.org/expert/26178 -https://www.oceanexpert.org/expert/26179 -https://www.oceanexpert.org/expert/26180 -https://www.oceanexpert.org/expert/26181 -https://www.oceanexpert.org/expert/26183 -https://www.oceanexpert.org/expert/26184 -https://www.oceanexpert.org/expert/26186 -https://www.oceanexpert.org/expert/26187 -https://www.oceanexpert.org/expert/26188 -https://www.oceanexpert.org/expert/26189 -https://www.oceanexpert.org/expert/26190 -https://www.oceanexpert.org/expert/26192 -https://www.oceanexpert.org/expert/26194 -https://www.oceanexpert.org/expert/26196 -https://www.oceanexpert.org/expert/26198 -https://www.oceanexpert.org/expert/26202 -https://www.oceanexpert.org/expert/26203 -https://www.oceanexpert.org/expert/26205 -https://www.oceanexpert.org/expert/26206 -https://www.oceanexpert.org/expert/26208 -https://www.oceanexpert.org/expert/26210 -https://www.oceanexpert.org/expert/26211 -https://www.oceanexpert.org/expert/26214 -https://www.oceanexpert.org/expert/26215 -https://www.oceanexpert.org/expert/26216 -https://www.oceanexpert.org/expert/26217 -https://www.oceanexpert.org/expert/26220 -https://www.oceanexpert.org/expert/26221 -https://www.oceanexpert.org/expert/26223 -https://www.oceanexpert.org/expert/26225 -https://www.oceanexpert.org/expert/26227 -https://www.oceanexpert.org/expert/26228 -https://www.oceanexpert.org/expert/26232 -https://www.oceanexpert.org/expert/26233 -https://www.oceanexpert.org/expert/26234 -https://www.oceanexpert.org/expert/26235 -https://www.oceanexpert.org/expert/26236 -https://www.oceanexpert.org/expert/26237 -https://www.oceanexpert.org/expert/26238 -https://www.oceanexpert.org/expert/26239 -https://www.oceanexpert.org/expert/26240 -https://www.oceanexpert.org/expert/26241 -https://www.oceanexpert.org/expert/26242 -https://www.oceanexpert.org/expert/26245 -https://www.oceanexpert.org/expert/26246 -https://www.oceanexpert.org/expert/26247 -https://www.oceanexpert.org/expert/26248 -https://www.oceanexpert.org/expert/26251 -https://www.oceanexpert.org/expert/26252 -https://www.oceanexpert.org/expert/26253 -https://www.oceanexpert.org/expert/26255 -https://www.oceanexpert.org/expert/26256 -https://www.oceanexpert.org/expert/26259 -https://www.oceanexpert.org/expert/26260 -https://www.oceanexpert.org/expert/26262 -https://www.oceanexpert.org/expert/26263 -https://www.oceanexpert.org/expert/26264 -https://www.oceanexpert.org/expert/26265 -https://www.oceanexpert.org/expert/26266 -https://www.oceanexpert.org/expert/26267 -https://www.oceanexpert.org/expert/26268 -https://www.oceanexpert.org/expert/26270 -https://www.oceanexpert.org/expert/26271 -https://www.oceanexpert.org/expert/26272 -https://www.oceanexpert.org/expert/26273 -https://www.oceanexpert.org/expert/26274 -https://www.oceanexpert.org/expert/26276 -https://www.oceanexpert.org/expert/26277 -https://www.oceanexpert.org/expert/26278 -https://www.oceanexpert.org/expert/26280 -https://www.oceanexpert.org/expert/26281 -https://www.oceanexpert.org/expert/26282 -https://www.oceanexpert.org/expert/26283 -https://www.oceanexpert.org/expert/26285 -https://www.oceanexpert.org/expert/26287 -https://www.oceanexpert.org/expert/26289 -https://www.oceanexpert.org/expert/26290 -https://www.oceanexpert.org/expert/26292 -https://www.oceanexpert.org/expert/26294 -https://www.oceanexpert.org/expert/26295 -https://www.oceanexpert.org/expert/26297 -https://www.oceanexpert.org/expert/26298 -https://www.oceanexpert.org/expert/26301 -https://www.oceanexpert.org/expert/26303 -https://www.oceanexpert.org/expert/26306 -https://www.oceanexpert.org/expert/26308 -https://www.oceanexpert.org/expert/26309 -https://www.oceanexpert.org/expert/26310 -https://www.oceanexpert.org/expert/26312 -https://www.oceanexpert.org/expert/26313 -https://www.oceanexpert.org/expert/26314 -https://www.oceanexpert.org/expert/26315 -https://www.oceanexpert.org/expert/26316 -https://www.oceanexpert.org/expert/26317 -https://www.oceanexpert.org/expert/26318 -https://www.oceanexpert.org/expert/26319 -https://www.oceanexpert.org/expert/26320 -https://www.oceanexpert.org/expert/26321 -https://www.oceanexpert.org/expert/26322 -https://www.oceanexpert.org/expert/26323 -https://www.oceanexpert.org/expert/26326 -https://www.oceanexpert.org/expert/26328 -https://www.oceanexpert.org/expert/26329 -https://www.oceanexpert.org/expert/26330 -https://www.oceanexpert.org/expert/26331 -https://www.oceanexpert.org/expert/26332 -https://www.oceanexpert.org/expert/26333 -https://www.oceanexpert.org/expert/26334 -https://www.oceanexpert.org/expert/26335 -https://www.oceanexpert.org/expert/26337 -https://www.oceanexpert.org/expert/26339 -https://www.oceanexpert.org/expert/26342 -https://www.oceanexpert.org/expert/26344 -https://www.oceanexpert.org/expert/26345 -https://www.oceanexpert.org/expert/26346 -https://www.oceanexpert.org/expert/26348 -https://www.oceanexpert.org/expert/26349 -https://www.oceanexpert.org/expert/26350 -https://www.oceanexpert.org/expert/26351 -https://www.oceanexpert.org/expert/26353 -https://www.oceanexpert.org/expert/26354 -https://www.oceanexpert.org/expert/26355 -https://www.oceanexpert.org/expert/26356 -https://www.oceanexpert.org/expert/26360 -https://www.oceanexpert.org/expert/26361 -https://www.oceanexpert.org/expert/26365 -https://www.oceanexpert.org/expert/26366 -https://www.oceanexpert.org/expert/26367 -https://www.oceanexpert.org/expert/26370 -https://www.oceanexpert.org/expert/26371 -https://www.oceanexpert.org/expert/26372 -https://www.oceanexpert.org/expert/26373 -https://www.oceanexpert.org/expert/26374 -https://www.oceanexpert.org/expert/26375 -https://www.oceanexpert.org/expert/26377 -https://www.oceanexpert.org/expert/26381 -https://www.oceanexpert.org/expert/26382 -https://www.oceanexpert.org/expert/26385 -https://www.oceanexpert.org/expert/26386 -https://www.oceanexpert.org/expert/26387 -https://www.oceanexpert.org/expert/26388 -https://www.oceanexpert.org/expert/26389 -https://www.oceanexpert.org/expert/26390 -https://www.oceanexpert.org/expert/26391 -https://www.oceanexpert.org/expert/26393 -https://www.oceanexpert.org/expert/26394 -https://www.oceanexpert.org/expert/26395 -https://www.oceanexpert.org/expert/26396 -https://www.oceanexpert.org/expert/26398 -https://www.oceanexpert.org/expert/26399 -https://www.oceanexpert.org/expert/26400 -https://www.oceanexpert.org/expert/26401 -https://www.oceanexpert.org/expert/26402 -https://www.oceanexpert.org/expert/26403 -https://www.oceanexpert.org/expert/26404 -https://www.oceanexpert.org/expert/26405 -https://www.oceanexpert.org/expert/26406 -https://www.oceanexpert.org/expert/26407 -https://www.oceanexpert.org/expert/26409 -https://www.oceanexpert.org/expert/26410 -https://www.oceanexpert.org/expert/26411 -https://www.oceanexpert.org/expert/26412 -https://www.oceanexpert.org/expert/26413 -https://www.oceanexpert.org/expert/26414 -https://www.oceanexpert.org/expert/26415 -https://www.oceanexpert.org/expert/26416 -https://www.oceanexpert.org/expert/26417 -https://www.oceanexpert.org/expert/26418 -https://www.oceanexpert.org/expert/26420 -https://www.oceanexpert.org/expert/26421 -https://www.oceanexpert.org/expert/26422 -https://www.oceanexpert.org/expert/26423 -https://www.oceanexpert.org/expert/26425 -https://www.oceanexpert.org/expert/26426 -https://www.oceanexpert.org/expert/26428 -https://www.oceanexpert.org/expert/26431 -https://www.oceanexpert.org/expert/26432 -https://www.oceanexpert.org/expert/26435 -https://www.oceanexpert.org/expert/26436 -https://www.oceanexpert.org/expert/26439 -https://www.oceanexpert.org/expert/26440 -https://www.oceanexpert.org/expert/26441 -https://www.oceanexpert.org/expert/26442 -https://www.oceanexpert.org/expert/26443 -https://www.oceanexpert.org/expert/26444 -https://www.oceanexpert.org/expert/26445 -https://www.oceanexpert.org/expert/26447 -https://www.oceanexpert.org/expert/26448 -https://www.oceanexpert.org/expert/26450 -https://www.oceanexpert.org/expert/26452 -https://www.oceanexpert.org/expert/26453 -https://www.oceanexpert.org/expert/26454 -https://www.oceanexpert.org/expert/26455 -https://www.oceanexpert.org/expert/26458 -https://www.oceanexpert.org/expert/26459 -https://www.oceanexpert.org/expert/26460 -https://www.oceanexpert.org/expert/26462 -https://www.oceanexpert.org/expert/26463 -https://www.oceanexpert.org/expert/26466 -https://www.oceanexpert.org/expert/26468 -https://www.oceanexpert.org/expert/26469 -https://www.oceanexpert.org/expert/26470 -https://www.oceanexpert.org/expert/26471 -https://www.oceanexpert.org/expert/26472 -https://www.oceanexpert.org/expert/26473 -https://www.oceanexpert.org/expert/26474 -https://www.oceanexpert.org/expert/26475 -https://www.oceanexpert.org/expert/26476 -https://www.oceanexpert.org/expert/26477 -https://www.oceanexpert.org/expert/26478 -https://www.oceanexpert.org/expert/26479 -https://www.oceanexpert.org/expert/26480 -https://www.oceanexpert.org/expert/26481 -https://www.oceanexpert.org/expert/26483 -https://www.oceanexpert.org/expert/26484 -https://www.oceanexpert.org/expert/26487 -https://www.oceanexpert.org/expert/26488 -https://www.oceanexpert.org/expert/26489 -https://www.oceanexpert.org/expert/26490 -https://www.oceanexpert.org/expert/26491 -https://www.oceanexpert.org/expert/26492 -https://www.oceanexpert.org/expert/26493 -https://www.oceanexpert.org/expert/26494 -https://www.oceanexpert.org/expert/26495 -https://www.oceanexpert.org/expert/26496 -https://www.oceanexpert.org/expert/26497 -https://www.oceanexpert.org/expert/26498 -https://www.oceanexpert.org/expert/26499 -https://www.oceanexpert.org/expert/26500 -https://www.oceanexpert.org/expert/26501 -https://www.oceanexpert.org/expert/26502 -https://www.oceanexpert.org/expert/26503 -https://www.oceanexpert.org/expert/26504 -https://www.oceanexpert.org/expert/26505 -https://www.oceanexpert.org/expert/26507 -https://www.oceanexpert.org/expert/26508 -https://www.oceanexpert.org/expert/26509 -https://www.oceanexpert.org/expert/26511 -https://www.oceanexpert.org/expert/26512 -https://www.oceanexpert.org/expert/26513 -https://www.oceanexpert.org/expert/26515 -https://www.oceanexpert.org/expert/26516 -https://www.oceanexpert.org/expert/26517 -https://www.oceanexpert.org/expert/26518 -https://www.oceanexpert.org/expert/26519 -https://www.oceanexpert.org/expert/26520 -https://www.oceanexpert.org/expert/26521 -https://www.oceanexpert.org/expert/26522 -https://www.oceanexpert.org/expert/26523 -https://www.oceanexpert.org/expert/26524 -https://www.oceanexpert.org/expert/26527 -https://www.oceanexpert.org/expert/26528 -https://www.oceanexpert.org/expert/26531 -https://www.oceanexpert.org/expert/26532 -https://www.oceanexpert.org/expert/26535 -https://www.oceanexpert.org/expert/26536 -https://www.oceanexpert.org/expert/26537 -https://www.oceanexpert.org/expert/26538 -https://www.oceanexpert.org/expert/26539 -https://www.oceanexpert.org/expert/26540 -https://www.oceanexpert.org/expert/26541 -https://www.oceanexpert.org/expert/26542 -https://www.oceanexpert.org/expert/26543 -https://www.oceanexpert.org/expert/26544 -https://www.oceanexpert.org/expert/26545 -https://www.oceanexpert.org/expert/26547 -https://www.oceanexpert.org/expert/26549 -https://www.oceanexpert.org/expert/26550 -https://www.oceanexpert.org/expert/26552 -https://www.oceanexpert.org/expert/26553 -https://www.oceanexpert.org/expert/26554 -https://www.oceanexpert.org/expert/26555 -https://www.oceanexpert.org/expert/26556 -https://www.oceanexpert.org/expert/26557 -https://www.oceanexpert.org/expert/26558 -https://www.oceanexpert.org/expert/26559 -https://www.oceanexpert.org/expert/26560 -https://www.oceanexpert.org/expert/26561 -https://www.oceanexpert.org/expert/26562 -https://www.oceanexpert.org/expert/26563 -https://www.oceanexpert.org/expert/26565 -https://www.oceanexpert.org/expert/26569 -https://www.oceanexpert.org/expert/26571 -https://www.oceanexpert.org/expert/26572 -https://www.oceanexpert.org/expert/26573 -https://www.oceanexpert.org/expert/26574 -https://www.oceanexpert.org/expert/26575 -https://www.oceanexpert.org/expert/26576 -https://www.oceanexpert.org/expert/26577 -https://www.oceanexpert.org/expert/26579 -https://www.oceanexpert.org/expert/26582 -https://www.oceanexpert.org/expert/26583 -https://www.oceanexpert.org/expert/26584 -https://www.oceanexpert.org/expert/26585 -https://www.oceanexpert.org/expert/26587 -https://www.oceanexpert.org/expert/26588 -https://www.oceanexpert.org/expert/26590 -https://www.oceanexpert.org/expert/26593 -https://www.oceanexpert.org/expert/26594 -https://www.oceanexpert.org/expert/26596 -https://www.oceanexpert.org/expert/26597 -https://www.oceanexpert.org/expert/26598 -https://www.oceanexpert.org/expert/26599 -https://www.oceanexpert.org/expert/26602 -https://www.oceanexpert.org/expert/26603 -https://www.oceanexpert.org/expert/26604 -https://www.oceanexpert.org/expert/26605 -https://www.oceanexpert.org/expert/26606 -https://www.oceanexpert.org/expert/26607 -https://www.oceanexpert.org/expert/26608 -https://www.oceanexpert.org/expert/26609 -https://www.oceanexpert.org/expert/26610 -https://www.oceanexpert.org/expert/26611 -https://www.oceanexpert.org/expert/26612 -https://www.oceanexpert.org/expert/26613 -https://www.oceanexpert.org/expert/26615 -https://www.oceanexpert.org/expert/26616 -https://www.oceanexpert.org/expert/26617 -https://www.oceanexpert.org/expert/26618 -https://www.oceanexpert.org/expert/26620 -https://www.oceanexpert.org/expert/26621 -https://www.oceanexpert.org/expert/26622 -https://www.oceanexpert.org/expert/26623 -https://www.oceanexpert.org/expert/26624 -https://www.oceanexpert.org/expert/26625 -https://www.oceanexpert.org/expert/26626 -https://www.oceanexpert.org/expert/26627 -https://www.oceanexpert.org/expert/26630 -https://www.oceanexpert.org/expert/26631 -https://www.oceanexpert.org/expert/26632 -https://www.oceanexpert.org/expert/26633 -https://www.oceanexpert.org/expert/26634 -https://www.oceanexpert.org/expert/26635 -https://www.oceanexpert.org/expert/26636 -https://www.oceanexpert.org/expert/26637 -https://www.oceanexpert.org/expert/26638 -https://www.oceanexpert.org/expert/26639 -https://www.oceanexpert.org/expert/26640 -https://www.oceanexpert.org/expert/26641 -https://www.oceanexpert.org/expert/26642 -https://www.oceanexpert.org/expert/26643 -https://www.oceanexpert.org/expert/26647 -https://www.oceanexpert.org/expert/26648 -https://www.oceanexpert.org/expert/26650 -https://www.oceanexpert.org/expert/26651 -https://www.oceanexpert.org/expert/26652 -https://www.oceanexpert.org/expert/26653 -https://www.oceanexpert.org/expert/26654 -https://www.oceanexpert.org/expert/26655 -https://www.oceanexpert.org/expert/26656 -https://www.oceanexpert.org/expert/26657 -https://www.oceanexpert.org/expert/26658 -https://www.oceanexpert.org/expert/26661 -https://www.oceanexpert.org/expert/26662 -https://www.oceanexpert.org/expert/26663 -https://www.oceanexpert.org/expert/26664 -https://www.oceanexpert.org/expert/26665 -https://www.oceanexpert.org/expert/26666 -https://www.oceanexpert.org/expert/26667 -https://www.oceanexpert.org/expert/26669 -https://www.oceanexpert.org/expert/26670 -https://www.oceanexpert.org/expert/26671 -https://www.oceanexpert.org/expert/26672 -https://www.oceanexpert.org/expert/26674 -https://www.oceanexpert.org/expert/26675 -https://www.oceanexpert.org/expert/26676 -https://www.oceanexpert.org/expert/26677 -https://www.oceanexpert.org/expert/26679 -https://www.oceanexpert.org/expert/26680 -https://www.oceanexpert.org/expert/26681 -https://www.oceanexpert.org/expert/26682 -https://www.oceanexpert.org/expert/26683 -https://www.oceanexpert.org/expert/26684 -https://www.oceanexpert.org/expert/26685 -https://www.oceanexpert.org/expert/26686 -https://www.oceanexpert.org/expert/26687 -https://www.oceanexpert.org/expert/26688 -https://www.oceanexpert.org/expert/26689 -https://www.oceanexpert.org/expert/26692 -https://www.oceanexpert.org/expert/26693 -https://www.oceanexpert.org/expert/26694 -https://www.oceanexpert.org/expert/26695 -https://www.oceanexpert.org/expert/26697 -https://www.oceanexpert.org/expert/26699 -https://www.oceanexpert.org/expert/26700 -https://www.oceanexpert.org/expert/26701 -https://www.oceanexpert.org/expert/26702 -https://www.oceanexpert.org/expert/26703 -https://www.oceanexpert.org/expert/26705 -https://www.oceanexpert.org/expert/26706 -https://www.oceanexpert.org/expert/26707 -https://www.oceanexpert.org/expert/26708 -https://www.oceanexpert.org/expert/26709 -https://www.oceanexpert.org/expert/26710 -https://www.oceanexpert.org/expert/26711 -https://www.oceanexpert.org/expert/26712 -https://www.oceanexpert.org/expert/26713 -https://www.oceanexpert.org/expert/26714 -https://www.oceanexpert.org/expert/26716 -https://www.oceanexpert.org/expert/26717 -https://www.oceanexpert.org/expert/26718 -https://www.oceanexpert.org/expert/26719 -https://www.oceanexpert.org/expert/26720 -https://www.oceanexpert.org/expert/26721 -https://www.oceanexpert.org/expert/26722 -https://www.oceanexpert.org/expert/26723 -https://www.oceanexpert.org/expert/26724 -https://www.oceanexpert.org/expert/26725 -https://www.oceanexpert.org/expert/26726 -https://www.oceanexpert.org/expert/26727 -https://www.oceanexpert.org/expert/26728 -https://www.oceanexpert.org/expert/26730 -https://www.oceanexpert.org/expert/26731 -https://www.oceanexpert.org/expert/26732 -https://www.oceanexpert.org/expert/26733 -https://www.oceanexpert.org/expert/26734 -https://www.oceanexpert.org/expert/26735 -https://www.oceanexpert.org/expert/26736 -https://www.oceanexpert.org/expert/26737 -https://www.oceanexpert.org/expert/26738 -https://www.oceanexpert.org/expert/26739 -https://www.oceanexpert.org/expert/26740 -https://www.oceanexpert.org/expert/26741 -https://www.oceanexpert.org/expert/26742 -https://www.oceanexpert.org/expert/26743 -https://www.oceanexpert.org/expert/26744 -https://www.oceanexpert.org/expert/26745 -https://www.oceanexpert.org/expert/26746 -https://www.oceanexpert.org/expert/26747 -https://www.oceanexpert.org/expert/26751 -https://www.oceanexpert.org/expert/26752 -https://www.oceanexpert.org/expert/26753 -https://www.oceanexpert.org/expert/26755 -https://www.oceanexpert.org/expert/26756 -https://www.oceanexpert.org/expert/26757 -https://www.oceanexpert.org/expert/26758 -https://www.oceanexpert.org/expert/26759 -https://www.oceanexpert.org/expert/26760 -https://www.oceanexpert.org/expert/26761 -https://www.oceanexpert.org/expert/26762 -https://www.oceanexpert.org/expert/26763 -https://www.oceanexpert.org/expert/26765 -https://www.oceanexpert.org/expert/26767 -https://www.oceanexpert.org/expert/26768 -https://www.oceanexpert.org/expert/26769 -https://www.oceanexpert.org/expert/26771 -https://www.oceanexpert.org/expert/26772 -https://www.oceanexpert.org/expert/26773 -https://www.oceanexpert.org/expert/26774 -https://www.oceanexpert.org/expert/26775 -https://www.oceanexpert.org/expert/26776 -https://www.oceanexpert.org/expert/26778 -https://www.oceanexpert.org/expert/26779 -https://www.oceanexpert.org/expert/26780 -https://www.oceanexpert.org/expert/26781 -https://www.oceanexpert.org/expert/26782 -https://www.oceanexpert.org/expert/26783 -https://www.oceanexpert.org/expert/26784 -https://www.oceanexpert.org/expert/26785 -https://www.oceanexpert.org/expert/26786 -https://www.oceanexpert.org/expert/26787 -https://www.oceanexpert.org/expert/26789 -https://www.oceanexpert.org/expert/26792 -https://www.oceanexpert.org/expert/26793 -https://www.oceanexpert.org/expert/26794 -https://www.oceanexpert.org/expert/26796 -https://www.oceanexpert.org/expert/26797 -https://www.oceanexpert.org/expert/26798 -https://www.oceanexpert.org/expert/26799 -https://www.oceanexpert.org/expert/26800 -https://www.oceanexpert.org/expert/26801 -https://www.oceanexpert.org/expert/26802 -https://www.oceanexpert.org/expert/26803 -https://www.oceanexpert.org/expert/26804 -https://www.oceanexpert.org/expert/26805 -https://www.oceanexpert.org/expert/26806 -https://www.oceanexpert.org/expert/26807 -https://www.oceanexpert.org/expert/26808 -https://www.oceanexpert.org/expert/26809 -https://www.oceanexpert.org/expert/26810 -https://www.oceanexpert.org/expert/26813 -https://www.oceanexpert.org/expert/26814 -https://www.oceanexpert.org/expert/26815 -https://www.oceanexpert.org/expert/26816 -https://www.oceanexpert.org/expert/26817 -https://www.oceanexpert.org/expert/26819 -https://www.oceanexpert.org/expert/26820 -https://www.oceanexpert.org/expert/26821 -https://www.oceanexpert.org/expert/26823 -https://www.oceanexpert.org/expert/26825 -https://www.oceanexpert.org/expert/26826 -https://www.oceanexpert.org/expert/26827 -https://www.oceanexpert.org/expert/26828 -https://www.oceanexpert.org/expert/26831 -https://www.oceanexpert.org/expert/26832 -https://www.oceanexpert.org/expert/26833 -https://www.oceanexpert.org/expert/26834 -https://www.oceanexpert.org/expert/26835 -https://www.oceanexpert.org/expert/26836 -https://www.oceanexpert.org/expert/26837 -https://www.oceanexpert.org/expert/26838 -https://www.oceanexpert.org/expert/26839 -https://www.oceanexpert.org/expert/26840 -https://www.oceanexpert.org/expert/26841 -https://www.oceanexpert.org/expert/26842 -https://www.oceanexpert.org/expert/26843 -https://www.oceanexpert.org/expert/26844 -https://www.oceanexpert.org/expert/26845 -https://www.oceanexpert.org/expert/26848 -https://www.oceanexpert.org/expert/26849 -https://www.oceanexpert.org/expert/26850 -https://www.oceanexpert.org/expert/26851 -https://www.oceanexpert.org/expert/26852 -https://www.oceanexpert.org/expert/26853 -https://www.oceanexpert.org/expert/26854 -https://www.oceanexpert.org/expert/26855 -https://www.oceanexpert.org/expert/26856 -https://www.oceanexpert.org/expert/26857 -https://www.oceanexpert.org/expert/26858 -https://www.oceanexpert.org/expert/26859 -https://www.oceanexpert.org/expert/26860 -https://www.oceanexpert.org/expert/26861 -https://www.oceanexpert.org/expert/26862 -https://www.oceanexpert.org/expert/26864 -https://www.oceanexpert.org/expert/26867 -https://www.oceanexpert.org/expert/26868 -https://www.oceanexpert.org/expert/26870 -https://www.oceanexpert.org/expert/26871 -https://www.oceanexpert.org/expert/26872 -https://www.oceanexpert.org/expert/26873 -https://www.oceanexpert.org/expert/26875 -https://www.oceanexpert.org/expert/26876 -https://www.oceanexpert.org/expert/26878 -https://www.oceanexpert.org/expert/26879 -https://www.oceanexpert.org/expert/26880 -https://www.oceanexpert.org/expert/26881 -https://www.oceanexpert.org/expert/26883 -https://www.oceanexpert.org/expert/26884 -https://www.oceanexpert.org/expert/26886 -https://www.oceanexpert.org/expert/26888 -https://www.oceanexpert.org/expert/26891 -https://www.oceanexpert.org/expert/26892 -https://www.oceanexpert.org/expert/26894 -https://www.oceanexpert.org/expert/26895 -https://www.oceanexpert.org/expert/26896 -https://www.oceanexpert.org/expert/26897 -https://www.oceanexpert.org/expert/26898 -https://www.oceanexpert.org/expert/26899 -https://www.oceanexpert.org/expert/26900 -https://www.oceanexpert.org/expert/26901 -https://www.oceanexpert.org/expert/26903 -https://www.oceanexpert.org/expert/26904 -https://www.oceanexpert.org/expert/26905 -https://www.oceanexpert.org/expert/26906 -https://www.oceanexpert.org/expert/26907 -https://www.oceanexpert.org/expert/26908 -https://www.oceanexpert.org/expert/26910 -https://www.oceanexpert.org/expert/26912 -https://www.oceanexpert.org/expert/26913 -https://www.oceanexpert.org/expert/26914 -https://www.oceanexpert.org/expert/26915 -https://www.oceanexpert.org/expert/26916 -https://www.oceanexpert.org/expert/26919 -https://www.oceanexpert.org/expert/26920 -https://www.oceanexpert.org/expert/26923 -https://www.oceanexpert.org/expert/26925 -https://www.oceanexpert.org/expert/26927 -https://www.oceanexpert.org/expert/26930 -https://www.oceanexpert.org/expert/26931 -https://www.oceanexpert.org/expert/26932 -https://www.oceanexpert.org/expert/26933 -https://www.oceanexpert.org/expert/26934 -https://www.oceanexpert.org/expert/26935 -https://www.oceanexpert.org/expert/26936 -https://www.oceanexpert.org/expert/26937 -https://www.oceanexpert.org/expert/26939 -https://www.oceanexpert.org/expert/26940 -https://www.oceanexpert.org/expert/26941 -https://www.oceanexpert.org/expert/26942 -https://www.oceanexpert.org/expert/26943 -https://www.oceanexpert.org/expert/26944 -https://www.oceanexpert.org/expert/26945 -https://www.oceanexpert.org/expert/26946 -https://www.oceanexpert.org/expert/26947 -https://www.oceanexpert.org/expert/26948 -https://www.oceanexpert.org/expert/26949 -https://www.oceanexpert.org/expert/26950 -https://www.oceanexpert.org/expert/26951 -https://www.oceanexpert.org/expert/26954 -https://www.oceanexpert.org/expert/26959 -https://www.oceanexpert.org/expert/26960 -https://www.oceanexpert.org/expert/26961 -https://www.oceanexpert.org/expert/26963 -https://www.oceanexpert.org/expert/26964 -https://www.oceanexpert.org/expert/26965 -https://www.oceanexpert.org/expert/26966 -https://www.oceanexpert.org/expert/26967 -https://www.oceanexpert.org/expert/26969 -https://www.oceanexpert.org/expert/26970 -https://www.oceanexpert.org/expert/26972 -https://www.oceanexpert.org/expert/26974 -https://www.oceanexpert.org/expert/26976 -https://www.oceanexpert.org/expert/26977 -https://www.oceanexpert.org/expert/26980 -https://www.oceanexpert.org/expert/26986 -https://www.oceanexpert.org/expert/26988 -https://www.oceanexpert.org/expert/26990 -https://www.oceanexpert.org/expert/26991 -https://www.oceanexpert.org/expert/26992 -https://www.oceanexpert.org/expert/26996 -https://www.oceanexpert.org/expert/26997 -https://www.oceanexpert.org/expert/26998 -https://www.oceanexpert.org/expert/26999 -https://www.oceanexpert.org/expert/27000 -https://www.oceanexpert.org/expert/27002 -https://www.oceanexpert.org/expert/27003 -https://www.oceanexpert.org/expert/27004 -https://www.oceanexpert.org/expert/27007 -https://www.oceanexpert.org/expert/27011 -https://www.oceanexpert.org/expert/27012 -https://www.oceanexpert.org/expert/27013 -https://www.oceanexpert.org/expert/27014 -https://www.oceanexpert.org/expert/27016 -https://www.oceanexpert.org/expert/27017 -https://www.oceanexpert.org/expert/27018 -https://www.oceanexpert.org/expert/27019 -https://www.oceanexpert.org/expert/27020 -https://www.oceanexpert.org/expert/27021 -https://www.oceanexpert.org/expert/27022 -https://www.oceanexpert.org/expert/27023 -https://www.oceanexpert.org/expert/27025 -https://www.oceanexpert.org/expert/27026 -https://www.oceanexpert.org/expert/27027 -https://www.oceanexpert.org/expert/27029 -https://www.oceanexpert.org/expert/27030 -https://www.oceanexpert.org/expert/27031 -https://www.oceanexpert.org/expert/27032 -https://www.oceanexpert.org/expert/27033 -https://www.oceanexpert.org/expert/27034 -https://www.oceanexpert.org/expert/27036 -https://www.oceanexpert.org/expert/27037 -https://www.oceanexpert.org/expert/27040 -https://www.oceanexpert.org/expert/27042 -https://www.oceanexpert.org/expert/27043 -https://www.oceanexpert.org/expert/27044 -https://www.oceanexpert.org/expert/27045 -https://www.oceanexpert.org/expert/27046 -https://www.oceanexpert.org/expert/27047 -https://www.oceanexpert.org/expert/27048 -https://www.oceanexpert.org/expert/27049 -https://www.oceanexpert.org/expert/27050 -https://www.oceanexpert.org/expert/27051 -https://www.oceanexpert.org/expert/27052 -https://www.oceanexpert.org/expert/27054 -https://www.oceanexpert.org/expert/27055 -https://www.oceanexpert.org/expert/27056 -https://www.oceanexpert.org/expert/27058 -https://www.oceanexpert.org/expert/27059 -https://www.oceanexpert.org/expert/27060 -https://www.oceanexpert.org/expert/27061 -https://www.oceanexpert.org/expert/27064 -https://www.oceanexpert.org/expert/27065 -https://www.oceanexpert.org/expert/27067 -https://www.oceanexpert.org/expert/27068 -https://www.oceanexpert.org/expert/27069 -https://www.oceanexpert.org/expert/27070 -https://www.oceanexpert.org/expert/27073 -https://www.oceanexpert.org/expert/27074 -https://www.oceanexpert.org/expert/27075 -https://www.oceanexpert.org/expert/27076 -https://www.oceanexpert.org/expert/27077 -https://www.oceanexpert.org/expert/27080 -https://www.oceanexpert.org/expert/27081 -https://www.oceanexpert.org/expert/27082 -https://www.oceanexpert.org/expert/27083 -https://www.oceanexpert.org/expert/27084 -https://www.oceanexpert.org/expert/27085 -https://www.oceanexpert.org/expert/27089 -https://www.oceanexpert.org/expert/27090 -https://www.oceanexpert.org/expert/27091 -https://www.oceanexpert.org/expert/27092 -https://www.oceanexpert.org/expert/27093 -https://www.oceanexpert.org/expert/27095 -https://www.oceanexpert.org/expert/27096 -https://www.oceanexpert.org/expert/27098 -https://www.oceanexpert.org/expert/27099 -https://www.oceanexpert.org/expert/27100 -https://www.oceanexpert.org/expert/27101 -https://www.oceanexpert.org/expert/27102 -https://www.oceanexpert.org/expert/27103 -https://www.oceanexpert.org/expert/27104 -https://www.oceanexpert.org/expert/27106 -https://www.oceanexpert.org/expert/27107 -https://www.oceanexpert.org/expert/27108 -https://www.oceanexpert.org/expert/27109 -https://www.oceanexpert.org/expert/27110 -https://www.oceanexpert.org/expert/27111 -https://www.oceanexpert.org/expert/27114 -https://www.oceanexpert.org/expert/27115 -https://www.oceanexpert.org/expert/27116 -https://www.oceanexpert.org/expert/27118 -https://www.oceanexpert.org/expert/27119 -https://www.oceanexpert.org/expert/27121 -https://www.oceanexpert.org/expert/27122 -https://www.oceanexpert.org/expert/27123 -https://www.oceanexpert.org/expert/27126 -https://www.oceanexpert.org/expert/27129 -https://www.oceanexpert.org/expert/27130 -https://www.oceanexpert.org/expert/27131 -https://www.oceanexpert.org/expert/27132 -https://www.oceanexpert.org/expert/27133 -https://www.oceanexpert.org/expert/27134 -https://www.oceanexpert.org/expert/27135 -https://www.oceanexpert.org/expert/27137 -https://www.oceanexpert.org/expert/27140 -https://www.oceanexpert.org/expert/27142 -https://www.oceanexpert.org/expert/27147 -https://www.oceanexpert.org/expert/27149 -https://www.oceanexpert.org/expert/27151 -https://www.oceanexpert.org/expert/27152 -https://www.oceanexpert.org/expert/27154 -https://www.oceanexpert.org/expert/27155 -https://www.oceanexpert.org/expert/27156 -https://www.oceanexpert.org/expert/27157 -https://www.oceanexpert.org/expert/27158 -https://www.oceanexpert.org/expert/27159 -https://www.oceanexpert.org/expert/27161 -https://www.oceanexpert.org/expert/27162 -https://www.oceanexpert.org/expert/27163 -https://www.oceanexpert.org/expert/27164 -https://www.oceanexpert.org/expert/27165 -https://www.oceanexpert.org/expert/27166 -https://www.oceanexpert.org/expert/27167 -https://www.oceanexpert.org/expert/27168 -https://www.oceanexpert.org/expert/27169 -https://www.oceanexpert.org/expert/27170 -https://www.oceanexpert.org/expert/27171 -https://www.oceanexpert.org/expert/27172 -https://www.oceanexpert.org/expert/27173 -https://www.oceanexpert.org/expert/27174 -https://www.oceanexpert.org/expert/27175 -https://www.oceanexpert.org/expert/27176 -https://www.oceanexpert.org/expert/27177 -https://www.oceanexpert.org/expert/27178 -https://www.oceanexpert.org/expert/27180 -https://www.oceanexpert.org/expert/27181 -https://www.oceanexpert.org/expert/27182 -https://www.oceanexpert.org/expert/27184 -https://www.oceanexpert.org/expert/27185 -https://www.oceanexpert.org/expert/27186 -https://www.oceanexpert.org/expert/27187 -https://www.oceanexpert.org/expert/27196 -https://www.oceanexpert.org/expert/27198 -https://www.oceanexpert.org/expert/27199 -https://www.oceanexpert.org/expert/27205 -https://www.oceanexpert.org/expert/27206 -https://www.oceanexpert.org/expert/27207 -https://www.oceanexpert.org/expert/27209 -https://www.oceanexpert.org/expert/27210 -https://www.oceanexpert.org/expert/27212 -https://www.oceanexpert.org/expert/27213 -https://www.oceanexpert.org/expert/27214 -https://www.oceanexpert.org/expert/27216 -https://www.oceanexpert.org/expert/27218 -https://www.oceanexpert.org/expert/27220 -https://www.oceanexpert.org/expert/27222 -https://www.oceanexpert.org/expert/27223 -https://www.oceanexpert.org/expert/27224 -https://www.oceanexpert.org/expert/27225 -https://www.oceanexpert.org/expert/27226 -https://www.oceanexpert.org/expert/27227 -https://www.oceanexpert.org/expert/27228 -https://www.oceanexpert.org/expert/27229 -https://www.oceanexpert.org/expert/27230 -https://www.oceanexpert.org/expert/27231 -https://www.oceanexpert.org/expert/27232 -https://www.oceanexpert.org/expert/27233 -https://www.oceanexpert.org/expert/27234 -https://www.oceanexpert.org/expert/27235 -https://www.oceanexpert.org/expert/27236 -https://www.oceanexpert.org/expert/27237 -https://www.oceanexpert.org/expert/27238 -https://www.oceanexpert.org/expert/27239 -https://www.oceanexpert.org/expert/27242 -https://www.oceanexpert.org/expert/27243 -https://www.oceanexpert.org/expert/27244 -https://www.oceanexpert.org/expert/27245 -https://www.oceanexpert.org/expert/27248 -https://www.oceanexpert.org/expert/27249 -https://www.oceanexpert.org/expert/27250 -https://www.oceanexpert.org/expert/27251 -https://www.oceanexpert.org/expert/27252 -https://www.oceanexpert.org/expert/27253 -https://www.oceanexpert.org/expert/27254 -https://www.oceanexpert.org/expert/27255 -https://www.oceanexpert.org/expert/27256 -https://www.oceanexpert.org/expert/27257 -https://www.oceanexpert.org/expert/27258 -https://www.oceanexpert.org/expert/27259 -https://www.oceanexpert.org/expert/27260 -https://www.oceanexpert.org/expert/27261 -https://www.oceanexpert.org/expert/27262 -https://www.oceanexpert.org/expert/27264 -https://www.oceanexpert.org/expert/27265 -https://www.oceanexpert.org/expert/27266 -https://www.oceanexpert.org/expert/27267 -https://www.oceanexpert.org/expert/27268 -https://www.oceanexpert.org/expert/27269 -https://www.oceanexpert.org/expert/27272 -https://www.oceanexpert.org/expert/27273 -https://www.oceanexpert.org/expert/27274 -https://www.oceanexpert.org/expert/27276 -https://www.oceanexpert.org/expert/27277 -https://www.oceanexpert.org/expert/27279 -https://www.oceanexpert.org/expert/27280 -https://www.oceanexpert.org/expert/27281 -https://www.oceanexpert.org/expert/27283 -https://www.oceanexpert.org/expert/27285 -https://www.oceanexpert.org/expert/27286 -https://www.oceanexpert.org/expert/27287 -https://www.oceanexpert.org/expert/27288 -https://www.oceanexpert.org/expert/27289 -https://www.oceanexpert.org/expert/27290 -https://www.oceanexpert.org/expert/27291 -https://www.oceanexpert.org/expert/27292 -https://www.oceanexpert.org/expert/27293 -https://www.oceanexpert.org/expert/27294 -https://www.oceanexpert.org/expert/27295 -https://www.oceanexpert.org/expert/27297 -https://www.oceanexpert.org/expert/27298 -https://www.oceanexpert.org/expert/27300 -https://www.oceanexpert.org/expert/27301 -https://www.oceanexpert.org/expert/27302 -https://www.oceanexpert.org/expert/27303 -https://www.oceanexpert.org/expert/27304 -https://www.oceanexpert.org/expert/27305 -https://www.oceanexpert.org/expert/27306 -https://www.oceanexpert.org/expert/27307 -https://www.oceanexpert.org/expert/27308 -https://www.oceanexpert.org/expert/27309 -https://www.oceanexpert.org/expert/27310 -https://www.oceanexpert.org/expert/27311 -https://www.oceanexpert.org/expert/27312 -https://www.oceanexpert.org/expert/27313 -https://www.oceanexpert.org/expert/27315 -https://www.oceanexpert.org/expert/27316 -https://www.oceanexpert.org/expert/27317 -https://www.oceanexpert.org/expert/27320 -https://www.oceanexpert.org/expert/27321 -https://www.oceanexpert.org/expert/27322 -https://www.oceanexpert.org/expert/27323 -https://www.oceanexpert.org/expert/27324 -https://www.oceanexpert.org/expert/27326 -https://www.oceanexpert.org/expert/27327 -https://www.oceanexpert.org/expert/27328 -https://www.oceanexpert.org/expert/27329 -https://www.oceanexpert.org/expert/27330 -https://www.oceanexpert.org/expert/27331 -https://www.oceanexpert.org/expert/27332 -https://www.oceanexpert.org/expert/27333 -https://www.oceanexpert.org/expert/27334 -https://www.oceanexpert.org/expert/27335 -https://www.oceanexpert.org/expert/27336 -https://www.oceanexpert.org/expert/27337 -https://www.oceanexpert.org/expert/27339 -https://www.oceanexpert.org/expert/27341 -https://www.oceanexpert.org/expert/27342 -https://www.oceanexpert.org/expert/27343 -https://www.oceanexpert.org/expert/27344 -https://www.oceanexpert.org/expert/27347 -https://www.oceanexpert.org/expert/27348 -https://www.oceanexpert.org/expert/27350 -https://www.oceanexpert.org/expert/27351 -https://www.oceanexpert.org/expert/27352 -https://www.oceanexpert.org/expert/27355 -https://www.oceanexpert.org/expert/27356 -https://www.oceanexpert.org/expert/27357 -https://www.oceanexpert.org/expert/27358 -https://www.oceanexpert.org/expert/27359 -https://www.oceanexpert.org/expert/27360 -https://www.oceanexpert.org/expert/27362 -https://www.oceanexpert.org/expert/27363 -https://www.oceanexpert.org/expert/27364 -https://www.oceanexpert.org/expert/27365 -https://www.oceanexpert.org/expert/27366 -https://www.oceanexpert.org/expert/27367 -https://www.oceanexpert.org/expert/27368 -https://www.oceanexpert.org/expert/27369 -https://www.oceanexpert.org/expert/27370 -https://www.oceanexpert.org/expert/27371 -https://www.oceanexpert.org/expert/27373 -https://www.oceanexpert.org/expert/27374 -https://www.oceanexpert.org/expert/27375 -https://www.oceanexpert.org/expert/27376 -https://www.oceanexpert.org/expert/27377 -https://www.oceanexpert.org/expert/27378 -https://www.oceanexpert.org/expert/27381 -https://www.oceanexpert.org/expert/27383 -https://www.oceanexpert.org/expert/27384 -https://www.oceanexpert.org/expert/27385 -https://www.oceanexpert.org/expert/27387 -https://www.oceanexpert.org/expert/27388 -https://www.oceanexpert.org/expert/27390 -https://www.oceanexpert.org/expert/27391 -https://www.oceanexpert.org/expert/27392 -https://www.oceanexpert.org/expert/27393 -https://www.oceanexpert.org/expert/27394 -https://www.oceanexpert.org/expert/27395 -https://www.oceanexpert.org/expert/27396 -https://www.oceanexpert.org/expert/27398 -https://www.oceanexpert.org/expert/27399 -https://www.oceanexpert.org/expert/27400 -https://www.oceanexpert.org/expert/27401 -https://www.oceanexpert.org/expert/27402 -https://www.oceanexpert.org/expert/27403 -https://www.oceanexpert.org/expert/27404 -https://www.oceanexpert.org/expert/27405 -https://www.oceanexpert.org/expert/27406 -https://www.oceanexpert.org/expert/27407 -https://www.oceanexpert.org/expert/27408 -https://www.oceanexpert.org/expert/27409 -https://www.oceanexpert.org/expert/27410 -https://www.oceanexpert.org/expert/27413 -https://www.oceanexpert.org/expert/27414 -https://www.oceanexpert.org/expert/27415 -https://www.oceanexpert.org/expert/27418 -https://www.oceanexpert.org/expert/27419 -https://www.oceanexpert.org/expert/27420 -https://www.oceanexpert.org/expert/27422 -https://www.oceanexpert.org/expert/27423 -https://www.oceanexpert.org/expert/27424 -https://www.oceanexpert.org/expert/27425 -https://www.oceanexpert.org/expert/27426 -https://www.oceanexpert.org/expert/27427 -https://www.oceanexpert.org/expert/27428 -https://www.oceanexpert.org/expert/27430 -https://www.oceanexpert.org/expert/27431 -https://www.oceanexpert.org/expert/27432 -https://www.oceanexpert.org/expert/27433 -https://www.oceanexpert.org/expert/27434 -https://www.oceanexpert.org/expert/27435 -https://www.oceanexpert.org/expert/27436 -https://www.oceanexpert.org/expert/27438 -https://www.oceanexpert.org/expert/27440 -https://www.oceanexpert.org/expert/27441 -https://www.oceanexpert.org/expert/27442 -https://www.oceanexpert.org/expert/27443 -https://www.oceanexpert.org/expert/27444 -https://www.oceanexpert.org/expert/27445 -https://www.oceanexpert.org/expert/27446 -https://www.oceanexpert.org/expert/27448 -https://www.oceanexpert.org/expert/27449 -https://www.oceanexpert.org/expert/27450 -https://www.oceanexpert.org/expert/27451 -https://www.oceanexpert.org/expert/27452 -https://www.oceanexpert.org/expert/27454 -https://www.oceanexpert.org/expert/27455 -https://www.oceanexpert.org/expert/27456 -https://www.oceanexpert.org/expert/27457 -https://www.oceanexpert.org/expert/27458 -https://www.oceanexpert.org/expert/27459 -https://www.oceanexpert.org/expert/27462 -https://www.oceanexpert.org/expert/27463 -https://www.oceanexpert.org/expert/27468 -https://www.oceanexpert.org/expert/27470 -https://www.oceanexpert.org/expert/27471 -https://www.oceanexpert.org/expert/27472 -https://www.oceanexpert.org/expert/27473 -https://www.oceanexpert.org/expert/27474 -https://www.oceanexpert.org/expert/27475 -https://www.oceanexpert.org/expert/27476 -https://www.oceanexpert.org/expert/27477 -https://www.oceanexpert.org/expert/27478 -https://www.oceanexpert.org/expert/27479 -https://www.oceanexpert.org/expert/27480 -https://www.oceanexpert.org/expert/27481 -https://www.oceanexpert.org/expert/27482 -https://www.oceanexpert.org/expert/27483 -https://www.oceanexpert.org/expert/27484 -https://www.oceanexpert.org/expert/27485 -https://www.oceanexpert.org/expert/27486 -https://www.oceanexpert.org/expert/27487 -https://www.oceanexpert.org/expert/27488 -https://www.oceanexpert.org/expert/27489 -https://www.oceanexpert.org/expert/27490 -https://www.oceanexpert.org/expert/27492 -https://www.oceanexpert.org/expert/27494 -https://www.oceanexpert.org/expert/27495 -https://www.oceanexpert.org/expert/27496 -https://www.oceanexpert.org/expert/27497 -https://www.oceanexpert.org/expert/27498 -https://www.oceanexpert.org/expert/27499 -https://www.oceanexpert.org/expert/27500 -https://www.oceanexpert.org/expert/27501 -https://www.oceanexpert.org/expert/27503 -https://www.oceanexpert.org/expert/27506 -https://www.oceanexpert.org/expert/27507 -https://www.oceanexpert.org/expert/27508 -https://www.oceanexpert.org/expert/27509 -https://www.oceanexpert.org/expert/27511 -https://www.oceanexpert.org/expert/27512 -https://www.oceanexpert.org/expert/27513 -https://www.oceanexpert.org/expert/27514 -https://www.oceanexpert.org/expert/27515 -https://www.oceanexpert.org/expert/27516 -https://www.oceanexpert.org/expert/27517 -https://www.oceanexpert.org/expert/27519 -https://www.oceanexpert.org/expert/27520 -https://www.oceanexpert.org/expert/27521 -https://www.oceanexpert.org/expert/27522 -https://www.oceanexpert.org/expert/27523 -https://www.oceanexpert.org/expert/27524 -https://www.oceanexpert.org/expert/27525 -https://www.oceanexpert.org/expert/27526 -https://www.oceanexpert.org/expert/27527 -https://www.oceanexpert.org/expert/27529 -https://www.oceanexpert.org/expert/27531 -https://www.oceanexpert.org/expert/27532 -https://www.oceanexpert.org/expert/27533 -https://www.oceanexpert.org/expert/27534 -https://www.oceanexpert.org/expert/27535 -https://www.oceanexpert.org/expert/27536 -https://www.oceanexpert.org/expert/27538 -https://www.oceanexpert.org/expert/27539 -https://www.oceanexpert.org/expert/27540 -https://www.oceanexpert.org/expert/27541 -https://www.oceanexpert.org/expert/27543 -https://www.oceanexpert.org/expert/27544 -https://www.oceanexpert.org/expert/27546 -https://www.oceanexpert.org/expert/27548 -https://www.oceanexpert.org/expert/27549 -https://www.oceanexpert.org/expert/27551 -https://www.oceanexpert.org/expert/27552 -https://www.oceanexpert.org/expert/27554 -https://www.oceanexpert.org/expert/27555 -https://www.oceanexpert.org/expert/27556 -https://www.oceanexpert.org/expert/27557 -https://www.oceanexpert.org/expert/27558 -https://www.oceanexpert.org/expert/27560 -https://www.oceanexpert.org/expert/27561 -https://www.oceanexpert.org/expert/27562 -https://www.oceanexpert.org/expert/27563 -https://www.oceanexpert.org/expert/27564 -https://www.oceanexpert.org/expert/27565 -https://www.oceanexpert.org/expert/27566 -https://www.oceanexpert.org/expert/27567 -https://www.oceanexpert.org/expert/27568 -https://www.oceanexpert.org/expert/27569 -https://www.oceanexpert.org/expert/27570 -https://www.oceanexpert.org/expert/27571 -https://www.oceanexpert.org/expert/27572 -https://www.oceanexpert.org/expert/27575 -https://www.oceanexpert.org/expert/27576 -https://www.oceanexpert.org/expert/27577 -https://www.oceanexpert.org/expert/27578 -https://www.oceanexpert.org/expert/27579 -https://www.oceanexpert.org/expert/27580 -https://www.oceanexpert.org/expert/27581 -https://www.oceanexpert.org/expert/27582 -https://www.oceanexpert.org/expert/27583 -https://www.oceanexpert.org/expert/27584 -https://www.oceanexpert.org/expert/27586 -https://www.oceanexpert.org/expert/27588 -https://www.oceanexpert.org/expert/27589 -https://www.oceanexpert.org/expert/27591 -https://www.oceanexpert.org/expert/27592 -https://www.oceanexpert.org/expert/27593 -https://www.oceanexpert.org/expert/27594 -https://www.oceanexpert.org/expert/27595 -https://www.oceanexpert.org/expert/27598 -https://www.oceanexpert.org/expert/27600 -https://www.oceanexpert.org/expert/27601 -https://www.oceanexpert.org/expert/27602 -https://www.oceanexpert.org/expert/27604 -https://www.oceanexpert.org/expert/27607 -https://www.oceanexpert.org/expert/27608 -https://www.oceanexpert.org/expert/27610 -https://www.oceanexpert.org/expert/27616 -https://www.oceanexpert.org/expert/27617 -https://www.oceanexpert.org/expert/27618 -https://www.oceanexpert.org/expert/27621 -https://www.oceanexpert.org/expert/27622 -https://www.oceanexpert.org/expert/27625 -https://www.oceanexpert.org/expert/27629 -https://www.oceanexpert.org/expert/27630 -https://www.oceanexpert.org/expert/27631 -https://www.oceanexpert.org/expert/27632 -https://www.oceanexpert.org/expert/27633 -https://www.oceanexpert.org/expert/27636 -https://www.oceanexpert.org/expert/27637 -https://www.oceanexpert.org/expert/27641 -https://www.oceanexpert.org/expert/27644 -https://www.oceanexpert.org/expert/27648 -https://www.oceanexpert.org/expert/27650 -https://www.oceanexpert.org/expert/27659 -https://www.oceanexpert.org/expert/27661 -https://www.oceanexpert.org/expert/27662 -https://www.oceanexpert.org/expert/27663 -https://www.oceanexpert.org/expert/27664 -https://www.oceanexpert.org/expert/27665 -https://www.oceanexpert.org/expert/27668 -https://www.oceanexpert.org/expert/27670 -https://www.oceanexpert.org/expert/27671 -https://www.oceanexpert.org/expert/27672 -https://www.oceanexpert.org/expert/27674 -https://www.oceanexpert.org/expert/27676 -https://www.oceanexpert.org/expert/27677 -https://www.oceanexpert.org/expert/27678 -https://www.oceanexpert.org/expert/27679 -https://www.oceanexpert.org/expert/27687 -https://www.oceanexpert.org/expert/27690 -https://www.oceanexpert.org/expert/27691 -https://www.oceanexpert.org/expert/27696 -https://www.oceanexpert.org/expert/27702 -https://www.oceanexpert.org/expert/27703 -https://www.oceanexpert.org/expert/27709 -https://www.oceanexpert.org/expert/27710 -https://www.oceanexpert.org/expert/27711 -https://www.oceanexpert.org/expert/27718 -https://www.oceanexpert.org/expert/27720 -https://www.oceanexpert.org/expert/27723 -https://www.oceanexpert.org/expert/27725 -https://www.oceanexpert.org/expert/27726 -https://www.oceanexpert.org/expert/27729 -https://www.oceanexpert.org/expert/27730 -https://www.oceanexpert.org/expert/27731 -https://www.oceanexpert.org/expert/27735 -https://www.oceanexpert.org/expert/27743 -https://www.oceanexpert.org/expert/27744 -https://www.oceanexpert.org/expert/27749 -https://www.oceanexpert.org/expert/27750 -https://www.oceanexpert.org/expert/27751 -https://www.oceanexpert.org/expert/27757 -https://www.oceanexpert.org/expert/27758 -https://www.oceanexpert.org/expert/27760 -https://www.oceanexpert.org/expert/27761 -https://www.oceanexpert.org/expert/27762 -https://www.oceanexpert.org/expert/27769 -https://www.oceanexpert.org/expert/27770 -https://www.oceanexpert.org/expert/27771 -https://www.oceanexpert.org/expert/27776 -https://www.oceanexpert.org/expert/27777 -https://www.oceanexpert.org/expert/27778 -https://www.oceanexpert.org/expert/27779 -https://www.oceanexpert.org/expert/27784 -https://www.oceanexpert.org/expert/27786 -https://www.oceanexpert.org/expert/27787 -https://www.oceanexpert.org/expert/27788 -https://www.oceanexpert.org/expert/27789 -https://www.oceanexpert.org/expert/27793 -https://www.oceanexpert.org/expert/27794 -https://www.oceanexpert.org/expert/27802 -https://www.oceanexpert.org/expert/27806 -https://www.oceanexpert.org/expert/27807 -https://www.oceanexpert.org/expert/27816 -https://www.oceanexpert.org/expert/27822 -https://www.oceanexpert.org/expert/27825 -https://www.oceanexpert.org/expert/27828 -https://www.oceanexpert.org/expert/27830 -https://www.oceanexpert.org/expert/27832 -https://www.oceanexpert.org/expert/27835 -https://www.oceanexpert.org/expert/27836 -https://www.oceanexpert.org/expert/27837 -https://www.oceanexpert.org/expert/27843 -https://www.oceanexpert.org/expert/27852 -https://www.oceanexpert.org/expert/27853 -https://www.oceanexpert.org/expert/27855 -https://www.oceanexpert.org/expert/27857 -https://www.oceanexpert.org/expert/27866 -https://www.oceanexpert.org/expert/27867 -https://www.oceanexpert.org/expert/27868 -https://www.oceanexpert.org/expert/27871 -https://www.oceanexpert.org/expert/27873 -https://www.oceanexpert.org/expert/27874 -https://www.oceanexpert.org/expert/27876 -https://www.oceanexpert.org/expert/27883 -https://www.oceanexpert.org/expert/27891 -https://www.oceanexpert.org/expert/27892 -https://www.oceanexpert.org/expert/27893 -https://www.oceanexpert.org/expert/27899 -https://www.oceanexpert.org/expert/27908 -https://www.oceanexpert.org/expert/27909 -https://www.oceanexpert.org/expert/27914 -https://www.oceanexpert.org/expert/27917 -https://www.oceanexpert.org/expert/27918 -https://www.oceanexpert.org/expert/27931 -https://www.oceanexpert.org/expert/27937 -https://www.oceanexpert.org/expert/27939 -https://www.oceanexpert.org/expert/27941 -https://www.oceanexpert.org/expert/27942 -https://www.oceanexpert.org/expert/27945 -https://www.oceanexpert.org/expert/27946 -https://www.oceanexpert.org/expert/27948 -https://www.oceanexpert.org/expert/27952 -https://www.oceanexpert.org/expert/27953 -https://www.oceanexpert.org/expert/27956 -https://www.oceanexpert.org/expert/27957 -https://www.oceanexpert.org/expert/27958 -https://www.oceanexpert.org/expert/27959 -https://www.oceanexpert.org/expert/27960 -https://www.oceanexpert.org/expert/27961 -https://www.oceanexpert.org/expert/27965 -https://www.oceanexpert.org/expert/27967 -https://www.oceanexpert.org/expert/27969 -https://www.oceanexpert.org/expert/27974 -https://www.oceanexpert.org/expert/27979 -https://www.oceanexpert.org/expert/27980 -https://www.oceanexpert.org/expert/27981 -https://www.oceanexpert.org/expert/27984 -https://www.oceanexpert.org/expert/27992 -https://www.oceanexpert.org/expert/27994 -https://www.oceanexpert.org/expert/27999 -https://www.oceanexpert.org/expert/28001 -https://www.oceanexpert.org/expert/28002 -https://www.oceanexpert.org/expert/28009 -https://www.oceanexpert.org/expert/28013 -https://www.oceanexpert.org/expert/28018 -https://www.oceanexpert.org/expert/28019 -https://www.oceanexpert.org/expert/28021 -https://www.oceanexpert.org/expert/28027 -https://www.oceanexpert.org/expert/28029 -https://www.oceanexpert.org/expert/28032 -https://www.oceanexpert.org/expert/28034 -https://www.oceanexpert.org/expert/28038 -https://www.oceanexpert.org/expert/28042 -https://www.oceanexpert.org/expert/28044 -https://www.oceanexpert.org/expert/28045 -https://www.oceanexpert.org/expert/28046 -https://www.oceanexpert.org/expert/28049 -https://www.oceanexpert.org/expert/28052 -https://www.oceanexpert.org/expert/28054 -https://www.oceanexpert.org/expert/28055 -https://www.oceanexpert.org/expert/28058 -https://www.oceanexpert.org/expert/28069 -https://www.oceanexpert.org/expert/28074 -https://www.oceanexpert.org/expert/28075 -https://www.oceanexpert.org/expert/28077 -https://www.oceanexpert.org/expert/28080 -https://www.oceanexpert.org/expert/28082 -https://www.oceanexpert.org/expert/28083 -https://www.oceanexpert.org/expert/28084 -https://www.oceanexpert.org/expert/28086 -https://www.oceanexpert.org/expert/28088 -https://www.oceanexpert.org/expert/28091 -https://www.oceanexpert.org/expert/28092 -https://www.oceanexpert.org/expert/28093 -https://www.oceanexpert.org/expert/28094 -https://www.oceanexpert.org/expert/28095 -https://www.oceanexpert.org/expert/28097 -https://www.oceanexpert.org/expert/28098 -https://www.oceanexpert.org/expert/28099 -https://www.oceanexpert.org/expert/28100 -https://www.oceanexpert.org/expert/28101 -https://www.oceanexpert.org/expert/28105 -https://www.oceanexpert.org/expert/28106 -https://www.oceanexpert.org/expert/28108 -https://www.oceanexpert.org/expert/28109 -https://www.oceanexpert.org/expert/28110 -https://www.oceanexpert.org/expert/28117 -https://www.oceanexpert.org/expert/28118 -https://www.oceanexpert.org/expert/28119 -https://www.oceanexpert.org/expert/28120 -https://www.oceanexpert.org/expert/28121 -https://www.oceanexpert.org/expert/28122 -https://www.oceanexpert.org/expert/28123 -https://www.oceanexpert.org/expert/28124 -https://www.oceanexpert.org/expert/28125 -https://www.oceanexpert.org/expert/28126 -https://www.oceanexpert.org/expert/28127 -https://www.oceanexpert.org/expert/28128 -https://www.oceanexpert.org/expert/28129 -https://www.oceanexpert.org/expert/28130 -https://www.oceanexpert.org/expert/28132 -https://www.oceanexpert.org/expert/28133 -https://www.oceanexpert.org/expert/28139 -https://www.oceanexpert.org/expert/28143 -https://www.oceanexpert.org/expert/28144 -https://www.oceanexpert.org/expert/28145 -https://www.oceanexpert.org/expert/28146 -https://www.oceanexpert.org/expert/28147 -https://www.oceanexpert.org/expert/28149 -https://www.oceanexpert.org/expert/28150 -https://www.oceanexpert.org/expert/28151 -https://www.oceanexpert.org/expert/28152 -https://www.oceanexpert.org/expert/28154 -https://www.oceanexpert.org/expert/28155 -https://www.oceanexpert.org/expert/28156 -https://www.oceanexpert.org/expert/28157 -https://www.oceanexpert.org/expert/28158 -https://www.oceanexpert.org/expert/28159 -https://www.oceanexpert.org/expert/28160 -https://www.oceanexpert.org/expert/28166 -https://www.oceanexpert.org/expert/28169 -https://www.oceanexpert.org/expert/28170 -https://www.oceanexpert.org/expert/28171 -https://www.oceanexpert.org/expert/28172 -https://www.oceanexpert.org/expert/28175 -https://www.oceanexpert.org/expert/28177 -https://www.oceanexpert.org/expert/28178 -https://www.oceanexpert.org/expert/28179 -https://www.oceanexpert.org/expert/28180 -https://www.oceanexpert.org/expert/28184 -https://www.oceanexpert.org/expert/28188 -https://www.oceanexpert.org/expert/28192 -https://www.oceanexpert.org/expert/28193 -https://www.oceanexpert.org/expert/28197 -https://www.oceanexpert.org/expert/28199 -https://www.oceanexpert.org/expert/28201 -https://www.oceanexpert.org/expert/28202 -https://www.oceanexpert.org/expert/28203 -https://www.oceanexpert.org/expert/28206 -https://www.oceanexpert.org/expert/28208 -https://www.oceanexpert.org/expert/28210 -https://www.oceanexpert.org/expert/28213 -https://www.oceanexpert.org/expert/28214 -https://www.oceanexpert.org/expert/28221 -https://www.oceanexpert.org/expert/28222 -https://www.oceanexpert.org/expert/28223 -https://www.oceanexpert.org/expert/28229 -https://www.oceanexpert.org/expert/28231 -https://www.oceanexpert.org/expert/28233 -https://www.oceanexpert.org/expert/28240 -https://www.oceanexpert.org/expert/28245 -https://www.oceanexpert.org/expert/28247 -https://www.oceanexpert.org/expert/28253 -https://www.oceanexpert.org/expert/28256 -https://www.oceanexpert.org/expert/28257 -https://www.oceanexpert.org/expert/28258 -https://www.oceanexpert.org/expert/28259 -https://www.oceanexpert.org/expert/28260 -https://www.oceanexpert.org/expert/28267 -https://www.oceanexpert.org/expert/28269 -https://www.oceanexpert.org/expert/28270 -https://www.oceanexpert.org/expert/28272 -https://www.oceanexpert.org/expert/28273 -https://www.oceanexpert.org/expert/28274 -https://www.oceanexpert.org/expert/28275 -https://www.oceanexpert.org/expert/28277 -https://www.oceanexpert.org/expert/28278 -https://www.oceanexpert.org/expert/28284 -https://www.oceanexpert.org/expert/28287 -https://www.oceanexpert.org/expert/28289 -https://www.oceanexpert.org/expert/28292 -https://www.oceanexpert.org/expert/28294 -https://www.oceanexpert.org/expert/28298 -https://www.oceanexpert.org/expert/28299 -https://www.oceanexpert.org/expert/28300 -https://www.oceanexpert.org/expert/28302 -https://www.oceanexpert.org/expert/28303 -https://www.oceanexpert.org/expert/28304 -https://www.oceanexpert.org/expert/28305 -https://www.oceanexpert.org/expert/28306 -https://www.oceanexpert.org/expert/28309 -https://www.oceanexpert.org/expert/28310 -https://www.oceanexpert.org/expert/28311 -https://www.oceanexpert.org/expert/28313 -https://www.oceanexpert.org/expert/28314 -https://www.oceanexpert.org/expert/28316 -https://www.oceanexpert.org/expert/28325 -https://www.oceanexpert.org/expert/28330 -https://www.oceanexpert.org/expert/28332 -https://www.oceanexpert.org/expert/28335 -https://www.oceanexpert.org/expert/28336 -https://www.oceanexpert.org/expert/28337 -https://www.oceanexpert.org/expert/28340 -https://www.oceanexpert.org/expert/28341 -https://www.oceanexpert.org/expert/28342 -https://www.oceanexpert.org/expert/28346 -https://www.oceanexpert.org/expert/28347 -https://www.oceanexpert.org/expert/28348 -https://www.oceanexpert.org/expert/28349 -https://www.oceanexpert.org/expert/28350 -https://www.oceanexpert.org/expert/28351 -https://www.oceanexpert.org/expert/28354 -https://www.oceanexpert.org/expert/28357 -https://www.oceanexpert.org/expert/28358 -https://www.oceanexpert.org/expert/28360 -https://www.oceanexpert.org/expert/28361 -https://www.oceanexpert.org/expert/28363 -https://www.oceanexpert.org/expert/28364 -https://www.oceanexpert.org/expert/28365 -https://www.oceanexpert.org/expert/28367 -https://www.oceanexpert.org/expert/28368 -https://www.oceanexpert.org/expert/28369 -https://www.oceanexpert.org/expert/28371 -https://www.oceanexpert.org/expert/28372 -https://www.oceanexpert.org/expert/28373 -https://www.oceanexpert.org/expert/28374 -https://www.oceanexpert.org/expert/28375 -https://www.oceanexpert.org/expert/28376 -https://www.oceanexpert.org/expert/28378 -https://www.oceanexpert.org/expert/28379 -https://www.oceanexpert.org/expert/28381 -https://www.oceanexpert.org/expert/28382 -https://www.oceanexpert.org/expert/28383 -https://www.oceanexpert.org/expert/28384 -https://www.oceanexpert.org/expert/28387 -https://www.oceanexpert.org/expert/28389 -https://www.oceanexpert.org/expert/28390 -https://www.oceanexpert.org/expert/28392 -https://www.oceanexpert.org/expert/28394 -https://www.oceanexpert.org/expert/28396 -https://www.oceanexpert.org/expert/28397 -https://www.oceanexpert.org/expert/28398 -https://www.oceanexpert.org/expert/28399 -https://www.oceanexpert.org/expert/28401 -https://www.oceanexpert.org/expert/28402 -https://www.oceanexpert.org/expert/28403 -https://www.oceanexpert.org/expert/28406 -https://www.oceanexpert.org/expert/28409 -https://www.oceanexpert.org/expert/28410 -https://www.oceanexpert.org/expert/28411 -https://www.oceanexpert.org/expert/28412 -https://www.oceanexpert.org/expert/28414 -https://www.oceanexpert.org/expert/28415 -https://www.oceanexpert.org/expert/28416 -https://www.oceanexpert.org/expert/28419 -https://www.oceanexpert.org/expert/28420 -https://www.oceanexpert.org/expert/28422 -https://www.oceanexpert.org/expert/28423 -https://www.oceanexpert.org/expert/28424 -https://www.oceanexpert.org/expert/28425 -https://www.oceanexpert.org/expert/28426 -https://www.oceanexpert.org/expert/28427 -https://www.oceanexpert.org/expert/28431 -https://www.oceanexpert.org/expert/28432 -https://www.oceanexpert.org/expert/28433 -https://www.oceanexpert.org/expert/28434 -https://www.oceanexpert.org/expert/28435 -https://www.oceanexpert.org/expert/28440 -https://www.oceanexpert.org/expert/28441 -https://www.oceanexpert.org/expert/28446 -https://www.oceanexpert.org/expert/28447 -https://www.oceanexpert.org/expert/28448 -https://www.oceanexpert.org/expert/28449 -https://www.oceanexpert.org/expert/28453 -https://www.oceanexpert.org/expert/28455 -https://www.oceanexpert.org/expert/28457 -https://www.oceanexpert.org/expert/28458 -https://www.oceanexpert.org/expert/28465 -https://www.oceanexpert.org/expert/28467 -https://www.oceanexpert.org/expert/28468 -https://www.oceanexpert.org/expert/28469 -https://www.oceanexpert.org/expert/28472 -https://www.oceanexpert.org/expert/28474 -https://www.oceanexpert.org/expert/28476 -https://www.oceanexpert.org/expert/28477 -https://www.oceanexpert.org/expert/28479 -https://www.oceanexpert.org/expert/28481 -https://www.oceanexpert.org/expert/28482 -https://www.oceanexpert.org/expert/28485 -https://www.oceanexpert.org/expert/28486 -https://www.oceanexpert.org/expert/28488 -https://www.oceanexpert.org/expert/28489 -https://www.oceanexpert.org/expert/28491 -https://www.oceanexpert.org/expert/28492 -https://www.oceanexpert.org/expert/28493 -https://www.oceanexpert.org/expert/28494 -https://www.oceanexpert.org/expert/28495 -https://www.oceanexpert.org/expert/28499 -https://www.oceanexpert.org/expert/28500 -https://www.oceanexpert.org/expert/28501 -https://www.oceanexpert.org/expert/28502 -https://www.oceanexpert.org/expert/28505 -https://www.oceanexpert.org/expert/28506 -https://www.oceanexpert.org/expert/28507 -https://www.oceanexpert.org/expert/28571 -https://www.oceanexpert.org/expert/28616 -https://www.oceanexpert.org/expert/28645 -https://www.oceanexpert.org/expert/28693 -https://www.oceanexpert.org/expert/28695 -https://www.oceanexpert.org/expert/28718 -https://www.oceanexpert.org/expert/28755 -https://www.oceanexpert.org/expert/28785 -https://www.oceanexpert.org/expert/28787 -https://www.oceanexpert.org/expert/28788 -https://www.oceanexpert.org/expert/28812 -https://www.oceanexpert.org/expert/28814 -https://www.oceanexpert.org/expert/28815 -https://www.oceanexpert.org/expert/28816 -https://www.oceanexpert.org/expert/28818 -https://www.oceanexpert.org/expert/28820 -https://www.oceanexpert.org/expert/28821 -https://www.oceanexpert.org/expert/28823 -https://www.oceanexpert.org/expert/28825 -https://www.oceanexpert.org/expert/28829 -https://www.oceanexpert.org/expert/28841 -https://www.oceanexpert.org/expert/28843 -https://www.oceanexpert.org/expert/28845 -https://www.oceanexpert.org/expert/28848 -https://www.oceanexpert.org/expert/28850 -https://www.oceanexpert.org/expert/28853 -https://www.oceanexpert.org/expert/28859 -https://www.oceanexpert.org/expert/28865 -https://www.oceanexpert.org/expert/28868 -https://www.oceanexpert.org/expert/28869 -https://www.oceanexpert.org/expert/28872 -https://www.oceanexpert.org/expert/28873 -https://www.oceanexpert.org/expert/28880 -https://www.oceanexpert.org/expert/28882 -https://www.oceanexpert.org/expert/28886 -https://www.oceanexpert.org/expert/28887 -https://www.oceanexpert.org/expert/28895 -https://www.oceanexpert.org/expert/28908 -https://www.oceanexpert.org/expert/28921 -https://www.oceanexpert.org/expert/28927 -https://www.oceanexpert.org/expert/28931 -https://www.oceanexpert.org/expert/28941 -https://www.oceanexpert.org/expert/28956 -https://www.oceanexpert.org/expert/28959 -https://www.oceanexpert.org/expert/28964 -https://www.oceanexpert.org/expert/28965 -https://www.oceanexpert.org/expert/28966 -https://www.oceanexpert.org/expert/28967 -https://www.oceanexpert.org/expert/28972 -https://www.oceanexpert.org/expert/28973 -https://www.oceanexpert.org/expert/28979 -https://www.oceanexpert.org/expert/28980 -https://www.oceanexpert.org/expert/28984 -https://www.oceanexpert.org/expert/28990 -https://www.oceanexpert.org/expert/28992 -https://www.oceanexpert.org/expert/29008 -https://www.oceanexpert.org/expert/29009 -https://www.oceanexpert.org/expert/29011 -https://www.oceanexpert.org/expert/29017 -https://www.oceanexpert.org/expert/29021 -https://www.oceanexpert.org/expert/29024 -https://www.oceanexpert.org/expert/29026 -https://www.oceanexpert.org/expert/29035 -https://www.oceanexpert.org/expert/29054 -https://www.oceanexpert.org/expert/29055 -https://www.oceanexpert.org/expert/29057 -https://www.oceanexpert.org/expert/29058 -https://www.oceanexpert.org/expert/29059 -https://www.oceanexpert.org/expert/29062 -https://www.oceanexpert.org/expert/29075 -https://www.oceanexpert.org/expert/29076 -https://www.oceanexpert.org/expert/29078 -https://www.oceanexpert.org/expert/29080 -https://www.oceanexpert.org/expert/29081 -https://www.oceanexpert.org/expert/29085 -https://www.oceanexpert.org/expert/29091 -https://www.oceanexpert.org/expert/29093 -https://www.oceanexpert.org/expert/29094 -https://www.oceanexpert.org/expert/29096 -https://www.oceanexpert.org/expert/29097 -https://www.oceanexpert.org/expert/29098 -https://www.oceanexpert.org/expert/29099 -https://www.oceanexpert.org/expert/29102 -https://www.oceanexpert.org/expert/29106 -https://www.oceanexpert.org/expert/29110 -https://www.oceanexpert.org/expert/29111 -https://www.oceanexpert.org/expert/29112 -https://www.oceanexpert.org/expert/29120 -https://www.oceanexpert.org/expert/29121 -https://www.oceanexpert.org/expert/29122 -https://www.oceanexpert.org/expert/29123 -https://www.oceanexpert.org/expert/29124 -https://www.oceanexpert.org/expert/29125 -https://www.oceanexpert.org/expert/29126 -https://www.oceanexpert.org/expert/29127 -https://www.oceanexpert.org/expert/29128 -https://www.oceanexpert.org/expert/29129 -https://www.oceanexpert.org/expert/29130 -https://www.oceanexpert.org/expert/29131 -https://www.oceanexpert.org/expert/29133 -https://www.oceanexpert.org/expert/29135 -https://www.oceanexpert.org/expert/29136 -https://www.oceanexpert.org/expert/29137 -https://www.oceanexpert.org/expert/29138 -https://www.oceanexpert.org/expert/29139 -https://www.oceanexpert.org/expert/29140 -https://www.oceanexpert.org/expert/29141 -https://www.oceanexpert.org/expert/29142 -https://www.oceanexpert.org/expert/29143 -https://www.oceanexpert.org/expert/29145 -https://www.oceanexpert.org/expert/29146 -https://www.oceanexpert.org/expert/29147 -https://www.oceanexpert.org/expert/29148 -https://www.oceanexpert.org/expert/29155 -https://www.oceanexpert.org/expert/29156 -https://www.oceanexpert.org/expert/29158 -https://www.oceanexpert.org/expert/29169 -https://www.oceanexpert.org/expert/29172 -https://www.oceanexpert.org/expert/29175 -https://www.oceanexpert.org/expert/29176 -https://www.oceanexpert.org/expert/29177 -https://www.oceanexpert.org/expert/29180 -https://www.oceanexpert.org/expert/29183 -https://www.oceanexpert.org/expert/29190 -https://www.oceanexpert.org/expert/29191 -https://www.oceanexpert.org/expert/29195 -https://www.oceanexpert.org/expert/29197 -https://www.oceanexpert.org/expert/29200 -https://www.oceanexpert.org/expert/29201 -https://www.oceanexpert.org/expert/29202 -https://www.oceanexpert.org/expert/29205 -https://www.oceanexpert.org/expert/29210 -https://www.oceanexpert.org/expert/29214 -https://www.oceanexpert.org/expert/29215 -https://www.oceanexpert.org/expert/29225 -https://www.oceanexpert.org/expert/29227 -https://www.oceanexpert.org/expert/29232 -https://www.oceanexpert.org/expert/29233 -https://www.oceanexpert.org/expert/29234 -https://www.oceanexpert.org/expert/29238 -https://www.oceanexpert.org/expert/29241 -https://www.oceanexpert.org/expert/29243 -https://www.oceanexpert.org/expert/29246 -https://www.oceanexpert.org/expert/29259 -https://www.oceanexpert.org/expert/29267 -https://www.oceanexpert.org/expert/29268 -https://www.oceanexpert.org/expert/29270 -https://www.oceanexpert.org/expert/29272 -https://www.oceanexpert.org/expert/29277 -https://www.oceanexpert.org/expert/29278 -https://www.oceanexpert.org/expert/29279 -https://www.oceanexpert.org/expert/29286 -https://www.oceanexpert.org/expert/29297 -https://www.oceanexpert.org/expert/29302 -https://www.oceanexpert.org/expert/29303 -https://www.oceanexpert.org/expert/29308 -https://www.oceanexpert.org/expert/29311 -https://www.oceanexpert.org/expert/29317 -https://www.oceanexpert.org/expert/29318 -https://www.oceanexpert.org/expert/29322 -https://www.oceanexpert.org/expert/29323 -https://www.oceanexpert.org/expert/29332 -https://www.oceanexpert.org/expert/29340 -https://www.oceanexpert.org/expert/29341 -https://www.oceanexpert.org/expert/29356 -https://www.oceanexpert.org/expert/29357 -https://www.oceanexpert.org/expert/29359 -https://www.oceanexpert.org/expert/29360 -https://www.oceanexpert.org/expert/29361 -https://www.oceanexpert.org/expert/29363 -https://www.oceanexpert.org/expert/29365 -https://www.oceanexpert.org/expert/29366 -https://www.oceanexpert.org/expert/29367 -https://www.oceanexpert.org/expert/29368 -https://www.oceanexpert.org/expert/29370 -https://www.oceanexpert.org/expert/29371 -https://www.oceanexpert.org/expert/29373 -https://www.oceanexpert.org/expert/29374 -https://www.oceanexpert.org/expert/29375 -https://www.oceanexpert.org/expert/29376 -https://www.oceanexpert.org/expert/29377 -https://www.oceanexpert.org/expert/29379 -https://www.oceanexpert.org/expert/29380 -https://www.oceanexpert.org/expert/29381 -https://www.oceanexpert.org/expert/29382 -https://www.oceanexpert.org/expert/29383 -https://www.oceanexpert.org/expert/29384 -https://www.oceanexpert.org/expert/29385 -https://www.oceanexpert.org/expert/29386 -https://www.oceanexpert.org/expert/29387 -https://www.oceanexpert.org/expert/29394 -https://www.oceanexpert.org/expert/29396 -https://www.oceanexpert.org/expert/29397 -https://www.oceanexpert.org/expert/29398 -https://www.oceanexpert.org/expert/29400 -https://www.oceanexpert.org/expert/29401 -https://www.oceanexpert.org/expert/29406 -https://www.oceanexpert.org/expert/29418 -https://www.oceanexpert.org/expert/29419 -https://www.oceanexpert.org/expert/29422 -https://www.oceanexpert.org/expert/29426 -https://www.oceanexpert.org/expert/29431 -https://www.oceanexpert.org/expert/29432 -https://www.oceanexpert.org/expert/29433 -https://www.oceanexpert.org/expert/29434 -https://www.oceanexpert.org/expert/29435 -https://www.oceanexpert.org/expert/29436 -https://www.oceanexpert.org/expert/29439 -https://www.oceanexpert.org/expert/29442 -https://www.oceanexpert.org/expert/29445 -https://www.oceanexpert.org/expert/29452 -https://www.oceanexpert.org/expert/29455 -https://www.oceanexpert.org/expert/29462 -https://www.oceanexpert.org/expert/29463 -https://www.oceanexpert.org/expert/29465 -https://www.oceanexpert.org/expert/29466 -https://www.oceanexpert.org/expert/29467 -https://www.oceanexpert.org/expert/29469 -https://www.oceanexpert.org/expert/29479 -https://www.oceanexpert.org/expert/29481 -https://www.oceanexpert.org/expert/29482 -https://www.oceanexpert.org/expert/29483 -https://www.oceanexpert.org/expert/29484 -https://www.oceanexpert.org/expert/29485 -https://www.oceanexpert.org/expert/29486 -https://www.oceanexpert.org/expert/29487 -https://www.oceanexpert.org/expert/29488 -https://www.oceanexpert.org/expert/29493 -https://www.oceanexpert.org/expert/29494 -https://www.oceanexpert.org/expert/29495 -https://www.oceanexpert.org/expert/29496 -https://www.oceanexpert.org/expert/29497 -https://www.oceanexpert.org/expert/29498 -https://www.oceanexpert.org/expert/29501 -https://www.oceanexpert.org/expert/29502 -https://www.oceanexpert.org/expert/29503 -https://www.oceanexpert.org/expert/29504 -https://www.oceanexpert.org/expert/29505 -https://www.oceanexpert.org/expert/29506 -https://www.oceanexpert.org/expert/29507 -https://www.oceanexpert.org/expert/29508 -https://www.oceanexpert.org/expert/29509 -https://www.oceanexpert.org/expert/29510 -https://www.oceanexpert.org/expert/29511 -https://www.oceanexpert.org/expert/29512 -https://www.oceanexpert.org/expert/29513 -https://www.oceanexpert.org/expert/29514 -https://www.oceanexpert.org/expert/29515 -https://www.oceanexpert.org/expert/29516 -https://www.oceanexpert.org/expert/29518 -https://www.oceanexpert.org/expert/29519 -https://www.oceanexpert.org/expert/29521 -https://www.oceanexpert.org/expert/29527 -https://www.oceanexpert.org/expert/29529 -https://www.oceanexpert.org/expert/29530 -https://www.oceanexpert.org/expert/29531 -https://www.oceanexpert.org/expert/29532 -https://www.oceanexpert.org/expert/29533 -https://www.oceanexpert.org/expert/29534 -https://www.oceanexpert.org/expert/29535 -https://www.oceanexpert.org/expert/29536 -https://www.oceanexpert.org/expert/29537 -https://www.oceanexpert.org/expert/29538 -https://www.oceanexpert.org/expert/29540 -https://www.oceanexpert.org/expert/29550 -https://www.oceanexpert.org/expert/29554 -https://www.oceanexpert.org/expert/29555 -https://www.oceanexpert.org/expert/29556 -https://www.oceanexpert.org/expert/29557 -https://www.oceanexpert.org/expert/29560 -https://www.oceanexpert.org/expert/29563 -https://www.oceanexpert.org/expert/29565 -https://www.oceanexpert.org/expert/29566 -https://www.oceanexpert.org/expert/29569 -https://www.oceanexpert.org/expert/29570 -https://www.oceanexpert.org/expert/29571 -https://www.oceanexpert.org/expert/29574 -https://www.oceanexpert.org/expert/29576 -https://www.oceanexpert.org/expert/29580 -https://www.oceanexpert.org/expert/29582 -https://www.oceanexpert.org/expert/29583 -https://www.oceanexpert.org/expert/29584 -https://www.oceanexpert.org/expert/29586 -https://www.oceanexpert.org/expert/29589 -https://www.oceanexpert.org/expert/29594 -https://www.oceanexpert.org/expert/29596 -https://www.oceanexpert.org/expert/29598 -https://www.oceanexpert.org/expert/29599 -https://www.oceanexpert.org/expert/29600 -https://www.oceanexpert.org/expert/29604 -https://www.oceanexpert.org/expert/29605 -https://www.oceanexpert.org/expert/29607 -https://www.oceanexpert.org/expert/29615 -https://www.oceanexpert.org/expert/29616 -https://www.oceanexpert.org/expert/29617 -https://www.oceanexpert.org/expert/29622 -https://www.oceanexpert.org/expert/29623 -https://www.oceanexpert.org/expert/29626 -https://www.oceanexpert.org/expert/29627 -https://www.oceanexpert.org/expert/29630 -https://www.oceanexpert.org/expert/29632 -https://www.oceanexpert.org/expert/29635 -https://www.oceanexpert.org/expert/29638 -https://www.oceanexpert.org/expert/29640 -https://www.oceanexpert.org/expert/29643 -https://www.oceanexpert.org/expert/29651 -https://www.oceanexpert.org/expert/29653 -https://www.oceanexpert.org/expert/29659 -https://www.oceanexpert.org/expert/29660 -https://www.oceanexpert.org/expert/29665 -https://www.oceanexpert.org/expert/29666 -https://www.oceanexpert.org/expert/29668 -https://www.oceanexpert.org/expert/29669 -https://www.oceanexpert.org/expert/29670 -https://www.oceanexpert.org/expert/29671 -https://www.oceanexpert.org/expert/29672 -https://www.oceanexpert.org/expert/29676 -https://www.oceanexpert.org/expert/29679 -https://www.oceanexpert.org/expert/29681 -https://www.oceanexpert.org/expert/29682 -https://www.oceanexpert.org/expert/29683 -https://www.oceanexpert.org/expert/29685 -https://www.oceanexpert.org/expert/29686 -https://www.oceanexpert.org/expert/29687 -https://www.oceanexpert.org/expert/29688 -https://www.oceanexpert.org/expert/29689 -https://www.oceanexpert.org/expert/29690 -https://www.oceanexpert.org/expert/29691 -https://www.oceanexpert.org/expert/29692 -https://www.oceanexpert.org/expert/29693 -https://www.oceanexpert.org/expert/29694 -https://www.oceanexpert.org/expert/29695 -https://www.oceanexpert.org/expert/29696 -https://www.oceanexpert.org/expert/29697 -https://www.oceanexpert.org/expert/29698 -https://www.oceanexpert.org/expert/29700 -https://www.oceanexpert.org/expert/29701 -https://www.oceanexpert.org/expert/29702 -https://www.oceanexpert.org/expert/29703 -https://www.oceanexpert.org/expert/29705 -https://www.oceanexpert.org/expert/29706 -https://www.oceanexpert.org/expert/29710 -https://www.oceanexpert.org/expert/29714 -https://www.oceanexpert.org/expert/29715 -https://www.oceanexpert.org/expert/29717 -https://www.oceanexpert.org/expert/29718 -https://www.oceanexpert.org/expert/29719 -https://www.oceanexpert.org/expert/29721 -https://www.oceanexpert.org/expert/29722 -https://www.oceanexpert.org/expert/29727 -https://www.oceanexpert.org/expert/29728 -https://www.oceanexpert.org/expert/29735 -https://www.oceanexpert.org/expert/29738 -https://www.oceanexpert.org/expert/29739 -https://www.oceanexpert.org/expert/29740 -https://www.oceanexpert.org/expert/29741 -https://www.oceanexpert.org/expert/29744 -https://www.oceanexpert.org/expert/29746 -https://www.oceanexpert.org/expert/29751 -https://www.oceanexpert.org/expert/29752 -https://www.oceanexpert.org/expert/29753 -https://www.oceanexpert.org/expert/29754 -https://www.oceanexpert.org/expert/29755 -https://www.oceanexpert.org/expert/29756 -https://www.oceanexpert.org/expert/29759 -https://www.oceanexpert.org/expert/29760 -https://www.oceanexpert.org/expert/29762 -https://www.oceanexpert.org/expert/29765 -https://www.oceanexpert.org/expert/29770 -https://www.oceanexpert.org/expert/29773 -https://www.oceanexpert.org/expert/29774 -https://www.oceanexpert.org/expert/29775 -https://www.oceanexpert.org/expert/29777 -https://www.oceanexpert.org/expert/29778 -https://www.oceanexpert.org/expert/29779 -https://www.oceanexpert.org/expert/29784 -https://www.oceanexpert.org/expert/29785 -https://www.oceanexpert.org/expert/29786 -https://www.oceanexpert.org/expert/29787 -https://www.oceanexpert.org/expert/29788 -https://www.oceanexpert.org/expert/29789 -https://www.oceanexpert.org/expert/29793 -https://www.oceanexpert.org/expert/29796 -https://www.oceanexpert.org/expert/29798 -https://www.oceanexpert.org/expert/29800 -https://www.oceanexpert.org/expert/29801 -https://www.oceanexpert.org/expert/29802 -https://www.oceanexpert.org/expert/29803 -https://www.oceanexpert.org/expert/29806 -https://www.oceanexpert.org/expert/29808 -https://www.oceanexpert.org/expert/29809 -https://www.oceanexpert.org/expert/29810 -https://www.oceanexpert.org/expert/29811 -https://www.oceanexpert.org/expert/29813 -https://www.oceanexpert.org/expert/29815 -https://www.oceanexpert.org/expert/29817 -https://www.oceanexpert.org/expert/29818 -https://www.oceanexpert.org/expert/29822 -https://www.oceanexpert.org/expert/29823 -https://www.oceanexpert.org/expert/29826 -https://www.oceanexpert.org/expert/29828 -https://www.oceanexpert.org/expert/29829 -https://www.oceanexpert.org/expert/29830 -https://www.oceanexpert.org/expert/29832 -https://www.oceanexpert.org/expert/29833 -https://www.oceanexpert.org/expert/29834 -https://www.oceanexpert.org/expert/29835 -https://www.oceanexpert.org/expert/29836 -https://www.oceanexpert.org/expert/29837 -https://www.oceanexpert.org/expert/29838 -https://www.oceanexpert.org/expert/29839 -https://www.oceanexpert.org/expert/29840 -https://www.oceanexpert.org/expert/29844 -https://www.oceanexpert.org/expert/29845 -https://www.oceanexpert.org/expert/29846 -https://www.oceanexpert.org/expert/29851 -https://www.oceanexpert.org/expert/29852 -https://www.oceanexpert.org/expert/29853 -https://www.oceanexpert.org/expert/29857 -https://www.oceanexpert.org/expert/29858 -https://www.oceanexpert.org/expert/29859 -https://www.oceanexpert.org/expert/29860 -https://www.oceanexpert.org/expert/29866 -https://www.oceanexpert.org/expert/29871 -https://www.oceanexpert.org/expert/29874 -https://www.oceanexpert.org/expert/29879 -https://www.oceanexpert.org/expert/29880 -https://www.oceanexpert.org/expert/29882 -https://www.oceanexpert.org/expert/29883 -https://www.oceanexpert.org/expert/29884 -https://www.oceanexpert.org/expert/29885 -https://www.oceanexpert.org/expert/29893 -https://www.oceanexpert.org/expert/29894 -https://www.oceanexpert.org/expert/29896 -https://www.oceanexpert.org/expert/29898 -https://www.oceanexpert.org/expert/29899 -https://www.oceanexpert.org/expert/29900 -https://www.oceanexpert.org/expert/29908 -https://www.oceanexpert.org/expert/29909 -https://www.oceanexpert.org/expert/29913 -https://www.oceanexpert.org/expert/29914 -https://www.oceanexpert.org/expert/29915 -https://www.oceanexpert.org/expert/29916 -https://www.oceanexpert.org/expert/29917 -https://www.oceanexpert.org/expert/29918 -https://www.oceanexpert.org/expert/29919 -https://www.oceanexpert.org/expert/29920 -https://www.oceanexpert.org/expert/29922 -https://www.oceanexpert.org/expert/29924 -https://www.oceanexpert.org/expert/29927 -https://www.oceanexpert.org/expert/29928 -https://www.oceanexpert.org/expert/29932 -https://www.oceanexpert.org/expert/29935 -https://www.oceanexpert.org/expert/29937 -https://www.oceanexpert.org/expert/29944 -https://www.oceanexpert.org/expert/29945 -https://www.oceanexpert.org/expert/29948 -https://www.oceanexpert.org/expert/29951 -https://www.oceanexpert.org/expert/29954 -https://www.oceanexpert.org/expert/29957 -https://www.oceanexpert.org/expert/29960 -https://www.oceanexpert.org/expert/29962 -https://www.oceanexpert.org/expert/29963 -https://www.oceanexpert.org/expert/29964 -https://www.oceanexpert.org/expert/29965 -https://www.oceanexpert.org/expert/29966 -https://www.oceanexpert.org/expert/29971 -https://www.oceanexpert.org/expert/29983 -https://www.oceanexpert.org/expert/29984 -https://www.oceanexpert.org/expert/29986 -https://www.oceanexpert.org/expert/29989 -https://www.oceanexpert.org/expert/29992 -https://www.oceanexpert.org/expert/29997 -https://www.oceanexpert.org/expert/30006 -https://www.oceanexpert.org/expert/30011 -https://www.oceanexpert.org/expert/30012 -https://www.oceanexpert.org/expert/30014 -https://www.oceanexpert.org/expert/30016 -https://www.oceanexpert.org/expert/30017 -https://www.oceanexpert.org/expert/30019 -https://www.oceanexpert.org/expert/30025 -https://www.oceanexpert.org/expert/30029 -https://www.oceanexpert.org/expert/30030 -https://www.oceanexpert.org/expert/30031 -https://www.oceanexpert.org/expert/30032 -https://www.oceanexpert.org/expert/30033 -https://www.oceanexpert.org/expert/30035 -https://www.oceanexpert.org/expert/30036 -https://www.oceanexpert.org/expert/30037 -https://www.oceanexpert.org/expert/30038 -https://www.oceanexpert.org/expert/30039 -https://www.oceanexpert.org/expert/30040 -https://www.oceanexpert.org/expert/30043 -https://www.oceanexpert.org/expert/30044 -https://www.oceanexpert.org/expert/30045 -https://www.oceanexpert.org/expert/30047 -https://www.oceanexpert.org/expert/30048 -https://www.oceanexpert.org/expert/30050 -https://www.oceanexpert.org/expert/30052 -https://www.oceanexpert.org/expert/30059 -https://www.oceanexpert.org/expert/30063 -https://www.oceanexpert.org/expert/30064 -https://www.oceanexpert.org/expert/30065 -https://www.oceanexpert.org/expert/30072 -https://www.oceanexpert.org/expert/30073 -https://www.oceanexpert.org/expert/30080 -https://www.oceanexpert.org/expert/30087 -https://www.oceanexpert.org/expert/30089 -https://www.oceanexpert.org/expert/30090 -https://www.oceanexpert.org/expert/30091 -https://www.oceanexpert.org/expert/30099 -https://www.oceanexpert.org/expert/30102 -https://www.oceanexpert.org/expert/30103 -https://www.oceanexpert.org/expert/30104 -https://www.oceanexpert.org/expert/30105 -https://www.oceanexpert.org/expert/30107 -https://www.oceanexpert.org/expert/30108 -https://www.oceanexpert.org/expert/30109 -https://www.oceanexpert.org/expert/30110 -https://www.oceanexpert.org/expert/30111 -https://www.oceanexpert.org/expert/30112 -https://www.oceanexpert.org/expert/30117 -https://www.oceanexpert.org/expert/30120 -https://www.oceanexpert.org/expert/30122 -https://www.oceanexpert.org/expert/30127 -https://www.oceanexpert.org/expert/30128 -https://www.oceanexpert.org/expert/30132 -https://www.oceanexpert.org/expert/30136 -https://www.oceanexpert.org/expert/30143 -https://www.oceanexpert.org/expert/30149 -https://www.oceanexpert.org/expert/30159 -https://www.oceanexpert.org/expert/30167 -https://www.oceanexpert.org/expert/30170 -https://www.oceanexpert.org/expert/30171 -https://www.oceanexpert.org/expert/30173 -https://www.oceanexpert.org/expert/30175 -https://www.oceanexpert.org/expert/30176 -https://www.oceanexpert.org/expert/30177 -https://www.oceanexpert.org/expert/30178 -https://www.oceanexpert.org/expert/30179 -https://www.oceanexpert.org/expert/30180 -https://www.oceanexpert.org/expert/30181 -https://www.oceanexpert.org/expert/30182 -https://www.oceanexpert.org/expert/30183 -https://www.oceanexpert.org/expert/30184 -https://www.oceanexpert.org/expert/30185 -https://www.oceanexpert.org/expert/30186 -https://www.oceanexpert.org/expert/30187 -https://www.oceanexpert.org/expert/30188 -https://www.oceanexpert.org/expert/30189 -https://www.oceanexpert.org/expert/30190 -https://www.oceanexpert.org/expert/30197 -https://www.oceanexpert.org/expert/30198 -https://www.oceanexpert.org/expert/30200 -https://www.oceanexpert.org/expert/30201 -https://www.oceanexpert.org/expert/30203 -https://www.oceanexpert.org/expert/30204 -https://www.oceanexpert.org/expert/30206 -https://www.oceanexpert.org/expert/30208 -https://www.oceanexpert.org/expert/30210 -https://www.oceanexpert.org/expert/30211 -https://www.oceanexpert.org/expert/30212 -https://www.oceanexpert.org/expert/30214 -https://www.oceanexpert.org/expert/30215 -https://www.oceanexpert.org/expert/30218 -https://www.oceanexpert.org/expert/30221 -https://www.oceanexpert.org/expert/30222 -https://www.oceanexpert.org/expert/30223 -https://www.oceanexpert.org/expert/30228 -https://www.oceanexpert.org/expert/30234 -https://www.oceanexpert.org/expert/30235 -https://www.oceanexpert.org/expert/30244 -https://www.oceanexpert.org/expert/30246 -https://www.oceanexpert.org/expert/30247 -https://www.oceanexpert.org/expert/30248 -https://www.oceanexpert.org/expert/30249 -https://www.oceanexpert.org/expert/30251 -https://www.oceanexpert.org/expert/30252 -https://www.oceanexpert.org/expert/30253 -https://www.oceanexpert.org/expert/30258 -https://www.oceanexpert.org/expert/30259 -https://www.oceanexpert.org/expert/30261 -https://www.oceanexpert.org/expert/30273 -https://www.oceanexpert.org/expert/30274 -https://www.oceanexpert.org/expert/30275 -https://www.oceanexpert.org/expert/30276 -https://www.oceanexpert.org/expert/30278 -https://www.oceanexpert.org/expert/30285 -https://www.oceanexpert.org/expert/30287 -https://www.oceanexpert.org/expert/30288 -https://www.oceanexpert.org/expert/30289 -https://www.oceanexpert.org/expert/30290 -https://www.oceanexpert.org/expert/30291 -https://www.oceanexpert.org/expert/30292 -https://www.oceanexpert.org/expert/30293 -https://www.oceanexpert.org/expert/30294 -https://www.oceanexpert.org/expert/30296 -https://www.oceanexpert.org/expert/30297 -https://www.oceanexpert.org/expert/30298 -https://www.oceanexpert.org/expert/30302 -https://www.oceanexpert.org/expert/30307 -https://www.oceanexpert.org/expert/30308 -https://www.oceanexpert.org/expert/30309 -https://www.oceanexpert.org/expert/30311 -https://www.oceanexpert.org/expert/30312 -https://www.oceanexpert.org/expert/30316 -https://www.oceanexpert.org/expert/30317 -https://www.oceanexpert.org/expert/30323 -https://www.oceanexpert.org/expert/30324 -https://www.oceanexpert.org/expert/30325 -https://www.oceanexpert.org/expert/30326 -https://www.oceanexpert.org/expert/30327 -https://www.oceanexpert.org/expert/30328 -https://www.oceanexpert.org/expert/30330 -https://www.oceanexpert.org/expert/30338 -https://www.oceanexpert.org/expert/30342 -https://www.oceanexpert.org/expert/30359 -https://www.oceanexpert.org/expert/30366 -https://www.oceanexpert.org/expert/30369 -https://www.oceanexpert.org/expert/30370 -https://www.oceanexpert.org/expert/30374 -https://www.oceanexpert.org/expert/30376 -https://www.oceanexpert.org/expert/30378 -https://www.oceanexpert.org/expert/30384 -https://www.oceanexpert.org/expert/30388 -https://www.oceanexpert.org/expert/30392 -https://www.oceanexpert.org/expert/30405 -https://www.oceanexpert.org/expert/30406 -https://www.oceanexpert.org/expert/30407 -https://www.oceanexpert.org/expert/30408 -https://www.oceanexpert.org/expert/30409 -https://www.oceanexpert.org/expert/30410 -https://www.oceanexpert.org/expert/30417 -https://www.oceanexpert.org/expert/30445 -https://www.oceanexpert.org/expert/30446 -https://www.oceanexpert.org/expert/30447 -https://www.oceanexpert.org/expert/30448 -https://www.oceanexpert.org/expert/30449 -https://www.oceanexpert.org/expert/30450 -https://www.oceanexpert.org/expert/30451 -https://www.oceanexpert.org/expert/30452 -https://www.oceanexpert.org/expert/30453 -https://www.oceanexpert.org/expert/30455 -https://www.oceanexpert.org/expert/30463 -https://www.oceanexpert.org/expert/30467 -https://www.oceanexpert.org/expert/30472 -https://www.oceanexpert.org/expert/30473 -https://www.oceanexpert.org/expert/30475 -https://www.oceanexpert.org/expert/30476 -https://www.oceanexpert.org/expert/30480 -https://www.oceanexpert.org/expert/30487 -https://www.oceanexpert.org/expert/30488 -https://www.oceanexpert.org/expert/30489 -https://www.oceanexpert.org/expert/30516 -https://www.oceanexpert.org/expert/30525 -https://www.oceanexpert.org/expert/30526 -https://www.oceanexpert.org/expert/30527 -https://www.oceanexpert.org/expert/30528 -https://www.oceanexpert.org/expert/30529 -https://www.oceanexpert.org/expert/30530 -https://www.oceanexpert.org/expert/30531 -https://www.oceanexpert.org/expert/30533 -https://www.oceanexpert.org/expert/30534 -https://www.oceanexpert.org/expert/30535 -https://www.oceanexpert.org/expert/30539 -https://www.oceanexpert.org/expert/30541 -https://www.oceanexpert.org/expert/30543 -https://www.oceanexpert.org/expert/30546 -https://www.oceanexpert.org/expert/30548 -https://www.oceanexpert.org/expert/30554 -https://www.oceanexpert.org/expert/30556 -https://www.oceanexpert.org/expert/30557 -https://www.oceanexpert.org/expert/30558 -https://www.oceanexpert.org/expert/30560 -https://www.oceanexpert.org/expert/30561 -https://www.oceanexpert.org/expert/30562 -https://www.oceanexpert.org/expert/30563 -https://www.oceanexpert.org/expert/30574 -https://www.oceanexpert.org/expert/30575 -https://www.oceanexpert.org/expert/30577 -https://www.oceanexpert.org/expert/30579 -https://www.oceanexpert.org/expert/30580 -https://www.oceanexpert.org/expert/30585 -https://www.oceanexpert.org/expert/30586 -https://www.oceanexpert.org/expert/30587 -https://www.oceanexpert.org/expert/30588 -https://www.oceanexpert.org/expert/30589 -https://www.oceanexpert.org/expert/30590 -https://www.oceanexpert.org/expert/30594 -https://www.oceanexpert.org/expert/30597 -https://www.oceanexpert.org/expert/30600 -https://www.oceanexpert.org/expert/30609 -https://www.oceanexpert.org/expert/30635 -https://www.oceanexpert.org/expert/30636 -https://www.oceanexpert.org/expert/30638 -https://www.oceanexpert.org/expert/30641 -https://www.oceanexpert.org/expert/30644 -https://www.oceanexpert.org/expert/30645 -https://www.oceanexpert.org/expert/30647 -https://www.oceanexpert.org/expert/30661 -https://www.oceanexpert.org/expert/30662 -https://www.oceanexpert.org/expert/30663 -https://www.oceanexpert.org/expert/30664 -https://www.oceanexpert.org/expert/30665 -https://www.oceanexpert.org/expert/30666 -https://www.oceanexpert.org/expert/30667 -https://www.oceanexpert.org/expert/30668 -https://www.oceanexpert.org/expert/30669 -https://www.oceanexpert.org/expert/30672 -https://www.oceanexpert.org/expert/30680 -https://www.oceanexpert.org/expert/30681 -https://www.oceanexpert.org/expert/30682 -https://www.oceanexpert.org/expert/30683 -https://www.oceanexpert.org/expert/30697 -https://www.oceanexpert.org/expert/30698 -https://www.oceanexpert.org/expert/30700 -https://www.oceanexpert.org/expert/30711 -https://www.oceanexpert.org/expert/30716 -https://www.oceanexpert.org/expert/30726 -https://www.oceanexpert.org/expert/30728 -https://www.oceanexpert.org/expert/30735 -https://www.oceanexpert.org/expert/30736 -https://www.oceanexpert.org/expert/30738 -https://www.oceanexpert.org/expert/30740 -https://www.oceanexpert.org/expert/30742 -https://www.oceanexpert.org/expert/30747 -https://www.oceanexpert.org/expert/30748 -https://www.oceanexpert.org/expert/30749 -https://www.oceanexpert.org/expert/30750 -https://www.oceanexpert.org/expert/30751 -https://www.oceanexpert.org/expert/30754 -https://www.oceanexpert.org/expert/30760 -https://www.oceanexpert.org/expert/30762 -https://www.oceanexpert.org/expert/30763 -https://www.oceanexpert.org/expert/30765 -https://www.oceanexpert.org/expert/30771 -https://www.oceanexpert.org/expert/30772 -https://www.oceanexpert.org/expert/30773 -https://www.oceanexpert.org/expert/30776 -https://www.oceanexpert.org/expert/30780 -https://www.oceanexpert.org/expert/30782 -https://www.oceanexpert.org/expert/30783 -https://www.oceanexpert.org/expert/30784 -https://www.oceanexpert.org/expert/30785 -https://www.oceanexpert.org/expert/30787 -https://www.oceanexpert.org/expert/30789 -https://www.oceanexpert.org/expert/30792 -https://www.oceanexpert.org/expert/30793 -https://www.oceanexpert.org/expert/30794 -https://www.oceanexpert.org/expert/30795 -https://www.oceanexpert.org/expert/30796 -https://www.oceanexpert.org/expert/30797 -https://www.oceanexpert.org/expert/30798 -https://www.oceanexpert.org/expert/30799 -https://www.oceanexpert.org/expert/30800 -https://www.oceanexpert.org/expert/30801 -https://www.oceanexpert.org/expert/30802 -https://www.oceanexpert.org/expert/30804 -https://www.oceanexpert.org/expert/30807 -https://www.oceanexpert.org/expert/30808 -https://www.oceanexpert.org/expert/30810 -https://www.oceanexpert.org/expert/30811 -https://www.oceanexpert.org/expert/30814 -https://www.oceanexpert.org/expert/30819 -https://www.oceanexpert.org/expert/30821 -https://www.oceanexpert.org/expert/30822 -https://www.oceanexpert.org/expert/30823 -https://www.oceanexpert.org/expert/30824 -https://www.oceanexpert.org/expert/30826 -https://www.oceanexpert.org/expert/30837 -https://www.oceanexpert.org/expert/30838 -https://www.oceanexpert.org/expert/30841 -https://www.oceanexpert.org/expert/30842 -https://www.oceanexpert.org/expert/30848 -https://www.oceanexpert.org/expert/30849 -https://www.oceanexpert.org/expert/30852 -https://www.oceanexpert.org/expert/30853 -https://www.oceanexpert.org/expert/30856 -https://www.oceanexpert.org/expert/30858 -https://www.oceanexpert.org/expert/30860 -https://www.oceanexpert.org/expert/30861 -https://www.oceanexpert.org/expert/30862 -https://www.oceanexpert.org/expert/30863 -https://www.oceanexpert.org/expert/30864 -https://www.oceanexpert.org/expert/30865 -https://www.oceanexpert.org/expert/30866 -https://www.oceanexpert.org/expert/30868 -https://www.oceanexpert.org/expert/30871 -https://www.oceanexpert.org/expert/30875 -https://www.oceanexpert.org/expert/30877 -https://www.oceanexpert.org/expert/30878 -https://www.oceanexpert.org/expert/30881 -https://www.oceanexpert.org/expert/30882 -https://www.oceanexpert.org/expert/30884 -https://www.oceanexpert.org/expert/30885 -https://www.oceanexpert.org/expert/30886 -https://www.oceanexpert.org/expert/30887 -https://www.oceanexpert.org/expert/30888 -https://www.oceanexpert.org/expert/30889 -https://www.oceanexpert.org/expert/30892 -https://www.oceanexpert.org/expert/30893 -https://www.oceanexpert.org/expert/30894 -https://www.oceanexpert.org/expert/30900 -https://www.oceanexpert.org/expert/30904 -https://www.oceanexpert.org/expert/30905 -https://www.oceanexpert.org/expert/30906 -https://www.oceanexpert.org/expert/30907 -https://www.oceanexpert.org/expert/30909 -https://www.oceanexpert.org/expert/30910 -https://www.oceanexpert.org/expert/30911 -https://www.oceanexpert.org/expert/30914 -https://www.oceanexpert.org/expert/30918 -https://www.oceanexpert.org/expert/30930 -https://www.oceanexpert.org/expert/30931 -https://www.oceanexpert.org/expert/30932 -https://www.oceanexpert.org/expert/30935 -https://www.oceanexpert.org/expert/30936 -https://www.oceanexpert.org/expert/30937 -https://www.oceanexpert.org/expert/30938 -https://www.oceanexpert.org/expert/30939 -https://www.oceanexpert.org/expert/30940 -https://www.oceanexpert.org/expert/30941 -https://www.oceanexpert.org/expert/30942 -https://www.oceanexpert.org/expert/30946 -https://www.oceanexpert.org/expert/30947 -https://www.oceanexpert.org/expert/30948 -https://www.oceanexpert.org/expert/30954 -https://www.oceanexpert.org/expert/30956 -https://www.oceanexpert.org/expert/30957 -https://www.oceanexpert.org/expert/30958 -https://www.oceanexpert.org/expert/30959 -https://www.oceanexpert.org/expert/30967 -https://www.oceanexpert.org/expert/30971 -https://www.oceanexpert.org/expert/30972 -https://www.oceanexpert.org/expert/30974 -https://www.oceanexpert.org/expert/30978 -https://www.oceanexpert.org/expert/30983 -https://www.oceanexpert.org/expert/30985 -https://www.oceanexpert.org/expert/30989 -https://www.oceanexpert.org/expert/30990 -https://www.oceanexpert.org/expert/30991 -https://www.oceanexpert.org/expert/30993 -https://www.oceanexpert.org/expert/30995 -https://www.oceanexpert.org/expert/31000 -https://www.oceanexpert.org/expert/31001 -https://www.oceanexpert.org/expert/31002 -https://www.oceanexpert.org/expert/31003 -https://www.oceanexpert.org/expert/31005 -https://www.oceanexpert.org/expert/31010 -https://www.oceanexpert.org/expert/31013 -https://www.oceanexpert.org/expert/31014 -https://www.oceanexpert.org/expert/31017 -https://www.oceanexpert.org/expert/31018 -https://www.oceanexpert.org/expert/31020 -https://www.oceanexpert.org/expert/31026 -https://www.oceanexpert.org/expert/31028 -https://www.oceanexpert.org/expert/31030 -https://www.oceanexpert.org/expert/31032 -https://www.oceanexpert.org/expert/31036 -https://www.oceanexpert.org/expert/31037 -https://www.oceanexpert.org/expert/31038 -https://www.oceanexpert.org/expert/31039 -https://www.oceanexpert.org/expert/31040 -https://www.oceanexpert.org/expert/31041 -https://www.oceanexpert.org/expert/31043 -https://www.oceanexpert.org/expert/31048 -https://www.oceanexpert.org/expert/31050 -https://www.oceanexpert.org/expert/31051 -https://www.oceanexpert.org/expert/31052 -https://www.oceanexpert.org/expert/31054 -https://www.oceanexpert.org/expert/31055 -https://www.oceanexpert.org/expert/31056 -https://www.oceanexpert.org/expert/31058 -https://www.oceanexpert.org/expert/31059 -https://www.oceanexpert.org/expert/31060 -https://www.oceanexpert.org/expert/31061 -https://www.oceanexpert.org/expert/31063 -https://www.oceanexpert.org/expert/31064 -https://www.oceanexpert.org/expert/31066 -https://www.oceanexpert.org/expert/31067 -https://www.oceanexpert.org/expert/31071 -https://www.oceanexpert.org/expert/31076 -https://www.oceanexpert.org/expert/31079 -https://www.oceanexpert.org/expert/31081 -https://www.oceanexpert.org/expert/31082 -https://www.oceanexpert.org/expert/31083 -https://www.oceanexpert.org/expert/31086 -https://www.oceanexpert.org/expert/31087 -https://www.oceanexpert.org/expert/31089 -https://www.oceanexpert.org/expert/31090 -https://www.oceanexpert.org/expert/31093 -https://www.oceanexpert.org/expert/31094 -https://www.oceanexpert.org/expert/31097 -https://www.oceanexpert.org/expert/31098 -https://www.oceanexpert.org/expert/31101 -https://www.oceanexpert.org/expert/31102 -https://www.oceanexpert.org/expert/31103 -https://www.oceanexpert.org/expert/31105 -https://www.oceanexpert.org/expert/31107 -https://www.oceanexpert.org/expert/31108 -https://www.oceanexpert.org/expert/31109 -https://www.oceanexpert.org/expert/31114 -https://www.oceanexpert.org/expert/31115 -https://www.oceanexpert.org/expert/31119 -https://www.oceanexpert.org/expert/31120 -https://www.oceanexpert.org/expert/31121 -https://www.oceanexpert.org/expert/31122 -https://www.oceanexpert.org/expert/31124 -https://www.oceanexpert.org/expert/31125 -https://www.oceanexpert.org/expert/31126 -https://www.oceanexpert.org/expert/31128 -https://www.oceanexpert.org/expert/31129 -https://www.oceanexpert.org/expert/31131 -https://www.oceanexpert.org/expert/31132 -https://www.oceanexpert.org/expert/31140 -https://www.oceanexpert.org/expert/31141 -https://www.oceanexpert.org/expert/31145 -https://www.oceanexpert.org/expert/31154 -https://www.oceanexpert.org/expert/31155 -https://www.oceanexpert.org/expert/31156 -https://www.oceanexpert.org/expert/31157 -https://www.oceanexpert.org/expert/31161 -https://www.oceanexpert.org/expert/31162 -https://www.oceanexpert.org/expert/31163 -https://www.oceanexpert.org/expert/31164 -https://www.oceanexpert.org/expert/31169 -https://www.oceanexpert.org/expert/31170 -https://www.oceanexpert.org/expert/31180 -https://www.oceanexpert.org/expert/31182 -https://www.oceanexpert.org/expert/31183 -https://www.oceanexpert.org/expert/31184 -https://www.oceanexpert.org/expert/31185 -https://www.oceanexpert.org/expert/31186 -https://www.oceanexpert.org/expert/31187 -https://www.oceanexpert.org/expert/31189 -https://www.oceanexpert.org/expert/31190 -https://www.oceanexpert.org/expert/31193 -https://www.oceanexpert.org/expert/31194 -https://www.oceanexpert.org/expert/31197 -https://www.oceanexpert.org/expert/31198 -https://www.oceanexpert.org/expert/31201 -https://www.oceanexpert.org/expert/31203 -https://www.oceanexpert.org/expert/31204 -https://www.oceanexpert.org/expert/31205 -https://www.oceanexpert.org/expert/31206 -https://www.oceanexpert.org/expert/31209 -https://www.oceanexpert.org/expert/31211 -https://www.oceanexpert.org/expert/31213 -https://www.oceanexpert.org/expert/31218 -https://www.oceanexpert.org/expert/31219 -https://www.oceanexpert.org/expert/31220 -https://www.oceanexpert.org/expert/31221 -https://www.oceanexpert.org/expert/31222 -https://www.oceanexpert.org/expert/31225 -https://www.oceanexpert.org/expert/31228 -https://www.oceanexpert.org/expert/31235 -https://www.oceanexpert.org/expert/31238 -https://www.oceanexpert.org/expert/31239 -https://www.oceanexpert.org/expert/31244 -https://www.oceanexpert.org/expert/31245 -https://www.oceanexpert.org/expert/31246 -https://www.oceanexpert.org/expert/31255 -https://www.oceanexpert.org/expert/31256 -https://www.oceanexpert.org/expert/31257 -https://www.oceanexpert.org/expert/31258 -https://www.oceanexpert.org/expert/31262 -https://www.oceanexpert.org/expert/31264 -https://www.oceanexpert.org/expert/31268 -https://www.oceanexpert.org/expert/31270 -https://www.oceanexpert.org/expert/31271 -https://www.oceanexpert.org/expert/31272 -https://www.oceanexpert.org/expert/31273 -https://www.oceanexpert.org/expert/31278 -https://www.oceanexpert.org/expert/31279 -https://www.oceanexpert.org/expert/31286 -https://www.oceanexpert.org/expert/31291 -https://www.oceanexpert.org/expert/31302 -https://www.oceanexpert.org/expert/31305 -https://www.oceanexpert.org/expert/31318 -https://www.oceanexpert.org/expert/31319 -https://www.oceanexpert.org/expert/31320 -https://www.oceanexpert.org/expert/31324 -https://www.oceanexpert.org/expert/31326 -https://www.oceanexpert.org/expert/31328 -https://www.oceanexpert.org/expert/31331 -https://www.oceanexpert.org/expert/31334 -https://www.oceanexpert.org/expert/31335 -https://www.oceanexpert.org/expert/31337 -https://www.oceanexpert.org/expert/31339 -https://www.oceanexpert.org/expert/31340 -https://www.oceanexpert.org/expert/31350 -https://www.oceanexpert.org/expert/31353 -https://www.oceanexpert.org/expert/31364 -https://www.oceanexpert.org/expert/31370 -https://www.oceanexpert.org/expert/31371 -https://www.oceanexpert.org/expert/31372 -https://www.oceanexpert.org/expert/31373 -https://www.oceanexpert.org/expert/31374 -https://www.oceanexpert.org/expert/31375 -https://www.oceanexpert.org/expert/31376 -https://www.oceanexpert.org/expert/31378 -https://www.oceanexpert.org/expert/31379 -https://www.oceanexpert.org/expert/31383 -https://www.oceanexpert.org/expert/31389 -https://www.oceanexpert.org/expert/31392 -https://www.oceanexpert.org/expert/31394 -https://www.oceanexpert.org/expert/31395 -https://www.oceanexpert.org/expert/31397 -https://www.oceanexpert.org/expert/31399 -https://www.oceanexpert.org/expert/31414 -https://www.oceanexpert.org/expert/31416 -https://www.oceanexpert.org/expert/31418 -https://www.oceanexpert.org/expert/31419 -https://www.oceanexpert.org/expert/31420 -https://www.oceanexpert.org/expert/31422 -https://www.oceanexpert.org/expert/31428 -https://www.oceanexpert.org/expert/31430 -https://www.oceanexpert.org/expert/31432 -https://www.oceanexpert.org/expert/31438 -https://www.oceanexpert.org/expert/31445 -https://www.oceanexpert.org/expert/31446 -https://www.oceanexpert.org/expert/31449 -https://www.oceanexpert.org/expert/31451 -https://www.oceanexpert.org/expert/31457 -https://www.oceanexpert.org/expert/31462 -https://www.oceanexpert.org/expert/31464 -https://www.oceanexpert.org/expert/31470 -https://www.oceanexpert.org/expert/31474 -https://www.oceanexpert.org/expert/31475 -https://www.oceanexpert.org/expert/31479 -https://www.oceanexpert.org/expert/31480 -https://www.oceanexpert.org/expert/31495 -https://www.oceanexpert.org/expert/31502 -https://www.oceanexpert.org/expert/31503 -https://www.oceanexpert.org/expert/31508 -https://www.oceanexpert.org/expert/31509 -https://www.oceanexpert.org/expert/31510 -https://www.oceanexpert.org/expert/31516 -https://www.oceanexpert.org/expert/31519 -https://www.oceanexpert.org/expert/31521 -https://www.oceanexpert.org/expert/31523 -https://www.oceanexpert.org/expert/31527 -https://www.oceanexpert.org/expert/31530 -https://www.oceanexpert.org/expert/31535 -https://www.oceanexpert.org/expert/31539 -https://www.oceanexpert.org/expert/31550 -https://www.oceanexpert.org/expert/31553 -https://www.oceanexpert.org/expert/31559 -https://www.oceanexpert.org/expert/31564 -https://www.oceanexpert.org/expert/31565 -https://www.oceanexpert.org/expert/31566 -https://www.oceanexpert.org/expert/31568 -https://www.oceanexpert.org/expert/31569 -https://www.oceanexpert.org/expert/31572 -https://www.oceanexpert.org/expert/31574 -https://www.oceanexpert.org/expert/31576 -https://www.oceanexpert.org/expert/31578 -https://www.oceanexpert.org/expert/31580 -https://www.oceanexpert.org/expert/31581 -https://www.oceanexpert.org/expert/31583 -https://www.oceanexpert.org/expert/31586 -https://www.oceanexpert.org/expert/31592 -https://www.oceanexpert.org/expert/31593 -https://www.oceanexpert.org/expert/31596 -https://www.oceanexpert.org/expert/31597 -https://www.oceanexpert.org/expert/31599 -https://www.oceanexpert.org/expert/31610 -https://www.oceanexpert.org/expert/31615 -https://www.oceanexpert.org/expert/31616 -https://www.oceanexpert.org/expert/31618 -https://www.oceanexpert.org/expert/31619 -https://www.oceanexpert.org/expert/31621 -https://www.oceanexpert.org/expert/31628 -https://www.oceanexpert.org/expert/31641 -https://www.oceanexpert.org/expert/31643 -https://www.oceanexpert.org/expert/31646 -https://www.oceanexpert.org/expert/31647 -https://www.oceanexpert.org/expert/31650 -https://www.oceanexpert.org/expert/31651 -https://www.oceanexpert.org/expert/31653 -https://www.oceanexpert.org/expert/31655 -https://www.oceanexpert.org/expert/31656 -https://www.oceanexpert.org/expert/31657 -https://www.oceanexpert.org/expert/31659 -https://www.oceanexpert.org/expert/31661 -https://www.oceanexpert.org/expert/31662 -https://www.oceanexpert.org/expert/31664 -https://www.oceanexpert.org/expert/31665 -https://www.oceanexpert.org/expert/31671 -https://www.oceanexpert.org/expert/31672 -https://www.oceanexpert.org/expert/31673 -https://www.oceanexpert.org/expert/31674 -https://www.oceanexpert.org/expert/31675 -https://www.oceanexpert.org/expert/31677 -https://www.oceanexpert.org/expert/31678 -https://www.oceanexpert.org/expert/31683 -https://www.oceanexpert.org/expert/31684 -https://www.oceanexpert.org/expert/31685 -https://www.oceanexpert.org/expert/31688 -https://www.oceanexpert.org/expert/31690 -https://www.oceanexpert.org/expert/31691 -https://www.oceanexpert.org/expert/31692 -https://www.oceanexpert.org/expert/31693 -https://www.oceanexpert.org/expert/31697 -https://www.oceanexpert.org/expert/31705 -https://www.oceanexpert.org/expert/31706 -https://www.oceanexpert.org/expert/31716 -https://www.oceanexpert.org/expert/31718 -https://www.oceanexpert.org/expert/31721 -https://www.oceanexpert.org/expert/31722 -https://www.oceanexpert.org/expert/31723 -https://www.oceanexpert.org/expert/31724 -https://www.oceanexpert.org/expert/31725 -https://www.oceanexpert.org/expert/31726 -https://www.oceanexpert.org/expert/31727 -https://www.oceanexpert.org/expert/31728 -https://www.oceanexpert.org/expert/31729 -https://www.oceanexpert.org/expert/31733 -https://www.oceanexpert.org/expert/31735 -https://www.oceanexpert.org/expert/31736 -https://www.oceanexpert.org/expert/31738 -https://www.oceanexpert.org/expert/31740 -https://www.oceanexpert.org/expert/31746 -https://www.oceanexpert.org/expert/31747 -https://www.oceanexpert.org/expert/31748 -https://www.oceanexpert.org/expert/31750 -https://www.oceanexpert.org/expert/31753 -https://www.oceanexpert.org/expert/31768 -https://www.oceanexpert.org/expert/31769 -https://www.oceanexpert.org/expert/31771 -https://www.oceanexpert.org/expert/31772 -https://www.oceanexpert.org/expert/31774 -https://www.oceanexpert.org/expert/31777 -https://www.oceanexpert.org/expert/31793 -https://www.oceanexpert.org/expert/31802 -https://www.oceanexpert.org/expert/31803 -https://www.oceanexpert.org/expert/31810 -https://www.oceanexpert.org/expert/31811 -https://www.oceanexpert.org/expert/31817 -https://www.oceanexpert.org/expert/31818 -https://www.oceanexpert.org/expert/31819 -https://www.oceanexpert.org/expert/31831 -https://www.oceanexpert.org/expert/31835 -https://www.oceanexpert.org/expert/31844 -https://www.oceanexpert.org/expert/31857 -https://www.oceanexpert.org/expert/31859 -https://www.oceanexpert.org/expert/31865 -https://www.oceanexpert.org/expert/31866 -https://www.oceanexpert.org/expert/31869 -https://www.oceanexpert.org/expert/31870 -https://www.oceanexpert.org/expert/31872 -https://www.oceanexpert.org/expert/31873 -https://www.oceanexpert.org/expert/31875 -https://www.oceanexpert.org/expert/31877 -https://www.oceanexpert.org/expert/31879 -https://www.oceanexpert.org/expert/31881 -https://www.oceanexpert.org/expert/31882 -https://www.oceanexpert.org/expert/31885 -https://www.oceanexpert.org/expert/31886 -https://www.oceanexpert.org/expert/31887 -https://www.oceanexpert.org/expert/31891 -https://www.oceanexpert.org/expert/31898 -https://www.oceanexpert.org/expert/31904 -https://www.oceanexpert.org/expert/31906 -https://www.oceanexpert.org/expert/31907 -https://www.oceanexpert.org/expert/31910 -https://www.oceanexpert.org/expert/31913 -https://www.oceanexpert.org/expert/31914 -https://www.oceanexpert.org/expert/31916 -https://www.oceanexpert.org/expert/31924 -https://www.oceanexpert.org/expert/31933 -https://www.oceanexpert.org/expert/31935 -https://www.oceanexpert.org/expert/31936 -https://www.oceanexpert.org/expert/31937 -https://www.oceanexpert.org/expert/31938 -https://www.oceanexpert.org/expert/31941 -https://www.oceanexpert.org/expert/31942 -https://www.oceanexpert.org/expert/31943 -https://www.oceanexpert.org/expert/31944 -https://www.oceanexpert.org/expert/31945 -https://www.oceanexpert.org/expert/31947 -https://www.oceanexpert.org/expert/31948 -https://www.oceanexpert.org/expert/31949 -https://www.oceanexpert.org/expert/31956 -https://www.oceanexpert.org/expert/31961 -https://www.oceanexpert.org/expert/31965 -https://www.oceanexpert.org/expert/31966 -https://www.oceanexpert.org/expert/31967 -https://www.oceanexpert.org/expert/31970 -https://www.oceanexpert.org/expert/31974 -https://www.oceanexpert.org/expert/31977 -https://www.oceanexpert.org/expert/31979 -https://www.oceanexpert.org/expert/31980 -https://www.oceanexpert.org/expert/31983 -https://www.oceanexpert.org/expert/31984 -https://www.oceanexpert.org/expert/31985 -https://www.oceanexpert.org/expert/31986 -https://www.oceanexpert.org/expert/31989 -https://www.oceanexpert.org/expert/31993 -https://www.oceanexpert.org/expert/31994 -https://www.oceanexpert.org/expert/32000 -https://www.oceanexpert.org/expert/32019 -https://www.oceanexpert.org/expert/32043 -https://www.oceanexpert.org/expert/32046 -https://www.oceanexpert.org/expert/32050 -https://www.oceanexpert.org/expert/32053 -https://www.oceanexpert.org/expert/32059 -https://www.oceanexpert.org/expert/32061 -https://www.oceanexpert.org/expert/32065 -https://www.oceanexpert.org/expert/32069 -https://www.oceanexpert.org/expert/32071 -https://www.oceanexpert.org/expert/32075 -https://www.oceanexpert.org/expert/32092 -https://www.oceanexpert.org/expert/32094 -https://www.oceanexpert.org/expert/32099 -https://www.oceanexpert.org/expert/32100 -https://www.oceanexpert.org/expert/32101 -https://www.oceanexpert.org/expert/32102 -https://www.oceanexpert.org/expert/32110 -https://www.oceanexpert.org/expert/32119 -https://www.oceanexpert.org/expert/32122 -https://www.oceanexpert.org/expert/32123 -https://www.oceanexpert.org/expert/32125 -https://www.oceanexpert.org/expert/32127 -https://www.oceanexpert.org/expert/32128 -https://www.oceanexpert.org/expert/32132 -https://www.oceanexpert.org/expert/32134 -https://www.oceanexpert.org/expert/32136 -https://www.oceanexpert.org/expert/32140 -https://www.oceanexpert.org/expert/32141 -https://www.oceanexpert.org/expert/32142 -https://www.oceanexpert.org/expert/32143 -https://www.oceanexpert.org/expert/32145 -https://www.oceanexpert.org/expert/32146 -https://www.oceanexpert.org/expert/32148 -https://www.oceanexpert.org/expert/32149 -https://www.oceanexpert.org/expert/32150 -https://www.oceanexpert.org/expert/32151 -https://www.oceanexpert.org/expert/32153 -https://www.oceanexpert.org/expert/32155 -https://www.oceanexpert.org/expert/32160 -https://www.oceanexpert.org/expert/32161 -https://www.oceanexpert.org/expert/32163 -https://www.oceanexpert.org/expert/32164 -https://www.oceanexpert.org/expert/32169 -https://www.oceanexpert.org/expert/32172 -https://www.oceanexpert.org/expert/32173 -https://www.oceanexpert.org/expert/32174 -https://www.oceanexpert.org/expert/32175 -https://www.oceanexpert.org/expert/32176 -https://www.oceanexpert.org/expert/32177 -https://www.oceanexpert.org/expert/32178 -https://www.oceanexpert.org/expert/32179 -https://www.oceanexpert.org/expert/32180 -https://www.oceanexpert.org/expert/32181 -https://www.oceanexpert.org/expert/32182 -https://www.oceanexpert.org/expert/32183 -https://www.oceanexpert.org/expert/32184 -https://www.oceanexpert.org/expert/32185 -https://www.oceanexpert.org/expert/32186 -https://www.oceanexpert.org/expert/32187 -https://www.oceanexpert.org/expert/32188 -https://www.oceanexpert.org/expert/32189 -https://www.oceanexpert.org/expert/32190 -https://www.oceanexpert.org/expert/32191 -https://www.oceanexpert.org/expert/32197 -https://www.oceanexpert.org/expert/32198 -https://www.oceanexpert.org/expert/32199 -https://www.oceanexpert.org/expert/32201 -https://www.oceanexpert.org/expert/32202 -https://www.oceanexpert.org/expert/32203 -https://www.oceanexpert.org/expert/32206 -https://www.oceanexpert.org/expert/32207 -https://www.oceanexpert.org/expert/32208 -https://www.oceanexpert.org/expert/32209 -https://www.oceanexpert.org/expert/32210 -https://www.oceanexpert.org/expert/32211 -https://www.oceanexpert.org/expert/32213 -https://www.oceanexpert.org/expert/32214 -https://www.oceanexpert.org/expert/32216 -https://www.oceanexpert.org/expert/32219 -https://www.oceanexpert.org/expert/32222 -https://www.oceanexpert.org/expert/32223 -https://www.oceanexpert.org/expert/32224 -https://www.oceanexpert.org/expert/32225 -https://www.oceanexpert.org/expert/32226 -https://www.oceanexpert.org/expert/32227 -https://www.oceanexpert.org/expert/32228 -https://www.oceanexpert.org/expert/32229 -https://www.oceanexpert.org/expert/32230 -https://www.oceanexpert.org/expert/32231 -https://www.oceanexpert.org/expert/32232 -https://www.oceanexpert.org/expert/32233 -https://www.oceanexpert.org/expert/32234 -https://www.oceanexpert.org/expert/32236 -https://www.oceanexpert.org/expert/32237 -https://www.oceanexpert.org/expert/32240 -https://www.oceanexpert.org/expert/32241 -https://www.oceanexpert.org/expert/32242 -https://www.oceanexpert.org/expert/32243 -https://www.oceanexpert.org/expert/32244 -https://www.oceanexpert.org/expert/32246 -https://www.oceanexpert.org/expert/32249 -https://www.oceanexpert.org/expert/32250 -https://www.oceanexpert.org/expert/32251 -https://www.oceanexpert.org/expert/32252 -https://www.oceanexpert.org/expert/32262 -https://www.oceanexpert.org/expert/32263 -https://www.oceanexpert.org/expert/32266 -https://www.oceanexpert.org/expert/32273 -https://www.oceanexpert.org/expert/32274 -https://www.oceanexpert.org/expert/32275 -https://www.oceanexpert.org/expert/32276 -https://www.oceanexpert.org/expert/32279 -https://www.oceanexpert.org/expert/32280 -https://www.oceanexpert.org/expert/32282 -https://www.oceanexpert.org/expert/32283 -https://www.oceanexpert.org/expert/32284 -https://www.oceanexpert.org/expert/32288 -https://www.oceanexpert.org/expert/32293 -https://www.oceanexpert.org/expert/32299 -https://www.oceanexpert.org/expert/32304 -https://www.oceanexpert.org/expert/32306 -https://www.oceanexpert.org/expert/32308 -https://www.oceanexpert.org/expert/32310 -https://www.oceanexpert.org/expert/32311 -https://www.oceanexpert.org/expert/32312 -https://www.oceanexpert.org/expert/32313 -https://www.oceanexpert.org/expert/32322 -https://www.oceanexpert.org/expert/32323 -https://www.oceanexpert.org/expert/32325 -https://www.oceanexpert.org/expert/32326 -https://www.oceanexpert.org/expert/32327 -https://www.oceanexpert.org/expert/32331 -https://www.oceanexpert.org/expert/32334 -https://www.oceanexpert.org/expert/32343 -https://www.oceanexpert.org/expert/32344 -https://www.oceanexpert.org/expert/32345 -https://www.oceanexpert.org/expert/32347 -https://www.oceanexpert.org/expert/32348 -https://www.oceanexpert.org/expert/32349 -https://www.oceanexpert.org/expert/32351 -https://www.oceanexpert.org/expert/32352 -https://www.oceanexpert.org/expert/32357 -https://www.oceanexpert.org/expert/32360 -https://www.oceanexpert.org/expert/32362 -https://www.oceanexpert.org/expert/32364 -https://www.oceanexpert.org/expert/32369 -https://www.oceanexpert.org/expert/32370 -https://www.oceanexpert.org/expert/32371 -https://www.oceanexpert.org/expert/32372 -https://www.oceanexpert.org/expert/32382 -https://www.oceanexpert.org/expert/32383 -https://www.oceanexpert.org/expert/32388 -https://www.oceanexpert.org/expert/32392 -https://www.oceanexpert.org/expert/32393 -https://www.oceanexpert.org/expert/32394 -https://www.oceanexpert.org/expert/32395 -https://www.oceanexpert.org/expert/32396 -https://www.oceanexpert.org/expert/32398 -https://www.oceanexpert.org/expert/32399 -https://www.oceanexpert.org/expert/32401 -https://www.oceanexpert.org/expert/32403 -https://www.oceanexpert.org/expert/32405 -https://www.oceanexpert.org/expert/32407 -https://www.oceanexpert.org/expert/32408 -https://www.oceanexpert.org/expert/32422 -https://www.oceanexpert.org/expert/32430 -https://www.oceanexpert.org/expert/32433 -https://www.oceanexpert.org/expert/32436 -https://www.oceanexpert.org/expert/32437 -https://www.oceanexpert.org/expert/32438 -https://www.oceanexpert.org/expert/32439 -https://www.oceanexpert.org/expert/32440 -https://www.oceanexpert.org/expert/32441 -https://www.oceanexpert.org/expert/32442 -https://www.oceanexpert.org/expert/32444 -https://www.oceanexpert.org/expert/32445 -https://www.oceanexpert.org/expert/32446 -https://www.oceanexpert.org/expert/32447 -https://www.oceanexpert.org/expert/32448 -https://www.oceanexpert.org/expert/32451 -https://www.oceanexpert.org/expert/32453 -https://www.oceanexpert.org/expert/32454 -https://www.oceanexpert.org/expert/32455 -https://www.oceanexpert.org/expert/32456 -https://www.oceanexpert.org/expert/32457 -https://www.oceanexpert.org/expert/32458 -https://www.oceanexpert.org/expert/32459 -https://www.oceanexpert.org/expert/32460 -https://www.oceanexpert.org/expert/32461 -https://www.oceanexpert.org/expert/32462 -https://www.oceanexpert.org/expert/32463 -https://www.oceanexpert.org/expert/32464 -https://www.oceanexpert.org/expert/32466 -https://www.oceanexpert.org/expert/32468 -https://www.oceanexpert.org/expert/32469 -https://www.oceanexpert.org/expert/32470 -https://www.oceanexpert.org/expert/32472 -https://www.oceanexpert.org/expert/32473 -https://www.oceanexpert.org/expert/32474 -https://www.oceanexpert.org/expert/32475 -https://www.oceanexpert.org/expert/32476 -https://www.oceanexpert.org/expert/32477 -https://www.oceanexpert.org/expert/32479 -https://www.oceanexpert.org/expert/32483 -https://www.oceanexpert.org/expert/32486 -https://www.oceanexpert.org/expert/32487 -https://www.oceanexpert.org/expert/32488 -https://www.oceanexpert.org/expert/32489 -https://www.oceanexpert.org/expert/32490 -https://www.oceanexpert.org/expert/32491 -https://www.oceanexpert.org/expert/32492 -https://www.oceanexpert.org/expert/32493 -https://www.oceanexpert.org/expert/32494 -https://www.oceanexpert.org/expert/32495 -https://www.oceanexpert.org/expert/32496 -https://www.oceanexpert.org/expert/32497 -https://www.oceanexpert.org/expert/32498 -https://www.oceanexpert.org/expert/32501 -https://www.oceanexpert.org/expert/32503 -https://www.oceanexpert.org/expert/32504 -https://www.oceanexpert.org/expert/32505 -https://www.oceanexpert.org/expert/32506 -https://www.oceanexpert.org/expert/32507 -https://www.oceanexpert.org/expert/32508 -https://www.oceanexpert.org/expert/32509 -https://www.oceanexpert.org/expert/32510 -https://www.oceanexpert.org/expert/32511 -https://www.oceanexpert.org/expert/32512 -https://www.oceanexpert.org/expert/32513 -https://www.oceanexpert.org/expert/32514 -https://www.oceanexpert.org/expert/32515 -https://www.oceanexpert.org/expert/32516 -https://www.oceanexpert.org/expert/32517 -https://www.oceanexpert.org/expert/32518 -https://www.oceanexpert.org/expert/32519 -https://www.oceanexpert.org/expert/32520 -https://www.oceanexpert.org/expert/32521 -https://www.oceanexpert.org/expert/32523 -https://www.oceanexpert.org/expert/32524 -https://www.oceanexpert.org/expert/32525 -https://www.oceanexpert.org/expert/32526 -https://www.oceanexpert.org/expert/32527 -https://www.oceanexpert.org/expert/32528 -https://www.oceanexpert.org/expert/32529 -https://www.oceanexpert.org/expert/32530 -https://www.oceanexpert.org/expert/32531 -https://www.oceanexpert.org/expert/32532 -https://www.oceanexpert.org/expert/32533 -https://www.oceanexpert.org/expert/32534 -https://www.oceanexpert.org/expert/32536 -https://www.oceanexpert.org/expert/32538 -https://www.oceanexpert.org/expert/32540 -https://www.oceanexpert.org/expert/32542 -https://www.oceanexpert.org/expert/32545 -https://www.oceanexpert.org/expert/32546 -https://www.oceanexpert.org/expert/32547 -https://www.oceanexpert.org/expert/32550 -https://www.oceanexpert.org/expert/32551 -https://www.oceanexpert.org/expert/32552 -https://www.oceanexpert.org/expert/32553 -https://www.oceanexpert.org/expert/32555 -https://www.oceanexpert.org/expert/32557 -https://www.oceanexpert.org/expert/32558 -https://www.oceanexpert.org/expert/32559 -https://www.oceanexpert.org/expert/32560 -https://www.oceanexpert.org/expert/32561 -https://www.oceanexpert.org/expert/32562 -https://www.oceanexpert.org/expert/32564 -https://www.oceanexpert.org/expert/32565 -https://www.oceanexpert.org/expert/32568 -https://www.oceanexpert.org/expert/32570 -https://www.oceanexpert.org/expert/32572 -https://www.oceanexpert.org/expert/32574 -https://www.oceanexpert.org/expert/32575 -https://www.oceanexpert.org/expert/32576 -https://www.oceanexpert.org/expert/32577 -https://www.oceanexpert.org/expert/32580 -https://www.oceanexpert.org/expert/32583 -https://www.oceanexpert.org/expert/32584 -https://www.oceanexpert.org/expert/32585 -https://www.oceanexpert.org/expert/32586 -https://www.oceanexpert.org/expert/32587 -https://www.oceanexpert.org/expert/32588 -https://www.oceanexpert.org/expert/32591 -https://www.oceanexpert.org/expert/32593 -https://www.oceanexpert.org/expert/32594 -https://www.oceanexpert.org/expert/32595 -https://www.oceanexpert.org/expert/32596 -https://www.oceanexpert.org/expert/32597 -https://www.oceanexpert.org/expert/32598 -https://www.oceanexpert.org/expert/32600 -https://www.oceanexpert.org/expert/32601 -https://www.oceanexpert.org/expert/32602 -https://www.oceanexpert.org/expert/32603 -https://www.oceanexpert.org/expert/32605 -https://www.oceanexpert.org/expert/32606 -https://www.oceanexpert.org/expert/32608 -https://www.oceanexpert.org/expert/32609 -https://www.oceanexpert.org/expert/32612 -https://www.oceanexpert.org/expert/32615 -https://www.oceanexpert.org/expert/32616 -https://www.oceanexpert.org/expert/32619 -https://www.oceanexpert.org/expert/32620 -https://www.oceanexpert.org/expert/32621 -https://www.oceanexpert.org/expert/32627 -https://www.oceanexpert.org/expert/32637 -https://www.oceanexpert.org/expert/32638 -https://www.oceanexpert.org/expert/32639 -https://www.oceanexpert.org/expert/32640 -https://www.oceanexpert.org/expert/32643 -https://www.oceanexpert.org/expert/32645 -https://www.oceanexpert.org/expert/32646 -https://www.oceanexpert.org/expert/32647 -https://www.oceanexpert.org/expert/32648 -https://www.oceanexpert.org/expert/32649 -https://www.oceanexpert.org/expert/32650 -https://www.oceanexpert.org/expert/32651 -https://www.oceanexpert.org/expert/32652 -https://www.oceanexpert.org/expert/32653 -https://www.oceanexpert.org/expert/32657 -https://www.oceanexpert.org/expert/32659 -https://www.oceanexpert.org/expert/32663 -https://www.oceanexpert.org/expert/32664 -https://www.oceanexpert.org/expert/32665 -https://www.oceanexpert.org/expert/32669 -https://www.oceanexpert.org/expert/32672 -https://www.oceanexpert.org/expert/32673 -https://www.oceanexpert.org/expert/32678 -https://www.oceanexpert.org/expert/32679 -https://www.oceanexpert.org/expert/32682 -https://www.oceanexpert.org/expert/32684 -https://www.oceanexpert.org/expert/32686 -https://www.oceanexpert.org/expert/32689 -https://www.oceanexpert.org/expert/32692 -https://www.oceanexpert.org/expert/32695 -https://www.oceanexpert.org/expert/32696 -https://www.oceanexpert.org/expert/32698 -https://www.oceanexpert.org/expert/32700 -https://www.oceanexpert.org/expert/32701 -https://www.oceanexpert.org/expert/32702 -https://www.oceanexpert.org/expert/32703 -https://www.oceanexpert.org/expert/32704 -https://www.oceanexpert.org/expert/32705 -https://www.oceanexpert.org/expert/32708 -https://www.oceanexpert.org/expert/32712 -https://www.oceanexpert.org/expert/32713 -https://www.oceanexpert.org/expert/32714 -https://www.oceanexpert.org/expert/32715 -https://www.oceanexpert.org/expert/32716 -https://www.oceanexpert.org/expert/32717 -https://www.oceanexpert.org/expert/32728 -https://www.oceanexpert.org/expert/32736 -https://www.oceanexpert.org/expert/32743 -https://www.oceanexpert.org/expert/32744 -https://www.oceanexpert.org/expert/32746 -https://www.oceanexpert.org/expert/32747 -https://www.oceanexpert.org/expert/32748 -https://www.oceanexpert.org/expert/32749 -https://www.oceanexpert.org/expert/32750 -https://www.oceanexpert.org/expert/32751 -https://www.oceanexpert.org/expert/32752 -https://www.oceanexpert.org/expert/32754 -https://www.oceanexpert.org/expert/32755 -https://www.oceanexpert.org/expert/32756 -https://www.oceanexpert.org/expert/32757 -https://www.oceanexpert.org/expert/32759 -https://www.oceanexpert.org/expert/32762 -https://www.oceanexpert.org/expert/32763 -https://www.oceanexpert.org/expert/32766 -https://www.oceanexpert.org/expert/32769 -https://www.oceanexpert.org/expert/32772 -https://www.oceanexpert.org/expert/32773 -https://www.oceanexpert.org/expert/32774 -https://www.oceanexpert.org/expert/32775 -https://www.oceanexpert.org/expert/32776 -https://www.oceanexpert.org/expert/32777 -https://www.oceanexpert.org/expert/32778 -https://www.oceanexpert.org/expert/32779 -https://www.oceanexpert.org/expert/32781 -https://www.oceanexpert.org/expert/32783 -https://www.oceanexpert.org/expert/32786 -https://www.oceanexpert.org/expert/32791 -https://www.oceanexpert.org/expert/32792 -https://www.oceanexpert.org/expert/32793 -https://www.oceanexpert.org/expert/32794 -https://www.oceanexpert.org/expert/32797 -https://www.oceanexpert.org/expert/32801 -https://www.oceanexpert.org/expert/32803 -https://www.oceanexpert.org/expert/32804 -https://www.oceanexpert.org/expert/32806 -https://www.oceanexpert.org/expert/32807 -https://www.oceanexpert.org/expert/32808 -https://www.oceanexpert.org/expert/32809 -https://www.oceanexpert.org/expert/32811 -https://www.oceanexpert.org/expert/32812 -https://www.oceanexpert.org/expert/32813 -https://www.oceanexpert.org/expert/32815 -https://www.oceanexpert.org/expert/32816 -https://www.oceanexpert.org/expert/32817 -https://www.oceanexpert.org/expert/32818 -https://www.oceanexpert.org/expert/32820 -https://www.oceanexpert.org/expert/32822 -https://www.oceanexpert.org/expert/32823 -https://www.oceanexpert.org/expert/32824 -https://www.oceanexpert.org/expert/32826 -https://www.oceanexpert.org/expert/32827 -https://www.oceanexpert.org/expert/32841 -https://www.oceanexpert.org/expert/32845 -https://www.oceanexpert.org/expert/32847 -https://www.oceanexpert.org/expert/32848 -https://www.oceanexpert.org/expert/32849 -https://www.oceanexpert.org/expert/32856 -https://www.oceanexpert.org/expert/32857 -https://www.oceanexpert.org/expert/32858 -https://www.oceanexpert.org/expert/32859 -https://www.oceanexpert.org/expert/32860 -https://www.oceanexpert.org/expert/32861 -https://www.oceanexpert.org/expert/32862 -https://www.oceanexpert.org/expert/32863 -https://www.oceanexpert.org/expert/32865 -https://www.oceanexpert.org/expert/32866 -https://www.oceanexpert.org/expert/32870 -https://www.oceanexpert.org/expert/32871 -https://www.oceanexpert.org/expert/32872 -https://www.oceanexpert.org/expert/32874 -https://www.oceanexpert.org/expert/32875 -https://www.oceanexpert.org/expert/32876 -https://www.oceanexpert.org/expert/32877 -https://www.oceanexpert.org/expert/32878 -https://www.oceanexpert.org/expert/32879 -https://www.oceanexpert.org/expert/32881 -https://www.oceanexpert.org/expert/32886 -https://www.oceanexpert.org/expert/32888 -https://www.oceanexpert.org/expert/32891 -https://www.oceanexpert.org/expert/32892 -https://www.oceanexpert.org/expert/32893 -https://www.oceanexpert.org/expert/32896 -https://www.oceanexpert.org/expert/32899 -https://www.oceanexpert.org/expert/32901 -https://www.oceanexpert.org/expert/32907 -https://www.oceanexpert.org/expert/32920 -https://www.oceanexpert.org/expert/32921 -https://www.oceanexpert.org/expert/32923 -https://www.oceanexpert.org/expert/32925 -https://www.oceanexpert.org/expert/32926 -https://www.oceanexpert.org/expert/32927 -https://www.oceanexpert.org/expert/32930 -https://www.oceanexpert.org/expert/32931 -https://www.oceanexpert.org/expert/32932 -https://www.oceanexpert.org/expert/32939 -https://www.oceanexpert.org/expert/32950 -https://www.oceanexpert.org/expert/32951 -https://www.oceanexpert.org/expert/32954 -https://www.oceanexpert.org/expert/32955 -https://www.oceanexpert.org/expert/32956 -https://www.oceanexpert.org/expert/32958 -https://www.oceanexpert.org/expert/32961 -https://www.oceanexpert.org/expert/32962 -https://www.oceanexpert.org/expert/32963 -https://www.oceanexpert.org/expert/32974 -https://www.oceanexpert.org/expert/32977 -https://www.oceanexpert.org/expert/32978 -https://www.oceanexpert.org/expert/32982 -https://www.oceanexpert.org/expert/32983 -https://www.oceanexpert.org/expert/32984 -https://www.oceanexpert.org/expert/32988 -https://www.oceanexpert.org/expert/32997 -https://www.oceanexpert.org/expert/32999 -https://www.oceanexpert.org/expert/33000 -https://www.oceanexpert.org/expert/33001 -https://www.oceanexpert.org/expert/33002 -https://www.oceanexpert.org/expert/33007 -https://www.oceanexpert.org/expert/33011 -https://www.oceanexpert.org/expert/33013 -https://www.oceanexpert.org/expert/33015 -https://www.oceanexpert.org/expert/33016 -https://www.oceanexpert.org/expert/33017 -https://www.oceanexpert.org/expert/33021 -https://www.oceanexpert.org/expert/33024 -https://www.oceanexpert.org/expert/33026 -https://www.oceanexpert.org/expert/33027 -https://www.oceanexpert.org/expert/33028 -https://www.oceanexpert.org/expert/33029 -https://www.oceanexpert.org/expert/33030 -https://www.oceanexpert.org/expert/33034 -https://www.oceanexpert.org/expert/33035 -https://www.oceanexpert.org/expert/33050 -https://www.oceanexpert.org/expert/33056 -https://www.oceanexpert.org/expert/33059 -https://www.oceanexpert.org/expert/33060 -https://www.oceanexpert.org/expert/33061 -https://www.oceanexpert.org/expert/33062 -https://www.oceanexpert.org/expert/33063 -https://www.oceanexpert.org/expert/33064 -https://www.oceanexpert.org/expert/33065 -https://www.oceanexpert.org/expert/33069 -https://www.oceanexpert.org/expert/33074 -https://www.oceanexpert.org/expert/33075 -https://www.oceanexpert.org/expert/33076 -https://www.oceanexpert.org/expert/33078 -https://www.oceanexpert.org/expert/33081 -https://www.oceanexpert.org/expert/33082 -https://www.oceanexpert.org/expert/33083 -https://www.oceanexpert.org/expert/33084 -https://www.oceanexpert.org/expert/33086 -https://www.oceanexpert.org/expert/33091 -https://www.oceanexpert.org/expert/33092 -https://www.oceanexpert.org/expert/33095 -https://www.oceanexpert.org/expert/33098 -https://www.oceanexpert.org/expert/33099 -https://www.oceanexpert.org/expert/33101 -https://www.oceanexpert.org/expert/33110 -https://www.oceanexpert.org/expert/33111 -https://www.oceanexpert.org/expert/33112 -https://www.oceanexpert.org/expert/33113 -https://www.oceanexpert.org/expert/33115 -https://www.oceanexpert.org/expert/33122 -https://www.oceanexpert.org/expert/33123 -https://www.oceanexpert.org/expert/33125 -https://www.oceanexpert.org/expert/33131 -https://www.oceanexpert.org/expert/33132 -https://www.oceanexpert.org/expert/33133 -https://www.oceanexpert.org/expert/33135 -https://www.oceanexpert.org/expert/33149 -https://www.oceanexpert.org/expert/33150 -https://www.oceanexpert.org/expert/33151 -https://www.oceanexpert.org/expert/33163 -https://www.oceanexpert.org/expert/33168 -https://www.oceanexpert.org/expert/33169 -https://www.oceanexpert.org/expert/33172 -https://www.oceanexpert.org/expert/33174 -https://www.oceanexpert.org/expert/33175 -https://www.oceanexpert.org/expert/33187 -https://www.oceanexpert.org/expert/33195 -https://www.oceanexpert.org/expert/33197 -https://www.oceanexpert.org/expert/33198 -https://www.oceanexpert.org/expert/33201 -https://www.oceanexpert.org/expert/33203 -https://www.oceanexpert.org/expert/33204 -https://www.oceanexpert.org/expert/33205 -https://www.oceanexpert.org/expert/33207 -https://www.oceanexpert.org/expert/33210 -https://www.oceanexpert.org/expert/33212 -https://www.oceanexpert.org/expert/33220 -https://www.oceanexpert.org/expert/33221 -https://www.oceanexpert.org/expert/33222 -https://www.oceanexpert.org/expert/33223 -https://www.oceanexpert.org/expert/33225 -https://www.oceanexpert.org/expert/33226 -https://www.oceanexpert.org/expert/33228 -https://www.oceanexpert.org/expert/33230 -https://www.oceanexpert.org/expert/33235 -https://www.oceanexpert.org/expert/33240 -https://www.oceanexpert.org/expert/33241 -https://www.oceanexpert.org/expert/33242 -https://www.oceanexpert.org/expert/33243 -https://www.oceanexpert.org/expert/33244 -https://www.oceanexpert.org/expert/33245 -https://www.oceanexpert.org/expert/33248 -https://www.oceanexpert.org/expert/33249 -https://www.oceanexpert.org/expert/33250 -https://www.oceanexpert.org/expert/33252 -https://www.oceanexpert.org/expert/33253 -https://www.oceanexpert.org/expert/33256 -https://www.oceanexpert.org/expert/33260 -https://www.oceanexpert.org/expert/33262 -https://www.oceanexpert.org/expert/33265 -https://www.oceanexpert.org/expert/33266 -https://www.oceanexpert.org/expert/33267 -https://www.oceanexpert.org/expert/33268 -https://www.oceanexpert.org/expert/33269 -https://www.oceanexpert.org/expert/33270 -https://www.oceanexpert.org/expert/33271 -https://www.oceanexpert.org/expert/33272 -https://www.oceanexpert.org/expert/33274 -https://www.oceanexpert.org/expert/33276 -https://www.oceanexpert.org/expert/33277 -https://www.oceanexpert.org/expert/33278 -https://www.oceanexpert.org/expert/33279 -https://www.oceanexpert.org/expert/33280 -https://www.oceanexpert.org/expert/33282 -https://www.oceanexpert.org/expert/33283 -https://www.oceanexpert.org/expert/33284 -https://www.oceanexpert.org/expert/33285 -https://www.oceanexpert.org/expert/33286 -https://www.oceanexpert.org/expert/33288 -https://www.oceanexpert.org/expert/33289 -https://www.oceanexpert.org/expert/33290 -https://www.oceanexpert.org/expert/33291 -https://www.oceanexpert.org/expert/33292 -https://www.oceanexpert.org/expert/33293 -https://www.oceanexpert.org/expert/33294 -https://www.oceanexpert.org/expert/33296 -https://www.oceanexpert.org/expert/33297 -https://www.oceanexpert.org/expert/33298 -https://www.oceanexpert.org/expert/33299 -https://www.oceanexpert.org/expert/33300 -https://www.oceanexpert.org/expert/33301 -https://www.oceanexpert.org/expert/33302 -https://www.oceanexpert.org/expert/33304 -https://www.oceanexpert.org/expert/33307 -https://www.oceanexpert.org/expert/33309 -https://www.oceanexpert.org/expert/33310 -https://www.oceanexpert.org/expert/33314 -https://www.oceanexpert.org/expert/33315 -https://www.oceanexpert.org/expert/33316 -https://www.oceanexpert.org/expert/33319 -https://www.oceanexpert.org/expert/33320 -https://www.oceanexpert.org/expert/33321 -https://www.oceanexpert.org/expert/33322 -https://www.oceanexpert.org/expert/33323 -https://www.oceanexpert.org/expert/33324 -https://www.oceanexpert.org/expert/33327 -https://www.oceanexpert.org/expert/33336 -https://www.oceanexpert.org/expert/33341 -https://www.oceanexpert.org/expert/33343 -https://www.oceanexpert.org/expert/33344 -https://www.oceanexpert.org/expert/33345 -https://www.oceanexpert.org/expert/33347 -https://www.oceanexpert.org/expert/33349 -https://www.oceanexpert.org/expert/33351 -https://www.oceanexpert.org/expert/33352 -https://www.oceanexpert.org/expert/33355 -https://www.oceanexpert.org/expert/33356 -https://www.oceanexpert.org/expert/33358 -https://www.oceanexpert.org/expert/33359 -https://www.oceanexpert.org/expert/33361 -https://www.oceanexpert.org/expert/33362 -https://www.oceanexpert.org/expert/33363 -https://www.oceanexpert.org/expert/33364 -https://www.oceanexpert.org/expert/33365 -https://www.oceanexpert.org/expert/33366 -https://www.oceanexpert.org/expert/33368 -https://www.oceanexpert.org/expert/33370 -https://www.oceanexpert.org/expert/33371 -https://www.oceanexpert.org/expert/33372 -https://www.oceanexpert.org/expert/33373 -https://www.oceanexpert.org/expert/33374 -https://www.oceanexpert.org/expert/33375 -https://www.oceanexpert.org/expert/33376 -https://www.oceanexpert.org/expert/33378 -https://www.oceanexpert.org/expert/33381 -https://www.oceanexpert.org/expert/33383 -https://www.oceanexpert.org/expert/33384 -https://www.oceanexpert.org/expert/33385 -https://www.oceanexpert.org/expert/33386 -https://www.oceanexpert.org/expert/33387 -https://www.oceanexpert.org/expert/33389 -https://www.oceanexpert.org/expert/33390 -https://www.oceanexpert.org/expert/33391 -https://www.oceanexpert.org/expert/33392 -https://www.oceanexpert.org/expert/33398 -https://www.oceanexpert.org/expert/33399 -https://www.oceanexpert.org/expert/33405 -https://www.oceanexpert.org/expert/33407 -https://www.oceanexpert.org/expert/33408 -https://www.oceanexpert.org/expert/33409 -https://www.oceanexpert.org/expert/33410 -https://www.oceanexpert.org/expert/33411 -https://www.oceanexpert.org/expert/33423 -https://www.oceanexpert.org/expert/33424 -https://www.oceanexpert.org/expert/33433 -https://www.oceanexpert.org/expert/33434 -https://www.oceanexpert.org/expert/33435 -https://www.oceanexpert.org/expert/33436 -https://www.oceanexpert.org/expert/33437 -https://www.oceanexpert.org/expert/33438 -https://www.oceanexpert.org/expert/33439 -https://www.oceanexpert.org/expert/33440 -https://www.oceanexpert.org/expert/33441 -https://www.oceanexpert.org/expert/33445 -https://www.oceanexpert.org/expert/33446 -https://www.oceanexpert.org/expert/33447 -https://www.oceanexpert.org/expert/33448 -https://www.oceanexpert.org/expert/33452 -https://www.oceanexpert.org/expert/33453 -https://www.oceanexpert.org/expert/33457 -https://www.oceanexpert.org/expert/33458 -https://www.oceanexpert.org/expert/33459 -https://www.oceanexpert.org/expert/33463 -https://www.oceanexpert.org/expert/33464 -https://www.oceanexpert.org/expert/33465 -https://www.oceanexpert.org/expert/33466 -https://www.oceanexpert.org/expert/33467 -https://www.oceanexpert.org/expert/33468 -https://www.oceanexpert.org/expert/33469 -https://www.oceanexpert.org/expert/33470 -https://www.oceanexpert.org/expert/33476 -https://www.oceanexpert.org/expert/33479 -https://www.oceanexpert.org/expert/33481 -https://www.oceanexpert.org/expert/33494 -https://www.oceanexpert.org/expert/33495 -https://www.oceanexpert.org/expert/33496 -https://www.oceanexpert.org/expert/33498 -https://www.oceanexpert.org/expert/33499 -https://www.oceanexpert.org/expert/33501 -https://www.oceanexpert.org/expert/33503 -https://www.oceanexpert.org/expert/33505 -https://www.oceanexpert.org/expert/33506 -https://www.oceanexpert.org/expert/33507 -https://www.oceanexpert.org/expert/33511 -https://www.oceanexpert.org/expert/33514 -https://www.oceanexpert.org/expert/33519 -https://www.oceanexpert.org/expert/33522 -https://www.oceanexpert.org/expert/33523 -https://www.oceanexpert.org/expert/33524 -https://www.oceanexpert.org/expert/33525 -https://www.oceanexpert.org/expert/33528 -https://www.oceanexpert.org/expert/33535 -https://www.oceanexpert.org/expert/33537 -https://www.oceanexpert.org/expert/33541 -https://www.oceanexpert.org/expert/33543 -https://www.oceanexpert.org/expert/33548 -https://www.oceanexpert.org/expert/33552 -https://www.oceanexpert.org/expert/33553 -https://www.oceanexpert.org/expert/33555 -https://www.oceanexpert.org/expert/33556 -https://www.oceanexpert.org/expert/33557 -https://www.oceanexpert.org/expert/33558 -https://www.oceanexpert.org/expert/33560 -https://www.oceanexpert.org/expert/33563 -https://www.oceanexpert.org/expert/33567 -https://www.oceanexpert.org/expert/33568 -https://www.oceanexpert.org/expert/33575 -https://www.oceanexpert.org/expert/33576 -https://www.oceanexpert.org/expert/33579 -https://www.oceanexpert.org/expert/33603 -https://www.oceanexpert.org/expert/33606 -https://www.oceanexpert.org/expert/33608 -https://www.oceanexpert.org/expert/33609 -https://www.oceanexpert.org/expert/33611 -https://www.oceanexpert.org/expert/33612 -https://www.oceanexpert.org/expert/33613 -https://www.oceanexpert.org/expert/33619 -https://www.oceanexpert.org/expert/33620 -https://www.oceanexpert.org/expert/33621 -https://www.oceanexpert.org/expert/33625 -https://www.oceanexpert.org/expert/33626 -https://www.oceanexpert.org/expert/33627 -https://www.oceanexpert.org/expert/33628 -https://www.oceanexpert.org/expert/33629 -https://www.oceanexpert.org/expert/33630 -https://www.oceanexpert.org/expert/33632 -https://www.oceanexpert.org/expert/33633 -https://www.oceanexpert.org/expert/33634 -https://www.oceanexpert.org/expert/33637 -https://www.oceanexpert.org/expert/33645 -https://www.oceanexpert.org/expert/33652 -https://www.oceanexpert.org/expert/33653 -https://www.oceanexpert.org/expert/33654 -https://www.oceanexpert.org/expert/33656 -https://www.oceanexpert.org/expert/33679 -https://www.oceanexpert.org/expert/33687 -https://www.oceanexpert.org/expert/33688 -https://www.oceanexpert.org/expert/33689 -https://www.oceanexpert.org/expert/33692 -https://www.oceanexpert.org/expert/33703 -https://www.oceanexpert.org/expert/33704 -https://www.oceanexpert.org/expert/33706 -https://www.oceanexpert.org/expert/33707 -https://www.oceanexpert.org/expert/33708 -https://www.oceanexpert.org/expert/33709 -https://www.oceanexpert.org/expert/33715 -https://www.oceanexpert.org/expert/33728 -https://www.oceanexpert.org/expert/33729 -https://www.oceanexpert.org/expert/33731 -https://www.oceanexpert.org/expert/33734 -https://www.oceanexpert.org/expert/33741 -https://www.oceanexpert.org/expert/33742 -https://www.oceanexpert.org/expert/33743 -https://www.oceanexpert.org/expert/33744 -https://www.oceanexpert.org/expert/33746 -https://www.oceanexpert.org/expert/33747 -https://www.oceanexpert.org/expert/33748 -https://www.oceanexpert.org/expert/33751 -https://www.oceanexpert.org/expert/33753 -https://www.oceanexpert.org/expert/33754 -https://www.oceanexpert.org/expert/33755 -https://www.oceanexpert.org/expert/33757 -https://www.oceanexpert.org/expert/33759 -https://www.oceanexpert.org/expert/33761 -https://www.oceanexpert.org/expert/33763 -https://www.oceanexpert.org/expert/33764 -https://www.oceanexpert.org/expert/33766 -https://www.oceanexpert.org/expert/33767 -https://www.oceanexpert.org/expert/33771 -https://www.oceanexpert.org/expert/33774 -https://www.oceanexpert.org/expert/33775 -https://www.oceanexpert.org/expert/33777 -https://www.oceanexpert.org/expert/33782 -https://www.oceanexpert.org/expert/33783 -https://www.oceanexpert.org/expert/33787 -https://www.oceanexpert.org/expert/33788 -https://www.oceanexpert.org/expert/33789 -https://www.oceanexpert.org/expert/33792 -https://www.oceanexpert.org/expert/33793 -https://www.oceanexpert.org/expert/33794 -https://www.oceanexpert.org/expert/33795 -https://www.oceanexpert.org/expert/33798 -https://www.oceanexpert.org/expert/33802 -https://www.oceanexpert.org/expert/33803 -https://www.oceanexpert.org/expert/33804 -https://www.oceanexpert.org/expert/33806 -https://www.oceanexpert.org/expert/33808 -https://www.oceanexpert.org/expert/33811 -https://www.oceanexpert.org/expert/33815 -https://www.oceanexpert.org/expert/33816 -https://www.oceanexpert.org/expert/33817 -https://www.oceanexpert.org/expert/33818 -https://www.oceanexpert.org/expert/33822 -https://www.oceanexpert.org/expert/33826 -https://www.oceanexpert.org/expert/33827 -https://www.oceanexpert.org/expert/33831 -https://www.oceanexpert.org/expert/33841 -https://www.oceanexpert.org/expert/33842 -https://www.oceanexpert.org/expert/33848 -https://www.oceanexpert.org/expert/33849 -https://www.oceanexpert.org/expert/33851 -https://www.oceanexpert.org/expert/33855 -https://www.oceanexpert.org/expert/33856 -https://www.oceanexpert.org/expert/33857 -https://www.oceanexpert.org/expert/33859 -https://www.oceanexpert.org/expert/33860 -https://www.oceanexpert.org/expert/33861 -https://www.oceanexpert.org/expert/33862 -https://www.oceanexpert.org/expert/33863 -https://www.oceanexpert.org/expert/33864 -https://www.oceanexpert.org/expert/33869 -https://www.oceanexpert.org/expert/33876 -https://www.oceanexpert.org/expert/33877 -https://www.oceanexpert.org/expert/33878 -https://www.oceanexpert.org/expert/33879 -https://www.oceanexpert.org/expert/33881 -https://www.oceanexpert.org/expert/33882 -https://www.oceanexpert.org/expert/33883 -https://www.oceanexpert.org/expert/33884 -https://www.oceanexpert.org/expert/33890 -https://www.oceanexpert.org/expert/33898 -https://www.oceanexpert.org/expert/33904 -https://www.oceanexpert.org/expert/33907 -https://www.oceanexpert.org/expert/33910 -https://www.oceanexpert.org/expert/33911 -https://www.oceanexpert.org/expert/33912 -https://www.oceanexpert.org/expert/33913 -https://www.oceanexpert.org/expert/33915 -https://www.oceanexpert.org/expert/33916 -https://www.oceanexpert.org/expert/33925 -https://www.oceanexpert.org/expert/33929 -https://www.oceanexpert.org/expert/33930 -https://www.oceanexpert.org/expert/33937 -https://www.oceanexpert.org/expert/33939 -https://www.oceanexpert.org/expert/33940 -https://www.oceanexpert.org/expert/33943 -https://www.oceanexpert.org/expert/33948 -https://www.oceanexpert.org/expert/33953 -https://www.oceanexpert.org/expert/33955 -https://www.oceanexpert.org/expert/33958 -https://www.oceanexpert.org/expert/33959 -https://www.oceanexpert.org/expert/33980 -https://www.oceanexpert.org/expert/33985 -https://www.oceanexpert.org/expert/33988 -https://www.oceanexpert.org/expert/33995 -https://www.oceanexpert.org/expert/33997 -https://www.oceanexpert.org/expert/33998 -https://www.oceanexpert.org/expert/33999 -https://www.oceanexpert.org/expert/34000 -https://www.oceanexpert.org/expert/34008 -https://www.oceanexpert.org/expert/34013 -https://www.oceanexpert.org/expert/34014 -https://www.oceanexpert.org/expert/34016 -https://www.oceanexpert.org/expert/34024 -https://www.oceanexpert.org/expert/34026 -https://www.oceanexpert.org/expert/34028 -https://www.oceanexpert.org/expert/34034 -https://www.oceanexpert.org/expert/34036 -https://www.oceanexpert.org/expert/34037 -https://www.oceanexpert.org/expert/34039 -https://www.oceanexpert.org/expert/34043 -https://www.oceanexpert.org/expert/34044 -https://www.oceanexpert.org/expert/34045 -https://www.oceanexpert.org/expert/34048 -https://www.oceanexpert.org/expert/34051 -https://www.oceanexpert.org/expert/34053 -https://www.oceanexpert.org/expert/34054 -https://www.oceanexpert.org/expert/34055 -https://www.oceanexpert.org/expert/34056 -https://www.oceanexpert.org/expert/34057 -https://www.oceanexpert.org/expert/34058 -https://www.oceanexpert.org/expert/34059 -https://www.oceanexpert.org/expert/34060 -https://www.oceanexpert.org/expert/34061 -https://www.oceanexpert.org/expert/34062 -https://www.oceanexpert.org/expert/34063 -https://www.oceanexpert.org/expert/34064 -https://www.oceanexpert.org/expert/34065 -https://www.oceanexpert.org/expert/34067 -https://www.oceanexpert.org/expert/34071 -https://www.oceanexpert.org/expert/34072 -https://www.oceanexpert.org/expert/34077 -https://www.oceanexpert.org/expert/34078 -https://www.oceanexpert.org/expert/34080 -https://www.oceanexpert.org/expert/34082 -https://www.oceanexpert.org/expert/34085 -https://www.oceanexpert.org/expert/34086 -https://www.oceanexpert.org/expert/34087 -https://www.oceanexpert.org/expert/34088 -https://www.oceanexpert.org/expert/34089 -https://www.oceanexpert.org/expert/34091 -https://www.oceanexpert.org/expert/34092 -https://www.oceanexpert.org/expert/34093 -https://www.oceanexpert.org/expert/34099 -https://www.oceanexpert.org/expert/34102 -https://www.oceanexpert.org/expert/34103 -https://www.oceanexpert.org/expert/34104 -https://www.oceanexpert.org/expert/34106 -https://www.oceanexpert.org/expert/34108 -https://www.oceanexpert.org/expert/34110 -https://www.oceanexpert.org/expert/34113 -https://www.oceanexpert.org/expert/34115 -https://www.oceanexpert.org/expert/34116 -https://www.oceanexpert.org/expert/34126 -https://www.oceanexpert.org/expert/34127 -https://www.oceanexpert.org/expert/34128 -https://www.oceanexpert.org/expert/34130 -https://www.oceanexpert.org/expert/34131 -https://www.oceanexpert.org/expert/34133 -https://www.oceanexpert.org/expert/34134 -https://www.oceanexpert.org/expert/34136 -https://www.oceanexpert.org/expert/34137 -https://www.oceanexpert.org/expert/34139 -https://www.oceanexpert.org/expert/34140 -https://www.oceanexpert.org/expert/34141 -https://www.oceanexpert.org/expert/34147 -https://www.oceanexpert.org/expert/34153 -https://www.oceanexpert.org/expert/34155 -https://www.oceanexpert.org/expert/34160 -https://www.oceanexpert.org/expert/34162 -https://www.oceanexpert.org/expert/34164 -https://www.oceanexpert.org/expert/34167 -https://www.oceanexpert.org/expert/34168 -https://www.oceanexpert.org/expert/34187 -https://www.oceanexpert.org/expert/34189 -https://www.oceanexpert.org/expert/34200 -https://www.oceanexpert.org/expert/34207 -https://www.oceanexpert.org/expert/34210 -https://www.oceanexpert.org/expert/34211 -https://www.oceanexpert.org/expert/34213 -https://www.oceanexpert.org/expert/34214 -https://www.oceanexpert.org/expert/34218 -https://www.oceanexpert.org/expert/34219 -https://www.oceanexpert.org/expert/34220 -https://www.oceanexpert.org/expert/34222 -https://www.oceanexpert.org/expert/34224 -https://www.oceanexpert.org/expert/34228 -https://www.oceanexpert.org/expert/34230 -https://www.oceanexpert.org/expert/34233 -https://www.oceanexpert.org/expert/34235 -https://www.oceanexpert.org/expert/34236 -https://www.oceanexpert.org/expert/34237 -https://www.oceanexpert.org/expert/34239 -https://www.oceanexpert.org/expert/34241 -https://www.oceanexpert.org/expert/34242 -https://www.oceanexpert.org/expert/34243 -https://www.oceanexpert.org/expert/34246 -https://www.oceanexpert.org/expert/34247 -https://www.oceanexpert.org/expert/34250 -https://www.oceanexpert.org/expert/34254 -https://www.oceanexpert.org/expert/34255 -https://www.oceanexpert.org/expert/34256 -https://www.oceanexpert.org/expert/34259 -https://www.oceanexpert.org/expert/34266 -https://www.oceanexpert.org/expert/34267 -https://www.oceanexpert.org/expert/34268 -https://www.oceanexpert.org/expert/34269 -https://www.oceanexpert.org/expert/34270 -https://www.oceanexpert.org/expert/34273 -https://www.oceanexpert.org/expert/34274 -https://www.oceanexpert.org/expert/34276 -https://www.oceanexpert.org/expert/34281 -https://www.oceanexpert.org/expert/34282 -https://www.oceanexpert.org/expert/34283 -https://www.oceanexpert.org/expert/34284 -https://www.oceanexpert.org/expert/34286 -https://www.oceanexpert.org/expert/34287 -https://www.oceanexpert.org/expert/34291 -https://www.oceanexpert.org/expert/34294 -https://www.oceanexpert.org/expert/34295 -https://www.oceanexpert.org/expert/34308 -https://www.oceanexpert.org/expert/34309 -https://www.oceanexpert.org/expert/34310 -https://www.oceanexpert.org/expert/34312 -https://www.oceanexpert.org/expert/34314 -https://www.oceanexpert.org/expert/34317 -https://www.oceanexpert.org/expert/34321 -https://www.oceanexpert.org/expert/34328 -https://www.oceanexpert.org/expert/34330 -https://www.oceanexpert.org/expert/34336 -https://www.oceanexpert.org/expert/34337 -https://www.oceanexpert.org/expert/34338 -https://www.oceanexpert.org/expert/34340 -https://www.oceanexpert.org/expert/34341 -https://www.oceanexpert.org/expert/34342 -https://www.oceanexpert.org/expert/34343 -https://www.oceanexpert.org/expert/34345 -https://www.oceanexpert.org/expert/34347 -https://www.oceanexpert.org/expert/34348 -https://www.oceanexpert.org/expert/34350 -https://www.oceanexpert.org/expert/34352 -https://www.oceanexpert.org/expert/34353 -https://www.oceanexpert.org/expert/34356 -https://www.oceanexpert.org/expert/34358 -https://www.oceanexpert.org/expert/34363 -https://www.oceanexpert.org/expert/34365 -https://www.oceanexpert.org/expert/34370 -https://www.oceanexpert.org/expert/34375 -https://www.oceanexpert.org/expert/34376 -https://www.oceanexpert.org/expert/34377 -https://www.oceanexpert.org/expert/34378 -https://www.oceanexpert.org/expert/34380 -https://www.oceanexpert.org/expert/34381 -https://www.oceanexpert.org/expert/34382 -https://www.oceanexpert.org/expert/34383 -https://www.oceanexpert.org/expert/34384 -https://www.oceanexpert.org/expert/34386 -https://www.oceanexpert.org/expert/34387 -https://www.oceanexpert.org/expert/34391 -https://www.oceanexpert.org/expert/34392 -https://www.oceanexpert.org/expert/34393 -https://www.oceanexpert.org/expert/34394 -https://www.oceanexpert.org/expert/34395 -https://www.oceanexpert.org/expert/34396 -https://www.oceanexpert.org/expert/34398 -https://www.oceanexpert.org/expert/34402 -https://www.oceanexpert.org/expert/34407 -https://www.oceanexpert.org/expert/34409 -https://www.oceanexpert.org/expert/34410 -https://www.oceanexpert.org/expert/34413 -https://www.oceanexpert.org/expert/34419 -https://www.oceanexpert.org/expert/34421 -https://www.oceanexpert.org/expert/34422 -https://www.oceanexpert.org/expert/34425 -https://www.oceanexpert.org/expert/34426 -https://www.oceanexpert.org/expert/34427 -https://www.oceanexpert.org/expert/34428 -https://www.oceanexpert.org/expert/34431 -https://www.oceanexpert.org/expert/34433 -https://www.oceanexpert.org/expert/34434 -https://www.oceanexpert.org/expert/34436 -https://www.oceanexpert.org/expert/34437 -https://www.oceanexpert.org/expert/34440 -https://www.oceanexpert.org/expert/34441 -https://www.oceanexpert.org/expert/34443 -https://www.oceanexpert.org/expert/34445 -https://www.oceanexpert.org/expert/34446 -https://www.oceanexpert.org/expert/34454 -https://www.oceanexpert.org/expert/34455 -https://www.oceanexpert.org/expert/34458 -https://www.oceanexpert.org/expert/34459 -https://www.oceanexpert.org/expert/34460 -https://www.oceanexpert.org/expert/34461 -https://www.oceanexpert.org/expert/34462 -https://www.oceanexpert.org/expert/34463 -https://www.oceanexpert.org/expert/34464 -https://www.oceanexpert.org/expert/34465 -https://www.oceanexpert.org/expert/34467 -https://www.oceanexpert.org/expert/34468 -https://www.oceanexpert.org/expert/34469 -https://www.oceanexpert.org/expert/34471 -https://www.oceanexpert.org/expert/34474 -https://www.oceanexpert.org/expert/34475 -https://www.oceanexpert.org/expert/34476 -https://www.oceanexpert.org/expert/34478 -https://www.oceanexpert.org/expert/34480 -https://www.oceanexpert.org/expert/34485 -https://www.oceanexpert.org/expert/34490 -https://www.oceanexpert.org/expert/34491 -https://www.oceanexpert.org/expert/34493 -https://www.oceanexpert.org/expert/34494 -https://www.oceanexpert.org/expert/34495 -https://www.oceanexpert.org/expert/34498 -https://www.oceanexpert.org/expert/34500 -https://www.oceanexpert.org/expert/34502 -https://www.oceanexpert.org/expert/34504 -https://www.oceanexpert.org/expert/34507 -https://www.oceanexpert.org/expert/34509 -https://www.oceanexpert.org/expert/34510 -https://www.oceanexpert.org/expert/34511 -https://www.oceanexpert.org/expert/34512 -https://www.oceanexpert.org/expert/34515 -https://www.oceanexpert.org/expert/34519 -https://www.oceanexpert.org/expert/34520 -https://www.oceanexpert.org/expert/34521 -https://www.oceanexpert.org/expert/34523 -https://www.oceanexpert.org/expert/34524 -https://www.oceanexpert.org/expert/34528 -https://www.oceanexpert.org/expert/34531 -https://www.oceanexpert.org/expert/34532 -https://www.oceanexpert.org/expert/34533 -https://www.oceanexpert.org/expert/34534 -https://www.oceanexpert.org/expert/34535 -https://www.oceanexpert.org/expert/34536 -https://www.oceanexpert.org/expert/34537 -https://www.oceanexpert.org/expert/34538 -https://www.oceanexpert.org/expert/34540 -https://www.oceanexpert.org/expert/34541 -https://www.oceanexpert.org/expert/34542 -https://www.oceanexpert.org/expert/34543 -https://www.oceanexpert.org/expert/34544 -https://www.oceanexpert.org/expert/34548 -https://www.oceanexpert.org/expert/34549 -https://www.oceanexpert.org/expert/34551 -https://www.oceanexpert.org/expert/34552 -https://www.oceanexpert.org/expert/34553 -https://www.oceanexpert.org/expert/34554 -https://www.oceanexpert.org/expert/34556 -https://www.oceanexpert.org/expert/34558 -https://www.oceanexpert.org/expert/34562 -https://www.oceanexpert.org/expert/34563 -https://www.oceanexpert.org/expert/34565 -https://www.oceanexpert.org/expert/34567 -https://www.oceanexpert.org/expert/34568 -https://www.oceanexpert.org/expert/34570 -https://www.oceanexpert.org/expert/34571 -https://www.oceanexpert.org/expert/34572 -https://www.oceanexpert.org/expert/34575 -https://www.oceanexpert.org/expert/34579 -https://www.oceanexpert.org/expert/34583 -https://www.oceanexpert.org/expert/34584 -https://www.oceanexpert.org/expert/34585 -https://www.oceanexpert.org/expert/34587 -https://www.oceanexpert.org/expert/34588 -https://www.oceanexpert.org/expert/34589 -https://www.oceanexpert.org/expert/34590 -https://www.oceanexpert.org/expert/34591 -https://www.oceanexpert.org/expert/34596 -https://www.oceanexpert.org/expert/34597 -https://www.oceanexpert.org/expert/34600 -https://www.oceanexpert.org/expert/34603 -https://www.oceanexpert.org/expert/34604 -https://www.oceanexpert.org/expert/34607 -https://www.oceanexpert.org/expert/34608 -https://www.oceanexpert.org/expert/34609 -https://www.oceanexpert.org/expert/34610 -https://www.oceanexpert.org/expert/34613 -https://www.oceanexpert.org/expert/34614 -https://www.oceanexpert.org/expert/34615 -https://www.oceanexpert.org/expert/34618 -https://www.oceanexpert.org/expert/34619 -https://www.oceanexpert.org/expert/34620 -https://www.oceanexpert.org/expert/34622 -https://www.oceanexpert.org/expert/34623 -https://www.oceanexpert.org/expert/34625 -https://www.oceanexpert.org/expert/34626 -https://www.oceanexpert.org/expert/34627 -https://www.oceanexpert.org/expert/34632 -https://www.oceanexpert.org/expert/34634 -https://www.oceanexpert.org/expert/34635 -https://www.oceanexpert.org/expert/34637 -https://www.oceanexpert.org/expert/34638 -https://www.oceanexpert.org/expert/34639 -https://www.oceanexpert.org/expert/34643 -https://www.oceanexpert.org/expert/34646 -https://www.oceanexpert.org/expert/34648 -https://www.oceanexpert.org/expert/34650 -https://www.oceanexpert.org/expert/34651 -https://www.oceanexpert.org/expert/34654 -https://www.oceanexpert.org/expert/34658 -https://www.oceanexpert.org/expert/34659 -https://www.oceanexpert.org/expert/34660 -https://www.oceanexpert.org/expert/34662 -https://www.oceanexpert.org/expert/34663 -https://www.oceanexpert.org/expert/34664 -https://www.oceanexpert.org/expert/34665 -https://www.oceanexpert.org/expert/34669 -https://www.oceanexpert.org/expert/34670 -https://www.oceanexpert.org/expert/34671 -https://www.oceanexpert.org/expert/34672 -https://www.oceanexpert.org/expert/34674 -https://www.oceanexpert.org/expert/34676 -https://www.oceanexpert.org/expert/34677 -https://www.oceanexpert.org/expert/34678 -https://www.oceanexpert.org/expert/34679 -https://www.oceanexpert.org/expert/34682 -https://www.oceanexpert.org/expert/34684 -https://www.oceanexpert.org/expert/34686 -https://www.oceanexpert.org/expert/34687 -https://www.oceanexpert.org/expert/34691 -https://www.oceanexpert.org/expert/34693 -https://www.oceanexpert.org/expert/34694 -https://www.oceanexpert.org/expert/34695 -https://www.oceanexpert.org/expert/34696 -https://www.oceanexpert.org/expert/34697 -https://www.oceanexpert.org/expert/34698 -https://www.oceanexpert.org/expert/34699 -https://www.oceanexpert.org/expert/34700 -https://www.oceanexpert.org/expert/34701 -https://www.oceanexpert.org/expert/34702 -https://www.oceanexpert.org/expert/34707 -https://www.oceanexpert.org/expert/34710 -https://www.oceanexpert.org/expert/34712 -https://www.oceanexpert.org/expert/34713 -https://www.oceanexpert.org/expert/34714 -https://www.oceanexpert.org/expert/34716 -https://www.oceanexpert.org/expert/34717 -https://www.oceanexpert.org/expert/34718 -https://www.oceanexpert.org/expert/34722 -https://www.oceanexpert.org/expert/34725 -https://www.oceanexpert.org/expert/34726 -https://www.oceanexpert.org/expert/34729 -https://www.oceanexpert.org/expert/34732 -https://www.oceanexpert.org/expert/34733 -https://www.oceanexpert.org/expert/34735 -https://www.oceanexpert.org/expert/34736 -https://www.oceanexpert.org/expert/34738 -https://www.oceanexpert.org/expert/34741 -https://www.oceanexpert.org/expert/34743 -https://www.oceanexpert.org/expert/34745 -https://www.oceanexpert.org/expert/34749 -https://www.oceanexpert.org/expert/34750 -https://www.oceanexpert.org/expert/34751 -https://www.oceanexpert.org/expert/34753 -https://www.oceanexpert.org/expert/34755 -https://www.oceanexpert.org/expert/34757 -https://www.oceanexpert.org/expert/34762 -https://www.oceanexpert.org/expert/34763 -https://www.oceanexpert.org/expert/34764 -https://www.oceanexpert.org/expert/34765 -https://www.oceanexpert.org/expert/34766 -https://www.oceanexpert.org/expert/34768 -https://www.oceanexpert.org/expert/34769 -https://www.oceanexpert.org/expert/34770 -https://www.oceanexpert.org/expert/34771 -https://www.oceanexpert.org/expert/34774 -https://www.oceanexpert.org/expert/34775 -https://www.oceanexpert.org/expert/34776 -https://www.oceanexpert.org/expert/34778 -https://www.oceanexpert.org/expert/34779 -https://www.oceanexpert.org/expert/34782 -https://www.oceanexpert.org/expert/34783 -https://www.oceanexpert.org/expert/34784 -https://www.oceanexpert.org/expert/34786 -https://www.oceanexpert.org/expert/34788 -https://www.oceanexpert.org/expert/34789 -https://www.oceanexpert.org/expert/34790 -https://www.oceanexpert.org/expert/34791 -https://www.oceanexpert.org/expert/34792 -https://www.oceanexpert.org/expert/34796 -https://www.oceanexpert.org/expert/34797 -https://www.oceanexpert.org/expert/34798 -https://www.oceanexpert.org/expert/34799 -https://www.oceanexpert.org/expert/34802 -https://www.oceanexpert.org/expert/34805 -https://www.oceanexpert.org/expert/34806 -https://www.oceanexpert.org/expert/34807 -https://www.oceanexpert.org/expert/34809 -https://www.oceanexpert.org/expert/34812 -https://www.oceanexpert.org/expert/34814 -https://www.oceanexpert.org/expert/34816 -https://www.oceanexpert.org/expert/34817 -https://www.oceanexpert.org/expert/34820 -https://www.oceanexpert.org/expert/34821 -https://www.oceanexpert.org/expert/34826 -https://www.oceanexpert.org/expert/34827 -https://www.oceanexpert.org/expert/34829 -https://www.oceanexpert.org/expert/34831 -https://www.oceanexpert.org/expert/34835 -https://www.oceanexpert.org/expert/34837 -https://www.oceanexpert.org/expert/34838 -https://www.oceanexpert.org/expert/34841 -https://www.oceanexpert.org/expert/34842 -https://www.oceanexpert.org/expert/34843 -https://www.oceanexpert.org/expert/34845 -https://www.oceanexpert.org/expert/34846 -https://www.oceanexpert.org/expert/34847 -https://www.oceanexpert.org/expert/34848 -https://www.oceanexpert.org/expert/34849 -https://www.oceanexpert.org/expert/34851 -https://www.oceanexpert.org/expert/34852 -https://www.oceanexpert.org/expert/34853 -https://www.oceanexpert.org/expert/34854 -https://www.oceanexpert.org/expert/34856 -https://www.oceanexpert.org/expert/34857 -https://www.oceanexpert.org/expert/34858 -https://www.oceanexpert.org/expert/34859 -https://www.oceanexpert.org/expert/34860 -https://www.oceanexpert.org/expert/34864 -https://www.oceanexpert.org/expert/34866 -https://www.oceanexpert.org/expert/34869 -https://www.oceanexpert.org/expert/34873 -https://www.oceanexpert.org/expert/34874 -https://www.oceanexpert.org/expert/34877 -https://www.oceanexpert.org/expert/34878 -https://www.oceanexpert.org/expert/34879 -https://www.oceanexpert.org/expert/34880 -https://www.oceanexpert.org/expert/34881 -https://www.oceanexpert.org/expert/34882 -https://www.oceanexpert.org/expert/34883 -https://www.oceanexpert.org/expert/34884 -https://www.oceanexpert.org/expert/34885 -https://www.oceanexpert.org/expert/34886 -https://www.oceanexpert.org/expert/34887 -https://www.oceanexpert.org/expert/34889 -https://www.oceanexpert.org/expert/34891 -https://www.oceanexpert.org/expert/34893 -https://www.oceanexpert.org/expert/34899 -https://www.oceanexpert.org/expert/34900 -https://www.oceanexpert.org/expert/34901 -https://www.oceanexpert.org/expert/34902 -https://www.oceanexpert.org/expert/34903 -https://www.oceanexpert.org/expert/34904 -https://www.oceanexpert.org/expert/34905 -https://www.oceanexpert.org/expert/34906 -https://www.oceanexpert.org/expert/34915 -https://www.oceanexpert.org/expert/34916 -https://www.oceanexpert.org/expert/34921 -https://www.oceanexpert.org/expert/34922 -https://www.oceanexpert.org/expert/34924 -https://www.oceanexpert.org/expert/34925 -https://www.oceanexpert.org/expert/34926 -https://www.oceanexpert.org/expert/34928 -https://www.oceanexpert.org/expert/34929 -https://www.oceanexpert.org/expert/34930 -https://www.oceanexpert.org/expert/34933 -https://www.oceanexpert.org/expert/34935 -https://www.oceanexpert.org/expert/34936 -https://www.oceanexpert.org/expert/34938 -https://www.oceanexpert.org/expert/34939 -https://www.oceanexpert.org/expert/34940 -https://www.oceanexpert.org/expert/34943 -https://www.oceanexpert.org/expert/34944 -https://www.oceanexpert.org/expert/34946 -https://www.oceanexpert.org/expert/34947 -https://www.oceanexpert.org/expert/34955 -https://www.oceanexpert.org/expert/34956 -https://www.oceanexpert.org/expert/34957 -https://www.oceanexpert.org/expert/34958 -https://www.oceanexpert.org/expert/34959 -https://www.oceanexpert.org/expert/34960 -https://www.oceanexpert.org/expert/34961 -https://www.oceanexpert.org/expert/34962 -https://www.oceanexpert.org/expert/34965 -https://www.oceanexpert.org/expert/34967 -https://www.oceanexpert.org/expert/34969 -https://www.oceanexpert.org/expert/34970 -https://www.oceanexpert.org/expert/34972 -https://www.oceanexpert.org/expert/34974 -https://www.oceanexpert.org/expert/34975 -https://www.oceanexpert.org/expert/34976 -https://www.oceanexpert.org/expert/34977 -https://www.oceanexpert.org/expert/34979 -https://www.oceanexpert.org/expert/34980 -https://www.oceanexpert.org/expert/34981 -https://www.oceanexpert.org/expert/34982 -https://www.oceanexpert.org/expert/34984 -https://www.oceanexpert.org/expert/34986 -https://www.oceanexpert.org/expert/34990 -https://www.oceanexpert.org/expert/34992 -https://www.oceanexpert.org/expert/34993 -https://www.oceanexpert.org/expert/34995 -https://www.oceanexpert.org/expert/34998 -https://www.oceanexpert.org/expert/34999 -https://www.oceanexpert.org/expert/35000 -https://www.oceanexpert.org/expert/35001 -https://www.oceanexpert.org/expert/35002 -https://www.oceanexpert.org/expert/35003 -https://www.oceanexpert.org/expert/35005 -https://www.oceanexpert.org/expert/35007 -https://www.oceanexpert.org/expert/35009 -https://www.oceanexpert.org/expert/35010 -https://www.oceanexpert.org/expert/35012 -https://www.oceanexpert.org/expert/35013 -https://www.oceanexpert.org/expert/35014 -https://www.oceanexpert.org/expert/35015 -https://www.oceanexpert.org/expert/35019 -https://www.oceanexpert.org/expert/35022 -https://www.oceanexpert.org/expert/35025 -https://www.oceanexpert.org/expert/35026 -https://www.oceanexpert.org/expert/35027 -https://www.oceanexpert.org/expert/35030 -https://www.oceanexpert.org/expert/35031 -https://www.oceanexpert.org/expert/35033 -https://www.oceanexpert.org/expert/35035 -https://www.oceanexpert.org/expert/35036 -https://www.oceanexpert.org/expert/35037 -https://www.oceanexpert.org/expert/35038 -https://www.oceanexpert.org/expert/35040 -https://www.oceanexpert.org/expert/35041 -https://www.oceanexpert.org/expert/35042 -https://www.oceanexpert.org/expert/35044 -https://www.oceanexpert.org/expert/35046 -https://www.oceanexpert.org/expert/35047 -https://www.oceanexpert.org/expert/35048 -https://www.oceanexpert.org/expert/35049 -https://www.oceanexpert.org/expert/35050 -https://www.oceanexpert.org/expert/35052 -https://www.oceanexpert.org/expert/35055 -https://www.oceanexpert.org/expert/35056 -https://www.oceanexpert.org/expert/35057 -https://www.oceanexpert.org/expert/35058 -https://www.oceanexpert.org/expert/35059 -https://www.oceanexpert.org/expert/35062 -https://www.oceanexpert.org/expert/35064 -https://www.oceanexpert.org/expert/35070 -https://www.oceanexpert.org/expert/35071 -https://www.oceanexpert.org/expert/35072 -https://www.oceanexpert.org/expert/35073 -https://www.oceanexpert.org/expert/35076 -https://www.oceanexpert.org/expert/35077 -https://www.oceanexpert.org/expert/35079 -https://www.oceanexpert.org/expert/35080 -https://www.oceanexpert.org/expert/35083 -https://www.oceanexpert.org/expert/35084 -https://www.oceanexpert.org/expert/35089 -https://www.oceanexpert.org/expert/35092 -https://www.oceanexpert.org/expert/35093 -https://www.oceanexpert.org/expert/35094 -https://www.oceanexpert.org/expert/35095 -https://www.oceanexpert.org/expert/35096 -https://www.oceanexpert.org/expert/35098 -https://www.oceanexpert.org/expert/35099 -https://www.oceanexpert.org/expert/35100 -https://www.oceanexpert.org/expert/35105 -https://www.oceanexpert.org/expert/35106 -https://www.oceanexpert.org/expert/35107 -https://www.oceanexpert.org/expert/35108 -https://www.oceanexpert.org/expert/35109 -https://www.oceanexpert.org/expert/35110 -https://www.oceanexpert.org/expert/35111 -https://www.oceanexpert.org/expert/35114 -https://www.oceanexpert.org/expert/35115 -https://www.oceanexpert.org/expert/35116 -https://www.oceanexpert.org/expert/35118 -https://www.oceanexpert.org/expert/35122 -https://www.oceanexpert.org/expert/35123 -https://www.oceanexpert.org/expert/35125 -https://www.oceanexpert.org/expert/35126 -https://www.oceanexpert.org/expert/35128 -https://www.oceanexpert.org/expert/35132 -https://www.oceanexpert.org/expert/35134 -https://www.oceanexpert.org/expert/35135 -https://www.oceanexpert.org/expert/35136 -https://www.oceanexpert.org/expert/35139 -https://www.oceanexpert.org/expert/35141 -https://www.oceanexpert.org/expert/35143 -https://www.oceanexpert.org/expert/35145 -https://www.oceanexpert.org/expert/35151 -https://www.oceanexpert.org/expert/35153 -https://www.oceanexpert.org/expert/35154 -https://www.oceanexpert.org/expert/35155 -https://www.oceanexpert.org/expert/35156 -https://www.oceanexpert.org/expert/35158 -https://www.oceanexpert.org/expert/35160 -https://www.oceanexpert.org/expert/35161 -https://www.oceanexpert.org/expert/35164 -https://www.oceanexpert.org/expert/35166 -https://www.oceanexpert.org/expert/35168 -https://www.oceanexpert.org/expert/35169 -https://www.oceanexpert.org/expert/35170 -https://www.oceanexpert.org/expert/35173 -https://www.oceanexpert.org/expert/35174 -https://www.oceanexpert.org/expert/35176 -https://www.oceanexpert.org/expert/35179 -https://www.oceanexpert.org/expert/35180 -https://www.oceanexpert.org/expert/35182 -https://www.oceanexpert.org/expert/35183 -https://www.oceanexpert.org/expert/35184 -https://www.oceanexpert.org/expert/35185 -https://www.oceanexpert.org/expert/35186 -https://www.oceanexpert.org/expert/35188 -https://www.oceanexpert.org/expert/35189 -https://www.oceanexpert.org/expert/35190 -https://www.oceanexpert.org/expert/35195 -https://www.oceanexpert.org/expert/35197 -https://www.oceanexpert.org/expert/35199 -https://www.oceanexpert.org/expert/35200 -https://www.oceanexpert.org/expert/35201 -https://www.oceanexpert.org/expert/35203 -https://www.oceanexpert.org/expert/35204 -https://www.oceanexpert.org/expert/35206 -https://www.oceanexpert.org/expert/35207 -https://www.oceanexpert.org/expert/35208 -https://www.oceanexpert.org/expert/35211 -https://www.oceanexpert.org/expert/35212 -https://www.oceanexpert.org/expert/35213 -https://www.oceanexpert.org/expert/35214 -https://www.oceanexpert.org/expert/35218 -https://www.oceanexpert.org/expert/35220 -https://www.oceanexpert.org/expert/35221 -https://www.oceanexpert.org/expert/35222 -https://www.oceanexpert.org/expert/35223 -https://www.oceanexpert.org/expert/35225 -https://www.oceanexpert.org/expert/35227 -https://www.oceanexpert.org/expert/35230 -https://www.oceanexpert.org/expert/35232 -https://www.oceanexpert.org/expert/35234 -https://www.oceanexpert.org/expert/35235 -https://www.oceanexpert.org/expert/35236 -https://www.oceanexpert.org/expert/35237 -https://www.oceanexpert.org/expert/35238 -https://www.oceanexpert.org/expert/35239 -https://www.oceanexpert.org/expert/35241 -https://www.oceanexpert.org/expert/35242 -https://www.oceanexpert.org/expert/35243 -https://www.oceanexpert.org/expert/35244 -https://www.oceanexpert.org/expert/35246 -https://www.oceanexpert.org/expert/35247 -https://www.oceanexpert.org/expert/35248 -https://www.oceanexpert.org/expert/35250 -https://www.oceanexpert.org/expert/35253 -https://www.oceanexpert.org/expert/35255 -https://www.oceanexpert.org/expert/35256 -https://www.oceanexpert.org/expert/35257 -https://www.oceanexpert.org/expert/35258 -https://www.oceanexpert.org/expert/35260 -https://www.oceanexpert.org/expert/35261 -https://www.oceanexpert.org/expert/35263 -https://www.oceanexpert.org/expert/35264 -https://www.oceanexpert.org/expert/35265 -https://www.oceanexpert.org/expert/35266 -https://www.oceanexpert.org/expert/35267 -https://www.oceanexpert.org/expert/35269 -https://www.oceanexpert.org/expert/35272 -https://www.oceanexpert.org/expert/35273 -https://www.oceanexpert.org/expert/35274 -https://www.oceanexpert.org/expert/35275 -https://www.oceanexpert.org/expert/35276 -https://www.oceanexpert.org/expert/35277 -https://www.oceanexpert.org/expert/35278 -https://www.oceanexpert.org/expert/35279 -https://www.oceanexpert.org/expert/35280 -https://www.oceanexpert.org/expert/35281 -https://www.oceanexpert.org/expert/35282 -https://www.oceanexpert.org/expert/35283 -https://www.oceanexpert.org/expert/35284 -https://www.oceanexpert.org/expert/35285 -https://www.oceanexpert.org/expert/35286 -https://www.oceanexpert.org/expert/35287 -https://www.oceanexpert.org/expert/35288 -https://www.oceanexpert.org/expert/35289 -https://www.oceanexpert.org/expert/35290 -https://www.oceanexpert.org/expert/35291 -https://www.oceanexpert.org/expert/35294 -https://www.oceanexpert.org/expert/35295 -https://www.oceanexpert.org/expert/35297 -https://www.oceanexpert.org/expert/35299 -https://www.oceanexpert.org/expert/35301 -https://www.oceanexpert.org/expert/35303 -https://www.oceanexpert.org/expert/35304 -https://www.oceanexpert.org/expert/35305 -https://www.oceanexpert.org/expert/35306 -https://www.oceanexpert.org/expert/35308 -https://www.oceanexpert.org/expert/35309 -https://www.oceanexpert.org/expert/35310 -https://www.oceanexpert.org/expert/35311 -https://www.oceanexpert.org/expert/35312 -https://www.oceanexpert.org/expert/35313 -https://www.oceanexpert.org/expert/35314 -https://www.oceanexpert.org/expert/35315 -https://www.oceanexpert.org/expert/35317 -https://www.oceanexpert.org/expert/35318 -https://www.oceanexpert.org/expert/35319 -https://www.oceanexpert.org/expert/35331 -https://www.oceanexpert.org/expert/35332 -https://www.oceanexpert.org/expert/35333 -https://www.oceanexpert.org/expert/35334 -https://www.oceanexpert.org/expert/35335 -https://www.oceanexpert.org/expert/35337 -https://www.oceanexpert.org/expert/35338 -https://www.oceanexpert.org/expert/35339 -https://www.oceanexpert.org/expert/35340 -https://www.oceanexpert.org/expert/35342 -https://www.oceanexpert.org/expert/35343 -https://www.oceanexpert.org/expert/35345 -https://www.oceanexpert.org/expert/35348 -https://www.oceanexpert.org/expert/35349 -https://www.oceanexpert.org/expert/35350 -https://www.oceanexpert.org/expert/35352 -https://www.oceanexpert.org/expert/35354 -https://www.oceanexpert.org/expert/35355 -https://www.oceanexpert.org/expert/35358 -https://www.oceanexpert.org/expert/35359 -https://www.oceanexpert.org/expert/35360 -https://www.oceanexpert.org/expert/35366 -https://www.oceanexpert.org/expert/35367 -https://www.oceanexpert.org/expert/35369 -https://www.oceanexpert.org/expert/35371 -https://www.oceanexpert.org/expert/35374 -https://www.oceanexpert.org/expert/35375 -https://www.oceanexpert.org/expert/35376 -https://www.oceanexpert.org/expert/35377 -https://www.oceanexpert.org/expert/35379 -https://www.oceanexpert.org/expert/35380 -https://www.oceanexpert.org/expert/35381 -https://www.oceanexpert.org/expert/35382 -https://www.oceanexpert.org/expert/35383 -https://www.oceanexpert.org/expert/35384 -https://www.oceanexpert.org/expert/35386 -https://www.oceanexpert.org/expert/35390 -https://www.oceanexpert.org/expert/35391 -https://www.oceanexpert.org/expert/35392 -https://www.oceanexpert.org/expert/35394 -https://www.oceanexpert.org/expert/35395 -https://www.oceanexpert.org/expert/35396 -https://www.oceanexpert.org/expert/35397 -https://www.oceanexpert.org/expert/35398 -https://www.oceanexpert.org/expert/35399 -https://www.oceanexpert.org/expert/35400 -https://www.oceanexpert.org/expert/35401 -https://www.oceanexpert.org/expert/35403 -https://www.oceanexpert.org/expert/35405 -https://www.oceanexpert.org/expert/35406 -https://www.oceanexpert.org/expert/35407 -https://www.oceanexpert.org/expert/35409 -https://www.oceanexpert.org/expert/35410 -https://www.oceanexpert.org/expert/35412 -https://www.oceanexpert.org/expert/35413 -https://www.oceanexpert.org/expert/35414 -https://www.oceanexpert.org/expert/35415 -https://www.oceanexpert.org/expert/35416 -https://www.oceanexpert.org/expert/35417 -https://www.oceanexpert.org/expert/35418 -https://www.oceanexpert.org/expert/35419 -https://www.oceanexpert.org/expert/35420 -https://www.oceanexpert.org/expert/35421 -https://www.oceanexpert.org/expert/35423 -https://www.oceanexpert.org/expert/35424 -https://www.oceanexpert.org/expert/35426 -https://www.oceanexpert.org/expert/35427 -https://www.oceanexpert.org/expert/35428 -https://www.oceanexpert.org/expert/35429 -https://www.oceanexpert.org/expert/35430 -https://www.oceanexpert.org/expert/35431 -https://www.oceanexpert.org/expert/35433 -https://www.oceanexpert.org/expert/35434 -https://www.oceanexpert.org/expert/35435 -https://www.oceanexpert.org/expert/35436 -https://www.oceanexpert.org/expert/35437 -https://www.oceanexpert.org/expert/35438 -https://www.oceanexpert.org/expert/35439 -https://www.oceanexpert.org/expert/35441 -https://www.oceanexpert.org/expert/35442 -https://www.oceanexpert.org/expert/35443 -https://www.oceanexpert.org/expert/35444 -https://www.oceanexpert.org/expert/35446 -https://www.oceanexpert.org/expert/35448 -https://www.oceanexpert.org/expert/35449 -https://www.oceanexpert.org/expert/35450 -https://www.oceanexpert.org/expert/35451 -https://www.oceanexpert.org/expert/35453 -https://www.oceanexpert.org/expert/35454 -https://www.oceanexpert.org/expert/35455 -https://www.oceanexpert.org/expert/35456 -https://www.oceanexpert.org/expert/35457 -https://www.oceanexpert.org/expert/35458 -https://www.oceanexpert.org/expert/35459 -https://www.oceanexpert.org/expert/35461 -https://www.oceanexpert.org/expert/35462 -https://www.oceanexpert.org/expert/35463 -https://www.oceanexpert.org/expert/35465 -https://www.oceanexpert.org/expert/35466 -https://www.oceanexpert.org/expert/35471 -https://www.oceanexpert.org/expert/35472 -https://www.oceanexpert.org/expert/35473 -https://www.oceanexpert.org/expert/35474 -https://www.oceanexpert.org/expert/35475 -https://www.oceanexpert.org/expert/35477 -https://www.oceanexpert.org/expert/35478 -https://www.oceanexpert.org/expert/35479 -https://www.oceanexpert.org/expert/35481 -https://www.oceanexpert.org/expert/35482 -https://www.oceanexpert.org/expert/35483 -https://www.oceanexpert.org/expert/35485 -https://www.oceanexpert.org/expert/35488 -https://www.oceanexpert.org/expert/35489 -https://www.oceanexpert.org/expert/35491 -https://www.oceanexpert.org/expert/35493 -https://www.oceanexpert.org/expert/35494 -https://www.oceanexpert.org/expert/35495 -https://www.oceanexpert.org/expert/35497 -https://www.oceanexpert.org/expert/35499 -https://www.oceanexpert.org/expert/35506 -https://www.oceanexpert.org/expert/35509 -https://www.oceanexpert.org/expert/35510 -https://www.oceanexpert.org/expert/35516 -https://www.oceanexpert.org/expert/35520 -https://www.oceanexpert.org/expert/35521 -https://www.oceanexpert.org/expert/35523 -https://www.oceanexpert.org/expert/35524 -https://www.oceanexpert.org/expert/35525 -https://www.oceanexpert.org/expert/35527 -https://www.oceanexpert.org/expert/35529 -https://www.oceanexpert.org/expert/35531 -https://www.oceanexpert.org/expert/35532 -https://www.oceanexpert.org/expert/35533 -https://www.oceanexpert.org/expert/35534 -https://www.oceanexpert.org/expert/35536 -https://www.oceanexpert.org/expert/35537 -https://www.oceanexpert.org/expert/35540 -https://www.oceanexpert.org/expert/35541 -https://www.oceanexpert.org/expert/35542 -https://www.oceanexpert.org/expert/35553 -https://www.oceanexpert.org/expert/35558 -https://www.oceanexpert.org/expert/35559 -https://www.oceanexpert.org/expert/35561 -https://www.oceanexpert.org/expert/35562 -https://www.oceanexpert.org/expert/35563 -https://www.oceanexpert.org/expert/35566 -https://www.oceanexpert.org/expert/35567 -https://www.oceanexpert.org/expert/35570 -https://www.oceanexpert.org/expert/35573 -https://www.oceanexpert.org/expert/35574 -https://www.oceanexpert.org/expert/35575 -https://www.oceanexpert.org/expert/35576 -https://www.oceanexpert.org/expert/35578 -https://www.oceanexpert.org/expert/35579 -https://www.oceanexpert.org/expert/35581 -https://www.oceanexpert.org/expert/35583 -https://www.oceanexpert.org/expert/35584 -https://www.oceanexpert.org/expert/35585 -https://www.oceanexpert.org/expert/35586 -https://www.oceanexpert.org/expert/35588 -https://www.oceanexpert.org/expert/35589 -https://www.oceanexpert.org/expert/35591 -https://www.oceanexpert.org/expert/35592 -https://www.oceanexpert.org/expert/35593 -https://www.oceanexpert.org/expert/35594 -https://www.oceanexpert.org/expert/35595 -https://www.oceanexpert.org/expert/35596 -https://www.oceanexpert.org/expert/35600 -https://www.oceanexpert.org/expert/35602 -https://www.oceanexpert.org/expert/35604 -https://www.oceanexpert.org/expert/35609 -https://www.oceanexpert.org/expert/35610 -https://www.oceanexpert.org/expert/35611 -https://www.oceanexpert.org/expert/35616 -https://www.oceanexpert.org/expert/35618 -https://www.oceanexpert.org/expert/35625 -https://www.oceanexpert.org/expert/35628 -https://www.oceanexpert.org/expert/35630 -https://www.oceanexpert.org/expert/35634 -https://www.oceanexpert.org/expert/35637 -https://www.oceanexpert.org/expert/35639 -https://www.oceanexpert.org/expert/35640 -https://www.oceanexpert.org/expert/35642 -https://www.oceanexpert.org/expert/35644 -https://www.oceanexpert.org/expert/35645 -https://www.oceanexpert.org/expert/35646 -https://www.oceanexpert.org/expert/35649 -https://www.oceanexpert.org/expert/35650 -https://www.oceanexpert.org/expert/35651 -https://www.oceanexpert.org/expert/35652 -https://www.oceanexpert.org/expert/35655 -https://www.oceanexpert.org/expert/35656 -https://www.oceanexpert.org/expert/35657 -https://www.oceanexpert.org/expert/35658 -https://www.oceanexpert.org/expert/35659 -https://www.oceanexpert.org/expert/35661 -https://www.oceanexpert.org/expert/35662 -https://www.oceanexpert.org/expert/35663 -https://www.oceanexpert.org/expert/35665 -https://www.oceanexpert.org/expert/35666 -https://www.oceanexpert.org/expert/35668 -https://www.oceanexpert.org/expert/35669 -https://www.oceanexpert.org/expert/35670 -https://www.oceanexpert.org/expert/35671 -https://www.oceanexpert.org/expert/35673 -https://www.oceanexpert.org/expert/35674 -https://www.oceanexpert.org/expert/35677 -https://www.oceanexpert.org/expert/35678 -https://www.oceanexpert.org/expert/35687 -https://www.oceanexpert.org/expert/35691 -https://www.oceanexpert.org/expert/35698 -https://www.oceanexpert.org/expert/35699 -https://www.oceanexpert.org/expert/35701 -https://www.oceanexpert.org/expert/35705 -https://www.oceanexpert.org/expert/35707 -https://www.oceanexpert.org/expert/35710 -https://www.oceanexpert.org/expert/35711 -https://www.oceanexpert.org/expert/35712 -https://www.oceanexpert.org/expert/35714 -https://www.oceanexpert.org/expert/35717 -https://www.oceanexpert.org/expert/35721 -https://www.oceanexpert.org/expert/35725 -https://www.oceanexpert.org/expert/35726 -https://www.oceanexpert.org/expert/35728 -https://www.oceanexpert.org/expert/35729 -https://www.oceanexpert.org/expert/35731 -https://www.oceanexpert.org/expert/35732 -https://www.oceanexpert.org/expert/35734 -https://www.oceanexpert.org/expert/35735 -https://www.oceanexpert.org/expert/35736 -https://www.oceanexpert.org/expert/35737 -https://www.oceanexpert.org/expert/35740 -https://www.oceanexpert.org/expert/35741 -https://www.oceanexpert.org/expert/35749 -https://www.oceanexpert.org/expert/35750 -https://www.oceanexpert.org/expert/35751 -https://www.oceanexpert.org/expert/35755 -https://www.oceanexpert.org/expert/35757 -https://www.oceanexpert.org/expert/35759 -https://www.oceanexpert.org/expert/35761 -https://www.oceanexpert.org/expert/35762 -https://www.oceanexpert.org/expert/35765 -https://www.oceanexpert.org/expert/35767 -https://www.oceanexpert.org/expert/35768 -https://www.oceanexpert.org/expert/35769 -https://www.oceanexpert.org/expert/35770 -https://www.oceanexpert.org/expert/35771 -https://www.oceanexpert.org/expert/35773 -https://www.oceanexpert.org/expert/35774 -https://www.oceanexpert.org/expert/35776 -https://www.oceanexpert.org/expert/35777 -https://www.oceanexpert.org/expert/35779 -https://www.oceanexpert.org/expert/35781 -https://www.oceanexpert.org/expert/35786 -https://www.oceanexpert.org/expert/35788 -https://www.oceanexpert.org/expert/35793 -https://www.oceanexpert.org/expert/35797 -https://www.oceanexpert.org/expert/35799 -https://www.oceanexpert.org/expert/35800 -https://www.oceanexpert.org/expert/35801 -https://www.oceanexpert.org/expert/35802 -https://www.oceanexpert.org/expert/35806 -https://www.oceanexpert.org/expert/35807 -https://www.oceanexpert.org/expert/35812 -https://www.oceanexpert.org/expert/35814 -https://www.oceanexpert.org/expert/35817 -https://www.oceanexpert.org/expert/35821 -https://www.oceanexpert.org/expert/35822 -https://www.oceanexpert.org/expert/35823 -https://www.oceanexpert.org/expert/35824 -https://www.oceanexpert.org/expert/35825 -https://www.oceanexpert.org/expert/35830 -https://www.oceanexpert.org/expert/35832 -https://www.oceanexpert.org/expert/35835 -https://www.oceanexpert.org/expert/35836 -https://www.oceanexpert.org/expert/35837 -https://www.oceanexpert.org/expert/35838 -https://www.oceanexpert.org/expert/35839 -https://www.oceanexpert.org/expert/35840 -https://www.oceanexpert.org/expert/35841 -https://www.oceanexpert.org/expert/35842 -https://www.oceanexpert.org/expert/35843 -https://www.oceanexpert.org/expert/35845 -https://www.oceanexpert.org/expert/35853 -https://www.oceanexpert.org/expert/35854 -https://www.oceanexpert.org/expert/35855 -https://www.oceanexpert.org/expert/35858 -https://www.oceanexpert.org/expert/35859 -https://www.oceanexpert.org/expert/35861 -https://www.oceanexpert.org/expert/35862 -https://www.oceanexpert.org/expert/35867 -https://www.oceanexpert.org/expert/35868 -https://www.oceanexpert.org/expert/35869 -https://www.oceanexpert.org/expert/35871 -https://www.oceanexpert.org/expert/35873 -https://www.oceanexpert.org/expert/35875 -https://www.oceanexpert.org/expert/35876 -https://www.oceanexpert.org/expert/35879 -https://www.oceanexpert.org/expert/35880 -https://www.oceanexpert.org/expert/35883 -https://www.oceanexpert.org/expert/35885 -https://www.oceanexpert.org/expert/35887 -https://www.oceanexpert.org/expert/35894 -https://www.oceanexpert.org/expert/35898 -https://www.oceanexpert.org/expert/35899 -https://www.oceanexpert.org/expert/35902 -https://www.oceanexpert.org/expert/35903 -https://www.oceanexpert.org/expert/35904 -https://www.oceanexpert.org/expert/35910 -https://www.oceanexpert.org/expert/35911 -https://www.oceanexpert.org/expert/35917 -https://www.oceanexpert.org/expert/35920 -https://www.oceanexpert.org/expert/35923 -https://www.oceanexpert.org/expert/35925 -https://www.oceanexpert.org/expert/35926 -https://www.oceanexpert.org/expert/35928 -https://www.oceanexpert.org/expert/35944 -https://www.oceanexpert.org/expert/35946 -https://www.oceanexpert.org/expert/35948 -https://www.oceanexpert.org/expert/35949 -https://www.oceanexpert.org/expert/35950 -https://www.oceanexpert.org/expert/35951 -https://www.oceanexpert.org/expert/35952 -https://www.oceanexpert.org/expert/35953 -https://www.oceanexpert.org/expert/35957 -https://www.oceanexpert.org/expert/35962 -https://www.oceanexpert.org/expert/35964 -https://www.oceanexpert.org/expert/35970 -https://www.oceanexpert.org/expert/35971 -https://www.oceanexpert.org/expert/35973 -https://www.oceanexpert.org/expert/35974 -https://www.oceanexpert.org/expert/35981 -https://www.oceanexpert.org/expert/35983 -https://www.oceanexpert.org/expert/35984 -https://www.oceanexpert.org/expert/35986 -https://www.oceanexpert.org/expert/35987 -https://www.oceanexpert.org/expert/35988 -https://www.oceanexpert.org/expert/35989 -https://www.oceanexpert.org/expert/35990 -https://www.oceanexpert.org/expert/35992 -https://www.oceanexpert.org/expert/35993 -https://www.oceanexpert.org/expert/35994 -https://www.oceanexpert.org/expert/35996 -https://www.oceanexpert.org/expert/35997 -https://www.oceanexpert.org/expert/35998 -https://www.oceanexpert.org/expert/35999 -https://www.oceanexpert.org/expert/36000 -https://www.oceanexpert.org/expert/36001 -https://www.oceanexpert.org/expert/36003 -https://www.oceanexpert.org/expert/36004 -https://www.oceanexpert.org/expert/36006 -https://www.oceanexpert.org/expert/36009 -https://www.oceanexpert.org/expert/36010 -https://www.oceanexpert.org/expert/36013 -https://www.oceanexpert.org/expert/36015 -https://www.oceanexpert.org/expert/36019 -https://www.oceanexpert.org/expert/36022 -https://www.oceanexpert.org/expert/36023 -https://www.oceanexpert.org/expert/36027 -https://www.oceanexpert.org/expert/36028 -https://www.oceanexpert.org/expert/36030 -https://www.oceanexpert.org/expert/36031 -https://www.oceanexpert.org/expert/36038 -https://www.oceanexpert.org/expert/36039 -https://www.oceanexpert.org/expert/36040 -https://www.oceanexpert.org/expert/36041 -https://www.oceanexpert.org/expert/36042 -https://www.oceanexpert.org/expert/36043 -https://www.oceanexpert.org/expert/36044 -https://www.oceanexpert.org/expert/36049 -https://www.oceanexpert.org/expert/36052 -https://www.oceanexpert.org/expert/36058 -https://www.oceanexpert.org/expert/36061 -https://www.oceanexpert.org/expert/36066 -https://www.oceanexpert.org/expert/36075 -https://www.oceanexpert.org/expert/36076 -https://www.oceanexpert.org/expert/36079 -https://www.oceanexpert.org/expert/36083 -https://www.oceanexpert.org/expert/36084 -https://www.oceanexpert.org/expert/36086 -https://www.oceanexpert.org/expert/36087 -https://www.oceanexpert.org/expert/36088 -https://www.oceanexpert.org/expert/36091 -https://www.oceanexpert.org/expert/36094 -https://www.oceanexpert.org/expert/36095 -https://www.oceanexpert.org/expert/36104 -https://www.oceanexpert.org/expert/36105 -https://www.oceanexpert.org/expert/36106 -https://www.oceanexpert.org/expert/36107 -https://www.oceanexpert.org/expert/36108 -https://www.oceanexpert.org/expert/36111 -https://www.oceanexpert.org/expert/36112 -https://www.oceanexpert.org/expert/36113 -https://www.oceanexpert.org/expert/36114 -https://www.oceanexpert.org/expert/36115 -https://www.oceanexpert.org/expert/36116 -https://www.oceanexpert.org/expert/36117 -https://www.oceanexpert.org/expert/36120 -https://www.oceanexpert.org/expert/36122 -https://www.oceanexpert.org/expert/36124 -https://www.oceanexpert.org/expert/36131 -https://www.oceanexpert.org/expert/36132 -https://www.oceanexpert.org/expert/36133 -https://www.oceanexpert.org/expert/36139 -https://www.oceanexpert.org/expert/36150 -https://www.oceanexpert.org/expert/36154 -https://www.oceanexpert.org/expert/36155 -https://www.oceanexpert.org/expert/36156 -https://www.oceanexpert.org/expert/36157 -https://www.oceanexpert.org/expert/36158 -https://www.oceanexpert.org/expert/36159 -https://www.oceanexpert.org/expert/36161 -https://www.oceanexpert.org/expert/36163 -https://www.oceanexpert.org/expert/36164 -https://www.oceanexpert.org/expert/36165 -https://www.oceanexpert.org/expert/36166 -https://www.oceanexpert.org/expert/36167 -https://www.oceanexpert.org/expert/36168 -https://www.oceanexpert.org/expert/36169 -https://www.oceanexpert.org/expert/36170 -https://www.oceanexpert.org/expert/36172 -https://www.oceanexpert.org/expert/36173 -https://www.oceanexpert.org/expert/36175 -https://www.oceanexpert.org/expert/36176 -https://www.oceanexpert.org/expert/36178 -https://www.oceanexpert.org/expert/36179 -https://www.oceanexpert.org/expert/36180 -https://www.oceanexpert.org/expert/36181 -https://www.oceanexpert.org/expert/36183 -https://www.oceanexpert.org/expert/36186 -https://www.oceanexpert.org/expert/36192 -https://www.oceanexpert.org/expert/36193 -https://www.oceanexpert.org/expert/36196 -https://www.oceanexpert.org/expert/36198 -https://www.oceanexpert.org/expert/36202 -https://www.oceanexpert.org/expert/36206 -https://www.oceanexpert.org/expert/36207 -https://www.oceanexpert.org/expert/36212 -https://www.oceanexpert.org/expert/36213 -https://www.oceanexpert.org/expert/36214 -https://www.oceanexpert.org/expert/36215 -https://www.oceanexpert.org/expert/36216 -https://www.oceanexpert.org/expert/36219 -https://www.oceanexpert.org/expert/36220 -https://www.oceanexpert.org/expert/36221 -https://www.oceanexpert.org/expert/36223 -https://www.oceanexpert.org/expert/36224 -https://www.oceanexpert.org/expert/36225 -https://www.oceanexpert.org/expert/36226 -https://www.oceanexpert.org/expert/36229 -https://www.oceanexpert.org/expert/36234 -https://www.oceanexpert.org/expert/36235 -https://www.oceanexpert.org/expert/36236 -https://www.oceanexpert.org/expert/36237 -https://www.oceanexpert.org/expert/36239 -https://www.oceanexpert.org/expert/36241 -https://www.oceanexpert.org/expert/36244 -https://www.oceanexpert.org/expert/36245 -https://www.oceanexpert.org/expert/36246 -https://www.oceanexpert.org/expert/36247 -https://www.oceanexpert.org/expert/36248 -https://www.oceanexpert.org/expert/36251 -https://www.oceanexpert.org/expert/36254 -https://www.oceanexpert.org/expert/36256 -https://www.oceanexpert.org/expert/36257 -https://www.oceanexpert.org/expert/36258 -https://www.oceanexpert.org/expert/36259 -https://www.oceanexpert.org/expert/36261 -https://www.oceanexpert.org/expert/36262 -https://www.oceanexpert.org/expert/36263 -https://www.oceanexpert.org/expert/36264 -https://www.oceanexpert.org/expert/36265 -https://www.oceanexpert.org/expert/36266 -https://www.oceanexpert.org/expert/36267 -https://www.oceanexpert.org/expert/36268 -https://www.oceanexpert.org/expert/36269 -https://www.oceanexpert.org/expert/36270 -https://www.oceanexpert.org/expert/36273 -https://www.oceanexpert.org/expert/36274 -https://www.oceanexpert.org/expert/36275 -https://www.oceanexpert.org/expert/36276 -https://www.oceanexpert.org/expert/36277 -https://www.oceanexpert.org/expert/36279 -https://www.oceanexpert.org/expert/36280 -https://www.oceanexpert.org/expert/36283 -https://www.oceanexpert.org/expert/36284 -https://www.oceanexpert.org/expert/36289 -https://www.oceanexpert.org/expert/36291 -https://www.oceanexpert.org/expert/36292 -https://www.oceanexpert.org/expert/36293 -https://www.oceanexpert.org/expert/36296 -https://www.oceanexpert.org/expert/36297 -https://www.oceanexpert.org/expert/36301 -https://www.oceanexpert.org/expert/36302 -https://www.oceanexpert.org/expert/36303 -https://www.oceanexpert.org/expert/36304 -https://www.oceanexpert.org/expert/36305 -https://www.oceanexpert.org/expert/36306 -https://www.oceanexpert.org/expert/36308 -https://www.oceanexpert.org/expert/36313 -https://www.oceanexpert.org/expert/36314 -https://www.oceanexpert.org/expert/36317 -https://www.oceanexpert.org/expert/36318 -https://www.oceanexpert.org/expert/36319 -https://www.oceanexpert.org/expert/36320 -https://www.oceanexpert.org/expert/36321 -https://www.oceanexpert.org/expert/36322 -https://www.oceanexpert.org/expert/36323 -https://www.oceanexpert.org/expert/36325 -https://www.oceanexpert.org/expert/36326 -https://www.oceanexpert.org/expert/36327 -https://www.oceanexpert.org/expert/36328 -https://www.oceanexpert.org/expert/36329 -https://www.oceanexpert.org/expert/36330 -https://www.oceanexpert.org/expert/36331 -https://www.oceanexpert.org/expert/36332 -https://www.oceanexpert.org/expert/36334 -https://www.oceanexpert.org/expert/36337 -https://www.oceanexpert.org/expert/36339 -https://www.oceanexpert.org/expert/36341 -https://www.oceanexpert.org/expert/36342 -https://www.oceanexpert.org/expert/36343 -https://www.oceanexpert.org/expert/36345 -https://www.oceanexpert.org/expert/36347 -https://www.oceanexpert.org/expert/36349 -https://www.oceanexpert.org/expert/36351 -https://www.oceanexpert.org/expert/36352 -https://www.oceanexpert.org/expert/36353 -https://www.oceanexpert.org/expert/36354 -https://www.oceanexpert.org/expert/36356 -https://www.oceanexpert.org/expert/36357 -https://www.oceanexpert.org/expert/36358 -https://www.oceanexpert.org/expert/36359 -https://www.oceanexpert.org/expert/36360 -https://www.oceanexpert.org/expert/36362 -https://www.oceanexpert.org/expert/36365 -https://www.oceanexpert.org/expert/36366 -https://www.oceanexpert.org/expert/36368 -https://www.oceanexpert.org/expert/36369 -https://www.oceanexpert.org/expert/36372 -https://www.oceanexpert.org/expert/36373 -https://www.oceanexpert.org/expert/36374 -https://www.oceanexpert.org/expert/36375 -https://www.oceanexpert.org/expert/36378 -https://www.oceanexpert.org/expert/36379 -https://www.oceanexpert.org/expert/36380 -https://www.oceanexpert.org/expert/36381 -https://www.oceanexpert.org/expert/36382 -https://www.oceanexpert.org/expert/36386 -https://www.oceanexpert.org/expert/36388 -https://www.oceanexpert.org/expert/36389 -https://www.oceanexpert.org/expert/36395 -https://www.oceanexpert.org/expert/36396 -https://www.oceanexpert.org/expert/36397 -https://www.oceanexpert.org/expert/36398 -https://www.oceanexpert.org/expert/36399 -https://www.oceanexpert.org/expert/36401 -https://www.oceanexpert.org/expert/36402 -https://www.oceanexpert.org/expert/36403 -https://www.oceanexpert.org/expert/36404 -https://www.oceanexpert.org/expert/36405 -https://www.oceanexpert.org/expert/36407 -https://www.oceanexpert.org/expert/36408 -https://www.oceanexpert.org/expert/36409 -https://www.oceanexpert.org/expert/36411 -https://www.oceanexpert.org/expert/36412 -https://www.oceanexpert.org/expert/36414 -https://www.oceanexpert.org/expert/36419 -https://www.oceanexpert.org/expert/36422 -https://www.oceanexpert.org/expert/36423 -https://www.oceanexpert.org/expert/36426 -https://www.oceanexpert.org/expert/36427 -https://www.oceanexpert.org/expert/36428 -https://www.oceanexpert.org/expert/36429 -https://www.oceanexpert.org/expert/36431 -https://www.oceanexpert.org/expert/36432 -https://www.oceanexpert.org/expert/36433 -https://www.oceanexpert.org/expert/36435 -https://www.oceanexpert.org/expert/36436 -https://www.oceanexpert.org/expert/36437 -https://www.oceanexpert.org/expert/36438 -https://www.oceanexpert.org/expert/36439 -https://www.oceanexpert.org/expert/36441 -https://www.oceanexpert.org/expert/36443 -https://www.oceanexpert.org/expert/36444 -https://www.oceanexpert.org/expert/36447 -https://www.oceanexpert.org/expert/36448 -https://www.oceanexpert.org/expert/36449 -https://www.oceanexpert.org/expert/36450 -https://www.oceanexpert.org/expert/36453 -https://www.oceanexpert.org/expert/36454 -https://www.oceanexpert.org/expert/36456 -https://www.oceanexpert.org/expert/36457 -https://www.oceanexpert.org/expert/36458 -https://www.oceanexpert.org/expert/36461 -https://www.oceanexpert.org/expert/36463 -https://www.oceanexpert.org/expert/36464 -https://www.oceanexpert.org/expert/36468 -https://www.oceanexpert.org/expert/36469 -https://www.oceanexpert.org/expert/36471 -https://www.oceanexpert.org/expert/36472 -https://www.oceanexpert.org/expert/36473 -https://www.oceanexpert.org/expert/36475 -https://www.oceanexpert.org/expert/36476 -https://www.oceanexpert.org/expert/36478 -https://www.oceanexpert.org/expert/36480 -https://www.oceanexpert.org/expert/36483 -https://www.oceanexpert.org/expert/36485 -https://www.oceanexpert.org/expert/36486 -https://www.oceanexpert.org/expert/36487 -https://www.oceanexpert.org/expert/36488 -https://www.oceanexpert.org/expert/36489 -https://www.oceanexpert.org/expert/36490 -https://www.oceanexpert.org/expert/36492 -https://www.oceanexpert.org/expert/36493 -https://www.oceanexpert.org/expert/36494 -https://www.oceanexpert.org/expert/36495 -https://www.oceanexpert.org/expert/36497 -https://www.oceanexpert.org/expert/36498 -https://www.oceanexpert.org/expert/36499 -https://www.oceanexpert.org/expert/36500 -https://www.oceanexpert.org/expert/36501 -https://www.oceanexpert.org/expert/36502 -https://www.oceanexpert.org/expert/36503 -https://www.oceanexpert.org/expert/36504 -https://www.oceanexpert.org/expert/36505 -https://www.oceanexpert.org/expert/36506 -https://www.oceanexpert.org/expert/36509 -https://www.oceanexpert.org/expert/36510 -https://www.oceanexpert.org/expert/36513 -https://www.oceanexpert.org/expert/36514 -https://www.oceanexpert.org/expert/36515 -https://www.oceanexpert.org/expert/36516 -https://www.oceanexpert.org/expert/36517 -https://www.oceanexpert.org/expert/36518 -https://www.oceanexpert.org/expert/36519 -https://www.oceanexpert.org/expert/36520 -https://www.oceanexpert.org/expert/36522 -https://www.oceanexpert.org/expert/36523 -https://www.oceanexpert.org/expert/36524 -https://www.oceanexpert.org/expert/36525 -https://www.oceanexpert.org/expert/36528 -https://www.oceanexpert.org/expert/36529 -https://www.oceanexpert.org/expert/36531 -https://www.oceanexpert.org/expert/36533 -https://www.oceanexpert.org/expert/36534 -https://www.oceanexpert.org/expert/36535 -https://www.oceanexpert.org/expert/36536 -https://www.oceanexpert.org/expert/36537 -https://www.oceanexpert.org/expert/36538 -https://www.oceanexpert.org/expert/36539 -https://www.oceanexpert.org/expert/36540 -https://www.oceanexpert.org/expert/36542 -https://www.oceanexpert.org/expert/36544 -https://www.oceanexpert.org/expert/36545 -https://www.oceanexpert.org/expert/36546 -https://www.oceanexpert.org/expert/36547 -https://www.oceanexpert.org/expert/36549 -https://www.oceanexpert.org/expert/36550 -https://www.oceanexpert.org/expert/36551 -https://www.oceanexpert.org/expert/36552 -https://www.oceanexpert.org/expert/36553 -https://www.oceanexpert.org/expert/36554 -https://www.oceanexpert.org/expert/36555 -https://www.oceanexpert.org/expert/36556 -https://www.oceanexpert.org/expert/36557 -https://www.oceanexpert.org/expert/36558 -https://www.oceanexpert.org/expert/36559 -https://www.oceanexpert.org/expert/36560 -https://www.oceanexpert.org/expert/36561 -https://www.oceanexpert.org/expert/36562 -https://www.oceanexpert.org/expert/36563 -https://www.oceanexpert.org/expert/36565 -https://www.oceanexpert.org/expert/36566 -https://www.oceanexpert.org/expert/36567 -https://www.oceanexpert.org/expert/36570 -https://www.oceanexpert.org/expert/36571 -https://www.oceanexpert.org/expert/36572 -https://www.oceanexpert.org/expert/36573 -https://www.oceanexpert.org/expert/36576 -https://www.oceanexpert.org/expert/36577 -https://www.oceanexpert.org/expert/36578 -https://www.oceanexpert.org/expert/36579 -https://www.oceanexpert.org/expert/36583 -https://www.oceanexpert.org/expert/36584 -https://www.oceanexpert.org/expert/36585 -https://www.oceanexpert.org/expert/36586 -https://www.oceanexpert.org/expert/36589 -https://www.oceanexpert.org/expert/36593 -https://www.oceanexpert.org/expert/36594 -https://www.oceanexpert.org/expert/36595 -https://www.oceanexpert.org/expert/36597 -https://www.oceanexpert.org/expert/36600 -https://www.oceanexpert.org/expert/36601 -https://www.oceanexpert.org/expert/36603 -https://www.oceanexpert.org/expert/36605 -https://www.oceanexpert.org/expert/36606 -https://www.oceanexpert.org/expert/36607 -https://www.oceanexpert.org/expert/36609 -https://www.oceanexpert.org/expert/36610 -https://www.oceanexpert.org/expert/36611 -https://www.oceanexpert.org/expert/36612 -https://www.oceanexpert.org/expert/36613 -https://www.oceanexpert.org/expert/36614 -https://www.oceanexpert.org/expert/36615 -https://www.oceanexpert.org/expert/36616 -https://www.oceanexpert.org/expert/36618 -https://www.oceanexpert.org/expert/36621 -https://www.oceanexpert.org/expert/36622 -https://www.oceanexpert.org/expert/36623 -https://www.oceanexpert.org/expert/36624 -https://www.oceanexpert.org/expert/36625 -https://www.oceanexpert.org/expert/36626 -https://www.oceanexpert.org/expert/36627 -https://www.oceanexpert.org/expert/36628 -https://www.oceanexpert.org/expert/36629 -https://www.oceanexpert.org/expert/36630 -https://www.oceanexpert.org/expert/36631 -https://www.oceanexpert.org/expert/36632 -https://www.oceanexpert.org/expert/36635 -https://www.oceanexpert.org/expert/36637 -https://www.oceanexpert.org/expert/36638 -https://www.oceanexpert.org/expert/36639 -https://www.oceanexpert.org/expert/36640 -https://www.oceanexpert.org/expert/36641 -https://www.oceanexpert.org/expert/36642 -https://www.oceanexpert.org/expert/36643 -https://www.oceanexpert.org/expert/36644 -https://www.oceanexpert.org/expert/36645 -https://www.oceanexpert.org/expert/36646 -https://www.oceanexpert.org/expert/36647 -https://www.oceanexpert.org/expert/36648 -https://www.oceanexpert.org/expert/36649 -https://www.oceanexpert.org/expert/36650 -https://www.oceanexpert.org/expert/36652 -https://www.oceanexpert.org/expert/36653 -https://www.oceanexpert.org/expert/36654 -https://www.oceanexpert.org/expert/36655 -https://www.oceanexpert.org/expert/36656 -https://www.oceanexpert.org/expert/36659 -https://www.oceanexpert.org/expert/36660 -https://www.oceanexpert.org/expert/36661 -https://www.oceanexpert.org/expert/36662 -https://www.oceanexpert.org/expert/36663 -https://www.oceanexpert.org/expert/36666 -https://www.oceanexpert.org/expert/36667 -https://www.oceanexpert.org/expert/36669 -https://www.oceanexpert.org/expert/36670 -https://www.oceanexpert.org/expert/36671 -https://www.oceanexpert.org/expert/36672 -https://www.oceanexpert.org/expert/36673 -https://www.oceanexpert.org/expert/36674 -https://www.oceanexpert.org/expert/36676 -https://www.oceanexpert.org/expert/36677 -https://www.oceanexpert.org/expert/36679 -https://www.oceanexpert.org/expert/36680 -https://www.oceanexpert.org/expert/36681 -https://www.oceanexpert.org/expert/36682 -https://www.oceanexpert.org/expert/36683 -https://www.oceanexpert.org/expert/36684 -https://www.oceanexpert.org/expert/36685 -https://www.oceanexpert.org/expert/36686 -https://www.oceanexpert.org/expert/36688 -https://www.oceanexpert.org/expert/36690 -https://www.oceanexpert.org/expert/36693 -https://www.oceanexpert.org/expert/36695 -https://www.oceanexpert.org/expert/36696 -https://www.oceanexpert.org/expert/36697 -https://www.oceanexpert.org/expert/36698 -https://www.oceanexpert.org/expert/36700 -https://www.oceanexpert.org/expert/36701 -https://www.oceanexpert.org/expert/36703 -https://www.oceanexpert.org/expert/36705 -https://www.oceanexpert.org/expert/36706 -https://www.oceanexpert.org/expert/36707 -https://www.oceanexpert.org/expert/36708 -https://www.oceanexpert.org/expert/36709 -https://www.oceanexpert.org/expert/36711 -https://www.oceanexpert.org/expert/36713 -https://www.oceanexpert.org/expert/36714 -https://www.oceanexpert.org/expert/36715 -https://www.oceanexpert.org/expert/36716 -https://www.oceanexpert.org/expert/36718 -https://www.oceanexpert.org/expert/36719 -https://www.oceanexpert.org/expert/36720 -https://www.oceanexpert.org/expert/36722 -https://www.oceanexpert.org/expert/36723 -https://www.oceanexpert.org/expert/36725 -https://www.oceanexpert.org/expert/36726 -https://www.oceanexpert.org/expert/36727 -https://www.oceanexpert.org/expert/36728 -https://www.oceanexpert.org/expert/36729 -https://www.oceanexpert.org/expert/36730 -https://www.oceanexpert.org/expert/36732 -https://www.oceanexpert.org/expert/36736 -https://www.oceanexpert.org/expert/36737 -https://www.oceanexpert.org/expert/36738 -https://www.oceanexpert.org/expert/36739 -https://www.oceanexpert.org/expert/36740 -https://www.oceanexpert.org/expert/36741 -https://www.oceanexpert.org/expert/36742 -https://www.oceanexpert.org/expert/36744 -https://www.oceanexpert.org/expert/36746 -https://www.oceanexpert.org/expert/36747 -https://www.oceanexpert.org/expert/36748 -https://www.oceanexpert.org/expert/36750 -https://www.oceanexpert.org/expert/36753 -https://www.oceanexpert.org/expert/36755 -https://www.oceanexpert.org/expert/36756 -https://www.oceanexpert.org/expert/36757 -https://www.oceanexpert.org/expert/36759 -https://www.oceanexpert.org/expert/36762 -https://www.oceanexpert.org/expert/36764 -https://www.oceanexpert.org/expert/36768 -https://www.oceanexpert.org/expert/36769 -https://www.oceanexpert.org/expert/36770 -https://www.oceanexpert.org/expert/36771 -https://www.oceanexpert.org/expert/36772 -https://www.oceanexpert.org/expert/36774 -https://www.oceanexpert.org/expert/36776 -https://www.oceanexpert.org/expert/36779 -https://www.oceanexpert.org/expert/36780 -https://www.oceanexpert.org/expert/36781 -https://www.oceanexpert.org/expert/36782 -https://www.oceanexpert.org/expert/36783 -https://www.oceanexpert.org/expert/36784 -https://www.oceanexpert.org/expert/36785 -https://www.oceanexpert.org/expert/36787 -https://www.oceanexpert.org/expert/36788 -https://www.oceanexpert.org/expert/36790 -https://www.oceanexpert.org/expert/36791 -https://www.oceanexpert.org/expert/36792 -https://www.oceanexpert.org/expert/36793 -https://www.oceanexpert.org/expert/36794 -https://www.oceanexpert.org/expert/36795 -https://www.oceanexpert.org/expert/36796 -https://www.oceanexpert.org/expert/36797 -https://www.oceanexpert.org/expert/36798 -https://www.oceanexpert.org/expert/36800 -https://www.oceanexpert.org/expert/36801 -https://www.oceanexpert.org/expert/36802 -https://www.oceanexpert.org/expert/36804 -https://www.oceanexpert.org/expert/36805 -https://www.oceanexpert.org/expert/36807 -https://www.oceanexpert.org/expert/36808 -https://www.oceanexpert.org/expert/36809 -https://www.oceanexpert.org/expert/36810 -https://www.oceanexpert.org/expert/36811 -https://www.oceanexpert.org/expert/36812 -https://www.oceanexpert.org/expert/36814 -https://www.oceanexpert.org/expert/36815 -https://www.oceanexpert.org/expert/36816 -https://www.oceanexpert.org/expert/36817 -https://www.oceanexpert.org/expert/36818 -https://www.oceanexpert.org/expert/36819 -https://www.oceanexpert.org/expert/36820 -https://www.oceanexpert.org/expert/36821 -https://www.oceanexpert.org/expert/36822 -https://www.oceanexpert.org/expert/36823 -https://www.oceanexpert.org/expert/36825 -https://www.oceanexpert.org/expert/36826 -https://www.oceanexpert.org/expert/36827 -https://www.oceanexpert.org/expert/36828 -https://www.oceanexpert.org/expert/36830 -https://www.oceanexpert.org/expert/36831 -https://www.oceanexpert.org/expert/36832 -https://www.oceanexpert.org/expert/36833 -https://www.oceanexpert.org/expert/36834 -https://www.oceanexpert.org/expert/36835 -https://www.oceanexpert.org/expert/36837 -https://www.oceanexpert.org/expert/36838 -https://www.oceanexpert.org/expert/36840 -https://www.oceanexpert.org/expert/36842 -https://www.oceanexpert.org/expert/36843 -https://www.oceanexpert.org/expert/36844 -https://www.oceanexpert.org/expert/36845 -https://www.oceanexpert.org/expert/36846 -https://www.oceanexpert.org/expert/36847 -https://www.oceanexpert.org/expert/36848 -https://www.oceanexpert.org/expert/36849 -https://www.oceanexpert.org/expert/36850 -https://www.oceanexpert.org/expert/36851 -https://www.oceanexpert.org/expert/36853 -https://www.oceanexpert.org/expert/36854 -https://www.oceanexpert.org/expert/36855 -https://www.oceanexpert.org/expert/36856 -https://www.oceanexpert.org/expert/36857 -https://www.oceanexpert.org/expert/36858 -https://www.oceanexpert.org/expert/36859 -https://www.oceanexpert.org/expert/36860 -https://www.oceanexpert.org/expert/36861 -https://www.oceanexpert.org/expert/36862 -https://www.oceanexpert.org/expert/36863 -https://www.oceanexpert.org/expert/36865 -https://www.oceanexpert.org/expert/36866 -https://www.oceanexpert.org/expert/36867 -https://www.oceanexpert.org/expert/36868 -https://www.oceanexpert.org/expert/36872 -https://www.oceanexpert.org/expert/36873 -https://www.oceanexpert.org/expert/36874 -https://www.oceanexpert.org/expert/36875 -https://www.oceanexpert.org/expert/36878 -https://www.oceanexpert.org/expert/36881 -https://www.oceanexpert.org/expert/36884 -https://www.oceanexpert.org/expert/36892 -https://www.oceanexpert.org/expert/36893 -https://www.oceanexpert.org/expert/36894 -https://www.oceanexpert.org/expert/36895 -https://www.oceanexpert.org/expert/36897 -https://www.oceanexpert.org/expert/36898 -https://www.oceanexpert.org/expert/36900 -https://www.oceanexpert.org/expert/36901 -https://www.oceanexpert.org/expert/36902 -https://www.oceanexpert.org/expert/36903 -https://www.oceanexpert.org/expert/36904 -https://www.oceanexpert.org/expert/36905 -https://www.oceanexpert.org/expert/36907 -https://www.oceanexpert.org/expert/36910 -https://www.oceanexpert.org/expert/36913 -https://www.oceanexpert.org/expert/36915 -https://www.oceanexpert.org/expert/36917 -https://www.oceanexpert.org/expert/36918 -https://www.oceanexpert.org/expert/36919 -https://www.oceanexpert.org/expert/36921 -https://www.oceanexpert.org/expert/36923 -https://www.oceanexpert.org/expert/36924 -https://www.oceanexpert.org/expert/36927 -https://www.oceanexpert.org/expert/36930 -https://www.oceanexpert.org/expert/36932 -https://www.oceanexpert.org/expert/36933 -https://www.oceanexpert.org/expert/36934 -https://www.oceanexpert.org/expert/36935 -https://www.oceanexpert.org/expert/36937 -https://www.oceanexpert.org/expert/36938 -https://www.oceanexpert.org/expert/36942 -https://www.oceanexpert.org/expert/36943 -https://www.oceanexpert.org/expert/36944 -https://www.oceanexpert.org/expert/36946 -https://www.oceanexpert.org/expert/36949 -https://www.oceanexpert.org/expert/36950 -https://www.oceanexpert.org/expert/36952 -https://www.oceanexpert.org/expert/36954 -https://www.oceanexpert.org/expert/36955 -https://www.oceanexpert.org/expert/36956 -https://www.oceanexpert.org/expert/36957 -https://www.oceanexpert.org/expert/36961 -https://www.oceanexpert.org/expert/36962 -https://www.oceanexpert.org/expert/36963 -https://www.oceanexpert.org/expert/36964 -https://www.oceanexpert.org/expert/36966 -https://www.oceanexpert.org/expert/36968 -https://www.oceanexpert.org/expert/36972 -https://www.oceanexpert.org/expert/36974 -https://www.oceanexpert.org/expert/36975 -https://www.oceanexpert.org/expert/36976 -https://www.oceanexpert.org/expert/36977 -https://www.oceanexpert.org/expert/36978 -https://www.oceanexpert.org/expert/36979 -https://www.oceanexpert.org/expert/36983 -https://www.oceanexpert.org/expert/36984 -https://www.oceanexpert.org/expert/36986 -https://www.oceanexpert.org/expert/36988 -https://www.oceanexpert.org/expert/36990 -https://www.oceanexpert.org/expert/36991 -https://www.oceanexpert.org/expert/36993 -https://www.oceanexpert.org/expert/36994 -https://www.oceanexpert.org/expert/36995 -https://www.oceanexpert.org/expert/36996 -https://www.oceanexpert.org/expert/36997 -https://www.oceanexpert.org/expert/36998 -https://www.oceanexpert.org/expert/36999 -https://www.oceanexpert.org/expert/37000 -https://www.oceanexpert.org/expert/37002 -https://www.oceanexpert.org/expert/37003 -https://www.oceanexpert.org/expert/37004 -https://www.oceanexpert.org/expert/37005 -https://www.oceanexpert.org/expert/37007 -https://www.oceanexpert.org/expert/37008 -https://www.oceanexpert.org/expert/37009 -https://www.oceanexpert.org/expert/37010 -https://www.oceanexpert.org/expert/37012 -https://www.oceanexpert.org/expert/37013 -https://www.oceanexpert.org/expert/37016 -https://www.oceanexpert.org/expert/37017 -https://www.oceanexpert.org/expert/37018 -https://www.oceanexpert.org/expert/37023 -https://www.oceanexpert.org/expert/37024 -https://www.oceanexpert.org/expert/37025 -https://www.oceanexpert.org/expert/37026 -https://www.oceanexpert.org/expert/37027 -https://www.oceanexpert.org/expert/37028 -https://www.oceanexpert.org/expert/37029 -https://www.oceanexpert.org/expert/37030 -https://www.oceanexpert.org/expert/37032 -https://www.oceanexpert.org/expert/37033 -https://www.oceanexpert.org/expert/37034 -https://www.oceanexpert.org/expert/37035 -https://www.oceanexpert.org/expert/37037 -https://www.oceanexpert.org/expert/37038 -https://www.oceanexpert.org/expert/37039 -https://www.oceanexpert.org/expert/37040 -https://www.oceanexpert.org/expert/37044 -https://www.oceanexpert.org/expert/37045 -https://www.oceanexpert.org/expert/37046 -https://www.oceanexpert.org/expert/37047 -https://www.oceanexpert.org/expert/37048 -https://www.oceanexpert.org/expert/37049 -https://www.oceanexpert.org/expert/37050 -https://www.oceanexpert.org/expert/37052 -https://www.oceanexpert.org/expert/37053 -https://www.oceanexpert.org/expert/37054 -https://www.oceanexpert.org/expert/37055 -https://www.oceanexpert.org/expert/37058 -https://www.oceanexpert.org/expert/37059 -https://www.oceanexpert.org/expert/37060 -https://www.oceanexpert.org/expert/37063 -https://www.oceanexpert.org/expert/37064 -https://www.oceanexpert.org/expert/37065 -https://www.oceanexpert.org/expert/37067 -https://www.oceanexpert.org/expert/37070 -https://www.oceanexpert.org/expert/37071 -https://www.oceanexpert.org/expert/37072 -https://www.oceanexpert.org/expert/37073 -https://www.oceanexpert.org/expert/37074 -https://www.oceanexpert.org/expert/37076 -https://www.oceanexpert.org/expert/37078 -https://www.oceanexpert.org/expert/37079 -https://www.oceanexpert.org/expert/37081 -https://www.oceanexpert.org/expert/37082 -https://www.oceanexpert.org/expert/37083 -https://www.oceanexpert.org/expert/37084 -https://www.oceanexpert.org/expert/37085 -https://www.oceanexpert.org/expert/37086 -https://www.oceanexpert.org/expert/37090 -https://www.oceanexpert.org/expert/37095 -https://www.oceanexpert.org/expert/37096 -https://www.oceanexpert.org/expert/37097 -https://www.oceanexpert.org/expert/37098 -https://www.oceanexpert.org/expert/37099 -https://www.oceanexpert.org/expert/37100 -https://www.oceanexpert.org/expert/37102 -https://www.oceanexpert.org/expert/37104 -https://www.oceanexpert.org/expert/37105 -https://www.oceanexpert.org/expert/37106 -https://www.oceanexpert.org/expert/37107 -https://www.oceanexpert.org/expert/37110 -https://www.oceanexpert.org/expert/37112 -https://www.oceanexpert.org/expert/37114 -https://www.oceanexpert.org/expert/37116 -https://www.oceanexpert.org/expert/37118 -https://www.oceanexpert.org/expert/37123 -https://www.oceanexpert.org/expert/37124 -https://www.oceanexpert.org/expert/37125 -https://www.oceanexpert.org/expert/37127 -https://www.oceanexpert.org/expert/37128 -https://www.oceanexpert.org/expert/37129 -https://www.oceanexpert.org/expert/37132 -https://www.oceanexpert.org/expert/37133 -https://www.oceanexpert.org/expert/37134 -https://www.oceanexpert.org/expert/37135 -https://www.oceanexpert.org/expert/37136 -https://www.oceanexpert.org/expert/37137 -https://www.oceanexpert.org/expert/37138 -https://www.oceanexpert.org/expert/37139 -https://www.oceanexpert.org/expert/37140 -https://www.oceanexpert.org/expert/37141 -https://www.oceanexpert.org/expert/37142 -https://www.oceanexpert.org/expert/37143 -https://www.oceanexpert.org/expert/37144 -https://www.oceanexpert.org/expert/37145 -https://www.oceanexpert.org/expert/37147 -https://www.oceanexpert.org/expert/37148 -https://www.oceanexpert.org/expert/37153 -https://www.oceanexpert.org/expert/37154 -https://www.oceanexpert.org/expert/37155 -https://www.oceanexpert.org/expert/37156 -https://www.oceanexpert.org/expert/37162 -https://www.oceanexpert.org/expert/37165 -https://www.oceanexpert.org/expert/37173 -https://www.oceanexpert.org/expert/37174 -https://www.oceanexpert.org/expert/37175 -https://www.oceanexpert.org/expert/37177 -https://www.oceanexpert.org/expert/37183 -https://www.oceanexpert.org/expert/37184 -https://www.oceanexpert.org/expert/37186 -https://www.oceanexpert.org/expert/37189 -https://www.oceanexpert.org/expert/37191 -https://www.oceanexpert.org/expert/37192 -https://www.oceanexpert.org/expert/37193 -https://www.oceanexpert.org/expert/37194 -https://www.oceanexpert.org/expert/37195 -https://www.oceanexpert.org/expert/37198 -https://www.oceanexpert.org/expert/37200 -https://www.oceanexpert.org/expert/37205 -https://www.oceanexpert.org/expert/37206 -https://www.oceanexpert.org/expert/37208 -https://www.oceanexpert.org/expert/37211 -https://www.oceanexpert.org/expert/37217 -https://www.oceanexpert.org/expert/37220 -https://www.oceanexpert.org/expert/37222 -https://www.oceanexpert.org/expert/37223 -https://www.oceanexpert.org/expert/37224 -https://www.oceanexpert.org/expert/37225 -https://www.oceanexpert.org/expert/37226 -https://www.oceanexpert.org/expert/37227 -https://www.oceanexpert.org/expert/37230 -https://www.oceanexpert.org/expert/37232 -https://www.oceanexpert.org/expert/37234 -https://www.oceanexpert.org/expert/37235 -https://www.oceanexpert.org/expert/37236 -https://www.oceanexpert.org/expert/37239 -https://www.oceanexpert.org/expert/37240 -https://www.oceanexpert.org/expert/37241 -https://www.oceanexpert.org/expert/37242 -https://www.oceanexpert.org/expert/37244 -https://www.oceanexpert.org/expert/37245 -https://www.oceanexpert.org/expert/37246 -https://www.oceanexpert.org/expert/37247 -https://www.oceanexpert.org/expert/37248 -https://www.oceanexpert.org/expert/37249 -https://www.oceanexpert.org/expert/37251 -https://www.oceanexpert.org/expert/37258 -https://www.oceanexpert.org/expert/37260 -https://www.oceanexpert.org/expert/37262 -https://www.oceanexpert.org/expert/37264 -https://www.oceanexpert.org/expert/37265 -https://www.oceanexpert.org/expert/37267 -https://www.oceanexpert.org/expert/37277 -https://www.oceanexpert.org/expert/37278 -https://www.oceanexpert.org/expert/37279 -https://www.oceanexpert.org/expert/37280 -https://www.oceanexpert.org/expert/37285 -https://www.oceanexpert.org/expert/37286 -https://www.oceanexpert.org/expert/37287 -https://www.oceanexpert.org/expert/37288 -https://www.oceanexpert.org/expert/37289 -https://www.oceanexpert.org/expert/37290 -https://www.oceanexpert.org/expert/37292 -https://www.oceanexpert.org/expert/37293 -https://www.oceanexpert.org/expert/37294 -https://www.oceanexpert.org/expert/37295 -https://www.oceanexpert.org/expert/37298 -https://www.oceanexpert.org/expert/37300 -https://www.oceanexpert.org/expert/37301 -https://www.oceanexpert.org/expert/37302 -https://www.oceanexpert.org/expert/37303 -https://www.oceanexpert.org/expert/37306 -https://www.oceanexpert.org/expert/37309 -https://www.oceanexpert.org/expert/37310 -https://www.oceanexpert.org/expert/37312 -https://www.oceanexpert.org/expert/37313 -https://www.oceanexpert.org/expert/37314 -https://www.oceanexpert.org/expert/37316 -https://www.oceanexpert.org/expert/37321 -https://www.oceanexpert.org/expert/37322 -https://www.oceanexpert.org/expert/37323 -https://www.oceanexpert.org/expert/37326 -https://www.oceanexpert.org/expert/37327 -https://www.oceanexpert.org/expert/37328 -https://www.oceanexpert.org/expert/37331 -https://www.oceanexpert.org/expert/37332 -https://www.oceanexpert.org/expert/37335 -https://www.oceanexpert.org/expert/37336 -https://www.oceanexpert.org/expert/37338 -https://www.oceanexpert.org/expert/37341 -https://www.oceanexpert.org/expert/37342 -https://www.oceanexpert.org/expert/37343 -https://www.oceanexpert.org/expert/37345 -https://www.oceanexpert.org/expert/37347 -https://www.oceanexpert.org/expert/37349 -https://www.oceanexpert.org/expert/37350 -https://www.oceanexpert.org/expert/37351 -https://www.oceanexpert.org/expert/37352 -https://www.oceanexpert.org/expert/37355 -https://www.oceanexpert.org/expert/37356 -https://www.oceanexpert.org/expert/37358 -https://www.oceanexpert.org/expert/37359 -https://www.oceanexpert.org/expert/37360 -https://www.oceanexpert.org/expert/37363 -https://www.oceanexpert.org/expert/37364 -https://www.oceanexpert.org/expert/37365 -https://www.oceanexpert.org/expert/37366 -https://www.oceanexpert.org/expert/37367 -https://www.oceanexpert.org/expert/37368 -https://www.oceanexpert.org/expert/37369 -https://www.oceanexpert.org/expert/37370 -https://www.oceanexpert.org/expert/37371 -https://www.oceanexpert.org/expert/37373 -https://www.oceanexpert.org/expert/37374 -https://www.oceanexpert.org/expert/37376 -https://www.oceanexpert.org/expert/37377 -https://www.oceanexpert.org/expert/37378 -https://www.oceanexpert.org/expert/37379 -https://www.oceanexpert.org/expert/37380 -https://www.oceanexpert.org/expert/37382 -https://www.oceanexpert.org/expert/37383 -https://www.oceanexpert.org/expert/37384 -https://www.oceanexpert.org/expert/37385 -https://www.oceanexpert.org/expert/37386 -https://www.oceanexpert.org/expert/37388 -https://www.oceanexpert.org/expert/37390 -https://www.oceanexpert.org/expert/37392 -https://www.oceanexpert.org/expert/37393 -https://www.oceanexpert.org/expert/37397 -https://www.oceanexpert.org/expert/37400 -https://www.oceanexpert.org/expert/37401 -https://www.oceanexpert.org/expert/37402 -https://www.oceanexpert.org/expert/37403 -https://www.oceanexpert.org/expert/37405 -https://www.oceanexpert.org/expert/37406 -https://www.oceanexpert.org/expert/37407 -https://www.oceanexpert.org/expert/37408 -https://www.oceanexpert.org/expert/37409 -https://www.oceanexpert.org/expert/37410 -https://www.oceanexpert.org/expert/37411 -https://www.oceanexpert.org/expert/37412 -https://www.oceanexpert.org/expert/37413 -https://www.oceanexpert.org/expert/37414 -https://www.oceanexpert.org/expert/37415 -https://www.oceanexpert.org/expert/37417 -https://www.oceanexpert.org/expert/37422 -https://www.oceanexpert.org/expert/37423 -https://www.oceanexpert.org/expert/37424 -https://www.oceanexpert.org/expert/37425 -https://www.oceanexpert.org/expert/37427 -https://www.oceanexpert.org/expert/37429 -https://www.oceanexpert.org/expert/37431 -https://www.oceanexpert.org/expert/37434 -https://www.oceanexpert.org/expert/37435 -https://www.oceanexpert.org/expert/37436 -https://www.oceanexpert.org/expert/37438 -https://www.oceanexpert.org/expert/37440 -https://www.oceanexpert.org/expert/37441 -https://www.oceanexpert.org/expert/37442 -https://www.oceanexpert.org/expert/37443 -https://www.oceanexpert.org/expert/37444 -https://www.oceanexpert.org/expert/37445 -https://www.oceanexpert.org/expert/37446 -https://www.oceanexpert.org/expert/37447 -https://www.oceanexpert.org/expert/37451 -https://www.oceanexpert.org/expert/37453 -https://www.oceanexpert.org/expert/37454 -https://www.oceanexpert.org/expert/37455 -https://www.oceanexpert.org/expert/37456 -https://www.oceanexpert.org/expert/37457 -https://www.oceanexpert.org/expert/37458 -https://www.oceanexpert.org/expert/37459 -https://www.oceanexpert.org/expert/37460 -https://www.oceanexpert.org/expert/37461 -https://www.oceanexpert.org/expert/37462 -https://www.oceanexpert.org/expert/37463 -https://www.oceanexpert.org/expert/37464 -https://www.oceanexpert.org/expert/37466 -https://www.oceanexpert.org/expert/37467 -https://www.oceanexpert.org/expert/37469 -https://www.oceanexpert.org/expert/37470 -https://www.oceanexpert.org/expert/37472 -https://www.oceanexpert.org/expert/37474 -https://www.oceanexpert.org/expert/37475 -https://www.oceanexpert.org/expert/37476 -https://www.oceanexpert.org/expert/37477 -https://www.oceanexpert.org/expert/37479 -https://www.oceanexpert.org/expert/37480 -https://www.oceanexpert.org/expert/37482 -https://www.oceanexpert.org/expert/37485 -https://www.oceanexpert.org/expert/37486 -https://www.oceanexpert.org/expert/37487 -https://www.oceanexpert.org/expert/37491 -https://www.oceanexpert.org/expert/37494 -https://www.oceanexpert.org/expert/37495 -https://www.oceanexpert.org/expert/37496 -https://www.oceanexpert.org/expert/37497 -https://www.oceanexpert.org/expert/37498 -https://www.oceanexpert.org/expert/37501 -https://www.oceanexpert.org/expert/37502 -https://www.oceanexpert.org/expert/37503 -https://www.oceanexpert.org/expert/37504 -https://www.oceanexpert.org/expert/37505 -https://www.oceanexpert.org/expert/37506 -https://www.oceanexpert.org/expert/37507 -https://www.oceanexpert.org/expert/37508 -https://www.oceanexpert.org/expert/37509 -https://www.oceanexpert.org/expert/37510 -https://www.oceanexpert.org/expert/37511 -https://www.oceanexpert.org/expert/37512 -https://www.oceanexpert.org/expert/37514 -https://www.oceanexpert.org/expert/37515 -https://www.oceanexpert.org/expert/37516 -https://www.oceanexpert.org/expert/37517 -https://www.oceanexpert.org/expert/37518 -https://www.oceanexpert.org/expert/37519 -https://www.oceanexpert.org/expert/37520 -https://www.oceanexpert.org/expert/37521 -https://www.oceanexpert.org/expert/37523 -https://www.oceanexpert.org/expert/37524 -https://www.oceanexpert.org/expert/37528 -https://www.oceanexpert.org/expert/37531 -https://www.oceanexpert.org/expert/37532 -https://www.oceanexpert.org/expert/37533 -https://www.oceanexpert.org/expert/37537 -https://www.oceanexpert.org/expert/37541 -https://www.oceanexpert.org/expert/37542 -https://www.oceanexpert.org/expert/37543 -https://www.oceanexpert.org/expert/37544 -https://www.oceanexpert.org/expert/37545 -https://www.oceanexpert.org/expert/37546 -https://www.oceanexpert.org/expert/37547 -https://www.oceanexpert.org/expert/37549 -https://www.oceanexpert.org/expert/37553 -https://www.oceanexpert.org/expert/37554 -https://www.oceanexpert.org/expert/37555 -https://www.oceanexpert.org/expert/37556 -https://www.oceanexpert.org/expert/37559 -https://www.oceanexpert.org/expert/37563 -https://www.oceanexpert.org/expert/37564 -https://www.oceanexpert.org/expert/37565 -https://www.oceanexpert.org/expert/37566 -https://www.oceanexpert.org/expert/37568 -https://www.oceanexpert.org/expert/37571 -https://www.oceanexpert.org/expert/37574 -https://www.oceanexpert.org/expert/37575 -https://www.oceanexpert.org/expert/37576 -https://www.oceanexpert.org/expert/37580 -https://www.oceanexpert.org/expert/37585 -https://www.oceanexpert.org/expert/37588 -https://www.oceanexpert.org/expert/37589 -https://www.oceanexpert.org/expert/37591 -https://www.oceanexpert.org/expert/37593 -https://www.oceanexpert.org/expert/37596 -https://www.oceanexpert.org/expert/37598 -https://www.oceanexpert.org/expert/37599 -https://www.oceanexpert.org/expert/37602 -https://www.oceanexpert.org/expert/37605 -https://www.oceanexpert.org/expert/37607 -https://www.oceanexpert.org/expert/37615 -https://www.oceanexpert.org/expert/37616 -https://www.oceanexpert.org/expert/37618 -https://www.oceanexpert.org/expert/37621 -https://www.oceanexpert.org/expert/37622 -https://www.oceanexpert.org/expert/37623 -https://www.oceanexpert.org/expert/37624 -https://www.oceanexpert.org/expert/37625 -https://www.oceanexpert.org/expert/37626 -https://www.oceanexpert.org/expert/37628 -https://www.oceanexpert.org/expert/37631 -https://www.oceanexpert.org/expert/37632 -https://www.oceanexpert.org/expert/37633 -https://www.oceanexpert.org/expert/37635 -https://www.oceanexpert.org/expert/37636 -https://www.oceanexpert.org/expert/37639 -https://www.oceanexpert.org/expert/37642 -https://www.oceanexpert.org/expert/37646 -https://www.oceanexpert.org/expert/37647 -https://www.oceanexpert.org/expert/37649 -https://www.oceanexpert.org/expert/37650 -https://www.oceanexpert.org/expert/37651 -https://www.oceanexpert.org/expert/37653 -https://www.oceanexpert.org/expert/37660 -https://www.oceanexpert.org/expert/37661 -https://www.oceanexpert.org/expert/37662 -https://www.oceanexpert.org/expert/37663 -https://www.oceanexpert.org/expert/37664 -https://www.oceanexpert.org/expert/37668 -https://www.oceanexpert.org/expert/37670 -https://www.oceanexpert.org/expert/37677 -https://www.oceanexpert.org/expert/37680 -https://www.oceanexpert.org/expert/37682 -https://www.oceanexpert.org/expert/37683 -https://www.oceanexpert.org/expert/37686 -https://www.oceanexpert.org/expert/37687 -https://www.oceanexpert.org/expert/37690 -https://www.oceanexpert.org/expert/37693 -https://www.oceanexpert.org/expert/37694 -https://www.oceanexpert.org/expert/37695 -https://www.oceanexpert.org/expert/37697 -https://www.oceanexpert.org/expert/37709 -https://www.oceanexpert.org/expert/37711 -https://www.oceanexpert.org/expert/37712 -https://www.oceanexpert.org/expert/37715 -https://www.oceanexpert.org/expert/37717 -https://www.oceanexpert.org/expert/37718 -https://www.oceanexpert.org/expert/37719 -https://www.oceanexpert.org/expert/37721 -https://www.oceanexpert.org/expert/37725 -https://www.oceanexpert.org/expert/37727 -https://www.oceanexpert.org/expert/37733 -https://www.oceanexpert.org/expert/37734 -https://www.oceanexpert.org/expert/37735 -https://www.oceanexpert.org/expert/37742 -https://www.oceanexpert.org/expert/37744 -https://www.oceanexpert.org/expert/37746 -https://www.oceanexpert.org/expert/37748 -https://www.oceanexpert.org/expert/37749 -https://www.oceanexpert.org/expert/37752 -https://www.oceanexpert.org/expert/37770 -https://www.oceanexpert.org/expert/37773 -https://www.oceanexpert.org/expert/37774 -https://www.oceanexpert.org/expert/37775 -https://www.oceanexpert.org/expert/37779 -https://www.oceanexpert.org/expert/37780 -https://www.oceanexpert.org/expert/37783 -https://www.oceanexpert.org/expert/37784 -https://www.oceanexpert.org/expert/37785 -https://www.oceanexpert.org/expert/37788 -https://www.oceanexpert.org/expert/37789 -https://www.oceanexpert.org/expert/37790 -https://www.oceanexpert.org/expert/37792 -https://www.oceanexpert.org/expert/37793 -https://www.oceanexpert.org/expert/37794 -https://www.oceanexpert.org/expert/37797 -https://www.oceanexpert.org/expert/37798 -https://www.oceanexpert.org/expert/37799 -https://www.oceanexpert.org/expert/37800 -https://www.oceanexpert.org/expert/37802 -https://www.oceanexpert.org/expert/37803 -https://www.oceanexpert.org/expert/37805 -https://www.oceanexpert.org/expert/37808 -https://www.oceanexpert.org/expert/37809 -https://www.oceanexpert.org/expert/37810 -https://www.oceanexpert.org/expert/37811 -https://www.oceanexpert.org/expert/37812 -https://www.oceanexpert.org/expert/37813 -https://www.oceanexpert.org/expert/37816 -https://www.oceanexpert.org/expert/37817 -https://www.oceanexpert.org/expert/37818 -https://www.oceanexpert.org/expert/37819 -https://www.oceanexpert.org/expert/37820 -https://www.oceanexpert.org/expert/37821 -https://www.oceanexpert.org/expert/37822 -https://www.oceanexpert.org/expert/37825 -https://www.oceanexpert.org/expert/37826 -https://www.oceanexpert.org/expert/37827 -https://www.oceanexpert.org/expert/37828 -https://www.oceanexpert.org/expert/37829 -https://www.oceanexpert.org/expert/37831 -https://www.oceanexpert.org/expert/37832 -https://www.oceanexpert.org/expert/37833 -https://www.oceanexpert.org/expert/37835 -https://www.oceanexpert.org/expert/37837 -https://www.oceanexpert.org/expert/37838 -https://www.oceanexpert.org/expert/37839 -https://www.oceanexpert.org/expert/37840 -https://www.oceanexpert.org/expert/37841 -https://www.oceanexpert.org/expert/37842 -https://www.oceanexpert.org/expert/37843 -https://www.oceanexpert.org/expert/37845 -https://www.oceanexpert.org/expert/37846 -https://www.oceanexpert.org/expert/37849 -https://www.oceanexpert.org/expert/37850 -https://www.oceanexpert.org/expert/37851 -https://www.oceanexpert.org/expert/37852 -https://www.oceanexpert.org/expert/37853 -https://www.oceanexpert.org/expert/37855 -https://www.oceanexpert.org/expert/37858 -https://www.oceanexpert.org/expert/37860 -https://www.oceanexpert.org/expert/37861 -https://www.oceanexpert.org/expert/37862 -https://www.oceanexpert.org/expert/37864 -https://www.oceanexpert.org/expert/37866 -https://www.oceanexpert.org/expert/37867 -https://www.oceanexpert.org/expert/37868 -https://www.oceanexpert.org/expert/37871 -https://www.oceanexpert.org/expert/37872 -https://www.oceanexpert.org/expert/37873 -https://www.oceanexpert.org/expert/37876 -https://www.oceanexpert.org/expert/37877 -https://www.oceanexpert.org/expert/37880 -https://www.oceanexpert.org/expert/37881 -https://www.oceanexpert.org/expert/37883 -https://www.oceanexpert.org/expert/37884 -https://www.oceanexpert.org/expert/37885 -https://www.oceanexpert.org/expert/37889 -https://www.oceanexpert.org/expert/37890 -https://www.oceanexpert.org/expert/37892 -https://www.oceanexpert.org/expert/37894 -https://www.oceanexpert.org/expert/37895 -https://www.oceanexpert.org/expert/37896 -https://www.oceanexpert.org/expert/37897 -https://www.oceanexpert.org/expert/37898 -https://www.oceanexpert.org/expert/37899 -https://www.oceanexpert.org/expert/37900 -https://www.oceanexpert.org/expert/37901 -https://www.oceanexpert.org/expert/37903 -https://www.oceanexpert.org/expert/37904 -https://www.oceanexpert.org/expert/37907 -https://www.oceanexpert.org/expert/37908 -https://www.oceanexpert.org/expert/37909 -https://www.oceanexpert.org/expert/37910 -https://www.oceanexpert.org/expert/37911 -https://www.oceanexpert.org/expert/37912 -https://www.oceanexpert.org/expert/37913 -https://www.oceanexpert.org/expert/37914 -https://www.oceanexpert.org/expert/37916 -https://www.oceanexpert.org/expert/37917 -https://www.oceanexpert.org/expert/37920 -https://www.oceanexpert.org/expert/37922 -https://www.oceanexpert.org/expert/37923 -https://www.oceanexpert.org/expert/37925 -https://www.oceanexpert.org/expert/37926 -https://www.oceanexpert.org/expert/37927 -https://www.oceanexpert.org/expert/37929 -https://www.oceanexpert.org/expert/37932 -https://www.oceanexpert.org/expert/37934 -https://www.oceanexpert.org/expert/37935 -https://www.oceanexpert.org/expert/37936 -https://www.oceanexpert.org/expert/37937 -https://www.oceanexpert.org/expert/37939 -https://www.oceanexpert.org/expert/37941 -https://www.oceanexpert.org/expert/37943 -https://www.oceanexpert.org/expert/37944 -https://www.oceanexpert.org/expert/37946 -https://www.oceanexpert.org/expert/37951 -https://www.oceanexpert.org/expert/37952 -https://www.oceanexpert.org/expert/37956 -https://www.oceanexpert.org/expert/37957 -https://www.oceanexpert.org/expert/37961 -https://www.oceanexpert.org/expert/37962 -https://www.oceanexpert.org/expert/37963 -https://www.oceanexpert.org/expert/37964 -https://www.oceanexpert.org/expert/37966 -https://www.oceanexpert.org/expert/37967 -https://www.oceanexpert.org/expert/37968 -https://www.oceanexpert.org/expert/37969 -https://www.oceanexpert.org/expert/37971 -https://www.oceanexpert.org/expert/37972 -https://www.oceanexpert.org/expert/37973 -https://www.oceanexpert.org/expert/37974 -https://www.oceanexpert.org/expert/37976 -https://www.oceanexpert.org/expert/37977 -https://www.oceanexpert.org/expert/37978 -https://www.oceanexpert.org/expert/37979 -https://www.oceanexpert.org/expert/37980 -https://www.oceanexpert.org/expert/37982 -https://www.oceanexpert.org/expert/37984 -https://www.oceanexpert.org/expert/37986 -https://www.oceanexpert.org/expert/37988 -https://www.oceanexpert.org/expert/37989 -https://www.oceanexpert.org/expert/37990 -https://www.oceanexpert.org/expert/37992 -https://www.oceanexpert.org/expert/37995 -https://www.oceanexpert.org/expert/37996 -https://www.oceanexpert.org/expert/37997 -https://www.oceanexpert.org/expert/37999 -https://www.oceanexpert.org/expert/38001 -https://www.oceanexpert.org/expert/38002 -https://www.oceanexpert.org/expert/38003 -https://www.oceanexpert.org/expert/38004 -https://www.oceanexpert.org/expert/38005 -https://www.oceanexpert.org/expert/38006 -https://www.oceanexpert.org/expert/38007 -https://www.oceanexpert.org/expert/38008 -https://www.oceanexpert.org/expert/38010 -https://www.oceanexpert.org/expert/38011 -https://www.oceanexpert.org/expert/38013 -https://www.oceanexpert.org/expert/38014 -https://www.oceanexpert.org/expert/38016 -https://www.oceanexpert.org/expert/38017 -https://www.oceanexpert.org/expert/38019 -https://www.oceanexpert.org/expert/38020 -https://www.oceanexpert.org/expert/38021 -https://www.oceanexpert.org/expert/38024 -https://www.oceanexpert.org/expert/38026 -https://www.oceanexpert.org/expert/38027 -https://www.oceanexpert.org/expert/38028 -https://www.oceanexpert.org/expert/38029 -https://www.oceanexpert.org/expert/38030 -https://www.oceanexpert.org/expert/38031 -https://www.oceanexpert.org/expert/38032 -https://www.oceanexpert.org/expert/38034 -https://www.oceanexpert.org/expert/38043 -https://www.oceanexpert.org/expert/38044 -https://www.oceanexpert.org/expert/38045 -https://www.oceanexpert.org/expert/38046 -https://www.oceanexpert.org/expert/38047 -https://www.oceanexpert.org/expert/38050 -https://www.oceanexpert.org/expert/38051 -https://www.oceanexpert.org/expert/38052 -https://www.oceanexpert.org/expert/38053 -https://www.oceanexpert.org/expert/38054 -https://www.oceanexpert.org/expert/38055 -https://www.oceanexpert.org/expert/38056 -https://www.oceanexpert.org/expert/38057 -https://www.oceanexpert.org/expert/38058 -https://www.oceanexpert.org/expert/38059 -https://www.oceanexpert.org/expert/38061 -https://www.oceanexpert.org/expert/38062 -https://www.oceanexpert.org/expert/38063 -https://www.oceanexpert.org/expert/38064 -https://www.oceanexpert.org/expert/38067 -https://www.oceanexpert.org/expert/38068 -https://www.oceanexpert.org/expert/38070 -https://www.oceanexpert.org/expert/38071 -https://www.oceanexpert.org/expert/38072 -https://www.oceanexpert.org/expert/38073 -https://www.oceanexpert.org/expert/38074 -https://www.oceanexpert.org/expert/38075 -https://www.oceanexpert.org/expert/38076 -https://www.oceanexpert.org/expert/38079 -https://www.oceanexpert.org/expert/38083 -https://www.oceanexpert.org/expert/38087 -https://www.oceanexpert.org/expert/38088 -https://www.oceanexpert.org/expert/38089 -https://www.oceanexpert.org/expert/38090 -https://www.oceanexpert.org/expert/38091 -https://www.oceanexpert.org/expert/38092 -https://www.oceanexpert.org/expert/38094 -https://www.oceanexpert.org/expert/38095 -https://www.oceanexpert.org/expert/38096 -https://www.oceanexpert.org/expert/38098 -https://www.oceanexpert.org/expert/38101 -https://www.oceanexpert.org/expert/38104 -https://www.oceanexpert.org/expert/38105 -https://www.oceanexpert.org/expert/38106 -https://www.oceanexpert.org/expert/38108 -https://www.oceanexpert.org/expert/38110 -https://www.oceanexpert.org/expert/38111 -https://www.oceanexpert.org/expert/38112 -https://www.oceanexpert.org/expert/38114 -https://www.oceanexpert.org/expert/38115 -https://www.oceanexpert.org/expert/38116 -https://www.oceanexpert.org/expert/38118 -https://www.oceanexpert.org/expert/38119 -https://www.oceanexpert.org/expert/38121 -https://www.oceanexpert.org/expert/38123 -https://www.oceanexpert.org/expert/38125 -https://www.oceanexpert.org/expert/38126 -https://www.oceanexpert.org/expert/38128 -https://www.oceanexpert.org/expert/38130 -https://www.oceanexpert.org/expert/38133 -https://www.oceanexpert.org/expert/38136 -https://www.oceanexpert.org/expert/38137 -https://www.oceanexpert.org/expert/38138 -https://www.oceanexpert.org/expert/38139 -https://www.oceanexpert.org/expert/38142 -https://www.oceanexpert.org/expert/38149 -https://www.oceanexpert.org/expert/38150 -https://www.oceanexpert.org/expert/38152 -https://www.oceanexpert.org/expert/38153 -https://www.oceanexpert.org/expert/38154 -https://www.oceanexpert.org/expert/38156 -https://www.oceanexpert.org/expert/38158 -https://www.oceanexpert.org/expert/38160 -https://www.oceanexpert.org/expert/38162 -https://www.oceanexpert.org/expert/38164 -https://www.oceanexpert.org/expert/38165 -https://www.oceanexpert.org/expert/38167 -https://www.oceanexpert.org/expert/38169 -https://www.oceanexpert.org/expert/38171 -https://www.oceanexpert.org/expert/38172 -https://www.oceanexpert.org/expert/38173 -https://www.oceanexpert.org/expert/38174 -https://www.oceanexpert.org/expert/38175 -https://www.oceanexpert.org/expert/38176 -https://www.oceanexpert.org/expert/38177 -https://www.oceanexpert.org/expert/38178 -https://www.oceanexpert.org/expert/38180 -https://www.oceanexpert.org/expert/38181 -https://www.oceanexpert.org/expert/38182 -https://www.oceanexpert.org/expert/38183 -https://www.oceanexpert.org/expert/38184 -https://www.oceanexpert.org/expert/38186 -https://www.oceanexpert.org/expert/38189 -https://www.oceanexpert.org/expert/38190 -https://www.oceanexpert.org/expert/38191 -https://www.oceanexpert.org/expert/38193 -https://www.oceanexpert.org/expert/38195 -https://www.oceanexpert.org/expert/38196 -https://www.oceanexpert.org/expert/38197 -https://www.oceanexpert.org/expert/38199 -https://www.oceanexpert.org/expert/38200 -https://www.oceanexpert.org/expert/38204 -https://www.oceanexpert.org/expert/38205 -https://www.oceanexpert.org/expert/38207 -https://www.oceanexpert.org/expert/38208 -https://www.oceanexpert.org/expert/38212 -https://www.oceanexpert.org/expert/38213 -https://www.oceanexpert.org/expert/38216 -https://www.oceanexpert.org/expert/38217 -https://www.oceanexpert.org/expert/38218 -https://www.oceanexpert.org/expert/38219 -https://www.oceanexpert.org/expert/38220 -https://www.oceanexpert.org/expert/38221 -https://www.oceanexpert.org/expert/38222 -https://www.oceanexpert.org/expert/38226 -https://www.oceanexpert.org/expert/38227 -https://www.oceanexpert.org/expert/38228 -https://www.oceanexpert.org/expert/38229 -https://www.oceanexpert.org/expert/38231 -https://www.oceanexpert.org/expert/38233 -https://www.oceanexpert.org/expert/38234 -https://www.oceanexpert.org/expert/38235 -https://www.oceanexpert.org/expert/38236 -https://www.oceanexpert.org/expert/38237 -https://www.oceanexpert.org/expert/38239 -https://www.oceanexpert.org/expert/38240 -https://www.oceanexpert.org/expert/38241 -https://www.oceanexpert.org/expert/38243 -https://www.oceanexpert.org/expert/38247 -https://www.oceanexpert.org/expert/38248 -https://www.oceanexpert.org/expert/38252 -https://www.oceanexpert.org/expert/38254 -https://www.oceanexpert.org/expert/38257 -https://www.oceanexpert.org/expert/38260 -https://www.oceanexpert.org/expert/38261 -https://www.oceanexpert.org/expert/38264 -https://www.oceanexpert.org/expert/38265 -https://www.oceanexpert.org/expert/38266 -https://www.oceanexpert.org/expert/38267 -https://www.oceanexpert.org/expert/38268 -https://www.oceanexpert.org/expert/38269 -https://www.oceanexpert.org/expert/38270 -https://www.oceanexpert.org/expert/38271 -https://www.oceanexpert.org/expert/38273 -https://www.oceanexpert.org/expert/38274 -https://www.oceanexpert.org/expert/38279 -https://www.oceanexpert.org/expert/38281 -https://www.oceanexpert.org/expert/38282 -https://www.oceanexpert.org/expert/38283 -https://www.oceanexpert.org/expert/38285 -https://www.oceanexpert.org/expert/38286 -https://www.oceanexpert.org/expert/38287 -https://www.oceanexpert.org/expert/38288 -https://www.oceanexpert.org/expert/38290 -https://www.oceanexpert.org/expert/38291 -https://www.oceanexpert.org/expert/38292 -https://www.oceanexpert.org/expert/38295 -https://www.oceanexpert.org/expert/38299 -https://www.oceanexpert.org/expert/38301 -https://www.oceanexpert.org/expert/38302 -https://www.oceanexpert.org/expert/38305 -https://www.oceanexpert.org/expert/38306 -https://www.oceanexpert.org/expert/38307 -https://www.oceanexpert.org/expert/38310 -https://www.oceanexpert.org/expert/38312 -https://www.oceanexpert.org/expert/38315 -https://www.oceanexpert.org/expert/38322 -https://www.oceanexpert.org/expert/38323 -https://www.oceanexpert.org/expert/38324 -https://www.oceanexpert.org/expert/38325 -https://www.oceanexpert.org/expert/38328 -https://www.oceanexpert.org/expert/38331 -https://www.oceanexpert.org/expert/38332 -https://www.oceanexpert.org/expert/38334 -https://www.oceanexpert.org/expert/38337 -https://www.oceanexpert.org/expert/38340 -https://www.oceanexpert.org/expert/38343 -https://www.oceanexpert.org/expert/38344 -https://www.oceanexpert.org/expert/38345 -https://www.oceanexpert.org/expert/38346 -https://www.oceanexpert.org/expert/38352 -https://www.oceanexpert.org/expert/38353 -https://www.oceanexpert.org/expert/38354 -https://www.oceanexpert.org/expert/38355 -https://www.oceanexpert.org/expert/38357 -https://www.oceanexpert.org/expert/38358 -https://www.oceanexpert.org/expert/38360 -https://www.oceanexpert.org/expert/38362 -https://www.oceanexpert.org/expert/38364 -https://www.oceanexpert.org/expert/38367 -https://www.oceanexpert.org/expert/38369 -https://www.oceanexpert.org/expert/38370 -https://www.oceanexpert.org/expert/38371 -https://www.oceanexpert.org/expert/38372 -https://www.oceanexpert.org/expert/38374 -https://www.oceanexpert.org/expert/38375 -https://www.oceanexpert.org/expert/38377 -https://www.oceanexpert.org/expert/38379 -https://www.oceanexpert.org/expert/38380 -https://www.oceanexpert.org/expert/38381 -https://www.oceanexpert.org/expert/38382 -https://www.oceanexpert.org/expert/38387 -https://www.oceanexpert.org/expert/38388 -https://www.oceanexpert.org/expert/38389 -https://www.oceanexpert.org/expert/38390 -https://www.oceanexpert.org/expert/38393 -https://www.oceanexpert.org/expert/38397 -https://www.oceanexpert.org/expert/38399 -https://www.oceanexpert.org/expert/38400 -https://www.oceanexpert.org/expert/38401 -https://www.oceanexpert.org/expert/38402 -https://www.oceanexpert.org/expert/38404 -https://www.oceanexpert.org/expert/38406 -https://www.oceanexpert.org/expert/38407 -https://www.oceanexpert.org/expert/38413 -https://www.oceanexpert.org/expert/38416 -https://www.oceanexpert.org/expert/38419 -https://www.oceanexpert.org/expert/38420 -https://www.oceanexpert.org/expert/38422 -https://www.oceanexpert.org/expert/38430 -https://www.oceanexpert.org/expert/38433 -https://www.oceanexpert.org/expert/38434 -https://www.oceanexpert.org/expert/38435 -https://www.oceanexpert.org/expert/38440 -https://www.oceanexpert.org/expert/38442 -https://www.oceanexpert.org/expert/38443 -https://www.oceanexpert.org/expert/38447 -https://www.oceanexpert.org/expert/38448 -https://www.oceanexpert.org/expert/38449 -https://www.oceanexpert.org/expert/38451 -https://www.oceanexpert.org/expert/38456 -https://www.oceanexpert.org/expert/38457 -https://www.oceanexpert.org/expert/38458 -https://www.oceanexpert.org/expert/38460 -https://www.oceanexpert.org/expert/38461 -https://www.oceanexpert.org/expert/38464 -https://www.oceanexpert.org/expert/38465 -https://www.oceanexpert.org/expert/38468 -https://www.oceanexpert.org/expert/38470 -https://www.oceanexpert.org/expert/38473 -https://www.oceanexpert.org/expert/38474 -https://www.oceanexpert.org/expert/38475 -https://www.oceanexpert.org/expert/38476 -https://www.oceanexpert.org/expert/38477 -https://www.oceanexpert.org/expert/38479 -https://www.oceanexpert.org/expert/38480 -https://www.oceanexpert.org/expert/38482 -https://www.oceanexpert.org/expert/38483 -https://www.oceanexpert.org/expert/38487 -https://www.oceanexpert.org/expert/38489 -https://www.oceanexpert.org/expert/38490 -https://www.oceanexpert.org/expert/38491 -https://www.oceanexpert.org/expert/38492 -https://www.oceanexpert.org/expert/38494 -https://www.oceanexpert.org/expert/38496 -https://www.oceanexpert.org/expert/38498 -https://www.oceanexpert.org/expert/38499 -https://www.oceanexpert.org/expert/38500 -https://www.oceanexpert.org/expert/38501 -https://www.oceanexpert.org/expert/38504 -https://www.oceanexpert.org/expert/38517 -https://www.oceanexpert.org/expert/38518 -https://www.oceanexpert.org/expert/38520 -https://www.oceanexpert.org/expert/38523 -https://www.oceanexpert.org/expert/38525 -https://www.oceanexpert.org/expert/38526 -https://www.oceanexpert.org/expert/38528 -https://www.oceanexpert.org/expert/38532 -https://www.oceanexpert.org/expert/38536 -https://www.oceanexpert.org/expert/38537 -https://www.oceanexpert.org/expert/38540 -https://www.oceanexpert.org/expert/38546 -https://www.oceanexpert.org/expert/38547 -https://www.oceanexpert.org/expert/38555 -https://www.oceanexpert.org/expert/38557 -https://www.oceanexpert.org/expert/38558 -https://www.oceanexpert.org/expert/38561 -https://www.oceanexpert.org/expert/38563 -https://www.oceanexpert.org/expert/38565 -https://www.oceanexpert.org/expert/38569 -https://www.oceanexpert.org/expert/38579 -https://www.oceanexpert.org/expert/38580 -https://www.oceanexpert.org/expert/38587 -https://www.oceanexpert.org/expert/38588 -https://www.oceanexpert.org/expert/38593 -https://www.oceanexpert.org/expert/38604 -https://www.oceanexpert.org/expert/38605 -https://www.oceanexpert.org/expert/38606 -https://www.oceanexpert.org/expert/38608 -https://www.oceanexpert.org/expert/38609 -https://www.oceanexpert.org/expert/38611 -https://www.oceanexpert.org/expert/38616 -https://www.oceanexpert.org/expert/38619 -https://www.oceanexpert.org/expert/38624 -https://www.oceanexpert.org/expert/38625 -https://www.oceanexpert.org/expert/38626 -https://www.oceanexpert.org/expert/38627 -https://www.oceanexpert.org/expert/38629 -https://www.oceanexpert.org/expert/38630 -https://www.oceanexpert.org/expert/38631 -https://www.oceanexpert.org/expert/38635 -https://www.oceanexpert.org/expert/38641 -https://www.oceanexpert.org/expert/38650 -https://www.oceanexpert.org/expert/38651 -https://www.oceanexpert.org/expert/38652 -https://www.oceanexpert.org/expert/38653 -https://www.oceanexpert.org/expert/38654 -https://www.oceanexpert.org/expert/38655 -https://www.oceanexpert.org/expert/38660 -https://www.oceanexpert.org/expert/38667 -https://www.oceanexpert.org/expert/38678 -https://www.oceanexpert.org/expert/38684 -https://www.oceanexpert.org/expert/38692 -https://www.oceanexpert.org/expert/38695 -https://www.oceanexpert.org/expert/38703 -https://www.oceanexpert.org/expert/38713 -https://www.oceanexpert.org/expert/38716 -https://www.oceanexpert.org/expert/38717 -https://www.oceanexpert.org/expert/38719 -https://www.oceanexpert.org/expert/38725 -https://www.oceanexpert.org/expert/38726 -https://www.oceanexpert.org/expert/38728 -https://www.oceanexpert.org/expert/38751 -https://www.oceanexpert.org/expert/38752 -https://www.oceanexpert.org/expert/38757 -https://www.oceanexpert.org/expert/38766 -https://www.oceanexpert.org/expert/38771 -https://www.oceanexpert.org/expert/38778 -https://www.oceanexpert.org/expert/38779 -https://www.oceanexpert.org/expert/38782 -https://www.oceanexpert.org/expert/38783 -https://www.oceanexpert.org/expert/38784 -https://www.oceanexpert.org/expert/38788 -https://www.oceanexpert.org/expert/38808 -https://www.oceanexpert.org/expert/38809 -https://www.oceanexpert.org/expert/38821 -https://www.oceanexpert.org/expert/38826 -https://www.oceanexpert.org/expert/38829 -https://www.oceanexpert.org/expert/38834 -https://www.oceanexpert.org/expert/38845 -https://www.oceanexpert.org/expert/38847 -https://www.oceanexpert.org/expert/38851 -https://www.oceanexpert.org/expert/38852 -https://www.oceanexpert.org/expert/38853 -https://www.oceanexpert.org/expert/38858 -https://www.oceanexpert.org/expert/38864 -https://www.oceanexpert.org/expert/38865 -https://www.oceanexpert.org/expert/38872 -https://www.oceanexpert.org/expert/38873 -https://www.oceanexpert.org/expert/38879 -https://www.oceanexpert.org/expert/38880 -https://www.oceanexpert.org/expert/38881 -https://www.oceanexpert.org/expert/38882 -https://www.oceanexpert.org/expert/38883 -https://www.oceanexpert.org/expert/38884 -https://www.oceanexpert.org/expert/38885 -https://www.oceanexpert.org/expert/38892 -https://www.oceanexpert.org/expert/38893 -https://www.oceanexpert.org/expert/38898 -https://www.oceanexpert.org/expert/38899 -https://www.oceanexpert.org/expert/38900 -https://www.oceanexpert.org/expert/38901 -https://www.oceanexpert.org/expert/38902 -https://www.oceanexpert.org/expert/38903 -https://www.oceanexpert.org/expert/38904 -https://www.oceanexpert.org/expert/38905 -https://www.oceanexpert.org/expert/38906 -https://www.oceanexpert.org/expert/38908 -https://www.oceanexpert.org/expert/38909 -https://www.oceanexpert.org/expert/38910 -https://www.oceanexpert.org/expert/38911 -https://www.oceanexpert.org/expert/38912 -https://www.oceanexpert.org/expert/38913 -https://www.oceanexpert.org/expert/38914 -https://www.oceanexpert.org/expert/38915 -https://www.oceanexpert.org/expert/38916 -https://www.oceanexpert.org/expert/38917 -https://www.oceanexpert.org/expert/38919 -https://www.oceanexpert.org/expert/38920 -https://www.oceanexpert.org/expert/38925 -https://www.oceanexpert.org/expert/38929 -https://www.oceanexpert.org/expert/38930 -https://www.oceanexpert.org/expert/38932 -https://www.oceanexpert.org/expert/38933 -https://www.oceanexpert.org/expert/38934 -https://www.oceanexpert.org/expert/38935 -https://www.oceanexpert.org/expert/38938 -https://www.oceanexpert.org/expert/38939 -https://www.oceanexpert.org/expert/38943 -https://www.oceanexpert.org/expert/38947 -https://www.oceanexpert.org/expert/38954 -https://www.oceanexpert.org/expert/38957 -https://www.oceanexpert.org/expert/38966 -https://www.oceanexpert.org/expert/38973 -https://www.oceanexpert.org/expert/38974 -https://www.oceanexpert.org/expert/38982 -https://www.oceanexpert.org/expert/38983 -https://www.oceanexpert.org/expert/38984 -https://www.oceanexpert.org/expert/38985 -https://www.oceanexpert.org/expert/38986 -https://www.oceanexpert.org/expert/39002 -https://www.oceanexpert.org/expert/39004 -https://www.oceanexpert.org/expert/39006 -https://www.oceanexpert.org/expert/39008 -https://www.oceanexpert.org/expert/39010 -https://www.oceanexpert.org/expert/39021 -https://www.oceanexpert.org/expert/39029 -https://www.oceanexpert.org/expert/39032 -https://www.oceanexpert.org/expert/39033 -https://www.oceanexpert.org/expert/39034 -https://www.oceanexpert.org/expert/39035 -https://www.oceanexpert.org/expert/39043 -https://www.oceanexpert.org/expert/39045 -https://www.oceanexpert.org/expert/39046 -https://www.oceanexpert.org/expert/39050 -https://www.oceanexpert.org/expert/39054 -https://www.oceanexpert.org/expert/39055 -https://www.oceanexpert.org/expert/39056 -https://www.oceanexpert.org/expert/39059 -https://www.oceanexpert.org/expert/39069 -https://www.oceanexpert.org/expert/39070 -https://www.oceanexpert.org/expert/39078 -https://www.oceanexpert.org/expert/39079 -https://www.oceanexpert.org/expert/39087 -https://www.oceanexpert.org/expert/39092 -https://www.oceanexpert.org/expert/39093 -https://www.oceanexpert.org/expert/39097 -https://www.oceanexpert.org/expert/39119 -https://www.oceanexpert.org/expert/39130 -https://www.oceanexpert.org/expert/39131 -https://www.oceanexpert.org/expert/39132 -https://www.oceanexpert.org/expert/39134 -https://www.oceanexpert.org/expert/39135 -https://www.oceanexpert.org/expert/39137 -https://www.oceanexpert.org/expert/39153 -https://www.oceanexpert.org/expert/39154 -https://www.oceanexpert.org/expert/39155 -https://www.oceanexpert.org/expert/39156 -https://www.oceanexpert.org/expert/39157 -https://www.oceanexpert.org/expert/39158 -https://www.oceanexpert.org/expert/39162 -https://www.oceanexpert.org/expert/39163 -https://www.oceanexpert.org/expert/39164 -https://www.oceanexpert.org/expert/39166 -https://www.oceanexpert.org/expert/39167 -https://www.oceanexpert.org/expert/39168 -https://www.oceanexpert.org/expert/39169 -https://www.oceanexpert.org/expert/39170 -https://www.oceanexpert.org/expert/39171 -https://www.oceanexpert.org/expert/39173 -https://www.oceanexpert.org/expert/39176 -https://www.oceanexpert.org/expert/39177 -https://www.oceanexpert.org/expert/39178 -https://www.oceanexpert.org/expert/39179 -https://www.oceanexpert.org/expert/39186 -https://www.oceanexpert.org/expert/39193 -https://www.oceanexpert.org/expert/39198 -https://www.oceanexpert.org/expert/39201 -https://www.oceanexpert.org/expert/39204 -https://www.oceanexpert.org/expert/39209 -https://www.oceanexpert.org/expert/39214 -https://www.oceanexpert.org/expert/39217 -https://www.oceanexpert.org/expert/39224 -https://www.oceanexpert.org/expert/39225 -https://www.oceanexpert.org/expert/39226 -https://www.oceanexpert.org/expert/39227 -https://www.oceanexpert.org/expert/39229 -https://www.oceanexpert.org/expert/39230 -https://www.oceanexpert.org/expert/39231 -https://www.oceanexpert.org/expert/39234 -https://www.oceanexpert.org/expert/39235 -https://www.oceanexpert.org/expert/39237 -https://www.oceanexpert.org/expert/39239 -https://www.oceanexpert.org/expert/39242 -https://www.oceanexpert.org/expert/39243 -https://www.oceanexpert.org/expert/39245 -https://www.oceanexpert.org/expert/39251 -https://www.oceanexpert.org/expert/39252 -https://www.oceanexpert.org/expert/39255 -https://www.oceanexpert.org/expert/39257 -https://www.oceanexpert.org/expert/39258 -https://www.oceanexpert.org/expert/39260 -https://www.oceanexpert.org/expert/39261 -https://www.oceanexpert.org/expert/39265 -https://www.oceanexpert.org/expert/39266 -https://www.oceanexpert.org/expert/39267 -https://www.oceanexpert.org/expert/39268 -https://www.oceanexpert.org/expert/39270 -https://www.oceanexpert.org/expert/39271 -https://www.oceanexpert.org/expert/39274 -https://www.oceanexpert.org/expert/39276 -https://www.oceanexpert.org/expert/39278 -https://www.oceanexpert.org/expert/39280 -https://www.oceanexpert.org/expert/39281 -https://www.oceanexpert.org/expert/39282 -https://www.oceanexpert.org/expert/39284 -https://www.oceanexpert.org/expert/39285 -https://www.oceanexpert.org/expert/39287 -https://www.oceanexpert.org/expert/39288 -https://www.oceanexpert.org/expert/39290 -https://www.oceanexpert.org/expert/39292 -https://www.oceanexpert.org/expert/39293 -https://www.oceanexpert.org/expert/39295 -https://www.oceanexpert.org/expert/39298 -https://www.oceanexpert.org/expert/39299 -https://www.oceanexpert.org/expert/39300 -https://www.oceanexpert.org/expert/39304 -https://www.oceanexpert.org/expert/39308 -https://www.oceanexpert.org/expert/39313 -https://www.oceanexpert.org/expert/39314 -https://www.oceanexpert.org/expert/39316 -https://www.oceanexpert.org/expert/39318 -https://www.oceanexpert.org/expert/39320 -https://www.oceanexpert.org/expert/39322 -https://www.oceanexpert.org/expert/39326 -https://www.oceanexpert.org/expert/39327 -https://www.oceanexpert.org/expert/39328 -https://www.oceanexpert.org/expert/39329 -https://www.oceanexpert.org/expert/39331 -https://www.oceanexpert.org/expert/39335 -https://www.oceanexpert.org/expert/39337 -https://www.oceanexpert.org/expert/39338 -https://www.oceanexpert.org/expert/39340 -https://www.oceanexpert.org/expert/39341 -https://www.oceanexpert.org/expert/39344 -https://www.oceanexpert.org/expert/39345 -https://www.oceanexpert.org/expert/39346 -https://www.oceanexpert.org/expert/39347 -https://www.oceanexpert.org/expert/39350 -https://www.oceanexpert.org/expert/39351 -https://www.oceanexpert.org/expert/39352 -https://www.oceanexpert.org/expert/39362 -https://www.oceanexpert.org/expert/39367 -https://www.oceanexpert.org/expert/39368 -https://www.oceanexpert.org/expert/39369 -https://www.oceanexpert.org/expert/39371 -https://www.oceanexpert.org/expert/39372 -https://www.oceanexpert.org/expert/39383 -https://www.oceanexpert.org/expert/39388 -https://www.oceanexpert.org/expert/39392 -https://www.oceanexpert.org/expert/39393 -https://www.oceanexpert.org/expert/39395 -https://www.oceanexpert.org/expert/39396 -https://www.oceanexpert.org/expert/39407 -https://www.oceanexpert.org/expert/39408 -https://www.oceanexpert.org/expert/39411 -https://www.oceanexpert.org/expert/39415 -https://www.oceanexpert.org/expert/39419 -https://www.oceanexpert.org/expert/39420 -https://www.oceanexpert.org/expert/39421 -https://www.oceanexpert.org/expert/39435 -https://www.oceanexpert.org/expert/39442 -https://www.oceanexpert.org/expert/39443 -https://www.oceanexpert.org/expert/39444 -https://www.oceanexpert.org/expert/39446 -https://www.oceanexpert.org/expert/39453 -https://www.oceanexpert.org/expert/39455 -https://www.oceanexpert.org/expert/39460 -https://www.oceanexpert.org/expert/39465 -https://www.oceanexpert.org/expert/39469 -https://www.oceanexpert.org/expert/39470 -https://www.oceanexpert.org/expert/39472 -https://www.oceanexpert.org/expert/39474 -https://www.oceanexpert.org/expert/39475 -https://www.oceanexpert.org/expert/39476 -https://www.oceanexpert.org/expert/39477 -https://www.oceanexpert.org/expert/39478 -https://www.oceanexpert.org/expert/39479 -https://www.oceanexpert.org/expert/39482 -https://www.oceanexpert.org/expert/39491 -https://www.oceanexpert.org/expert/39498 -https://www.oceanexpert.org/expert/39507 -https://www.oceanexpert.org/expert/39518 -https://www.oceanexpert.org/expert/39519 -https://www.oceanexpert.org/expert/39520 -https://www.oceanexpert.org/expert/39521 -https://www.oceanexpert.org/expert/39532 -https://www.oceanexpert.org/expert/39538 -https://www.oceanexpert.org/expert/39545 -https://www.oceanexpert.org/expert/39549 -https://www.oceanexpert.org/expert/39551 -https://www.oceanexpert.org/expert/39555 -https://www.oceanexpert.org/expert/39561 -https://www.oceanexpert.org/expert/39562 -https://www.oceanexpert.org/expert/39565 -https://www.oceanexpert.org/expert/39566 -https://www.oceanexpert.org/expert/39567 -https://www.oceanexpert.org/expert/39569 -https://www.oceanexpert.org/expert/39577 -https://www.oceanexpert.org/expert/39578 -https://www.oceanexpert.org/expert/39579 -https://www.oceanexpert.org/expert/39583 -https://www.oceanexpert.org/expert/39587 -https://www.oceanexpert.org/expert/39596 -https://www.oceanexpert.org/expert/39597 -https://www.oceanexpert.org/expert/39598 -https://www.oceanexpert.org/expert/39605 -https://www.oceanexpert.org/expert/39606 -https://www.oceanexpert.org/expert/39607 -https://www.oceanexpert.org/expert/39610 -https://www.oceanexpert.org/expert/39613 -https://www.oceanexpert.org/expert/39615 -https://www.oceanexpert.org/expert/39618 -https://www.oceanexpert.org/expert/39619 -https://www.oceanexpert.org/expert/39620 -https://www.oceanexpert.org/expert/39621 -https://www.oceanexpert.org/expert/39632 -https://www.oceanexpert.org/expert/39633 -https://www.oceanexpert.org/expert/39635 -https://www.oceanexpert.org/expert/39638 -https://www.oceanexpert.org/expert/39640 -https://www.oceanexpert.org/expert/39646 -https://www.oceanexpert.org/expert/39651 -https://www.oceanexpert.org/expert/39652 -https://www.oceanexpert.org/expert/39654 -https://www.oceanexpert.org/expert/39655 -https://www.oceanexpert.org/expert/39666 -https://www.oceanexpert.org/expert/39668 -https://www.oceanexpert.org/expert/39670 -https://www.oceanexpert.org/expert/39672 -https://www.oceanexpert.org/expert/39719 -https://www.oceanexpert.org/expert/39720 -https://www.oceanexpert.org/expert/39721 -https://www.oceanexpert.org/expert/39730 -https://www.oceanexpert.org/expert/39741 -https://www.oceanexpert.org/expert/39743 -https://www.oceanexpert.org/expert/39753 -https://www.oceanexpert.org/expert/39773 -https://www.oceanexpert.org/expert/39774 -https://www.oceanexpert.org/expert/39776 -https://www.oceanexpert.org/expert/39791 -https://www.oceanexpert.org/expert/39802 -https://www.oceanexpert.org/expert/39803 -https://www.oceanexpert.org/expert/39804 -https://www.oceanexpert.org/expert/39807 -https://www.oceanexpert.org/expert/39820 -https://www.oceanexpert.org/expert/39821 -https://www.oceanexpert.org/expert/39824 -https://www.oceanexpert.org/expert/39826 -https://www.oceanexpert.org/expert/39827 -https://www.oceanexpert.org/expert/39828 -https://www.oceanexpert.org/expert/39830 -https://www.oceanexpert.org/expert/39835 -https://www.oceanexpert.org/expert/39841 -https://www.oceanexpert.org/expert/39842 -https://www.oceanexpert.org/expert/39844 -https://www.oceanexpert.org/expert/39857 -https://www.oceanexpert.org/expert/39858 -https://www.oceanexpert.org/expert/39860 -https://www.oceanexpert.org/expert/39861 -https://www.oceanexpert.org/expert/39862 -https://www.oceanexpert.org/expert/39863 -https://www.oceanexpert.org/expert/39868 -https://www.oceanexpert.org/expert/39883 -https://www.oceanexpert.org/expert/39884 -https://www.oceanexpert.org/expert/39889 -https://www.oceanexpert.org/expert/39907 -https://www.oceanexpert.org/expert/39918 -https://www.oceanexpert.org/expert/39919 -https://www.oceanexpert.org/expert/39928 -https://www.oceanexpert.org/expert/39937 -https://www.oceanexpert.org/expert/39940 -https://www.oceanexpert.org/expert/39942 -https://www.oceanexpert.org/expert/39952 -https://www.oceanexpert.org/expert/39958 -https://www.oceanexpert.org/expert/39959 -https://www.oceanexpert.org/expert/39960 -https://www.oceanexpert.org/expert/39964 -https://www.oceanexpert.org/expert/39965 -https://www.oceanexpert.org/expert/39968 -https://www.oceanexpert.org/expert/39969 -https://www.oceanexpert.org/expert/39972 -https://www.oceanexpert.org/expert/39974 -https://www.oceanexpert.org/expert/39975 -https://www.oceanexpert.org/expert/39976 -https://www.oceanexpert.org/expert/39977 -https://www.oceanexpert.org/expert/39978 -https://www.oceanexpert.org/expert/39979 -https://www.oceanexpert.org/expert/39980 -https://www.oceanexpert.org/expert/39981 -https://www.oceanexpert.org/expert/39982 -https://www.oceanexpert.org/expert/39985 -https://www.oceanexpert.org/expert/39994 -https://www.oceanexpert.org/expert/39997 -https://www.oceanexpert.org/expert/39998 -https://www.oceanexpert.org/expert/39999 -https://www.oceanexpert.org/expert/40000 -https://www.oceanexpert.org/expert/40002 -https://www.oceanexpert.org/expert/40004 -https://www.oceanexpert.org/expert/40006 -https://www.oceanexpert.org/expert/40015 -https://www.oceanexpert.org/expert/40017 -https://www.oceanexpert.org/expert/40019 -https://www.oceanexpert.org/expert/40022 -https://www.oceanexpert.org/expert/40024 -https://www.oceanexpert.org/expert/40030 -https://www.oceanexpert.org/expert/40032 -https://www.oceanexpert.org/expert/40035 -https://www.oceanexpert.org/expert/40037 -https://www.oceanexpert.org/expert/40038 -https://www.oceanexpert.org/expert/40043 -https://www.oceanexpert.org/expert/40045 -https://www.oceanexpert.org/expert/40048 -https://www.oceanexpert.org/expert/40050 -https://www.oceanexpert.org/expert/40055 -https://www.oceanexpert.org/expert/40056 -https://www.oceanexpert.org/expert/40057 -https://www.oceanexpert.org/expert/40058 -https://www.oceanexpert.org/expert/40059 -https://www.oceanexpert.org/expert/40066 -https://www.oceanexpert.org/expert/40068 -https://www.oceanexpert.org/expert/40069 -https://www.oceanexpert.org/expert/40070 -https://www.oceanexpert.org/expert/40072 -https://www.oceanexpert.org/expert/40074 -https://www.oceanexpert.org/expert/40079 -https://www.oceanexpert.org/expert/40080 -https://www.oceanexpert.org/expert/40085 -https://www.oceanexpert.org/expert/40088 -https://www.oceanexpert.org/expert/40089 -https://www.oceanexpert.org/expert/40090 -https://www.oceanexpert.org/expert/40092 -https://www.oceanexpert.org/expert/40093 -https://www.oceanexpert.org/expert/40100 -https://www.oceanexpert.org/expert/40105 -https://www.oceanexpert.org/expert/40107 -https://www.oceanexpert.org/expert/40108 -https://www.oceanexpert.org/expert/40112 -https://www.oceanexpert.org/expert/40114 -https://www.oceanexpert.org/expert/40117 -https://www.oceanexpert.org/expert/40118 -https://www.oceanexpert.org/expert/40119 -https://www.oceanexpert.org/expert/40120 -https://www.oceanexpert.org/expert/40121 -https://www.oceanexpert.org/expert/40122 -https://www.oceanexpert.org/expert/40123 -https://www.oceanexpert.org/expert/40124 -https://www.oceanexpert.org/expert/40130 -https://www.oceanexpert.org/expert/40133 -https://www.oceanexpert.org/expert/40134 -https://www.oceanexpert.org/expert/40160 -https://www.oceanexpert.org/expert/40165 -https://www.oceanexpert.org/expert/40177 -https://www.oceanexpert.org/expert/40204 -https://www.oceanexpert.org/expert/40218 -https://www.oceanexpert.org/expert/40242 -https://www.oceanexpert.org/expert/40250 -https://www.oceanexpert.org/expert/40256 -https://www.oceanexpert.org/expert/40257 -https://www.oceanexpert.org/expert/40258 -https://www.oceanexpert.org/expert/40260 -https://www.oceanexpert.org/expert/40262 -https://www.oceanexpert.org/expert/40266 -https://www.oceanexpert.org/expert/40267 -https://www.oceanexpert.org/expert/40271 -https://www.oceanexpert.org/expert/40273 -https://www.oceanexpert.org/expert/40276 -https://www.oceanexpert.org/expert/40277 -https://www.oceanexpert.org/expert/40280 -https://www.oceanexpert.org/expert/40282 -https://www.oceanexpert.org/expert/40284 -https://www.oceanexpert.org/expert/40285 -https://www.oceanexpert.org/expert/40287 -https://www.oceanexpert.org/expert/40288 -https://www.oceanexpert.org/expert/40289 -https://www.oceanexpert.org/expert/40291 -https://www.oceanexpert.org/expert/40292 -https://www.oceanexpert.org/expert/40294 -https://www.oceanexpert.org/expert/40295 -https://www.oceanexpert.org/expert/40297 -https://www.oceanexpert.org/expert/40298 -https://www.oceanexpert.org/expert/40299 -https://www.oceanexpert.org/expert/40300 -https://www.oceanexpert.org/expert/40305 -https://www.oceanexpert.org/expert/40307 -https://www.oceanexpert.org/expert/40308 -https://www.oceanexpert.org/expert/40311 -https://www.oceanexpert.org/expert/40312 -https://www.oceanexpert.org/expert/40314 -https://www.oceanexpert.org/expert/40315 -https://www.oceanexpert.org/expert/40321 -https://www.oceanexpert.org/expert/40326 -https://www.oceanexpert.org/expert/40329 -https://www.oceanexpert.org/expert/40330 -https://www.oceanexpert.org/expert/40333 -https://www.oceanexpert.org/expert/40336 -https://www.oceanexpert.org/expert/40337 -https://www.oceanexpert.org/expert/40338 -https://www.oceanexpert.org/expert/40339 -https://www.oceanexpert.org/expert/40340 -https://www.oceanexpert.org/expert/40348 -https://www.oceanexpert.org/expert/40350 -https://www.oceanexpert.org/expert/40351 -https://www.oceanexpert.org/expert/40352 -https://www.oceanexpert.org/expert/40353 -https://www.oceanexpert.org/expert/40357 -https://www.oceanexpert.org/expert/40359 -https://www.oceanexpert.org/expert/40362 -https://www.oceanexpert.org/expert/40363 -https://www.oceanexpert.org/expert/40367 -https://www.oceanexpert.org/expert/40368 -https://www.oceanexpert.org/expert/40369 -https://www.oceanexpert.org/expert/40373 -https://www.oceanexpert.org/expert/40379 -https://www.oceanexpert.org/expert/40396 -https://www.oceanexpert.org/expert/40407 -https://www.oceanexpert.org/expert/40480 -https://www.oceanexpert.org/expert/40482 -https://www.oceanexpert.org/expert/40514 -https://www.oceanexpert.org/expert/40517 -https://www.oceanexpert.org/expert/40524 -https://www.oceanexpert.org/expert/40525 -https://www.oceanexpert.org/expert/40528 -https://www.oceanexpert.org/expert/40529 -https://www.oceanexpert.org/expert/40530 -https://www.oceanexpert.org/expert/40534 -https://www.oceanexpert.org/expert/40535 -https://www.oceanexpert.org/expert/40536 -https://www.oceanexpert.org/expert/40537 -https://www.oceanexpert.org/expert/40538 -https://www.oceanexpert.org/expert/40544 -https://www.oceanexpert.org/expert/40551 -https://www.oceanexpert.org/expert/40552 -https://www.oceanexpert.org/expert/40553 -https://www.oceanexpert.org/expert/40555 -https://www.oceanexpert.org/expert/40556 -https://www.oceanexpert.org/expert/40557 -https://www.oceanexpert.org/expert/40560 -https://www.oceanexpert.org/expert/40561 -https://www.oceanexpert.org/expert/40563 -https://www.oceanexpert.org/expert/40564 -https://www.oceanexpert.org/expert/40566 -https://www.oceanexpert.org/expert/40570 -https://www.oceanexpert.org/expert/40571 -https://www.oceanexpert.org/expert/40572 -https://www.oceanexpert.org/expert/40573 -https://www.oceanexpert.org/expert/40574 -https://www.oceanexpert.org/expert/40576 -https://www.oceanexpert.org/expert/40577 -https://www.oceanexpert.org/expert/40581 -https://www.oceanexpert.org/expert/40582 -https://www.oceanexpert.org/expert/40583 -https://www.oceanexpert.org/expert/40584 -https://www.oceanexpert.org/expert/40585 -https://www.oceanexpert.org/expert/40587 -https://www.oceanexpert.org/expert/40588 -https://www.oceanexpert.org/expert/40589 -https://www.oceanexpert.org/expert/40592 -https://www.oceanexpert.org/expert/40595 -https://www.oceanexpert.org/expert/40597 -https://www.oceanexpert.org/expert/40598 -https://www.oceanexpert.org/expert/40599 -https://www.oceanexpert.org/expert/40602 -https://www.oceanexpert.org/expert/40604 -https://www.oceanexpert.org/expert/40605 -https://www.oceanexpert.org/expert/40607 -https://www.oceanexpert.org/expert/40608 -https://www.oceanexpert.org/expert/40609 -https://www.oceanexpert.org/expert/40611 -https://www.oceanexpert.org/expert/40613 -https://www.oceanexpert.org/expert/40615 -https://www.oceanexpert.org/expert/40620 -https://www.oceanexpert.org/expert/40621 -https://www.oceanexpert.org/expert/40622 -https://www.oceanexpert.org/expert/40623 -https://www.oceanexpert.org/expert/40624 -https://www.oceanexpert.org/expert/40625 -https://www.oceanexpert.org/expert/40629 -https://www.oceanexpert.org/expert/40630 -https://www.oceanexpert.org/expert/40631 -https://www.oceanexpert.org/expert/40636 -https://www.oceanexpert.org/expert/40641 -https://www.oceanexpert.org/expert/40642 -https://www.oceanexpert.org/expert/40643 -https://www.oceanexpert.org/expert/40644 -https://www.oceanexpert.org/expert/40645 -https://www.oceanexpert.org/expert/40649 -https://www.oceanexpert.org/expert/40653 -https://www.oceanexpert.org/expert/40655 -https://www.oceanexpert.org/expert/40656 -https://www.oceanexpert.org/expert/40657 -https://www.oceanexpert.org/expert/40659 -https://www.oceanexpert.org/expert/40661 -https://www.oceanexpert.org/expert/40662 -https://www.oceanexpert.org/expert/40664 -https://www.oceanexpert.org/expert/40666 -https://www.oceanexpert.org/expert/40667 -https://www.oceanexpert.org/expert/40670 -https://www.oceanexpert.org/expert/40672 -https://www.oceanexpert.org/expert/40674 -https://www.oceanexpert.org/expert/40675 -https://www.oceanexpert.org/expert/40678 -https://www.oceanexpert.org/expert/40707 -https://www.oceanexpert.org/expert/40758 -https://www.oceanexpert.org/expert/40813 -https://www.oceanexpert.org/expert/40852 -https://www.oceanexpert.org/expert/40866 -https://www.oceanexpert.org/expert/40868 -https://www.oceanexpert.org/expert/40871 -https://www.oceanexpert.org/expert/40874 -https://www.oceanexpert.org/expert/40882 -https://www.oceanexpert.org/expert/40883 -https://www.oceanexpert.org/expert/40884 -https://www.oceanexpert.org/expert/40885 -https://www.oceanexpert.org/expert/40886 -https://www.oceanexpert.org/expert/40887 -https://www.oceanexpert.org/expert/40891 -https://www.oceanexpert.org/expert/40892 -https://www.oceanexpert.org/expert/40897 -https://www.oceanexpert.org/expert/40898 -https://www.oceanexpert.org/expert/40901 -https://www.oceanexpert.org/expert/40903 -https://www.oceanexpert.org/expert/40923 -https://www.oceanexpert.org/expert/40924 -https://www.oceanexpert.org/expert/40928 -https://www.oceanexpert.org/expert/40977 -https://www.oceanexpert.org/expert/40981 -https://www.oceanexpert.org/expert/41035 -https://www.oceanexpert.org/expert/41037 -https://www.oceanexpert.org/expert/41038 -https://www.oceanexpert.org/expert/41041 -https://www.oceanexpert.org/expert/41045 -https://www.oceanexpert.org/expert/41047 -https://www.oceanexpert.org/expert/41053 -https://www.oceanexpert.org/expert/41066 -https://www.oceanexpert.org/expert/41079 -https://www.oceanexpert.org/expert/41098 -https://www.oceanexpert.org/expert/41100 -https://www.oceanexpert.org/expert/41105 -https://www.oceanexpert.org/expert/41153 -https://www.oceanexpert.org/expert/41227 -https://www.oceanexpert.org/expert/41237 -https://www.oceanexpert.org/expert/41239 -https://www.oceanexpert.org/expert/41259 -https://www.oceanexpert.org/expert/41272 -https://www.oceanexpert.org/expert/41274 -https://www.oceanexpert.org/expert/41292 -https://www.oceanexpert.org/expert/41318 -https://www.oceanexpert.org/expert/41325 -https://www.oceanexpert.org/expert/41394 -https://www.oceanexpert.org/expert/41407 -https://www.oceanexpert.org/expert/41409 -https://www.oceanexpert.org/expert/41410 -https://www.oceanexpert.org/expert/41412 -https://www.oceanexpert.org/expert/41415 -https://www.oceanexpert.org/expert/41423 -https://www.oceanexpert.org/expert/41424 -https://www.oceanexpert.org/expert/41425 -https://www.oceanexpert.org/expert/41430 -https://www.oceanexpert.org/expert/41443 -https://www.oceanexpert.org/expert/41458 -https://www.oceanexpert.org/expert/41483 -https://www.oceanexpert.org/expert/41505 -https://www.oceanexpert.org/expert/41547 -https://www.oceanexpert.org/expert/41570 -https://www.oceanexpert.org/expert/41577 -https://www.oceanexpert.org/expert/41604 -https://www.oceanexpert.org/expert/41609 -https://www.oceanexpert.org/expert/41610 -https://www.oceanexpert.org/expert/41611 -https://www.oceanexpert.org/expert/41630 -https://www.oceanexpert.org/expert/41647 -https://www.oceanexpert.org/expert/41652 -https://www.oceanexpert.org/expert/41672 -https://www.oceanexpert.org/expert/41674 -https://www.oceanexpert.org/expert/41678 -https://www.oceanexpert.org/expert/41683 -https://www.oceanexpert.org/expert/41686 -https://www.oceanexpert.org/expert/41731 -https://www.oceanexpert.org/expert/41819 -https://www.oceanexpert.org/expert/41834 -https://www.oceanexpert.org/expert/41909 -https://www.oceanexpert.org/expert/41911 -https://www.oceanexpert.org/expert/41913 -https://www.oceanexpert.org/expert/41915 -https://www.oceanexpert.org/expert/41921 -https://www.oceanexpert.org/expert/41924 -https://www.oceanexpert.org/expert/41933 -https://www.oceanexpert.org/expert/41970 -https://www.oceanexpert.org/expert/41980 -https://www.oceanexpert.org/expert/41992 -https://www.oceanexpert.org/expert/41993 -https://www.oceanexpert.org/expert/41999 -https://www.oceanexpert.org/expert/42000 -https://www.oceanexpert.org/expert/42003 -https://www.oceanexpert.org/expert/42010 -https://www.oceanexpert.org/expert/42021 -https://www.oceanexpert.org/expert/42048 -https://www.oceanexpert.org/expert/42054 -https://www.oceanexpert.org/expert/42060 -https://www.oceanexpert.org/expert/42069 -https://www.oceanexpert.org/expert/42070 -https://www.oceanexpert.org/expert/42080 -https://www.oceanexpert.org/expert/42084 -https://www.oceanexpert.org/expert/42096 -https://www.oceanexpert.org/expert/42102 -https://www.oceanexpert.org/expert/42116 -https://www.oceanexpert.org/expert/42118 -https://www.oceanexpert.org/expert/42137 -https://www.oceanexpert.org/expert/42146 -https://www.oceanexpert.org/expert/42147 -https://www.oceanexpert.org/expert/42149 -https://www.oceanexpert.org/expert/42150 -https://www.oceanexpert.org/expert/42151 -https://www.oceanexpert.org/expert/42152 -https://www.oceanexpert.org/expert/42154 -https://www.oceanexpert.org/expert/42157 -https://www.oceanexpert.org/expert/42163 -https://www.oceanexpert.org/expert/42173 -https://www.oceanexpert.org/expert/42192 -https://www.oceanexpert.org/expert/42208 -https://www.oceanexpert.org/expert/42217 -https://www.oceanexpert.org/expert/42262 -https://www.oceanexpert.org/expert/42304 -https://www.oceanexpert.org/expert/42353 -https://www.oceanexpert.org/expert/42361 -https://www.oceanexpert.org/expert/42371 -https://www.oceanexpert.org/expert/42384 -https://www.oceanexpert.org/expert/42385 -https://www.oceanexpert.org/expert/42386 -https://www.oceanexpert.org/expert/42398 -https://www.oceanexpert.org/expert/42399 -https://www.oceanexpert.org/expert/42401 -https://www.oceanexpert.org/expert/42402 -https://www.oceanexpert.org/expert/42404 -https://www.oceanexpert.org/expert/42405 -https://www.oceanexpert.org/expert/42406 -https://www.oceanexpert.org/expert/42409 -https://www.oceanexpert.org/expert/42411 -https://www.oceanexpert.org/expert/42412 -https://www.oceanexpert.org/expert/42413 -https://www.oceanexpert.org/expert/42414 -https://www.oceanexpert.org/expert/42415 -https://www.oceanexpert.org/expert/42420 -https://www.oceanexpert.org/expert/42421 -https://www.oceanexpert.org/expert/42422 -https://www.oceanexpert.org/expert/42423 -https://www.oceanexpert.org/expert/42424 -https://www.oceanexpert.org/expert/42425 -https://www.oceanexpert.org/expert/42426 -https://www.oceanexpert.org/expert/42427 -https://www.oceanexpert.org/expert/42429 -https://www.oceanexpert.org/expert/42436 -https://www.oceanexpert.org/expert/42438 -https://www.oceanexpert.org/expert/42443 -https://www.oceanexpert.org/expert/42444 -https://www.oceanexpert.org/expert/42446 -https://www.oceanexpert.org/expert/42448 -https://www.oceanexpert.org/expert/42449 -https://www.oceanexpert.org/expert/42450 -https://www.oceanexpert.org/expert/42451 -https://www.oceanexpert.org/expert/42452 -https://www.oceanexpert.org/expert/42453 -https://www.oceanexpert.org/expert/42454 -https://www.oceanexpert.org/expert/42455 -https://www.oceanexpert.org/expert/42456 -https://www.oceanexpert.org/expert/42457 -https://www.oceanexpert.org/expert/42459 -https://www.oceanexpert.org/expert/42461 -https://www.oceanexpert.org/expert/42463 -https://www.oceanexpert.org/expert/42464 -https://www.oceanexpert.org/expert/42465 -https://www.oceanexpert.org/expert/42468 -https://www.oceanexpert.org/expert/42469 -https://www.oceanexpert.org/expert/42472 -https://www.oceanexpert.org/expert/42473 -https://www.oceanexpert.org/expert/42474 -https://www.oceanexpert.org/expert/42476 -https://www.oceanexpert.org/expert/42479 -https://www.oceanexpert.org/expert/42481 -https://www.oceanexpert.org/expert/42483 -https://www.oceanexpert.org/expert/42484 -https://www.oceanexpert.org/expert/42485 -https://www.oceanexpert.org/expert/42486 -https://www.oceanexpert.org/expert/42488 -https://www.oceanexpert.org/expert/42489 -https://www.oceanexpert.org/expert/42492 -https://www.oceanexpert.org/expert/42493 -https://www.oceanexpert.org/expert/42494 -https://www.oceanexpert.org/expert/42495 -https://www.oceanexpert.org/expert/42496 -https://www.oceanexpert.org/expert/42497 -https://www.oceanexpert.org/expert/42500 -https://www.oceanexpert.org/expert/42501 -https://www.oceanexpert.org/expert/42502 -https://www.oceanexpert.org/expert/42503 -https://www.oceanexpert.org/expert/42504 -https://www.oceanexpert.org/expert/42505 -https://www.oceanexpert.org/expert/42506 -https://www.oceanexpert.org/expert/42509 -https://www.oceanexpert.org/expert/42511 -https://www.oceanexpert.org/expert/42512 -https://www.oceanexpert.org/expert/42514 -https://www.oceanexpert.org/expert/42515 -https://www.oceanexpert.org/expert/42517 -https://www.oceanexpert.org/expert/42520 -https://www.oceanexpert.org/expert/42522 -https://www.oceanexpert.org/expert/42525 -https://www.oceanexpert.org/expert/42526 -https://www.oceanexpert.org/expert/42528 -https://www.oceanexpert.org/expert/42530 -https://www.oceanexpert.org/expert/42533 -https://www.oceanexpert.org/expert/42534 -https://www.oceanexpert.org/expert/42535 -https://www.oceanexpert.org/expert/42536 -https://www.oceanexpert.org/expert/42537 -https://www.oceanexpert.org/expert/42538 -https://www.oceanexpert.org/expert/42541 -https://www.oceanexpert.org/expert/42545 -https://www.oceanexpert.org/expert/42546 -https://www.oceanexpert.org/expert/42548 -https://www.oceanexpert.org/expert/42549 -https://www.oceanexpert.org/expert/42550 -https://www.oceanexpert.org/expert/42552 -https://www.oceanexpert.org/expert/42553 -https://www.oceanexpert.org/expert/42554 -https://www.oceanexpert.org/expert/42556 -https://www.oceanexpert.org/expert/42557 -https://www.oceanexpert.org/expert/42559 -https://www.oceanexpert.org/expert/42560 -https://www.oceanexpert.org/expert/42561 -https://www.oceanexpert.org/expert/42562 -https://www.oceanexpert.org/expert/42563 -https://www.oceanexpert.org/expert/42566 -https://www.oceanexpert.org/expert/42568 -https://www.oceanexpert.org/expert/42569 -https://www.oceanexpert.org/expert/42571 -https://www.oceanexpert.org/expert/42574 -https://www.oceanexpert.org/expert/42575 -https://www.oceanexpert.org/expert/42576 -https://www.oceanexpert.org/expert/42577 -https://www.oceanexpert.org/expert/42579 -https://www.oceanexpert.org/expert/42580 -https://www.oceanexpert.org/expert/42581 -https://www.oceanexpert.org/expert/42582 -https://www.oceanexpert.org/expert/42583 -https://www.oceanexpert.org/expert/42585 -https://www.oceanexpert.org/expert/42586 -https://www.oceanexpert.org/expert/42588 -https://www.oceanexpert.org/expert/42589 -https://www.oceanexpert.org/expert/42593 -https://www.oceanexpert.org/expert/42594 -https://www.oceanexpert.org/expert/42597 -https://www.oceanexpert.org/expert/42603 -https://www.oceanexpert.org/expert/42605 -https://www.oceanexpert.org/expert/42606 -https://www.oceanexpert.org/expert/42607 -https://www.oceanexpert.org/expert/42609 -https://www.oceanexpert.org/expert/42610 -https://www.oceanexpert.org/expert/42612 -https://www.oceanexpert.org/expert/42614 -https://www.oceanexpert.org/expert/42617 -https://www.oceanexpert.org/expert/42618 -https://www.oceanexpert.org/expert/42619 -https://www.oceanexpert.org/expert/42620 -https://www.oceanexpert.org/expert/42621 -https://www.oceanexpert.org/expert/42622 -https://www.oceanexpert.org/expert/42623 -https://www.oceanexpert.org/expert/42625 -https://www.oceanexpert.org/expert/42626 -https://www.oceanexpert.org/expert/42628 -https://www.oceanexpert.org/expert/42630 -https://www.oceanexpert.org/expert/42631 -https://www.oceanexpert.org/expert/42633 -https://www.oceanexpert.org/expert/42634 -https://www.oceanexpert.org/expert/42635 -https://www.oceanexpert.org/expert/42636 -https://www.oceanexpert.org/expert/42637 -https://www.oceanexpert.org/expert/42638 -https://www.oceanexpert.org/expert/42639 -https://www.oceanexpert.org/expert/42640 -https://www.oceanexpert.org/expert/42641 -https://www.oceanexpert.org/expert/42642 -https://www.oceanexpert.org/expert/42643 -https://www.oceanexpert.org/expert/42644 -https://www.oceanexpert.org/expert/42646 -https://www.oceanexpert.org/expert/42647 -https://www.oceanexpert.org/expert/42649 -https://www.oceanexpert.org/expert/42650 -https://www.oceanexpert.org/expert/42651 -https://www.oceanexpert.org/expert/42654 -https://www.oceanexpert.org/expert/42655 -https://www.oceanexpert.org/expert/42656 -https://www.oceanexpert.org/expert/42657 -https://www.oceanexpert.org/expert/42658 -https://www.oceanexpert.org/expert/42660 -https://www.oceanexpert.org/expert/42663 -https://www.oceanexpert.org/expert/42664 -https://www.oceanexpert.org/expert/42668 -https://www.oceanexpert.org/expert/42669 -https://www.oceanexpert.org/expert/42670 -https://www.oceanexpert.org/expert/42671 -https://www.oceanexpert.org/expert/42672 -https://www.oceanexpert.org/expert/42673 -https://www.oceanexpert.org/expert/42674 -https://www.oceanexpert.org/expert/42679 -https://www.oceanexpert.org/expert/42680 -https://www.oceanexpert.org/expert/42684 -https://www.oceanexpert.org/expert/42686 -https://www.oceanexpert.org/expert/42689 -https://www.oceanexpert.org/expert/42690 -https://www.oceanexpert.org/expert/42692 -https://www.oceanexpert.org/expert/42693 -https://www.oceanexpert.org/expert/42696 -https://www.oceanexpert.org/expert/42697 -https://www.oceanexpert.org/expert/42698 -https://www.oceanexpert.org/expert/42699 -https://www.oceanexpert.org/expert/42701 -https://www.oceanexpert.org/expert/42702 -https://www.oceanexpert.org/expert/42703 -https://www.oceanexpert.org/expert/42706 -https://www.oceanexpert.org/expert/42709 -https://www.oceanexpert.org/expert/42711 -https://www.oceanexpert.org/expert/42716 -https://www.oceanexpert.org/expert/42717 -https://www.oceanexpert.org/expert/42719 -https://www.oceanexpert.org/expert/42722 -https://www.oceanexpert.org/expert/42725 -https://www.oceanexpert.org/expert/42731 -https://www.oceanexpert.org/expert/42735 -https://www.oceanexpert.org/expert/42738 -https://www.oceanexpert.org/expert/42743 -https://www.oceanexpert.org/expert/42746 -https://www.oceanexpert.org/expert/42749 -https://www.oceanexpert.org/expert/42750 -https://www.oceanexpert.org/expert/42751 -https://www.oceanexpert.org/expert/42752 -https://www.oceanexpert.org/expert/42753 -https://www.oceanexpert.org/expert/42754 -https://www.oceanexpert.org/expert/42756 -https://www.oceanexpert.org/expert/42758 -https://www.oceanexpert.org/expert/42759 -https://www.oceanexpert.org/expert/42762 -https://www.oceanexpert.org/expert/42763 -https://www.oceanexpert.org/expert/42765 -https://www.oceanexpert.org/expert/42769 -https://www.oceanexpert.org/expert/42771 -https://www.oceanexpert.org/expert/42772 -https://www.oceanexpert.org/expert/42773 -https://www.oceanexpert.org/expert/42775 -https://www.oceanexpert.org/expert/42776 -https://www.oceanexpert.org/expert/42777 -https://www.oceanexpert.org/expert/42780 -https://www.oceanexpert.org/expert/42781 -https://www.oceanexpert.org/expert/42782 -https://www.oceanexpert.org/expert/42783 -https://www.oceanexpert.org/expert/42784 -https://www.oceanexpert.org/expert/42785 -https://www.oceanexpert.org/expert/42786 -https://www.oceanexpert.org/expert/42787 -https://www.oceanexpert.org/expert/42788 -https://www.oceanexpert.org/expert/42789 -https://www.oceanexpert.org/expert/42792 -https://www.oceanexpert.org/expert/42794 -https://www.oceanexpert.org/expert/42795 -https://www.oceanexpert.org/expert/42798 -https://www.oceanexpert.org/expert/42799 -https://www.oceanexpert.org/expert/42801 -https://www.oceanexpert.org/expert/42802 -https://www.oceanexpert.org/expert/42804 -https://www.oceanexpert.org/expert/42805 -https://www.oceanexpert.org/expert/42806 -https://www.oceanexpert.org/expert/42808 -https://www.oceanexpert.org/expert/42809 -https://www.oceanexpert.org/expert/42810 -https://www.oceanexpert.org/expert/42811 -https://www.oceanexpert.org/expert/42813 -https://www.oceanexpert.org/expert/42815 -https://www.oceanexpert.org/expert/42816 -https://www.oceanexpert.org/expert/42819 -https://www.oceanexpert.org/expert/42820 -https://www.oceanexpert.org/expert/42821 -https://www.oceanexpert.org/expert/42823 -https://www.oceanexpert.org/expert/42824 -https://www.oceanexpert.org/expert/42827 -https://www.oceanexpert.org/expert/42828 -https://www.oceanexpert.org/expert/42830 -https://www.oceanexpert.org/expert/42831 -https://www.oceanexpert.org/expert/42832 -https://www.oceanexpert.org/expert/42833 -https://www.oceanexpert.org/expert/42834 -https://www.oceanexpert.org/expert/42835 -https://www.oceanexpert.org/expert/42836 -https://www.oceanexpert.org/expert/42838 -https://www.oceanexpert.org/expert/42839 -https://www.oceanexpert.org/expert/42840 -https://www.oceanexpert.org/expert/42843 -https://www.oceanexpert.org/expert/42845 -https://www.oceanexpert.org/expert/42846 -https://www.oceanexpert.org/expert/42850 -https://www.oceanexpert.org/expert/42852 -https://www.oceanexpert.org/expert/42856 -https://www.oceanexpert.org/expert/42858 -https://www.oceanexpert.org/expert/42859 -https://www.oceanexpert.org/expert/42863 -https://www.oceanexpert.org/expert/42864 -https://www.oceanexpert.org/expert/42865 -https://www.oceanexpert.org/expert/42866 -https://www.oceanexpert.org/expert/42868 -https://www.oceanexpert.org/expert/42869 -https://www.oceanexpert.org/expert/42872 -https://www.oceanexpert.org/expert/42873 -https://www.oceanexpert.org/expert/42874 -https://www.oceanexpert.org/expert/42875 -https://www.oceanexpert.org/expert/42877 -https://www.oceanexpert.org/expert/42879 -https://www.oceanexpert.org/expert/42880 -https://www.oceanexpert.org/expert/42881 -https://www.oceanexpert.org/expert/42882 -https://www.oceanexpert.org/expert/42883 -https://www.oceanexpert.org/expert/42884 -https://www.oceanexpert.org/expert/42885 -https://www.oceanexpert.org/expert/42886 -https://www.oceanexpert.org/expert/42887 -https://www.oceanexpert.org/expert/42888 -https://www.oceanexpert.org/expert/42890 -https://www.oceanexpert.org/expert/42891 -https://www.oceanexpert.org/expert/42892 -https://www.oceanexpert.org/expert/42895 -https://www.oceanexpert.org/expert/42896 -https://www.oceanexpert.org/expert/42897 -https://www.oceanexpert.org/expert/42898 -https://www.oceanexpert.org/expert/42902 -https://www.oceanexpert.org/expert/42904 -https://www.oceanexpert.org/expert/42905 -https://www.oceanexpert.org/expert/42906 -https://www.oceanexpert.org/expert/42907 -https://www.oceanexpert.org/expert/42908 -https://www.oceanexpert.org/expert/42910 -https://www.oceanexpert.org/expert/42911 -https://www.oceanexpert.org/expert/42912 -https://www.oceanexpert.org/expert/42914 -https://www.oceanexpert.org/expert/42915 -https://www.oceanexpert.org/expert/42917 -https://www.oceanexpert.org/expert/42918 -https://www.oceanexpert.org/expert/42919 -https://www.oceanexpert.org/expert/42920 -https://www.oceanexpert.org/expert/42921 -https://www.oceanexpert.org/expert/42922 -https://www.oceanexpert.org/expert/42923 -https://www.oceanexpert.org/expert/42924 -https://www.oceanexpert.org/expert/42925 -https://www.oceanexpert.org/expert/42926 -https://www.oceanexpert.org/expert/42927 -https://www.oceanexpert.org/expert/42929 -https://www.oceanexpert.org/expert/42930 -https://www.oceanexpert.org/expert/42931 -https://www.oceanexpert.org/expert/42932 -https://www.oceanexpert.org/expert/42933 -https://www.oceanexpert.org/expert/42934 -https://www.oceanexpert.org/expert/42935 -https://www.oceanexpert.org/expert/42936 -https://www.oceanexpert.org/expert/42937 -https://www.oceanexpert.org/expert/42938 -https://www.oceanexpert.org/expert/42939 -https://www.oceanexpert.org/expert/42940 -https://www.oceanexpert.org/expert/42941 -https://www.oceanexpert.org/expert/42946 -https://www.oceanexpert.org/expert/42947 -https://www.oceanexpert.org/expert/42949 -https://www.oceanexpert.org/expert/42952 -https://www.oceanexpert.org/expert/42954 -https://www.oceanexpert.org/expert/42956 -https://www.oceanexpert.org/expert/42957 -https://www.oceanexpert.org/expert/42960 -https://www.oceanexpert.org/expert/42961 -https://www.oceanexpert.org/expert/42962 -https://www.oceanexpert.org/expert/42964 -https://www.oceanexpert.org/expert/42965 -https://www.oceanexpert.org/expert/42967 -https://www.oceanexpert.org/expert/42969 -https://www.oceanexpert.org/expert/42972 -https://www.oceanexpert.org/expert/42973 -https://www.oceanexpert.org/expert/42975 -https://www.oceanexpert.org/expert/42977 -https://www.oceanexpert.org/expert/42985 -https://www.oceanexpert.org/expert/42986 -https://www.oceanexpert.org/expert/42987 -https://www.oceanexpert.org/expert/42988 -https://www.oceanexpert.org/expert/42989 -https://www.oceanexpert.org/expert/42990 -https://www.oceanexpert.org/expert/42991 -https://www.oceanexpert.org/expert/42993 -https://www.oceanexpert.org/expert/42994 -https://www.oceanexpert.org/expert/42996 -https://www.oceanexpert.org/expert/42997 -https://www.oceanexpert.org/expert/42998 -https://www.oceanexpert.org/expert/42999 -https://www.oceanexpert.org/expert/43000 -https://www.oceanexpert.org/expert/43001 -https://www.oceanexpert.org/expert/43004 -https://www.oceanexpert.org/expert/43006 -https://www.oceanexpert.org/expert/43007 -https://www.oceanexpert.org/expert/43008 -https://www.oceanexpert.org/expert/43010 -https://www.oceanexpert.org/expert/43012 -https://www.oceanexpert.org/expert/43013 -https://www.oceanexpert.org/expert/43015 -https://www.oceanexpert.org/expert/43016 -https://www.oceanexpert.org/expert/43018 -https://www.oceanexpert.org/expert/43019 -https://www.oceanexpert.org/expert/43021 -https://www.oceanexpert.org/expert/43023 -https://www.oceanexpert.org/expert/43024 -https://www.oceanexpert.org/expert/43025 -https://www.oceanexpert.org/expert/43027 -https://www.oceanexpert.org/expert/43029 -https://www.oceanexpert.org/expert/43030 -https://www.oceanexpert.org/expert/43032 -https://www.oceanexpert.org/expert/43033 -https://www.oceanexpert.org/expert/43035 -https://www.oceanexpert.org/expert/43036 -https://www.oceanexpert.org/expert/43037 -https://www.oceanexpert.org/expert/43039 -https://www.oceanexpert.org/expert/43040 -https://www.oceanexpert.org/expert/43042 -https://www.oceanexpert.org/expert/43043 -https://www.oceanexpert.org/expert/43044 -https://www.oceanexpert.org/expert/43045 -https://www.oceanexpert.org/expert/43046 -https://www.oceanexpert.org/expert/43047 -https://www.oceanexpert.org/expert/43048 -https://www.oceanexpert.org/expert/43049 -https://www.oceanexpert.org/expert/43050 -https://www.oceanexpert.org/expert/43053 -https://www.oceanexpert.org/expert/43054 -https://www.oceanexpert.org/expert/43056 -https://www.oceanexpert.org/expert/43060 -https://www.oceanexpert.org/expert/43061 -https://www.oceanexpert.org/expert/43062 -https://www.oceanexpert.org/expert/43063 -https://www.oceanexpert.org/expert/43064 -https://www.oceanexpert.org/expert/43065 -https://www.oceanexpert.org/expert/43066 -https://www.oceanexpert.org/expert/43067 -https://www.oceanexpert.org/expert/43068 -https://www.oceanexpert.org/expert/43069 -https://www.oceanexpert.org/expert/43072 -https://www.oceanexpert.org/expert/43073 -https://www.oceanexpert.org/expert/43074 -https://www.oceanexpert.org/expert/43075 -https://www.oceanexpert.org/expert/43079 -https://www.oceanexpert.org/expert/43080 -https://www.oceanexpert.org/expert/43082 -https://www.oceanexpert.org/expert/43085 -https://www.oceanexpert.org/expert/43087 -https://www.oceanexpert.org/expert/43089 -https://www.oceanexpert.org/expert/43091 -https://www.oceanexpert.org/expert/43092 -https://www.oceanexpert.org/expert/43093 -https://www.oceanexpert.org/expert/43094 -https://www.oceanexpert.org/expert/43095 -https://www.oceanexpert.org/expert/43098 -https://www.oceanexpert.org/expert/43101 -https://www.oceanexpert.org/expert/43104 -https://www.oceanexpert.org/expert/43105 -https://www.oceanexpert.org/expert/43106 -https://www.oceanexpert.org/expert/43110 -https://www.oceanexpert.org/expert/43111 -https://www.oceanexpert.org/expert/43112 -https://www.oceanexpert.org/expert/43113 -https://www.oceanexpert.org/expert/43115 -https://www.oceanexpert.org/expert/43117 -https://www.oceanexpert.org/expert/43118 -https://www.oceanexpert.org/expert/43121 -https://www.oceanexpert.org/expert/43122 -https://www.oceanexpert.org/expert/43123 -https://www.oceanexpert.org/expert/43126 -https://www.oceanexpert.org/expert/43128 -https://www.oceanexpert.org/expert/43129 -https://www.oceanexpert.org/expert/43131 -https://www.oceanexpert.org/expert/43132 -https://www.oceanexpert.org/expert/43136 -https://www.oceanexpert.org/expert/43137 -https://www.oceanexpert.org/expert/43138 -https://www.oceanexpert.org/expert/43140 -https://www.oceanexpert.org/expert/43141 -https://www.oceanexpert.org/expert/43142 -https://www.oceanexpert.org/expert/43145 -https://www.oceanexpert.org/expert/43146 -https://www.oceanexpert.org/expert/43147 -https://www.oceanexpert.org/expert/43148 -https://www.oceanexpert.org/expert/43149 -https://www.oceanexpert.org/expert/43150 -https://www.oceanexpert.org/expert/43152 -https://www.oceanexpert.org/expert/43154 -https://www.oceanexpert.org/expert/43155 -https://www.oceanexpert.org/expert/43156 -https://www.oceanexpert.org/expert/43157 -https://www.oceanexpert.org/expert/43158 -https://www.oceanexpert.org/expert/43159 -https://www.oceanexpert.org/expert/43160 -https://www.oceanexpert.org/expert/43161 -https://www.oceanexpert.org/expert/43162 -https://www.oceanexpert.org/expert/43163 -https://www.oceanexpert.org/expert/43164 -https://www.oceanexpert.org/expert/43165 -https://www.oceanexpert.org/expert/43167 -https://www.oceanexpert.org/expert/43169 -https://www.oceanexpert.org/expert/43171 -https://www.oceanexpert.org/expert/43173 -https://www.oceanexpert.org/expert/43175 -https://www.oceanexpert.org/expert/43176 -https://www.oceanexpert.org/expert/43179 -https://www.oceanexpert.org/expert/43181 -https://www.oceanexpert.org/expert/43182 -https://www.oceanexpert.org/expert/43183 -https://www.oceanexpert.org/expert/43188 -https://www.oceanexpert.org/expert/43189 -https://www.oceanexpert.org/expert/43190 -https://www.oceanexpert.org/expert/43191 -https://www.oceanexpert.org/expert/43192 -https://www.oceanexpert.org/expert/43193 -https://www.oceanexpert.org/expert/43194 -https://www.oceanexpert.org/expert/43196 -https://www.oceanexpert.org/expert/43197 -https://www.oceanexpert.org/expert/43200 -https://www.oceanexpert.org/expert/43201 -https://www.oceanexpert.org/expert/43202 -https://www.oceanexpert.org/expert/43204 -https://www.oceanexpert.org/expert/43205 -https://www.oceanexpert.org/expert/43206 -https://www.oceanexpert.org/expert/43211 -https://www.oceanexpert.org/expert/43212 -https://www.oceanexpert.org/expert/43214 -https://www.oceanexpert.org/expert/43216 -https://www.oceanexpert.org/expert/43217 -https://www.oceanexpert.org/expert/43218 -https://www.oceanexpert.org/expert/43219 -https://www.oceanexpert.org/expert/43220 -https://www.oceanexpert.org/expert/43221 -https://www.oceanexpert.org/expert/43223 -https://www.oceanexpert.org/expert/43224 -https://www.oceanexpert.org/expert/43225 -https://www.oceanexpert.org/expert/43226 -https://www.oceanexpert.org/expert/43227 -https://www.oceanexpert.org/expert/43228 -https://www.oceanexpert.org/expert/43229 -https://www.oceanexpert.org/expert/43233 -https://www.oceanexpert.org/expert/43234 -https://www.oceanexpert.org/expert/43236 -https://www.oceanexpert.org/expert/43238 -https://www.oceanexpert.org/expert/43239 -https://www.oceanexpert.org/expert/43240 -https://www.oceanexpert.org/expert/43243 -https://www.oceanexpert.org/expert/43244 -https://www.oceanexpert.org/expert/43245 -https://www.oceanexpert.org/expert/43246 -https://www.oceanexpert.org/expert/43247 -https://www.oceanexpert.org/expert/43248 -https://www.oceanexpert.org/expert/43249 -https://www.oceanexpert.org/expert/43250 -https://www.oceanexpert.org/expert/43251 -https://www.oceanexpert.org/expert/43253 -https://www.oceanexpert.org/expert/43254 -https://www.oceanexpert.org/expert/43255 -https://www.oceanexpert.org/expert/43256 -https://www.oceanexpert.org/expert/43257 -https://www.oceanexpert.org/expert/43259 -https://www.oceanexpert.org/expert/43260 -https://www.oceanexpert.org/expert/43261 -https://www.oceanexpert.org/expert/43262 -https://www.oceanexpert.org/expert/43263 -https://www.oceanexpert.org/expert/43264 -https://www.oceanexpert.org/expert/43265 -https://www.oceanexpert.org/expert/43266 -https://www.oceanexpert.org/expert/43267 -https://www.oceanexpert.org/expert/43268 -https://www.oceanexpert.org/expert/43269 -https://www.oceanexpert.org/expert/43271 -https://www.oceanexpert.org/expert/43272 -https://www.oceanexpert.org/expert/43273 -https://www.oceanexpert.org/expert/43276 -https://www.oceanexpert.org/expert/43277 -https://www.oceanexpert.org/expert/43278 -https://www.oceanexpert.org/expert/43279 -https://www.oceanexpert.org/expert/43280 -https://www.oceanexpert.org/expert/43281 -https://www.oceanexpert.org/expert/43283 -https://www.oceanexpert.org/expert/43284 -https://www.oceanexpert.org/expert/43285 -https://www.oceanexpert.org/expert/43286 -https://www.oceanexpert.org/expert/43287 -https://www.oceanexpert.org/expert/43289 -https://www.oceanexpert.org/expert/43290 -https://www.oceanexpert.org/expert/43291 -https://www.oceanexpert.org/expert/43292 -https://www.oceanexpert.org/expert/43293 -https://www.oceanexpert.org/expert/43294 -https://www.oceanexpert.org/expert/43295 -https://www.oceanexpert.org/expert/43296 -https://www.oceanexpert.org/expert/43297 -https://www.oceanexpert.org/expert/43302 -https://www.oceanexpert.org/expert/43303 -https://www.oceanexpert.org/expert/43304 -https://www.oceanexpert.org/expert/43305 -https://www.oceanexpert.org/expert/43306 -https://www.oceanexpert.org/expert/43308 -https://www.oceanexpert.org/expert/43310 -https://www.oceanexpert.org/expert/43311 -https://www.oceanexpert.org/expert/43312 -https://www.oceanexpert.org/expert/43313 -https://www.oceanexpert.org/expert/43314 -https://www.oceanexpert.org/expert/43315 -https://www.oceanexpert.org/expert/43316 -https://www.oceanexpert.org/expert/43317 -https://www.oceanexpert.org/expert/43319 -https://www.oceanexpert.org/expert/43320 -https://www.oceanexpert.org/expert/43321 -https://www.oceanexpert.org/expert/43322 -https://www.oceanexpert.org/expert/43323 -https://www.oceanexpert.org/expert/43326 -https://www.oceanexpert.org/expert/43327 -https://www.oceanexpert.org/expert/43328 -https://www.oceanexpert.org/expert/43329 -https://www.oceanexpert.org/expert/43331 -https://www.oceanexpert.org/expert/43332 -https://www.oceanexpert.org/expert/43333 -https://www.oceanexpert.org/expert/43334 -https://www.oceanexpert.org/expert/43335 -https://www.oceanexpert.org/expert/43337 -https://www.oceanexpert.org/expert/43338 -https://www.oceanexpert.org/expert/43339 -https://www.oceanexpert.org/expert/43340 -https://www.oceanexpert.org/expert/43341 -https://www.oceanexpert.org/expert/43342 -https://www.oceanexpert.org/expert/43343 -https://www.oceanexpert.org/expert/43344 -https://www.oceanexpert.org/expert/43345 -https://www.oceanexpert.org/expert/43346 -https://www.oceanexpert.org/expert/43347 -https://www.oceanexpert.org/expert/43348 -https://www.oceanexpert.org/expert/43349 -https://www.oceanexpert.org/expert/43350 -https://www.oceanexpert.org/expert/43352 -https://www.oceanexpert.org/expert/43353 -https://www.oceanexpert.org/expert/43356 -https://www.oceanexpert.org/expert/43359 -https://www.oceanexpert.org/expert/43360 -https://www.oceanexpert.org/expert/43361 -https://www.oceanexpert.org/expert/43363 -https://www.oceanexpert.org/expert/43364 -https://www.oceanexpert.org/expert/43366 -https://www.oceanexpert.org/expert/43367 -https://www.oceanexpert.org/expert/43369 -https://www.oceanexpert.org/expert/43370 -https://www.oceanexpert.org/expert/43371 -https://www.oceanexpert.org/expert/43372 -https://www.oceanexpert.org/expert/43373 -https://www.oceanexpert.org/expert/43374 -https://www.oceanexpert.org/expert/43375 -https://www.oceanexpert.org/expert/43376 -https://www.oceanexpert.org/expert/43378 -https://www.oceanexpert.org/expert/43379 -https://www.oceanexpert.org/expert/43380 -https://www.oceanexpert.org/expert/43381 -https://www.oceanexpert.org/expert/43382 -https://www.oceanexpert.org/expert/43383 -https://www.oceanexpert.org/expert/43385 -https://www.oceanexpert.org/expert/43388 -https://www.oceanexpert.org/expert/43389 -https://www.oceanexpert.org/expert/43391 -https://www.oceanexpert.org/expert/43392 -https://www.oceanexpert.org/expert/43393 -https://www.oceanexpert.org/expert/43394 -https://www.oceanexpert.org/expert/43396 -https://www.oceanexpert.org/expert/43397 -https://www.oceanexpert.org/expert/43398 -https://www.oceanexpert.org/expert/43399 -https://www.oceanexpert.org/expert/43400 -https://www.oceanexpert.org/expert/43402 -https://www.oceanexpert.org/expert/43403 -https://www.oceanexpert.org/expert/43407 -https://www.oceanexpert.org/expert/43410 -https://www.oceanexpert.org/expert/43416 -https://www.oceanexpert.org/expert/43417 -https://www.oceanexpert.org/expert/43418 -https://www.oceanexpert.org/expert/43419 -https://www.oceanexpert.org/expert/43421 -https://www.oceanexpert.org/expert/43422 -https://www.oceanexpert.org/expert/43426 -https://www.oceanexpert.org/expert/43427 -https://www.oceanexpert.org/expert/43428 -https://www.oceanexpert.org/expert/43430 -https://www.oceanexpert.org/expert/43433 -https://www.oceanexpert.org/expert/43435 -https://www.oceanexpert.org/expert/43436 -https://www.oceanexpert.org/expert/43437 -https://www.oceanexpert.org/expert/43439 -https://www.oceanexpert.org/expert/43440 -https://www.oceanexpert.org/expert/43445 -https://www.oceanexpert.org/expert/43447 -https://www.oceanexpert.org/expert/43448 -https://www.oceanexpert.org/expert/43452 -https://www.oceanexpert.org/expert/43457 -https://www.oceanexpert.org/expert/43460 -https://www.oceanexpert.org/expert/43462 -https://www.oceanexpert.org/expert/43464 -https://www.oceanexpert.org/expert/43465 -https://www.oceanexpert.org/expert/43466 -https://www.oceanexpert.org/expert/43467 -https://www.oceanexpert.org/expert/43470 -https://www.oceanexpert.org/expert/43472 -https://www.oceanexpert.org/expert/43473 -https://www.oceanexpert.org/expert/43475 -https://www.oceanexpert.org/expert/43476 -https://www.oceanexpert.org/expert/43477 -https://www.oceanexpert.org/expert/43483 -https://www.oceanexpert.org/expert/43491 -https://www.oceanexpert.org/expert/43495 -https://www.oceanexpert.org/expert/43501 -https://www.oceanexpert.org/expert/43503 -https://www.oceanexpert.org/expert/43504 -https://www.oceanexpert.org/expert/43507 -https://www.oceanexpert.org/expert/43508 -https://www.oceanexpert.org/expert/43509 -https://www.oceanexpert.org/expert/43510 -https://www.oceanexpert.org/expert/43512 -https://www.oceanexpert.org/expert/43513 -https://www.oceanexpert.org/expert/43515 -https://www.oceanexpert.org/expert/43516 -https://www.oceanexpert.org/expert/43517 -https://www.oceanexpert.org/expert/43519 -https://www.oceanexpert.org/expert/43521 -https://www.oceanexpert.org/expert/43522 -https://www.oceanexpert.org/expert/43524 -https://www.oceanexpert.org/expert/43525 -https://www.oceanexpert.org/expert/43528 -https://www.oceanexpert.org/expert/43529 -https://www.oceanexpert.org/expert/43531 -https://www.oceanexpert.org/expert/43533 -https://www.oceanexpert.org/expert/43534 -https://www.oceanexpert.org/expert/43536 -https://www.oceanexpert.org/expert/43537 -https://www.oceanexpert.org/expert/43542 -https://www.oceanexpert.org/expert/43544 -https://www.oceanexpert.org/expert/43545 -https://www.oceanexpert.org/expert/43547 -https://www.oceanexpert.org/expert/43548 -https://www.oceanexpert.org/expert/43549 -https://www.oceanexpert.org/expert/43550 -https://www.oceanexpert.org/expert/43552 -https://www.oceanexpert.org/expert/43555 -https://www.oceanexpert.org/expert/43556 -https://www.oceanexpert.org/expert/43560 -https://www.oceanexpert.org/expert/43561 -https://www.oceanexpert.org/expert/43563 -https://www.oceanexpert.org/expert/43564 -https://www.oceanexpert.org/expert/43565 -https://www.oceanexpert.org/expert/43566 -https://www.oceanexpert.org/expert/43568 -https://www.oceanexpert.org/expert/43569 -https://www.oceanexpert.org/expert/43570 -https://www.oceanexpert.org/expert/43571 -https://www.oceanexpert.org/expert/43572 -https://www.oceanexpert.org/expert/43574 -https://www.oceanexpert.org/expert/43575 -https://www.oceanexpert.org/expert/43576 -https://www.oceanexpert.org/expert/43578 -https://www.oceanexpert.org/expert/43580 -https://www.oceanexpert.org/expert/43581 -https://www.oceanexpert.org/expert/43583 -https://www.oceanexpert.org/expert/43587 -https://www.oceanexpert.org/expert/43589 -https://www.oceanexpert.org/expert/43590 -https://www.oceanexpert.org/expert/43591 -https://www.oceanexpert.org/expert/43592 -https://www.oceanexpert.org/expert/43593 -https://www.oceanexpert.org/expert/43596 -https://www.oceanexpert.org/expert/43597 -https://www.oceanexpert.org/expert/43598 -https://www.oceanexpert.org/expert/43599 -https://www.oceanexpert.org/expert/43602 -https://www.oceanexpert.org/expert/43603 -https://www.oceanexpert.org/expert/43604 -https://www.oceanexpert.org/expert/43606 -https://www.oceanexpert.org/expert/43607 -https://www.oceanexpert.org/expert/43608 -https://www.oceanexpert.org/expert/43610 -https://www.oceanexpert.org/expert/43611 -https://www.oceanexpert.org/expert/43612 -https://www.oceanexpert.org/expert/43614 -https://www.oceanexpert.org/expert/43615 -https://www.oceanexpert.org/expert/43617 -https://www.oceanexpert.org/expert/43618 -https://www.oceanexpert.org/expert/43620 -https://www.oceanexpert.org/expert/43621 -https://www.oceanexpert.org/expert/43622 -https://www.oceanexpert.org/expert/43623 -https://www.oceanexpert.org/expert/43624 -https://www.oceanexpert.org/expert/43625 -https://www.oceanexpert.org/expert/43627 -https://www.oceanexpert.org/expert/43629 -https://www.oceanexpert.org/expert/43631 -https://www.oceanexpert.org/expert/43632 -https://www.oceanexpert.org/expert/43633 -https://www.oceanexpert.org/expert/43635 -https://www.oceanexpert.org/expert/43637 -https://www.oceanexpert.org/expert/43638 -https://www.oceanexpert.org/expert/43639 -https://www.oceanexpert.org/expert/43642 -https://www.oceanexpert.org/expert/43644 -https://www.oceanexpert.org/expert/43646 -https://www.oceanexpert.org/expert/43647 -https://www.oceanexpert.org/expert/43649 -https://www.oceanexpert.org/expert/43650 -https://www.oceanexpert.org/expert/43654 -https://www.oceanexpert.org/expert/43655 -https://www.oceanexpert.org/expert/43658 -https://www.oceanexpert.org/expert/43659 -https://www.oceanexpert.org/expert/43661 -https://www.oceanexpert.org/expert/43663 -https://www.oceanexpert.org/expert/43664 -https://www.oceanexpert.org/expert/43665 -https://www.oceanexpert.org/expert/43667 -https://www.oceanexpert.org/expert/43668 -https://www.oceanexpert.org/expert/43670 -https://www.oceanexpert.org/expert/43673 -https://www.oceanexpert.org/expert/43674 -https://www.oceanexpert.org/expert/43675 -https://www.oceanexpert.org/expert/43676 -https://www.oceanexpert.org/expert/43677 -https://www.oceanexpert.org/expert/43678 -https://www.oceanexpert.org/expert/43680 -https://www.oceanexpert.org/expert/43681 -https://www.oceanexpert.org/expert/43682 -https://www.oceanexpert.org/expert/43683 -https://www.oceanexpert.org/expert/43684 -https://www.oceanexpert.org/expert/43685 -https://www.oceanexpert.org/expert/43686 -https://www.oceanexpert.org/expert/43687 -https://www.oceanexpert.org/expert/43690 -https://www.oceanexpert.org/expert/43691 -https://www.oceanexpert.org/expert/43693 -https://www.oceanexpert.org/expert/43696 -https://www.oceanexpert.org/expert/43701 -https://www.oceanexpert.org/expert/43703 -https://www.oceanexpert.org/expert/43705 -https://www.oceanexpert.org/expert/43706 -https://www.oceanexpert.org/expert/43707 -https://www.oceanexpert.org/expert/43709 -https://www.oceanexpert.org/expert/43710 -https://www.oceanexpert.org/expert/43712 -https://www.oceanexpert.org/expert/43713 -https://www.oceanexpert.org/expert/43714 -https://www.oceanexpert.org/expert/43716 -https://www.oceanexpert.org/expert/43717 -https://www.oceanexpert.org/expert/43718 -https://www.oceanexpert.org/expert/43719 -https://www.oceanexpert.org/expert/43721 -https://www.oceanexpert.org/expert/43722 -https://www.oceanexpert.org/expert/43723 -https://www.oceanexpert.org/expert/43724 -https://www.oceanexpert.org/expert/43725 -https://www.oceanexpert.org/expert/43726 -https://www.oceanexpert.org/expert/43729 -https://www.oceanexpert.org/expert/43730 -https://www.oceanexpert.org/expert/43731 -https://www.oceanexpert.org/expert/43732 -https://www.oceanexpert.org/expert/43734 -https://www.oceanexpert.org/expert/43735 -https://www.oceanexpert.org/expert/43736 -https://www.oceanexpert.org/expert/43737 -https://www.oceanexpert.org/expert/43738 -https://www.oceanexpert.org/expert/43742 -https://www.oceanexpert.org/expert/43743 -https://www.oceanexpert.org/expert/43748 -https://www.oceanexpert.org/expert/43750 -https://www.oceanexpert.org/expert/43751 -https://www.oceanexpert.org/expert/43752 -https://www.oceanexpert.org/expert/43753 -https://www.oceanexpert.org/expert/43754 -https://www.oceanexpert.org/expert/43756 -https://www.oceanexpert.org/expert/43757 -https://www.oceanexpert.org/expert/43760 -https://www.oceanexpert.org/expert/43761 -https://www.oceanexpert.org/expert/43762 -https://www.oceanexpert.org/expert/43763 -https://www.oceanexpert.org/expert/43764 -https://www.oceanexpert.org/expert/43765 -https://www.oceanexpert.org/expert/43766 -https://www.oceanexpert.org/expert/43769 -https://www.oceanexpert.org/expert/43772 -https://www.oceanexpert.org/expert/43773 -https://www.oceanexpert.org/expert/43775 -https://www.oceanexpert.org/expert/43782 -https://www.oceanexpert.org/expert/43783 -https://www.oceanexpert.org/expert/43784 -https://www.oceanexpert.org/expert/43785 -https://www.oceanexpert.org/expert/43787 -https://www.oceanexpert.org/expert/43788 -https://www.oceanexpert.org/expert/43790 -https://www.oceanexpert.org/expert/43791 -https://www.oceanexpert.org/expert/43792 -https://www.oceanexpert.org/expert/43794 -https://www.oceanexpert.org/expert/43796 -https://www.oceanexpert.org/expert/43797 -https://www.oceanexpert.org/expert/43799 -https://www.oceanexpert.org/expert/43800 -https://www.oceanexpert.org/expert/43805 -https://www.oceanexpert.org/expert/43806 -https://www.oceanexpert.org/expert/43807 -https://www.oceanexpert.org/expert/43808 -https://www.oceanexpert.org/expert/43809 -https://www.oceanexpert.org/expert/43810 -https://www.oceanexpert.org/expert/43814 -https://www.oceanexpert.org/expert/43815 -https://www.oceanexpert.org/expert/43816 -https://www.oceanexpert.org/expert/43817 -https://www.oceanexpert.org/expert/43818 -https://www.oceanexpert.org/expert/43819 -https://www.oceanexpert.org/expert/43820 -https://www.oceanexpert.org/expert/43822 -https://www.oceanexpert.org/expert/43823 -https://www.oceanexpert.org/expert/43825 -https://www.oceanexpert.org/expert/43827 -https://www.oceanexpert.org/expert/43828 -https://www.oceanexpert.org/expert/43829 -https://www.oceanexpert.org/expert/43831 -https://www.oceanexpert.org/expert/43833 -https://www.oceanexpert.org/expert/43834 -https://www.oceanexpert.org/expert/43835 -https://www.oceanexpert.org/expert/43836 -https://www.oceanexpert.org/expert/43837 -https://www.oceanexpert.org/expert/43841 -https://www.oceanexpert.org/expert/43842 -https://www.oceanexpert.org/expert/43843 -https://www.oceanexpert.org/expert/43844 -https://www.oceanexpert.org/expert/43855 -https://www.oceanexpert.org/expert/43857 -https://www.oceanexpert.org/expert/43858 -https://www.oceanexpert.org/expert/43861 -https://www.oceanexpert.org/expert/43862 -https://www.oceanexpert.org/expert/43863 -https://www.oceanexpert.org/expert/43864 -https://www.oceanexpert.org/expert/43865 -https://www.oceanexpert.org/expert/43867 -https://www.oceanexpert.org/expert/43868 -https://www.oceanexpert.org/expert/43869 -https://www.oceanexpert.org/expert/43871 -https://www.oceanexpert.org/expert/43872 -https://www.oceanexpert.org/expert/43873 -https://www.oceanexpert.org/expert/43877 -https://www.oceanexpert.org/expert/43878 -https://www.oceanexpert.org/expert/43879 -https://www.oceanexpert.org/expert/43880 -https://www.oceanexpert.org/expert/43881 -https://www.oceanexpert.org/expert/43882 -https://www.oceanexpert.org/expert/43883 -https://www.oceanexpert.org/expert/43885 -https://www.oceanexpert.org/expert/43886 -https://www.oceanexpert.org/expert/43887 -https://www.oceanexpert.org/expert/43888 -https://www.oceanexpert.org/expert/43890 -https://www.oceanexpert.org/expert/43891 -https://www.oceanexpert.org/expert/43892 -https://www.oceanexpert.org/expert/43893 -https://www.oceanexpert.org/expert/43895 -https://www.oceanexpert.org/expert/43896 -https://www.oceanexpert.org/expert/43898 -https://www.oceanexpert.org/expert/43899 -https://www.oceanexpert.org/expert/43900 -https://www.oceanexpert.org/expert/43903 -https://www.oceanexpert.org/expert/43905 -https://www.oceanexpert.org/expert/43908 -https://www.oceanexpert.org/expert/43913 -https://www.oceanexpert.org/expert/43918 -https://www.oceanexpert.org/expert/43919 -https://www.oceanexpert.org/expert/43920 -https://www.oceanexpert.org/expert/43921 -https://www.oceanexpert.org/expert/43922 -https://www.oceanexpert.org/expert/43923 -https://www.oceanexpert.org/expert/43924 -https://www.oceanexpert.org/expert/43925 -https://www.oceanexpert.org/expert/43927 -https://www.oceanexpert.org/expert/43928 -https://www.oceanexpert.org/expert/43929 -https://www.oceanexpert.org/expert/43930 -https://www.oceanexpert.org/expert/43931 -https://www.oceanexpert.org/expert/43932 -https://www.oceanexpert.org/expert/43933 -https://www.oceanexpert.org/expert/43935 -https://www.oceanexpert.org/expert/43936 -https://www.oceanexpert.org/expert/43937 -https://www.oceanexpert.org/expert/43939 -https://www.oceanexpert.org/expert/43943 -https://www.oceanexpert.org/expert/43944 -https://www.oceanexpert.org/expert/43945 -https://www.oceanexpert.org/expert/43948 -https://www.oceanexpert.org/expert/43951 -https://www.oceanexpert.org/expert/43953 -https://www.oceanexpert.org/expert/43955 -https://www.oceanexpert.org/expert/43957 -https://www.oceanexpert.org/expert/43959 -https://www.oceanexpert.org/expert/43960 -https://www.oceanexpert.org/expert/43963 -https://www.oceanexpert.org/expert/43964 -https://www.oceanexpert.org/expert/43966 -https://www.oceanexpert.org/expert/43968 -https://www.oceanexpert.org/expert/43970 -https://www.oceanexpert.org/expert/43971 -https://www.oceanexpert.org/expert/43972 -https://www.oceanexpert.org/expert/43973 -https://www.oceanexpert.org/expert/43974 -https://www.oceanexpert.org/expert/43975 -https://www.oceanexpert.org/expert/43977 -https://www.oceanexpert.org/expert/43978 -https://www.oceanexpert.org/expert/43979 -https://www.oceanexpert.org/expert/43980 -https://www.oceanexpert.org/expert/43982 -https://www.oceanexpert.org/expert/43983 -https://www.oceanexpert.org/expert/43985 -https://www.oceanexpert.org/expert/43986 -https://www.oceanexpert.org/expert/43987 -https://www.oceanexpert.org/expert/43988 -https://www.oceanexpert.org/expert/43990 -https://www.oceanexpert.org/expert/43992 -https://www.oceanexpert.org/expert/43993 -https://www.oceanexpert.org/expert/43994 -https://www.oceanexpert.org/expert/43996 -https://www.oceanexpert.org/expert/43997 -https://www.oceanexpert.org/expert/43998 -https://www.oceanexpert.org/expert/43999 -https://www.oceanexpert.org/expert/44000 -https://www.oceanexpert.org/expert/44001 -https://www.oceanexpert.org/expert/44002 -https://www.oceanexpert.org/expert/44005 -https://www.oceanexpert.org/expert/44006 -https://www.oceanexpert.org/expert/44008 -https://www.oceanexpert.org/expert/44010 -https://www.oceanexpert.org/expert/44014 -https://www.oceanexpert.org/expert/44015 -https://www.oceanexpert.org/expert/44016 -https://www.oceanexpert.org/expert/44022 -https://www.oceanexpert.org/expert/44024 -https://www.oceanexpert.org/expert/44026 -https://www.oceanexpert.org/expert/44028 -https://www.oceanexpert.org/expert/44029 -https://www.oceanexpert.org/expert/44030 -https://www.oceanexpert.org/expert/44031 -https://www.oceanexpert.org/expert/44032 -https://www.oceanexpert.org/expert/44033 -https://www.oceanexpert.org/expert/44034 -https://www.oceanexpert.org/expert/44037 -https://www.oceanexpert.org/expert/44039 -https://www.oceanexpert.org/expert/44040 -https://www.oceanexpert.org/expert/44042 -https://www.oceanexpert.org/expert/44043 -https://www.oceanexpert.org/expert/44044 -https://www.oceanexpert.org/expert/44045 -https://www.oceanexpert.org/expert/44046 -https://www.oceanexpert.org/expert/44047 -https://www.oceanexpert.org/expert/44048 -https://www.oceanexpert.org/expert/44050 -https://www.oceanexpert.org/expert/44052 -https://www.oceanexpert.org/expert/44053 -https://www.oceanexpert.org/expert/44055 -https://www.oceanexpert.org/expert/44056 -https://www.oceanexpert.org/expert/44057 -https://www.oceanexpert.org/expert/44059 -https://www.oceanexpert.org/expert/44060 -https://www.oceanexpert.org/expert/44063 -https://www.oceanexpert.org/expert/44064 -https://www.oceanexpert.org/expert/44065 -https://www.oceanexpert.org/expert/44067 -https://www.oceanexpert.org/expert/44068 -https://www.oceanexpert.org/expert/44069 -https://www.oceanexpert.org/expert/44071 -https://www.oceanexpert.org/expert/44074 -https://www.oceanexpert.org/expert/44075 -https://www.oceanexpert.org/expert/44076 -https://www.oceanexpert.org/expert/44077 -https://www.oceanexpert.org/expert/44079 -https://www.oceanexpert.org/expert/44082 -https://www.oceanexpert.org/expert/44083 -https://www.oceanexpert.org/expert/44086 -https://www.oceanexpert.org/expert/44087 -https://www.oceanexpert.org/expert/44088 -https://www.oceanexpert.org/expert/44089 -https://www.oceanexpert.org/expert/44090 -https://www.oceanexpert.org/expert/44092 -https://www.oceanexpert.org/expert/44095 -https://www.oceanexpert.org/expert/44096 -https://www.oceanexpert.org/expert/44099 -https://www.oceanexpert.org/expert/44100 -https://www.oceanexpert.org/expert/44101 -https://www.oceanexpert.org/expert/44102 -https://www.oceanexpert.org/expert/44103 -https://www.oceanexpert.org/expert/44108 -https://www.oceanexpert.org/expert/44109 -https://www.oceanexpert.org/expert/44110 -https://www.oceanexpert.org/expert/44111 -https://www.oceanexpert.org/expert/44112 -https://www.oceanexpert.org/expert/44113 -https://www.oceanexpert.org/expert/44114 -https://www.oceanexpert.org/expert/44115 -https://www.oceanexpert.org/expert/44117 -https://www.oceanexpert.org/expert/44119 -https://www.oceanexpert.org/expert/44123 -https://www.oceanexpert.org/expert/44124 -https://www.oceanexpert.org/expert/44125 -https://www.oceanexpert.org/expert/44126 -https://www.oceanexpert.org/expert/44127 -https://www.oceanexpert.org/expert/44128 -https://www.oceanexpert.org/expert/44129 -https://www.oceanexpert.org/expert/44130 -https://www.oceanexpert.org/expert/44134 -https://www.oceanexpert.org/expert/44135 -https://www.oceanexpert.org/expert/44138 -https://www.oceanexpert.org/expert/44142 -https://www.oceanexpert.org/expert/44144 -https://www.oceanexpert.org/expert/44147 -https://www.oceanexpert.org/expert/44149 -https://www.oceanexpert.org/expert/44150 -https://www.oceanexpert.org/expert/44151 -https://www.oceanexpert.org/expert/44152 -https://www.oceanexpert.org/expert/44153 -https://www.oceanexpert.org/expert/44154 -https://www.oceanexpert.org/expert/44157 -https://www.oceanexpert.org/expert/44159 -https://www.oceanexpert.org/expert/44160 -https://www.oceanexpert.org/expert/44162 -https://www.oceanexpert.org/expert/44163 -https://www.oceanexpert.org/expert/44165 -https://www.oceanexpert.org/expert/44167 -https://www.oceanexpert.org/expert/44170 -https://www.oceanexpert.org/expert/44173 -https://www.oceanexpert.org/expert/44175 -https://www.oceanexpert.org/expert/44176 -https://www.oceanexpert.org/expert/44177 -https://www.oceanexpert.org/expert/44180 -https://www.oceanexpert.org/expert/44181 -https://www.oceanexpert.org/expert/44183 -https://www.oceanexpert.org/expert/44184 -https://www.oceanexpert.org/expert/44185 -https://www.oceanexpert.org/expert/44188 -https://www.oceanexpert.org/expert/44190 -https://www.oceanexpert.org/expert/44191 -https://www.oceanexpert.org/expert/44196 -https://www.oceanexpert.org/expert/44197 -https://www.oceanexpert.org/expert/44198 -https://www.oceanexpert.org/expert/44199 -https://www.oceanexpert.org/expert/44202 -https://www.oceanexpert.org/expert/44203 -https://www.oceanexpert.org/expert/44204 -https://www.oceanexpert.org/expert/44205 -https://www.oceanexpert.org/expert/44207 -https://www.oceanexpert.org/expert/44209 -https://www.oceanexpert.org/expert/44211 -https://www.oceanexpert.org/expert/44212 -https://www.oceanexpert.org/expert/44213 -https://www.oceanexpert.org/expert/44214 -https://www.oceanexpert.org/expert/44218 -https://www.oceanexpert.org/expert/44220 -https://www.oceanexpert.org/expert/44221 -https://www.oceanexpert.org/expert/44222 -https://www.oceanexpert.org/expert/44223 -https://www.oceanexpert.org/expert/44224 -https://www.oceanexpert.org/expert/44226 -https://www.oceanexpert.org/expert/44227 -https://www.oceanexpert.org/expert/44228 -https://www.oceanexpert.org/expert/44229 -https://www.oceanexpert.org/expert/44231 -https://www.oceanexpert.org/expert/44234 -https://www.oceanexpert.org/expert/44235 -https://www.oceanexpert.org/expert/44236 -https://www.oceanexpert.org/expert/44237 -https://www.oceanexpert.org/expert/44238 -https://www.oceanexpert.org/expert/44240 -https://www.oceanexpert.org/expert/44241 -https://www.oceanexpert.org/expert/44243 -https://www.oceanexpert.org/expert/44244 -https://www.oceanexpert.org/expert/44245 -https://www.oceanexpert.org/expert/44246 -https://www.oceanexpert.org/expert/44249 -https://www.oceanexpert.org/expert/44250 -https://www.oceanexpert.org/expert/44251 -https://www.oceanexpert.org/expert/44254 -https://www.oceanexpert.org/expert/44257 -https://www.oceanexpert.org/expert/44258 -https://www.oceanexpert.org/expert/44259 -https://www.oceanexpert.org/expert/44261 -https://www.oceanexpert.org/expert/44263 -https://www.oceanexpert.org/expert/44265 -https://www.oceanexpert.org/expert/44266 -https://www.oceanexpert.org/expert/44275 -https://www.oceanexpert.org/expert/44279 -https://www.oceanexpert.org/expert/44281 -https://www.oceanexpert.org/expert/44282 -https://www.oceanexpert.org/expert/44286 -https://www.oceanexpert.org/expert/44287 -https://www.oceanexpert.org/expert/44288 -https://www.oceanexpert.org/expert/44289 -https://www.oceanexpert.org/expert/44290 -https://www.oceanexpert.org/expert/44293 -https://www.oceanexpert.org/expert/44294 -https://www.oceanexpert.org/expert/44296 -https://www.oceanexpert.org/expert/44297 -https://www.oceanexpert.org/expert/44298 -https://www.oceanexpert.org/expert/44300 -https://www.oceanexpert.org/expert/44301 -https://www.oceanexpert.org/expert/44304 -https://www.oceanexpert.org/expert/44308 -https://www.oceanexpert.org/expert/44309 -https://www.oceanexpert.org/expert/44310 -https://www.oceanexpert.org/expert/44311 -https://www.oceanexpert.org/expert/44312 -https://www.oceanexpert.org/expert/44314 -https://www.oceanexpert.org/expert/44315 -https://www.oceanexpert.org/expert/44318 -https://www.oceanexpert.org/expert/44319 -https://www.oceanexpert.org/expert/44320 -https://www.oceanexpert.org/expert/44322 -https://www.oceanexpert.org/expert/44323 -https://www.oceanexpert.org/expert/44324 -https://www.oceanexpert.org/expert/44325 -https://www.oceanexpert.org/expert/44326 -https://www.oceanexpert.org/expert/44327 -https://www.oceanexpert.org/expert/44328 -https://www.oceanexpert.org/expert/44329 -https://www.oceanexpert.org/expert/44330 -https://www.oceanexpert.org/expert/44331 -https://www.oceanexpert.org/expert/44332 -https://www.oceanexpert.org/expert/44333 -https://www.oceanexpert.org/expert/44335 -https://www.oceanexpert.org/expert/44336 -https://www.oceanexpert.org/expert/44338 -https://www.oceanexpert.org/expert/44339 -https://www.oceanexpert.org/expert/44340 -https://www.oceanexpert.org/expert/44342 -https://www.oceanexpert.org/expert/44343 -https://www.oceanexpert.org/expert/44344 -https://www.oceanexpert.org/expert/44345 -https://www.oceanexpert.org/expert/44348 -https://www.oceanexpert.org/expert/44349 -https://www.oceanexpert.org/expert/44350 -https://www.oceanexpert.org/expert/44352 -https://www.oceanexpert.org/expert/44353 -https://www.oceanexpert.org/expert/44354 -https://www.oceanexpert.org/expert/44355 -https://www.oceanexpert.org/expert/44357 -https://www.oceanexpert.org/expert/44359 -https://www.oceanexpert.org/expert/44360 -https://www.oceanexpert.org/expert/44361 -https://www.oceanexpert.org/expert/44362 -https://www.oceanexpert.org/expert/44363 -https://www.oceanexpert.org/expert/44367 -https://www.oceanexpert.org/expert/44368 -https://www.oceanexpert.org/expert/44370 -https://www.oceanexpert.org/expert/44373 -https://www.oceanexpert.org/expert/44375 -https://www.oceanexpert.org/expert/44376 -https://www.oceanexpert.org/expert/44377 -https://www.oceanexpert.org/expert/44378 -https://www.oceanexpert.org/expert/44380 -https://www.oceanexpert.org/expert/44382 -https://www.oceanexpert.org/expert/44383 -https://www.oceanexpert.org/expert/44387 -https://www.oceanexpert.org/expert/44388 -https://www.oceanexpert.org/expert/44389 -https://www.oceanexpert.org/expert/44391 -https://www.oceanexpert.org/expert/44394 -https://www.oceanexpert.org/expert/44397 -https://www.oceanexpert.org/expert/44399 -https://www.oceanexpert.org/expert/44401 -https://www.oceanexpert.org/expert/44402 -https://www.oceanexpert.org/expert/44403 -https://www.oceanexpert.org/expert/44407 -https://www.oceanexpert.org/expert/44409 -https://www.oceanexpert.org/expert/44411 -https://www.oceanexpert.org/expert/44412 -https://www.oceanexpert.org/expert/44413 -https://www.oceanexpert.org/expert/44414 -https://www.oceanexpert.org/expert/44416 -https://www.oceanexpert.org/expert/44419 -https://www.oceanexpert.org/expert/44421 -https://www.oceanexpert.org/expert/44424 -https://www.oceanexpert.org/expert/44426 -https://www.oceanexpert.org/expert/44428 -https://www.oceanexpert.org/expert/44429 -https://www.oceanexpert.org/expert/44430 -https://www.oceanexpert.org/expert/44432 -https://www.oceanexpert.org/expert/44433 -https://www.oceanexpert.org/expert/44435 -https://www.oceanexpert.org/expert/44438 -https://www.oceanexpert.org/expert/44439 -https://www.oceanexpert.org/expert/44441 -https://www.oceanexpert.org/expert/44442 -https://www.oceanexpert.org/expert/44444 -https://www.oceanexpert.org/expert/44448 -https://www.oceanexpert.org/expert/44449 -https://www.oceanexpert.org/expert/44452 -https://www.oceanexpert.org/expert/44453 -https://www.oceanexpert.org/expert/44454 -https://www.oceanexpert.org/expert/44456 -https://www.oceanexpert.org/expert/44457 -https://www.oceanexpert.org/expert/44460 -https://www.oceanexpert.org/expert/44461 -https://www.oceanexpert.org/expert/44462 -https://www.oceanexpert.org/expert/44463 -https://www.oceanexpert.org/expert/44464 -https://www.oceanexpert.org/expert/44465 -https://www.oceanexpert.org/expert/44468 -https://www.oceanexpert.org/expert/44469 -https://www.oceanexpert.org/expert/44471 -https://www.oceanexpert.org/expert/44472 -https://www.oceanexpert.org/expert/44473 -https://www.oceanexpert.org/expert/44475 -https://www.oceanexpert.org/expert/44477 -https://www.oceanexpert.org/expert/44478 -https://www.oceanexpert.org/expert/44480 -https://www.oceanexpert.org/expert/44481 -https://www.oceanexpert.org/expert/44485 -https://www.oceanexpert.org/expert/44486 -https://www.oceanexpert.org/expert/44487 -https://www.oceanexpert.org/expert/44489 -https://www.oceanexpert.org/expert/44490 -https://www.oceanexpert.org/expert/44491 -https://www.oceanexpert.org/expert/44492 -https://www.oceanexpert.org/expert/44493 -https://www.oceanexpert.org/expert/44494 -https://www.oceanexpert.org/expert/44495 -https://www.oceanexpert.org/expert/44497 -https://www.oceanexpert.org/expert/44498 -https://www.oceanexpert.org/expert/44499 -https://www.oceanexpert.org/expert/44501 -https://www.oceanexpert.org/expert/44502 -https://www.oceanexpert.org/expert/44503 -https://www.oceanexpert.org/expert/44504 -https://www.oceanexpert.org/expert/44505 -https://www.oceanexpert.org/expert/44506 -https://www.oceanexpert.org/expert/44508 -https://www.oceanexpert.org/expert/44512 -https://www.oceanexpert.org/expert/44513 -https://www.oceanexpert.org/expert/44514 -https://www.oceanexpert.org/expert/44515 -https://www.oceanexpert.org/expert/44516 -https://www.oceanexpert.org/expert/44517 -https://www.oceanexpert.org/expert/44518 -https://www.oceanexpert.org/expert/44520 -https://www.oceanexpert.org/expert/44521 -https://www.oceanexpert.org/expert/44523 -https://www.oceanexpert.org/expert/44525 -https://www.oceanexpert.org/expert/44526 -https://www.oceanexpert.org/expert/44528 -https://www.oceanexpert.org/expert/44529 -https://www.oceanexpert.org/expert/44531 -https://www.oceanexpert.org/expert/44533 -https://www.oceanexpert.org/expert/44534 -https://www.oceanexpert.org/expert/44537 -https://www.oceanexpert.org/expert/44538 -https://www.oceanexpert.org/expert/44539 -https://www.oceanexpert.org/expert/44540 -https://www.oceanexpert.org/expert/44541 -https://www.oceanexpert.org/expert/44543 -https://www.oceanexpert.org/expert/44544 -https://www.oceanexpert.org/expert/44545 -https://www.oceanexpert.org/expert/44546 -https://www.oceanexpert.org/expert/44547 -https://www.oceanexpert.org/expert/44548 -https://www.oceanexpert.org/expert/44549 -https://www.oceanexpert.org/expert/44550 -https://www.oceanexpert.org/expert/44551 -https://www.oceanexpert.org/expert/44552 -https://www.oceanexpert.org/expert/44554 -https://www.oceanexpert.org/expert/44555 -https://www.oceanexpert.org/expert/44556 -https://www.oceanexpert.org/expert/44557 -https://www.oceanexpert.org/expert/44561 -https://www.oceanexpert.org/expert/44563 -https://www.oceanexpert.org/expert/44564 -https://www.oceanexpert.org/expert/44567 -https://www.oceanexpert.org/expert/44568 -https://www.oceanexpert.org/expert/44569 -https://www.oceanexpert.org/expert/44570 -https://www.oceanexpert.org/expert/44571 -https://www.oceanexpert.org/expert/44572 -https://www.oceanexpert.org/expert/44574 -https://www.oceanexpert.org/expert/44575 -https://www.oceanexpert.org/expert/44578 -https://www.oceanexpert.org/expert/44580 -https://www.oceanexpert.org/expert/44581 -https://www.oceanexpert.org/expert/44582 -https://www.oceanexpert.org/expert/44583 -https://www.oceanexpert.org/expert/44584 -https://www.oceanexpert.org/expert/44585 -https://www.oceanexpert.org/expert/44586 -https://www.oceanexpert.org/expert/44587 -https://www.oceanexpert.org/expert/44588 -https://www.oceanexpert.org/expert/44589 -https://www.oceanexpert.org/expert/44590 -https://www.oceanexpert.org/expert/44592 -https://www.oceanexpert.org/expert/44593 -https://www.oceanexpert.org/expert/44594 -https://www.oceanexpert.org/expert/44595 -https://www.oceanexpert.org/expert/44596 -https://www.oceanexpert.org/expert/44598 -https://www.oceanexpert.org/expert/44601 -https://www.oceanexpert.org/expert/44602 -https://www.oceanexpert.org/expert/44603 -https://www.oceanexpert.org/expert/44604 -https://www.oceanexpert.org/expert/44606 -https://www.oceanexpert.org/expert/44607 -https://www.oceanexpert.org/expert/44608 -https://www.oceanexpert.org/expert/44609 -https://www.oceanexpert.org/expert/44610 -https://www.oceanexpert.org/expert/44611 -https://www.oceanexpert.org/expert/44613 -https://www.oceanexpert.org/expert/44615 -https://www.oceanexpert.org/expert/44616 -https://www.oceanexpert.org/expert/44618 -https://www.oceanexpert.org/expert/44620 -https://www.oceanexpert.org/expert/44621 -https://www.oceanexpert.org/expert/44622 -https://www.oceanexpert.org/expert/44623 -https://www.oceanexpert.org/expert/44624 -https://www.oceanexpert.org/expert/44626 -https://www.oceanexpert.org/expert/44627 -https://www.oceanexpert.org/expert/44631 -https://www.oceanexpert.org/expert/44632 -https://www.oceanexpert.org/expert/44635 -https://www.oceanexpert.org/expert/44636 -https://www.oceanexpert.org/expert/44637 -https://www.oceanexpert.org/expert/44638 -https://www.oceanexpert.org/expert/44639 -https://www.oceanexpert.org/expert/44640 -https://www.oceanexpert.org/expert/44644 -https://www.oceanexpert.org/expert/44645 -https://www.oceanexpert.org/expert/44647 -https://www.oceanexpert.org/expert/44648 -https://www.oceanexpert.org/expert/44649 -https://www.oceanexpert.org/expert/44650 -https://www.oceanexpert.org/expert/44651 -https://www.oceanexpert.org/expert/44653 -https://www.oceanexpert.org/expert/44654 -https://www.oceanexpert.org/expert/44655 -https://www.oceanexpert.org/expert/44656 -https://www.oceanexpert.org/expert/44657 -https://www.oceanexpert.org/expert/44658 -https://www.oceanexpert.org/expert/44659 -https://www.oceanexpert.org/expert/44661 -https://www.oceanexpert.org/expert/44662 -https://www.oceanexpert.org/expert/44664 -https://www.oceanexpert.org/expert/44665 -https://www.oceanexpert.org/expert/44666 -https://www.oceanexpert.org/expert/44668 -https://www.oceanexpert.org/expert/44669 -https://www.oceanexpert.org/expert/44671 -https://www.oceanexpert.org/expert/44672 -https://www.oceanexpert.org/expert/44673 -https://www.oceanexpert.org/expert/44674 -https://www.oceanexpert.org/expert/44676 -https://www.oceanexpert.org/expert/44677 -https://www.oceanexpert.org/expert/44678 -https://www.oceanexpert.org/expert/44679 -https://www.oceanexpert.org/expert/44680 -https://www.oceanexpert.org/expert/44682 -https://www.oceanexpert.org/expert/44683 -https://www.oceanexpert.org/expert/44685 -https://www.oceanexpert.org/expert/44687 -https://www.oceanexpert.org/expert/44688 -https://www.oceanexpert.org/expert/44689 -https://www.oceanexpert.org/expert/44690 -https://www.oceanexpert.org/expert/44692 -https://www.oceanexpert.org/expert/44693 -https://www.oceanexpert.org/expert/44694 -https://www.oceanexpert.org/expert/44697 -https://www.oceanexpert.org/expert/44699 -https://www.oceanexpert.org/expert/44700 -https://www.oceanexpert.org/expert/44701 -https://www.oceanexpert.org/expert/44702 -https://www.oceanexpert.org/expert/44704 -https://www.oceanexpert.org/expert/44705 -https://www.oceanexpert.org/expert/44706 -https://www.oceanexpert.org/expert/44707 -https://www.oceanexpert.org/expert/44708 -https://www.oceanexpert.org/expert/44709 -https://www.oceanexpert.org/expert/44711 -https://www.oceanexpert.org/expert/44712 -https://www.oceanexpert.org/expert/44713 -https://www.oceanexpert.org/expert/44714 -https://www.oceanexpert.org/expert/44715 -https://www.oceanexpert.org/expert/44716 -https://www.oceanexpert.org/expert/44717 -https://www.oceanexpert.org/expert/44718 -https://www.oceanexpert.org/expert/44719 -https://www.oceanexpert.org/expert/44720 -https://www.oceanexpert.org/expert/44721 -https://www.oceanexpert.org/expert/44722 -https://www.oceanexpert.org/expert/44723 -https://www.oceanexpert.org/expert/44724 -https://www.oceanexpert.org/expert/44725 -https://www.oceanexpert.org/expert/44726 -https://www.oceanexpert.org/expert/44728 -https://www.oceanexpert.org/expert/44729 -https://www.oceanexpert.org/expert/44730 -https://www.oceanexpert.org/expert/44732 -https://www.oceanexpert.org/expert/44733 -https://www.oceanexpert.org/expert/44734 -https://www.oceanexpert.org/expert/44735 -https://www.oceanexpert.org/expert/44736 -https://www.oceanexpert.org/expert/44737 -https://www.oceanexpert.org/expert/44738 -https://www.oceanexpert.org/expert/44739 -https://www.oceanexpert.org/expert/44740 -https://www.oceanexpert.org/expert/44741 -https://www.oceanexpert.org/expert/44742 -https://www.oceanexpert.org/expert/44743 -https://www.oceanexpert.org/expert/44745 -https://www.oceanexpert.org/expert/44746 -https://www.oceanexpert.org/expert/44748 -https://www.oceanexpert.org/expert/44751 -https://www.oceanexpert.org/expert/44752 -https://www.oceanexpert.org/expert/44755 -https://www.oceanexpert.org/expert/44756 -https://www.oceanexpert.org/expert/44757 -https://www.oceanexpert.org/expert/44758 -https://www.oceanexpert.org/expert/44759 -https://www.oceanexpert.org/expert/44760 -https://www.oceanexpert.org/expert/44761 -https://www.oceanexpert.org/expert/44762 -https://www.oceanexpert.org/expert/44763 -https://www.oceanexpert.org/expert/44764 -https://www.oceanexpert.org/expert/44766 -https://www.oceanexpert.org/expert/44767 -https://www.oceanexpert.org/expert/44768 -https://www.oceanexpert.org/expert/44769 -https://www.oceanexpert.org/expert/44770 -https://www.oceanexpert.org/expert/44771 -https://www.oceanexpert.org/expert/44772 -https://www.oceanexpert.org/expert/44773 -https://www.oceanexpert.org/expert/44774 -https://www.oceanexpert.org/expert/44776 -https://www.oceanexpert.org/expert/44777 -https://www.oceanexpert.org/expert/44778 -https://www.oceanexpert.org/expert/44779 -https://www.oceanexpert.org/expert/44780 -https://www.oceanexpert.org/expert/44782 -https://www.oceanexpert.org/expert/44784 -https://www.oceanexpert.org/expert/44785 -https://www.oceanexpert.org/expert/44786 -https://www.oceanexpert.org/expert/44787 -https://www.oceanexpert.org/expert/44788 -https://www.oceanexpert.org/expert/44789 -https://www.oceanexpert.org/expert/44791 -https://www.oceanexpert.org/expert/44792 -https://www.oceanexpert.org/expert/44794 -https://www.oceanexpert.org/expert/44795 -https://www.oceanexpert.org/expert/44797 -https://www.oceanexpert.org/expert/44798 -https://www.oceanexpert.org/expert/44800 -https://www.oceanexpert.org/expert/44801 -https://www.oceanexpert.org/expert/44802 -https://www.oceanexpert.org/expert/44803 -https://www.oceanexpert.org/expert/44804 -https://www.oceanexpert.org/expert/44805 -https://www.oceanexpert.org/expert/44806 -https://www.oceanexpert.org/expert/44807 -https://www.oceanexpert.org/expert/44808 -https://www.oceanexpert.org/expert/44809 -https://www.oceanexpert.org/expert/44810 -https://www.oceanexpert.org/expert/44811 -https://www.oceanexpert.org/expert/44812 -https://www.oceanexpert.org/expert/44813 -https://www.oceanexpert.org/expert/44814 -https://www.oceanexpert.org/expert/44816 -https://www.oceanexpert.org/expert/44817 -https://www.oceanexpert.org/expert/44818 -https://www.oceanexpert.org/expert/44819 -https://www.oceanexpert.org/expert/44820 -https://www.oceanexpert.org/expert/44821 -https://www.oceanexpert.org/expert/44822 -https://www.oceanexpert.org/expert/44823 -https://www.oceanexpert.org/expert/44825 -https://www.oceanexpert.org/expert/44826 -https://www.oceanexpert.org/expert/44830 -https://www.oceanexpert.org/expert/44831 -https://www.oceanexpert.org/expert/44832 -https://www.oceanexpert.org/expert/44833 -https://www.oceanexpert.org/expert/44834 -https://www.oceanexpert.org/expert/44835 -https://www.oceanexpert.org/expert/44838 -https://www.oceanexpert.org/expert/44839 -https://www.oceanexpert.org/expert/44840 -https://www.oceanexpert.org/expert/44841 -https://www.oceanexpert.org/expert/44842 -https://www.oceanexpert.org/expert/44843 -https://www.oceanexpert.org/expert/44844 -https://www.oceanexpert.org/expert/44845 -https://www.oceanexpert.org/expert/44846 -https://www.oceanexpert.org/expert/44847 -https://www.oceanexpert.org/expert/44848 -https://www.oceanexpert.org/expert/44849 -https://www.oceanexpert.org/expert/44850 -https://www.oceanexpert.org/expert/44851 -https://www.oceanexpert.org/expert/44852 -https://www.oceanexpert.org/expert/44854 -https://www.oceanexpert.org/expert/44855 -https://www.oceanexpert.org/expert/44856 -https://www.oceanexpert.org/expert/44859 -https://www.oceanexpert.org/expert/44861 -https://www.oceanexpert.org/expert/44862 -https://www.oceanexpert.org/expert/44863 -https://www.oceanexpert.org/expert/44864 -https://www.oceanexpert.org/expert/44865 -https://www.oceanexpert.org/expert/44867 -https://www.oceanexpert.org/expert/44868 -https://www.oceanexpert.org/expert/44869 -https://www.oceanexpert.org/expert/44870 -https://www.oceanexpert.org/expert/44872 -https://www.oceanexpert.org/expert/44875 -https://www.oceanexpert.org/expert/44876 -https://www.oceanexpert.org/expert/44877 -https://www.oceanexpert.org/expert/44881 -https://www.oceanexpert.org/expert/44883 -https://www.oceanexpert.org/expert/44884 -https://www.oceanexpert.org/expert/44885 -https://www.oceanexpert.org/expert/44886 -https://www.oceanexpert.org/expert/44888 -https://www.oceanexpert.org/expert/44889 -https://www.oceanexpert.org/expert/44890 -https://www.oceanexpert.org/expert/44891 -https://www.oceanexpert.org/expert/44892 -https://www.oceanexpert.org/expert/44893 -https://www.oceanexpert.org/expert/44894 -https://www.oceanexpert.org/expert/44895 -https://www.oceanexpert.org/expert/44896 -https://www.oceanexpert.org/expert/44897 -https://www.oceanexpert.org/expert/44899 -https://www.oceanexpert.org/expert/44901 -https://www.oceanexpert.org/expert/44902 -https://www.oceanexpert.org/expert/44906 -https://www.oceanexpert.org/expert/44908 -https://www.oceanexpert.org/expert/44909 -https://www.oceanexpert.org/expert/44910 -https://www.oceanexpert.org/expert/44911 -https://www.oceanexpert.org/expert/44912 -https://www.oceanexpert.org/expert/44913 -https://www.oceanexpert.org/expert/44915 -https://www.oceanexpert.org/expert/44917 -https://www.oceanexpert.org/expert/44918 -https://www.oceanexpert.org/expert/44921 -https://www.oceanexpert.org/expert/44925 -https://www.oceanexpert.org/expert/44926 -https://www.oceanexpert.org/expert/44927 -https://www.oceanexpert.org/expert/44929 -https://www.oceanexpert.org/expert/44930 -https://www.oceanexpert.org/expert/44931 -https://www.oceanexpert.org/expert/44932 -https://www.oceanexpert.org/expert/44933 -https://www.oceanexpert.org/expert/44934 -https://www.oceanexpert.org/expert/44935 -https://www.oceanexpert.org/expert/44936 -https://www.oceanexpert.org/expert/44937 -https://www.oceanexpert.org/expert/44938 -https://www.oceanexpert.org/expert/44939 -https://www.oceanexpert.org/expert/44940 -https://www.oceanexpert.org/expert/44941 -https://www.oceanexpert.org/expert/44942 -https://www.oceanexpert.org/expert/44943 -https://www.oceanexpert.org/expert/44944 -https://www.oceanexpert.org/expert/44945 -https://www.oceanexpert.org/expert/44946 -https://www.oceanexpert.org/expert/44947 -https://www.oceanexpert.org/expert/44952 -https://www.oceanexpert.org/expert/44953 -https://www.oceanexpert.org/expert/44955 -https://www.oceanexpert.org/expert/44956 -https://www.oceanexpert.org/expert/44957 -https://www.oceanexpert.org/expert/44958 -https://www.oceanexpert.org/expert/44959 -https://www.oceanexpert.org/expert/44960 -https://www.oceanexpert.org/expert/44961 -https://www.oceanexpert.org/expert/44962 -https://www.oceanexpert.org/expert/44963 -https://www.oceanexpert.org/expert/44964 -https://www.oceanexpert.org/expert/44966 -https://www.oceanexpert.org/expert/44967 -https://www.oceanexpert.org/expert/44968 -https://www.oceanexpert.org/expert/44969 -https://www.oceanexpert.org/expert/44970 -https://www.oceanexpert.org/expert/44971 -https://www.oceanexpert.org/expert/44972 -https://www.oceanexpert.org/expert/44973 -https://www.oceanexpert.org/expert/44975 -https://www.oceanexpert.org/expert/44976 -https://www.oceanexpert.org/expert/44978 -https://www.oceanexpert.org/expert/44979 -https://www.oceanexpert.org/expert/44980 -https://www.oceanexpert.org/expert/44981 -https://www.oceanexpert.org/expert/44983 -https://www.oceanexpert.org/expert/44984 -https://www.oceanexpert.org/expert/44987 -https://www.oceanexpert.org/expert/44989 -https://www.oceanexpert.org/expert/44992 -https://www.oceanexpert.org/expert/44995 -https://www.oceanexpert.org/expert/44996 -https://www.oceanexpert.org/expert/44997 -https://www.oceanexpert.org/expert/44999 -https://www.oceanexpert.org/expert/45004 -https://www.oceanexpert.org/expert/45006 -https://www.oceanexpert.org/expert/45008 -https://www.oceanexpert.org/expert/45013 -https://www.oceanexpert.org/expert/45014 -https://www.oceanexpert.org/expert/45022 -https://www.oceanexpert.org/expert/45023 -https://www.oceanexpert.org/expert/45025 -https://www.oceanexpert.org/expert/45027 -https://www.oceanexpert.org/expert/45028 -https://www.oceanexpert.org/expert/45030 -https://www.oceanexpert.org/expert/45031 -https://www.oceanexpert.org/expert/45032 -https://www.oceanexpert.org/expert/45034 -https://www.oceanexpert.org/expert/45035 -https://www.oceanexpert.org/expert/45036 -https://www.oceanexpert.org/expert/45037 -https://www.oceanexpert.org/expert/45038 -https://www.oceanexpert.org/expert/45039 -https://www.oceanexpert.org/expert/45041 -https://www.oceanexpert.org/expert/45042 -https://www.oceanexpert.org/expert/45043 -https://www.oceanexpert.org/expert/45044 -https://www.oceanexpert.org/expert/45045 -https://www.oceanexpert.org/expert/45046 -https://www.oceanexpert.org/expert/45047 -https://www.oceanexpert.org/expert/45048 -https://www.oceanexpert.org/expert/45054 -https://www.oceanexpert.org/expert/45055 -https://www.oceanexpert.org/expert/45058 -https://www.oceanexpert.org/expert/45059 -https://www.oceanexpert.org/expert/45060 -https://www.oceanexpert.org/expert/45062 -https://www.oceanexpert.org/expert/45063 -https://www.oceanexpert.org/expert/45064 -https://www.oceanexpert.org/expert/45065 -https://www.oceanexpert.org/expert/45066 -https://www.oceanexpert.org/expert/45067 -https://www.oceanexpert.org/expert/45068 -https://www.oceanexpert.org/expert/45070 -https://www.oceanexpert.org/expert/45072 -https://www.oceanexpert.org/expert/45074 -https://www.oceanexpert.org/expert/45076 -https://www.oceanexpert.org/expert/45077 -https://www.oceanexpert.org/expert/45078 -https://www.oceanexpert.org/expert/45079 -https://www.oceanexpert.org/expert/45084 -https://www.oceanexpert.org/expert/45086 -https://www.oceanexpert.org/expert/45087 -https://www.oceanexpert.org/expert/45089 -https://www.oceanexpert.org/expert/45090 -https://www.oceanexpert.org/expert/45092 -https://www.oceanexpert.org/expert/45093 -https://www.oceanexpert.org/expert/45095 -https://www.oceanexpert.org/expert/45099 -https://www.oceanexpert.org/expert/45100 -https://www.oceanexpert.org/expert/45101 -https://www.oceanexpert.org/expert/45102 -https://www.oceanexpert.org/expert/45103 -https://www.oceanexpert.org/expert/45104 -https://www.oceanexpert.org/expert/45107 -https://www.oceanexpert.org/expert/45109 -https://www.oceanexpert.org/expert/45110 -https://www.oceanexpert.org/expert/45112 -https://www.oceanexpert.org/expert/45113 -https://www.oceanexpert.org/expert/45115 -https://www.oceanexpert.org/expert/45119 -https://www.oceanexpert.org/expert/45121 -https://www.oceanexpert.org/expert/45122 -https://www.oceanexpert.org/expert/45123 -https://www.oceanexpert.org/expert/45124 -https://www.oceanexpert.org/expert/45125 -https://www.oceanexpert.org/expert/45128 -https://www.oceanexpert.org/expert/45130 -https://www.oceanexpert.org/expert/45131 -https://www.oceanexpert.org/expert/45132 -https://www.oceanexpert.org/expert/45133 -https://www.oceanexpert.org/expert/45134 -https://www.oceanexpert.org/expert/45137 -https://www.oceanexpert.org/expert/45139 -https://www.oceanexpert.org/expert/45140 -https://www.oceanexpert.org/expert/45142 -https://www.oceanexpert.org/expert/45143 -https://www.oceanexpert.org/expert/45144 -https://www.oceanexpert.org/expert/45147 -https://www.oceanexpert.org/expert/45148 -https://www.oceanexpert.org/expert/45150 -https://www.oceanexpert.org/expert/45151 -https://www.oceanexpert.org/expert/45152 -https://www.oceanexpert.org/expert/45155 -https://www.oceanexpert.org/expert/45156 -https://www.oceanexpert.org/expert/45159 -https://www.oceanexpert.org/expert/45160 -https://www.oceanexpert.org/expert/45161 -https://www.oceanexpert.org/expert/45163 -https://www.oceanexpert.org/expert/45165 -https://www.oceanexpert.org/expert/45166 -https://www.oceanexpert.org/expert/45169 -https://www.oceanexpert.org/expert/45170 -https://www.oceanexpert.org/expert/45171 -https://www.oceanexpert.org/expert/45172 -https://www.oceanexpert.org/expert/45173 -https://www.oceanexpert.org/expert/45174 -https://www.oceanexpert.org/expert/45176 -https://www.oceanexpert.org/expert/45177 -https://www.oceanexpert.org/expert/45178 -https://www.oceanexpert.org/expert/45180 -https://www.oceanexpert.org/expert/45181 -https://www.oceanexpert.org/expert/45182 -https://www.oceanexpert.org/expert/45184 -https://www.oceanexpert.org/expert/45185 -https://www.oceanexpert.org/expert/45187 -https://www.oceanexpert.org/expert/45190 -https://www.oceanexpert.org/expert/45193 -https://www.oceanexpert.org/expert/45194 -https://www.oceanexpert.org/expert/45197 -https://www.oceanexpert.org/expert/45199 -https://www.oceanexpert.org/expert/45200 -https://www.oceanexpert.org/expert/45204 -https://www.oceanexpert.org/expert/45205 -https://www.oceanexpert.org/expert/45206 -https://www.oceanexpert.org/expert/45209 -https://www.oceanexpert.org/expert/45214 -https://www.oceanexpert.org/expert/45222 -https://www.oceanexpert.org/expert/45231 -https://www.oceanexpert.org/expert/45233 -https://www.oceanexpert.org/expert/45236 -https://www.oceanexpert.org/expert/45245 -https://www.oceanexpert.org/expert/45249 -https://www.oceanexpert.org/expert/45253 -https://www.oceanexpert.org/expert/45255 -https://www.oceanexpert.org/expert/45262 -https://www.oceanexpert.org/expert/45281 -https://www.oceanexpert.org/expert/45286 -https://www.oceanexpert.org/expert/45289 -https://www.oceanexpert.org/expert/45291 -https://www.oceanexpert.org/expert/45293 -https://www.oceanexpert.org/expert/45294 -https://www.oceanexpert.org/expert/45296 -https://www.oceanexpert.org/expert/45300 -https://www.oceanexpert.org/expert/45302 -https://www.oceanexpert.org/expert/45303 -https://www.oceanexpert.org/expert/45304 -https://www.oceanexpert.org/expert/45307 -https://www.oceanexpert.org/expert/45310 -https://www.oceanexpert.org/expert/45311 -https://www.oceanexpert.org/expert/45312 -https://www.oceanexpert.org/expert/45314 -https://www.oceanexpert.org/expert/45320 -https://www.oceanexpert.org/expert/45321 -https://www.oceanexpert.org/expert/45323 -https://www.oceanexpert.org/expert/45325 -https://www.oceanexpert.org/expert/45328 -https://www.oceanexpert.org/expert/45331 -https://www.oceanexpert.org/expert/45332 -https://www.oceanexpert.org/expert/45334 -https://www.oceanexpert.org/expert/45335 -https://www.oceanexpert.org/expert/45337 -https://www.oceanexpert.org/expert/45339 -https://www.oceanexpert.org/expert/45343 -https://www.oceanexpert.org/expert/45344 -https://www.oceanexpert.org/expert/45347 -https://www.oceanexpert.org/expert/45348 -https://www.oceanexpert.org/expert/45351 -https://www.oceanexpert.org/expert/45355 -https://www.oceanexpert.org/expert/45356 -https://www.oceanexpert.org/expert/45365 -https://www.oceanexpert.org/expert/45366 -https://www.oceanexpert.org/expert/45367 -https://www.oceanexpert.org/expert/45368 -https://www.oceanexpert.org/expert/45371 -https://www.oceanexpert.org/expert/45372 -https://www.oceanexpert.org/expert/45373 -https://www.oceanexpert.org/expert/45374 -https://www.oceanexpert.org/expert/45375 -https://www.oceanexpert.org/expert/45376 -https://www.oceanexpert.org/expert/45378 -https://www.oceanexpert.org/expert/45382 -https://www.oceanexpert.org/expert/45383 -https://www.oceanexpert.org/expert/45388 -https://www.oceanexpert.org/expert/45393 -https://www.oceanexpert.org/expert/45394 -https://www.oceanexpert.org/expert/45399 -https://www.oceanexpert.org/expert/45402 -https://www.oceanexpert.org/expert/45404 -https://www.oceanexpert.org/expert/45405 -https://www.oceanexpert.org/expert/45406 -https://www.oceanexpert.org/expert/45407 -https://www.oceanexpert.org/expert/45408 -https://www.oceanexpert.org/expert/45410 -https://www.oceanexpert.org/expert/45412 -https://www.oceanexpert.org/expert/45416 -https://www.oceanexpert.org/expert/45417 -https://www.oceanexpert.org/expert/45418 -https://www.oceanexpert.org/expert/45420 -https://www.oceanexpert.org/expert/45423 -https://www.oceanexpert.org/expert/45425 -https://www.oceanexpert.org/expert/45428 -https://www.oceanexpert.org/expert/45429 -https://www.oceanexpert.org/expert/45430 -https://www.oceanexpert.org/expert/45431 -https://www.oceanexpert.org/expert/45432 -https://www.oceanexpert.org/expert/45433 -https://www.oceanexpert.org/expert/45434 -https://www.oceanexpert.org/expert/45435 -https://www.oceanexpert.org/expert/45442 -https://www.oceanexpert.org/expert/45445 -https://www.oceanexpert.org/expert/45446 -https://www.oceanexpert.org/expert/45447 -https://www.oceanexpert.org/expert/45448 -https://www.oceanexpert.org/expert/45450 -https://www.oceanexpert.org/expert/45452 -https://www.oceanexpert.org/expert/45453 -https://www.oceanexpert.org/expert/45456 -https://www.oceanexpert.org/expert/45457 -https://www.oceanexpert.org/expert/45459 -https://www.oceanexpert.org/expert/45460 -https://www.oceanexpert.org/expert/45461 -https://www.oceanexpert.org/expert/45462 -https://www.oceanexpert.org/expert/45463 -https://www.oceanexpert.org/expert/45464 -https://www.oceanexpert.org/expert/45465 -https://www.oceanexpert.org/expert/45467 -https://www.oceanexpert.org/expert/45468 -https://www.oceanexpert.org/expert/45469 -https://www.oceanexpert.org/expert/45470 -https://www.oceanexpert.org/expert/45472 -https://www.oceanexpert.org/expert/45473 -https://www.oceanexpert.org/expert/45474 -https://www.oceanexpert.org/expert/45475 -https://www.oceanexpert.org/expert/45476 -https://www.oceanexpert.org/expert/45478 -https://www.oceanexpert.org/expert/45479 -https://www.oceanexpert.org/expert/45481 -https://www.oceanexpert.org/expert/45482 -https://www.oceanexpert.org/expert/45484 -https://www.oceanexpert.org/expert/45485 -https://www.oceanexpert.org/expert/45487 -https://www.oceanexpert.org/expert/45488 -https://www.oceanexpert.org/expert/45490 -https://www.oceanexpert.org/expert/45491 -https://www.oceanexpert.org/expert/45492 -https://www.oceanexpert.org/expert/45495 -https://www.oceanexpert.org/expert/45496 -https://www.oceanexpert.org/expert/45499 -https://www.oceanexpert.org/expert/45501 -https://www.oceanexpert.org/expert/45504 -https://www.oceanexpert.org/expert/45505 -https://www.oceanexpert.org/expert/45506 -https://www.oceanexpert.org/expert/45507 -https://www.oceanexpert.org/expert/45508 -https://www.oceanexpert.org/expert/45509 -https://www.oceanexpert.org/expert/45514 -https://www.oceanexpert.org/expert/45516 -https://www.oceanexpert.org/expert/45517 -https://www.oceanexpert.org/expert/45519 -https://www.oceanexpert.org/expert/45522 -https://www.oceanexpert.org/expert/45523 -https://www.oceanexpert.org/expert/45527 -https://www.oceanexpert.org/expert/45528 -https://www.oceanexpert.org/expert/45529 -https://www.oceanexpert.org/expert/45530 -https://www.oceanexpert.org/expert/45531 -https://www.oceanexpert.org/expert/45532 -https://www.oceanexpert.org/expert/45533 -https://www.oceanexpert.org/expert/45534 -https://www.oceanexpert.org/expert/45537 -https://www.oceanexpert.org/expert/45538 -https://www.oceanexpert.org/expert/45539 -https://www.oceanexpert.org/expert/45540 -https://www.oceanexpert.org/expert/45541 -https://www.oceanexpert.org/expert/45546 -https://www.oceanexpert.org/expert/45547 -https://www.oceanexpert.org/expert/45548 -https://www.oceanexpert.org/expert/45549 -https://www.oceanexpert.org/expert/45550 -https://www.oceanexpert.org/expert/45552 -https://www.oceanexpert.org/expert/45555 -https://www.oceanexpert.org/expert/45556 -https://www.oceanexpert.org/expert/45557 -https://www.oceanexpert.org/expert/45558 -https://www.oceanexpert.org/expert/45559 -https://www.oceanexpert.org/expert/45560 -https://www.oceanexpert.org/expert/45561 -https://www.oceanexpert.org/expert/45562 -https://www.oceanexpert.org/expert/45564 -https://www.oceanexpert.org/expert/45565 -https://www.oceanexpert.org/expert/45566 -https://www.oceanexpert.org/expert/45567 -https://www.oceanexpert.org/expert/45568 -https://www.oceanexpert.org/expert/45570 -https://www.oceanexpert.org/expert/45571 -https://www.oceanexpert.org/expert/45572 -https://www.oceanexpert.org/expert/45573 -https://www.oceanexpert.org/expert/45574 -https://www.oceanexpert.org/expert/45575 -https://www.oceanexpert.org/expert/45576 -https://www.oceanexpert.org/expert/45577 -https://www.oceanexpert.org/expert/45579 -https://www.oceanexpert.org/expert/45581 -https://www.oceanexpert.org/expert/45586 -https://www.oceanexpert.org/expert/45589 -https://www.oceanexpert.org/expert/45590 -https://www.oceanexpert.org/expert/45591 -https://www.oceanexpert.org/expert/45592 -https://www.oceanexpert.org/expert/45594 -https://www.oceanexpert.org/expert/45595 -https://www.oceanexpert.org/expert/45596 -https://www.oceanexpert.org/expert/45597 -https://www.oceanexpert.org/expert/45598 -https://www.oceanexpert.org/expert/45600 -https://www.oceanexpert.org/expert/45601 -https://www.oceanexpert.org/expert/45603 -https://www.oceanexpert.org/expert/45604 -https://www.oceanexpert.org/expert/45607 -https://www.oceanexpert.org/expert/45608 -https://www.oceanexpert.org/expert/45609 -https://www.oceanexpert.org/expert/45610 -https://www.oceanexpert.org/expert/45611 -https://www.oceanexpert.org/expert/45613 -https://www.oceanexpert.org/expert/45615 -https://www.oceanexpert.org/expert/45616 -https://www.oceanexpert.org/expert/45617 -https://www.oceanexpert.org/expert/45618 -https://www.oceanexpert.org/expert/45619 -https://www.oceanexpert.org/expert/45620 -https://www.oceanexpert.org/expert/45621 -https://www.oceanexpert.org/expert/45624 -https://www.oceanexpert.org/expert/45626 -https://www.oceanexpert.org/expert/45628 -https://www.oceanexpert.org/expert/45630 -https://www.oceanexpert.org/expert/45631 -https://www.oceanexpert.org/expert/45632 -https://www.oceanexpert.org/expert/45634 -https://www.oceanexpert.org/expert/45635 -https://www.oceanexpert.org/expert/45636 -https://www.oceanexpert.org/expert/45639 -https://www.oceanexpert.org/expert/45640 -https://www.oceanexpert.org/expert/45642 -https://www.oceanexpert.org/expert/45643 -https://www.oceanexpert.org/expert/45644 -https://www.oceanexpert.org/expert/45645 -https://www.oceanexpert.org/expert/45646 -https://www.oceanexpert.org/expert/45647 -https://www.oceanexpert.org/expert/45648 -https://www.oceanexpert.org/expert/45649 -https://www.oceanexpert.org/expert/45650 -https://www.oceanexpert.org/expert/45651 -https://www.oceanexpert.org/expert/45652 -https://www.oceanexpert.org/expert/45655 -https://www.oceanexpert.org/expert/45656 -https://www.oceanexpert.org/expert/45657 -https://www.oceanexpert.org/expert/45658 -https://www.oceanexpert.org/expert/45660 -https://www.oceanexpert.org/expert/45661 -https://www.oceanexpert.org/expert/45662 -https://www.oceanexpert.org/expert/45663 -https://www.oceanexpert.org/expert/45664 -https://www.oceanexpert.org/expert/45665 -https://www.oceanexpert.org/expert/45667 -https://www.oceanexpert.org/expert/45669 -https://www.oceanexpert.org/expert/45670 -https://www.oceanexpert.org/expert/45671 -https://www.oceanexpert.org/expert/45672 -https://www.oceanexpert.org/expert/45673 -https://www.oceanexpert.org/expert/45674 -https://www.oceanexpert.org/expert/45678 -https://www.oceanexpert.org/expert/45680 -https://www.oceanexpert.org/expert/45681 -https://www.oceanexpert.org/expert/45682 -https://www.oceanexpert.org/expert/45683 -https://www.oceanexpert.org/expert/45684 -https://www.oceanexpert.org/expert/45685 -https://www.oceanexpert.org/expert/45686 -https://www.oceanexpert.org/expert/45687 -https://www.oceanexpert.org/expert/45690 -https://www.oceanexpert.org/expert/45692 -https://www.oceanexpert.org/expert/45693 -https://www.oceanexpert.org/expert/45694 -https://www.oceanexpert.org/expert/45695 -https://www.oceanexpert.org/expert/45697 -https://www.oceanexpert.org/expert/45699 -https://www.oceanexpert.org/expert/45700 -https://www.oceanexpert.org/expert/45701 -https://www.oceanexpert.org/expert/45703 -https://www.oceanexpert.org/expert/45704 -https://www.oceanexpert.org/expert/45706 -https://www.oceanexpert.org/expert/45707 -https://www.oceanexpert.org/expert/45708 -https://www.oceanexpert.org/expert/45711 -https://www.oceanexpert.org/expert/45713 -https://www.oceanexpert.org/expert/45714 -https://www.oceanexpert.org/expert/45715 -https://www.oceanexpert.org/expert/45716 -https://www.oceanexpert.org/expert/45718 -https://www.oceanexpert.org/expert/45722 -https://www.oceanexpert.org/expert/45723 -https://www.oceanexpert.org/expert/45725 -https://www.oceanexpert.org/expert/45726 -https://www.oceanexpert.org/expert/45728 -https://www.oceanexpert.org/expert/45731 -https://www.oceanexpert.org/expert/45732 -https://www.oceanexpert.org/expert/45736 -https://www.oceanexpert.org/expert/45737 -https://www.oceanexpert.org/expert/45744 -https://www.oceanexpert.org/expert/45747 -https://www.oceanexpert.org/expert/45752 -https://www.oceanexpert.org/expert/45754 -https://www.oceanexpert.org/expert/45757 -https://www.oceanexpert.org/expert/45758 -https://www.oceanexpert.org/expert/45759 -https://www.oceanexpert.org/expert/45760 -https://www.oceanexpert.org/expert/45762 -https://www.oceanexpert.org/expert/45763 -https://www.oceanexpert.org/expert/45765 -https://www.oceanexpert.org/expert/45766 -https://www.oceanexpert.org/expert/45769 -https://www.oceanexpert.org/expert/45770 -https://www.oceanexpert.org/expert/45771 -https://www.oceanexpert.org/expert/45773 -https://www.oceanexpert.org/expert/45774 -https://www.oceanexpert.org/expert/45775 -https://www.oceanexpert.org/expert/45776 -https://www.oceanexpert.org/expert/45778 -https://www.oceanexpert.org/expert/45779 -https://www.oceanexpert.org/expert/45784 -https://www.oceanexpert.org/expert/45785 -https://www.oceanexpert.org/expert/45787 -https://www.oceanexpert.org/expert/45788 -https://www.oceanexpert.org/expert/45789 -https://www.oceanexpert.org/expert/45790 -https://www.oceanexpert.org/expert/45791 -https://www.oceanexpert.org/expert/45793 -https://www.oceanexpert.org/expert/45795 -https://www.oceanexpert.org/expert/45797 -https://www.oceanexpert.org/expert/45798 -https://www.oceanexpert.org/expert/45801 -https://www.oceanexpert.org/expert/45802 -https://www.oceanexpert.org/expert/45803 -https://www.oceanexpert.org/expert/45804 -https://www.oceanexpert.org/expert/45805 -https://www.oceanexpert.org/expert/45806 -https://www.oceanexpert.org/expert/45807 -https://www.oceanexpert.org/expert/45808 -https://www.oceanexpert.org/expert/45809 -https://www.oceanexpert.org/expert/45810 -https://www.oceanexpert.org/expert/45811 -https://www.oceanexpert.org/expert/45812 -https://www.oceanexpert.org/expert/45814 -https://www.oceanexpert.org/expert/45815 -https://www.oceanexpert.org/expert/45817 -https://www.oceanexpert.org/expert/45818 -https://www.oceanexpert.org/expert/45819 -https://www.oceanexpert.org/expert/45820 -https://www.oceanexpert.org/expert/45824 -https://www.oceanexpert.org/expert/45826 -https://www.oceanexpert.org/expert/45827 -https://www.oceanexpert.org/expert/45828 -https://www.oceanexpert.org/expert/45829 -https://www.oceanexpert.org/expert/45831 -https://www.oceanexpert.org/expert/45836 -https://www.oceanexpert.org/expert/45837 -https://www.oceanexpert.org/expert/45838 -https://www.oceanexpert.org/expert/45839 -https://www.oceanexpert.org/expert/45842 -https://www.oceanexpert.org/expert/45843 -https://www.oceanexpert.org/expert/45844 -https://www.oceanexpert.org/expert/45845 -https://www.oceanexpert.org/expert/45846 -https://www.oceanexpert.org/expert/45847 -https://www.oceanexpert.org/expert/45848 -https://www.oceanexpert.org/expert/45850 -https://www.oceanexpert.org/expert/45853 -https://www.oceanexpert.org/expert/45854 -https://www.oceanexpert.org/expert/45857 -https://www.oceanexpert.org/expert/45862 -https://www.oceanexpert.org/expert/45864 -https://www.oceanexpert.org/expert/45865 -https://www.oceanexpert.org/expert/45866 -https://www.oceanexpert.org/expert/45868 -https://www.oceanexpert.org/expert/45873 -https://www.oceanexpert.org/expert/45874 -https://www.oceanexpert.org/expert/45875 -https://www.oceanexpert.org/expert/45876 -https://www.oceanexpert.org/expert/45877 -https://www.oceanexpert.org/expert/45879 -https://www.oceanexpert.org/expert/45880 -https://www.oceanexpert.org/expert/45881 -https://www.oceanexpert.org/expert/45883 -https://www.oceanexpert.org/expert/45884 -https://www.oceanexpert.org/expert/45885 -https://www.oceanexpert.org/expert/45886 -https://www.oceanexpert.org/expert/45887 -https://www.oceanexpert.org/expert/45888 -https://www.oceanexpert.org/expert/45889 -https://www.oceanexpert.org/expert/45890 -https://www.oceanexpert.org/expert/45891 -https://www.oceanexpert.org/expert/45892 -https://www.oceanexpert.org/expert/45893 -https://www.oceanexpert.org/expert/45895 -https://www.oceanexpert.org/expert/45896 -https://www.oceanexpert.org/expert/45897 -https://www.oceanexpert.org/expert/45898 -https://www.oceanexpert.org/expert/45899 -https://www.oceanexpert.org/expert/45901 -https://www.oceanexpert.org/expert/45902 -https://www.oceanexpert.org/expert/45905 -https://www.oceanexpert.org/expert/45906 -https://www.oceanexpert.org/expert/45908 -https://www.oceanexpert.org/expert/45910 -https://www.oceanexpert.org/expert/45911 -https://www.oceanexpert.org/expert/45912 -https://www.oceanexpert.org/expert/45913 -https://www.oceanexpert.org/expert/45915 -https://www.oceanexpert.org/expert/45918 -https://www.oceanexpert.org/expert/45920 -https://www.oceanexpert.org/expert/45921 -https://www.oceanexpert.org/expert/45923 -https://www.oceanexpert.org/expert/45925 -https://www.oceanexpert.org/expert/45926 -https://www.oceanexpert.org/expert/45927 -https://www.oceanexpert.org/expert/45928 -https://www.oceanexpert.org/expert/45930 -https://www.oceanexpert.org/expert/45931 -https://www.oceanexpert.org/expert/45932 -https://www.oceanexpert.org/expert/45933 -https://www.oceanexpert.org/expert/45934 -https://www.oceanexpert.org/expert/45935 -https://www.oceanexpert.org/expert/45936 -https://www.oceanexpert.org/expert/45937 -https://www.oceanexpert.org/expert/45939 -https://www.oceanexpert.org/expert/45940 -https://www.oceanexpert.org/expert/45943 -https://www.oceanexpert.org/expert/45944 -https://www.oceanexpert.org/expert/45945 -https://www.oceanexpert.org/expert/45946 -https://www.oceanexpert.org/expert/45950 -https://www.oceanexpert.org/expert/45951 -https://www.oceanexpert.org/expert/45952 -https://www.oceanexpert.org/expert/45953 -https://www.oceanexpert.org/expert/45954 -https://www.oceanexpert.org/expert/45956 -https://www.oceanexpert.org/expert/45962 -https://www.oceanexpert.org/expert/45963 -https://www.oceanexpert.org/expert/45964 -https://www.oceanexpert.org/expert/45965 -https://www.oceanexpert.org/expert/45966 -https://www.oceanexpert.org/expert/45967 -https://www.oceanexpert.org/expert/45969 -https://www.oceanexpert.org/expert/45971 -https://www.oceanexpert.org/expert/45972 -https://www.oceanexpert.org/expert/45973 -https://www.oceanexpert.org/expert/45975 -https://www.oceanexpert.org/expert/45979 -https://www.oceanexpert.org/expert/45982 -https://www.oceanexpert.org/expert/45990 -https://www.oceanexpert.org/expert/45992 -https://www.oceanexpert.org/expert/45995 -https://www.oceanexpert.org/expert/45997 -https://www.oceanexpert.org/expert/45999 -https://www.oceanexpert.org/expert/46000 -https://www.oceanexpert.org/expert/46001 -https://www.oceanexpert.org/expert/46003 -https://www.oceanexpert.org/expert/46005 -https://www.oceanexpert.org/expert/46007 -https://www.oceanexpert.org/expert/46008 -https://www.oceanexpert.org/expert/46009 -https://www.oceanexpert.org/expert/46015 -https://www.oceanexpert.org/expert/46019 -https://www.oceanexpert.org/expert/46021 -https://www.oceanexpert.org/expert/46028 -https://www.oceanexpert.org/expert/46029 -https://www.oceanexpert.org/expert/46030 -https://www.oceanexpert.org/expert/46032 -https://www.oceanexpert.org/expert/46033 -https://www.oceanexpert.org/expert/46034 -https://www.oceanexpert.org/expert/46037 -https://www.oceanexpert.org/expert/46044 -https://www.oceanexpert.org/expert/46045 -https://www.oceanexpert.org/expert/46046 -https://www.oceanexpert.org/expert/46049 -https://www.oceanexpert.org/expert/46050 -https://www.oceanexpert.org/expert/46051 -https://www.oceanexpert.org/expert/46052 -https://www.oceanexpert.org/expert/46054 -https://www.oceanexpert.org/expert/46055 -https://www.oceanexpert.org/expert/46057 -https://www.oceanexpert.org/expert/46058 -https://www.oceanexpert.org/expert/46059 -https://www.oceanexpert.org/expert/46060 -https://www.oceanexpert.org/expert/46061 -https://www.oceanexpert.org/expert/46072 -https://www.oceanexpert.org/expert/46084 -https://www.oceanexpert.org/expert/46090 -https://www.oceanexpert.org/expert/46095 -https://www.oceanexpert.org/expert/46099 -https://www.oceanexpert.org/expert/46100 -https://www.oceanexpert.org/expert/46101 -https://www.oceanexpert.org/expert/46102 -https://www.oceanexpert.org/expert/46105 -https://www.oceanexpert.org/expert/46108 -https://www.oceanexpert.org/expert/46111 -https://www.oceanexpert.org/expert/46114 -https://www.oceanexpert.org/expert/46117 -https://www.oceanexpert.org/expert/46118 -https://www.oceanexpert.org/expert/46121 -https://www.oceanexpert.org/expert/46122 -https://www.oceanexpert.org/expert/46132 -https://www.oceanexpert.org/expert/46136 -https://www.oceanexpert.org/expert/46137 -https://www.oceanexpert.org/expert/46138 -https://www.oceanexpert.org/expert/46139 -https://www.oceanexpert.org/expert/46141 -https://www.oceanexpert.org/expert/46143 -https://www.oceanexpert.org/expert/46145 -https://www.oceanexpert.org/expert/46147 -https://www.oceanexpert.org/expert/46148 -https://www.oceanexpert.org/expert/46149 -https://www.oceanexpert.org/expert/46150 -https://www.oceanexpert.org/expert/46151 -https://www.oceanexpert.org/expert/46152 -https://www.oceanexpert.org/expert/46159 -https://www.oceanexpert.org/expert/46160 -https://www.oceanexpert.org/expert/46161 -https://www.oceanexpert.org/expert/46162 -https://www.oceanexpert.org/expert/46163 -https://www.oceanexpert.org/expert/46164 -https://www.oceanexpert.org/expert/46166 -https://www.oceanexpert.org/expert/46172 -https://www.oceanexpert.org/expert/46176 -https://www.oceanexpert.org/expert/46178 -https://www.oceanexpert.org/expert/46180 -https://www.oceanexpert.org/expert/46181 -https://www.oceanexpert.org/expert/46183 -https://www.oceanexpert.org/expert/46184 -https://www.oceanexpert.org/expert/46185 -https://www.oceanexpert.org/expert/46186 -https://www.oceanexpert.org/expert/46187 -https://www.oceanexpert.org/expert/46188 -https://www.oceanexpert.org/expert/46195 -https://www.oceanexpert.org/expert/46197 -https://www.oceanexpert.org/expert/46199 -https://www.oceanexpert.org/expert/46202 -https://www.oceanexpert.org/expert/46204 -https://www.oceanexpert.org/expert/46205 -https://www.oceanexpert.org/expert/46206 -https://www.oceanexpert.org/expert/46208 -https://www.oceanexpert.org/expert/46210 -https://www.oceanexpert.org/expert/46211 -https://www.oceanexpert.org/expert/46212 -https://www.oceanexpert.org/expert/46213 -https://www.oceanexpert.org/expert/46215 -https://www.oceanexpert.org/expert/46216 -https://www.oceanexpert.org/expert/46220 -https://www.oceanexpert.org/expert/46221 -https://www.oceanexpert.org/expert/46223 -https://www.oceanexpert.org/expert/46224 -https://www.oceanexpert.org/expert/46225 -https://www.oceanexpert.org/expert/46226 -https://www.oceanexpert.org/expert/46231 -https://www.oceanexpert.org/expert/46232 -https://www.oceanexpert.org/expert/46234 -https://www.oceanexpert.org/expert/46235 -https://www.oceanexpert.org/expert/46236 -https://www.oceanexpert.org/expert/46237 -https://www.oceanexpert.org/expert/46238 -https://www.oceanexpert.org/expert/46239 -https://www.oceanexpert.org/expert/46240 -https://www.oceanexpert.org/expert/46242 -https://www.oceanexpert.org/expert/46243 -https://www.oceanexpert.org/expert/46244 -https://www.oceanexpert.org/expert/46245 -https://www.oceanexpert.org/expert/46246 -https://www.oceanexpert.org/expert/46247 -https://www.oceanexpert.org/expert/46249 -https://www.oceanexpert.org/expert/46250 -https://www.oceanexpert.org/expert/46251 -https://www.oceanexpert.org/expert/46253 -https://www.oceanexpert.org/expert/46255 -https://www.oceanexpert.org/expert/46256 -https://www.oceanexpert.org/expert/46258 -https://www.oceanexpert.org/expert/46259 -https://www.oceanexpert.org/expert/46260 -https://www.oceanexpert.org/expert/46261 -https://www.oceanexpert.org/expert/46262 -https://www.oceanexpert.org/expert/46266 -https://www.oceanexpert.org/expert/46267 -https://www.oceanexpert.org/expert/46268 -https://www.oceanexpert.org/expert/46269 -https://www.oceanexpert.org/expert/46270 -https://www.oceanexpert.org/expert/46272 -https://www.oceanexpert.org/expert/46275 -https://www.oceanexpert.org/expert/46278 -https://www.oceanexpert.org/expert/46279 -https://www.oceanexpert.org/expert/46281 -https://www.oceanexpert.org/expert/46282 -https://www.oceanexpert.org/expert/46283 -https://www.oceanexpert.org/expert/46284 -https://www.oceanexpert.org/expert/46285 -https://www.oceanexpert.org/expert/46286 -https://www.oceanexpert.org/expert/46287 -https://www.oceanexpert.org/expert/46289 -https://www.oceanexpert.org/expert/46290 -https://www.oceanexpert.org/expert/46292 -https://www.oceanexpert.org/expert/46296 -https://www.oceanexpert.org/expert/46297 -https://www.oceanexpert.org/expert/46298 -https://www.oceanexpert.org/expert/46299 -https://www.oceanexpert.org/expert/46300 -https://www.oceanexpert.org/expert/46301 -https://www.oceanexpert.org/expert/46302 -https://www.oceanexpert.org/expert/46303 -https://www.oceanexpert.org/expert/46304 -https://www.oceanexpert.org/expert/46305 -https://www.oceanexpert.org/expert/46306 -https://www.oceanexpert.org/expert/46308 -https://www.oceanexpert.org/expert/46310 -https://www.oceanexpert.org/expert/46312 -https://www.oceanexpert.org/expert/46313 -https://www.oceanexpert.org/expert/46314 -https://www.oceanexpert.org/expert/46315 -https://www.oceanexpert.org/expert/46316 -https://www.oceanexpert.org/expert/46317 -https://www.oceanexpert.org/expert/46322 -https://www.oceanexpert.org/expert/46323 -https://www.oceanexpert.org/expert/46324 -https://www.oceanexpert.org/expert/46326 -https://www.oceanexpert.org/expert/46327 -https://www.oceanexpert.org/expert/46329 -https://www.oceanexpert.org/expert/46330 -https://www.oceanexpert.org/expert/46332 -https://www.oceanexpert.org/expert/46333 -https://www.oceanexpert.org/expert/46334 -https://www.oceanexpert.org/expert/46335 -https://www.oceanexpert.org/expert/46337 -https://www.oceanexpert.org/expert/46338 -https://www.oceanexpert.org/expert/46340 -https://www.oceanexpert.org/expert/46341 -https://www.oceanexpert.org/expert/46342 -https://www.oceanexpert.org/expert/46343 -https://www.oceanexpert.org/expert/46345 -https://www.oceanexpert.org/expert/46346 -https://www.oceanexpert.org/expert/46347 -https://www.oceanexpert.org/expert/46349 -https://www.oceanexpert.org/expert/46351 -https://www.oceanexpert.org/expert/46352 -https://www.oceanexpert.org/expert/46353 -https://www.oceanexpert.org/expert/46354 -https://www.oceanexpert.org/expert/46355 -https://www.oceanexpert.org/expert/46358 -https://www.oceanexpert.org/expert/46359 -https://www.oceanexpert.org/expert/46360 -https://www.oceanexpert.org/expert/46361 -https://www.oceanexpert.org/expert/46362 -https://www.oceanexpert.org/expert/46366 -https://www.oceanexpert.org/expert/46368 -https://www.oceanexpert.org/expert/46369 -https://www.oceanexpert.org/expert/46370 -https://www.oceanexpert.org/expert/46373 -https://www.oceanexpert.org/expert/46375 -https://www.oceanexpert.org/expert/46376 -https://www.oceanexpert.org/expert/46377 -https://www.oceanexpert.org/expert/46378 -https://www.oceanexpert.org/expert/46379 -https://www.oceanexpert.org/expert/46380 -https://www.oceanexpert.org/expert/46381 -https://www.oceanexpert.org/expert/46384 -https://www.oceanexpert.org/expert/46385 -https://www.oceanexpert.org/expert/46389 -https://www.oceanexpert.org/expert/46393 -https://www.oceanexpert.org/expert/46394 -https://www.oceanexpert.org/expert/46396 -https://www.oceanexpert.org/expert/46397 -https://www.oceanexpert.org/expert/46400 -https://www.oceanexpert.org/expert/46401 -https://www.oceanexpert.org/expert/46402 -https://www.oceanexpert.org/expert/46405 -https://www.oceanexpert.org/expert/46406 -https://www.oceanexpert.org/expert/46409 -https://www.oceanexpert.org/expert/46410 -https://www.oceanexpert.org/expert/46411 -https://www.oceanexpert.org/expert/46413 -https://www.oceanexpert.org/expert/46414 -https://www.oceanexpert.org/expert/46415 -https://www.oceanexpert.org/expert/46417 -https://www.oceanexpert.org/expert/46419 -https://www.oceanexpert.org/expert/46421 -https://www.oceanexpert.org/expert/46422 -https://www.oceanexpert.org/expert/46423 -https://www.oceanexpert.org/expert/46424 -https://www.oceanexpert.org/expert/46426 -https://www.oceanexpert.org/expert/46427 -https://www.oceanexpert.org/expert/46429 -https://www.oceanexpert.org/expert/46432 -https://www.oceanexpert.org/expert/46434 -https://www.oceanexpert.org/expert/46436 -https://www.oceanexpert.org/expert/46437 -https://www.oceanexpert.org/expert/46439 -https://www.oceanexpert.org/expert/46440 -https://www.oceanexpert.org/expert/46442 -https://www.oceanexpert.org/expert/46443 -https://www.oceanexpert.org/expert/46444 -https://www.oceanexpert.org/expert/46446 -https://www.oceanexpert.org/expert/46447 -https://www.oceanexpert.org/expert/46449 -https://www.oceanexpert.org/expert/46451 -https://www.oceanexpert.org/expert/46452 -https://www.oceanexpert.org/expert/46453 -https://www.oceanexpert.org/expert/46455 -https://www.oceanexpert.org/expert/46456 -https://www.oceanexpert.org/expert/46457 -https://www.oceanexpert.org/expert/46458 -https://www.oceanexpert.org/expert/46459 -https://www.oceanexpert.org/expert/46461 -https://www.oceanexpert.org/expert/46462 -https://www.oceanexpert.org/expert/46463 -https://www.oceanexpert.org/expert/46464 -https://www.oceanexpert.org/expert/46465 -https://www.oceanexpert.org/expert/46467 -https://www.oceanexpert.org/expert/46468 -https://www.oceanexpert.org/expert/46469 -https://www.oceanexpert.org/expert/46473 -https://www.oceanexpert.org/expert/46474 -https://www.oceanexpert.org/expert/46475 -https://www.oceanexpert.org/expert/46477 -https://www.oceanexpert.org/expert/46478 -https://www.oceanexpert.org/expert/46479 -https://www.oceanexpert.org/expert/46480 -https://www.oceanexpert.org/expert/46481 -https://www.oceanexpert.org/expert/46482 -https://www.oceanexpert.org/expert/46483 -https://www.oceanexpert.org/expert/46484 -https://www.oceanexpert.org/expert/46486 -https://www.oceanexpert.org/expert/46488 -https://www.oceanexpert.org/expert/46489 -https://www.oceanexpert.org/expert/46490 -https://www.oceanexpert.org/expert/46492 -https://www.oceanexpert.org/expert/46493 -https://www.oceanexpert.org/expert/46495 -https://www.oceanexpert.org/expert/46500 -https://www.oceanexpert.org/expert/46501 -https://www.oceanexpert.org/expert/46503 -https://www.oceanexpert.org/expert/46504 -https://www.oceanexpert.org/expert/46507 -https://www.oceanexpert.org/expert/46508 -https://www.oceanexpert.org/expert/46509 -https://www.oceanexpert.org/expert/46512 -https://www.oceanexpert.org/expert/46513 -https://www.oceanexpert.org/expert/46515 -https://www.oceanexpert.org/expert/46517 -https://www.oceanexpert.org/expert/46518 -https://www.oceanexpert.org/expert/46525 -https://www.oceanexpert.org/expert/46526 -https://www.oceanexpert.org/expert/46527 -https://www.oceanexpert.org/expert/46529 -https://www.oceanexpert.org/expert/46530 -https://www.oceanexpert.org/expert/46533 -https://www.oceanexpert.org/expert/46534 -https://www.oceanexpert.org/expert/46535 -https://www.oceanexpert.org/expert/46536 -https://www.oceanexpert.org/expert/46537 -https://www.oceanexpert.org/expert/46539 -https://www.oceanexpert.org/expert/46540 -https://www.oceanexpert.org/expert/46542 -https://www.oceanexpert.org/expert/46543 -https://www.oceanexpert.org/expert/46548 -https://www.oceanexpert.org/expert/46549 -https://www.oceanexpert.org/expert/46550 -https://www.oceanexpert.org/expert/46551 -https://www.oceanexpert.org/expert/46553 -https://www.oceanexpert.org/expert/46554 -https://www.oceanexpert.org/expert/46555 -https://www.oceanexpert.org/expert/46557 -https://www.oceanexpert.org/expert/46560 -https://www.oceanexpert.org/expert/46561 -https://www.oceanexpert.org/expert/46563 -https://www.oceanexpert.org/expert/46564 -https://www.oceanexpert.org/expert/46565 -https://www.oceanexpert.org/expert/46566 -https://www.oceanexpert.org/expert/46567 -https://www.oceanexpert.org/expert/46568 -https://www.oceanexpert.org/expert/46569 -https://www.oceanexpert.org/expert/46571 -https://www.oceanexpert.org/expert/46572 -https://www.oceanexpert.org/expert/46574 -https://www.oceanexpert.org/expert/46575 -https://www.oceanexpert.org/expert/46576 -https://www.oceanexpert.org/expert/46580 -https://www.oceanexpert.org/expert/46581 -https://www.oceanexpert.org/expert/46582 -https://www.oceanexpert.org/expert/46583 -https://www.oceanexpert.org/expert/46584 -https://www.oceanexpert.org/expert/46585 -https://www.oceanexpert.org/expert/46586 -https://www.oceanexpert.org/expert/46590 -https://www.oceanexpert.org/expert/46593 -https://www.oceanexpert.org/expert/46595 -https://www.oceanexpert.org/expert/46596 -https://www.oceanexpert.org/expert/46597 -https://www.oceanexpert.org/expert/46599 -https://www.oceanexpert.org/expert/46602 -https://www.oceanexpert.org/expert/46603 -https://www.oceanexpert.org/expert/46604 -https://www.oceanexpert.org/expert/46605 -https://www.oceanexpert.org/expert/46608 -https://www.oceanexpert.org/expert/46612 -https://www.oceanexpert.org/expert/46613 -https://www.oceanexpert.org/expert/46615 -https://www.oceanexpert.org/expert/46617 -https://www.oceanexpert.org/expert/46619 -https://www.oceanexpert.org/expert/46620 -https://www.oceanexpert.org/expert/46621 -https://www.oceanexpert.org/expert/46622 -https://www.oceanexpert.org/expert/46623 -https://www.oceanexpert.org/expert/46624 -https://www.oceanexpert.org/expert/46625 -https://www.oceanexpert.org/expert/46626 -https://www.oceanexpert.org/expert/46629 -https://www.oceanexpert.org/expert/46632 -https://www.oceanexpert.org/expert/46633 -https://www.oceanexpert.org/expert/46634 -https://www.oceanexpert.org/expert/46635 -https://www.oceanexpert.org/expert/46638 -https://www.oceanexpert.org/expert/46639 -https://www.oceanexpert.org/expert/46641 -https://www.oceanexpert.org/expert/46643 -https://www.oceanexpert.org/expert/46645 -https://www.oceanexpert.org/expert/46646 -https://www.oceanexpert.org/expert/46647 -https://www.oceanexpert.org/expert/46648 -https://www.oceanexpert.org/expert/46650 -https://www.oceanexpert.org/expert/46651 -https://www.oceanexpert.org/expert/46652 -https://www.oceanexpert.org/expert/46653 -https://www.oceanexpert.org/expert/46654 -https://www.oceanexpert.org/expert/46655 -https://www.oceanexpert.org/expert/46656 -https://www.oceanexpert.org/expert/46657 -https://www.oceanexpert.org/expert/46658 -https://www.oceanexpert.org/expert/46659 -https://www.oceanexpert.org/expert/46660 -https://www.oceanexpert.org/expert/46661 -https://www.oceanexpert.org/expert/46662 -https://www.oceanexpert.org/expert/46663 -https://www.oceanexpert.org/expert/46664 -https://www.oceanexpert.org/expert/46665 -https://www.oceanexpert.org/expert/46666 -https://www.oceanexpert.org/expert/46669 -https://www.oceanexpert.org/expert/46670 -https://www.oceanexpert.org/expert/46671 -https://www.oceanexpert.org/expert/46672 -https://www.oceanexpert.org/expert/46673 -https://www.oceanexpert.org/expert/46675 -https://www.oceanexpert.org/expert/46676 -https://www.oceanexpert.org/expert/46678 -https://www.oceanexpert.org/expert/46680 -https://www.oceanexpert.org/expert/46681 -https://www.oceanexpert.org/expert/46682 -https://www.oceanexpert.org/expert/46683 -https://www.oceanexpert.org/expert/46684 -https://www.oceanexpert.org/expert/46685 -https://www.oceanexpert.org/expert/46686 -https://www.oceanexpert.org/expert/46687 -https://www.oceanexpert.org/expert/46688 -https://www.oceanexpert.org/expert/46689 -https://www.oceanexpert.org/expert/46691 -https://www.oceanexpert.org/expert/46692 -https://www.oceanexpert.org/expert/46693 -https://www.oceanexpert.org/expert/46694 -https://www.oceanexpert.org/expert/46697 -https://www.oceanexpert.org/expert/46699 -https://www.oceanexpert.org/expert/46700 -https://www.oceanexpert.org/expert/46701 -https://www.oceanexpert.org/expert/46703 -https://www.oceanexpert.org/expert/46706 -https://www.oceanexpert.org/expert/46707 -https://www.oceanexpert.org/expert/46708 -https://www.oceanexpert.org/expert/46710 -https://www.oceanexpert.org/expert/46711 -https://www.oceanexpert.org/expert/46712 -https://www.oceanexpert.org/expert/46713 -https://www.oceanexpert.org/expert/46714 -https://www.oceanexpert.org/expert/46715 -https://www.oceanexpert.org/expert/46716 -https://www.oceanexpert.org/expert/46717 -https://www.oceanexpert.org/expert/46718 -https://www.oceanexpert.org/expert/46719 -https://www.oceanexpert.org/expert/46722 -https://www.oceanexpert.org/expert/46723 -https://www.oceanexpert.org/expert/46724 -https://www.oceanexpert.org/expert/46726 -https://www.oceanexpert.org/expert/46727 -https://www.oceanexpert.org/expert/46728 -https://www.oceanexpert.org/expert/46729 -https://www.oceanexpert.org/expert/46730 -https://www.oceanexpert.org/expert/46731 -https://www.oceanexpert.org/expert/46732 -https://www.oceanexpert.org/expert/46733 -https://www.oceanexpert.org/expert/46734 -https://www.oceanexpert.org/expert/46735 -https://www.oceanexpert.org/expert/46738 -https://www.oceanexpert.org/expert/46740 -https://www.oceanexpert.org/expert/46741 -https://www.oceanexpert.org/expert/46742 -https://www.oceanexpert.org/expert/46743 -https://www.oceanexpert.org/expert/46744 -https://www.oceanexpert.org/expert/46747 -https://www.oceanexpert.org/expert/46748 -https://www.oceanexpert.org/expert/46749 -https://www.oceanexpert.org/expert/46750 -https://www.oceanexpert.org/expert/46752 -https://www.oceanexpert.org/expert/46753 -https://www.oceanexpert.org/expert/46755 -https://www.oceanexpert.org/expert/46758 -https://www.oceanexpert.org/expert/46760 -https://www.oceanexpert.org/expert/46762 -https://www.oceanexpert.org/expert/46763 -https://www.oceanexpert.org/expert/46764 -https://www.oceanexpert.org/expert/46765 -https://www.oceanexpert.org/expert/46767 -https://www.oceanexpert.org/expert/46768 -https://www.oceanexpert.org/expert/46770 -https://www.oceanexpert.org/expert/46774 -https://www.oceanexpert.org/expert/46775 -https://www.oceanexpert.org/expert/46778 -https://www.oceanexpert.org/expert/46780 -https://www.oceanexpert.org/expert/46781 -https://www.oceanexpert.org/expert/46782 -https://www.oceanexpert.org/expert/46783 -https://www.oceanexpert.org/expert/46784 -https://www.oceanexpert.org/expert/46785 -https://www.oceanexpert.org/expert/46786 -https://www.oceanexpert.org/expert/46787 -https://www.oceanexpert.org/expert/46788 -https://www.oceanexpert.org/expert/46789 -https://www.oceanexpert.org/expert/46791 -https://www.oceanexpert.org/expert/46793 -https://www.oceanexpert.org/expert/46794 -https://www.oceanexpert.org/expert/46795 -https://www.oceanexpert.org/expert/46797 -https://www.oceanexpert.org/expert/46798 -https://www.oceanexpert.org/expert/46799 -https://www.oceanexpert.org/expert/46800 -https://www.oceanexpert.org/expert/46802 -https://www.oceanexpert.org/expert/46803 -https://www.oceanexpert.org/expert/46806 -https://www.oceanexpert.org/expert/46807 -https://www.oceanexpert.org/expert/46808 -https://www.oceanexpert.org/expert/46809 -https://www.oceanexpert.org/expert/46810 -https://www.oceanexpert.org/expert/46812 -https://www.oceanexpert.org/expert/46813 -https://www.oceanexpert.org/expert/46814 -https://www.oceanexpert.org/expert/46815 -https://www.oceanexpert.org/expert/46816 -https://www.oceanexpert.org/expert/46817 -https://www.oceanexpert.org/expert/46819 -https://www.oceanexpert.org/expert/46820 -https://www.oceanexpert.org/expert/46821 -https://www.oceanexpert.org/expert/46822 -https://www.oceanexpert.org/expert/46823 -https://www.oceanexpert.org/expert/46824 -https://www.oceanexpert.org/expert/46825 -https://www.oceanexpert.org/expert/46826 -https://www.oceanexpert.org/expert/46828 -https://www.oceanexpert.org/expert/46829 -https://www.oceanexpert.org/expert/46831 -https://www.oceanexpert.org/expert/46832 -https://www.oceanexpert.org/expert/46833 -https://www.oceanexpert.org/expert/46834 -https://www.oceanexpert.org/expert/46835 -https://www.oceanexpert.org/expert/46836 -https://www.oceanexpert.org/expert/46838 -https://www.oceanexpert.org/expert/46839 -https://www.oceanexpert.org/expert/46840 -https://www.oceanexpert.org/expert/46841 -https://www.oceanexpert.org/expert/46842 -https://www.oceanexpert.org/expert/46844 -https://www.oceanexpert.org/expert/46845 -https://www.oceanexpert.org/expert/46846 -https://www.oceanexpert.org/expert/46847 -https://www.oceanexpert.org/expert/46848 -https://www.oceanexpert.org/expert/46849 -https://www.oceanexpert.org/expert/46850 -https://www.oceanexpert.org/expert/46852 -https://www.oceanexpert.org/expert/46855 -https://www.oceanexpert.org/expert/46856 -https://www.oceanexpert.org/expert/46857 -https://www.oceanexpert.org/expert/46858 -https://www.oceanexpert.org/expert/46859 -https://www.oceanexpert.org/expert/46860 -https://www.oceanexpert.org/expert/46862 -https://www.oceanexpert.org/expert/46864 -https://www.oceanexpert.org/expert/46865 -https://www.oceanexpert.org/expert/46866 -https://www.oceanexpert.org/expert/46867 -https://www.oceanexpert.org/expert/46868 -https://www.oceanexpert.org/expert/46871 -https://www.oceanexpert.org/expert/46872 -https://www.oceanexpert.org/expert/46876 -https://www.oceanexpert.org/expert/46878 -https://www.oceanexpert.org/expert/46879 -https://www.oceanexpert.org/expert/46880 -https://www.oceanexpert.org/expert/46881 -https://www.oceanexpert.org/expert/46883 -https://www.oceanexpert.org/expert/46886 -https://www.oceanexpert.org/expert/46888 -https://www.oceanexpert.org/expert/46892 -https://www.oceanexpert.org/expert/46894 -https://www.oceanexpert.org/expert/46895 -https://www.oceanexpert.org/expert/46896 -https://www.oceanexpert.org/expert/46899 -https://www.oceanexpert.org/expert/46902 -https://www.oceanexpert.org/expert/46904 -https://www.oceanexpert.org/expert/46905 -https://www.oceanexpert.org/expert/46906 -https://www.oceanexpert.org/expert/46907 -https://www.oceanexpert.org/expert/46909 -https://www.oceanexpert.org/expert/46911 -https://www.oceanexpert.org/expert/46912 -https://www.oceanexpert.org/expert/46913 -https://www.oceanexpert.org/expert/46915 -https://www.oceanexpert.org/expert/46916 -https://www.oceanexpert.org/expert/46917 -https://www.oceanexpert.org/expert/46918 -https://www.oceanexpert.org/expert/46919 -https://www.oceanexpert.org/expert/46920 -https://www.oceanexpert.org/expert/46921 -https://www.oceanexpert.org/expert/46922 -https://www.oceanexpert.org/expert/46923 -https://www.oceanexpert.org/expert/46924 -https://www.oceanexpert.org/expert/46926 -https://www.oceanexpert.org/expert/46927 -https://www.oceanexpert.org/expert/46928 -https://www.oceanexpert.org/expert/46929 -https://www.oceanexpert.org/expert/46932 -https://www.oceanexpert.org/expert/46933 -https://www.oceanexpert.org/expert/46936 -https://www.oceanexpert.org/expert/46937 -https://www.oceanexpert.org/expert/46938 -https://www.oceanexpert.org/expert/46940 -https://www.oceanexpert.org/expert/46941 -https://www.oceanexpert.org/expert/46942 -https://www.oceanexpert.org/expert/46943 -https://www.oceanexpert.org/expert/46944 -https://www.oceanexpert.org/expert/46948 -https://www.oceanexpert.org/expert/46949 -https://www.oceanexpert.org/expert/46950 -https://www.oceanexpert.org/expert/46952 -https://www.oceanexpert.org/expert/46953 -https://www.oceanexpert.org/expert/46954 -https://www.oceanexpert.org/expert/46955 -https://www.oceanexpert.org/expert/46957 -https://www.oceanexpert.org/expert/46958 -https://www.oceanexpert.org/expert/46959 -https://www.oceanexpert.org/expert/46961 -https://www.oceanexpert.org/expert/46962 -https://www.oceanexpert.org/expert/46963 -https://www.oceanexpert.org/expert/46965 -https://www.oceanexpert.org/expert/46966 -https://www.oceanexpert.org/expert/46968 -https://www.oceanexpert.org/expert/46969 -https://www.oceanexpert.org/expert/46970 -https://www.oceanexpert.org/expert/46972 -https://www.oceanexpert.org/expert/46973 -https://www.oceanexpert.org/expert/46974 -https://www.oceanexpert.org/expert/46975 -https://www.oceanexpert.org/expert/46976 -https://www.oceanexpert.org/expert/46977 -https://www.oceanexpert.org/expert/46978 -https://www.oceanexpert.org/expert/46979 -https://www.oceanexpert.org/expert/46980 -https://www.oceanexpert.org/expert/46982 -https://www.oceanexpert.org/expert/46984 -https://www.oceanexpert.org/expert/46986 -https://www.oceanexpert.org/expert/46988 -https://www.oceanexpert.org/expert/46989 -https://www.oceanexpert.org/expert/46990 -https://www.oceanexpert.org/expert/46992 -https://www.oceanexpert.org/expert/46995 -https://www.oceanexpert.org/expert/46996 -https://www.oceanexpert.org/expert/46997 -https://www.oceanexpert.org/expert/46998 -https://www.oceanexpert.org/expert/46999 -https://www.oceanexpert.org/expert/47000 -https://www.oceanexpert.org/expert/47002 -https://www.oceanexpert.org/expert/47003 -https://www.oceanexpert.org/expert/47006 -https://www.oceanexpert.org/expert/47007 -https://www.oceanexpert.org/expert/47008 -https://www.oceanexpert.org/expert/47011 -https://www.oceanexpert.org/expert/47012 -https://www.oceanexpert.org/expert/47013 -https://www.oceanexpert.org/expert/47015 -https://www.oceanexpert.org/expert/47016 -https://www.oceanexpert.org/expert/47017 -https://www.oceanexpert.org/expert/47018 -https://www.oceanexpert.org/expert/47019 -https://www.oceanexpert.org/expert/47020 -https://www.oceanexpert.org/expert/47023 -https://www.oceanexpert.org/expert/47024 -https://www.oceanexpert.org/expert/47026 -https://www.oceanexpert.org/expert/47027 -https://www.oceanexpert.org/expert/47028 -https://www.oceanexpert.org/expert/47029 -https://www.oceanexpert.org/expert/47030 -https://www.oceanexpert.org/expert/47032 -https://www.oceanexpert.org/expert/47033 -https://www.oceanexpert.org/expert/47035 -https://www.oceanexpert.org/expert/47037 -https://www.oceanexpert.org/expert/47038 -https://www.oceanexpert.org/expert/47039 -https://www.oceanexpert.org/expert/47042 -https://www.oceanexpert.org/expert/47043 -https://www.oceanexpert.org/expert/47046 -https://www.oceanexpert.org/expert/47048 -https://www.oceanexpert.org/expert/47049 -https://www.oceanexpert.org/expert/47050 -https://www.oceanexpert.org/expert/47051 -https://www.oceanexpert.org/expert/47053 -https://www.oceanexpert.org/expert/47054 -https://www.oceanexpert.org/expert/47055 -https://www.oceanexpert.org/expert/47057 -https://www.oceanexpert.org/expert/47058 -https://www.oceanexpert.org/expert/47059 -https://www.oceanexpert.org/expert/47060 -https://www.oceanexpert.org/expert/47061 -https://www.oceanexpert.org/expert/47062 -https://www.oceanexpert.org/expert/47063 -https://www.oceanexpert.org/expert/47064 -https://www.oceanexpert.org/expert/47065 -https://www.oceanexpert.org/expert/47066 -https://www.oceanexpert.org/expert/47070 -https://www.oceanexpert.org/expert/47071 -https://www.oceanexpert.org/expert/47072 -https://www.oceanexpert.org/expert/47073 -https://www.oceanexpert.org/expert/47074 -https://www.oceanexpert.org/expert/47075 -https://www.oceanexpert.org/expert/47076 -https://www.oceanexpert.org/expert/47077 -https://www.oceanexpert.org/expert/47079 -https://www.oceanexpert.org/expert/47081 -https://www.oceanexpert.org/expert/47083 -https://www.oceanexpert.org/expert/47084 -https://www.oceanexpert.org/expert/47086 -https://www.oceanexpert.org/expert/47088 -https://www.oceanexpert.org/expert/47089 -https://www.oceanexpert.org/expert/47090 -https://www.oceanexpert.org/expert/47092 -https://www.oceanexpert.org/expert/47094 -https://www.oceanexpert.org/expert/47095 -https://www.oceanexpert.org/expert/47097 -https://www.oceanexpert.org/expert/47099 -https://www.oceanexpert.org/expert/47100 -https://www.oceanexpert.org/expert/47101 -https://www.oceanexpert.org/expert/47102 -https://www.oceanexpert.org/expert/47103 -https://www.oceanexpert.org/expert/47104 -https://www.oceanexpert.org/expert/47105 -https://www.oceanexpert.org/expert/47106 -https://www.oceanexpert.org/expert/47108 -https://www.oceanexpert.org/expert/47109 -https://www.oceanexpert.org/expert/47110 -https://www.oceanexpert.org/expert/47113 -https://www.oceanexpert.org/expert/47114 -https://www.oceanexpert.org/expert/47116 -https://www.oceanexpert.org/expert/47117 -https://www.oceanexpert.org/expert/47118 -https://www.oceanexpert.org/expert/47119 -https://www.oceanexpert.org/expert/47122 -https://www.oceanexpert.org/expert/47123 -https://www.oceanexpert.org/expert/47125 -https://www.oceanexpert.org/expert/47126 -https://www.oceanexpert.org/expert/47128 -https://www.oceanexpert.org/expert/47129 -https://www.oceanexpert.org/expert/47130 -https://www.oceanexpert.org/expert/47131 -https://www.oceanexpert.org/expert/47132 -https://www.oceanexpert.org/expert/47133 -https://www.oceanexpert.org/expert/47135 -https://www.oceanexpert.org/expert/47139 -https://www.oceanexpert.org/expert/47140 -https://www.oceanexpert.org/expert/47143 -https://www.oceanexpert.org/expert/47144 -https://www.oceanexpert.org/expert/47145 -https://www.oceanexpert.org/expert/47146 -https://www.oceanexpert.org/expert/47147 -https://www.oceanexpert.org/expert/47150 -https://www.oceanexpert.org/expert/47151 -https://www.oceanexpert.org/expert/47152 -https://www.oceanexpert.org/expert/47153 -https://www.oceanexpert.org/expert/47154 -https://www.oceanexpert.org/expert/47155 -https://www.oceanexpert.org/expert/47156 -https://www.oceanexpert.org/expert/47158 -https://www.oceanexpert.org/expert/47159 -https://www.oceanexpert.org/expert/47160 -https://www.oceanexpert.org/expert/47161 -https://www.oceanexpert.org/expert/47163 -https://www.oceanexpert.org/expert/47164 -https://www.oceanexpert.org/expert/47165 -https://www.oceanexpert.org/expert/47166 -https://www.oceanexpert.org/expert/47167 -https://www.oceanexpert.org/expert/47168 -https://www.oceanexpert.org/expert/47169 -https://www.oceanexpert.org/expert/47170 -https://www.oceanexpert.org/expert/47171 -https://www.oceanexpert.org/expert/47172 -https://www.oceanexpert.org/expert/47174 -https://www.oceanexpert.org/expert/47175 -https://www.oceanexpert.org/expert/47176 -https://www.oceanexpert.org/expert/47177 -https://www.oceanexpert.org/expert/47179 -https://www.oceanexpert.org/expert/47180 -https://www.oceanexpert.org/expert/47181 -https://www.oceanexpert.org/expert/47182 -https://www.oceanexpert.org/expert/47183 -https://www.oceanexpert.org/expert/47185 -https://www.oceanexpert.org/expert/47186 -https://www.oceanexpert.org/expert/47187 -https://www.oceanexpert.org/expert/47189 -https://www.oceanexpert.org/expert/47190 -https://www.oceanexpert.org/expert/47191 -https://www.oceanexpert.org/expert/47192 -https://www.oceanexpert.org/expert/47193 -https://www.oceanexpert.org/expert/47194 -https://www.oceanexpert.org/expert/47195 -https://www.oceanexpert.org/expert/47198 -https://www.oceanexpert.org/expert/47199 -https://www.oceanexpert.org/expert/47200 -https://www.oceanexpert.org/expert/47201 -https://www.oceanexpert.org/expert/47202 -https://www.oceanexpert.org/expert/47204 -https://www.oceanexpert.org/expert/47205 -https://www.oceanexpert.org/expert/47206 -https://www.oceanexpert.org/expert/47207 -https://www.oceanexpert.org/expert/47210 -https://www.oceanexpert.org/expert/47211 -https://www.oceanexpert.org/expert/47213 -https://www.oceanexpert.org/expert/47215 -https://www.oceanexpert.org/expert/47216 -https://www.oceanexpert.org/expert/47221 -https://www.oceanexpert.org/expert/47222 -https://www.oceanexpert.org/expert/47226 -https://www.oceanexpert.org/expert/47229 -https://www.oceanexpert.org/expert/47230 -https://www.oceanexpert.org/expert/47231 -https://www.oceanexpert.org/expert/47232 -https://www.oceanexpert.org/expert/47235 -https://www.oceanexpert.org/expert/47236 -https://www.oceanexpert.org/expert/47238 -https://www.oceanexpert.org/expert/47239 -https://www.oceanexpert.org/expert/47241 -https://www.oceanexpert.org/expert/47243 -https://www.oceanexpert.org/expert/47246 -https://www.oceanexpert.org/expert/47247 -https://www.oceanexpert.org/expert/47248 -https://www.oceanexpert.org/expert/47249 -https://www.oceanexpert.org/expert/47250 -https://www.oceanexpert.org/expert/47251 -https://www.oceanexpert.org/expert/47253 -https://www.oceanexpert.org/expert/47254 -https://www.oceanexpert.org/expert/47255 -https://www.oceanexpert.org/expert/47256 -https://www.oceanexpert.org/expert/47258 -https://www.oceanexpert.org/expert/47259 -https://www.oceanexpert.org/expert/47260 -https://www.oceanexpert.org/expert/47262 -https://www.oceanexpert.org/expert/47263 -https://www.oceanexpert.org/expert/47266 -https://www.oceanexpert.org/expert/47267 -https://www.oceanexpert.org/expert/47269 -https://www.oceanexpert.org/expert/47270 -https://www.oceanexpert.org/expert/47271 -https://www.oceanexpert.org/expert/47272 -https://www.oceanexpert.org/expert/47278 -https://www.oceanexpert.org/expert/47283 -https://www.oceanexpert.org/expert/47284 -https://www.oceanexpert.org/expert/47287 -https://www.oceanexpert.org/expert/47288 -https://www.oceanexpert.org/expert/47290 -https://www.oceanexpert.org/expert/47292 -https://www.oceanexpert.org/expert/47295 -https://www.oceanexpert.org/expert/47296 -https://www.oceanexpert.org/expert/47297 -https://www.oceanexpert.org/expert/47299 -https://www.oceanexpert.org/expert/47300 -https://www.oceanexpert.org/expert/47301 -https://www.oceanexpert.org/expert/47302 -https://www.oceanexpert.org/expert/47303 -https://www.oceanexpert.org/expert/47305 -https://www.oceanexpert.org/expert/47306 -https://www.oceanexpert.org/expert/47308 -https://www.oceanexpert.org/expert/47312 -https://www.oceanexpert.org/expert/47313 -https://www.oceanexpert.org/expert/47314 -https://www.oceanexpert.org/expert/47317 -https://www.oceanexpert.org/expert/47319 -https://www.oceanexpert.org/expert/47320 -https://www.oceanexpert.org/expert/47321 -https://www.oceanexpert.org/expert/47323 -https://www.oceanexpert.org/expert/47324 -https://www.oceanexpert.org/expert/47326 -https://www.oceanexpert.org/expert/47327 -https://www.oceanexpert.org/expert/47328 -https://www.oceanexpert.org/expert/47329 -https://www.oceanexpert.org/expert/47331 -https://www.oceanexpert.org/expert/47332 -https://www.oceanexpert.org/expert/47334 -https://www.oceanexpert.org/expert/47335 -https://www.oceanexpert.org/expert/47336 -https://www.oceanexpert.org/expert/47337 -https://www.oceanexpert.org/expert/47338 -https://www.oceanexpert.org/expert/47340 -https://www.oceanexpert.org/expert/47341 -https://www.oceanexpert.org/expert/47343 -https://www.oceanexpert.org/expert/47346 -https://www.oceanexpert.org/expert/47347 -https://www.oceanexpert.org/expert/47348 -https://www.oceanexpert.org/expert/47349 -https://www.oceanexpert.org/expert/47351 -https://www.oceanexpert.org/expert/47352 -https://www.oceanexpert.org/expert/47355 -https://www.oceanexpert.org/expert/47356 -https://www.oceanexpert.org/expert/47358 -https://www.oceanexpert.org/expert/47361 -https://www.oceanexpert.org/expert/47363 -https://www.oceanexpert.org/expert/47366 -https://www.oceanexpert.org/expert/47367 -https://www.oceanexpert.org/expert/47369 -https://www.oceanexpert.org/expert/47374 -https://www.oceanexpert.org/expert/47375 -https://www.oceanexpert.org/expert/47376 -https://www.oceanexpert.org/expert/47378 -https://www.oceanexpert.org/expert/47380 -https://www.oceanexpert.org/expert/47382 -https://www.oceanexpert.org/expert/47384 -https://www.oceanexpert.org/expert/47386 -https://www.oceanexpert.org/expert/47387 -https://www.oceanexpert.org/expert/47388 -https://www.oceanexpert.org/expert/47390 -https://www.oceanexpert.org/expert/47391 -https://www.oceanexpert.org/expert/47392 -https://www.oceanexpert.org/expert/47395 -https://www.oceanexpert.org/expert/47397 -https://www.oceanexpert.org/expert/47398 -https://www.oceanexpert.org/expert/47399 -https://www.oceanexpert.org/expert/47400 -https://www.oceanexpert.org/expert/47401 -https://www.oceanexpert.org/expert/47402 -https://www.oceanexpert.org/expert/47403 -https://www.oceanexpert.org/expert/47406 -https://www.oceanexpert.org/expert/47408 -https://www.oceanexpert.org/expert/47412 -https://www.oceanexpert.org/expert/47414 -https://www.oceanexpert.org/expert/47415 -https://www.oceanexpert.org/expert/47417 -https://www.oceanexpert.org/expert/47421 -https://www.oceanexpert.org/expert/47422 -https://www.oceanexpert.org/expert/47424 -https://www.oceanexpert.org/expert/47425 -https://www.oceanexpert.org/expert/47428 -https://www.oceanexpert.org/expert/47430 -https://www.oceanexpert.org/expert/47432 -https://www.oceanexpert.org/expert/47434 -https://www.oceanexpert.org/expert/47435 -https://www.oceanexpert.org/expert/47436 -https://www.oceanexpert.org/expert/47437 -https://www.oceanexpert.org/expert/47440 -https://www.oceanexpert.org/expert/47446 -https://www.oceanexpert.org/expert/47451 -https://www.oceanexpert.org/expert/47454 -https://www.oceanexpert.org/expert/47456 -https://www.oceanexpert.org/expert/47457 -https://www.oceanexpert.org/expert/47458 -https://www.oceanexpert.org/expert/47459 -https://www.oceanexpert.org/expert/47461 -https://www.oceanexpert.org/expert/47463 -https://www.oceanexpert.org/expert/47464 -https://www.oceanexpert.org/expert/47465 -https://www.oceanexpert.org/expert/47466 -https://www.oceanexpert.org/expert/47467 -https://www.oceanexpert.org/expert/47468 -https://www.oceanexpert.org/expert/47469 -https://www.oceanexpert.org/expert/47470 -https://www.oceanexpert.org/expert/47471 -https://www.oceanexpert.org/expert/47474 -https://www.oceanexpert.org/expert/47475 -https://www.oceanexpert.org/expert/47476 -https://www.oceanexpert.org/expert/47477 -https://www.oceanexpert.org/expert/47480 -https://www.oceanexpert.org/expert/47481 -https://www.oceanexpert.org/expert/47482 -https://www.oceanexpert.org/expert/47484 -https://www.oceanexpert.org/expert/47488 -https://www.oceanexpert.org/expert/47489 -https://www.oceanexpert.org/expert/47490 -https://www.oceanexpert.org/expert/47491 -https://www.oceanexpert.org/expert/47492 -https://www.oceanexpert.org/expert/47493 -https://www.oceanexpert.org/expert/47495 -https://www.oceanexpert.org/expert/47496 -https://www.oceanexpert.org/expert/47497 -https://www.oceanexpert.org/expert/47500 -https://www.oceanexpert.org/expert/47501 -https://www.oceanexpert.org/expert/47502 -https://www.oceanexpert.org/expert/47503 -https://www.oceanexpert.org/expert/47504 -https://www.oceanexpert.org/expert/47505 -https://www.oceanexpert.org/expert/47506 -https://www.oceanexpert.org/expert/47509 -https://www.oceanexpert.org/expert/47510 -https://www.oceanexpert.org/expert/47511 -https://www.oceanexpert.org/expert/47515 -https://www.oceanexpert.org/expert/47516 -https://www.oceanexpert.org/expert/47517 -https://www.oceanexpert.org/expert/47518 -https://www.oceanexpert.org/expert/47521 -https://www.oceanexpert.org/expert/47522 -https://www.oceanexpert.org/expert/47523 -https://www.oceanexpert.org/expert/47524 -https://www.oceanexpert.org/expert/47526 -https://www.oceanexpert.org/expert/47528 -https://www.oceanexpert.org/expert/47529 -https://www.oceanexpert.org/expert/47533 -https://www.oceanexpert.org/expert/47534 -https://www.oceanexpert.org/expert/47535 -https://www.oceanexpert.org/expert/47536 -https://www.oceanexpert.org/expert/47537 -https://www.oceanexpert.org/expert/47539 -https://www.oceanexpert.org/expert/47541 -https://www.oceanexpert.org/expert/47542 -https://www.oceanexpert.org/expert/47543 -https://www.oceanexpert.org/expert/47544 -https://www.oceanexpert.org/expert/47545 -https://www.oceanexpert.org/expert/47546 -https://www.oceanexpert.org/expert/47547 -https://www.oceanexpert.org/expert/47548 -https://www.oceanexpert.org/expert/47550 -https://www.oceanexpert.org/expert/47554 -https://www.oceanexpert.org/expert/47555 -https://www.oceanexpert.org/expert/47556 -https://www.oceanexpert.org/expert/47558 -https://www.oceanexpert.org/expert/47559 -https://www.oceanexpert.org/expert/47560 -https://www.oceanexpert.org/expert/47561 -https://www.oceanexpert.org/expert/47565 -https://www.oceanexpert.org/expert/47566 -https://www.oceanexpert.org/expert/47568 -https://www.oceanexpert.org/expert/47569 -https://www.oceanexpert.org/expert/47570 -https://www.oceanexpert.org/expert/47571 -https://www.oceanexpert.org/expert/47572 -https://www.oceanexpert.org/expert/47573 -https://www.oceanexpert.org/expert/47575 -https://www.oceanexpert.org/expert/47576 -https://www.oceanexpert.org/expert/47577 -https://www.oceanexpert.org/expert/47578 -https://www.oceanexpert.org/expert/47581 -https://www.oceanexpert.org/expert/47583 -https://www.oceanexpert.org/expert/47585 -https://www.oceanexpert.org/expert/47586 -https://www.oceanexpert.org/expert/47589 -https://www.oceanexpert.org/expert/47591 -https://www.oceanexpert.org/expert/47595 -https://www.oceanexpert.org/expert/47596 -https://www.oceanexpert.org/expert/47601 -https://www.oceanexpert.org/expert/47602 -https://www.oceanexpert.org/expert/47603 -https://www.oceanexpert.org/expert/47606 -https://www.oceanexpert.org/expert/47607 -https://www.oceanexpert.org/expert/47609 -https://www.oceanexpert.org/expert/47610 -https://www.oceanexpert.org/expert/47611 -https://www.oceanexpert.org/expert/47612 -https://www.oceanexpert.org/expert/47613 -https://www.oceanexpert.org/expert/47615 -https://www.oceanexpert.org/expert/47618 -https://www.oceanexpert.org/expert/47619 -https://www.oceanexpert.org/expert/47621 -https://www.oceanexpert.org/expert/47622 -https://www.oceanexpert.org/expert/47623 -https://www.oceanexpert.org/expert/47629 -https://www.oceanexpert.org/expert/47638 -https://www.oceanexpert.org/expert/47640 -https://www.oceanexpert.org/expert/47644 -https://www.oceanexpert.org/expert/47646 -https://www.oceanexpert.org/expert/47650 -https://www.oceanexpert.org/expert/47651 -https://www.oceanexpert.org/expert/47652 -https://www.oceanexpert.org/expert/47656 -https://www.oceanexpert.org/expert/47659 -https://www.oceanexpert.org/expert/47660 -https://www.oceanexpert.org/expert/47663 -https://www.oceanexpert.org/expert/47664 -https://www.oceanexpert.org/expert/47665 -https://www.oceanexpert.org/expert/47666 -https://www.oceanexpert.org/expert/47667 -https://www.oceanexpert.org/expert/47670 -https://www.oceanexpert.org/expert/47671 -https://www.oceanexpert.org/expert/47674 -https://www.oceanexpert.org/expert/47675 -https://www.oceanexpert.org/expert/47676 -https://www.oceanexpert.org/expert/47679 -https://www.oceanexpert.org/expert/47680 -https://www.oceanexpert.org/expert/47681 -https://www.oceanexpert.org/expert/47682 -https://www.oceanexpert.org/expert/47683 -https://www.oceanexpert.org/expert/47684 -https://www.oceanexpert.org/expert/47685 -https://www.oceanexpert.org/expert/47686 -https://www.oceanexpert.org/expert/47689 -https://www.oceanexpert.org/expert/47690 -https://www.oceanexpert.org/expert/47691 -https://www.oceanexpert.org/expert/47692 -https://www.oceanexpert.org/expert/47693 -https://www.oceanexpert.org/expert/47696 -https://www.oceanexpert.org/expert/47698 -https://www.oceanexpert.org/expert/47699 -https://www.oceanexpert.org/expert/47701 -https://www.oceanexpert.org/expert/47702 -https://www.oceanexpert.org/expert/47703 -https://www.oceanexpert.org/expert/47704 -https://www.oceanexpert.org/expert/47705 -https://www.oceanexpert.org/expert/47706 -https://www.oceanexpert.org/expert/47708 -https://www.oceanexpert.org/expert/47710 -https://www.oceanexpert.org/expert/47712 -https://www.oceanexpert.org/expert/47713 -https://www.oceanexpert.org/expert/47716 -https://www.oceanexpert.org/expert/47717 -https://www.oceanexpert.org/expert/47718 -https://www.oceanexpert.org/expert/47722 -https://www.oceanexpert.org/expert/47723 -https://www.oceanexpert.org/expert/47725 -https://www.oceanexpert.org/expert/47726 -https://www.oceanexpert.org/expert/47727 -https://www.oceanexpert.org/expert/47728 -https://www.oceanexpert.org/expert/47729 -https://www.oceanexpert.org/expert/47730 -https://www.oceanexpert.org/expert/47731 -https://www.oceanexpert.org/expert/47732 -https://www.oceanexpert.org/expert/47733 -https://www.oceanexpert.org/expert/47734 -https://www.oceanexpert.org/expert/47735 -https://www.oceanexpert.org/expert/47737 -https://www.oceanexpert.org/expert/47738 -https://www.oceanexpert.org/expert/47739 -https://www.oceanexpert.org/expert/47740 -https://www.oceanexpert.org/expert/47741 -https://www.oceanexpert.org/expert/47743 -https://www.oceanexpert.org/expert/47745 -https://www.oceanexpert.org/expert/47747 -https://www.oceanexpert.org/expert/47749 -https://www.oceanexpert.org/expert/47751 -https://www.oceanexpert.org/expert/47752 -https://www.oceanexpert.org/expert/47753 -https://www.oceanexpert.org/expert/47754 -https://www.oceanexpert.org/expert/47755 -https://www.oceanexpert.org/expert/47756 -https://www.oceanexpert.org/expert/47757 -https://www.oceanexpert.org/expert/47759 -https://www.oceanexpert.org/expert/47761 -https://www.oceanexpert.org/expert/47762 -https://www.oceanexpert.org/expert/47763 -https://www.oceanexpert.org/expert/47764 -https://www.oceanexpert.org/expert/47766 -https://www.oceanexpert.org/expert/47769 -https://www.oceanexpert.org/expert/47770 -https://www.oceanexpert.org/expert/47773 -https://www.oceanexpert.org/expert/47774 -https://www.oceanexpert.org/expert/47777 -https://www.oceanexpert.org/expert/47778 -https://www.oceanexpert.org/expert/47779 -https://www.oceanexpert.org/expert/47780 -https://www.oceanexpert.org/expert/47781 -https://www.oceanexpert.org/expert/47782 -https://www.oceanexpert.org/expert/47783 -https://www.oceanexpert.org/expert/47784 -https://www.oceanexpert.org/expert/47785 -https://www.oceanexpert.org/expert/47786 -https://www.oceanexpert.org/expert/47787 -https://www.oceanexpert.org/expert/47788 -https://www.oceanexpert.org/expert/47790 -https://www.oceanexpert.org/expert/47792 -https://www.oceanexpert.org/expert/47793 -https://www.oceanexpert.org/expert/47794 -https://www.oceanexpert.org/expert/47795 -https://www.oceanexpert.org/expert/47796 -https://www.oceanexpert.org/expert/47797 -https://www.oceanexpert.org/expert/47798 -https://www.oceanexpert.org/expert/47799 -https://www.oceanexpert.org/expert/47802 -https://www.oceanexpert.org/expert/47804 -https://www.oceanexpert.org/expert/47805 -https://www.oceanexpert.org/expert/47808 -https://www.oceanexpert.org/expert/47811 -https://www.oceanexpert.org/expert/47812 -https://www.oceanexpert.org/expert/47813 -https://www.oceanexpert.org/expert/47814 -https://www.oceanexpert.org/expert/47816 -https://www.oceanexpert.org/expert/47817 -https://www.oceanexpert.org/expert/47818 -https://www.oceanexpert.org/expert/47819 -https://www.oceanexpert.org/expert/47820 -https://www.oceanexpert.org/expert/47821 -https://www.oceanexpert.org/expert/47822 -https://www.oceanexpert.org/expert/47823 -https://www.oceanexpert.org/expert/47826 -https://www.oceanexpert.org/expert/47827 -https://www.oceanexpert.org/expert/47829 -https://www.oceanexpert.org/expert/47830 -https://www.oceanexpert.org/expert/47832 -https://www.oceanexpert.org/expert/47834 -https://www.oceanexpert.org/expert/47835 -https://www.oceanexpert.org/expert/47840 -https://www.oceanexpert.org/expert/47843 -https://www.oceanexpert.org/expert/47844 -https://www.oceanexpert.org/expert/47846 -https://www.oceanexpert.org/expert/47848 -https://www.oceanexpert.org/expert/47849 -https://www.oceanexpert.org/expert/47851 -https://www.oceanexpert.org/expert/47853 -https://www.oceanexpert.org/expert/47854 -https://www.oceanexpert.org/expert/47855 -https://www.oceanexpert.org/expert/47856 -https://www.oceanexpert.org/expert/47859 -https://www.oceanexpert.org/expert/47861 -https://www.oceanexpert.org/expert/47862 -https://www.oceanexpert.org/expert/47863 -https://www.oceanexpert.org/expert/47864 -https://www.oceanexpert.org/expert/47866 -https://www.oceanexpert.org/expert/47870 -https://www.oceanexpert.org/expert/47871 -https://www.oceanexpert.org/expert/47874 -https://www.oceanexpert.org/expert/47875 -https://www.oceanexpert.org/expert/47877 -https://www.oceanexpert.org/expert/47878 -https://www.oceanexpert.org/expert/47879 -https://www.oceanexpert.org/expert/47880 -https://www.oceanexpert.org/expert/47881 -https://www.oceanexpert.org/expert/47882 -https://www.oceanexpert.org/expert/47883 -https://www.oceanexpert.org/expert/47884 -https://www.oceanexpert.org/expert/47885 -https://www.oceanexpert.org/expert/47890 -https://www.oceanexpert.org/expert/47893 -https://www.oceanexpert.org/expert/47896 -https://www.oceanexpert.org/expert/47897 -https://www.oceanexpert.org/expert/47898 -https://www.oceanexpert.org/expert/47901 -https://www.oceanexpert.org/expert/47902 -https://www.oceanexpert.org/expert/47903 -https://www.oceanexpert.org/expert/47904 -https://www.oceanexpert.org/expert/47905 -https://www.oceanexpert.org/expert/47914 -https://www.oceanexpert.org/expert/47915 -https://www.oceanexpert.org/expert/47916 -https://www.oceanexpert.org/expert/47918 -https://www.oceanexpert.org/expert/47919 -https://www.oceanexpert.org/expert/47920 -https://www.oceanexpert.org/expert/47922 -https://www.oceanexpert.org/expert/47924 -https://www.oceanexpert.org/expert/47925 -https://www.oceanexpert.org/expert/47927 -https://www.oceanexpert.org/expert/47928 -https://www.oceanexpert.org/expert/47933 -https://www.oceanexpert.org/expert/47937 -https://www.oceanexpert.org/expert/47942 -https://www.oceanexpert.org/expert/47947 -https://www.oceanexpert.org/expert/47948 -https://www.oceanexpert.org/expert/47951 -https://www.oceanexpert.org/expert/47954 -https://www.oceanexpert.org/expert/47956 -https://www.oceanexpert.org/expert/47957 -https://www.oceanexpert.org/expert/47959 -https://www.oceanexpert.org/expert/47961 -https://www.oceanexpert.org/expert/47962 -https://www.oceanexpert.org/expert/47964 -https://www.oceanexpert.org/expert/47965 -https://www.oceanexpert.org/expert/47966 -https://www.oceanexpert.org/expert/47967 -https://www.oceanexpert.org/expert/47968 -https://www.oceanexpert.org/expert/47969 -https://www.oceanexpert.org/expert/47970 -https://www.oceanexpert.org/expert/47971 -https://www.oceanexpert.org/expert/47972 -https://www.oceanexpert.org/expert/47973 -https://www.oceanexpert.org/expert/47974 -https://www.oceanexpert.org/expert/47975 -https://www.oceanexpert.org/expert/47976 -https://www.oceanexpert.org/expert/47978 -https://www.oceanexpert.org/expert/47980 -https://www.oceanexpert.org/expert/47985 -https://www.oceanexpert.org/expert/47987 -https://www.oceanexpert.org/expert/47988 -https://www.oceanexpert.org/expert/47989 -https://www.oceanexpert.org/expert/47992 -https://www.oceanexpert.org/expert/47993 -https://www.oceanexpert.org/expert/47998 -https://www.oceanexpert.org/expert/48000 -https://www.oceanexpert.org/expert/48001 -https://www.oceanexpert.org/expert/48002 -https://www.oceanexpert.org/expert/48004 -https://www.oceanexpert.org/expert/48005 -https://www.oceanexpert.org/expert/48006 -https://www.oceanexpert.org/expert/48007 -https://www.oceanexpert.org/expert/48009 -https://www.oceanexpert.org/expert/48012 -https://www.oceanexpert.org/expert/48013 -https://www.oceanexpert.org/expert/48014 -https://www.oceanexpert.org/expert/48015 -https://www.oceanexpert.org/expert/48016 -https://www.oceanexpert.org/expert/48017 -https://www.oceanexpert.org/expert/48018 -https://www.oceanexpert.org/expert/48019 -https://www.oceanexpert.org/expert/48020 -https://www.oceanexpert.org/expert/48023 -https://www.oceanexpert.org/expert/48024 -https://www.oceanexpert.org/expert/48025 -https://www.oceanexpert.org/expert/48027 -https://www.oceanexpert.org/expert/48028 -https://www.oceanexpert.org/expert/48029 -https://www.oceanexpert.org/expert/48030 -https://www.oceanexpert.org/expert/48031 -https://www.oceanexpert.org/expert/48032 -https://www.oceanexpert.org/expert/48033 -https://www.oceanexpert.org/expert/48034 -https://www.oceanexpert.org/expert/48035 -https://www.oceanexpert.org/expert/48036 -https://www.oceanexpert.org/expert/48037 -https://www.oceanexpert.org/expert/48038 -https://www.oceanexpert.org/expert/48039 -https://www.oceanexpert.org/expert/48041 -https://www.oceanexpert.org/expert/48045 -https://www.oceanexpert.org/expert/48046 -https://www.oceanexpert.org/expert/48047 -https://www.oceanexpert.org/expert/48049 -https://www.oceanexpert.org/expert/48050 -https://www.oceanexpert.org/expert/48052 -https://www.oceanexpert.org/expert/48053 -https://www.oceanexpert.org/expert/48055 -https://www.oceanexpert.org/expert/48056 -https://www.oceanexpert.org/expert/48058 -https://www.oceanexpert.org/expert/48059 -https://www.oceanexpert.org/expert/48061 -https://www.oceanexpert.org/expert/48063 -https://www.oceanexpert.org/expert/48065 -https://www.oceanexpert.org/expert/48066 -https://www.oceanexpert.org/expert/48072 -https://www.oceanexpert.org/expert/48074 -https://www.oceanexpert.org/expert/48076 -https://www.oceanexpert.org/expert/48081 -https://www.oceanexpert.org/expert/48083 -https://www.oceanexpert.org/expert/48084 -https://www.oceanexpert.org/expert/48085 -https://www.oceanexpert.org/expert/48086 -https://www.oceanexpert.org/expert/48088 -https://www.oceanexpert.org/expert/48089 -https://www.oceanexpert.org/expert/48091 -https://www.oceanexpert.org/expert/48092 -https://www.oceanexpert.org/expert/48093 -https://www.oceanexpert.org/expert/48096 -https://www.oceanexpert.org/expert/48097 -https://www.oceanexpert.org/expert/48098 -https://www.oceanexpert.org/expert/48099 -https://www.oceanexpert.org/expert/48100 -https://www.oceanexpert.org/expert/48102 -https://www.oceanexpert.org/expert/48103 -https://www.oceanexpert.org/expert/48106 -https://www.oceanexpert.org/expert/48109 -https://www.oceanexpert.org/expert/48110 -https://www.oceanexpert.org/expert/48112 -https://www.oceanexpert.org/expert/48115 -https://www.oceanexpert.org/expert/48116 -https://www.oceanexpert.org/expert/48118 -https://www.oceanexpert.org/expert/48119 -https://www.oceanexpert.org/expert/48121 -https://www.oceanexpert.org/expert/48122 -https://www.oceanexpert.org/expert/48123 -https://www.oceanexpert.org/expert/48124 -https://www.oceanexpert.org/expert/48125 -https://www.oceanexpert.org/expert/48126 -https://www.oceanexpert.org/expert/48128 -https://www.oceanexpert.org/expert/48131 -https://www.oceanexpert.org/expert/48134 -https://www.oceanexpert.org/expert/48139 -https://www.oceanexpert.org/expert/48140 -https://www.oceanexpert.org/expert/48141 -https://www.oceanexpert.org/expert/48143 -https://www.oceanexpert.org/expert/48147 -https://www.oceanexpert.org/expert/48148 -https://www.oceanexpert.org/expert/48149 -https://www.oceanexpert.org/expert/48150 -https://www.oceanexpert.org/expert/48151 -https://www.oceanexpert.org/expert/48152 -https://www.oceanexpert.org/expert/48153 -https://www.oceanexpert.org/expert/48154 -https://www.oceanexpert.org/expert/48155 -https://www.oceanexpert.org/expert/48156 -https://www.oceanexpert.org/expert/48159 -https://www.oceanexpert.org/expert/48160 -https://www.oceanexpert.org/expert/48161 -https://www.oceanexpert.org/expert/48163 -https://www.oceanexpert.org/expert/48165 -https://www.oceanexpert.org/expert/48168 -https://www.oceanexpert.org/expert/48169 -https://www.oceanexpert.org/expert/48170 -https://www.oceanexpert.org/expert/48171 -https://www.oceanexpert.org/expert/48174 -https://www.oceanexpert.org/expert/48176 -https://www.oceanexpert.org/expert/48177 -https://www.oceanexpert.org/expert/48179 -https://www.oceanexpert.org/expert/48180 -https://www.oceanexpert.org/expert/48181 -https://www.oceanexpert.org/expert/48183 -https://www.oceanexpert.org/expert/48184 -https://www.oceanexpert.org/expert/48185 -https://www.oceanexpert.org/expert/48186 -https://www.oceanexpert.org/expert/48187 -https://www.oceanexpert.org/expert/48195 -https://www.oceanexpert.org/expert/48199 -https://www.oceanexpert.org/expert/48200 -https://www.oceanexpert.org/expert/48203 -https://www.oceanexpert.org/expert/48204 -https://www.oceanexpert.org/expert/48206 -https://www.oceanexpert.org/expert/48212 -https://www.oceanexpert.org/expert/48214 -https://www.oceanexpert.org/expert/48220 -https://www.oceanexpert.org/expert/48225 -https://www.oceanexpert.org/expert/48229 -https://www.oceanexpert.org/expert/48230 -https://www.oceanexpert.org/expert/48231 -https://www.oceanexpert.org/expert/48233 -https://www.oceanexpert.org/expert/48234 -https://www.oceanexpert.org/expert/48239 -https://www.oceanexpert.org/expert/48241 -https://www.oceanexpert.org/expert/48242 -https://www.oceanexpert.org/expert/48243 -https://www.oceanexpert.org/expert/48244 -https://www.oceanexpert.org/expert/48246 -https://www.oceanexpert.org/expert/48247 -https://www.oceanexpert.org/expert/48249 -https://www.oceanexpert.org/expert/48250 -https://www.oceanexpert.org/expert/48251 -https://www.oceanexpert.org/expert/48252 -https://www.oceanexpert.org/expert/48254 -https://www.oceanexpert.org/expert/48256 -https://www.oceanexpert.org/expert/48258 -https://www.oceanexpert.org/expert/48259 -https://www.oceanexpert.org/expert/48261 -https://www.oceanexpert.org/expert/48263 -https://www.oceanexpert.org/expert/48268 -https://www.oceanexpert.org/expert/48269 -https://www.oceanexpert.org/expert/48270 -https://www.oceanexpert.org/expert/48272 -https://www.oceanexpert.org/expert/48274 -https://www.oceanexpert.org/expert/48277 -https://www.oceanexpert.org/expert/48279 -https://www.oceanexpert.org/expert/48280 -https://www.oceanexpert.org/expert/48283 -https://www.oceanexpert.org/expert/48284 -https://www.oceanexpert.org/expert/48285 -https://www.oceanexpert.org/expert/48287 -https://www.oceanexpert.org/expert/48289 -https://www.oceanexpert.org/expert/48290 -https://www.oceanexpert.org/expert/48291 -https://www.oceanexpert.org/expert/48293 -https://www.oceanexpert.org/expert/48295 -https://www.oceanexpert.org/expert/48296 -https://www.oceanexpert.org/expert/48298 -https://www.oceanexpert.org/expert/48299 -https://www.oceanexpert.org/expert/48300 -https://www.oceanexpert.org/expert/48301 -https://www.oceanexpert.org/expert/48302 -https://www.oceanexpert.org/expert/48303 -https://www.oceanexpert.org/expert/48304 -https://www.oceanexpert.org/expert/48305 -https://www.oceanexpert.org/expert/48306 -https://www.oceanexpert.org/expert/48307 -https://www.oceanexpert.org/expert/48308 -https://www.oceanexpert.org/expert/48309 -https://www.oceanexpert.org/expert/48310 -https://www.oceanexpert.org/expert/48311 -https://www.oceanexpert.org/expert/48313 -https://www.oceanexpert.org/expert/48317 -https://www.oceanexpert.org/expert/48318 -https://www.oceanexpert.org/expert/48319 -https://www.oceanexpert.org/expert/48320 -https://www.oceanexpert.org/expert/48321 -https://www.oceanexpert.org/expert/48322 -https://www.oceanexpert.org/expert/48325 -https://www.oceanexpert.org/expert/48328 -https://www.oceanexpert.org/expert/48329 -https://www.oceanexpert.org/expert/48330 -https://www.oceanexpert.org/expert/48332 -https://www.oceanexpert.org/expert/48334 -https://www.oceanexpert.org/expert/48337 -https://www.oceanexpert.org/expert/48338 -https://www.oceanexpert.org/expert/48343 -https://www.oceanexpert.org/expert/48347 -https://www.oceanexpert.org/expert/48348 -https://www.oceanexpert.org/expert/48349 -https://www.oceanexpert.org/expert/48352 -https://www.oceanexpert.org/expert/48353 -https://www.oceanexpert.org/expert/48356 -https://www.oceanexpert.org/expert/48358 -https://www.oceanexpert.org/expert/48359 -https://www.oceanexpert.org/expert/48362 -https://www.oceanexpert.org/expert/48364 -https://www.oceanexpert.org/expert/48365 -https://www.oceanexpert.org/expert/48366 -https://www.oceanexpert.org/expert/48369 -https://www.oceanexpert.org/expert/48372 -https://www.oceanexpert.org/expert/48374 -https://www.oceanexpert.org/expert/48376 -https://www.oceanexpert.org/expert/48380 -https://www.oceanexpert.org/expert/48381 -https://www.oceanexpert.org/expert/48383 -https://www.oceanexpert.org/expert/48384 -https://www.oceanexpert.org/expert/48385 -https://www.oceanexpert.org/expert/48388 -https://www.oceanexpert.org/expert/48389 -https://www.oceanexpert.org/expert/48392 -https://www.oceanexpert.org/expert/48394 -https://www.oceanexpert.org/expert/48397 -https://www.oceanexpert.org/expert/48400 -https://www.oceanexpert.org/expert/48401 -https://www.oceanexpert.org/expert/48403 -https://www.oceanexpert.org/expert/48404 -https://www.oceanexpert.org/expert/48405 -https://www.oceanexpert.org/expert/48408 -https://www.oceanexpert.org/expert/48419 -https://www.oceanexpert.org/expert/48420 -https://www.oceanexpert.org/expert/48421 -https://www.oceanexpert.org/expert/48425 -https://www.oceanexpert.org/expert/48432 -https://www.oceanexpert.org/expert/48434 -https://www.oceanexpert.org/expert/48435 -https://www.oceanexpert.org/expert/48436 -https://www.oceanexpert.org/expert/48438 -https://www.oceanexpert.org/expert/48442 -https://www.oceanexpert.org/expert/48445 -https://www.oceanexpert.org/expert/48446 -https://www.oceanexpert.org/expert/48448 -https://www.oceanexpert.org/expert/48449 -https://www.oceanexpert.org/expert/48451 -https://www.oceanexpert.org/expert/48453 -https://www.oceanexpert.org/expert/48454 -https://www.oceanexpert.org/expert/48457 -https://www.oceanexpert.org/expert/48458 -https://www.oceanexpert.org/expert/48459 -https://www.oceanexpert.org/expert/48460 -https://www.oceanexpert.org/expert/48462 -https://www.oceanexpert.org/expert/48463 -https://www.oceanexpert.org/expert/48465 -https://www.oceanexpert.org/expert/48466 -https://www.oceanexpert.org/expert/48467 -https://www.oceanexpert.org/expert/48468 -https://www.oceanexpert.org/expert/48469 -https://www.oceanexpert.org/expert/48470 -https://www.oceanexpert.org/expert/48473 -https://www.oceanexpert.org/expert/48477 -https://www.oceanexpert.org/expert/48478 -https://www.oceanexpert.org/expert/48479 -https://www.oceanexpert.org/expert/48480 -https://www.oceanexpert.org/expert/48481 -https://www.oceanexpert.org/expert/48482 -https://www.oceanexpert.org/expert/48484 -https://www.oceanexpert.org/expert/48485 -https://www.oceanexpert.org/expert/48486 -https://www.oceanexpert.org/expert/48487 -https://www.oceanexpert.org/expert/48490 -https://www.oceanexpert.org/expert/48491 -https://www.oceanexpert.org/expert/48492 -https://www.oceanexpert.org/expert/48493 -https://www.oceanexpert.org/expert/48494 -https://www.oceanexpert.org/expert/48496 -https://www.oceanexpert.org/expert/48497 -https://www.oceanexpert.org/expert/48498 -https://www.oceanexpert.org/expert/48499 -https://www.oceanexpert.org/expert/48500 -https://www.oceanexpert.org/expert/48501 -https://www.oceanexpert.org/expert/48507 -https://www.oceanexpert.org/expert/48510 -https://www.oceanexpert.org/expert/48511 -https://www.oceanexpert.org/expert/48512 -https://www.oceanexpert.org/expert/48513 -https://www.oceanexpert.org/expert/48514 -https://www.oceanexpert.org/expert/48515 -https://www.oceanexpert.org/expert/48516 -https://www.oceanexpert.org/expert/48517 -https://www.oceanexpert.org/expert/48518 -https://www.oceanexpert.org/expert/48521 -https://www.oceanexpert.org/expert/48522 -https://www.oceanexpert.org/expert/48524 -https://www.oceanexpert.org/expert/48525 -https://www.oceanexpert.org/expert/48526 -https://www.oceanexpert.org/expert/48533 -https://www.oceanexpert.org/expert/48534 -https://www.oceanexpert.org/expert/48535 -https://www.oceanexpert.org/expert/48536 -https://www.oceanexpert.org/expert/48537 -https://www.oceanexpert.org/expert/48538 -https://www.oceanexpert.org/expert/48541 -https://www.oceanexpert.org/expert/48542 -https://www.oceanexpert.org/expert/48544 -https://www.oceanexpert.org/expert/48545 -https://www.oceanexpert.org/expert/48548 -https://www.oceanexpert.org/expert/48549 -https://www.oceanexpert.org/expert/48550 -https://www.oceanexpert.org/expert/48552 -https://www.oceanexpert.org/expert/48553 -https://www.oceanexpert.org/expert/48554 -https://www.oceanexpert.org/expert/48555 -https://www.oceanexpert.org/expert/48556 -https://www.oceanexpert.org/expert/48557 -https://www.oceanexpert.org/expert/48558 -https://www.oceanexpert.org/expert/48559 -https://www.oceanexpert.org/expert/48560 -https://www.oceanexpert.org/expert/48561 -https://www.oceanexpert.org/expert/48562 -https://www.oceanexpert.org/expert/48563 -https://www.oceanexpert.org/expert/48564 -https://www.oceanexpert.org/expert/48565 -https://www.oceanexpert.org/expert/48566 -https://www.oceanexpert.org/expert/48568 -https://www.oceanexpert.org/expert/48570 -https://www.oceanexpert.org/expert/48571 -https://www.oceanexpert.org/expert/48573 -https://www.oceanexpert.org/expert/48574 -https://www.oceanexpert.org/expert/48576 -https://www.oceanexpert.org/expert/48577 -https://www.oceanexpert.org/expert/48578 -https://www.oceanexpert.org/expert/48579 -https://www.oceanexpert.org/expert/48581 -https://www.oceanexpert.org/expert/48582 -https://www.oceanexpert.org/expert/48585 -https://www.oceanexpert.org/expert/48589 -https://www.oceanexpert.org/expert/48590 -https://www.oceanexpert.org/expert/48593 -https://www.oceanexpert.org/expert/48594 -https://www.oceanexpert.org/expert/48595 -https://www.oceanexpert.org/expert/48596 -https://www.oceanexpert.org/expert/48597 -https://www.oceanexpert.org/expert/48599 -https://www.oceanexpert.org/expert/48600 -https://www.oceanexpert.org/expert/48601 -https://www.oceanexpert.org/expert/48603 -https://www.oceanexpert.org/expert/48607 -https://www.oceanexpert.org/expert/48609 -https://www.oceanexpert.org/expert/48611 -https://www.oceanexpert.org/expert/48613 -https://www.oceanexpert.org/expert/48615 -https://www.oceanexpert.org/expert/48616 -https://www.oceanexpert.org/expert/48617 -https://www.oceanexpert.org/expert/48618 -https://www.oceanexpert.org/expert/48622 -https://www.oceanexpert.org/expert/48623 -https://www.oceanexpert.org/expert/48624 -https://www.oceanexpert.org/expert/48625 -https://www.oceanexpert.org/expert/48626 -https://www.oceanexpert.org/expert/48628 -https://www.oceanexpert.org/expert/48630 -https://www.oceanexpert.org/expert/48631 -https://www.oceanexpert.org/expert/48634 -https://www.oceanexpert.org/expert/48635 -https://www.oceanexpert.org/expert/48636 -https://www.oceanexpert.org/expert/48637 -https://www.oceanexpert.org/expert/48639 -https://www.oceanexpert.org/expert/48640 -https://www.oceanexpert.org/expert/48641 -https://www.oceanexpert.org/expert/48643 -https://www.oceanexpert.org/expert/48644 -https://www.oceanexpert.org/expert/48649 -https://www.oceanexpert.org/expert/48652 -https://www.oceanexpert.org/expert/48654 -https://www.oceanexpert.org/expert/48655 -https://www.oceanexpert.org/expert/48657 -https://www.oceanexpert.org/expert/48658 -https://www.oceanexpert.org/expert/48659 -https://www.oceanexpert.org/expert/48660 -https://www.oceanexpert.org/expert/48661 -https://www.oceanexpert.org/expert/48662 -https://www.oceanexpert.org/expert/48663 -https://www.oceanexpert.org/expert/48664 -https://www.oceanexpert.org/expert/48665 -https://www.oceanexpert.org/expert/48666 -https://www.oceanexpert.org/expert/48667 -https://www.oceanexpert.org/expert/48668 -https://www.oceanexpert.org/expert/48669 -https://www.oceanexpert.org/expert/48670 -https://www.oceanexpert.org/expert/48671 -https://www.oceanexpert.org/expert/48674 -https://www.oceanexpert.org/expert/48677 -https://www.oceanexpert.org/expert/48679 -https://www.oceanexpert.org/expert/48680 -https://www.oceanexpert.org/expert/48681 -https://www.oceanexpert.org/expert/48682 -https://www.oceanexpert.org/expert/48684 -https://www.oceanexpert.org/expert/48685 -https://www.oceanexpert.org/expert/48686 -https://www.oceanexpert.org/expert/48687 -https://www.oceanexpert.org/expert/48688 -https://www.oceanexpert.org/expert/48691 -https://www.oceanexpert.org/expert/48693 -https://www.oceanexpert.org/expert/48694 -https://www.oceanexpert.org/expert/48697 -https://www.oceanexpert.org/expert/48701 -https://www.oceanexpert.org/expert/48704 -https://www.oceanexpert.org/expert/48706 -https://www.oceanexpert.org/expert/48709 -https://www.oceanexpert.org/expert/48711 -https://www.oceanexpert.org/expert/48713 -https://www.oceanexpert.org/expert/48717 -https://www.oceanexpert.org/expert/48718 -https://www.oceanexpert.org/expert/48719 -https://www.oceanexpert.org/expert/48720 -https://www.oceanexpert.org/expert/48721 -https://www.oceanexpert.org/expert/48722 -https://www.oceanexpert.org/expert/48723 -https://www.oceanexpert.org/expert/48724 -https://www.oceanexpert.org/expert/48725 -https://www.oceanexpert.org/expert/48726 -https://www.oceanexpert.org/expert/48727 -https://www.oceanexpert.org/expert/48728 -https://www.oceanexpert.org/expert/48729 -https://www.oceanexpert.org/expert/48731 -https://www.oceanexpert.org/expert/48732 -https://www.oceanexpert.org/expert/48735 -https://www.oceanexpert.org/expert/48736 -https://www.oceanexpert.org/expert/48737 -https://www.oceanexpert.org/expert/48738 -https://www.oceanexpert.org/expert/48739 -https://www.oceanexpert.org/expert/48740 -https://www.oceanexpert.org/expert/48743 -https://www.oceanexpert.org/expert/48744 -https://www.oceanexpert.org/expert/48745 -https://www.oceanexpert.org/expert/48746 -https://www.oceanexpert.org/expert/48749 -https://www.oceanexpert.org/expert/48751 -https://www.oceanexpert.org/expert/48753 -https://www.oceanexpert.org/expert/48755 -https://www.oceanexpert.org/expert/48758 -https://www.oceanexpert.org/expert/48760 -https://www.oceanexpert.org/expert/48761 -https://www.oceanexpert.org/expert/48763 -https://www.oceanexpert.org/expert/48764 -https://www.oceanexpert.org/expert/48765 -https://www.oceanexpert.org/expert/48766 -https://www.oceanexpert.org/expert/48767 -https://www.oceanexpert.org/expert/48768 -https://www.oceanexpert.org/expert/48769 -https://www.oceanexpert.org/expert/48770 -https://www.oceanexpert.org/expert/48776 -https://www.oceanexpert.org/expert/48777 -https://www.oceanexpert.org/expert/48780 -https://www.oceanexpert.org/expert/48781 -https://www.oceanexpert.org/expert/48782 -https://www.oceanexpert.org/expert/48784 -https://www.oceanexpert.org/expert/48785 -https://www.oceanexpert.org/expert/48786 -https://www.oceanexpert.org/expert/48787 -https://www.oceanexpert.org/expert/48788 -https://www.oceanexpert.org/expert/48789 -https://www.oceanexpert.org/expert/48790 -https://www.oceanexpert.org/expert/48791 -https://www.oceanexpert.org/expert/48792 -https://www.oceanexpert.org/expert/48794 -https://www.oceanexpert.org/expert/48796 -https://www.oceanexpert.org/expert/48797 -https://www.oceanexpert.org/expert/48800 -https://www.oceanexpert.org/expert/48802 -https://www.oceanexpert.org/expert/48804 -https://www.oceanexpert.org/expert/48805 -https://www.oceanexpert.org/expert/48806 -https://www.oceanexpert.org/expert/48807 -https://www.oceanexpert.org/expert/48808 -https://www.oceanexpert.org/expert/48809 -https://www.oceanexpert.org/expert/48811 -https://www.oceanexpert.org/expert/48812 -https://www.oceanexpert.org/expert/48813 -https://www.oceanexpert.org/expert/48814 -https://www.oceanexpert.org/expert/48816 -https://www.oceanexpert.org/expert/48817 -https://www.oceanexpert.org/expert/48818 -https://www.oceanexpert.org/expert/48819 -https://www.oceanexpert.org/expert/48820 -https://www.oceanexpert.org/expert/48821 -https://www.oceanexpert.org/expert/48822 -https://www.oceanexpert.org/expert/48824 -https://www.oceanexpert.org/expert/48825 -https://www.oceanexpert.org/expert/48828 -https://www.oceanexpert.org/expert/48830 -https://www.oceanexpert.org/expert/48831 -https://www.oceanexpert.org/expert/48832 -https://www.oceanexpert.org/expert/48833 -https://www.oceanexpert.org/expert/48836 -https://www.oceanexpert.org/expert/48838 -https://www.oceanexpert.org/expert/48842 -https://www.oceanexpert.org/expert/48843 -https://www.oceanexpert.org/expert/48845 -https://www.oceanexpert.org/expert/48848 -https://www.oceanexpert.org/expert/48850 -https://www.oceanexpert.org/expert/48851 -https://www.oceanexpert.org/expert/48855 -https://www.oceanexpert.org/expert/48857 -https://www.oceanexpert.org/expert/48860 -https://www.oceanexpert.org/expert/48861 -https://www.oceanexpert.org/expert/48864 -https://www.oceanexpert.org/expert/48866 -https://www.oceanexpert.org/expert/48867 -https://www.oceanexpert.org/expert/48871 -https://www.oceanexpert.org/expert/48874 -https://www.oceanexpert.org/expert/48876 -https://www.oceanexpert.org/expert/48877 -https://www.oceanexpert.org/expert/48878 -https://www.oceanexpert.org/expert/48879 -https://www.oceanexpert.org/expert/48880 -https://www.oceanexpert.org/expert/48881 -https://www.oceanexpert.org/expert/48882 -https://www.oceanexpert.org/expert/48883 -https://www.oceanexpert.org/expert/48884 -https://www.oceanexpert.org/expert/48885 -https://www.oceanexpert.org/expert/48886 -https://www.oceanexpert.org/expert/48895 -https://www.oceanexpert.org/expert/48900 -https://www.oceanexpert.org/expert/48901 -https://www.oceanexpert.org/expert/48902 -https://www.oceanexpert.org/expert/48904 -https://www.oceanexpert.org/expert/48906 -https://www.oceanexpert.org/expert/48907 -https://www.oceanexpert.org/expert/48908 -https://www.oceanexpert.org/expert/48909 -https://www.oceanexpert.org/expert/48913 -https://www.oceanexpert.org/expert/48914 -https://www.oceanexpert.org/expert/48917 -https://www.oceanexpert.org/expert/48918 -https://www.oceanexpert.org/expert/48919 -https://www.oceanexpert.org/expert/48920 -https://www.oceanexpert.org/expert/48924 -https://www.oceanexpert.org/expert/48925 -https://www.oceanexpert.org/expert/48926 -https://www.oceanexpert.org/expert/48928 -https://www.oceanexpert.org/expert/48930 -https://www.oceanexpert.org/expert/48932 -https://www.oceanexpert.org/expert/48933 -https://www.oceanexpert.org/expert/48935 -https://www.oceanexpert.org/expert/48936 -https://www.oceanexpert.org/expert/48937 -https://www.oceanexpert.org/expert/48938 -https://www.oceanexpert.org/expert/48940 -https://www.oceanexpert.org/expert/48946 -https://www.oceanexpert.org/expert/48947 -https://www.oceanexpert.org/expert/48948 -https://www.oceanexpert.org/expert/48949 -https://www.oceanexpert.org/expert/48950 -https://www.oceanexpert.org/expert/48951 -https://www.oceanexpert.org/expert/48952 -https://www.oceanexpert.org/expert/48954 -https://www.oceanexpert.org/expert/48955 -https://www.oceanexpert.org/expert/48956 -https://www.oceanexpert.org/expert/48958 -https://www.oceanexpert.org/expert/48959 -https://www.oceanexpert.org/expert/48960 -https://www.oceanexpert.org/expert/48961 -https://www.oceanexpert.org/expert/48964 -https://www.oceanexpert.org/expert/48966 -https://www.oceanexpert.org/expert/48968 -https://www.oceanexpert.org/expert/48971 -https://www.oceanexpert.org/expert/48973 -https://www.oceanexpert.org/expert/48974 -https://www.oceanexpert.org/expert/48975 -https://www.oceanexpert.org/expert/48978 -https://www.oceanexpert.org/expert/48980 -https://www.oceanexpert.org/expert/48982 -https://www.oceanexpert.org/expert/48986 -https://www.oceanexpert.org/expert/48988 -https://www.oceanexpert.org/expert/48992 -https://www.oceanexpert.org/expert/48993 -https://www.oceanexpert.org/expert/48994 -https://www.oceanexpert.org/expert/48995 -https://www.oceanexpert.org/expert/48996 -https://www.oceanexpert.org/expert/48998 -https://www.oceanexpert.org/expert/48999 -https://www.oceanexpert.org/expert/49000 -https://www.oceanexpert.org/expert/49004 -https://www.oceanexpert.org/expert/49005 -https://www.oceanexpert.org/expert/49006 -https://www.oceanexpert.org/expert/49007 -https://www.oceanexpert.org/expert/49008 -https://www.oceanexpert.org/expert/49009 -https://www.oceanexpert.org/expert/49010 -https://www.oceanexpert.org/expert/49013 -https://www.oceanexpert.org/expert/49014 -https://www.oceanexpert.org/expert/49015 -https://www.oceanexpert.org/expert/49017 -https://www.oceanexpert.org/expert/49018 -https://www.oceanexpert.org/expert/49022 -https://www.oceanexpert.org/expert/49023 -https://www.oceanexpert.org/expert/49024 -https://www.oceanexpert.org/expert/49025 -https://www.oceanexpert.org/expert/49026 -https://www.oceanexpert.org/expert/49027 -https://www.oceanexpert.org/expert/49029 -https://www.oceanexpert.org/expert/49031 -https://www.oceanexpert.org/expert/49032 -https://www.oceanexpert.org/expert/49033 -https://www.oceanexpert.org/expert/49034 -https://www.oceanexpert.org/expert/49035 -https://www.oceanexpert.org/expert/49037 -https://www.oceanexpert.org/expert/49038 -https://www.oceanexpert.org/expert/49039 -https://www.oceanexpert.org/expert/49041 -https://www.oceanexpert.org/expert/49044 -https://www.oceanexpert.org/expert/49050 -https://www.oceanexpert.org/expert/49051 -https://www.oceanexpert.org/expert/49052 -https://www.oceanexpert.org/expert/49055 -https://www.oceanexpert.org/expert/49056 -https://www.oceanexpert.org/expert/49057 -https://www.oceanexpert.org/expert/49061 -https://www.oceanexpert.org/expert/49063 -https://www.oceanexpert.org/expert/49065 -https://www.oceanexpert.org/expert/49068 -https://www.oceanexpert.org/expert/49071 -https://www.oceanexpert.org/expert/49073 -https://www.oceanexpert.org/expert/49074 -https://www.oceanexpert.org/expert/49075 -https://www.oceanexpert.org/expert/49076 -https://www.oceanexpert.org/expert/49077 -https://www.oceanexpert.org/expert/49078 -https://www.oceanexpert.org/expert/49079 -https://www.oceanexpert.org/expert/49080 -https://www.oceanexpert.org/expert/49081 -https://www.oceanexpert.org/expert/49082 -https://www.oceanexpert.org/expert/49083 -https://www.oceanexpert.org/expert/49084 -https://www.oceanexpert.org/expert/49086 -https://www.oceanexpert.org/expert/49088 -https://www.oceanexpert.org/expert/49089 -https://www.oceanexpert.org/expert/49092 -https://www.oceanexpert.org/expert/49094 -https://www.oceanexpert.org/expert/49096 -https://www.oceanexpert.org/expert/49098 -https://www.oceanexpert.org/expert/49099 -https://www.oceanexpert.org/expert/49100 -https://www.oceanexpert.org/expert/49103 -https://www.oceanexpert.org/expert/49106 -https://www.oceanexpert.org/expert/49108 -https://www.oceanexpert.org/expert/49110 -https://www.oceanexpert.org/expert/49111 -https://www.oceanexpert.org/expert/49112 -https://www.oceanexpert.org/expert/49114 -https://www.oceanexpert.org/expert/49116 -https://www.oceanexpert.org/expert/49118 -https://www.oceanexpert.org/expert/49120 -https://www.oceanexpert.org/expert/49121 -https://www.oceanexpert.org/expert/49123 -https://www.oceanexpert.org/expert/49124 -https://www.oceanexpert.org/expert/49126 -https://www.oceanexpert.org/expert/49131 -https://www.oceanexpert.org/expert/49133 -https://www.oceanexpert.org/expert/49134 -https://www.oceanexpert.org/expert/49137 -https://www.oceanexpert.org/expert/49138 -https://www.oceanexpert.org/expert/49143 -https://www.oceanexpert.org/expert/49145 -https://www.oceanexpert.org/expert/49146 -https://www.oceanexpert.org/expert/49148 -https://www.oceanexpert.org/expert/49149 -https://www.oceanexpert.org/expert/49152 -https://www.oceanexpert.org/expert/49154 -https://www.oceanexpert.org/expert/49155 -https://www.oceanexpert.org/expert/49156 -https://www.oceanexpert.org/expert/49158 -https://www.oceanexpert.org/expert/49159 -https://www.oceanexpert.org/expert/49160 -https://www.oceanexpert.org/expert/49161 -https://www.oceanexpert.org/expert/49167 -https://www.oceanexpert.org/expert/49168 -https://www.oceanexpert.org/expert/49170 -https://www.oceanexpert.org/expert/49171 -https://www.oceanexpert.org/expert/49172 -https://www.oceanexpert.org/expert/49176 -https://www.oceanexpert.org/expert/49177 -https://www.oceanexpert.org/expert/49178 -https://www.oceanexpert.org/expert/49179 -https://www.oceanexpert.org/expert/49181 -https://www.oceanexpert.org/expert/49182 -https://www.oceanexpert.org/expert/49183 -https://www.oceanexpert.org/expert/49184 -https://www.oceanexpert.org/expert/49185 -https://www.oceanexpert.org/expert/49186 -https://www.oceanexpert.org/expert/49187 -https://www.oceanexpert.org/expert/49191 -https://www.oceanexpert.org/expert/49192 -https://www.oceanexpert.org/expert/49194 -https://www.oceanexpert.org/expert/49197 -https://www.oceanexpert.org/expert/49200 -https://www.oceanexpert.org/expert/49203 -https://www.oceanexpert.org/expert/49204 -https://www.oceanexpert.org/expert/49208 -https://www.oceanexpert.org/expert/49210 -https://www.oceanexpert.org/expert/49211 -https://www.oceanexpert.org/expert/49212 -https://www.oceanexpert.org/expert/49213 -https://www.oceanexpert.org/expert/49214 -https://www.oceanexpert.org/expert/49219 -https://www.oceanexpert.org/expert/49222 -https://www.oceanexpert.org/expert/49224 -https://www.oceanexpert.org/expert/49234 -https://www.oceanexpert.org/institution/18 -https://www.oceanexpert.org/institution/67 -https://www.oceanexpert.org/institution/70 -https://www.oceanexpert.org/institution/75 -https://www.oceanexpert.org/institution/96 -https://www.oceanexpert.org/institution/4889 -https://www.oceanexpert.org/institution/4890 -https://www.oceanexpert.org/institution/4893 -https://www.oceanexpert.org/institution/4899 -https://www.oceanexpert.org/institution/4915 -https://www.oceanexpert.org/institution/4922 -https://www.oceanexpert.org/institution/4930 -https://www.oceanexpert.org/institution/4941 -https://www.oceanexpert.org/institution/4942 -https://www.oceanexpert.org/institution/4951 -https://www.oceanexpert.org/institution/4953 -https://www.oceanexpert.org/institution/4958 -https://www.oceanexpert.org/institution/4969 -https://www.oceanexpert.org/institution/4975 -https://www.oceanexpert.org/institution/4980 -https://www.oceanexpert.org/institution/4996 -https://www.oceanexpert.org/institution/4997 -https://www.oceanexpert.org/institution/5010 -https://www.oceanexpert.org/institution/5014 -https://www.oceanexpert.org/institution/5021 -https://www.oceanexpert.org/institution/5027 -https://www.oceanexpert.org/institution/5028 -https://www.oceanexpert.org/institution/5041 -https://www.oceanexpert.org/institution/5042 -https://www.oceanexpert.org/institution/5049 -https://www.oceanexpert.org/institution/5053 -https://www.oceanexpert.org/institution/5057 -https://www.oceanexpert.org/institution/5070 -https://www.oceanexpert.org/institution/5074 -https://www.oceanexpert.org/institution/5083 -https://www.oceanexpert.org/institution/5091 -https://www.oceanexpert.org/institution/5097 -https://www.oceanexpert.org/institution/5105 -https://www.oceanexpert.org/institution/5107 -https://www.oceanexpert.org/institution/5108 -https://www.oceanexpert.org/institution/5111 -https://www.oceanexpert.org/institution/5122 -https://www.oceanexpert.org/institution/5132 -https://www.oceanexpert.org/institution/5145 -https://www.oceanexpert.org/institution/5153 -https://www.oceanexpert.org/institution/5155 -https://www.oceanexpert.org/institution/5156 -https://www.oceanexpert.org/institution/5163 -https://www.oceanexpert.org/institution/5166 -https://www.oceanexpert.org/institution/5168 -https://www.oceanexpert.org/institution/5169 -https://www.oceanexpert.org/institution/5170 -https://www.oceanexpert.org/institution/5176 -https://www.oceanexpert.org/institution/5177 -https://www.oceanexpert.org/institution/5193 -https://www.oceanexpert.org/institution/5196 -https://www.oceanexpert.org/institution/5198 -https://www.oceanexpert.org/institution/5199 -https://www.oceanexpert.org/institution/5202 -https://www.oceanexpert.org/institution/5205 -https://www.oceanexpert.org/institution/5206 -https://www.oceanexpert.org/institution/5208 -https://www.oceanexpert.org/institution/5222 -https://www.oceanexpert.org/institution/5223 -https://www.oceanexpert.org/institution/5224 -https://www.oceanexpert.org/institution/5235 -https://www.oceanexpert.org/institution/5236 -https://www.oceanexpert.org/institution/5239 -https://www.oceanexpert.org/institution/5242 -https://www.oceanexpert.org/institution/5244 -https://www.oceanexpert.org/institution/5247 -https://www.oceanexpert.org/institution/5254 -https://www.oceanexpert.org/institution/5264 -https://www.oceanexpert.org/institution/5277 -https://www.oceanexpert.org/institution/5285 -https://www.oceanexpert.org/institution/5290 -https://www.oceanexpert.org/institution/5301 -https://www.oceanexpert.org/institution/5307 -https://www.oceanexpert.org/institution/5324 -https://www.oceanexpert.org/institution/5328 -https://www.oceanexpert.org/institution/5340 -https://www.oceanexpert.org/institution/5349 -https://www.oceanexpert.org/institution/5352 -https://www.oceanexpert.org/institution/5357 -https://www.oceanexpert.org/institution/5358 -https://www.oceanexpert.org/institution/5372 -https://www.oceanexpert.org/institution/5374 -https://www.oceanexpert.org/institution/5377 -https://www.oceanexpert.org/institution/5385 -https://www.oceanexpert.org/institution/5387 -https://www.oceanexpert.org/institution/5389 -https://www.oceanexpert.org/institution/5394 -https://www.oceanexpert.org/institution/5396 -https://www.oceanexpert.org/institution/5404 -https://www.oceanexpert.org/institution/5405 -https://www.oceanexpert.org/institution/5408 -https://www.oceanexpert.org/institution/5413 -https://www.oceanexpert.org/institution/5414 -https://www.oceanexpert.org/institution/5417 -https://www.oceanexpert.org/institution/5421 -https://www.oceanexpert.org/institution/5423 -https://www.oceanexpert.org/institution/5427 -https://www.oceanexpert.org/institution/5433 -https://www.oceanexpert.org/institution/5444 -https://www.oceanexpert.org/institution/5449 -https://www.oceanexpert.org/institution/5455 -https://www.oceanexpert.org/institution/5459 -https://www.oceanexpert.org/institution/5461 -https://www.oceanexpert.org/institution/5467 -https://www.oceanexpert.org/institution/5477 -https://www.oceanexpert.org/institution/5480 -https://www.oceanexpert.org/institution/5485 -https://www.oceanexpert.org/institution/5501 -https://www.oceanexpert.org/institution/5503 -https://www.oceanexpert.org/institution/5506 -https://www.oceanexpert.org/institution/5525 -https://www.oceanexpert.org/institution/5529 -https://www.oceanexpert.org/institution/5531 -https://www.oceanexpert.org/institution/5532 -https://www.oceanexpert.org/institution/5534 -https://www.oceanexpert.org/institution/5537 -https://www.oceanexpert.org/institution/5550 -https://www.oceanexpert.org/institution/5553 -https://www.oceanexpert.org/institution/5558 -https://www.oceanexpert.org/institution/5561 -https://www.oceanexpert.org/institution/5562 -https://www.oceanexpert.org/institution/5572 -https://www.oceanexpert.org/institution/5576 -https://www.oceanexpert.org/institution/5577 -https://www.oceanexpert.org/institution/5579 -https://www.oceanexpert.org/institution/5581 -https://www.oceanexpert.org/institution/5582 -https://www.oceanexpert.org/institution/5583 -https://www.oceanexpert.org/institution/5591 -https://www.oceanexpert.org/institution/5605 -https://www.oceanexpert.org/institution/5620 -https://www.oceanexpert.org/institution/5627 -https://www.oceanexpert.org/institution/5631 -https://www.oceanexpert.org/institution/5632 -https://www.oceanexpert.org/institution/5636 -https://www.oceanexpert.org/institution/5637 -https://www.oceanexpert.org/institution/5644 -https://www.oceanexpert.org/institution/5649 -https://www.oceanexpert.org/institution/5662 -https://www.oceanexpert.org/institution/5671 -https://www.oceanexpert.org/institution/5684 -https://www.oceanexpert.org/institution/5702 -https://www.oceanexpert.org/institution/5709 -https://www.oceanexpert.org/institution/5711 -https://www.oceanexpert.org/institution/5725 -https://www.oceanexpert.org/institution/5731 -https://www.oceanexpert.org/institution/5747 -https://www.oceanexpert.org/institution/5762 -https://www.oceanexpert.org/institution/5778 -https://www.oceanexpert.org/institution/5781 -https://www.oceanexpert.org/institution/5788 -https://www.oceanexpert.org/institution/5799 -https://www.oceanexpert.org/institution/5804 -https://www.oceanexpert.org/institution/5805 -https://www.oceanexpert.org/institution/5811 -https://www.oceanexpert.org/institution/5821 -https://www.oceanexpert.org/institution/5832 -https://www.oceanexpert.org/institution/5836 -https://www.oceanexpert.org/institution/5838 -https://www.oceanexpert.org/institution/5839 -https://www.oceanexpert.org/institution/5843 -https://www.oceanexpert.org/institution/5846 -https://www.oceanexpert.org/institution/5850 -https://www.oceanexpert.org/institution/5851 -https://www.oceanexpert.org/institution/5852 -https://www.oceanexpert.org/institution/5863 -https://www.oceanexpert.org/institution/5868 -https://www.oceanexpert.org/institution/5869 -https://www.oceanexpert.org/institution/5872 -https://www.oceanexpert.org/institution/5883 -https://www.oceanexpert.org/institution/5893 -https://www.oceanexpert.org/institution/5895 -https://www.oceanexpert.org/institution/5896 -https://www.oceanexpert.org/institution/5899 -https://www.oceanexpert.org/institution/5904 -https://www.oceanexpert.org/institution/5909 -https://www.oceanexpert.org/institution/5921 -https://www.oceanexpert.org/institution/5922 -https://www.oceanexpert.org/institution/5924 -https://www.oceanexpert.org/institution/5927 -https://www.oceanexpert.org/institution/5934 -https://www.oceanexpert.org/institution/5937 -https://www.oceanexpert.org/institution/5942 -https://www.oceanexpert.org/institution/5944 -https://www.oceanexpert.org/institution/5953 -https://www.oceanexpert.org/institution/5963 -https://www.oceanexpert.org/institution/5976 -https://www.oceanexpert.org/institution/5982 -https://www.oceanexpert.org/institution/5995 -https://www.oceanexpert.org/institution/6008 -https://www.oceanexpert.org/institution/6020 -https://www.oceanexpert.org/institution/6023 -https://www.oceanexpert.org/institution/6026 -https://www.oceanexpert.org/institution/6030 -https://www.oceanexpert.org/institution/6046 -https://www.oceanexpert.org/institution/6048 -https://www.oceanexpert.org/institution/6063 -https://www.oceanexpert.org/institution/6077 -https://www.oceanexpert.org/institution/6080 -https://www.oceanexpert.org/institution/6094 -https://www.oceanexpert.org/institution/6096 -https://www.oceanexpert.org/institution/6099 -https://www.oceanexpert.org/institution/6102 -https://www.oceanexpert.org/institution/6105 -https://www.oceanexpert.org/institution/6106 -https://www.oceanexpert.org/institution/6110 -https://www.oceanexpert.org/institution/6119 -https://www.oceanexpert.org/institution/6124 -https://www.oceanexpert.org/institution/6126 -https://www.oceanexpert.org/institution/6142 -https://www.oceanexpert.org/institution/6143 -https://www.oceanexpert.org/institution/6147 -https://www.oceanexpert.org/institution/6149 -https://www.oceanexpert.org/institution/6156 -https://www.oceanexpert.org/institution/6160 -https://www.oceanexpert.org/institution/6161 -https://www.oceanexpert.org/institution/6169 -https://www.oceanexpert.org/institution/6172 -https://www.oceanexpert.org/institution/6178 -https://www.oceanexpert.org/institution/6185 -https://www.oceanexpert.org/institution/6190 -https://www.oceanexpert.org/institution/6194 -https://www.oceanexpert.org/institution/6195 -https://www.oceanexpert.org/institution/6196 -https://www.oceanexpert.org/institution/6204 -https://www.oceanexpert.org/institution/6213 -https://www.oceanexpert.org/institution/6216 -https://www.oceanexpert.org/institution/6223 -https://www.oceanexpert.org/institution/6225 -https://www.oceanexpert.org/institution/6238 -https://www.oceanexpert.org/institution/6243 -https://www.oceanexpert.org/institution/6250 -https://www.oceanexpert.org/institution/6251 -https://www.oceanexpert.org/institution/6260 -https://www.oceanexpert.org/institution/6271 -https://www.oceanexpert.org/institution/6297 -https://www.oceanexpert.org/institution/6300 -https://www.oceanexpert.org/institution/6304 -https://www.oceanexpert.org/institution/6315 -https://www.oceanexpert.org/institution/6316 -https://www.oceanexpert.org/institution/6319 -https://www.oceanexpert.org/institution/6328 -https://www.oceanexpert.org/institution/6332 -https://www.oceanexpert.org/institution/6334 -https://www.oceanexpert.org/institution/6349 -https://www.oceanexpert.org/institution/6351 -https://www.oceanexpert.org/institution/6354 -https://www.oceanexpert.org/institution/6360 -https://www.oceanexpert.org/institution/6362 -https://www.oceanexpert.org/institution/6364 -https://www.oceanexpert.org/institution/6375 -https://www.oceanexpert.org/institution/6380 -https://www.oceanexpert.org/institution/6385 -https://www.oceanexpert.org/institution/6396 -https://www.oceanexpert.org/institution/6434 -https://www.oceanexpert.org/institution/6441 -https://www.oceanexpert.org/institution/6444 -https://www.oceanexpert.org/institution/6445 -https://www.oceanexpert.org/institution/6451 -https://www.oceanexpert.org/institution/6463 -https://www.oceanexpert.org/institution/6466 -https://www.oceanexpert.org/institution/6470 -https://www.oceanexpert.org/institution/6493 -https://www.oceanexpert.org/institution/6505 -https://www.oceanexpert.org/institution/6509 -https://www.oceanexpert.org/institution/6514 -https://www.oceanexpert.org/institution/6531 -https://www.oceanexpert.org/institution/6535 -https://www.oceanexpert.org/institution/6536 -https://www.oceanexpert.org/institution/6537 -https://www.oceanexpert.org/institution/6538 -https://www.oceanexpert.org/institution/6544 -https://www.oceanexpert.org/institution/6547 -https://www.oceanexpert.org/institution/6550 -https://www.oceanexpert.org/institution/6552 -https://www.oceanexpert.org/institution/6581 -https://www.oceanexpert.org/institution/6586 -https://www.oceanexpert.org/institution/6587 -https://www.oceanexpert.org/institution/6622 -https://www.oceanexpert.org/institution/6626 -https://www.oceanexpert.org/institution/6631 -https://www.oceanexpert.org/institution/6632 -https://www.oceanexpert.org/institution/6634 -https://www.oceanexpert.org/institution/6636 -https://www.oceanexpert.org/institution/6638 -https://www.oceanexpert.org/institution/6639 -https://www.oceanexpert.org/institution/6641 -https://www.oceanexpert.org/institution/6649 -https://www.oceanexpert.org/institution/6656 -https://www.oceanexpert.org/institution/6657 -https://www.oceanexpert.org/institution/6664 -https://www.oceanexpert.org/institution/6668 -https://www.oceanexpert.org/institution/6671 -https://www.oceanexpert.org/institution/6675 -https://www.oceanexpert.org/institution/6676 -https://www.oceanexpert.org/institution/6682 -https://www.oceanexpert.org/institution/6685 -https://www.oceanexpert.org/institution/6688 -https://www.oceanexpert.org/institution/6695 -https://www.oceanexpert.org/institution/6698 -https://www.oceanexpert.org/institution/6704 -https://www.oceanexpert.org/institution/6706 -https://www.oceanexpert.org/institution/6709 -https://www.oceanexpert.org/institution/6713 -https://www.oceanexpert.org/institution/6715 -https://www.oceanexpert.org/institution/6717 -https://www.oceanexpert.org/institution/6720 -https://www.oceanexpert.org/institution/6725 -https://www.oceanexpert.org/institution/6727 -https://www.oceanexpert.org/institution/6731 -https://www.oceanexpert.org/institution/6736 -https://www.oceanexpert.org/institution/6741 -https://www.oceanexpert.org/institution/6748 -https://www.oceanexpert.org/institution/6749 -https://www.oceanexpert.org/institution/6753 -https://www.oceanexpert.org/institution/6759 -https://www.oceanexpert.org/institution/6763 -https://www.oceanexpert.org/institution/6765 -https://www.oceanexpert.org/institution/6766 -https://www.oceanexpert.org/institution/6780 -https://www.oceanexpert.org/institution/6784 -https://www.oceanexpert.org/institution/6785 -https://www.oceanexpert.org/institution/6786 -https://www.oceanexpert.org/institution/6788 -https://www.oceanexpert.org/institution/6795 -https://www.oceanexpert.org/institution/6799 -https://www.oceanexpert.org/institution/6801 -https://www.oceanexpert.org/institution/6802 -https://www.oceanexpert.org/institution/6811 -https://www.oceanexpert.org/institution/6815 -https://www.oceanexpert.org/institution/6824 -https://www.oceanexpert.org/institution/6834 -https://www.oceanexpert.org/institution/6836 -https://www.oceanexpert.org/institution/6839 -https://www.oceanexpert.org/institution/6842 -https://www.oceanexpert.org/institution/6849 -https://www.oceanexpert.org/institution/6852 -https://www.oceanexpert.org/institution/6857 -https://www.oceanexpert.org/institution/6860 -https://www.oceanexpert.org/institution/6874 -https://www.oceanexpert.org/institution/6880 -https://www.oceanexpert.org/institution/6882 -https://www.oceanexpert.org/institution/6892 -https://www.oceanexpert.org/institution/6903 -https://www.oceanexpert.org/institution/6907 -https://www.oceanexpert.org/institution/6909 -https://www.oceanexpert.org/institution/6931 -https://www.oceanexpert.org/institution/6933 -https://www.oceanexpert.org/institution/6939 -https://www.oceanexpert.org/institution/6941 -https://www.oceanexpert.org/institution/6953 -https://www.oceanexpert.org/institution/6954 -https://www.oceanexpert.org/institution/6963 -https://www.oceanexpert.org/institution/6967 -https://www.oceanexpert.org/institution/6969 -https://www.oceanexpert.org/institution/6970 -https://www.oceanexpert.org/institution/6971 -https://www.oceanexpert.org/institution/6973 -https://www.oceanexpert.org/institution/6974 -https://www.oceanexpert.org/institution/6989 -https://www.oceanexpert.org/institution/6990 -https://www.oceanexpert.org/institution/6993 -https://www.oceanexpert.org/institution/6997 -https://www.oceanexpert.org/institution/6998 -https://www.oceanexpert.org/institution/7000 -https://www.oceanexpert.org/institution/7002 -https://www.oceanexpert.org/institution/7004 -https://www.oceanexpert.org/institution/7016 -https://www.oceanexpert.org/institution/7018 -https://www.oceanexpert.org/institution/7020 -https://www.oceanexpert.org/institution/7026 -https://www.oceanexpert.org/institution/7027 -https://www.oceanexpert.org/institution/7028 -https://www.oceanexpert.org/institution/7029 -https://www.oceanexpert.org/institution/7039 -https://www.oceanexpert.org/institution/7078 -https://www.oceanexpert.org/institution/7087 -https://www.oceanexpert.org/institution/7095 -https://www.oceanexpert.org/institution/7120 -https://www.oceanexpert.org/institution/7131 -https://www.oceanexpert.org/institution/7132 -https://www.oceanexpert.org/institution/7135 -https://www.oceanexpert.org/institution/7138 -https://www.oceanexpert.org/institution/7139 -https://www.oceanexpert.org/institution/7142 -https://www.oceanexpert.org/institution/7143 -https://www.oceanexpert.org/institution/7152 -https://www.oceanexpert.org/institution/7168 -https://www.oceanexpert.org/institution/7169 -https://www.oceanexpert.org/institution/7171 -https://www.oceanexpert.org/institution/7197 -https://www.oceanexpert.org/institution/7201 -https://www.oceanexpert.org/institution/7213 -https://www.oceanexpert.org/institution/7221 -https://www.oceanexpert.org/institution/7227 -https://www.oceanexpert.org/institution/7234 -https://www.oceanexpert.org/institution/7242 -https://www.oceanexpert.org/institution/7249 -https://www.oceanexpert.org/institution/7255 -https://www.oceanexpert.org/institution/7262 -https://www.oceanexpert.org/institution/7263 -https://www.oceanexpert.org/institution/7267 -https://www.oceanexpert.org/institution/7269 -https://www.oceanexpert.org/institution/7273 -https://www.oceanexpert.org/institution/7280 -https://www.oceanexpert.org/institution/7284 -https://www.oceanexpert.org/institution/7287 -https://www.oceanexpert.org/institution/7293 -https://www.oceanexpert.org/institution/7299 -https://www.oceanexpert.org/institution/7301 -https://www.oceanexpert.org/institution/7304 -https://www.oceanexpert.org/institution/7308 -https://www.oceanexpert.org/institution/7317 -https://www.oceanexpert.org/institution/7341 -https://www.oceanexpert.org/institution/7355 -https://www.oceanexpert.org/institution/7357 -https://www.oceanexpert.org/institution/7362 -https://www.oceanexpert.org/institution/7363 -https://www.oceanexpert.org/institution/7373 -https://www.oceanexpert.org/institution/7375 -https://www.oceanexpert.org/institution/7379 -https://www.oceanexpert.org/institution/7381 -https://www.oceanexpert.org/institution/7409 -https://www.oceanexpert.org/institution/7410 -https://www.oceanexpert.org/institution/7413 -https://www.oceanexpert.org/institution/7424 -https://www.oceanexpert.org/institution/7429 -https://www.oceanexpert.org/institution/7430 -https://www.oceanexpert.org/institution/7432 -https://www.oceanexpert.org/institution/7442 -https://www.oceanexpert.org/institution/7462 -https://www.oceanexpert.org/institution/7468 -https://www.oceanexpert.org/institution/7485 -https://www.oceanexpert.org/institution/7488 -https://www.oceanexpert.org/institution/7489 -https://www.oceanexpert.org/institution/7492 -https://www.oceanexpert.org/institution/7495 -https://www.oceanexpert.org/institution/7503 -https://www.oceanexpert.org/institution/7505 -https://www.oceanexpert.org/institution/7510 -https://www.oceanexpert.org/institution/7527 -https://www.oceanexpert.org/institution/7528 -https://www.oceanexpert.org/institution/7532 -https://www.oceanexpert.org/institution/7533 -https://www.oceanexpert.org/institution/7534 -https://www.oceanexpert.org/institution/7537 -https://www.oceanexpert.org/institution/7540 -https://www.oceanexpert.org/institution/7541 -https://www.oceanexpert.org/institution/7553 -https://www.oceanexpert.org/institution/7559 -https://www.oceanexpert.org/institution/7562 -https://www.oceanexpert.org/institution/7581 -https://www.oceanexpert.org/institution/7592 -https://www.oceanexpert.org/institution/7594 -https://www.oceanexpert.org/institution/7598 -https://www.oceanexpert.org/institution/7610 -https://www.oceanexpert.org/institution/7612 -https://www.oceanexpert.org/institution/7618 -https://www.oceanexpert.org/institution/7628 -https://www.oceanexpert.org/institution/7629 -https://www.oceanexpert.org/institution/7631 -https://www.oceanexpert.org/institution/7634 -https://www.oceanexpert.org/institution/7640 -https://www.oceanexpert.org/institution/7641 -https://www.oceanexpert.org/institution/7642 -https://www.oceanexpert.org/institution/7643 -https://www.oceanexpert.org/institution/7656 -https://www.oceanexpert.org/institution/7663 -https://www.oceanexpert.org/institution/7668 -https://www.oceanexpert.org/institution/7676 -https://www.oceanexpert.org/institution/7679 -https://www.oceanexpert.org/institution/7684 -https://www.oceanexpert.org/institution/7692 -https://www.oceanexpert.org/institution/7701 -https://www.oceanexpert.org/institution/7703 -https://www.oceanexpert.org/institution/7719 -https://www.oceanexpert.org/institution/7723 -https://www.oceanexpert.org/institution/7736 -https://www.oceanexpert.org/institution/7745 -https://www.oceanexpert.org/institution/7750 -https://www.oceanexpert.org/institution/7757 -https://www.oceanexpert.org/institution/7759 -https://www.oceanexpert.org/institution/7764 -https://www.oceanexpert.org/institution/7766 -https://www.oceanexpert.org/institution/7769 -https://www.oceanexpert.org/institution/7770 -https://www.oceanexpert.org/institution/7772 -https://www.oceanexpert.org/institution/7775 -https://www.oceanexpert.org/institution/7778 -https://www.oceanexpert.org/institution/7783 -https://www.oceanexpert.org/institution/7785 -https://www.oceanexpert.org/institution/7786 -https://www.oceanexpert.org/institution/7788 -https://www.oceanexpert.org/institution/7790 -https://www.oceanexpert.org/institution/7796 -https://www.oceanexpert.org/institution/7811 -https://www.oceanexpert.org/institution/7825 -https://www.oceanexpert.org/institution/7833 -https://www.oceanexpert.org/institution/7845 -https://www.oceanexpert.org/institution/7851 -https://www.oceanexpert.org/institution/7852 -https://www.oceanexpert.org/institution/7860 -https://www.oceanexpert.org/institution/7879 -https://www.oceanexpert.org/institution/7892 -https://www.oceanexpert.org/institution/7901 -https://www.oceanexpert.org/institution/7905 -https://www.oceanexpert.org/institution/7909 -https://www.oceanexpert.org/institution/7914 -https://www.oceanexpert.org/institution/7920 -https://www.oceanexpert.org/institution/7921 -https://www.oceanexpert.org/institution/7922 -https://www.oceanexpert.org/institution/7924 -https://www.oceanexpert.org/institution/7925 -https://www.oceanexpert.org/institution/7932 -https://www.oceanexpert.org/institution/7937 -https://www.oceanexpert.org/institution/7953 -https://www.oceanexpert.org/institution/7958 -https://www.oceanexpert.org/institution/7963 -https://www.oceanexpert.org/institution/7964 -https://www.oceanexpert.org/institution/7967 -https://www.oceanexpert.org/institution/7976 -https://www.oceanexpert.org/institution/7979 -https://www.oceanexpert.org/institution/7983 -https://www.oceanexpert.org/institution/7991 -https://www.oceanexpert.org/institution/7997 -https://www.oceanexpert.org/institution/8002 -https://www.oceanexpert.org/institution/8003 -https://www.oceanexpert.org/institution/8011 -https://www.oceanexpert.org/institution/8025 -https://www.oceanexpert.org/institution/8028 -https://www.oceanexpert.org/institution/8029 -https://www.oceanexpert.org/institution/8031 -https://www.oceanexpert.org/institution/8032 -https://www.oceanexpert.org/institution/8034 -https://www.oceanexpert.org/institution/8082 -https://www.oceanexpert.org/institution/8090 -https://www.oceanexpert.org/institution/8093 -https://www.oceanexpert.org/institution/8099 -https://www.oceanexpert.org/institution/8113 -https://www.oceanexpert.org/institution/8124 -https://www.oceanexpert.org/institution/8140 -https://www.oceanexpert.org/institution/8143 -https://www.oceanexpert.org/institution/8145 -https://www.oceanexpert.org/institution/8151 -https://www.oceanexpert.org/institution/8154 -https://www.oceanexpert.org/institution/8158 -https://www.oceanexpert.org/institution/8162 -https://www.oceanexpert.org/institution/8163 -https://www.oceanexpert.org/institution/8166 -https://www.oceanexpert.org/institution/8173 -https://www.oceanexpert.org/institution/8175 -https://www.oceanexpert.org/institution/8195 -https://www.oceanexpert.org/institution/8203 -https://www.oceanexpert.org/institution/8212 -https://www.oceanexpert.org/institution/8214 -https://www.oceanexpert.org/institution/8218 -https://www.oceanexpert.org/institution/8227 -https://www.oceanexpert.org/institution/8230 -https://www.oceanexpert.org/institution/8233 -https://www.oceanexpert.org/institution/8236 -https://www.oceanexpert.org/institution/8239 -https://www.oceanexpert.org/institution/8241 -https://www.oceanexpert.org/institution/8244 -https://www.oceanexpert.org/institution/8247 -https://www.oceanexpert.org/institution/8279 -https://www.oceanexpert.org/institution/8289 -https://www.oceanexpert.org/institution/8292 -https://www.oceanexpert.org/institution/8296 -https://www.oceanexpert.org/institution/8297 -https://www.oceanexpert.org/institution/8299 -https://www.oceanexpert.org/institution/8300 -https://www.oceanexpert.org/institution/8303 -https://www.oceanexpert.org/institution/8305 -https://www.oceanexpert.org/institution/8319 -https://www.oceanexpert.org/institution/8321 -https://www.oceanexpert.org/institution/8323 -https://www.oceanexpert.org/institution/8326 -https://www.oceanexpert.org/institution/8338 -https://www.oceanexpert.org/institution/8344 -https://www.oceanexpert.org/institution/8349 -https://www.oceanexpert.org/institution/8369 -https://www.oceanexpert.org/institution/8371 -https://www.oceanexpert.org/institution/8376 -https://www.oceanexpert.org/institution/8387 -https://www.oceanexpert.org/institution/8393 -https://www.oceanexpert.org/institution/8401 -https://www.oceanexpert.org/institution/8404 -https://www.oceanexpert.org/institution/8413 -https://www.oceanexpert.org/institution/8423 -https://www.oceanexpert.org/institution/8432 -https://www.oceanexpert.org/institution/8433 -https://www.oceanexpert.org/institution/8438 -https://www.oceanexpert.org/institution/8450 -https://www.oceanexpert.org/institution/8463 -https://www.oceanexpert.org/institution/8475 -https://www.oceanexpert.org/institution/8477 -https://www.oceanexpert.org/institution/8487 -https://www.oceanexpert.org/institution/8493 -https://www.oceanexpert.org/institution/8494 -https://www.oceanexpert.org/institution/8496 -https://www.oceanexpert.org/institution/8499 -https://www.oceanexpert.org/institution/8504 -https://www.oceanexpert.org/institution/8528 -https://www.oceanexpert.org/institution/8537 -https://www.oceanexpert.org/institution/8541 -https://www.oceanexpert.org/institution/8547 -https://www.oceanexpert.org/institution/8570 -https://www.oceanexpert.org/institution/8590 -https://www.oceanexpert.org/institution/8599 -https://www.oceanexpert.org/institution/8603 -https://www.oceanexpert.org/institution/8607 -https://www.oceanexpert.org/institution/8613 -https://www.oceanexpert.org/institution/8616 -https://www.oceanexpert.org/institution/8623 -https://www.oceanexpert.org/institution/8631 -https://www.oceanexpert.org/institution/8641 -https://www.oceanexpert.org/institution/8648 -https://www.oceanexpert.org/institution/8650 -https://www.oceanexpert.org/institution/8657 -https://www.oceanexpert.org/institution/8663 -https://www.oceanexpert.org/institution/8666 -https://www.oceanexpert.org/institution/8668 -https://www.oceanexpert.org/institution/8669 -https://www.oceanexpert.org/institution/8675 -https://www.oceanexpert.org/institution/8681 -https://www.oceanexpert.org/institution/8684 -https://www.oceanexpert.org/institution/8688 -https://www.oceanexpert.org/institution/8691 -https://www.oceanexpert.org/institution/8695 -https://www.oceanexpert.org/institution/8706 -https://www.oceanexpert.org/institution/8714 -https://www.oceanexpert.org/institution/8715 -https://www.oceanexpert.org/institution/8718 -https://www.oceanexpert.org/institution/8719 -https://www.oceanexpert.org/institution/8724 -https://www.oceanexpert.org/institution/8732 -https://www.oceanexpert.org/institution/8739 -https://www.oceanexpert.org/institution/8752 -https://www.oceanexpert.org/institution/8760 -https://www.oceanexpert.org/institution/8761 -https://www.oceanexpert.org/institution/8762 -https://www.oceanexpert.org/institution/8766 -https://www.oceanexpert.org/institution/8768 -https://www.oceanexpert.org/institution/8770 -https://www.oceanexpert.org/institution/8774 -https://www.oceanexpert.org/institution/8785 -https://www.oceanexpert.org/institution/8792 -https://www.oceanexpert.org/institution/8795 -https://www.oceanexpert.org/institution/8809 -https://www.oceanexpert.org/institution/8810 -https://www.oceanexpert.org/institution/8813 -https://www.oceanexpert.org/institution/8822 -https://www.oceanexpert.org/institution/8841 -https://www.oceanexpert.org/institution/8844 -https://www.oceanexpert.org/institution/8848 -https://www.oceanexpert.org/institution/8852 -https://www.oceanexpert.org/institution/8866 -https://www.oceanexpert.org/institution/8868 -https://www.oceanexpert.org/institution/8870 -https://www.oceanexpert.org/institution/8877 -https://www.oceanexpert.org/institution/8884 -https://www.oceanexpert.org/institution/8886 -https://www.oceanexpert.org/institution/8887 -https://www.oceanexpert.org/institution/8892 -https://www.oceanexpert.org/institution/8895 -https://www.oceanexpert.org/institution/8902 -https://www.oceanexpert.org/institution/8907 -https://www.oceanexpert.org/institution/8908 -https://www.oceanexpert.org/institution/8909 -https://www.oceanexpert.org/institution/8916 -https://www.oceanexpert.org/institution/8917 -https://www.oceanexpert.org/institution/8921 -https://www.oceanexpert.org/institution/8928 -https://www.oceanexpert.org/institution/8941 -https://www.oceanexpert.org/institution/8942 -https://www.oceanexpert.org/institution/8960 -https://www.oceanexpert.org/institution/8967 -https://www.oceanexpert.org/institution/8971 -https://www.oceanexpert.org/institution/8990 -https://www.oceanexpert.org/institution/8994 -https://www.oceanexpert.org/institution/8998 -https://www.oceanexpert.org/institution/9012 -https://www.oceanexpert.org/institution/9014 -https://www.oceanexpert.org/institution/9024 -https://www.oceanexpert.org/institution/9032 -https://www.oceanexpert.org/institution/9036 -https://www.oceanexpert.org/institution/9038 -https://www.oceanexpert.org/institution/9039 -https://www.oceanexpert.org/institution/9045 -https://www.oceanexpert.org/institution/9055 -https://www.oceanexpert.org/institution/9057 -https://www.oceanexpert.org/institution/9069 -https://www.oceanexpert.org/institution/9075 -https://www.oceanexpert.org/institution/9078 -https://www.oceanexpert.org/institution/9089 -https://www.oceanexpert.org/institution/9091 -https://www.oceanexpert.org/institution/9119 -https://www.oceanexpert.org/institution/9121 -https://www.oceanexpert.org/institution/9124 -https://www.oceanexpert.org/institution/9130 -https://www.oceanexpert.org/institution/9131 -https://www.oceanexpert.org/institution/9132 -https://www.oceanexpert.org/institution/9133 -https://www.oceanexpert.org/institution/9135 -https://www.oceanexpert.org/institution/9140 -https://www.oceanexpert.org/institution/9142 -https://www.oceanexpert.org/institution/9145 -https://www.oceanexpert.org/institution/9150 -https://www.oceanexpert.org/institution/9162 -https://www.oceanexpert.org/institution/9164 -https://www.oceanexpert.org/institution/9170 -https://www.oceanexpert.org/institution/9178 -https://www.oceanexpert.org/institution/9179 -https://www.oceanexpert.org/institution/9184 -https://www.oceanexpert.org/institution/9186 -https://www.oceanexpert.org/institution/9192 -https://www.oceanexpert.org/institution/9197 -https://www.oceanexpert.org/institution/9202 -https://www.oceanexpert.org/institution/9214 -https://www.oceanexpert.org/institution/9229 -https://www.oceanexpert.org/institution/9231 -https://www.oceanexpert.org/institution/9235 -https://www.oceanexpert.org/institution/9238 -https://www.oceanexpert.org/institution/9244 -https://www.oceanexpert.org/institution/9247 -https://www.oceanexpert.org/institution/9267 -https://www.oceanexpert.org/institution/9270 -https://www.oceanexpert.org/institution/9275 -https://www.oceanexpert.org/institution/9276 -https://www.oceanexpert.org/institution/9277 -https://www.oceanexpert.org/institution/9279 -https://www.oceanexpert.org/institution/9282 -https://www.oceanexpert.org/institution/9296 -https://www.oceanexpert.org/institution/9300 -https://www.oceanexpert.org/institution/9303 -https://www.oceanexpert.org/institution/9306 -https://www.oceanexpert.org/institution/9308 -https://www.oceanexpert.org/institution/9310 -https://www.oceanexpert.org/institution/9323 -https://www.oceanexpert.org/institution/9329 -https://www.oceanexpert.org/institution/9330 -https://www.oceanexpert.org/institution/9331 -https://www.oceanexpert.org/institution/9337 -https://www.oceanexpert.org/institution/9338 -https://www.oceanexpert.org/institution/9342 -https://www.oceanexpert.org/institution/9358 -https://www.oceanexpert.org/institution/9361 -https://www.oceanexpert.org/institution/9373 -https://www.oceanexpert.org/institution/9375 -https://www.oceanexpert.org/institution/9377 -https://www.oceanexpert.org/institution/9380 -https://www.oceanexpert.org/institution/9383 -https://www.oceanexpert.org/institution/9402 -https://www.oceanexpert.org/institution/9407 -https://www.oceanexpert.org/institution/9408 -https://www.oceanexpert.org/institution/9417 -https://www.oceanexpert.org/institution/9426 -https://www.oceanexpert.org/institution/9429 -https://www.oceanexpert.org/institution/9440 -https://www.oceanexpert.org/institution/9442 -https://www.oceanexpert.org/institution/9445 -https://www.oceanexpert.org/institution/9447 -https://www.oceanexpert.org/institution/9456 -https://www.oceanexpert.org/institution/9478 -https://www.oceanexpert.org/institution/9485 -https://www.oceanexpert.org/institution/9486 -https://www.oceanexpert.org/institution/9491 -https://www.oceanexpert.org/institution/9499 -https://www.oceanexpert.org/institution/9521 -https://www.oceanexpert.org/institution/9523 -https://www.oceanexpert.org/institution/9526 -https://www.oceanexpert.org/institution/9530 -https://www.oceanexpert.org/institution/9550 -https://www.oceanexpert.org/institution/9557 -https://www.oceanexpert.org/institution/9566 -https://www.oceanexpert.org/institution/9570 -https://www.oceanexpert.org/institution/9574 -https://www.oceanexpert.org/institution/9596 -https://www.oceanexpert.org/institution/9605 -https://www.oceanexpert.org/institution/9606 -https://www.oceanexpert.org/institution/9609 -https://www.oceanexpert.org/institution/9621 -https://www.oceanexpert.org/institution/9622 -https://www.oceanexpert.org/institution/9625 -https://www.oceanexpert.org/institution/9635 -https://www.oceanexpert.org/institution/9647 -https://www.oceanexpert.org/institution/9648 -https://www.oceanexpert.org/institution/9651 -https://www.oceanexpert.org/institution/9725 -https://www.oceanexpert.org/institution/9727 -https://www.oceanexpert.org/institution/9732 -https://www.oceanexpert.org/institution/9733 -https://www.oceanexpert.org/institution/9737 -https://www.oceanexpert.org/institution/9738 -https://www.oceanexpert.org/institution/9744 -https://www.oceanexpert.org/institution/9752 -https://www.oceanexpert.org/institution/9757 -https://www.oceanexpert.org/institution/9774 -https://www.oceanexpert.org/institution/9776 -https://www.oceanexpert.org/institution/9783 -https://www.oceanexpert.org/institution/9801 -https://www.oceanexpert.org/institution/9813 -https://www.oceanexpert.org/institution/9814 -https://www.oceanexpert.org/institution/9816 -https://www.oceanexpert.org/institution/9824 -https://www.oceanexpert.org/institution/9825 -https://www.oceanexpert.org/institution/9838 -https://www.oceanexpert.org/institution/9853 -https://www.oceanexpert.org/institution/9854 -https://www.oceanexpert.org/institution/9860 -https://www.oceanexpert.org/institution/9863 -https://www.oceanexpert.org/institution/9868 -https://www.oceanexpert.org/institution/9870 -https://www.oceanexpert.org/institution/9878 -https://www.oceanexpert.org/institution/9930 -https://www.oceanexpert.org/institution/9974 -https://www.oceanexpert.org/institution/9977 -https://www.oceanexpert.org/institution/9986 -https://www.oceanexpert.org/institution/9989 -https://www.oceanexpert.org/institution/9991 -https://www.oceanexpert.org/institution/9994 -https://www.oceanexpert.org/institution/9998 -https://www.oceanexpert.org/institution/10013 -https://www.oceanexpert.org/institution/10023 -https://www.oceanexpert.org/institution/10026 -https://www.oceanexpert.org/institution/10027 -https://www.oceanexpert.org/institution/10042 -https://www.oceanexpert.org/institution/10047 -https://www.oceanexpert.org/institution/10049 -https://www.oceanexpert.org/institution/10052 -https://www.oceanexpert.org/institution/10053 -https://www.oceanexpert.org/institution/10054 -https://www.oceanexpert.org/institution/10057 -https://www.oceanexpert.org/institution/10075 -https://www.oceanexpert.org/institution/10076 -https://www.oceanexpert.org/institution/10078 -https://www.oceanexpert.org/institution/10084 -https://www.oceanexpert.org/institution/10087 -https://www.oceanexpert.org/institution/10091 -https://www.oceanexpert.org/institution/10097 -https://www.oceanexpert.org/institution/10106 -https://www.oceanexpert.org/institution/10119 -https://www.oceanexpert.org/institution/10122 -https://www.oceanexpert.org/institution/10124 -https://www.oceanexpert.org/institution/10131 -https://www.oceanexpert.org/institution/10135 -https://www.oceanexpert.org/institution/10138 -https://www.oceanexpert.org/institution/10139 -https://www.oceanexpert.org/institution/10140 -https://www.oceanexpert.org/institution/10143 -https://www.oceanexpert.org/institution/10145 -https://www.oceanexpert.org/institution/10149 -https://www.oceanexpert.org/institution/10157 -https://www.oceanexpert.org/institution/10160 -https://www.oceanexpert.org/institution/10165 -https://www.oceanexpert.org/institution/10167 -https://www.oceanexpert.org/institution/10168 -https://www.oceanexpert.org/institution/10171 -https://www.oceanexpert.org/institution/10172 -https://www.oceanexpert.org/institution/10176 -https://www.oceanexpert.org/institution/10178 -https://www.oceanexpert.org/institution/10180 -https://www.oceanexpert.org/institution/10186 -https://www.oceanexpert.org/institution/10189 -https://www.oceanexpert.org/institution/10197 -https://www.oceanexpert.org/institution/10206 -https://www.oceanexpert.org/institution/10209 -https://www.oceanexpert.org/institution/10214 -https://www.oceanexpert.org/institution/10218 -https://www.oceanexpert.org/institution/10227 -https://www.oceanexpert.org/institution/10228 -https://www.oceanexpert.org/institution/10229 -https://www.oceanexpert.org/institution/10230 -https://www.oceanexpert.org/institution/10233 -https://www.oceanexpert.org/institution/10235 -https://www.oceanexpert.org/institution/10237 -https://www.oceanexpert.org/institution/10250 -https://www.oceanexpert.org/institution/10251 -https://www.oceanexpert.org/institution/10259 -https://www.oceanexpert.org/institution/10261 -https://www.oceanexpert.org/institution/10263 -https://www.oceanexpert.org/institution/10267 -https://www.oceanexpert.org/institution/10268 -https://www.oceanexpert.org/institution/10272 -https://www.oceanexpert.org/institution/10274 -https://www.oceanexpert.org/institution/10278 -https://www.oceanexpert.org/institution/10279 -https://www.oceanexpert.org/institution/10280 -https://www.oceanexpert.org/institution/10281 -https://www.oceanexpert.org/institution/10283 -https://www.oceanexpert.org/institution/10285 -https://www.oceanexpert.org/institution/10287 -https://www.oceanexpert.org/institution/10288 -https://www.oceanexpert.org/institution/10291 -https://www.oceanexpert.org/institution/10295 -https://www.oceanexpert.org/institution/10296 -https://www.oceanexpert.org/institution/10298 -https://www.oceanexpert.org/institution/10299 -https://www.oceanexpert.org/institution/10307 -https://www.oceanexpert.org/institution/10308 -https://www.oceanexpert.org/institution/10309 -https://www.oceanexpert.org/institution/10312 -https://www.oceanexpert.org/institution/10315 -https://www.oceanexpert.org/institution/10316 -https://www.oceanexpert.org/institution/10319 -https://www.oceanexpert.org/institution/10324 -https://www.oceanexpert.org/institution/10326 -https://www.oceanexpert.org/institution/10328 -https://www.oceanexpert.org/institution/10329 -https://www.oceanexpert.org/institution/10330 -https://www.oceanexpert.org/institution/10331 -https://www.oceanexpert.org/institution/10332 -https://www.oceanexpert.org/institution/10333 -https://www.oceanexpert.org/institution/10337 -https://www.oceanexpert.org/institution/10343 -https://www.oceanexpert.org/institution/10344 -https://www.oceanexpert.org/institution/10345 -https://www.oceanexpert.org/institution/10347 -https://www.oceanexpert.org/institution/10350 -https://www.oceanexpert.org/institution/10355 -https://www.oceanexpert.org/institution/10357 -https://www.oceanexpert.org/institution/10358 -https://www.oceanexpert.org/institution/10362 -https://www.oceanexpert.org/institution/10369 -https://www.oceanexpert.org/institution/10373 -https://www.oceanexpert.org/institution/10394 -https://www.oceanexpert.org/institution/10396 -https://www.oceanexpert.org/institution/10401 -https://www.oceanexpert.org/institution/10405 -https://www.oceanexpert.org/institution/10413 -https://www.oceanexpert.org/institution/10418 -https://www.oceanexpert.org/institution/10426 -https://www.oceanexpert.org/institution/10428 -https://www.oceanexpert.org/institution/10429 -https://www.oceanexpert.org/institution/10434 -https://www.oceanexpert.org/institution/10444 -https://www.oceanexpert.org/institution/10448 -https://www.oceanexpert.org/institution/10454 -https://www.oceanexpert.org/institution/10457 -https://www.oceanexpert.org/institution/10460 -https://www.oceanexpert.org/institution/10461 -https://www.oceanexpert.org/institution/10468 -https://www.oceanexpert.org/institution/10469 -https://www.oceanexpert.org/institution/10480 -https://www.oceanexpert.org/institution/10488 -https://www.oceanexpert.org/institution/10489 -https://www.oceanexpert.org/institution/10490 -https://www.oceanexpert.org/institution/10491 -https://www.oceanexpert.org/institution/10492 -https://www.oceanexpert.org/institution/10505 -https://www.oceanexpert.org/institution/10506 -https://www.oceanexpert.org/institution/10507 -https://www.oceanexpert.org/institution/10510 -https://www.oceanexpert.org/institution/10514 -https://www.oceanexpert.org/institution/10516 -https://www.oceanexpert.org/institution/10519 -https://www.oceanexpert.org/institution/10525 -https://www.oceanexpert.org/institution/10526 -https://www.oceanexpert.org/institution/10527 -https://www.oceanexpert.org/institution/10533 -https://www.oceanexpert.org/institution/10539 -https://www.oceanexpert.org/institution/10542 -https://www.oceanexpert.org/institution/10551 -https://www.oceanexpert.org/institution/10554 -https://www.oceanexpert.org/institution/10555 -https://www.oceanexpert.org/institution/10558 -https://www.oceanexpert.org/institution/10561 -https://www.oceanexpert.org/institution/10564 -https://www.oceanexpert.org/institution/10566 -https://www.oceanexpert.org/institution/10569 -https://www.oceanexpert.org/institution/10570 -https://www.oceanexpert.org/institution/10573 -https://www.oceanexpert.org/institution/10576 -https://www.oceanexpert.org/institution/10577 -https://www.oceanexpert.org/institution/10579 -https://www.oceanexpert.org/institution/10582 -https://www.oceanexpert.org/institution/10589 -https://www.oceanexpert.org/institution/10591 -https://www.oceanexpert.org/institution/10596 -https://www.oceanexpert.org/institution/10599 -https://www.oceanexpert.org/institution/10600 -https://www.oceanexpert.org/institution/10607 -https://www.oceanexpert.org/institution/10610 -https://www.oceanexpert.org/institution/10611 -https://www.oceanexpert.org/institution/10613 -https://www.oceanexpert.org/institution/10621 -https://www.oceanexpert.org/institution/10626 -https://www.oceanexpert.org/institution/10632 -https://www.oceanexpert.org/institution/10633 -https://www.oceanexpert.org/institution/10640 -https://www.oceanexpert.org/institution/10642 -https://www.oceanexpert.org/institution/10644 -https://www.oceanexpert.org/institution/10646 -https://www.oceanexpert.org/institution/10649 -https://www.oceanexpert.org/institution/10650 -https://www.oceanexpert.org/institution/10651 -https://www.oceanexpert.org/institution/10655 -https://www.oceanexpert.org/institution/10656 -https://www.oceanexpert.org/institution/10663 -https://www.oceanexpert.org/institution/10664 -https://www.oceanexpert.org/institution/10671 -https://www.oceanexpert.org/institution/10678 -https://www.oceanexpert.org/institution/10681 -https://www.oceanexpert.org/institution/10689 -https://www.oceanexpert.org/institution/10693 -https://www.oceanexpert.org/institution/10695 -https://www.oceanexpert.org/institution/10698 -https://www.oceanexpert.org/institution/10700 -https://www.oceanexpert.org/institution/10704 -https://www.oceanexpert.org/institution/10706 -https://www.oceanexpert.org/institution/10708 -https://www.oceanexpert.org/institution/10711 -https://www.oceanexpert.org/institution/10716 -https://www.oceanexpert.org/institution/10717 -https://www.oceanexpert.org/institution/10719 -https://www.oceanexpert.org/institution/10722 -https://www.oceanexpert.org/institution/10724 -https://www.oceanexpert.org/institution/10726 -https://www.oceanexpert.org/institution/10730 -https://www.oceanexpert.org/institution/10731 -https://www.oceanexpert.org/institution/10734 -https://www.oceanexpert.org/institution/10738 -https://www.oceanexpert.org/institution/10739 -https://www.oceanexpert.org/institution/10741 -https://www.oceanexpert.org/institution/10745 -https://www.oceanexpert.org/institution/10747 -https://www.oceanexpert.org/institution/10748 -https://www.oceanexpert.org/institution/10749 -https://www.oceanexpert.org/institution/10751 -https://www.oceanexpert.org/institution/10755 -https://www.oceanexpert.org/institution/10756 -https://www.oceanexpert.org/institution/10758 -https://www.oceanexpert.org/institution/10759 -https://www.oceanexpert.org/institution/10761 -https://www.oceanexpert.org/institution/10762 -https://www.oceanexpert.org/institution/10765 -https://www.oceanexpert.org/institution/10770 -https://www.oceanexpert.org/institution/10772 -https://www.oceanexpert.org/institution/10784 -https://www.oceanexpert.org/institution/10790 -https://www.oceanexpert.org/institution/10794 -https://www.oceanexpert.org/institution/10795 -https://www.oceanexpert.org/institution/10803 -https://www.oceanexpert.org/institution/10805 -https://www.oceanexpert.org/institution/10807 -https://www.oceanexpert.org/institution/10810 -https://www.oceanexpert.org/institution/10814 -https://www.oceanexpert.org/institution/10818 -https://www.oceanexpert.org/institution/10819 -https://www.oceanexpert.org/institution/10822 -https://www.oceanexpert.org/institution/10832 -https://www.oceanexpert.org/institution/10833 -https://www.oceanexpert.org/institution/10836 -https://www.oceanexpert.org/institution/10838 -https://www.oceanexpert.org/institution/10841 -https://www.oceanexpert.org/institution/10842 -https://www.oceanexpert.org/institution/10848 -https://www.oceanexpert.org/institution/10850 -https://www.oceanexpert.org/institution/10855 -https://www.oceanexpert.org/institution/10861 -https://www.oceanexpert.org/institution/10864 -https://www.oceanexpert.org/institution/10869 -https://www.oceanexpert.org/institution/10871 -https://www.oceanexpert.org/institution/10874 -https://www.oceanexpert.org/institution/10878 -https://www.oceanexpert.org/institution/10884 -https://www.oceanexpert.org/institution/10885 -https://www.oceanexpert.org/institution/10889 -https://www.oceanexpert.org/institution/10895 -https://www.oceanexpert.org/institution/10902 -https://www.oceanexpert.org/institution/10904 -https://www.oceanexpert.org/institution/10908 -https://www.oceanexpert.org/institution/10909 -https://www.oceanexpert.org/institution/10916 -https://www.oceanexpert.org/institution/10926 -https://www.oceanexpert.org/institution/10928 -https://www.oceanexpert.org/institution/10933 -https://www.oceanexpert.org/institution/10935 -https://www.oceanexpert.org/institution/10939 -https://www.oceanexpert.org/institution/10941 -https://www.oceanexpert.org/institution/10954 -https://www.oceanexpert.org/institution/10957 -https://www.oceanexpert.org/institution/10962 -https://www.oceanexpert.org/institution/10966 -https://www.oceanexpert.org/institution/10968 -https://www.oceanexpert.org/institution/10971 -https://www.oceanexpert.org/institution/10974 -https://www.oceanexpert.org/institution/10976 -https://www.oceanexpert.org/institution/10978 -https://www.oceanexpert.org/institution/10981 -https://www.oceanexpert.org/institution/10983 -https://www.oceanexpert.org/institution/10992 -https://www.oceanexpert.org/institution/10994 -https://www.oceanexpert.org/institution/10997 -https://www.oceanexpert.org/institution/10998 -https://www.oceanexpert.org/institution/11003 -https://www.oceanexpert.org/institution/11007 -https://www.oceanexpert.org/institution/11008 -https://www.oceanexpert.org/institution/11009 -https://www.oceanexpert.org/institution/11010 -https://www.oceanexpert.org/institution/11011 -https://www.oceanexpert.org/institution/11012 -https://www.oceanexpert.org/institution/11013 -https://www.oceanexpert.org/institution/11016 -https://www.oceanexpert.org/institution/11017 -https://www.oceanexpert.org/institution/11020 -https://www.oceanexpert.org/institution/11021 -https://www.oceanexpert.org/institution/11022 -https://www.oceanexpert.org/institution/11023 -https://www.oceanexpert.org/institution/11024 -https://www.oceanexpert.org/institution/11025 -https://www.oceanexpert.org/institution/11029 -https://www.oceanexpert.org/institution/11033 -https://www.oceanexpert.org/institution/11034 -https://www.oceanexpert.org/institution/11036 -https://www.oceanexpert.org/institution/11037 -https://www.oceanexpert.org/institution/11041 -https://www.oceanexpert.org/institution/11046 -https://www.oceanexpert.org/institution/11050 -https://www.oceanexpert.org/institution/11053 -https://www.oceanexpert.org/institution/11057 -https://www.oceanexpert.org/institution/11061 -https://www.oceanexpert.org/institution/11067 -https://www.oceanexpert.org/institution/11068 -https://www.oceanexpert.org/institution/11075 -https://www.oceanexpert.org/institution/11079 -https://www.oceanexpert.org/institution/11080 -https://www.oceanexpert.org/institution/11081 -https://www.oceanexpert.org/institution/11082 -https://www.oceanexpert.org/institution/11095 -https://www.oceanexpert.org/institution/11101 -https://www.oceanexpert.org/institution/11111 -https://www.oceanexpert.org/institution/11118 -https://www.oceanexpert.org/institution/11119 -https://www.oceanexpert.org/institution/11124 -https://www.oceanexpert.org/institution/11126 -https://www.oceanexpert.org/institution/11132 -https://www.oceanexpert.org/institution/11141 -https://www.oceanexpert.org/institution/11143 -https://www.oceanexpert.org/institution/11144 -https://www.oceanexpert.org/institution/11145 -https://www.oceanexpert.org/institution/11146 -https://www.oceanexpert.org/institution/11150 -https://www.oceanexpert.org/institution/11155 -https://www.oceanexpert.org/institution/11157 -https://www.oceanexpert.org/institution/11166 -https://www.oceanexpert.org/institution/11171 -https://www.oceanexpert.org/institution/11172 -https://www.oceanexpert.org/institution/11176 -https://www.oceanexpert.org/institution/11182 -https://www.oceanexpert.org/institution/11183 -https://www.oceanexpert.org/institution/11187 -https://www.oceanexpert.org/institution/11191 -https://www.oceanexpert.org/institution/11193 -https://www.oceanexpert.org/institution/11195 -https://www.oceanexpert.org/institution/11196 -https://www.oceanexpert.org/institution/11197 -https://www.oceanexpert.org/institution/11199 -https://www.oceanexpert.org/institution/11200 -https://www.oceanexpert.org/institution/11201 -https://www.oceanexpert.org/institution/11203 -https://www.oceanexpert.org/institution/11209 -https://www.oceanexpert.org/institution/11215 -https://www.oceanexpert.org/institution/11216 -https://www.oceanexpert.org/institution/11217 -https://www.oceanexpert.org/institution/11218 -https://www.oceanexpert.org/institution/11219 -https://www.oceanexpert.org/institution/11220 -https://www.oceanexpert.org/institution/11221 -https://www.oceanexpert.org/institution/11227 -https://www.oceanexpert.org/institution/11228 -https://www.oceanexpert.org/institution/11229 -https://www.oceanexpert.org/institution/11235 -https://www.oceanexpert.org/institution/11237 -https://www.oceanexpert.org/institution/11242 -https://www.oceanexpert.org/institution/11246 -https://www.oceanexpert.org/institution/11252 -https://www.oceanexpert.org/institution/11253 -https://www.oceanexpert.org/institution/11256 -https://www.oceanexpert.org/institution/11274 -https://www.oceanexpert.org/institution/11275 -https://www.oceanexpert.org/institution/11277 -https://www.oceanexpert.org/institution/11280 -https://www.oceanexpert.org/institution/11285 -https://www.oceanexpert.org/institution/11286 -https://www.oceanexpert.org/institution/11289 -https://www.oceanexpert.org/institution/11293 -https://www.oceanexpert.org/institution/11294 -https://www.oceanexpert.org/institution/11303 -https://www.oceanexpert.org/institution/11306 -https://www.oceanexpert.org/institution/11307 -https://www.oceanexpert.org/institution/11308 -https://www.oceanexpert.org/institution/11309 -https://www.oceanexpert.org/institution/11310 -https://www.oceanexpert.org/institution/11312 -https://www.oceanexpert.org/institution/11316 -https://www.oceanexpert.org/institution/11321 -https://www.oceanexpert.org/institution/11323 -https://www.oceanexpert.org/institution/11329 -https://www.oceanexpert.org/institution/11335 -https://www.oceanexpert.org/institution/11336 -https://www.oceanexpert.org/institution/11340 -https://www.oceanexpert.org/institution/11345 -https://www.oceanexpert.org/institution/11349 -https://www.oceanexpert.org/institution/11350 -https://www.oceanexpert.org/institution/11352 -https://www.oceanexpert.org/institution/11355 -https://www.oceanexpert.org/institution/11356 -https://www.oceanexpert.org/institution/11358 -https://www.oceanexpert.org/institution/11362 -https://www.oceanexpert.org/institution/11364 -https://www.oceanexpert.org/institution/11365 -https://www.oceanexpert.org/institution/11368 -https://www.oceanexpert.org/institution/11371 -https://www.oceanexpert.org/institution/11376 -https://www.oceanexpert.org/institution/11377 -https://www.oceanexpert.org/institution/11379 -https://www.oceanexpert.org/institution/11384 -https://www.oceanexpert.org/institution/11391 -https://www.oceanexpert.org/institution/11399 -https://www.oceanexpert.org/institution/11408 -https://www.oceanexpert.org/institution/11415 -https://www.oceanexpert.org/institution/11419 -https://www.oceanexpert.org/institution/11420 -https://www.oceanexpert.org/institution/11423 -https://www.oceanexpert.org/institution/11426 -https://www.oceanexpert.org/institution/11429 -https://www.oceanexpert.org/institution/11430 -https://www.oceanexpert.org/institution/11437 -https://www.oceanexpert.org/institution/11444 -https://www.oceanexpert.org/institution/11450 -https://www.oceanexpert.org/institution/11454 -https://www.oceanexpert.org/institution/11455 -https://www.oceanexpert.org/institution/11456 -https://www.oceanexpert.org/institution/11459 -https://www.oceanexpert.org/institution/11460 -https://www.oceanexpert.org/institution/11461 -https://www.oceanexpert.org/institution/11462 -https://www.oceanexpert.org/institution/11466 -https://www.oceanexpert.org/institution/11470 -https://www.oceanexpert.org/institution/11471 -https://www.oceanexpert.org/institution/11474 -https://www.oceanexpert.org/institution/11475 -https://www.oceanexpert.org/institution/11480 -https://www.oceanexpert.org/institution/11481 -https://www.oceanexpert.org/institution/11482 -https://www.oceanexpert.org/institution/11484 -https://www.oceanexpert.org/institution/11486 -https://www.oceanexpert.org/institution/11487 -https://www.oceanexpert.org/institution/11489 -https://www.oceanexpert.org/institution/11491 -https://www.oceanexpert.org/institution/11493 -https://www.oceanexpert.org/institution/11494 -https://www.oceanexpert.org/institution/11497 -https://www.oceanexpert.org/institution/11510 -https://www.oceanexpert.org/institution/11513 -https://www.oceanexpert.org/institution/11514 -https://www.oceanexpert.org/institution/11515 -https://www.oceanexpert.org/institution/11518 -https://www.oceanexpert.org/institution/11519 -https://www.oceanexpert.org/institution/11520 -https://www.oceanexpert.org/institution/11528 -https://www.oceanexpert.org/institution/11529 -https://www.oceanexpert.org/institution/11532 -https://www.oceanexpert.org/institution/11533 -https://www.oceanexpert.org/institution/11544 -https://www.oceanexpert.org/institution/11547 -https://www.oceanexpert.org/institution/11548 -https://www.oceanexpert.org/institution/11550 -https://www.oceanexpert.org/institution/11556 -https://www.oceanexpert.org/institution/11558 -https://www.oceanexpert.org/institution/11560 -https://www.oceanexpert.org/institution/11563 -https://www.oceanexpert.org/institution/11566 -https://www.oceanexpert.org/institution/11568 -https://www.oceanexpert.org/institution/11569 -https://www.oceanexpert.org/institution/11571 -https://www.oceanexpert.org/institution/11573 -https://www.oceanexpert.org/institution/11576 -https://www.oceanexpert.org/institution/11577 -https://www.oceanexpert.org/institution/11578 -https://www.oceanexpert.org/institution/11579 -https://www.oceanexpert.org/institution/11580 -https://www.oceanexpert.org/institution/11582 -https://www.oceanexpert.org/institution/11585 -https://www.oceanexpert.org/institution/11587 -https://www.oceanexpert.org/institution/11590 -https://www.oceanexpert.org/institution/11592 -https://www.oceanexpert.org/institution/11599 -https://www.oceanexpert.org/institution/11604 -https://www.oceanexpert.org/institution/11608 -https://www.oceanexpert.org/institution/11609 -https://www.oceanexpert.org/institution/11610 -https://www.oceanexpert.org/institution/11613 -https://www.oceanexpert.org/institution/11614 -https://www.oceanexpert.org/institution/11619 -https://www.oceanexpert.org/institution/11621 -https://www.oceanexpert.org/institution/11623 -https://www.oceanexpert.org/institution/11625 -https://www.oceanexpert.org/institution/11626 -https://www.oceanexpert.org/institution/11629 -https://www.oceanexpert.org/institution/11631 -https://www.oceanexpert.org/institution/11640 -https://www.oceanexpert.org/institution/11643 -https://www.oceanexpert.org/institution/11644 -https://www.oceanexpert.org/institution/11645 -https://www.oceanexpert.org/institution/11647 -https://www.oceanexpert.org/institution/11650 -https://www.oceanexpert.org/institution/11651 -https://www.oceanexpert.org/institution/11654 -https://www.oceanexpert.org/institution/11659 -https://www.oceanexpert.org/institution/11660 -https://www.oceanexpert.org/institution/11661 -https://www.oceanexpert.org/institution/11665 -https://www.oceanexpert.org/institution/11666 -https://www.oceanexpert.org/institution/11674 -https://www.oceanexpert.org/institution/11676 -https://www.oceanexpert.org/institution/11678 -https://www.oceanexpert.org/institution/11679 -https://www.oceanexpert.org/institution/11680 -https://www.oceanexpert.org/institution/11686 -https://www.oceanexpert.org/institution/11687 -https://www.oceanexpert.org/institution/11688 -https://www.oceanexpert.org/institution/11691 -https://www.oceanexpert.org/institution/11693 -https://www.oceanexpert.org/institution/11695 -https://www.oceanexpert.org/institution/11697 -https://www.oceanexpert.org/institution/11698 -https://www.oceanexpert.org/institution/11700 -https://www.oceanexpert.org/institution/11705 -https://www.oceanexpert.org/institution/11706 -https://www.oceanexpert.org/institution/11707 -https://www.oceanexpert.org/institution/11709 -https://www.oceanexpert.org/institution/11712 -https://www.oceanexpert.org/institution/11723 -https://www.oceanexpert.org/institution/11727 -https://www.oceanexpert.org/institution/11729 -https://www.oceanexpert.org/institution/11735 -https://www.oceanexpert.org/institution/11738 -https://www.oceanexpert.org/institution/11740 -https://www.oceanexpert.org/institution/11745 -https://www.oceanexpert.org/institution/11750 -https://www.oceanexpert.org/institution/11756 -https://www.oceanexpert.org/institution/11758 -https://www.oceanexpert.org/institution/11759 -https://www.oceanexpert.org/institution/11761 -https://www.oceanexpert.org/institution/11762 -https://www.oceanexpert.org/institution/11763 -https://www.oceanexpert.org/institution/11768 -https://www.oceanexpert.org/institution/11769 -https://www.oceanexpert.org/institution/11772 -https://www.oceanexpert.org/institution/11773 -https://www.oceanexpert.org/institution/11774 -https://www.oceanexpert.org/institution/11775 -https://www.oceanexpert.org/institution/11777 -https://www.oceanexpert.org/institution/11778 -https://www.oceanexpert.org/institution/11782 -https://www.oceanexpert.org/institution/11783 -https://www.oceanexpert.org/institution/11787 -https://www.oceanexpert.org/institution/11791 -https://www.oceanexpert.org/institution/11792 -https://www.oceanexpert.org/institution/11797 -https://www.oceanexpert.org/institution/11800 -https://www.oceanexpert.org/institution/11802 -https://www.oceanexpert.org/institution/11804 -https://www.oceanexpert.org/institution/11808 -https://www.oceanexpert.org/institution/11809 -https://www.oceanexpert.org/institution/11817 -https://www.oceanexpert.org/institution/11818 -https://www.oceanexpert.org/institution/11823 -https://www.oceanexpert.org/institution/11825 -https://www.oceanexpert.org/institution/11828 -https://www.oceanexpert.org/institution/11831 -https://www.oceanexpert.org/institution/11835 -https://www.oceanexpert.org/institution/11836 -https://www.oceanexpert.org/institution/11837 -https://www.oceanexpert.org/institution/11839 -https://www.oceanexpert.org/institution/11842 -https://www.oceanexpert.org/institution/11843 -https://www.oceanexpert.org/institution/11845 -https://www.oceanexpert.org/institution/11846 -https://www.oceanexpert.org/institution/11849 -https://www.oceanexpert.org/institution/11853 -https://www.oceanexpert.org/institution/11857 -https://www.oceanexpert.org/institution/11858 -https://www.oceanexpert.org/institution/11860 -https://www.oceanexpert.org/institution/11863 -https://www.oceanexpert.org/institution/11864 -https://www.oceanexpert.org/institution/11867 -https://www.oceanexpert.org/institution/11871 -https://www.oceanexpert.org/institution/11872 -https://www.oceanexpert.org/institution/11874 -https://www.oceanexpert.org/institution/11875 -https://www.oceanexpert.org/institution/11878 -https://www.oceanexpert.org/institution/11879 -https://www.oceanexpert.org/institution/11881 -https://www.oceanexpert.org/institution/11888 -https://www.oceanexpert.org/institution/11890 -https://www.oceanexpert.org/institution/11895 -https://www.oceanexpert.org/institution/11896 -https://www.oceanexpert.org/institution/11916 -https://www.oceanexpert.org/institution/11919 -https://www.oceanexpert.org/institution/11926 -https://www.oceanexpert.org/institution/11940 -https://www.oceanexpert.org/institution/11980 -https://www.oceanexpert.org/institution/11981 -https://www.oceanexpert.org/institution/11986 -https://www.oceanexpert.org/institution/11987 -https://www.oceanexpert.org/institution/11989 -https://www.oceanexpert.org/institution/11992 -https://www.oceanexpert.org/institution/11994 -https://www.oceanexpert.org/institution/11996 -https://www.oceanexpert.org/institution/11997 -https://www.oceanexpert.org/institution/11999 -https://www.oceanexpert.org/institution/12000 -https://www.oceanexpert.org/institution/12001 -https://www.oceanexpert.org/institution/12002 -https://www.oceanexpert.org/institution/12004 -https://www.oceanexpert.org/institution/12005 -https://www.oceanexpert.org/institution/12010 -https://www.oceanexpert.org/institution/12011 -https://www.oceanexpert.org/institution/12012 -https://www.oceanexpert.org/institution/12016 -https://www.oceanexpert.org/institution/12017 -https://www.oceanexpert.org/institution/12019 -https://www.oceanexpert.org/institution/12021 -https://www.oceanexpert.org/institution/12023 -https://www.oceanexpert.org/institution/12025 -https://www.oceanexpert.org/institution/12028 -https://www.oceanexpert.org/institution/12029 -https://www.oceanexpert.org/institution/12030 -https://www.oceanexpert.org/institution/12031 -https://www.oceanexpert.org/institution/12033 -https://www.oceanexpert.org/institution/12034 -https://www.oceanexpert.org/institution/12035 -https://www.oceanexpert.org/institution/12036 -https://www.oceanexpert.org/institution/12038 -https://www.oceanexpert.org/institution/12039 -https://www.oceanexpert.org/institution/12040 -https://www.oceanexpert.org/institution/12042 -https://www.oceanexpert.org/institution/12043 -https://www.oceanexpert.org/institution/12044 -https://www.oceanexpert.org/institution/12045 -https://www.oceanexpert.org/institution/12048 -https://www.oceanexpert.org/institution/12053 -https://www.oceanexpert.org/institution/12054 -https://www.oceanexpert.org/institution/12056 -https://www.oceanexpert.org/institution/12058 -https://www.oceanexpert.org/institution/12061 -https://www.oceanexpert.org/institution/12062 -https://www.oceanexpert.org/institution/12064 -https://www.oceanexpert.org/institution/12065 -https://www.oceanexpert.org/institution/12067 -https://www.oceanexpert.org/institution/12068 -https://www.oceanexpert.org/institution/12070 -https://www.oceanexpert.org/institution/12083 -https://www.oceanexpert.org/institution/12084 -https://www.oceanexpert.org/institution/12085 -https://www.oceanexpert.org/institution/12089 -https://www.oceanexpert.org/institution/12090 -https://www.oceanexpert.org/institution/12092 -https://www.oceanexpert.org/institution/12094 -https://www.oceanexpert.org/institution/12096 -https://www.oceanexpert.org/institution/12097 -https://www.oceanexpert.org/institution/12101 -https://www.oceanexpert.org/institution/12102 -https://www.oceanexpert.org/institution/12104 -https://www.oceanexpert.org/institution/12106 -https://www.oceanexpert.org/institution/12107 -https://www.oceanexpert.org/institution/12108 -https://www.oceanexpert.org/institution/12114 -https://www.oceanexpert.org/institution/12116 -https://www.oceanexpert.org/institution/12118 -https://www.oceanexpert.org/institution/12119 -https://www.oceanexpert.org/institution/12120 -https://www.oceanexpert.org/institution/12121 -https://www.oceanexpert.org/institution/12122 -https://www.oceanexpert.org/institution/12125 -https://www.oceanexpert.org/institution/12127 -https://www.oceanexpert.org/institution/12129 -https://www.oceanexpert.org/institution/12130 -https://www.oceanexpert.org/institution/12133 -https://www.oceanexpert.org/institution/12134 -https://www.oceanexpert.org/institution/12135 -https://www.oceanexpert.org/institution/12136 -https://www.oceanexpert.org/institution/12138 -https://www.oceanexpert.org/institution/12139 -https://www.oceanexpert.org/institution/12141 -https://www.oceanexpert.org/institution/12145 -https://www.oceanexpert.org/institution/12150 -https://www.oceanexpert.org/institution/12152 -https://www.oceanexpert.org/institution/12154 -https://www.oceanexpert.org/institution/12155 -https://www.oceanexpert.org/institution/12156 -https://www.oceanexpert.org/institution/12158 -https://www.oceanexpert.org/institution/12159 -https://www.oceanexpert.org/institution/12165 -https://www.oceanexpert.org/institution/12169 -https://www.oceanexpert.org/institution/12171 -https://www.oceanexpert.org/institution/12172 -https://www.oceanexpert.org/institution/12175 -https://www.oceanexpert.org/institution/12176 -https://www.oceanexpert.org/institution/12179 -https://www.oceanexpert.org/institution/12181 -https://www.oceanexpert.org/institution/12182 -https://www.oceanexpert.org/institution/12185 -https://www.oceanexpert.org/institution/12186 -https://www.oceanexpert.org/institution/12188 -https://www.oceanexpert.org/institution/12191 -https://www.oceanexpert.org/institution/12193 -https://www.oceanexpert.org/institution/12195 -https://www.oceanexpert.org/institution/12199 -https://www.oceanexpert.org/institution/12204 -https://www.oceanexpert.org/institution/12205 -https://www.oceanexpert.org/institution/12207 -https://www.oceanexpert.org/institution/12208 -https://www.oceanexpert.org/institution/12214 -https://www.oceanexpert.org/institution/12216 -https://www.oceanexpert.org/institution/12217 -https://www.oceanexpert.org/institution/12218 -https://www.oceanexpert.org/institution/12219 -https://www.oceanexpert.org/institution/12220 -https://www.oceanexpert.org/institution/12227 -https://www.oceanexpert.org/institution/12228 -https://www.oceanexpert.org/institution/12230 -https://www.oceanexpert.org/institution/12232 -https://www.oceanexpert.org/institution/12233 -https://www.oceanexpert.org/institution/12249 -https://www.oceanexpert.org/institution/12252 -https://www.oceanexpert.org/institution/12258 -https://www.oceanexpert.org/institution/12259 -https://www.oceanexpert.org/institution/12260 -https://www.oceanexpert.org/institution/12268 -https://www.oceanexpert.org/institution/12269 -https://www.oceanexpert.org/institution/12272 -https://www.oceanexpert.org/institution/12273 -https://www.oceanexpert.org/institution/12278 -https://www.oceanexpert.org/institution/12283 -https://www.oceanexpert.org/institution/12286 -https://www.oceanexpert.org/institution/12290 -https://www.oceanexpert.org/institution/12294 -https://www.oceanexpert.org/institution/12295 -https://www.oceanexpert.org/institution/12298 -https://www.oceanexpert.org/institution/12307 -https://www.oceanexpert.org/institution/12308 -https://www.oceanexpert.org/institution/12309 -https://www.oceanexpert.org/institution/12314 -https://www.oceanexpert.org/institution/12316 -https://www.oceanexpert.org/institution/12317 -https://www.oceanexpert.org/institution/12318 -https://www.oceanexpert.org/institution/12320 -https://www.oceanexpert.org/institution/12331 -https://www.oceanexpert.org/institution/12333 -https://www.oceanexpert.org/institution/12335 -https://www.oceanexpert.org/institution/12340 -https://www.oceanexpert.org/institution/12343 -https://www.oceanexpert.org/institution/12345 -https://www.oceanexpert.org/institution/12347 -https://www.oceanexpert.org/institution/12349 -https://www.oceanexpert.org/institution/12359 -https://www.oceanexpert.org/institution/12362 -https://www.oceanexpert.org/institution/12363 -https://www.oceanexpert.org/institution/12365 -https://www.oceanexpert.org/institution/12366 -https://www.oceanexpert.org/institution/12369 -https://www.oceanexpert.org/institution/12370 -https://www.oceanexpert.org/institution/12372 -https://www.oceanexpert.org/institution/12373 -https://www.oceanexpert.org/institution/12374 -https://www.oceanexpert.org/institution/12376 -https://www.oceanexpert.org/institution/12378 -https://www.oceanexpert.org/institution/12380 -https://www.oceanexpert.org/institution/12382 -https://www.oceanexpert.org/institution/12383 -https://www.oceanexpert.org/institution/12385 -https://www.oceanexpert.org/institution/12387 -https://www.oceanexpert.org/institution/12392 -https://www.oceanexpert.org/institution/12394 -https://www.oceanexpert.org/institution/12395 -https://www.oceanexpert.org/institution/12398 -https://www.oceanexpert.org/institution/12401 -https://www.oceanexpert.org/institution/12407 -https://www.oceanexpert.org/institution/12409 -https://www.oceanexpert.org/institution/12417 -https://www.oceanexpert.org/institution/12419 -https://www.oceanexpert.org/institution/12420 -https://www.oceanexpert.org/institution/12423 -https://www.oceanexpert.org/institution/12424 -https://www.oceanexpert.org/institution/12426 -https://www.oceanexpert.org/institution/12427 -https://www.oceanexpert.org/institution/12428 -https://www.oceanexpert.org/institution/12429 -https://www.oceanexpert.org/institution/12432 -https://www.oceanexpert.org/institution/12435 -https://www.oceanexpert.org/institution/12436 -https://www.oceanexpert.org/institution/12437 -https://www.oceanexpert.org/institution/12438 -https://www.oceanexpert.org/institution/12441 -https://www.oceanexpert.org/institution/12444 -https://www.oceanexpert.org/institution/12445 -https://www.oceanexpert.org/institution/12446 -https://www.oceanexpert.org/institution/12447 -https://www.oceanexpert.org/institution/12455 -https://www.oceanexpert.org/institution/12461 -https://www.oceanexpert.org/institution/12467 -https://www.oceanexpert.org/institution/12468 -https://www.oceanexpert.org/institution/12472 -https://www.oceanexpert.org/institution/12474 -https://www.oceanexpert.org/institution/12480 -https://www.oceanexpert.org/institution/12482 -https://www.oceanexpert.org/institution/12483 -https://www.oceanexpert.org/institution/12484 -https://www.oceanexpert.org/institution/12488 -https://www.oceanexpert.org/institution/12489 -https://www.oceanexpert.org/institution/12494 -https://www.oceanexpert.org/institution/12495 -https://www.oceanexpert.org/institution/12496 -https://www.oceanexpert.org/institution/12497 -https://www.oceanexpert.org/institution/12498 -https://www.oceanexpert.org/institution/12501 -https://www.oceanexpert.org/institution/12507 -https://www.oceanexpert.org/institution/12511 -https://www.oceanexpert.org/institution/12512 -https://www.oceanexpert.org/institution/12515 -https://www.oceanexpert.org/institution/12524 -https://www.oceanexpert.org/institution/12533 -https://www.oceanexpert.org/institution/12534 -https://www.oceanexpert.org/institution/12535 -https://www.oceanexpert.org/institution/12536 -https://www.oceanexpert.org/institution/12537 -https://www.oceanexpert.org/institution/12540 -https://www.oceanexpert.org/institution/12545 -https://www.oceanexpert.org/institution/12546 -https://www.oceanexpert.org/institution/12548 -https://www.oceanexpert.org/institution/12550 -https://www.oceanexpert.org/institution/12552 -https://www.oceanexpert.org/institution/12553 -https://www.oceanexpert.org/institution/12555 -https://www.oceanexpert.org/institution/12556 -https://www.oceanexpert.org/institution/12558 -https://www.oceanexpert.org/institution/12559 -https://www.oceanexpert.org/institution/12560 -https://www.oceanexpert.org/institution/12561 -https://www.oceanexpert.org/institution/12562 -https://www.oceanexpert.org/institution/12563 -https://www.oceanexpert.org/institution/12569 -https://www.oceanexpert.org/institution/12570 -https://www.oceanexpert.org/institution/12574 -https://www.oceanexpert.org/institution/12576 -https://www.oceanexpert.org/institution/12585 -https://www.oceanexpert.org/institution/12591 -https://www.oceanexpert.org/institution/12593 -https://www.oceanexpert.org/institution/12596 -https://www.oceanexpert.org/institution/12597 -https://www.oceanexpert.org/institution/12598 -https://www.oceanexpert.org/institution/12600 -https://www.oceanexpert.org/institution/12602 -https://www.oceanexpert.org/institution/12603 -https://www.oceanexpert.org/institution/12604 -https://www.oceanexpert.org/institution/12605 -https://www.oceanexpert.org/institution/12606 -https://www.oceanexpert.org/institution/12611 -https://www.oceanexpert.org/institution/12615 -https://www.oceanexpert.org/institution/12616 -https://www.oceanexpert.org/institution/12617 -https://www.oceanexpert.org/institution/12618 -https://www.oceanexpert.org/institution/12624 -https://www.oceanexpert.org/institution/12626 -https://www.oceanexpert.org/institution/12629 -https://www.oceanexpert.org/institution/12632 -https://www.oceanexpert.org/institution/12633 -https://www.oceanexpert.org/institution/12635 -https://www.oceanexpert.org/institution/12641 -https://www.oceanexpert.org/institution/12645 -https://www.oceanexpert.org/institution/12651 -https://www.oceanexpert.org/institution/12652 -https://www.oceanexpert.org/institution/12655 -https://www.oceanexpert.org/institution/12660 -https://www.oceanexpert.org/institution/12661 -https://www.oceanexpert.org/institution/12666 -https://www.oceanexpert.org/institution/12667 -https://www.oceanexpert.org/institution/12668 -https://www.oceanexpert.org/institution/12671 -https://www.oceanexpert.org/institution/12678 -https://www.oceanexpert.org/institution/12679 -https://www.oceanexpert.org/institution/12681 -https://www.oceanexpert.org/institution/12683 -https://www.oceanexpert.org/institution/12686 -https://www.oceanexpert.org/institution/12687 -https://www.oceanexpert.org/institution/12691 -https://www.oceanexpert.org/institution/12692 -https://www.oceanexpert.org/institution/12696 -https://www.oceanexpert.org/institution/12703 -https://www.oceanexpert.org/institution/12706 -https://www.oceanexpert.org/institution/12713 -https://www.oceanexpert.org/institution/12715 -https://www.oceanexpert.org/institution/12716 -https://www.oceanexpert.org/institution/12720 -https://www.oceanexpert.org/institution/12721 -https://www.oceanexpert.org/institution/12722 -https://www.oceanexpert.org/institution/12725 -https://www.oceanexpert.org/institution/12726 -https://www.oceanexpert.org/institution/12727 -https://www.oceanexpert.org/institution/12733 -https://www.oceanexpert.org/institution/12734 -https://www.oceanexpert.org/institution/12736 -https://www.oceanexpert.org/institution/12740 -https://www.oceanexpert.org/institution/12742 -https://www.oceanexpert.org/institution/12745 -https://www.oceanexpert.org/institution/12748 -https://www.oceanexpert.org/institution/12749 -https://www.oceanexpert.org/institution/12751 -https://www.oceanexpert.org/institution/12754 -https://www.oceanexpert.org/institution/12755 -https://www.oceanexpert.org/institution/12756 -https://www.oceanexpert.org/institution/12757 -https://www.oceanexpert.org/institution/12762 -https://www.oceanexpert.org/institution/12764 -https://www.oceanexpert.org/institution/12765 -https://www.oceanexpert.org/institution/12768 -https://www.oceanexpert.org/institution/12769 -https://www.oceanexpert.org/institution/12770 -https://www.oceanexpert.org/institution/12771 -https://www.oceanexpert.org/institution/12772 -https://www.oceanexpert.org/institution/12773 -https://www.oceanexpert.org/institution/12776 -https://www.oceanexpert.org/institution/12786 -https://www.oceanexpert.org/institution/12787 -https://www.oceanexpert.org/institution/12789 -https://www.oceanexpert.org/institution/12792 -https://www.oceanexpert.org/institution/12795 -https://www.oceanexpert.org/institution/12796 -https://www.oceanexpert.org/institution/12797 -https://www.oceanexpert.org/institution/12799 -https://www.oceanexpert.org/institution/12801 -https://www.oceanexpert.org/institution/12804 -https://www.oceanexpert.org/institution/12808 -https://www.oceanexpert.org/institution/12809 -https://www.oceanexpert.org/institution/12810 -https://www.oceanexpert.org/institution/12813 -https://www.oceanexpert.org/institution/12816 -https://www.oceanexpert.org/institution/12819 -https://www.oceanexpert.org/institution/12823 -https://www.oceanexpert.org/institution/12830 -https://www.oceanexpert.org/institution/12833 -https://www.oceanexpert.org/institution/12835 -https://www.oceanexpert.org/institution/12837 -https://www.oceanexpert.org/institution/12845 -https://www.oceanexpert.org/institution/12846 -https://www.oceanexpert.org/institution/12851 -https://www.oceanexpert.org/institution/12852 -https://www.oceanexpert.org/institution/12858 -https://www.oceanexpert.org/institution/12860 -https://www.oceanexpert.org/institution/12864 -https://www.oceanexpert.org/institution/12865 -https://www.oceanexpert.org/institution/12866 -https://www.oceanexpert.org/institution/12869 -https://www.oceanexpert.org/institution/12870 -https://www.oceanexpert.org/institution/12872 -https://www.oceanexpert.org/institution/12873 -https://www.oceanexpert.org/institution/12875 -https://www.oceanexpert.org/institution/12877 -https://www.oceanexpert.org/institution/12878 -https://www.oceanexpert.org/institution/12880 -https://www.oceanexpert.org/institution/12881 -https://www.oceanexpert.org/institution/12891 -https://www.oceanexpert.org/institution/12894 -https://www.oceanexpert.org/institution/12896 -https://www.oceanexpert.org/institution/12898 -https://www.oceanexpert.org/institution/12905 -https://www.oceanexpert.org/institution/12908 -https://www.oceanexpert.org/institution/12909 -https://www.oceanexpert.org/institution/12912 -https://www.oceanexpert.org/institution/12914 -https://www.oceanexpert.org/institution/12915 -https://www.oceanexpert.org/institution/12917 -https://www.oceanexpert.org/institution/12919 -https://www.oceanexpert.org/institution/12923 -https://www.oceanexpert.org/institution/12926 -https://www.oceanexpert.org/institution/12927 -https://www.oceanexpert.org/institution/12930 -https://www.oceanexpert.org/institution/12932 -https://www.oceanexpert.org/institution/12938 -https://www.oceanexpert.org/institution/12939 -https://www.oceanexpert.org/institution/12940 -https://www.oceanexpert.org/institution/12941 -https://www.oceanexpert.org/institution/12942 -https://www.oceanexpert.org/institution/12944 -https://www.oceanexpert.org/institution/12947 -https://www.oceanexpert.org/institution/12951 -https://www.oceanexpert.org/institution/12955 -https://www.oceanexpert.org/institution/12956 -https://www.oceanexpert.org/institution/12958 -https://www.oceanexpert.org/institution/12959 -https://www.oceanexpert.org/institution/12961 -https://www.oceanexpert.org/institution/12963 -https://www.oceanexpert.org/institution/12965 -https://www.oceanexpert.org/institution/12970 -https://www.oceanexpert.org/institution/12976 -https://www.oceanexpert.org/institution/12978 -https://www.oceanexpert.org/institution/12980 -https://www.oceanexpert.org/institution/12984 -https://www.oceanexpert.org/institution/12989 -https://www.oceanexpert.org/institution/12990 -https://www.oceanexpert.org/institution/12991 -https://www.oceanexpert.org/institution/12993 -https://www.oceanexpert.org/institution/12994 -https://www.oceanexpert.org/institution/12995 -https://www.oceanexpert.org/institution/12997 -https://www.oceanexpert.org/institution/12998 -https://www.oceanexpert.org/institution/12999 -https://www.oceanexpert.org/institution/13001 -https://www.oceanexpert.org/institution/13002 -https://www.oceanexpert.org/institution/13004 -https://www.oceanexpert.org/institution/13007 -https://www.oceanexpert.org/institution/13008 -https://www.oceanexpert.org/institution/13014 -https://www.oceanexpert.org/institution/13015 -https://www.oceanexpert.org/institution/13016 -https://www.oceanexpert.org/institution/13018 -https://www.oceanexpert.org/institution/13019 -https://www.oceanexpert.org/institution/13020 -https://www.oceanexpert.org/institution/13022 -https://www.oceanexpert.org/institution/13023 -https://www.oceanexpert.org/institution/13024 -https://www.oceanexpert.org/institution/13025 -https://www.oceanexpert.org/institution/13026 -https://www.oceanexpert.org/institution/13030 -https://www.oceanexpert.org/institution/13031 -https://www.oceanexpert.org/institution/13033 -https://www.oceanexpert.org/institution/13035 -https://www.oceanexpert.org/institution/13040 -https://www.oceanexpert.org/institution/13042 -https://www.oceanexpert.org/institution/13043 -https://www.oceanexpert.org/institution/13045 -https://www.oceanexpert.org/institution/13051 -https://www.oceanexpert.org/institution/13053 -https://www.oceanexpert.org/institution/13059 -https://www.oceanexpert.org/institution/13061 -https://www.oceanexpert.org/institution/13065 -https://www.oceanexpert.org/institution/13067 -https://www.oceanexpert.org/institution/13068 -https://www.oceanexpert.org/institution/13072 -https://www.oceanexpert.org/institution/13075 -https://www.oceanexpert.org/institution/13078 -https://www.oceanexpert.org/institution/13079 -https://www.oceanexpert.org/institution/13080 -https://www.oceanexpert.org/institution/13082 -https://www.oceanexpert.org/institution/13083 -https://www.oceanexpert.org/institution/13084 -https://www.oceanexpert.org/institution/13086 -https://www.oceanexpert.org/institution/13087 -https://www.oceanexpert.org/institution/13092 -https://www.oceanexpert.org/institution/13096 -https://www.oceanexpert.org/institution/13098 -https://www.oceanexpert.org/institution/13100 -https://www.oceanexpert.org/institution/13102 -https://www.oceanexpert.org/institution/13104 -https://www.oceanexpert.org/institution/13106 -https://www.oceanexpert.org/institution/13107 -https://www.oceanexpert.org/institution/13108 -https://www.oceanexpert.org/institution/13109 -https://www.oceanexpert.org/institution/13112 -https://www.oceanexpert.org/institution/13115 -https://www.oceanexpert.org/institution/13116 -https://www.oceanexpert.org/institution/13118 -https://www.oceanexpert.org/institution/13120 -https://www.oceanexpert.org/institution/13121 -https://www.oceanexpert.org/institution/13122 -https://www.oceanexpert.org/institution/13124 -https://www.oceanexpert.org/institution/13125 -https://www.oceanexpert.org/institution/13129 -https://www.oceanexpert.org/institution/13130 -https://www.oceanexpert.org/institution/13136 -https://www.oceanexpert.org/institution/13137 -https://www.oceanexpert.org/institution/13138 -https://www.oceanexpert.org/institution/13139 -https://www.oceanexpert.org/institution/13140 -https://www.oceanexpert.org/institution/13142 -https://www.oceanexpert.org/institution/13143 -https://www.oceanexpert.org/institution/13144 -https://www.oceanexpert.org/institution/13149 -https://www.oceanexpert.org/institution/13150 -https://www.oceanexpert.org/institution/13153 -https://www.oceanexpert.org/institution/13156 -https://www.oceanexpert.org/institution/13157 -https://www.oceanexpert.org/institution/13158 -https://www.oceanexpert.org/institution/13162 -https://www.oceanexpert.org/institution/13164 -https://www.oceanexpert.org/institution/13166 -https://www.oceanexpert.org/institution/13167 -https://www.oceanexpert.org/institution/13168 -https://www.oceanexpert.org/institution/13169 -https://www.oceanexpert.org/institution/13172 -https://www.oceanexpert.org/institution/13174 -https://www.oceanexpert.org/institution/13175 -https://www.oceanexpert.org/institution/13181 -https://www.oceanexpert.org/institution/13183 -https://www.oceanexpert.org/institution/13184 -https://www.oceanexpert.org/institution/13187 -https://www.oceanexpert.org/institution/13188 -https://www.oceanexpert.org/institution/13189 -https://www.oceanexpert.org/institution/13193 -https://www.oceanexpert.org/institution/13195 -https://www.oceanexpert.org/institution/13199 -https://www.oceanexpert.org/institution/13200 -https://www.oceanexpert.org/institution/13208 -https://www.oceanexpert.org/institution/13209 -https://www.oceanexpert.org/institution/13210 -https://www.oceanexpert.org/institution/13220 -https://www.oceanexpert.org/institution/13221 -https://www.oceanexpert.org/institution/13222 -https://www.oceanexpert.org/institution/13223 -https://www.oceanexpert.org/institution/13228 -https://www.oceanexpert.org/institution/13231 -https://www.oceanexpert.org/institution/13232 -https://www.oceanexpert.org/institution/13233 -https://www.oceanexpert.org/institution/13234 -https://www.oceanexpert.org/institution/13236 -https://www.oceanexpert.org/institution/13237 -https://www.oceanexpert.org/institution/13238 -https://www.oceanexpert.org/institution/13239 -https://www.oceanexpert.org/institution/13243 -https://www.oceanexpert.org/institution/13252 -https://www.oceanexpert.org/institution/13253 -https://www.oceanexpert.org/institution/13256 -https://www.oceanexpert.org/institution/13262 -https://www.oceanexpert.org/institution/13264 -https://www.oceanexpert.org/institution/13266 -https://www.oceanexpert.org/institution/13268 -https://www.oceanexpert.org/institution/13269 -https://www.oceanexpert.org/institution/13270 -https://www.oceanexpert.org/institution/13272 -https://www.oceanexpert.org/institution/13276 -https://www.oceanexpert.org/institution/13277 -https://www.oceanexpert.org/institution/13278 -https://www.oceanexpert.org/institution/13279 -https://www.oceanexpert.org/institution/13280 -https://www.oceanexpert.org/institution/13283 -https://www.oceanexpert.org/institution/13286 -https://www.oceanexpert.org/institution/13290 -https://www.oceanexpert.org/institution/13292 -https://www.oceanexpert.org/institution/13293 -https://www.oceanexpert.org/institution/13294 -https://www.oceanexpert.org/institution/13295 -https://www.oceanexpert.org/institution/13297 -https://www.oceanexpert.org/institution/13298 -https://www.oceanexpert.org/institution/13300 -https://www.oceanexpert.org/institution/13301 -https://www.oceanexpert.org/institution/13313 -https://www.oceanexpert.org/institution/13316 -https://www.oceanexpert.org/institution/13321 -https://www.oceanexpert.org/institution/13323 -https://www.oceanexpert.org/institution/13332 -https://www.oceanexpert.org/institution/13338 -https://www.oceanexpert.org/institution/13341 -https://www.oceanexpert.org/institution/13342 -https://www.oceanexpert.org/institution/13358 -https://www.oceanexpert.org/institution/13359 -https://www.oceanexpert.org/institution/13360 -https://www.oceanexpert.org/institution/13367 -https://www.oceanexpert.org/institution/13368 -https://www.oceanexpert.org/institution/13371 -https://www.oceanexpert.org/institution/13374 -https://www.oceanexpert.org/institution/13380 -https://www.oceanexpert.org/institution/13391 -https://www.oceanexpert.org/institution/13392 -https://www.oceanexpert.org/institution/13397 -https://www.oceanexpert.org/institution/13398 -https://www.oceanexpert.org/institution/13401 -https://www.oceanexpert.org/institution/13402 -https://www.oceanexpert.org/institution/13410 -https://www.oceanexpert.org/institution/13412 -https://www.oceanexpert.org/institution/13416 -https://www.oceanexpert.org/institution/13418 -https://www.oceanexpert.org/institution/13419 -https://www.oceanexpert.org/institution/13420 -https://www.oceanexpert.org/institution/13421 -https://www.oceanexpert.org/institution/13425 -https://www.oceanexpert.org/institution/13426 -https://www.oceanexpert.org/institution/13427 -https://www.oceanexpert.org/institution/13428 -https://www.oceanexpert.org/institution/13429 -https://www.oceanexpert.org/institution/13431 -https://www.oceanexpert.org/institution/13432 -https://www.oceanexpert.org/institution/13433 -https://www.oceanexpert.org/institution/13445 -https://www.oceanexpert.org/institution/13446 -https://www.oceanexpert.org/institution/13449 -https://www.oceanexpert.org/institution/13465 -https://www.oceanexpert.org/institution/13484 -https://www.oceanexpert.org/institution/13485 -https://www.oceanexpert.org/institution/13487 -https://www.oceanexpert.org/institution/13489 -https://www.oceanexpert.org/institution/13491 -https://www.oceanexpert.org/institution/13493 -https://www.oceanexpert.org/institution/13496 -https://www.oceanexpert.org/institution/13503 -https://www.oceanexpert.org/institution/13509 -https://www.oceanexpert.org/institution/13512 -https://www.oceanexpert.org/institution/13514 -https://www.oceanexpert.org/institution/13516 -https://www.oceanexpert.org/institution/13518 -https://www.oceanexpert.org/institution/13519 -https://www.oceanexpert.org/institution/13524 -https://www.oceanexpert.org/institution/13525 -https://www.oceanexpert.org/institution/13530 -https://www.oceanexpert.org/institution/13531 -https://www.oceanexpert.org/institution/13532 -https://www.oceanexpert.org/institution/13534 -https://www.oceanexpert.org/institution/13539 -https://www.oceanexpert.org/institution/13545 -https://www.oceanexpert.org/institution/13549 -https://www.oceanexpert.org/institution/13550 -https://www.oceanexpert.org/institution/13556 -https://www.oceanexpert.org/institution/13564 -https://www.oceanexpert.org/institution/13565 -https://www.oceanexpert.org/institution/13570 -https://www.oceanexpert.org/institution/13577 -https://www.oceanexpert.org/institution/13580 -https://www.oceanexpert.org/institution/13582 -https://www.oceanexpert.org/institution/13587 -https://www.oceanexpert.org/institution/13589 -https://www.oceanexpert.org/institution/13591 -https://www.oceanexpert.org/institution/13593 -https://www.oceanexpert.org/institution/13595 -https://www.oceanexpert.org/institution/13597 -https://www.oceanexpert.org/institution/13602 -https://www.oceanexpert.org/institution/13604 -https://www.oceanexpert.org/institution/13608 -https://www.oceanexpert.org/institution/13611 -https://www.oceanexpert.org/institution/13613 -https://www.oceanexpert.org/institution/13617 -https://www.oceanexpert.org/institution/13619 -https://www.oceanexpert.org/institution/13626 -https://www.oceanexpert.org/institution/13627 -https://www.oceanexpert.org/institution/13630 -https://www.oceanexpert.org/institution/13633 -https://www.oceanexpert.org/institution/13639 -https://www.oceanexpert.org/institution/13642 -https://www.oceanexpert.org/institution/13651 -https://www.oceanexpert.org/institution/13652 -https://www.oceanexpert.org/institution/13653 -https://www.oceanexpert.org/institution/13654 -https://www.oceanexpert.org/institution/13659 -https://www.oceanexpert.org/institution/13666 -https://www.oceanexpert.org/institution/13667 -https://www.oceanexpert.org/institution/13673 -https://www.oceanexpert.org/institution/13674 -https://www.oceanexpert.org/institution/13675 -https://www.oceanexpert.org/institution/13678 -https://www.oceanexpert.org/institution/13680 -https://www.oceanexpert.org/institution/13682 -https://www.oceanexpert.org/institution/13684 -https://www.oceanexpert.org/institution/13695 -https://www.oceanexpert.org/institution/13696 -https://www.oceanexpert.org/institution/13698 -https://www.oceanexpert.org/institution/13699 -https://www.oceanexpert.org/institution/13703 -https://www.oceanexpert.org/institution/13707 -https://www.oceanexpert.org/institution/13714 -https://www.oceanexpert.org/institution/13717 -https://www.oceanexpert.org/institution/13723 -https://www.oceanexpert.org/institution/13724 -https://www.oceanexpert.org/institution/13727 -https://www.oceanexpert.org/institution/13737 -https://www.oceanexpert.org/institution/13739 -https://www.oceanexpert.org/institution/13747 -https://www.oceanexpert.org/institution/13750 -https://www.oceanexpert.org/institution/13751 -https://www.oceanexpert.org/institution/13759 -https://www.oceanexpert.org/institution/13766 -https://www.oceanexpert.org/institution/13768 -https://www.oceanexpert.org/institution/13772 -https://www.oceanexpert.org/institution/13773 -https://www.oceanexpert.org/institution/13777 -https://www.oceanexpert.org/institution/13791 -https://www.oceanexpert.org/institution/13793 -https://www.oceanexpert.org/institution/13794 -https://www.oceanexpert.org/institution/13803 -https://www.oceanexpert.org/institution/13806 -https://www.oceanexpert.org/institution/13810 -https://www.oceanexpert.org/institution/13813 -https://www.oceanexpert.org/institution/13814 -https://www.oceanexpert.org/institution/13818 -https://www.oceanexpert.org/institution/13822 -https://www.oceanexpert.org/institution/13823 -https://www.oceanexpert.org/institution/13829 -https://www.oceanexpert.org/institution/13830 -https://www.oceanexpert.org/institution/13834 -https://www.oceanexpert.org/institution/13838 -https://www.oceanexpert.org/institution/13842 -https://www.oceanexpert.org/institution/13845 -https://www.oceanexpert.org/institution/13851 -https://www.oceanexpert.org/institution/13852 -https://www.oceanexpert.org/institution/13853 -https://www.oceanexpert.org/institution/13855 -https://www.oceanexpert.org/institution/13857 -https://www.oceanexpert.org/institution/13860 -https://www.oceanexpert.org/institution/13861 -https://www.oceanexpert.org/institution/13863 -https://www.oceanexpert.org/institution/13867 -https://www.oceanexpert.org/institution/13874 -https://www.oceanexpert.org/institution/13879 -https://www.oceanexpert.org/institution/13881 -https://www.oceanexpert.org/institution/13882 -https://www.oceanexpert.org/institution/13884 -https://www.oceanexpert.org/institution/13891 -https://www.oceanexpert.org/institution/13893 -https://www.oceanexpert.org/institution/13895 -https://www.oceanexpert.org/institution/13896 -https://www.oceanexpert.org/institution/13900 -https://www.oceanexpert.org/institution/13903 -https://www.oceanexpert.org/institution/13905 -https://www.oceanexpert.org/institution/13906 -https://www.oceanexpert.org/institution/13911 -https://www.oceanexpert.org/institution/13912 -https://www.oceanexpert.org/institution/13917 -https://www.oceanexpert.org/institution/13918 -https://www.oceanexpert.org/institution/13920 -https://www.oceanexpert.org/institution/13921 -https://www.oceanexpert.org/institution/13922 -https://www.oceanexpert.org/institution/13925 -https://www.oceanexpert.org/institution/13926 -https://www.oceanexpert.org/institution/13928 -https://www.oceanexpert.org/institution/13935 -https://www.oceanexpert.org/institution/13938 -https://www.oceanexpert.org/institution/13940 -https://www.oceanexpert.org/institution/13943 -https://www.oceanexpert.org/institution/13947 -https://www.oceanexpert.org/institution/13948 -https://www.oceanexpert.org/institution/13949 -https://www.oceanexpert.org/institution/13950 -https://www.oceanexpert.org/institution/13951 -https://www.oceanexpert.org/institution/13953 -https://www.oceanexpert.org/institution/13957 -https://www.oceanexpert.org/institution/13959 -https://www.oceanexpert.org/institution/13963 -https://www.oceanexpert.org/institution/13964 -https://www.oceanexpert.org/institution/13969 -https://www.oceanexpert.org/institution/13970 -https://www.oceanexpert.org/institution/13971 -https://www.oceanexpert.org/institution/13978 -https://www.oceanexpert.org/institution/13982 -https://www.oceanexpert.org/institution/13983 -https://www.oceanexpert.org/institution/13985 -https://www.oceanexpert.org/institution/13986 -https://www.oceanexpert.org/institution/13988 -https://www.oceanexpert.org/institution/13991 -https://www.oceanexpert.org/institution/13992 -https://www.oceanexpert.org/institution/13994 -https://www.oceanexpert.org/institution/13996 -https://www.oceanexpert.org/institution/13998 -https://www.oceanexpert.org/institution/14002 -https://www.oceanexpert.org/institution/14003 -https://www.oceanexpert.org/institution/14004 -https://www.oceanexpert.org/institution/14005 -https://www.oceanexpert.org/institution/14006 -https://www.oceanexpert.org/institution/14009 -https://www.oceanexpert.org/institution/14011 -https://www.oceanexpert.org/institution/14014 -https://www.oceanexpert.org/institution/14016 -https://www.oceanexpert.org/institution/14019 -https://www.oceanexpert.org/institution/14021 -https://www.oceanexpert.org/institution/14023 -https://www.oceanexpert.org/institution/14026 -https://www.oceanexpert.org/institution/14028 -https://www.oceanexpert.org/institution/14030 -https://www.oceanexpert.org/institution/14031 -https://www.oceanexpert.org/institution/14036 -https://www.oceanexpert.org/institution/14037 -https://www.oceanexpert.org/institution/14038 -https://www.oceanexpert.org/institution/14039 -https://www.oceanexpert.org/institution/14040 -https://www.oceanexpert.org/institution/14041 -https://www.oceanexpert.org/institution/14042 -https://www.oceanexpert.org/institution/14043 -https://www.oceanexpert.org/institution/14045 -https://www.oceanexpert.org/institution/14046 -https://www.oceanexpert.org/institution/14048 -https://www.oceanexpert.org/institution/14049 -https://www.oceanexpert.org/institution/14050 -https://www.oceanexpert.org/institution/14053 -https://www.oceanexpert.org/institution/14054 -https://www.oceanexpert.org/institution/14055 -https://www.oceanexpert.org/institution/14056 -https://www.oceanexpert.org/institution/14058 -https://www.oceanexpert.org/institution/14059 -https://www.oceanexpert.org/institution/14060 -https://www.oceanexpert.org/institution/14061 -https://www.oceanexpert.org/institution/14063 -https://www.oceanexpert.org/institution/14065 -https://www.oceanexpert.org/institution/14066 -https://www.oceanexpert.org/institution/14067 -https://www.oceanexpert.org/institution/14068 -https://www.oceanexpert.org/institution/14072 -https://www.oceanexpert.org/institution/14080 -https://www.oceanexpert.org/institution/14082 -https://www.oceanexpert.org/institution/14083 -https://www.oceanexpert.org/institution/14085 -https://www.oceanexpert.org/institution/14086 -https://www.oceanexpert.org/institution/14088 -https://www.oceanexpert.org/institution/14089 -https://www.oceanexpert.org/institution/14093 -https://www.oceanexpert.org/institution/14094 -https://www.oceanexpert.org/institution/14095 -https://www.oceanexpert.org/institution/14096 -https://www.oceanexpert.org/institution/14099 -https://www.oceanexpert.org/institution/14101 -https://www.oceanexpert.org/institution/14102 -https://www.oceanexpert.org/institution/14104 -https://www.oceanexpert.org/institution/14105 -https://www.oceanexpert.org/institution/14106 -https://www.oceanexpert.org/institution/14107 -https://www.oceanexpert.org/institution/14112 -https://www.oceanexpert.org/institution/14115 -https://www.oceanexpert.org/institution/14116 -https://www.oceanexpert.org/institution/14119 -https://www.oceanexpert.org/institution/14120 -https://www.oceanexpert.org/institution/14121 -https://www.oceanexpert.org/institution/14124 -https://www.oceanexpert.org/institution/14127 -https://www.oceanexpert.org/institution/14132 -https://www.oceanexpert.org/institution/14133 -https://www.oceanexpert.org/institution/14138 -https://www.oceanexpert.org/institution/14139 -https://www.oceanexpert.org/institution/14140 -https://www.oceanexpert.org/institution/14142 -https://www.oceanexpert.org/institution/14146 -https://www.oceanexpert.org/institution/14150 -https://www.oceanexpert.org/institution/14159 -https://www.oceanexpert.org/institution/14163 -https://www.oceanexpert.org/institution/14168 -https://www.oceanexpert.org/institution/14171 -https://www.oceanexpert.org/institution/14172 -https://www.oceanexpert.org/institution/14173 -https://www.oceanexpert.org/institution/14175 -https://www.oceanexpert.org/institution/14176 -https://www.oceanexpert.org/institution/14177 -https://www.oceanexpert.org/institution/14178 -https://www.oceanexpert.org/institution/14179 -https://www.oceanexpert.org/institution/14181 -https://www.oceanexpert.org/institution/14185 -https://www.oceanexpert.org/institution/14188 -https://www.oceanexpert.org/institution/14192 -https://www.oceanexpert.org/institution/14193 -https://www.oceanexpert.org/institution/14197 -https://www.oceanexpert.org/institution/14198 -https://www.oceanexpert.org/institution/14199 -https://www.oceanexpert.org/institution/14206 -https://www.oceanexpert.org/institution/14211 -https://www.oceanexpert.org/institution/14214 -https://www.oceanexpert.org/institution/14217 -https://www.oceanexpert.org/institution/14227 -https://www.oceanexpert.org/institution/14228 -https://www.oceanexpert.org/institution/14232 -https://www.oceanexpert.org/institution/14233 -https://www.oceanexpert.org/institution/14234 -https://www.oceanexpert.org/institution/14236 -https://www.oceanexpert.org/institution/14245 -https://www.oceanexpert.org/institution/14246 -https://www.oceanexpert.org/institution/14247 -https://www.oceanexpert.org/institution/14249 -https://www.oceanexpert.org/institution/14251 -https://www.oceanexpert.org/institution/14252 -https://www.oceanexpert.org/institution/14254 -https://www.oceanexpert.org/institution/14255 -https://www.oceanexpert.org/institution/14256 -https://www.oceanexpert.org/institution/14257 -https://www.oceanexpert.org/institution/14258 -https://www.oceanexpert.org/institution/14259 -https://www.oceanexpert.org/institution/14260 -https://www.oceanexpert.org/institution/14266 -https://www.oceanexpert.org/institution/14268 -https://www.oceanexpert.org/institution/14272 -https://www.oceanexpert.org/institution/14273 -https://www.oceanexpert.org/institution/14276 -https://www.oceanexpert.org/institution/14280 -https://www.oceanexpert.org/institution/14283 -https://www.oceanexpert.org/institution/14286 -https://www.oceanexpert.org/institution/14289 -https://www.oceanexpert.org/institution/14290 -https://www.oceanexpert.org/institution/14292 -https://www.oceanexpert.org/institution/14295 -https://www.oceanexpert.org/institution/14296 -https://www.oceanexpert.org/institution/14298 -https://www.oceanexpert.org/institution/14299 -https://www.oceanexpert.org/institution/14300 -https://www.oceanexpert.org/institution/14301 -https://www.oceanexpert.org/institution/14304 -https://www.oceanexpert.org/institution/14306 -https://www.oceanexpert.org/institution/14309 -https://www.oceanexpert.org/institution/14328 -https://www.oceanexpert.org/institution/14329 -https://www.oceanexpert.org/institution/14331 -https://www.oceanexpert.org/institution/14334 -https://www.oceanexpert.org/institution/14335 -https://www.oceanexpert.org/institution/14336 -https://www.oceanexpert.org/institution/14338 -https://www.oceanexpert.org/institution/14339 -https://www.oceanexpert.org/institution/14347 -https://www.oceanexpert.org/institution/14348 -https://www.oceanexpert.org/institution/14350 -https://www.oceanexpert.org/institution/14352 -https://www.oceanexpert.org/institution/14354 -https://www.oceanexpert.org/institution/14355 -https://www.oceanexpert.org/institution/14356 -https://www.oceanexpert.org/institution/14357 -https://www.oceanexpert.org/institution/14358 -https://www.oceanexpert.org/institution/14359 -https://www.oceanexpert.org/institution/14361 -https://www.oceanexpert.org/institution/14362 -https://www.oceanexpert.org/institution/14363 -https://www.oceanexpert.org/institution/14364 -https://www.oceanexpert.org/institution/14365 -https://www.oceanexpert.org/institution/14366 -https://www.oceanexpert.org/institution/14367 -https://www.oceanexpert.org/institution/14370 -https://www.oceanexpert.org/institution/14371 -https://www.oceanexpert.org/institution/14372 -https://www.oceanexpert.org/institution/14373 -https://www.oceanexpert.org/institution/14375 -https://www.oceanexpert.org/institution/14377 -https://www.oceanexpert.org/institution/14379 -https://www.oceanexpert.org/institution/14381 -https://www.oceanexpert.org/institution/14382 -https://www.oceanexpert.org/institution/14383 -https://www.oceanexpert.org/institution/14384 -https://www.oceanexpert.org/institution/14385 -https://www.oceanexpert.org/institution/14388 -https://www.oceanexpert.org/institution/14391 -https://www.oceanexpert.org/institution/14392 -https://www.oceanexpert.org/institution/14393 -https://www.oceanexpert.org/institution/14395 -https://www.oceanexpert.org/institution/14399 -https://www.oceanexpert.org/institution/14400 -https://www.oceanexpert.org/institution/14407 -https://www.oceanexpert.org/institution/14408 -https://www.oceanexpert.org/institution/14409 -https://www.oceanexpert.org/institution/14411 -https://www.oceanexpert.org/institution/14414 -https://www.oceanexpert.org/institution/14416 -https://www.oceanexpert.org/institution/14417 -https://www.oceanexpert.org/institution/14418 -https://www.oceanexpert.org/institution/14421 -https://www.oceanexpert.org/institution/14422 -https://www.oceanexpert.org/institution/14425 -https://www.oceanexpert.org/institution/14428 -https://www.oceanexpert.org/institution/14430 -https://www.oceanexpert.org/institution/14431 -https://www.oceanexpert.org/institution/14437 -https://www.oceanexpert.org/institution/14441 -https://www.oceanexpert.org/institution/14444 -https://www.oceanexpert.org/institution/14445 -https://www.oceanexpert.org/institution/14457 -https://www.oceanexpert.org/institution/14459 -https://www.oceanexpert.org/institution/14460 -https://www.oceanexpert.org/institution/14461 -https://www.oceanexpert.org/institution/14473 -https://www.oceanexpert.org/institution/14487 -https://www.oceanexpert.org/institution/14489 -https://www.oceanexpert.org/institution/14492 -https://www.oceanexpert.org/institution/14493 -https://www.oceanexpert.org/institution/14494 -https://www.oceanexpert.org/institution/14495 -https://www.oceanexpert.org/institution/14496 -https://www.oceanexpert.org/institution/14497 -https://www.oceanexpert.org/institution/14500 -https://www.oceanexpert.org/institution/14501 -https://www.oceanexpert.org/institution/14502 -https://www.oceanexpert.org/institution/14511 -https://www.oceanexpert.org/institution/14515 -https://www.oceanexpert.org/institution/14516 -https://www.oceanexpert.org/institution/14545 -https://www.oceanexpert.org/institution/14553 -https://www.oceanexpert.org/institution/14558 -https://www.oceanexpert.org/institution/14569 -https://www.oceanexpert.org/institution/14574 -https://www.oceanexpert.org/institution/14580 -https://www.oceanexpert.org/institution/14581 -https://www.oceanexpert.org/institution/14582 -https://www.oceanexpert.org/institution/14589 -https://www.oceanexpert.org/institution/14593 -https://www.oceanexpert.org/institution/14598 -https://www.oceanexpert.org/institution/14602 -https://www.oceanexpert.org/institution/14607 -https://www.oceanexpert.org/institution/14610 -https://www.oceanexpert.org/institution/14611 -https://www.oceanexpert.org/institution/14612 -https://www.oceanexpert.org/institution/14614 -https://www.oceanexpert.org/institution/14620 -https://www.oceanexpert.org/institution/14622 -https://www.oceanexpert.org/institution/14623 -https://www.oceanexpert.org/institution/14627 -https://www.oceanexpert.org/institution/14629 -https://www.oceanexpert.org/institution/14630 -https://www.oceanexpert.org/institution/14637 -https://www.oceanexpert.org/institution/14641 -https://www.oceanexpert.org/institution/14645 -https://www.oceanexpert.org/institution/14650 -https://www.oceanexpert.org/institution/14654 -https://www.oceanexpert.org/institution/14658 -https://www.oceanexpert.org/institution/14661 -https://www.oceanexpert.org/institution/14666 -https://www.oceanexpert.org/institution/14671 -https://www.oceanexpert.org/institution/14678 -https://www.oceanexpert.org/institution/14681 -https://www.oceanexpert.org/institution/14684 -https://www.oceanexpert.org/institution/14687 -https://www.oceanexpert.org/institution/14693 -https://www.oceanexpert.org/institution/14695 -https://www.oceanexpert.org/institution/14696 -https://www.oceanexpert.org/institution/14699 -https://www.oceanexpert.org/institution/14700 -https://www.oceanexpert.org/institution/14703 -https://www.oceanexpert.org/institution/14707 -https://www.oceanexpert.org/institution/14712 -https://www.oceanexpert.org/institution/14717 -https://www.oceanexpert.org/institution/14719 -https://www.oceanexpert.org/institution/14722 -https://www.oceanexpert.org/institution/14723 -https://www.oceanexpert.org/institution/14724 -https://www.oceanexpert.org/institution/14728 -https://www.oceanexpert.org/institution/14730 -https://www.oceanexpert.org/institution/14731 -https://www.oceanexpert.org/institution/14733 -https://www.oceanexpert.org/institution/14735 -https://www.oceanexpert.org/institution/14737 -https://www.oceanexpert.org/institution/14738 -https://www.oceanexpert.org/institution/14741 -https://www.oceanexpert.org/institution/14742 -https://www.oceanexpert.org/institution/14744 -https://www.oceanexpert.org/institution/14747 -https://www.oceanexpert.org/institution/14750 -https://www.oceanexpert.org/institution/14751 -https://www.oceanexpert.org/institution/14752 -https://www.oceanexpert.org/institution/14757 -https://www.oceanexpert.org/institution/14761 -https://www.oceanexpert.org/institution/14776 -https://www.oceanexpert.org/institution/14777 -https://www.oceanexpert.org/institution/14778 -https://www.oceanexpert.org/institution/14782 -https://www.oceanexpert.org/institution/14795 -https://www.oceanexpert.org/institution/14798 -https://www.oceanexpert.org/institution/14799 -https://www.oceanexpert.org/institution/14803 -https://www.oceanexpert.org/institution/14808 -https://www.oceanexpert.org/institution/14810 -https://www.oceanexpert.org/institution/14814 -https://www.oceanexpert.org/institution/14815 -https://www.oceanexpert.org/institution/14816 -https://www.oceanexpert.org/institution/14820 -https://www.oceanexpert.org/institution/14821 -https://www.oceanexpert.org/institution/14822 -https://www.oceanexpert.org/institution/14825 -https://www.oceanexpert.org/institution/14829 -https://www.oceanexpert.org/institution/14833 -https://www.oceanexpert.org/institution/14835 -https://www.oceanexpert.org/institution/14838 -https://www.oceanexpert.org/institution/14840 -https://www.oceanexpert.org/institution/14869 -https://www.oceanexpert.org/institution/14873 -https://www.oceanexpert.org/institution/14875 -https://www.oceanexpert.org/institution/14880 -https://www.oceanexpert.org/institution/14881 -https://www.oceanexpert.org/institution/14883 -https://www.oceanexpert.org/institution/14885 -https://www.oceanexpert.org/institution/14888 -https://www.oceanexpert.org/institution/14889 -https://www.oceanexpert.org/institution/14890 -https://www.oceanexpert.org/institution/14891 -https://www.oceanexpert.org/institution/14903 -https://www.oceanexpert.org/institution/14904 -https://www.oceanexpert.org/institution/14905 -https://www.oceanexpert.org/institution/14906 -https://www.oceanexpert.org/institution/14907 -https://www.oceanexpert.org/institution/14908 -https://www.oceanexpert.org/institution/14909 -https://www.oceanexpert.org/institution/14916 -https://www.oceanexpert.org/institution/14917 -https://www.oceanexpert.org/institution/14920 -https://www.oceanexpert.org/institution/14922 -https://www.oceanexpert.org/institution/14924 -https://www.oceanexpert.org/institution/14929 -https://www.oceanexpert.org/institution/14931 -https://www.oceanexpert.org/institution/14932 -https://www.oceanexpert.org/institution/14933 -https://www.oceanexpert.org/institution/14940 -https://www.oceanexpert.org/institution/14943 -https://www.oceanexpert.org/institution/14944 -https://www.oceanexpert.org/institution/14950 -https://www.oceanexpert.org/institution/14951 -https://www.oceanexpert.org/institution/14952 -https://www.oceanexpert.org/institution/14955 -https://www.oceanexpert.org/institution/14958 -https://www.oceanexpert.org/institution/14959 -https://www.oceanexpert.org/institution/14960 -https://www.oceanexpert.org/institution/14961 -https://www.oceanexpert.org/institution/14962 -https://www.oceanexpert.org/institution/14968 -https://www.oceanexpert.org/institution/14984 -https://www.oceanexpert.org/institution/14990 -https://www.oceanexpert.org/institution/15000 -https://www.oceanexpert.org/institution/15007 -https://www.oceanexpert.org/institution/15017 -https://www.oceanexpert.org/institution/15024 -https://www.oceanexpert.org/institution/15025 -https://www.oceanexpert.org/institution/15026 -https://www.oceanexpert.org/institution/15030 -https://www.oceanexpert.org/institution/15034 -https://www.oceanexpert.org/institution/15039 -https://www.oceanexpert.org/institution/15041 -https://www.oceanexpert.org/institution/15042 -https://www.oceanexpert.org/institution/15043 -https://www.oceanexpert.org/institution/15044 -https://www.oceanexpert.org/institution/15045 -https://www.oceanexpert.org/institution/15046 -https://www.oceanexpert.org/institution/15047 -https://www.oceanexpert.org/institution/15049 -https://www.oceanexpert.org/institution/15050 -https://www.oceanexpert.org/institution/15056 -https://www.oceanexpert.org/institution/15061 -https://www.oceanexpert.org/institution/15064 -https://www.oceanexpert.org/institution/15066 -https://www.oceanexpert.org/institution/15067 -https://www.oceanexpert.org/institution/15069 -https://www.oceanexpert.org/institution/15075 -https://www.oceanexpert.org/institution/15076 -https://www.oceanexpert.org/institution/15079 -https://www.oceanexpert.org/institution/15080 -https://www.oceanexpert.org/institution/15082 -https://www.oceanexpert.org/institution/15084 -https://www.oceanexpert.org/institution/15092 -https://www.oceanexpert.org/institution/15099 -https://www.oceanexpert.org/institution/15108 -https://www.oceanexpert.org/institution/15109 -https://www.oceanexpert.org/institution/15110 -https://www.oceanexpert.org/institution/15113 -https://www.oceanexpert.org/institution/15121 -https://www.oceanexpert.org/institution/15128 -https://www.oceanexpert.org/institution/15129 -https://www.oceanexpert.org/institution/15131 -https://www.oceanexpert.org/institution/15145 -https://www.oceanexpert.org/institution/15152 -https://www.oceanexpert.org/institution/15153 -https://www.oceanexpert.org/institution/15155 -https://www.oceanexpert.org/institution/15158 -https://www.oceanexpert.org/institution/15160 -https://www.oceanexpert.org/institution/15162 -https://www.oceanexpert.org/institution/15169 -https://www.oceanexpert.org/institution/15172 -https://www.oceanexpert.org/institution/15179 -https://www.oceanexpert.org/institution/15184 -https://www.oceanexpert.org/institution/15185 -https://www.oceanexpert.org/institution/15192 -https://www.oceanexpert.org/institution/15197 -https://www.oceanexpert.org/institution/15198 -https://www.oceanexpert.org/institution/15209 -https://www.oceanexpert.org/institution/15210 -https://www.oceanexpert.org/institution/15212 -https://www.oceanexpert.org/institution/15215 -https://www.oceanexpert.org/institution/15217 -https://www.oceanexpert.org/institution/15218 -https://www.oceanexpert.org/institution/15219 -https://www.oceanexpert.org/institution/15222 -https://www.oceanexpert.org/institution/15231 -https://www.oceanexpert.org/institution/15232 -https://www.oceanexpert.org/institution/15236 -https://www.oceanexpert.org/institution/15238 -https://www.oceanexpert.org/institution/15240 -https://www.oceanexpert.org/institution/15243 -https://www.oceanexpert.org/institution/15246 -https://www.oceanexpert.org/institution/15248 -https://www.oceanexpert.org/institution/15250 -https://www.oceanexpert.org/institution/15253 -https://www.oceanexpert.org/institution/15259 -https://www.oceanexpert.org/institution/15262 -https://www.oceanexpert.org/institution/15264 -https://www.oceanexpert.org/institution/15268 -https://www.oceanexpert.org/institution/15270 -https://www.oceanexpert.org/institution/15273 -https://www.oceanexpert.org/institution/15275 -https://www.oceanexpert.org/institution/15276 -https://www.oceanexpert.org/institution/15280 -https://www.oceanexpert.org/institution/15282 -https://www.oceanexpert.org/institution/15292 -https://www.oceanexpert.org/institution/15293 -https://www.oceanexpert.org/institution/15294 -https://www.oceanexpert.org/institution/15295 -https://www.oceanexpert.org/institution/15296 -https://www.oceanexpert.org/institution/15300 -https://www.oceanexpert.org/institution/15306 -https://www.oceanexpert.org/institution/15311 -https://www.oceanexpert.org/institution/15313 -https://www.oceanexpert.org/institution/15314 -https://www.oceanexpert.org/institution/15321 -https://www.oceanexpert.org/institution/15330 -https://www.oceanexpert.org/institution/15332 -https://www.oceanexpert.org/institution/15334 -https://www.oceanexpert.org/institution/15338 -https://www.oceanexpert.org/institution/15341 -https://www.oceanexpert.org/institution/15360 -https://www.oceanexpert.org/institution/15362 -https://www.oceanexpert.org/institution/15363 -https://www.oceanexpert.org/institution/15380 -https://www.oceanexpert.org/institution/15381 -https://www.oceanexpert.org/institution/15384 -https://www.oceanexpert.org/institution/15385 -https://www.oceanexpert.org/institution/15387 -https://www.oceanexpert.org/institution/15388 -https://www.oceanexpert.org/institution/15389 -https://www.oceanexpert.org/institution/15392 -https://www.oceanexpert.org/institution/15397 -https://www.oceanexpert.org/institution/15398 -https://www.oceanexpert.org/institution/15406 -https://www.oceanexpert.org/institution/15409 -https://www.oceanexpert.org/institution/15410 -https://www.oceanexpert.org/institution/15416 -https://www.oceanexpert.org/institution/15420 -https://www.oceanexpert.org/institution/15430 -https://www.oceanexpert.org/institution/15432 -https://www.oceanexpert.org/institution/15436 -https://www.oceanexpert.org/institution/15441 -https://www.oceanexpert.org/institution/15442 -https://www.oceanexpert.org/institution/15443 -https://www.oceanexpert.org/institution/15452 -https://www.oceanexpert.org/institution/15453 -https://www.oceanexpert.org/institution/15460 -https://www.oceanexpert.org/institution/15465 -https://www.oceanexpert.org/institution/15466 -https://www.oceanexpert.org/institution/15473 -https://www.oceanexpert.org/institution/15475 -https://www.oceanexpert.org/institution/15476 -https://www.oceanexpert.org/institution/15480 -https://www.oceanexpert.org/institution/15490 -https://www.oceanexpert.org/institution/15491 -https://www.oceanexpert.org/institution/15492 -https://www.oceanexpert.org/institution/15497 -https://www.oceanexpert.org/institution/15498 -https://www.oceanexpert.org/institution/15503 -https://www.oceanexpert.org/institution/15507 -https://www.oceanexpert.org/institution/15509 -https://www.oceanexpert.org/institution/15514 -https://www.oceanexpert.org/institution/15518 -https://www.oceanexpert.org/institution/15521 -https://www.oceanexpert.org/institution/15525 -https://www.oceanexpert.org/institution/15526 -https://www.oceanexpert.org/institution/15531 -https://www.oceanexpert.org/institution/15533 -https://www.oceanexpert.org/institution/15539 -https://www.oceanexpert.org/institution/15543 -https://www.oceanexpert.org/institution/15544 -https://www.oceanexpert.org/institution/15547 -https://www.oceanexpert.org/institution/15548 -https://www.oceanexpert.org/institution/15556 -https://www.oceanexpert.org/institution/15557 -https://www.oceanexpert.org/institution/15567 -https://www.oceanexpert.org/institution/15568 -https://www.oceanexpert.org/institution/15569 -https://www.oceanexpert.org/institution/15570 -https://www.oceanexpert.org/institution/15577 -https://www.oceanexpert.org/institution/15578 -https://www.oceanexpert.org/institution/15584 -https://www.oceanexpert.org/institution/15588 -https://www.oceanexpert.org/institution/15594 -https://www.oceanexpert.org/institution/15595 -https://www.oceanexpert.org/institution/15601 -https://www.oceanexpert.org/institution/15602 -https://www.oceanexpert.org/institution/15603 -https://www.oceanexpert.org/institution/15604 -https://www.oceanexpert.org/institution/15605 -https://www.oceanexpert.org/institution/15610 -https://www.oceanexpert.org/institution/15611 -https://www.oceanexpert.org/institution/15614 -https://www.oceanexpert.org/institution/15615 -https://www.oceanexpert.org/institution/15621 -https://www.oceanexpert.org/institution/15631 -https://www.oceanexpert.org/institution/15642 -https://www.oceanexpert.org/institution/15643 -https://www.oceanexpert.org/institution/15648 -https://www.oceanexpert.org/institution/15650 -https://www.oceanexpert.org/institution/15652 -https://www.oceanexpert.org/institution/15653 -https://www.oceanexpert.org/institution/15656 -https://www.oceanexpert.org/institution/15657 -https://www.oceanexpert.org/institution/15660 -https://www.oceanexpert.org/institution/15661 -https://www.oceanexpert.org/institution/15662 -https://www.oceanexpert.org/institution/15665 -https://www.oceanexpert.org/institution/15666 -https://www.oceanexpert.org/institution/15667 -https://www.oceanexpert.org/institution/15668 -https://www.oceanexpert.org/institution/15670 -https://www.oceanexpert.org/institution/15671 -https://www.oceanexpert.org/institution/15672 -https://www.oceanexpert.org/institution/15674 -https://www.oceanexpert.org/institution/15675 -https://www.oceanexpert.org/institution/15676 -https://www.oceanexpert.org/institution/15678 -https://www.oceanexpert.org/institution/15680 -https://www.oceanexpert.org/institution/15681 -https://www.oceanexpert.org/institution/15685 -https://www.oceanexpert.org/institution/15687 -https://www.oceanexpert.org/institution/15688 -https://www.oceanexpert.org/institution/15691 -https://www.oceanexpert.org/institution/15701 -https://www.oceanexpert.org/institution/15702 -https://www.oceanexpert.org/institution/15707 -https://www.oceanexpert.org/institution/15710 -https://www.oceanexpert.org/institution/15714 -https://www.oceanexpert.org/institution/15716 -https://www.oceanexpert.org/institution/15717 -https://www.oceanexpert.org/institution/15720 -https://www.oceanexpert.org/institution/15722 -https://www.oceanexpert.org/institution/15724 -https://www.oceanexpert.org/institution/15726 -https://www.oceanexpert.org/institution/15727 -https://www.oceanexpert.org/institution/15731 -https://www.oceanexpert.org/institution/15732 -https://www.oceanexpert.org/institution/15734 -https://www.oceanexpert.org/institution/15735 -https://www.oceanexpert.org/institution/15740 -https://www.oceanexpert.org/institution/15745 -https://www.oceanexpert.org/institution/15746 -https://www.oceanexpert.org/institution/15748 -https://www.oceanexpert.org/institution/15749 -https://www.oceanexpert.org/institution/15750 -https://www.oceanexpert.org/institution/15751 -https://www.oceanexpert.org/institution/15758 -https://www.oceanexpert.org/institution/15759 -https://www.oceanexpert.org/institution/15760 -https://www.oceanexpert.org/institution/15761 -https://www.oceanexpert.org/institution/15762 -https://www.oceanexpert.org/institution/15763 -https://www.oceanexpert.org/institution/15765 -https://www.oceanexpert.org/institution/15766 -https://www.oceanexpert.org/institution/15770 -https://www.oceanexpert.org/institution/15771 -https://www.oceanexpert.org/institution/15778 -https://www.oceanexpert.org/institution/15786 -https://www.oceanexpert.org/institution/15791 -https://www.oceanexpert.org/institution/15792 -https://www.oceanexpert.org/institution/15794 -https://www.oceanexpert.org/institution/15795 -https://www.oceanexpert.org/institution/15796 -https://www.oceanexpert.org/institution/15799 -https://www.oceanexpert.org/institution/15802 -https://www.oceanexpert.org/institution/15804 -https://www.oceanexpert.org/institution/15805 -https://www.oceanexpert.org/institution/15806 -https://www.oceanexpert.org/institution/15809 -https://www.oceanexpert.org/institution/15810 -https://www.oceanexpert.org/institution/15811 -https://www.oceanexpert.org/institution/15812 -https://www.oceanexpert.org/institution/15813 -https://www.oceanexpert.org/institution/15814 -https://www.oceanexpert.org/institution/15815 -https://www.oceanexpert.org/institution/15818 -https://www.oceanexpert.org/institution/15819 -https://www.oceanexpert.org/institution/15823 -https://www.oceanexpert.org/institution/15824 -https://www.oceanexpert.org/institution/15825 -https://www.oceanexpert.org/institution/15826 -https://www.oceanexpert.org/institution/15827 -https://www.oceanexpert.org/institution/15829 -https://www.oceanexpert.org/institution/15836 -https://www.oceanexpert.org/institution/15842 -https://www.oceanexpert.org/institution/15851 -https://www.oceanexpert.org/institution/15853 -https://www.oceanexpert.org/institution/15859 -https://www.oceanexpert.org/institution/15860 -https://www.oceanexpert.org/institution/15861 -https://www.oceanexpert.org/institution/15865 -https://www.oceanexpert.org/institution/15867 -https://www.oceanexpert.org/institution/15872 -https://www.oceanexpert.org/institution/15873 -https://www.oceanexpert.org/institution/15876 -https://www.oceanexpert.org/institution/15879 -https://www.oceanexpert.org/institution/15880 -https://www.oceanexpert.org/institution/15882 -https://www.oceanexpert.org/institution/15884 -https://www.oceanexpert.org/institution/15885 -https://www.oceanexpert.org/institution/15886 -https://www.oceanexpert.org/institution/15887 -https://www.oceanexpert.org/institution/15888 -https://www.oceanexpert.org/institution/15889 -https://www.oceanexpert.org/institution/15890 -https://www.oceanexpert.org/institution/15891 -https://www.oceanexpert.org/institution/15892 -https://www.oceanexpert.org/institution/15893 -https://www.oceanexpert.org/institution/15894 -https://www.oceanexpert.org/institution/15895 -https://www.oceanexpert.org/institution/15896 -https://www.oceanexpert.org/institution/15903 -https://www.oceanexpert.org/institution/15908 -https://www.oceanexpert.org/institution/15911 -https://www.oceanexpert.org/institution/15912 -https://www.oceanexpert.org/institution/15914 -https://www.oceanexpert.org/institution/15915 -https://www.oceanexpert.org/institution/15921 -https://www.oceanexpert.org/institution/15923 -https://www.oceanexpert.org/institution/15926 -https://www.oceanexpert.org/institution/15927 -https://www.oceanexpert.org/institution/15929 -https://www.oceanexpert.org/institution/15930 -https://www.oceanexpert.org/institution/15932 -https://www.oceanexpert.org/institution/15935 -https://www.oceanexpert.org/institution/15936 -https://www.oceanexpert.org/institution/15942 -https://www.oceanexpert.org/institution/15951 -https://www.oceanexpert.org/institution/15952 -https://www.oceanexpert.org/institution/15953 -https://www.oceanexpert.org/institution/15954 -https://www.oceanexpert.org/institution/15955 -https://www.oceanexpert.org/institution/15956 -https://www.oceanexpert.org/institution/15957 -https://www.oceanexpert.org/institution/15960 -https://www.oceanexpert.org/institution/15961 -https://www.oceanexpert.org/institution/15965 -https://www.oceanexpert.org/institution/15975 -https://www.oceanexpert.org/institution/15976 -https://www.oceanexpert.org/institution/15983 -https://www.oceanexpert.org/institution/15986 -https://www.oceanexpert.org/institution/15992 -https://www.oceanexpert.org/institution/15993 -https://www.oceanexpert.org/institution/15994 -https://www.oceanexpert.org/institution/15999 -https://www.oceanexpert.org/institution/16002 -https://www.oceanexpert.org/institution/16003 -https://www.oceanexpert.org/institution/16008 -https://www.oceanexpert.org/institution/16012 -https://www.oceanexpert.org/institution/16016 -https://www.oceanexpert.org/institution/16017 -https://www.oceanexpert.org/institution/16018 -https://www.oceanexpert.org/institution/16020 -https://www.oceanexpert.org/institution/16022 -https://www.oceanexpert.org/institution/16023 -https://www.oceanexpert.org/institution/16026 -https://www.oceanexpert.org/institution/16031 -https://www.oceanexpert.org/institution/16032 -https://www.oceanexpert.org/institution/16043 -https://www.oceanexpert.org/institution/16046 -https://www.oceanexpert.org/institution/16055 -https://www.oceanexpert.org/institution/16058 -https://www.oceanexpert.org/institution/16060 -https://www.oceanexpert.org/institution/16063 -https://www.oceanexpert.org/institution/16066 -https://www.oceanexpert.org/institution/16067 -https://www.oceanexpert.org/institution/16068 -https://www.oceanexpert.org/institution/16077 -https://www.oceanexpert.org/institution/16083 -https://www.oceanexpert.org/institution/16096 -https://www.oceanexpert.org/institution/16100 -https://www.oceanexpert.org/institution/16101 -https://www.oceanexpert.org/institution/16105 -https://www.oceanexpert.org/institution/16119 -https://www.oceanexpert.org/institution/16121 -https://www.oceanexpert.org/institution/16122 -https://www.oceanexpert.org/institution/16123 -https://www.oceanexpert.org/institution/16124 -https://www.oceanexpert.org/institution/16125 -https://www.oceanexpert.org/institution/16128 -https://www.oceanexpert.org/institution/16130 -https://www.oceanexpert.org/institution/16132 -https://www.oceanexpert.org/institution/16139 -https://www.oceanexpert.org/institution/16140 -https://www.oceanexpert.org/institution/16145 -https://www.oceanexpert.org/institution/16146 -https://www.oceanexpert.org/institution/16150 -https://www.oceanexpert.org/institution/16153 -https://www.oceanexpert.org/institution/16154 -https://www.oceanexpert.org/institution/16156 -https://www.oceanexpert.org/institution/16158 -https://www.oceanexpert.org/institution/16161 -https://www.oceanexpert.org/institution/16162 -https://www.oceanexpert.org/institution/16166 -https://www.oceanexpert.org/institution/16168 -https://www.oceanexpert.org/institution/16169 -https://www.oceanexpert.org/institution/16174 -https://www.oceanexpert.org/institution/16179 -https://www.oceanexpert.org/institution/16181 -https://www.oceanexpert.org/institution/16183 -https://www.oceanexpert.org/institution/16187 -https://www.oceanexpert.org/institution/16191 -https://www.oceanexpert.org/institution/16193 -https://www.oceanexpert.org/institution/16194 -https://www.oceanexpert.org/institution/16195 -https://www.oceanexpert.org/institution/16197 -https://www.oceanexpert.org/institution/16203 -https://www.oceanexpert.org/institution/16205 -https://www.oceanexpert.org/institution/16208 -https://www.oceanexpert.org/institution/16210 -https://www.oceanexpert.org/institution/16211 -https://www.oceanexpert.org/institution/16212 -https://www.oceanexpert.org/institution/16217 -https://www.oceanexpert.org/institution/16218 -https://www.oceanexpert.org/institution/16220 -https://www.oceanexpert.org/institution/16221 -https://www.oceanexpert.org/institution/16222 -https://www.oceanexpert.org/institution/16228 -https://www.oceanexpert.org/institution/16231 -https://www.oceanexpert.org/institution/16234 -https://www.oceanexpert.org/institution/16235 -https://www.oceanexpert.org/institution/16238 -https://www.oceanexpert.org/institution/16240 -https://www.oceanexpert.org/institution/16241 -https://www.oceanexpert.org/institution/16246 -https://www.oceanexpert.org/institution/16247 -https://www.oceanexpert.org/institution/16248 -https://www.oceanexpert.org/institution/16251 -https://www.oceanexpert.org/institution/16254 -https://www.oceanexpert.org/institution/16256 -https://www.oceanexpert.org/institution/16258 -https://www.oceanexpert.org/institution/16260 -https://www.oceanexpert.org/institution/16265 -https://www.oceanexpert.org/institution/16267 -https://www.oceanexpert.org/institution/16268 -https://www.oceanexpert.org/institution/16269 -https://www.oceanexpert.org/institution/16270 -https://www.oceanexpert.org/institution/16276 -https://www.oceanexpert.org/institution/16280 -https://www.oceanexpert.org/institution/16281 -https://www.oceanexpert.org/institution/16282 -https://www.oceanexpert.org/institution/16284 -https://www.oceanexpert.org/institution/16292 -https://www.oceanexpert.org/institution/16293 -https://www.oceanexpert.org/institution/16295 -https://www.oceanexpert.org/institution/16296 -https://www.oceanexpert.org/institution/16297 -https://www.oceanexpert.org/institution/16308 -https://www.oceanexpert.org/institution/16309 -https://www.oceanexpert.org/institution/16310 -https://www.oceanexpert.org/institution/16311 -https://www.oceanexpert.org/institution/16313 -https://www.oceanexpert.org/institution/16315 -https://www.oceanexpert.org/institution/16317 -https://www.oceanexpert.org/institution/16319 -https://www.oceanexpert.org/institution/16321 -https://www.oceanexpert.org/institution/16322 -https://www.oceanexpert.org/institution/16324 -https://www.oceanexpert.org/institution/16326 -https://www.oceanexpert.org/institution/16327 -https://www.oceanexpert.org/institution/16330 -https://www.oceanexpert.org/institution/16337 -https://www.oceanexpert.org/institution/16338 -https://www.oceanexpert.org/institution/16345 -https://www.oceanexpert.org/institution/16347 -https://www.oceanexpert.org/institution/16351 -https://www.oceanexpert.org/institution/16353 -https://www.oceanexpert.org/institution/16355 -https://www.oceanexpert.org/institution/16357 -https://www.oceanexpert.org/institution/16361 -https://www.oceanexpert.org/institution/16363 -https://www.oceanexpert.org/institution/16364 -https://www.oceanexpert.org/institution/16365 -https://www.oceanexpert.org/institution/16366 -https://www.oceanexpert.org/institution/16367 -https://www.oceanexpert.org/institution/16369 -https://www.oceanexpert.org/institution/16372 -https://www.oceanexpert.org/institution/16373 -https://www.oceanexpert.org/institution/16374 -https://www.oceanexpert.org/institution/16375 -https://www.oceanexpert.org/institution/16376 -https://www.oceanexpert.org/institution/16377 -https://www.oceanexpert.org/institution/16379 -https://www.oceanexpert.org/institution/16384 -https://www.oceanexpert.org/institution/16385 -https://www.oceanexpert.org/institution/16386 -https://www.oceanexpert.org/institution/16392 -https://www.oceanexpert.org/institution/16394 -https://www.oceanexpert.org/institution/16395 -https://www.oceanexpert.org/institution/16397 -https://www.oceanexpert.org/institution/16398 -https://www.oceanexpert.org/institution/16403 -https://www.oceanexpert.org/institution/16408 -https://www.oceanexpert.org/institution/16411 -https://www.oceanexpert.org/institution/16414 -https://www.oceanexpert.org/institution/16416 -https://www.oceanexpert.org/institution/16417 -https://www.oceanexpert.org/institution/16419 -https://www.oceanexpert.org/institution/16429 -https://www.oceanexpert.org/institution/16431 -https://www.oceanexpert.org/institution/16434 -https://www.oceanexpert.org/institution/16436 -https://www.oceanexpert.org/institution/16439 -https://www.oceanexpert.org/institution/16440 -https://www.oceanexpert.org/institution/16450 -https://www.oceanexpert.org/institution/16452 -https://www.oceanexpert.org/institution/16456 -https://www.oceanexpert.org/institution/16458 -https://www.oceanexpert.org/institution/16459 -https://www.oceanexpert.org/institution/16460 -https://www.oceanexpert.org/institution/16461 -https://www.oceanexpert.org/institution/16464 -https://www.oceanexpert.org/institution/16472 -https://www.oceanexpert.org/institution/16481 -https://www.oceanexpert.org/institution/16482 -https://www.oceanexpert.org/institution/16483 -https://www.oceanexpert.org/institution/16484 -https://www.oceanexpert.org/institution/16487 -https://www.oceanexpert.org/institution/16488 -https://www.oceanexpert.org/institution/16489 -https://www.oceanexpert.org/institution/16511 -https://www.oceanexpert.org/institution/16514 -https://www.oceanexpert.org/institution/16519 -https://www.oceanexpert.org/institution/16521 -https://www.oceanexpert.org/institution/16568 -https://www.oceanexpert.org/institution/16600 -https://www.oceanexpert.org/institution/16616 -https://www.oceanexpert.org/institution/16618 -https://www.oceanexpert.org/institution/16638 -https://www.oceanexpert.org/institution/16643 -https://www.oceanexpert.org/institution/16664 -https://www.oceanexpert.org/institution/16667 -https://www.oceanexpert.org/institution/16676 -https://www.oceanexpert.org/institution/16677 -https://www.oceanexpert.org/institution/16683 -https://www.oceanexpert.org/institution/16687 -https://www.oceanexpert.org/institution/16689 -https://www.oceanexpert.org/institution/16690 -https://www.oceanexpert.org/institution/16691 -https://www.oceanexpert.org/institution/16692 -https://www.oceanexpert.org/institution/16694 -https://www.oceanexpert.org/institution/16695 -https://www.oceanexpert.org/institution/16696 -https://www.oceanexpert.org/institution/16698 -https://www.oceanexpert.org/institution/16699 -https://www.oceanexpert.org/institution/16700 -https://www.oceanexpert.org/institution/16704 -https://www.oceanexpert.org/institution/16705 -https://www.oceanexpert.org/institution/16706 -https://www.oceanexpert.org/institution/16709 -https://www.oceanexpert.org/institution/16715 -https://www.oceanexpert.org/institution/16716 -https://www.oceanexpert.org/institution/16718 -https://www.oceanexpert.org/institution/16721 -https://www.oceanexpert.org/institution/16726 -https://www.oceanexpert.org/institution/16731 -https://www.oceanexpert.org/institution/16733 -https://www.oceanexpert.org/institution/16736 -https://www.oceanexpert.org/institution/16737 -https://www.oceanexpert.org/institution/16739 -https://www.oceanexpert.org/institution/16740 -https://www.oceanexpert.org/institution/16741 -https://www.oceanexpert.org/institution/16744 -https://www.oceanexpert.org/institution/16746 -https://www.oceanexpert.org/institution/16751 -https://www.oceanexpert.org/institution/16758 -https://www.oceanexpert.org/institution/16761 -https://www.oceanexpert.org/institution/16763 -https://www.oceanexpert.org/institution/16779 -https://www.oceanexpert.org/institution/16780 -https://www.oceanexpert.org/institution/16784 -https://www.oceanexpert.org/institution/16786 -https://www.oceanexpert.org/institution/16788 -https://www.oceanexpert.org/institution/16791 -https://www.oceanexpert.org/institution/16797 -https://www.oceanexpert.org/institution/16798 -https://www.oceanexpert.org/institution/16799 -https://www.oceanexpert.org/institution/16800 -https://www.oceanexpert.org/institution/16801 -https://www.oceanexpert.org/institution/16802 -https://www.oceanexpert.org/institution/16803 -https://www.oceanexpert.org/institution/16804 -https://www.oceanexpert.org/institution/16805 -https://www.oceanexpert.org/institution/16806 -https://www.oceanexpert.org/institution/16807 -https://www.oceanexpert.org/institution/16808 -https://www.oceanexpert.org/institution/16815 -https://www.oceanexpert.org/institution/16816 -https://www.oceanexpert.org/institution/16818 -https://www.oceanexpert.org/institution/16819 -https://www.oceanexpert.org/institution/16821 -https://www.oceanexpert.org/institution/16822 -https://www.oceanexpert.org/institution/16823 -https://www.oceanexpert.org/institution/16825 -https://www.oceanexpert.org/institution/16828 -https://www.oceanexpert.org/institution/16829 -https://www.oceanexpert.org/institution/16834 -https://www.oceanexpert.org/institution/16835 -https://www.oceanexpert.org/institution/16838 -https://www.oceanexpert.org/institution/16841 -https://www.oceanexpert.org/institution/16842 -https://www.oceanexpert.org/institution/16843 -https://www.oceanexpert.org/institution/16844 -https://www.oceanexpert.org/institution/16848 -https://www.oceanexpert.org/institution/16849 -https://www.oceanexpert.org/institution/16851 -https://www.oceanexpert.org/institution/16857 -https://www.oceanexpert.org/institution/16859 -https://www.oceanexpert.org/institution/16865 -https://www.oceanexpert.org/institution/16867 -https://www.oceanexpert.org/institution/16870 -https://www.oceanexpert.org/institution/16875 -https://www.oceanexpert.org/institution/16877 -https://www.oceanexpert.org/institution/16878 -https://www.oceanexpert.org/institution/16883 -https://www.oceanexpert.org/institution/16884 -https://www.oceanexpert.org/institution/16885 -https://www.oceanexpert.org/institution/16886 -https://www.oceanexpert.org/institution/16889 -https://www.oceanexpert.org/institution/16906 -https://www.oceanexpert.org/institution/16907 -https://www.oceanexpert.org/institution/16917 -https://www.oceanexpert.org/institution/16918 -https://www.oceanexpert.org/institution/16924 -https://www.oceanexpert.org/institution/16927 -https://www.oceanexpert.org/institution/16967 -https://www.oceanexpert.org/institution/16968 -https://www.oceanexpert.org/institution/16970 -https://www.oceanexpert.org/institution/16971 -https://www.oceanexpert.org/institution/16972 -https://www.oceanexpert.org/institution/16973 -https://www.oceanexpert.org/institution/16974 -https://www.oceanexpert.org/institution/16986 -https://www.oceanexpert.org/institution/16987 -https://www.oceanexpert.org/institution/16991 -https://www.oceanexpert.org/institution/16992 -https://www.oceanexpert.org/institution/16996 -https://www.oceanexpert.org/institution/16997 -https://www.oceanexpert.org/institution/16999 -https://www.oceanexpert.org/institution/17002 -https://www.oceanexpert.org/institution/17008 -https://www.oceanexpert.org/institution/17012 -https://www.oceanexpert.org/institution/17014 -https://www.oceanexpert.org/institution/17015 -https://www.oceanexpert.org/institution/17016 -https://www.oceanexpert.org/institution/17018 -https://www.oceanexpert.org/institution/17021 -https://www.oceanexpert.org/institution/17023 -https://www.oceanexpert.org/institution/17027 -https://www.oceanexpert.org/institution/17029 -https://www.oceanexpert.org/institution/17031 -https://www.oceanexpert.org/institution/17032 -https://www.oceanexpert.org/institution/17035 -https://www.oceanexpert.org/institution/17036 -https://www.oceanexpert.org/institution/17037 -https://www.oceanexpert.org/institution/17038 -https://www.oceanexpert.org/institution/17039 -https://www.oceanexpert.org/institution/17040 -https://www.oceanexpert.org/institution/17043 -https://www.oceanexpert.org/institution/17044 -https://www.oceanexpert.org/institution/17046 -https://www.oceanexpert.org/institution/17049 -https://www.oceanexpert.org/institution/17055 -https://www.oceanexpert.org/institution/17057 -https://www.oceanexpert.org/institution/17058 -https://www.oceanexpert.org/institution/17061 -https://www.oceanexpert.org/institution/17067 -https://www.oceanexpert.org/institution/17072 -https://www.oceanexpert.org/institution/17076 -https://www.oceanexpert.org/institution/17077 -https://www.oceanexpert.org/institution/17079 -https://www.oceanexpert.org/institution/17086 -https://www.oceanexpert.org/institution/17090 -https://www.oceanexpert.org/institution/17091 -https://www.oceanexpert.org/institution/17093 -https://www.oceanexpert.org/institution/17095 -https://www.oceanexpert.org/institution/17098 -https://www.oceanexpert.org/institution/17100 -https://www.oceanexpert.org/institution/17106 -https://www.oceanexpert.org/institution/17107 -https://www.oceanexpert.org/institution/17109 -https://www.oceanexpert.org/institution/17111 -https://www.oceanexpert.org/institution/17118 -https://www.oceanexpert.org/institution/17119 -https://www.oceanexpert.org/institution/17120 -https://www.oceanexpert.org/institution/17122 -https://www.oceanexpert.org/institution/17124 -https://www.oceanexpert.org/institution/17126 -https://www.oceanexpert.org/institution/17127 -https://www.oceanexpert.org/institution/17135 -https://www.oceanexpert.org/institution/17136 -https://www.oceanexpert.org/institution/17138 -https://www.oceanexpert.org/institution/17141 -https://www.oceanexpert.org/institution/17142 -https://www.oceanexpert.org/institution/17148 -https://www.oceanexpert.org/institution/17150 -https://www.oceanexpert.org/institution/17151 -https://www.oceanexpert.org/institution/17153 -https://www.oceanexpert.org/institution/17158 -https://www.oceanexpert.org/institution/17180 -https://www.oceanexpert.org/institution/17184 -https://www.oceanexpert.org/institution/17186 -https://www.oceanexpert.org/institution/17192 -https://www.oceanexpert.org/institution/17195 -https://www.oceanexpert.org/institution/17198 -https://www.oceanexpert.org/institution/17199 -https://www.oceanexpert.org/institution/17204 -https://www.oceanexpert.org/institution/17214 -https://www.oceanexpert.org/institution/17220 -https://www.oceanexpert.org/institution/17222 -https://www.oceanexpert.org/institution/17224 -https://www.oceanexpert.org/institution/17225 -https://www.oceanexpert.org/institution/17227 -https://www.oceanexpert.org/institution/17228 -https://www.oceanexpert.org/institution/17231 -https://www.oceanexpert.org/institution/17232 -https://www.oceanexpert.org/institution/17233 -https://www.oceanexpert.org/institution/17235 -https://www.oceanexpert.org/institution/17236 -https://www.oceanexpert.org/institution/17245 -https://www.oceanexpert.org/institution/17247 -https://www.oceanexpert.org/institution/17263 -https://www.oceanexpert.org/institution/17267 -https://www.oceanexpert.org/institution/17270 -https://www.oceanexpert.org/institution/17272 -https://www.oceanexpert.org/institution/17273 -https://www.oceanexpert.org/institution/17280 -https://www.oceanexpert.org/institution/17282 -https://www.oceanexpert.org/institution/17283 -https://www.oceanexpert.org/institution/17290 -https://www.oceanexpert.org/institution/17291 -https://www.oceanexpert.org/institution/17293 -https://www.oceanexpert.org/institution/17298 -https://www.oceanexpert.org/institution/17300 -https://www.oceanexpert.org/institution/17311 -https://www.oceanexpert.org/institution/17313 -https://www.oceanexpert.org/institution/17314 -https://www.oceanexpert.org/institution/17318 -https://www.oceanexpert.org/institution/17321 -https://www.oceanexpert.org/institution/17326 -https://www.oceanexpert.org/institution/17330 -https://www.oceanexpert.org/institution/17339 -https://www.oceanexpert.org/institution/17342 -https://www.oceanexpert.org/institution/17343 -https://www.oceanexpert.org/institution/17346 -https://www.oceanexpert.org/institution/17347 -https://www.oceanexpert.org/institution/17361 -https://www.oceanexpert.org/institution/17362 -https://www.oceanexpert.org/institution/17363 -https://www.oceanexpert.org/institution/17365 -https://www.oceanexpert.org/institution/17370 -https://www.oceanexpert.org/institution/17377 -https://www.oceanexpert.org/institution/17382 -https://www.oceanexpert.org/institution/17386 -https://www.oceanexpert.org/institution/17409 -https://www.oceanexpert.org/institution/17411 -https://www.oceanexpert.org/institution/17412 -https://www.oceanexpert.org/institution/17413 -https://www.oceanexpert.org/institution/17415 -https://www.oceanexpert.org/institution/17416 -https://www.oceanexpert.org/institution/17426 -https://www.oceanexpert.org/institution/17427 -https://www.oceanexpert.org/institution/17429 -https://www.oceanexpert.org/institution/17430 -https://www.oceanexpert.org/institution/17432 -https://www.oceanexpert.org/institution/17433 -https://www.oceanexpert.org/institution/17434 -https://www.oceanexpert.org/institution/17435 -https://www.oceanexpert.org/institution/17436 -https://www.oceanexpert.org/institution/17437 -https://www.oceanexpert.org/institution/17440 -https://www.oceanexpert.org/institution/17441 -https://www.oceanexpert.org/institution/17445 -https://www.oceanexpert.org/institution/17446 -https://www.oceanexpert.org/institution/17449 -https://www.oceanexpert.org/institution/17451 -https://www.oceanexpert.org/institution/17456 -https://www.oceanexpert.org/institution/17457 -https://www.oceanexpert.org/institution/17458 -https://www.oceanexpert.org/institution/17460 -https://www.oceanexpert.org/institution/17467 -https://www.oceanexpert.org/institution/17469 -https://www.oceanexpert.org/institution/17471 -https://www.oceanexpert.org/institution/17472 -https://www.oceanexpert.org/institution/17473 -https://www.oceanexpert.org/institution/17475 -https://www.oceanexpert.org/institution/17480 -https://www.oceanexpert.org/institution/17481 -https://www.oceanexpert.org/institution/17483 -https://www.oceanexpert.org/institution/17485 -https://www.oceanexpert.org/institution/17486 -https://www.oceanexpert.org/institution/17492 -https://www.oceanexpert.org/institution/17493 -https://www.oceanexpert.org/institution/17494 -https://www.oceanexpert.org/institution/17499 -https://www.oceanexpert.org/institution/17501 -https://www.oceanexpert.org/institution/17502 -https://www.oceanexpert.org/institution/17503 -https://www.oceanexpert.org/institution/17506 -https://www.oceanexpert.org/institution/17514 -https://www.oceanexpert.org/institution/17515 -https://www.oceanexpert.org/institution/17522 -https://www.oceanexpert.org/institution/17523 -https://www.oceanexpert.org/institution/17528 -https://www.oceanexpert.org/institution/17534 -https://www.oceanexpert.org/institution/17540 -https://www.oceanexpert.org/institution/17542 -https://www.oceanexpert.org/institution/17545 -https://www.oceanexpert.org/institution/17547 -https://www.oceanexpert.org/institution/17555 -https://www.oceanexpert.org/institution/17556 -https://www.oceanexpert.org/institution/17559 -https://www.oceanexpert.org/institution/17561 -https://www.oceanexpert.org/institution/17567 -https://www.oceanexpert.org/institution/17573 -https://www.oceanexpert.org/institution/17574 -https://www.oceanexpert.org/institution/17576 -https://www.oceanexpert.org/institution/17580 -https://www.oceanexpert.org/institution/17586 -https://www.oceanexpert.org/institution/17593 -https://www.oceanexpert.org/institution/17596 -https://www.oceanexpert.org/institution/17598 -https://www.oceanexpert.org/institution/17599 -https://www.oceanexpert.org/institution/17601 -https://www.oceanexpert.org/institution/17602 -https://www.oceanexpert.org/institution/17603 -https://www.oceanexpert.org/institution/17610 -https://www.oceanexpert.org/institution/17611 -https://www.oceanexpert.org/institution/17613 -https://www.oceanexpert.org/institution/17614 -https://www.oceanexpert.org/institution/17615 -https://www.oceanexpert.org/institution/17617 -https://www.oceanexpert.org/institution/17618 -https://www.oceanexpert.org/institution/17621 -https://www.oceanexpert.org/institution/17622 -https://www.oceanexpert.org/institution/17629 -https://www.oceanexpert.org/institution/17631 -https://www.oceanexpert.org/institution/17633 -https://www.oceanexpert.org/institution/17635 -https://www.oceanexpert.org/institution/17636 -https://www.oceanexpert.org/institution/17640 -https://www.oceanexpert.org/institution/17642 -https://www.oceanexpert.org/institution/17644 -https://www.oceanexpert.org/institution/17645 -https://www.oceanexpert.org/institution/17646 -https://www.oceanexpert.org/institution/17660 -https://www.oceanexpert.org/institution/17661 -https://www.oceanexpert.org/institution/17663 -https://www.oceanexpert.org/institution/17664 -https://www.oceanexpert.org/institution/17667 -https://www.oceanexpert.org/institution/17668 -https://www.oceanexpert.org/institution/17669 -https://www.oceanexpert.org/institution/17670 -https://www.oceanexpert.org/institution/17673 -https://www.oceanexpert.org/institution/17677 -https://www.oceanexpert.org/institution/17680 -https://www.oceanexpert.org/institution/17682 -https://www.oceanexpert.org/institution/17684 -https://www.oceanexpert.org/institution/17686 -https://www.oceanexpert.org/institution/17689 -https://www.oceanexpert.org/institution/17690 -https://www.oceanexpert.org/institution/17695 -https://www.oceanexpert.org/institution/17699 -https://www.oceanexpert.org/institution/17700 -https://www.oceanexpert.org/institution/17701 -https://www.oceanexpert.org/institution/17708 -https://www.oceanexpert.org/institution/17709 -https://www.oceanexpert.org/institution/17710 -https://www.oceanexpert.org/institution/17712 -https://www.oceanexpert.org/institution/17713 -https://www.oceanexpert.org/institution/17718 -https://www.oceanexpert.org/institution/17720 -https://www.oceanexpert.org/institution/17721 -https://www.oceanexpert.org/institution/17722 -https://www.oceanexpert.org/institution/17723 -https://www.oceanexpert.org/institution/17729 -https://www.oceanexpert.org/institution/17731 -https://www.oceanexpert.org/institution/17733 -https://www.oceanexpert.org/institution/17734 -https://www.oceanexpert.org/institution/17735 -https://www.oceanexpert.org/institution/17736 -https://www.oceanexpert.org/institution/17737 -https://www.oceanexpert.org/institution/17738 -https://www.oceanexpert.org/institution/17743 -https://www.oceanexpert.org/institution/17746 -https://www.oceanexpert.org/institution/17750 -https://www.oceanexpert.org/institution/17753 -https://www.oceanexpert.org/institution/17758 -https://www.oceanexpert.org/institution/17759 -https://www.oceanexpert.org/institution/17760 -https://www.oceanexpert.org/institution/17761 -https://www.oceanexpert.org/institution/17762 -https://www.oceanexpert.org/institution/17763 -https://www.oceanexpert.org/institution/17764 -https://www.oceanexpert.org/institution/17765 -https://www.oceanexpert.org/institution/17767 -https://www.oceanexpert.org/institution/17768 -https://www.oceanexpert.org/institution/17769 -https://www.oceanexpert.org/institution/17770 -https://www.oceanexpert.org/institution/17771 -https://www.oceanexpert.org/institution/17772 -https://www.oceanexpert.org/institution/17773 -https://www.oceanexpert.org/institution/17774 -https://www.oceanexpert.org/institution/17775 -https://www.oceanexpert.org/institution/17776 -https://www.oceanexpert.org/institution/17777 -https://www.oceanexpert.org/institution/17778 -https://www.oceanexpert.org/institution/17779 -https://www.oceanexpert.org/institution/17780 -https://www.oceanexpert.org/institution/17782 -https://www.oceanexpert.org/institution/17783 -https://www.oceanexpert.org/institution/17785 -https://www.oceanexpert.org/institution/17786 -https://www.oceanexpert.org/institution/17787 -https://www.oceanexpert.org/institution/17789 -https://www.oceanexpert.org/institution/17793 -https://www.oceanexpert.org/institution/17796 -https://www.oceanexpert.org/institution/17797 -https://www.oceanexpert.org/institution/17798 -https://www.oceanexpert.org/institution/17799 -https://www.oceanexpert.org/institution/17800 -https://www.oceanexpert.org/institution/17802 -https://www.oceanexpert.org/institution/17803 -https://www.oceanexpert.org/institution/17804 -https://www.oceanexpert.org/institution/17805 -https://www.oceanexpert.org/institution/17806 -https://www.oceanexpert.org/institution/17808 -https://www.oceanexpert.org/institution/17811 -https://www.oceanexpert.org/institution/17813 -https://www.oceanexpert.org/institution/17814 -https://www.oceanexpert.org/institution/17816 -https://www.oceanexpert.org/institution/17821 -https://www.oceanexpert.org/institution/17822 -https://www.oceanexpert.org/institution/17823 -https://www.oceanexpert.org/institution/17825 -https://www.oceanexpert.org/institution/17827 -https://www.oceanexpert.org/institution/17828 -https://www.oceanexpert.org/institution/17829 -https://www.oceanexpert.org/institution/17830 -https://www.oceanexpert.org/institution/17831 -https://www.oceanexpert.org/institution/17833 -https://www.oceanexpert.org/institution/17834 -https://www.oceanexpert.org/institution/17836 -https://www.oceanexpert.org/institution/17838 -https://www.oceanexpert.org/institution/17839 -https://www.oceanexpert.org/institution/17842 -https://www.oceanexpert.org/institution/17851 -https://www.oceanexpert.org/institution/17852 -https://www.oceanexpert.org/institution/17853 -https://www.oceanexpert.org/institution/17857 -https://www.oceanexpert.org/institution/17862 -https://www.oceanexpert.org/institution/17863 -https://www.oceanexpert.org/institution/17864 -https://www.oceanexpert.org/institution/17865 -https://www.oceanexpert.org/institution/17871 -https://www.oceanexpert.org/institution/17872 -https://www.oceanexpert.org/institution/17876 -https://www.oceanexpert.org/institution/17881 -https://www.oceanexpert.org/institution/17882 -https://www.oceanexpert.org/institution/17883 -https://www.oceanexpert.org/institution/17884 -https://www.oceanexpert.org/institution/17888 -https://www.oceanexpert.org/institution/17892 -https://www.oceanexpert.org/institution/17893 -https://www.oceanexpert.org/institution/17895 -https://www.oceanexpert.org/institution/17896 -https://www.oceanexpert.org/institution/17897 -https://www.oceanexpert.org/institution/17898 -https://www.oceanexpert.org/institution/17899 -https://www.oceanexpert.org/institution/17901 -https://www.oceanexpert.org/institution/17902 -https://www.oceanexpert.org/institution/17903 -https://www.oceanexpert.org/institution/17904 -https://www.oceanexpert.org/institution/17905 -https://www.oceanexpert.org/institution/17908 -https://www.oceanexpert.org/institution/17910 -https://www.oceanexpert.org/institution/17911 -https://www.oceanexpert.org/institution/17912 -https://www.oceanexpert.org/institution/17913 -https://www.oceanexpert.org/institution/17914 -https://www.oceanexpert.org/institution/17919 -https://www.oceanexpert.org/institution/17921 -https://www.oceanexpert.org/institution/17922 -https://www.oceanexpert.org/institution/17923 -https://www.oceanexpert.org/institution/17924 -https://www.oceanexpert.org/institution/17926 -https://www.oceanexpert.org/institution/17927 -https://www.oceanexpert.org/institution/17928 -https://www.oceanexpert.org/institution/17929 -https://www.oceanexpert.org/institution/17930 -https://www.oceanexpert.org/institution/17931 -https://www.oceanexpert.org/institution/17932 -https://www.oceanexpert.org/institution/17933 -https://www.oceanexpert.org/institution/17934 -https://www.oceanexpert.org/institution/17936 -https://www.oceanexpert.org/institution/17937 -https://www.oceanexpert.org/institution/17938 -https://www.oceanexpert.org/institution/17939 -https://www.oceanexpert.org/institution/17940 -https://www.oceanexpert.org/institution/17942 -https://www.oceanexpert.org/institution/17943 -https://www.oceanexpert.org/institution/17944 -https://www.oceanexpert.org/institution/17945 -https://www.oceanexpert.org/institution/17946 -https://www.oceanexpert.org/institution/17947 -https://www.oceanexpert.org/institution/17948 -https://www.oceanexpert.org/institution/17950 -https://www.oceanexpert.org/institution/17953 -https://www.oceanexpert.org/institution/17954 -https://www.oceanexpert.org/institution/17956 -https://www.oceanexpert.org/institution/17957 -https://www.oceanexpert.org/institution/17958 -https://www.oceanexpert.org/institution/17959 -https://www.oceanexpert.org/institution/17960 -https://www.oceanexpert.org/institution/17962 -https://www.oceanexpert.org/institution/17966 -https://www.oceanexpert.org/institution/17967 -https://www.oceanexpert.org/institution/17968 -https://www.oceanexpert.org/institution/17969 -https://www.oceanexpert.org/institution/17970 -https://www.oceanexpert.org/institution/17972 -https://www.oceanexpert.org/institution/17973 -https://www.oceanexpert.org/institution/17974 -https://www.oceanexpert.org/institution/17975 -https://www.oceanexpert.org/institution/17977 -https://www.oceanexpert.org/institution/17978 -https://www.oceanexpert.org/institution/17979 -https://www.oceanexpert.org/institution/17980 -https://www.oceanexpert.org/institution/17981 -https://www.oceanexpert.org/institution/17984 -https://www.oceanexpert.org/institution/17985 -https://www.oceanexpert.org/institution/17986 -https://www.oceanexpert.org/institution/17999 -https://www.oceanexpert.org/institution/18000 -https://www.oceanexpert.org/institution/18002 -https://www.oceanexpert.org/institution/18003 -https://www.oceanexpert.org/institution/18004 -https://www.oceanexpert.org/institution/18005 -https://www.oceanexpert.org/institution/18006 -https://www.oceanexpert.org/institution/18007 -https://www.oceanexpert.org/institution/18008 -https://www.oceanexpert.org/institution/18009 -https://www.oceanexpert.org/institution/18010 -https://www.oceanexpert.org/institution/18011 -https://www.oceanexpert.org/institution/18012 -https://www.oceanexpert.org/institution/18014 -https://www.oceanexpert.org/institution/18015 -https://www.oceanexpert.org/institution/18016 -https://www.oceanexpert.org/institution/18018 -https://www.oceanexpert.org/institution/18019 -https://www.oceanexpert.org/institution/18020 -https://www.oceanexpert.org/institution/18021 -https://www.oceanexpert.org/institution/18022 -https://www.oceanexpert.org/institution/18023 -https://www.oceanexpert.org/institution/18024 -https://www.oceanexpert.org/institution/18025 -https://www.oceanexpert.org/institution/18026 -https://www.oceanexpert.org/institution/18027 -https://www.oceanexpert.org/institution/18028 -https://www.oceanexpert.org/institution/18032 -https://www.oceanexpert.org/institution/18033 -https://www.oceanexpert.org/institution/18034 -https://www.oceanexpert.org/institution/18035 -https://www.oceanexpert.org/institution/18036 -https://www.oceanexpert.org/institution/18037 -https://www.oceanexpert.org/institution/18038 -https://www.oceanexpert.org/institution/18039 -https://www.oceanexpert.org/institution/18040 -https://www.oceanexpert.org/institution/18041 -https://www.oceanexpert.org/institution/18042 -https://www.oceanexpert.org/institution/18044 -https://www.oceanexpert.org/institution/18045 -https://www.oceanexpert.org/institution/18046 -https://www.oceanexpert.org/institution/18047 -https://www.oceanexpert.org/institution/18048 -https://www.oceanexpert.org/institution/18050 -https://www.oceanexpert.org/institution/18052 -https://www.oceanexpert.org/institution/18054 -https://www.oceanexpert.org/institution/18055 -https://www.oceanexpert.org/institution/18056 -https://www.oceanexpert.org/institution/18057 -https://www.oceanexpert.org/institution/18059 -https://www.oceanexpert.org/institution/18060 -https://www.oceanexpert.org/institution/18061 -https://www.oceanexpert.org/institution/18062 -https://www.oceanexpert.org/institution/18063 -https://www.oceanexpert.org/institution/18064 -https://www.oceanexpert.org/institution/18065 -https://www.oceanexpert.org/institution/18066 -https://www.oceanexpert.org/institution/18067 -https://www.oceanexpert.org/institution/18069 -https://www.oceanexpert.org/institution/18070 -https://www.oceanexpert.org/institution/18071 -https://www.oceanexpert.org/institution/18072 -https://www.oceanexpert.org/institution/18074 -https://www.oceanexpert.org/institution/18075 -https://www.oceanexpert.org/institution/18077 -https://www.oceanexpert.org/institution/18078 -https://www.oceanexpert.org/institution/18079 -https://www.oceanexpert.org/institution/18080 -https://www.oceanexpert.org/institution/18081 -https://www.oceanexpert.org/institution/18082 -https://www.oceanexpert.org/institution/18083 -https://www.oceanexpert.org/institution/18084 -https://www.oceanexpert.org/institution/18085 -https://www.oceanexpert.org/institution/18086 -https://www.oceanexpert.org/institution/18088 -https://www.oceanexpert.org/institution/18089 -https://www.oceanexpert.org/institution/18092 -https://www.oceanexpert.org/institution/18096 -https://www.oceanexpert.org/institution/18097 -https://www.oceanexpert.org/institution/18099 -https://www.oceanexpert.org/institution/18100 -https://www.oceanexpert.org/institution/18102 -https://www.oceanexpert.org/institution/18103 -https://www.oceanexpert.org/institution/18105 -https://www.oceanexpert.org/institution/18106 -https://www.oceanexpert.org/institution/18108 -https://www.oceanexpert.org/institution/18110 -https://www.oceanexpert.org/institution/18111 -https://www.oceanexpert.org/institution/18112 -https://www.oceanexpert.org/institution/18113 -https://www.oceanexpert.org/institution/18116 -https://www.oceanexpert.org/institution/18117 -https://www.oceanexpert.org/institution/18118 -https://www.oceanexpert.org/institution/18119 -https://www.oceanexpert.org/institution/18120 -https://www.oceanexpert.org/institution/18122 -https://www.oceanexpert.org/institution/18123 -https://www.oceanexpert.org/institution/18124 -https://www.oceanexpert.org/institution/18125 -https://www.oceanexpert.org/institution/18126 -https://www.oceanexpert.org/institution/18127 -https://www.oceanexpert.org/institution/18129 -https://www.oceanexpert.org/institution/18130 -https://www.oceanexpert.org/institution/18131 -https://www.oceanexpert.org/institution/18132 -https://www.oceanexpert.org/institution/18133 -https://www.oceanexpert.org/institution/18134 -https://www.oceanexpert.org/institution/18135 -https://www.oceanexpert.org/institution/18136 -https://www.oceanexpert.org/institution/18137 -https://www.oceanexpert.org/institution/18138 -https://www.oceanexpert.org/institution/18139 -https://www.oceanexpert.org/institution/18141 -https://www.oceanexpert.org/institution/18142 -https://www.oceanexpert.org/institution/18143 -https://www.oceanexpert.org/institution/18144 -https://www.oceanexpert.org/institution/18145 -https://www.oceanexpert.org/institution/18146 -https://www.oceanexpert.org/institution/18148 -https://www.oceanexpert.org/institution/18149 -https://www.oceanexpert.org/institution/18150 -https://www.oceanexpert.org/institution/18153 -https://www.oceanexpert.org/institution/18154 -https://www.oceanexpert.org/institution/18155 -https://www.oceanexpert.org/institution/18156 -https://www.oceanexpert.org/institution/18157 -https://www.oceanexpert.org/institution/18159 -https://www.oceanexpert.org/institution/18160 -https://www.oceanexpert.org/institution/18161 -https://www.oceanexpert.org/institution/18162 -https://www.oceanexpert.org/institution/18164 -https://www.oceanexpert.org/institution/18165 -https://www.oceanexpert.org/institution/18166 -https://www.oceanexpert.org/institution/18167 -https://www.oceanexpert.org/institution/18168 -https://www.oceanexpert.org/institution/18172 -https://www.oceanexpert.org/institution/18173 -https://www.oceanexpert.org/institution/18175 -https://www.oceanexpert.org/institution/18176 -https://www.oceanexpert.org/institution/18178 -https://www.oceanexpert.org/institution/18179 -https://www.oceanexpert.org/institution/18182 -https://www.oceanexpert.org/institution/18183 -https://www.oceanexpert.org/institution/18185 -https://www.oceanexpert.org/institution/18186 -https://www.oceanexpert.org/institution/18187 -https://www.oceanexpert.org/institution/18188 -https://www.oceanexpert.org/institution/18189 -https://www.oceanexpert.org/institution/18190 -https://www.oceanexpert.org/institution/18191 -https://www.oceanexpert.org/institution/18192 -https://www.oceanexpert.org/institution/18194 -https://www.oceanexpert.org/institution/18195 -https://www.oceanexpert.org/institution/18196 -https://www.oceanexpert.org/institution/18197 -https://www.oceanexpert.org/institution/18199 -https://www.oceanexpert.org/institution/18200 -https://www.oceanexpert.org/institution/18202 -https://www.oceanexpert.org/institution/18203 -https://www.oceanexpert.org/institution/18204 -https://www.oceanexpert.org/institution/18205 -https://www.oceanexpert.org/institution/18206 -https://www.oceanexpert.org/institution/18207 -https://www.oceanexpert.org/institution/18211 -https://www.oceanexpert.org/institution/18212 -https://www.oceanexpert.org/institution/18213 -https://www.oceanexpert.org/institution/18214 -https://www.oceanexpert.org/institution/18215 -https://www.oceanexpert.org/institution/18216 -https://www.oceanexpert.org/institution/18217 -https://www.oceanexpert.org/institution/18218 -https://www.oceanexpert.org/institution/18219 -https://www.oceanexpert.org/institution/18220 -https://www.oceanexpert.org/institution/18221 -https://www.oceanexpert.org/institution/18223 -https://www.oceanexpert.org/institution/18224 -https://www.oceanexpert.org/institution/18225 -https://www.oceanexpert.org/institution/18226 -https://www.oceanexpert.org/institution/18227 -https://www.oceanexpert.org/institution/18228 -https://www.oceanexpert.org/institution/18230 -https://www.oceanexpert.org/institution/18231 -https://www.oceanexpert.org/institution/18233 -https://www.oceanexpert.org/institution/18235 -https://www.oceanexpert.org/institution/18236 -https://www.oceanexpert.org/institution/18237 -https://www.oceanexpert.org/institution/18238 -https://www.oceanexpert.org/institution/18239 -https://www.oceanexpert.org/institution/18240 -https://www.oceanexpert.org/institution/18241 -https://www.oceanexpert.org/institution/18242 -https://www.oceanexpert.org/institution/18243 -https://www.oceanexpert.org/institution/18244 -https://www.oceanexpert.org/institution/18247 -https://www.oceanexpert.org/institution/18248 -https://www.oceanexpert.org/institution/18249 -https://www.oceanexpert.org/institution/18254 -https://www.oceanexpert.org/institution/18255 -https://www.oceanexpert.org/institution/18257 -https://www.oceanexpert.org/institution/18258 -https://www.oceanexpert.org/institution/18259 -https://www.oceanexpert.org/institution/18260 -https://www.oceanexpert.org/institution/18261 -https://www.oceanexpert.org/institution/18263 -https://www.oceanexpert.org/institution/18265 -https://www.oceanexpert.org/institution/18266 -https://www.oceanexpert.org/institution/18267 -https://www.oceanexpert.org/institution/18268 -https://www.oceanexpert.org/institution/18269 -https://www.oceanexpert.org/institution/18270 -https://www.oceanexpert.org/institution/18271 -https://www.oceanexpert.org/institution/18272 -https://www.oceanexpert.org/institution/18274 -https://www.oceanexpert.org/institution/18276 -https://www.oceanexpert.org/institution/18279 -https://www.oceanexpert.org/institution/18280 -https://www.oceanexpert.org/institution/18281 -https://www.oceanexpert.org/institution/18284 -https://www.oceanexpert.org/institution/18285 -https://www.oceanexpert.org/institution/18286 -https://www.oceanexpert.org/institution/18287 -https://www.oceanexpert.org/institution/18288 -https://www.oceanexpert.org/institution/18289 -https://www.oceanexpert.org/institution/18290 -https://www.oceanexpert.org/institution/18291 -https://www.oceanexpert.org/institution/18292 -https://www.oceanexpert.org/institution/18293 -https://www.oceanexpert.org/institution/18294 -https://www.oceanexpert.org/institution/18295 -https://www.oceanexpert.org/institution/18296 -https://www.oceanexpert.org/institution/18297 -https://www.oceanexpert.org/institution/18299 -https://www.oceanexpert.org/institution/18301 -https://www.oceanexpert.org/institution/18302 -https://www.oceanexpert.org/institution/18303 -https://www.oceanexpert.org/institution/18305 -https://www.oceanexpert.org/institution/18306 -https://www.oceanexpert.org/institution/18307 -https://www.oceanexpert.org/institution/18312 -https://www.oceanexpert.org/institution/18313 -https://www.oceanexpert.org/institution/18314 -https://www.oceanexpert.org/institution/18316 -https://www.oceanexpert.org/institution/18318 -https://www.oceanexpert.org/institution/18319 -https://www.oceanexpert.org/institution/18320 -https://www.oceanexpert.org/institution/18322 -https://www.oceanexpert.org/institution/18323 -https://www.oceanexpert.org/institution/18324 -https://www.oceanexpert.org/institution/18325 -https://www.oceanexpert.org/institution/18326 -https://www.oceanexpert.org/institution/18327 -https://www.oceanexpert.org/institution/18328 -https://www.oceanexpert.org/institution/18329 -https://www.oceanexpert.org/institution/18330 -https://www.oceanexpert.org/institution/18331 -https://www.oceanexpert.org/institution/18332 -https://www.oceanexpert.org/institution/18334 -https://www.oceanexpert.org/institution/18335 -https://www.oceanexpert.org/institution/18336 -https://www.oceanexpert.org/institution/18338 -https://www.oceanexpert.org/institution/18339 -https://www.oceanexpert.org/institution/18341 -https://www.oceanexpert.org/institution/18342 -https://www.oceanexpert.org/institution/18343 -https://www.oceanexpert.org/institution/18345 -https://www.oceanexpert.org/institution/18346 -https://www.oceanexpert.org/institution/18347 -https://www.oceanexpert.org/institution/18348 -https://www.oceanexpert.org/institution/18349 -https://www.oceanexpert.org/institution/18350 -https://www.oceanexpert.org/institution/18351 -https://www.oceanexpert.org/institution/18352 -https://www.oceanexpert.org/institution/18353 -https://www.oceanexpert.org/institution/18355 -https://www.oceanexpert.org/institution/18356 -https://www.oceanexpert.org/institution/18357 -https://www.oceanexpert.org/institution/18358 -https://www.oceanexpert.org/institution/18359 -https://www.oceanexpert.org/institution/18360 -https://www.oceanexpert.org/institution/18361 -https://www.oceanexpert.org/institution/18362 -https://www.oceanexpert.org/institution/18363 -https://www.oceanexpert.org/institution/18364 -https://www.oceanexpert.org/institution/18365 -https://www.oceanexpert.org/institution/18366 -https://www.oceanexpert.org/institution/18367 -https://www.oceanexpert.org/institution/18369 -https://www.oceanexpert.org/institution/18370 -https://www.oceanexpert.org/institution/18371 -https://www.oceanexpert.org/institution/18373 -https://www.oceanexpert.org/institution/18374 -https://www.oceanexpert.org/institution/18375 -https://www.oceanexpert.org/institution/18376 -https://www.oceanexpert.org/institution/18377 -https://www.oceanexpert.org/institution/18378 -https://www.oceanexpert.org/institution/18379 -https://www.oceanexpert.org/institution/18380 -https://www.oceanexpert.org/institution/18383 -https://www.oceanexpert.org/institution/18384 -https://www.oceanexpert.org/institution/18385 -https://www.oceanexpert.org/institution/18386 -https://www.oceanexpert.org/institution/18387 -https://www.oceanexpert.org/institution/18388 -https://www.oceanexpert.org/institution/18389 -https://www.oceanexpert.org/institution/18390 -https://www.oceanexpert.org/institution/18391 -https://www.oceanexpert.org/institution/18392 -https://www.oceanexpert.org/institution/18393 -https://www.oceanexpert.org/institution/18395 -https://www.oceanexpert.org/institution/18396 -https://www.oceanexpert.org/institution/18397 -https://www.oceanexpert.org/institution/18398 -https://www.oceanexpert.org/institution/18399 -https://www.oceanexpert.org/institution/18400 -https://www.oceanexpert.org/institution/18402 -https://www.oceanexpert.org/institution/18403 -https://www.oceanexpert.org/institution/18404 -https://www.oceanexpert.org/institution/18405 -https://www.oceanexpert.org/institution/18406 -https://www.oceanexpert.org/institution/18407 -https://www.oceanexpert.org/institution/18408 -https://www.oceanexpert.org/institution/18409 -https://www.oceanexpert.org/institution/18410 -https://www.oceanexpert.org/institution/18411 -https://www.oceanexpert.org/institution/18412 -https://www.oceanexpert.org/institution/18413 -https://www.oceanexpert.org/institution/18414 -https://www.oceanexpert.org/institution/18415 -https://www.oceanexpert.org/institution/18420 -https://www.oceanexpert.org/institution/18421 -https://www.oceanexpert.org/institution/18422 -https://www.oceanexpert.org/institution/18425 -https://www.oceanexpert.org/institution/18427 -https://www.oceanexpert.org/institution/18428 -https://www.oceanexpert.org/institution/18429 -https://www.oceanexpert.org/institution/18430 -https://www.oceanexpert.org/institution/18431 -https://www.oceanexpert.org/institution/18433 -https://www.oceanexpert.org/institution/18434 -https://www.oceanexpert.org/institution/18435 -https://www.oceanexpert.org/institution/18437 -https://www.oceanexpert.org/institution/18439 -https://www.oceanexpert.org/institution/18440 -https://www.oceanexpert.org/institution/18441 -https://www.oceanexpert.org/institution/18442 -https://www.oceanexpert.org/institution/18443 -https://www.oceanexpert.org/institution/18445 -https://www.oceanexpert.org/institution/18446 -https://www.oceanexpert.org/institution/18447 -https://www.oceanexpert.org/institution/18448 -https://www.oceanexpert.org/institution/18449 -https://www.oceanexpert.org/institution/18450 -https://www.oceanexpert.org/institution/18451 -https://www.oceanexpert.org/institution/18452 -https://www.oceanexpert.org/institution/18453 -https://www.oceanexpert.org/institution/18454 -https://www.oceanexpert.org/institution/18455 -https://www.oceanexpert.org/institution/18456 -https://www.oceanexpert.org/institution/18458 -https://www.oceanexpert.org/institution/18459 -https://www.oceanexpert.org/institution/18460 -https://www.oceanexpert.org/institution/18461 -https://www.oceanexpert.org/institution/18462 -https://www.oceanexpert.org/institution/18463 -https://www.oceanexpert.org/institution/18464 -https://www.oceanexpert.org/institution/18467 -https://www.oceanexpert.org/institution/18468 -https://www.oceanexpert.org/institution/18469 -https://www.oceanexpert.org/institution/18470 -https://www.oceanexpert.org/institution/18471 -https://www.oceanexpert.org/institution/18473 -https://www.oceanexpert.org/institution/18477 -https://www.oceanexpert.org/institution/18479 -https://www.oceanexpert.org/institution/18480 -https://www.oceanexpert.org/institution/18481 -https://www.oceanexpert.org/institution/18484 -https://www.oceanexpert.org/institution/18485 -https://www.oceanexpert.org/institution/18486 -https://www.oceanexpert.org/institution/18487 -https://www.oceanexpert.org/institution/18488 -https://www.oceanexpert.org/institution/18489 -https://www.oceanexpert.org/institution/18490 -https://www.oceanexpert.org/institution/18491 -https://www.oceanexpert.org/institution/18492 -https://www.oceanexpert.org/institution/18493 -https://www.oceanexpert.org/institution/18494 -https://www.oceanexpert.org/institution/18495 -https://www.oceanexpert.org/institution/18496 -https://www.oceanexpert.org/institution/18497 -https://www.oceanexpert.org/institution/18498 -https://www.oceanexpert.org/institution/18499 -https://www.oceanexpert.org/institution/18500 -https://www.oceanexpert.org/institution/18501 -https://www.oceanexpert.org/institution/18502 -https://www.oceanexpert.org/institution/18504 -https://www.oceanexpert.org/institution/18505 -https://www.oceanexpert.org/institution/18506 -https://www.oceanexpert.org/institution/18507 -https://www.oceanexpert.org/institution/18508 -https://www.oceanexpert.org/institution/18509 -https://www.oceanexpert.org/institution/18510 -https://www.oceanexpert.org/institution/18511 -https://www.oceanexpert.org/institution/18512 -https://www.oceanexpert.org/institution/18515 -https://www.oceanexpert.org/institution/18518 -https://www.oceanexpert.org/institution/18519 -https://www.oceanexpert.org/institution/18521 -https://www.oceanexpert.org/institution/18524 -https://www.oceanexpert.org/institution/18525 -https://www.oceanexpert.org/institution/18527 -https://www.oceanexpert.org/institution/18528 -https://www.oceanexpert.org/institution/18529 -https://www.oceanexpert.org/institution/18530 -https://www.oceanexpert.org/institution/18531 -https://www.oceanexpert.org/institution/18532 -https://www.oceanexpert.org/institution/18533 -https://www.oceanexpert.org/institution/18534 -https://www.oceanexpert.org/institution/18535 -https://www.oceanexpert.org/institution/18536 -https://www.oceanexpert.org/institution/18541 -https://www.oceanexpert.org/institution/18542 -https://www.oceanexpert.org/institution/18543 -https://www.oceanexpert.org/institution/18544 -https://www.oceanexpert.org/institution/18545 -https://www.oceanexpert.org/institution/18546 -https://www.oceanexpert.org/institution/18547 -https://www.oceanexpert.org/institution/18548 -https://www.oceanexpert.org/institution/18549 -https://www.oceanexpert.org/institution/18550 -https://www.oceanexpert.org/institution/18552 -https://www.oceanexpert.org/institution/18553 -https://www.oceanexpert.org/institution/18554 -https://www.oceanexpert.org/institution/18555 -https://www.oceanexpert.org/institution/18556 -https://www.oceanexpert.org/institution/18557 -https://www.oceanexpert.org/institution/18558 -https://www.oceanexpert.org/institution/18559 -https://www.oceanexpert.org/institution/18560 -https://www.oceanexpert.org/institution/18561 -https://www.oceanexpert.org/institution/18562 -https://www.oceanexpert.org/institution/18563 -https://www.oceanexpert.org/institution/18564 -https://www.oceanexpert.org/institution/18565 -https://www.oceanexpert.org/institution/18566 -https://www.oceanexpert.org/institution/18567 -https://www.oceanexpert.org/institution/18568 -https://www.oceanexpert.org/institution/18569 -https://www.oceanexpert.org/institution/18570 -https://www.oceanexpert.org/institution/18571 -https://www.oceanexpert.org/institution/18572 -https://www.oceanexpert.org/institution/18574 -https://www.oceanexpert.org/institution/18576 -https://www.oceanexpert.org/institution/18577 -https://www.oceanexpert.org/institution/18578 -https://www.oceanexpert.org/institution/18579 -https://www.oceanexpert.org/institution/18580 -https://www.oceanexpert.org/institution/18583 -https://www.oceanexpert.org/institution/18584 -https://www.oceanexpert.org/institution/18585 -https://www.oceanexpert.org/institution/18586 -https://www.oceanexpert.org/institution/18587 -https://www.oceanexpert.org/institution/18588 -https://www.oceanexpert.org/institution/18589 -https://www.oceanexpert.org/institution/18590 -https://www.oceanexpert.org/institution/18591 -https://www.oceanexpert.org/institution/18592 -https://www.oceanexpert.org/institution/18593 -https://www.oceanexpert.org/institution/18594 -https://www.oceanexpert.org/institution/18595 -https://www.oceanexpert.org/institution/18596 -https://www.oceanexpert.org/institution/18597 -https://www.oceanexpert.org/institution/18598 -https://www.oceanexpert.org/institution/18599 -https://www.oceanexpert.org/institution/18600 -https://www.oceanexpert.org/institution/18601 -https://www.oceanexpert.org/institution/18602 -https://www.oceanexpert.org/institution/18603 -https://www.oceanexpert.org/institution/18604 -https://www.oceanexpert.org/institution/18607 -https://www.oceanexpert.org/institution/18608 -https://www.oceanexpert.org/institution/18610 -https://www.oceanexpert.org/institution/18611 -https://www.oceanexpert.org/institution/18612 -https://www.oceanexpert.org/institution/18613 -https://www.oceanexpert.org/institution/18614 -https://www.oceanexpert.org/institution/18615 -https://www.oceanexpert.org/institution/18616 -https://www.oceanexpert.org/institution/18617 -https://www.oceanexpert.org/institution/18618 -https://www.oceanexpert.org/institution/18619 -https://www.oceanexpert.org/institution/18620 -https://www.oceanexpert.org/institution/18621 -https://www.oceanexpert.org/institution/18622 -https://www.oceanexpert.org/institution/18623 -https://www.oceanexpert.org/institution/18624 -https://www.oceanexpert.org/institution/18625 -https://www.oceanexpert.org/institution/18626 -https://www.oceanexpert.org/institution/18627 -https://www.oceanexpert.org/institution/18628 -https://www.oceanexpert.org/institution/18629 -https://www.oceanexpert.org/institution/18630 -https://www.oceanexpert.org/institution/18631 -https://www.oceanexpert.org/institution/18633 -https://www.oceanexpert.org/institution/18634 -https://www.oceanexpert.org/institution/18635 -https://www.oceanexpert.org/institution/18636 -https://www.oceanexpert.org/institution/18637 -https://www.oceanexpert.org/institution/18638 -https://www.oceanexpert.org/institution/18639 -https://www.oceanexpert.org/institution/18640 -https://www.oceanexpert.org/institution/18641 -https://www.oceanexpert.org/institution/18642 -https://www.oceanexpert.org/institution/18643 -https://www.oceanexpert.org/institution/18644 -https://www.oceanexpert.org/institution/18646 -https://www.oceanexpert.org/institution/18647 -https://www.oceanexpert.org/institution/18648 -https://www.oceanexpert.org/institution/18650 -https://www.oceanexpert.org/institution/18651 -https://www.oceanexpert.org/institution/18652 -https://www.oceanexpert.org/institution/18653 -https://www.oceanexpert.org/institution/18655 -https://www.oceanexpert.org/institution/18656 -https://www.oceanexpert.org/institution/18659 -https://www.oceanexpert.org/institution/18660 -https://www.oceanexpert.org/institution/18661 -https://www.oceanexpert.org/institution/18662 -https://www.oceanexpert.org/institution/18663 -https://www.oceanexpert.org/institution/18664 -https://www.oceanexpert.org/institution/18665 -https://www.oceanexpert.org/institution/18666 -https://www.oceanexpert.org/institution/18667 -https://www.oceanexpert.org/institution/18668 -https://www.oceanexpert.org/institution/18669 -https://www.oceanexpert.org/institution/18670 -https://www.oceanexpert.org/institution/18671 -https://www.oceanexpert.org/institution/18672 -https://www.oceanexpert.org/institution/18673 -https://www.oceanexpert.org/institution/18674 -https://www.oceanexpert.org/institution/18675 -https://www.oceanexpert.org/institution/18677 -https://www.oceanexpert.org/institution/18678 -https://www.oceanexpert.org/institution/18679 -https://www.oceanexpert.org/institution/18680 -https://www.oceanexpert.org/institution/18681 -https://www.oceanexpert.org/institution/18682 -https://www.oceanexpert.org/institution/18683 -https://www.oceanexpert.org/institution/18684 -https://www.oceanexpert.org/institution/18685 -https://www.oceanexpert.org/institution/18686 -https://www.oceanexpert.org/institution/18687 -https://www.oceanexpert.org/institution/18688 -https://www.oceanexpert.org/institution/18689 -https://www.oceanexpert.org/institution/18690 -https://www.oceanexpert.org/institution/18691 -https://www.oceanexpert.org/institution/18692 -https://www.oceanexpert.org/institution/18693 -https://www.oceanexpert.org/institution/18694 -https://www.oceanexpert.org/institution/18695 -https://www.oceanexpert.org/institution/18696 -https://www.oceanexpert.org/institution/18697 -https://www.oceanexpert.org/institution/18698 -https://www.oceanexpert.org/institution/18699 -https://www.oceanexpert.org/institution/18700 -https://www.oceanexpert.org/institution/18701 -https://www.oceanexpert.org/institution/18702 -https://www.oceanexpert.org/institution/18703 -https://www.oceanexpert.org/institution/18704 -https://www.oceanexpert.org/institution/18705 -https://www.oceanexpert.org/institution/18706 -https://www.oceanexpert.org/institution/18707 -https://www.oceanexpert.org/institution/18708 -https://www.oceanexpert.org/institution/18709 -https://www.oceanexpert.org/institution/18710 -https://www.oceanexpert.org/institution/18711 -https://www.oceanexpert.org/institution/18712 -https://www.oceanexpert.org/institution/18714 -https://www.oceanexpert.org/institution/18716 -https://www.oceanexpert.org/institution/18717 -https://www.oceanexpert.org/institution/18721 -https://www.oceanexpert.org/institution/18722 -https://www.oceanexpert.org/institution/18723 -https://www.oceanexpert.org/institution/18726 -https://www.oceanexpert.org/institution/18728 -https://www.oceanexpert.org/institution/18729 -https://www.oceanexpert.org/institution/18730 -https://www.oceanexpert.org/institution/18731 -https://www.oceanexpert.org/institution/18732 -https://www.oceanexpert.org/institution/18733 -https://www.oceanexpert.org/institution/18734 -https://www.oceanexpert.org/institution/18735 -https://www.oceanexpert.org/institution/18736 -https://www.oceanexpert.org/institution/18737 -https://www.oceanexpert.org/institution/18738 -https://www.oceanexpert.org/institution/18739 -https://www.oceanexpert.org/institution/18740 -https://www.oceanexpert.org/institution/18742 -https://www.oceanexpert.org/institution/18743 -https://www.oceanexpert.org/institution/18744 -https://www.oceanexpert.org/institution/18745 -https://www.oceanexpert.org/institution/18746 -https://www.oceanexpert.org/institution/18747 -https://www.oceanexpert.org/institution/18748 -https://www.oceanexpert.org/institution/18749 -https://www.oceanexpert.org/institution/18750 -https://www.oceanexpert.org/institution/18751 -https://www.oceanexpert.org/institution/18752 -https://www.oceanexpert.org/institution/18753 -https://www.oceanexpert.org/institution/18755 -https://www.oceanexpert.org/institution/18756 -https://www.oceanexpert.org/institution/18757 -https://www.oceanexpert.org/institution/18758 -https://www.oceanexpert.org/institution/18759 -https://www.oceanexpert.org/institution/18760 -https://www.oceanexpert.org/institution/18761 -https://www.oceanexpert.org/institution/18762 -https://www.oceanexpert.org/institution/18763 -https://www.oceanexpert.org/institution/18764 -https://www.oceanexpert.org/institution/18765 -https://www.oceanexpert.org/institution/18766 -https://www.oceanexpert.org/institution/18767 -https://www.oceanexpert.org/institution/18768 -https://www.oceanexpert.org/institution/18769 -https://www.oceanexpert.org/institution/18770 -https://www.oceanexpert.org/institution/18771 -https://www.oceanexpert.org/institution/18772 -https://www.oceanexpert.org/institution/18774 -https://www.oceanexpert.org/institution/18776 -https://www.oceanexpert.org/institution/18777 -https://www.oceanexpert.org/institution/18781 -https://www.oceanexpert.org/institution/18782 -https://www.oceanexpert.org/institution/18783 -https://www.oceanexpert.org/institution/18784 -https://www.oceanexpert.org/institution/18785 -https://www.oceanexpert.org/institution/18786 -https://www.oceanexpert.org/institution/18787 -https://www.oceanexpert.org/institution/18789 -https://www.oceanexpert.org/institution/18790 -https://www.oceanexpert.org/institution/18791 -https://www.oceanexpert.org/institution/18792 -https://www.oceanexpert.org/institution/18793 -https://www.oceanexpert.org/institution/18794 -https://www.oceanexpert.org/institution/18795 -https://www.oceanexpert.org/institution/18796 -https://www.oceanexpert.org/institution/18797 -https://www.oceanexpert.org/institution/18798 -https://www.oceanexpert.org/institution/18799 -https://www.oceanexpert.org/institution/18801 -https://www.oceanexpert.org/institution/18802 -https://www.oceanexpert.org/institution/18803 -https://www.oceanexpert.org/institution/18804 -https://www.oceanexpert.org/institution/18805 -https://www.oceanexpert.org/institution/18807 -https://www.oceanexpert.org/institution/18808 -https://www.oceanexpert.org/institution/18809 -https://www.oceanexpert.org/institution/18810 -https://www.oceanexpert.org/institution/18811 -https://www.oceanexpert.org/institution/18812 -https://www.oceanexpert.org/institution/18814 -https://www.oceanexpert.org/institution/18815 -https://www.oceanexpert.org/institution/18816 -https://www.oceanexpert.org/institution/18817 -https://www.oceanexpert.org/institution/18818 -https://www.oceanexpert.org/institution/18819 -https://www.oceanexpert.org/institution/18820 -https://www.oceanexpert.org/institution/18821 -https://www.oceanexpert.org/institution/18822 -https://www.oceanexpert.org/institution/18825 -https://www.oceanexpert.org/institution/18826 -https://www.oceanexpert.org/institution/18827 -https://www.oceanexpert.org/institution/18828 -https://www.oceanexpert.org/institution/18830 -https://www.oceanexpert.org/institution/18831 -https://www.oceanexpert.org/institution/18832 -https://www.oceanexpert.org/institution/18833 -https://www.oceanexpert.org/institution/18834 -https://www.oceanexpert.org/institution/18835 -https://www.oceanexpert.org/institution/18836 -https://www.oceanexpert.org/institution/18837 -https://www.oceanexpert.org/institution/18838 -https://www.oceanexpert.org/institution/18839 -https://www.oceanexpert.org/institution/18840 -https://www.oceanexpert.org/institution/18841 -https://www.oceanexpert.org/institution/18842 -https://www.oceanexpert.org/institution/18843 -https://www.oceanexpert.org/institution/18844 -https://www.oceanexpert.org/institution/18845 -https://www.oceanexpert.org/institution/18847 -https://www.oceanexpert.org/institution/18848 -https://www.oceanexpert.org/institution/18849 -https://www.oceanexpert.org/institution/18850 -https://www.oceanexpert.org/institution/18851 -https://www.oceanexpert.org/institution/18852 -https://www.oceanexpert.org/institution/18853 -https://www.oceanexpert.org/institution/18854 -https://www.oceanexpert.org/institution/18855 -https://www.oceanexpert.org/institution/18856 -https://www.oceanexpert.org/institution/18857 -https://www.oceanexpert.org/institution/18858 -https://www.oceanexpert.org/institution/18859 -https://www.oceanexpert.org/institution/18860 -https://www.oceanexpert.org/institution/18861 -https://www.oceanexpert.org/institution/18862 -https://www.oceanexpert.org/institution/18863 -https://www.oceanexpert.org/institution/18864 -https://www.oceanexpert.org/institution/18865 -https://www.oceanexpert.org/institution/18866 -https://www.oceanexpert.org/institution/18867 -https://www.oceanexpert.org/institution/18868 -https://www.oceanexpert.org/institution/18869 -https://www.oceanexpert.org/institution/18870 -https://www.oceanexpert.org/institution/18872 -https://www.oceanexpert.org/institution/18873 -https://www.oceanexpert.org/institution/18874 -https://www.oceanexpert.org/institution/18875 -https://www.oceanexpert.org/institution/18876 -https://www.oceanexpert.org/institution/18877 -https://www.oceanexpert.org/institution/18879 -https://www.oceanexpert.org/institution/18880 -https://www.oceanexpert.org/institution/18881 -https://www.oceanexpert.org/institution/18882 -https://www.oceanexpert.org/institution/18883 -https://www.oceanexpert.org/institution/18884 -https://www.oceanexpert.org/institution/18885 -https://www.oceanexpert.org/institution/18886 -https://www.oceanexpert.org/institution/18887 -https://www.oceanexpert.org/institution/18888 -https://www.oceanexpert.org/institution/18889 -https://www.oceanexpert.org/institution/18890 -https://www.oceanexpert.org/institution/18892 -https://www.oceanexpert.org/institution/18893 -https://www.oceanexpert.org/institution/18894 -https://www.oceanexpert.org/institution/18895 -https://www.oceanexpert.org/institution/18896 -https://www.oceanexpert.org/institution/18897 -https://www.oceanexpert.org/institution/18898 -https://www.oceanexpert.org/institution/18899 -https://www.oceanexpert.org/institution/18900 -https://www.oceanexpert.org/institution/18901 -https://www.oceanexpert.org/institution/18902 -https://www.oceanexpert.org/institution/18904 -https://www.oceanexpert.org/institution/18905 -https://www.oceanexpert.org/institution/18906 -https://www.oceanexpert.org/institution/18907 -https://www.oceanexpert.org/institution/18908 -https://www.oceanexpert.org/institution/18909 -https://www.oceanexpert.org/institution/18910 -https://www.oceanexpert.org/institution/18911 -https://www.oceanexpert.org/institution/18912 -https://www.oceanexpert.org/institution/18913 -https://www.oceanexpert.org/institution/18914 -https://www.oceanexpert.org/institution/18915 -https://www.oceanexpert.org/institution/18916 -https://www.oceanexpert.org/institution/18917 -https://www.oceanexpert.org/institution/18918 -https://www.oceanexpert.org/institution/18919 -https://www.oceanexpert.org/institution/18921 -https://www.oceanexpert.org/institution/18922 -https://www.oceanexpert.org/institution/18923 -https://www.oceanexpert.org/institution/18924 -https://www.oceanexpert.org/institution/18926 -https://www.oceanexpert.org/institution/18927 -https://www.oceanexpert.org/institution/18928 -https://www.oceanexpert.org/institution/18929 -https://www.oceanexpert.org/institution/18930 -https://www.oceanexpert.org/institution/18931 -https://www.oceanexpert.org/institution/18932 -https://www.oceanexpert.org/institution/18933 -https://www.oceanexpert.org/institution/18934 -https://www.oceanexpert.org/institution/18935 -https://www.oceanexpert.org/institution/18936 -https://www.oceanexpert.org/institution/18937 -https://www.oceanexpert.org/institution/18938 -https://www.oceanexpert.org/institution/18939 -https://www.oceanexpert.org/institution/18940 -https://www.oceanexpert.org/institution/18942 -https://www.oceanexpert.org/institution/18943 -https://www.oceanexpert.org/institution/18944 -https://www.oceanexpert.org/institution/18945 -https://www.oceanexpert.org/institution/18946 -https://www.oceanexpert.org/institution/18947 -https://www.oceanexpert.org/institution/18948 -https://www.oceanexpert.org/institution/18949 -https://www.oceanexpert.org/institution/18950 -https://www.oceanexpert.org/institution/18951 -https://www.oceanexpert.org/institution/18952 -https://www.oceanexpert.org/institution/18954 -https://www.oceanexpert.org/institution/18955 -https://www.oceanexpert.org/institution/18956 -https://www.oceanexpert.org/institution/18958 -https://www.oceanexpert.org/institution/18959 -https://www.oceanexpert.org/institution/18960 -https://www.oceanexpert.org/institution/18961 -https://www.oceanexpert.org/institution/18962 -https://www.oceanexpert.org/institution/18963 -https://www.oceanexpert.org/institution/18964 -https://www.oceanexpert.org/institution/18965 -https://www.oceanexpert.org/institution/18967 -https://www.oceanexpert.org/institution/18968 -https://www.oceanexpert.org/institution/18970 -https://www.oceanexpert.org/institution/18971 -https://www.oceanexpert.org/institution/18972 -https://www.oceanexpert.org/institution/18973 -https://www.oceanexpert.org/institution/18975 -https://www.oceanexpert.org/institution/18976 -https://www.oceanexpert.org/institution/18977 -https://www.oceanexpert.org/institution/18978 -https://www.oceanexpert.org/institution/18980 -https://www.oceanexpert.org/institution/18982 -https://www.oceanexpert.org/institution/18983 -https://www.oceanexpert.org/institution/18984 -https://www.oceanexpert.org/institution/18985 -https://www.oceanexpert.org/institution/18986 -https://www.oceanexpert.org/institution/18988 -https://www.oceanexpert.org/institution/18989 -https://www.oceanexpert.org/institution/18990 -https://www.oceanexpert.org/institution/18991 -https://www.oceanexpert.org/institution/18992 -https://www.oceanexpert.org/institution/18993 -https://www.oceanexpert.org/institution/18994 -https://www.oceanexpert.org/institution/18995 -https://www.oceanexpert.org/institution/18996 -https://www.oceanexpert.org/institution/18997 -https://www.oceanexpert.org/institution/19000 -https://www.oceanexpert.org/institution/19001 -https://www.oceanexpert.org/institution/19004 -https://www.oceanexpert.org/institution/19005 -https://www.oceanexpert.org/institution/19006 -https://www.oceanexpert.org/institution/19007 -https://www.oceanexpert.org/institution/19008 -https://www.oceanexpert.org/institution/19009 -https://www.oceanexpert.org/institution/19010 -https://www.oceanexpert.org/institution/19011 -https://www.oceanexpert.org/institution/19012 -https://www.oceanexpert.org/institution/19013 -https://www.oceanexpert.org/institution/19014 -https://www.oceanexpert.org/institution/19015 -https://www.oceanexpert.org/institution/19016 -https://www.oceanexpert.org/institution/19017 -https://www.oceanexpert.org/institution/19019 -https://www.oceanexpert.org/institution/19021 -https://www.oceanexpert.org/institution/19022 -https://www.oceanexpert.org/institution/19023 -https://www.oceanexpert.org/institution/19024 -https://www.oceanexpert.org/institution/19025 -https://www.oceanexpert.org/institution/19026 -https://www.oceanexpert.org/institution/19027 -https://www.oceanexpert.org/institution/19029 -https://www.oceanexpert.org/institution/19030 -https://www.oceanexpert.org/institution/19032 -https://www.oceanexpert.org/institution/19033 -https://www.oceanexpert.org/institution/19034 -https://www.oceanexpert.org/institution/19035 -https://www.oceanexpert.org/institution/19037 -https://www.oceanexpert.org/institution/19038 -https://www.oceanexpert.org/institution/19040 -https://www.oceanexpert.org/institution/19041 -https://www.oceanexpert.org/institution/19042 -https://www.oceanexpert.org/institution/19043 -https://www.oceanexpert.org/institution/19045 -https://www.oceanexpert.org/institution/19046 -https://www.oceanexpert.org/institution/19047 -https://www.oceanexpert.org/institution/19048 -https://www.oceanexpert.org/institution/19049 -https://www.oceanexpert.org/institution/19051 -https://www.oceanexpert.org/institution/19053 -https://www.oceanexpert.org/institution/19055 -https://www.oceanexpert.org/institution/19056 -https://www.oceanexpert.org/institution/19057 -https://www.oceanexpert.org/institution/19058 -https://www.oceanexpert.org/institution/19059 -https://www.oceanexpert.org/institution/19060 -https://www.oceanexpert.org/institution/19061 -https://www.oceanexpert.org/institution/19063 -https://www.oceanexpert.org/institution/19064 -https://www.oceanexpert.org/institution/19065 -https://www.oceanexpert.org/institution/19066 -https://www.oceanexpert.org/institution/19067 -https://www.oceanexpert.org/institution/19068 -https://www.oceanexpert.org/institution/19069 -https://www.oceanexpert.org/institution/19070 -https://www.oceanexpert.org/institution/19071 -https://www.oceanexpert.org/institution/19072 -https://www.oceanexpert.org/institution/19073 -https://www.oceanexpert.org/institution/19074 -https://www.oceanexpert.org/institution/19075 -https://www.oceanexpert.org/institution/19076 -https://www.oceanexpert.org/institution/19077 -https://www.oceanexpert.org/institution/19078 -https://www.oceanexpert.org/institution/19079 -https://www.oceanexpert.org/institution/19080 -https://www.oceanexpert.org/institution/19081 -https://www.oceanexpert.org/institution/19082 -https://www.oceanexpert.org/institution/19083 -https://www.oceanexpert.org/institution/19084 -https://www.oceanexpert.org/institution/19085 -https://www.oceanexpert.org/institution/19086 -https://www.oceanexpert.org/institution/19087 -https://www.oceanexpert.org/institution/19088 -https://www.oceanexpert.org/institution/19089 -https://www.oceanexpert.org/institution/19090 -https://www.oceanexpert.org/institution/19091 -https://www.oceanexpert.org/institution/19092 -https://www.oceanexpert.org/institution/19093 -https://www.oceanexpert.org/institution/19094 -https://www.oceanexpert.org/institution/19095 -https://www.oceanexpert.org/institution/19096 -https://www.oceanexpert.org/institution/19097 -https://www.oceanexpert.org/institution/19098 -https://www.oceanexpert.org/institution/19100 -https://www.oceanexpert.org/institution/19102 -https://www.oceanexpert.org/institution/19103 -https://www.oceanexpert.org/institution/19104 -https://www.oceanexpert.org/institution/19106 -https://www.oceanexpert.org/institution/19107 -https://www.oceanexpert.org/institution/19108 -https://www.oceanexpert.org/institution/19112 -https://www.oceanexpert.org/institution/19113 -https://www.oceanexpert.org/institution/19114 -https://www.oceanexpert.org/institution/19115 -https://www.oceanexpert.org/institution/19116 -https://www.oceanexpert.org/institution/19117 -https://www.oceanexpert.org/institution/19120 -https://www.oceanexpert.org/institution/19121 -https://www.oceanexpert.org/institution/19122 -https://www.oceanexpert.org/institution/19123 -https://www.oceanexpert.org/institution/19124 -https://www.oceanexpert.org/institution/19126 -https://www.oceanexpert.org/institution/19129 -https://www.oceanexpert.org/institution/19130 -https://www.oceanexpert.org/institution/19131 -https://www.oceanexpert.org/institution/19132 -https://www.oceanexpert.org/institution/19133 -https://www.oceanexpert.org/institution/19135 -https://www.oceanexpert.org/institution/19136 -https://www.oceanexpert.org/institution/19137 -https://www.oceanexpert.org/institution/19138 -https://www.oceanexpert.org/institution/19139 -https://www.oceanexpert.org/institution/19141 -https://www.oceanexpert.org/institution/19142 -https://www.oceanexpert.org/institution/19143 -https://www.oceanexpert.org/institution/19144 -https://www.oceanexpert.org/institution/19149 -https://www.oceanexpert.org/institution/19150 -https://www.oceanexpert.org/institution/19151 -https://www.oceanexpert.org/institution/19152 -https://www.oceanexpert.org/institution/19153 -https://www.oceanexpert.org/institution/19154 -https://www.oceanexpert.org/institution/19155 -https://www.oceanexpert.org/institution/19156 -https://www.oceanexpert.org/institution/19159 -https://www.oceanexpert.org/institution/19160 -https://www.oceanexpert.org/institution/19161 -https://www.oceanexpert.org/institution/19163 -https://www.oceanexpert.org/institution/19164 -https://www.oceanexpert.org/institution/19165 -https://www.oceanexpert.org/institution/19166 -https://www.oceanexpert.org/institution/19167 -https://www.oceanexpert.org/institution/19168 -https://www.oceanexpert.org/institution/19169 -https://www.oceanexpert.org/institution/19170 -https://www.oceanexpert.org/institution/19171 -https://www.oceanexpert.org/institution/19172 -https://www.oceanexpert.org/institution/19173 -https://www.oceanexpert.org/institution/19174 -https://www.oceanexpert.org/institution/19175 -https://www.oceanexpert.org/institution/19176 -https://www.oceanexpert.org/institution/19178 -https://www.oceanexpert.org/institution/19179 -https://www.oceanexpert.org/institution/19180 -https://www.oceanexpert.org/institution/19181 -https://www.oceanexpert.org/institution/19182 -https://www.oceanexpert.org/institution/19184 -https://www.oceanexpert.org/institution/19185 -https://www.oceanexpert.org/institution/19186 -https://www.oceanexpert.org/institution/19187 -https://www.oceanexpert.org/institution/19188 -https://www.oceanexpert.org/institution/19189 -https://www.oceanexpert.org/institution/19190 -https://www.oceanexpert.org/institution/19191 -https://www.oceanexpert.org/institution/19192 -https://www.oceanexpert.org/institution/19193 -https://www.oceanexpert.org/institution/19194 -https://www.oceanexpert.org/institution/19195 -https://www.oceanexpert.org/institution/19196 -https://www.oceanexpert.org/institution/19197 -https://www.oceanexpert.org/institution/19202 -https://www.oceanexpert.org/institution/19203 -https://www.oceanexpert.org/institution/19205 -https://www.oceanexpert.org/institution/19206 -https://www.oceanexpert.org/institution/19208 -https://www.oceanexpert.org/institution/19209 -https://www.oceanexpert.org/institution/19210 -https://www.oceanexpert.org/institution/19211 -https://www.oceanexpert.org/institution/19212 -https://www.oceanexpert.org/institution/19213 -https://www.oceanexpert.org/institution/19214 -https://www.oceanexpert.org/institution/19215 -https://www.oceanexpert.org/institution/19217 -https://www.oceanexpert.org/institution/19219 -https://www.oceanexpert.org/institution/19222 -https://www.oceanexpert.org/institution/19223 -https://www.oceanexpert.org/institution/19224 -https://www.oceanexpert.org/institution/19225 -https://www.oceanexpert.org/institution/19228 -https://www.oceanexpert.org/institution/19229 -https://www.oceanexpert.org/institution/19230 -https://www.oceanexpert.org/institution/19231 -https://www.oceanexpert.org/institution/19232 -https://www.oceanexpert.org/institution/19233 -https://www.oceanexpert.org/institution/19236 -https://www.oceanexpert.org/institution/19240 -https://www.oceanexpert.org/institution/19241 -https://www.oceanexpert.org/institution/19242 -https://www.oceanexpert.org/institution/19243 -https://www.oceanexpert.org/institution/19244 -https://www.oceanexpert.org/institution/19245 -https://www.oceanexpert.org/institution/19246 -https://www.oceanexpert.org/institution/19247 -https://www.oceanexpert.org/institution/19248 -https://www.oceanexpert.org/institution/19250 -https://www.oceanexpert.org/institution/19251 -https://www.oceanexpert.org/institution/19252 -https://www.oceanexpert.org/institution/19255 -https://www.oceanexpert.org/institution/19256 -https://www.oceanexpert.org/institution/19257 -https://www.oceanexpert.org/institution/19258 -https://www.oceanexpert.org/institution/19260 -https://www.oceanexpert.org/institution/19261 -https://www.oceanexpert.org/institution/19262 -https://www.oceanexpert.org/institution/19264 -https://www.oceanexpert.org/institution/19266 -https://www.oceanexpert.org/institution/19267 -https://www.oceanexpert.org/institution/19268 -https://www.oceanexpert.org/institution/19271 -https://www.oceanexpert.org/institution/19272 -https://www.oceanexpert.org/institution/19273 -https://www.oceanexpert.org/institution/19274 -https://www.oceanexpert.org/institution/19275 -https://www.oceanexpert.org/institution/19276 -https://www.oceanexpert.org/institution/19277 -https://www.oceanexpert.org/institution/19278 -https://www.oceanexpert.org/institution/19279 -https://www.oceanexpert.org/institution/19280 -https://www.oceanexpert.org/institution/19281 -https://www.oceanexpert.org/institution/19282 -https://www.oceanexpert.org/institution/19283 -https://www.oceanexpert.org/institution/19284 -https://www.oceanexpert.org/institution/19285 -https://www.oceanexpert.org/institution/19286 -https://www.oceanexpert.org/institution/19287 -https://www.oceanexpert.org/institution/19288 -https://www.oceanexpert.org/institution/19289 -https://www.oceanexpert.org/institution/19290 -https://www.oceanexpert.org/institution/19291 -https://www.oceanexpert.org/institution/19292 -https://www.oceanexpert.org/institution/19293 -https://www.oceanexpert.org/institution/19294 -https://www.oceanexpert.org/institution/19295 -https://www.oceanexpert.org/institution/19296 -https://www.oceanexpert.org/institution/19297 -https://www.oceanexpert.org/institution/19298 -https://www.oceanexpert.org/institution/19299 -https://www.oceanexpert.org/institution/19300 -https://www.oceanexpert.org/institution/19301 -https://www.oceanexpert.org/institution/19302 -https://www.oceanexpert.org/institution/19303 -https://www.oceanexpert.org/institution/19304 -https://www.oceanexpert.org/institution/19305 -https://www.oceanexpert.org/institution/19306 -https://www.oceanexpert.org/institution/19307 -https://www.oceanexpert.org/institution/19308 -https://www.oceanexpert.org/institution/19309 -https://www.oceanexpert.org/institution/19310 -https://www.oceanexpert.org/institution/19311 -https://www.oceanexpert.org/institution/19312 -https://www.oceanexpert.org/institution/19313 -https://www.oceanexpert.org/institution/19314 -https://www.oceanexpert.org/institution/19315 -https://www.oceanexpert.org/institution/19316 -https://www.oceanexpert.org/institution/19317 -https://www.oceanexpert.org/institution/19318 -https://www.oceanexpert.org/institution/19319 -https://www.oceanexpert.org/institution/19320 -https://www.oceanexpert.org/institution/19321 -https://www.oceanexpert.org/institution/19322 -https://www.oceanexpert.org/institution/19323 -https://www.oceanexpert.org/institution/19324 -https://www.oceanexpert.org/institution/19325 -https://www.oceanexpert.org/institution/19326 -https://www.oceanexpert.org/institution/19327 -https://www.oceanexpert.org/institution/19328 -https://www.oceanexpert.org/institution/19329 -https://www.oceanexpert.org/institution/19330 -https://www.oceanexpert.org/institution/19331 -https://www.oceanexpert.org/institution/19332 -https://www.oceanexpert.org/institution/19333 -https://www.oceanexpert.org/institution/19334 -https://www.oceanexpert.org/institution/19335 -https://www.oceanexpert.org/institution/19336 -https://www.oceanexpert.org/institution/19337 -https://www.oceanexpert.org/institution/19338 -https://www.oceanexpert.org/institution/19339 -https://www.oceanexpert.org/institution/19340 -https://www.oceanexpert.org/institution/19341 -https://www.oceanexpert.org/institution/19342 -https://www.oceanexpert.org/institution/19343 -https://www.oceanexpert.org/institution/19344 -https://www.oceanexpert.org/institution/19345 -https://www.oceanexpert.org/institution/19346 -https://www.oceanexpert.org/institution/19347 -https://www.oceanexpert.org/institution/19348 -https://www.oceanexpert.org/institution/19349 -https://www.oceanexpert.org/institution/19350 -https://www.oceanexpert.org/institution/19351 -https://www.oceanexpert.org/institution/19352 -https://www.oceanexpert.org/institution/19353 -https://www.oceanexpert.org/institution/19354 -https://www.oceanexpert.org/institution/19356 -https://www.oceanexpert.org/institution/19357 -https://www.oceanexpert.org/institution/19358 -https://www.oceanexpert.org/institution/19359 -https://www.oceanexpert.org/institution/19360 -https://www.oceanexpert.org/institution/19361 -https://www.oceanexpert.org/institution/19362 -https://www.oceanexpert.org/institution/19363 -https://www.oceanexpert.org/institution/19364 -https://www.oceanexpert.org/institution/19365 -https://www.oceanexpert.org/institution/19366 -https://www.oceanexpert.org/institution/19367 -https://www.oceanexpert.org/institution/19368 -https://www.oceanexpert.org/institution/19369 -https://www.oceanexpert.org/institution/19370 -https://www.oceanexpert.org/institution/19371 -https://www.oceanexpert.org/institution/19372 -https://www.oceanexpert.org/institution/19373 -https://www.oceanexpert.org/institution/19374 -https://www.oceanexpert.org/institution/19375 -https://www.oceanexpert.org/institution/19376 -https://www.oceanexpert.org/institution/19377 -https://www.oceanexpert.org/institution/19378 -https://www.oceanexpert.org/institution/19379 -https://www.oceanexpert.org/institution/19380 -https://www.oceanexpert.org/institution/19381 -https://www.oceanexpert.org/institution/19382 -https://www.oceanexpert.org/institution/19383 -https://www.oceanexpert.org/institution/19384 -https://www.oceanexpert.org/institution/19385 -https://www.oceanexpert.org/institution/19386 -https://www.oceanexpert.org/institution/19387 -https://www.oceanexpert.org/institution/19388 -https://www.oceanexpert.org/institution/19389 -https://www.oceanexpert.org/institution/19390 -https://www.oceanexpert.org/institution/19391 -https://www.oceanexpert.org/institution/19392 -https://www.oceanexpert.org/institution/19393 -https://www.oceanexpert.org/institution/19394 -https://www.oceanexpert.org/institution/19395 -https://www.oceanexpert.org/institution/19396 -https://www.oceanexpert.org/institution/19397 -https://www.oceanexpert.org/institution/19398 -https://www.oceanexpert.org/institution/19399 -https://www.oceanexpert.org/institution/19400 -https://www.oceanexpert.org/institution/19401 -https://www.oceanexpert.org/institution/19402 -https://www.oceanexpert.org/institution/19403 -https://www.oceanexpert.org/institution/19404 -https://www.oceanexpert.org/institution/19405 -https://www.oceanexpert.org/institution/19406 -https://www.oceanexpert.org/institution/19407 -https://www.oceanexpert.org/institution/19408 -https://www.oceanexpert.org/institution/19409 -https://www.oceanexpert.org/institution/19410 -https://www.oceanexpert.org/institution/19411 -https://www.oceanexpert.org/institution/19412 -https://www.oceanexpert.org/institution/19413 -https://www.oceanexpert.org/institution/19414 -https://www.oceanexpert.org/institution/19415 -https://www.oceanexpert.org/institution/19416 -https://www.oceanexpert.org/institution/19417 -https://www.oceanexpert.org/institution/19418 -https://www.oceanexpert.org/institution/19419 -https://www.oceanexpert.org/institution/19420 -https://www.oceanexpert.org/institution/19421 -https://www.oceanexpert.org/institution/19422 -https://www.oceanexpert.org/institution/19423 -https://www.oceanexpert.org/institution/19424 -https://www.oceanexpert.org/institution/19425 -https://www.oceanexpert.org/institution/19426 -https://www.oceanexpert.org/institution/19427 -https://www.oceanexpert.org/institution/19428 -https://www.oceanexpert.org/institution/19429 -https://www.oceanexpert.org/institution/19430 -https://www.oceanexpert.org/institution/19431 -https://www.oceanexpert.org/institution/19432 -https://www.oceanexpert.org/institution/19433 -https://www.oceanexpert.org/institution/19434 -https://www.oceanexpert.org/institution/19435 -https://www.oceanexpert.org/institution/19436 -https://www.oceanexpert.org/institution/19437 -https://www.oceanexpert.org/institution/19438 -https://www.oceanexpert.org/institution/19439 -https://www.oceanexpert.org/institution/19440 -https://www.oceanexpert.org/institution/19441 -https://www.oceanexpert.org/institution/19442 -https://www.oceanexpert.org/institution/19443 -https://www.oceanexpert.org/institution/19444 -https://www.oceanexpert.org/institution/19446 -https://www.oceanexpert.org/institution/19448 -https://www.oceanexpert.org/institution/19449 -https://www.oceanexpert.org/institution/19450 -https://www.oceanexpert.org/institution/19451 -https://www.oceanexpert.org/institution/19452 -https://www.oceanexpert.org/institution/19453 -https://www.oceanexpert.org/institution/19454 -https://www.oceanexpert.org/institution/19455 -https://www.oceanexpert.org/institution/19456 -https://www.oceanexpert.org/institution/19457 -https://www.oceanexpert.org/institution/19458 -https://www.oceanexpert.org/institution/19459 -https://www.oceanexpert.org/institution/19460 -https://www.oceanexpert.org/institution/19461 -https://www.oceanexpert.org/institution/19463 -https://www.oceanexpert.org/institution/19465 -https://www.oceanexpert.org/institution/19467 -https://www.oceanexpert.org/institution/19469 -https://www.oceanexpert.org/institution/19470 -https://www.oceanexpert.org/institution/19471 -https://www.oceanexpert.org/institution/19472 -https://www.oceanexpert.org/institution/19473 -https://www.oceanexpert.org/institution/19474 -https://www.oceanexpert.org/institution/19475 -https://www.oceanexpert.org/institution/19476 -https://www.oceanexpert.org/institution/19477 -https://www.oceanexpert.org/institution/19478 -https://www.oceanexpert.org/institution/19479 -https://www.oceanexpert.org/institution/19480 -https://www.oceanexpert.org/institution/19481 -https://www.oceanexpert.org/institution/19482 -https://www.oceanexpert.org/institution/19483 -https://www.oceanexpert.org/institution/19485 -https://www.oceanexpert.org/institution/19486 -https://www.oceanexpert.org/institution/19487 -https://www.oceanexpert.org/institution/19488 -https://www.oceanexpert.org/institution/19490 -https://www.oceanexpert.org/institution/19491 -https://www.oceanexpert.org/institution/19492 -https://www.oceanexpert.org/institution/19493 -https://www.oceanexpert.org/institution/19494 -https://www.oceanexpert.org/institution/19495 -https://www.oceanexpert.org/institution/19496 -https://www.oceanexpert.org/institution/19497 -https://www.oceanexpert.org/institution/19498 -https://www.oceanexpert.org/institution/19499 -https://www.oceanexpert.org/institution/19500 -https://www.oceanexpert.org/institution/19501 -https://www.oceanexpert.org/institution/19502 -https://www.oceanexpert.org/institution/19503 -https://www.oceanexpert.org/institution/19504 -https://www.oceanexpert.org/institution/19505 -https://www.oceanexpert.org/institution/19506 -https://www.oceanexpert.org/institution/19507 -https://www.oceanexpert.org/institution/19508 -https://www.oceanexpert.org/institution/19509 -https://www.oceanexpert.org/institution/19510 -https://www.oceanexpert.org/institution/19511 -https://www.oceanexpert.org/institution/19512 -https://www.oceanexpert.org/institution/19513 -https://www.oceanexpert.org/institution/19514 -https://www.oceanexpert.org/institution/19515 -https://www.oceanexpert.org/institution/19516 -https://www.oceanexpert.org/institution/19517 -https://www.oceanexpert.org/institution/19518 -https://www.oceanexpert.org/institution/19519 -https://www.oceanexpert.org/institution/19521 -https://www.oceanexpert.org/institution/19522 -https://www.oceanexpert.org/institution/19524 -https://www.oceanexpert.org/institution/19525 -https://www.oceanexpert.org/institution/19526 -https://www.oceanexpert.org/institution/19527 -https://www.oceanexpert.org/institution/19528 -https://www.oceanexpert.org/institution/19529 -https://www.oceanexpert.org/institution/19530 -https://www.oceanexpert.org/institution/19531 -https://www.oceanexpert.org/institution/19532 -https://www.oceanexpert.org/institution/19533 -https://www.oceanexpert.org/institution/19534 -https://www.oceanexpert.org/institution/19535 -https://www.oceanexpert.org/institution/19536 -https://www.oceanexpert.org/institution/19537 -https://www.oceanexpert.org/institution/19538 -https://www.oceanexpert.org/institution/19539 -https://www.oceanexpert.org/institution/19540 -https://www.oceanexpert.org/institution/19541 -https://www.oceanexpert.org/institution/19542 -https://www.oceanexpert.org/institution/19543 -https://www.oceanexpert.org/institution/19544 -https://www.oceanexpert.org/institution/19545 -https://www.oceanexpert.org/institution/19546 -https://www.oceanexpert.org/institution/19547 -https://www.oceanexpert.org/institution/19548 -https://www.oceanexpert.org/institution/19549 -https://www.oceanexpert.org/institution/19550 -https://www.oceanexpert.org/institution/19551 -https://www.oceanexpert.org/institution/19552 -https://www.oceanexpert.org/institution/19553 -https://www.oceanexpert.org/institution/19554 -https://www.oceanexpert.org/institution/19555 -https://www.oceanexpert.org/institution/19556 -https://www.oceanexpert.org/institution/19557 -https://www.oceanexpert.org/institution/19558 -https://www.oceanexpert.org/institution/19559 -https://www.oceanexpert.org/institution/19560 -https://www.oceanexpert.org/institution/19561 -https://www.oceanexpert.org/institution/19562 -https://www.oceanexpert.org/institution/19563 -https://www.oceanexpert.org/institution/19564 -https://www.oceanexpert.org/institution/19565 -https://www.oceanexpert.org/institution/19566 -https://www.oceanexpert.org/institution/19567 -https://www.oceanexpert.org/institution/19568 -https://www.oceanexpert.org/institution/19569 -https://www.oceanexpert.org/institution/19570 -https://www.oceanexpert.org/institution/19571 -https://www.oceanexpert.org/institution/19572 -https://www.oceanexpert.org/institution/19573 -https://www.oceanexpert.org/institution/19574 -https://www.oceanexpert.org/institution/19575 -https://www.oceanexpert.org/institution/19576 -https://www.oceanexpert.org/institution/19577 -https://www.oceanexpert.org/institution/19578 -https://www.oceanexpert.org/institution/19579 -https://www.oceanexpert.org/institution/19580 -https://www.oceanexpert.org/institution/19582 -https://www.oceanexpert.org/institution/19583 -https://www.oceanexpert.org/institution/19584 -https://www.oceanexpert.org/institution/19585 -https://www.oceanexpert.org/institution/19586 -https://www.oceanexpert.org/institution/19587 -https://www.oceanexpert.org/institution/19588 -https://www.oceanexpert.org/institution/19589 -https://www.oceanexpert.org/institution/19590 -https://www.oceanexpert.org/institution/19591 -https://www.oceanexpert.org/institution/19592 -https://www.oceanexpert.org/institution/19593 -https://www.oceanexpert.org/institution/19594 -https://www.oceanexpert.org/institution/19595 -https://www.oceanexpert.org/institution/19596 -https://www.oceanexpert.org/institution/19597 -https://www.oceanexpert.org/institution/19598 -https://www.oceanexpert.org/institution/19599 -https://www.oceanexpert.org/institution/19600 -https://www.oceanexpert.org/institution/19601 -https://www.oceanexpert.org/institution/19602 -https://www.oceanexpert.org/institution/19604 -https://www.oceanexpert.org/institution/19605 -https://www.oceanexpert.org/institution/19606 -https://www.oceanexpert.org/institution/19607 -https://www.oceanexpert.org/institution/19608 -https://www.oceanexpert.org/institution/19609 -https://www.oceanexpert.org/institution/19610 -https://www.oceanexpert.org/institution/19611 -https://www.oceanexpert.org/institution/19612 -https://www.oceanexpert.org/institution/19613 -https://www.oceanexpert.org/institution/19614 -https://www.oceanexpert.org/institution/19615 -https://www.oceanexpert.org/institution/19616 -https://www.oceanexpert.org/institution/19617 -https://www.oceanexpert.org/institution/19618 -https://www.oceanexpert.org/institution/19619 -https://www.oceanexpert.org/institution/19620 -https://www.oceanexpert.org/institution/19621 -https://www.oceanexpert.org/institution/19622 -https://www.oceanexpert.org/institution/19623 -https://www.oceanexpert.org/institution/19624 -https://www.oceanexpert.org/institution/19625 -https://www.oceanexpert.org/institution/19626 -https://www.oceanexpert.org/institution/19627 -https://www.oceanexpert.org/institution/19628 -https://www.oceanexpert.org/institution/19629 -https://www.oceanexpert.org/institution/19630 -https://www.oceanexpert.org/institution/19632 -https://www.oceanexpert.org/institution/19633 -https://www.oceanexpert.org/institution/19634 -https://www.oceanexpert.org/institution/19635 -https://www.oceanexpert.org/institution/19636 -https://www.oceanexpert.org/institution/19641 -https://www.oceanexpert.org/institution/19642 -https://www.oceanexpert.org/institution/19643 -https://www.oceanexpert.org/institution/19644 -https://www.oceanexpert.org/institution/19645 -https://www.oceanexpert.org/institution/19646 -https://www.oceanexpert.org/institution/19647 -https://www.oceanexpert.org/institution/19648 -https://www.oceanexpert.org/institution/19651 -https://www.oceanexpert.org/institution/19652 -https://www.oceanexpert.org/institution/19653 -https://www.oceanexpert.org/institution/19655 -https://www.oceanexpert.org/institution/19657 -https://www.oceanexpert.org/institution/19658 -https://www.oceanexpert.org/institution/19659 -https://www.oceanexpert.org/institution/19662 -https://www.oceanexpert.org/institution/19663 -https://www.oceanexpert.org/institution/19664 -https://www.oceanexpert.org/institution/19667 -https://www.oceanexpert.org/institution/19668 -https://www.oceanexpert.org/institution/19670 -https://www.oceanexpert.org/institution/19672 -https://www.oceanexpert.org/institution/19673 -https://www.oceanexpert.org/institution/19674 -https://www.oceanexpert.org/institution/19675 -https://www.oceanexpert.org/institution/19676 -https://www.oceanexpert.org/institution/19677 -https://www.oceanexpert.org/institution/19678 -https://www.oceanexpert.org/institution/19679 -https://www.oceanexpert.org/institution/19680 -https://www.oceanexpert.org/institution/19682 -https://www.oceanexpert.org/institution/19683 -https://www.oceanexpert.org/institution/19684 -https://www.oceanexpert.org/institution/19686 -https://www.oceanexpert.org/institution/19687 -https://www.oceanexpert.org/institution/19688 -https://www.oceanexpert.org/institution/19691 -https://www.oceanexpert.org/institution/19692 -https://www.oceanexpert.org/institution/19693 -https://www.oceanexpert.org/institution/19694 -https://www.oceanexpert.org/institution/19695 -https://www.oceanexpert.org/institution/19696 -https://www.oceanexpert.org/institution/19697 -https://www.oceanexpert.org/institution/19699 -https://www.oceanexpert.org/institution/19700 -https://www.oceanexpert.org/institution/19701 -https://www.oceanexpert.org/institution/19702 -https://www.oceanexpert.org/institution/19704 -https://www.oceanexpert.org/institution/19705 -https://www.oceanexpert.org/institution/19706 -https://www.oceanexpert.org/institution/19708 -https://www.oceanexpert.org/institution/19709 -https://www.oceanexpert.org/institution/19710 -https://www.oceanexpert.org/institution/19712 -https://www.oceanexpert.org/institution/19713 -https://www.oceanexpert.org/institution/19714 -https://www.oceanexpert.org/institution/19715 -https://www.oceanexpert.org/institution/19717 -https://www.oceanexpert.org/institution/19718 -https://www.oceanexpert.org/institution/19719 -https://www.oceanexpert.org/institution/19720 -https://www.oceanexpert.org/institution/19722 -https://www.oceanexpert.org/institution/19723 -https://www.oceanexpert.org/institution/19724 -https://www.oceanexpert.org/institution/19726 -https://www.oceanexpert.org/institution/19728 -https://www.oceanexpert.org/institution/19731 -https://www.oceanexpert.org/institution/19733 -https://www.oceanexpert.org/institution/19735 -https://www.oceanexpert.org/institution/19736 -https://www.oceanexpert.org/institution/19738 -https://www.oceanexpert.org/institution/19739 -https://www.oceanexpert.org/institution/19740 -https://www.oceanexpert.org/institution/19742 -https://www.oceanexpert.org/institution/19743 -https://www.oceanexpert.org/institution/19744 -https://www.oceanexpert.org/institution/19745 -https://www.oceanexpert.org/institution/19746 -https://www.oceanexpert.org/institution/19747 -https://www.oceanexpert.org/institution/19748 -https://www.oceanexpert.org/institution/19749 -https://www.oceanexpert.org/institution/19750 -https://www.oceanexpert.org/institution/19751 -https://www.oceanexpert.org/institution/19752 -https://www.oceanexpert.org/institution/19754 -https://www.oceanexpert.org/institution/19756 -https://www.oceanexpert.org/institution/19757 -https://www.oceanexpert.org/institution/19758 -https://www.oceanexpert.org/institution/19760 -https://www.oceanexpert.org/institution/19762 -https://www.oceanexpert.org/institution/19763 -https://www.oceanexpert.org/institution/19764 -https://www.oceanexpert.org/institution/19765 -https://www.oceanexpert.org/institution/19766 -https://www.oceanexpert.org/institution/19768 -https://www.oceanexpert.org/institution/19769 -https://www.oceanexpert.org/institution/19773 -https://www.oceanexpert.org/institution/19776 -https://www.oceanexpert.org/institution/19778 -https://www.oceanexpert.org/institution/19779 -https://www.oceanexpert.org/institution/19780 -https://www.oceanexpert.org/institution/19781 -https://www.oceanexpert.org/institution/19782 -https://www.oceanexpert.org/institution/19783 -https://www.oceanexpert.org/institution/19785 -https://www.oceanexpert.org/institution/19786 -https://www.oceanexpert.org/institution/19787 -https://www.oceanexpert.org/institution/19788 -https://www.oceanexpert.org/institution/19789 -https://www.oceanexpert.org/institution/19790 -https://www.oceanexpert.org/institution/19792 -https://www.oceanexpert.org/institution/19793 -https://www.oceanexpert.org/institution/19795 -https://www.oceanexpert.org/institution/19796 -https://www.oceanexpert.org/institution/19797 -https://www.oceanexpert.org/institution/19798 -https://www.oceanexpert.org/institution/19799 -https://www.oceanexpert.org/institution/19800 -https://www.oceanexpert.org/institution/19801 -https://www.oceanexpert.org/institution/19802 -https://www.oceanexpert.org/institution/19803 -https://www.oceanexpert.org/institution/19805 -https://www.oceanexpert.org/institution/19806 -https://www.oceanexpert.org/institution/19809 -https://www.oceanexpert.org/institution/19810 -https://www.oceanexpert.org/institution/19811 -https://www.oceanexpert.org/institution/19812 -https://www.oceanexpert.org/institution/19813 -https://www.oceanexpert.org/institution/19814 -https://www.oceanexpert.org/institution/19817 -https://www.oceanexpert.org/institution/19818 -https://www.oceanexpert.org/institution/19821 -https://www.oceanexpert.org/institution/19823 -https://www.oceanexpert.org/institution/19824 -https://www.oceanexpert.org/institution/19825 -https://www.oceanexpert.org/institution/19829 -https://www.oceanexpert.org/institution/19830 -https://www.oceanexpert.org/institution/19832 -https://www.oceanexpert.org/institution/19833 -https://www.oceanexpert.org/institution/19834 -https://www.oceanexpert.org/institution/19835 -https://www.oceanexpert.org/institution/19837 -https://www.oceanexpert.org/institution/19838 -https://www.oceanexpert.org/institution/19840 -https://www.oceanexpert.org/institution/19842 -https://www.oceanexpert.org/institution/19845 -https://www.oceanexpert.org/institution/19847 -https://www.oceanexpert.org/institution/19848 -https://www.oceanexpert.org/institution/19850 -https://www.oceanexpert.org/institution/19851 -https://www.oceanexpert.org/institution/19852 -https://www.oceanexpert.org/institution/19853 -https://www.oceanexpert.org/institution/19854 -https://www.oceanexpert.org/institution/19855 -https://www.oceanexpert.org/institution/19856 -https://www.oceanexpert.org/institution/19857 -https://www.oceanexpert.org/institution/19860 -https://www.oceanexpert.org/institution/19862 -https://www.oceanexpert.org/institution/19863 -https://www.oceanexpert.org/institution/19865 -https://www.oceanexpert.org/institution/19866 -https://www.oceanexpert.org/institution/19867 -https://www.oceanexpert.org/institution/19874 -https://www.oceanexpert.org/institution/19875 -https://www.oceanexpert.org/institution/19876 -https://www.oceanexpert.org/institution/19877 -https://www.oceanexpert.org/institution/19878 -https://www.oceanexpert.org/institution/19879 -https://www.oceanexpert.org/institution/19880 -https://www.oceanexpert.org/institution/19882 -https://www.oceanexpert.org/institution/19883 -https://www.oceanexpert.org/institution/19884 -https://www.oceanexpert.org/institution/19885 -https://www.oceanexpert.org/institution/19886 -https://www.oceanexpert.org/institution/19887 -https://www.oceanexpert.org/institution/19888 -https://www.oceanexpert.org/institution/19889 -https://www.oceanexpert.org/institution/19890 -https://www.oceanexpert.org/institution/19891 -https://www.oceanexpert.org/institution/19893 -https://www.oceanexpert.org/institution/19898 -https://www.oceanexpert.org/institution/19899 -https://www.oceanexpert.org/institution/19901 -https://www.oceanexpert.org/institution/19902 -https://www.oceanexpert.org/institution/19903 -https://www.oceanexpert.org/institution/19906 -https://www.oceanexpert.org/institution/19909 -https://www.oceanexpert.org/institution/19910 -https://www.oceanexpert.org/institution/19911 -https://www.oceanexpert.org/institution/19912 -https://www.oceanexpert.org/institution/19913 -https://www.oceanexpert.org/institution/19914 -https://www.oceanexpert.org/institution/19915 -https://www.oceanexpert.org/institution/19916 -https://www.oceanexpert.org/institution/19917 -https://www.oceanexpert.org/institution/19919 -https://www.oceanexpert.org/institution/19920 -https://www.oceanexpert.org/institution/19921 -https://www.oceanexpert.org/institution/19922 -https://www.oceanexpert.org/institution/19923 -https://www.oceanexpert.org/institution/19926 -https://www.oceanexpert.org/institution/19927 -https://www.oceanexpert.org/institution/19928 -https://www.oceanexpert.org/institution/19929 -https://www.oceanexpert.org/institution/19930 -https://www.oceanexpert.org/institution/19931 -https://www.oceanexpert.org/institution/19932 -https://www.oceanexpert.org/institution/19933 -https://www.oceanexpert.org/institution/19935 -https://www.oceanexpert.org/institution/19936 -https://www.oceanexpert.org/institution/19940 -https://www.oceanexpert.org/institution/19942 -https://www.oceanexpert.org/institution/19943 -https://www.oceanexpert.org/institution/19944 -https://www.oceanexpert.org/institution/19947 -https://www.oceanexpert.org/institution/19948 -https://www.oceanexpert.org/institution/19950 -https://www.oceanexpert.org/institution/19951 -https://www.oceanexpert.org/institution/19954 -https://www.oceanexpert.org/institution/19955 -https://www.oceanexpert.org/institution/19956 -https://www.oceanexpert.org/institution/19957 -https://www.oceanexpert.org/institution/19959 -https://www.oceanexpert.org/institution/19967 -https://www.oceanexpert.org/institution/19968 -https://www.oceanexpert.org/institution/19973 -https://www.oceanexpert.org/institution/19974 -https://www.oceanexpert.org/institution/19975 -https://www.oceanexpert.org/institution/19976 -https://www.oceanexpert.org/institution/19977 -https://www.oceanexpert.org/institution/19978 -https://www.oceanexpert.org/institution/19980 -https://www.oceanexpert.org/institution/19981 -https://www.oceanexpert.org/institution/19982 -https://www.oceanexpert.org/institution/19983 -https://www.oceanexpert.org/institution/19984 -https://www.oceanexpert.org/institution/19987 -https://www.oceanexpert.org/institution/19988 -https://www.oceanexpert.org/institution/19991 -https://www.oceanexpert.org/institution/19992 -https://www.oceanexpert.org/institution/19994 -https://www.oceanexpert.org/institution/19996 -https://www.oceanexpert.org/institution/19997 -https://www.oceanexpert.org/institution/19998 -https://www.oceanexpert.org/institution/20000 -https://www.oceanexpert.org/institution/20002 -https://www.oceanexpert.org/institution/20003 -https://www.oceanexpert.org/institution/20004 -https://www.oceanexpert.org/institution/20006 -https://www.oceanexpert.org/institution/20009 -https://www.oceanexpert.org/institution/20010 -https://www.oceanexpert.org/institution/20011 -https://www.oceanexpert.org/institution/20012 -https://www.oceanexpert.org/institution/20014 -https://www.oceanexpert.org/institution/20015 -https://www.oceanexpert.org/institution/20016 -https://www.oceanexpert.org/institution/20018 -https://www.oceanexpert.org/institution/20019 -https://www.oceanexpert.org/institution/20020 -https://www.oceanexpert.org/institution/20021 -https://www.oceanexpert.org/institution/20026 -https://www.oceanexpert.org/institution/20028 -https://www.oceanexpert.org/institution/20029 -https://www.oceanexpert.org/institution/20030 -https://www.oceanexpert.org/institution/20031 -https://www.oceanexpert.org/institution/20032 -https://www.oceanexpert.org/institution/20033 -https://www.oceanexpert.org/institution/20034 -https://www.oceanexpert.org/institution/20035 -https://www.oceanexpert.org/institution/20036 -https://www.oceanexpert.org/institution/20038 -https://www.oceanexpert.org/institution/20039 -https://www.oceanexpert.org/institution/20040 -https://www.oceanexpert.org/institution/20044 -https://www.oceanexpert.org/institution/20045 -https://www.oceanexpert.org/institution/20046 -https://www.oceanexpert.org/institution/20047 -https://www.oceanexpert.org/institution/20048 -https://www.oceanexpert.org/institution/20049 -https://www.oceanexpert.org/institution/20050 -https://www.oceanexpert.org/institution/20051 -https://www.oceanexpert.org/institution/20053 -https://www.oceanexpert.org/institution/20054 -https://www.oceanexpert.org/institution/20056 -https://www.oceanexpert.org/institution/20057 -https://www.oceanexpert.org/institution/20058 -https://www.oceanexpert.org/institution/20059 -https://www.oceanexpert.org/institution/20060 -https://www.oceanexpert.org/institution/20061 -https://www.oceanexpert.org/institution/20063 -https://www.oceanexpert.org/institution/20064 -https://www.oceanexpert.org/institution/20065 -https://www.oceanexpert.org/institution/20066 -https://www.oceanexpert.org/institution/20067 -https://www.oceanexpert.org/institution/20069 -https://www.oceanexpert.org/institution/20070 -https://www.oceanexpert.org/institution/20071 -https://www.oceanexpert.org/institution/20073 -https://www.oceanexpert.org/institution/20074 -https://www.oceanexpert.org/institution/20076 -https://www.oceanexpert.org/institution/20077 -https://www.oceanexpert.org/institution/20078 -https://www.oceanexpert.org/institution/20080 -https://www.oceanexpert.org/institution/20081 -https://www.oceanexpert.org/institution/20082 -https://www.oceanexpert.org/institution/20085 -https://www.oceanexpert.org/institution/20086 -https://www.oceanexpert.org/institution/20087 -https://www.oceanexpert.org/institution/20088 -https://www.oceanexpert.org/institution/20089 -https://www.oceanexpert.org/institution/20091 -https://www.oceanexpert.org/institution/20092 -https://www.oceanexpert.org/institution/20093 -https://www.oceanexpert.org/institution/20094 -https://www.oceanexpert.org/institution/20095 -https://www.oceanexpert.org/institution/20096 -https://www.oceanexpert.org/institution/20097 -https://www.oceanexpert.org/institution/20098 -https://www.oceanexpert.org/institution/20100 -https://www.oceanexpert.org/institution/20101 -https://www.oceanexpert.org/institution/20102 -https://www.oceanexpert.org/institution/20103 -https://www.oceanexpert.org/institution/20107 -https://www.oceanexpert.org/institution/20108 -https://www.oceanexpert.org/institution/20110 -https://www.oceanexpert.org/institution/20111 -https://www.oceanexpert.org/institution/20112 -https://www.oceanexpert.org/institution/20116 -https://www.oceanexpert.org/institution/20117 -https://www.oceanexpert.org/institution/20118 -https://www.oceanexpert.org/institution/20120 -https://www.oceanexpert.org/institution/20121 -https://www.oceanexpert.org/institution/20122 -https://www.oceanexpert.org/institution/20124 -https://www.oceanexpert.org/institution/20125 -https://www.oceanexpert.org/institution/20126 -https://www.oceanexpert.org/institution/20127 -https://www.oceanexpert.org/institution/20129 -https://www.oceanexpert.org/institution/20131 -https://www.oceanexpert.org/institution/20134 -https://www.oceanexpert.org/institution/20136 -https://www.oceanexpert.org/institution/20137 -https://www.oceanexpert.org/institution/20138 -https://www.oceanexpert.org/institution/20141 -https://www.oceanexpert.org/institution/20143 -https://www.oceanexpert.org/institution/20145 -https://www.oceanexpert.org/institution/20147 -https://www.oceanexpert.org/institution/20150 -https://www.oceanexpert.org/institution/20151 -https://www.oceanexpert.org/institution/20152 -https://www.oceanexpert.org/institution/20153 -https://www.oceanexpert.org/institution/20154 -https://www.oceanexpert.org/institution/20155 -https://www.oceanexpert.org/institution/20156 -https://www.oceanexpert.org/institution/20159 -https://www.oceanexpert.org/institution/20160 -https://www.oceanexpert.org/institution/20161 -https://www.oceanexpert.org/institution/20162 -https://www.oceanexpert.org/institution/20164 -https://www.oceanexpert.org/institution/20166 -https://www.oceanexpert.org/institution/20169 -https://www.oceanexpert.org/institution/20170 -https://www.oceanexpert.org/institution/20171 -https://www.oceanexpert.org/institution/20173 -https://www.oceanexpert.org/institution/20174 -https://www.oceanexpert.org/institution/20176 -https://www.oceanexpert.org/institution/20177 -https://www.oceanexpert.org/institution/20180 -https://www.oceanexpert.org/institution/20181 -https://www.oceanexpert.org/institution/20182 -https://www.oceanexpert.org/institution/20183 -https://www.oceanexpert.org/institution/20186 -https://www.oceanexpert.org/institution/20187 -https://www.oceanexpert.org/institution/20188 -https://www.oceanexpert.org/institution/20189 -https://www.oceanexpert.org/institution/20190 -https://www.oceanexpert.org/institution/20192 -https://www.oceanexpert.org/institution/20195 -https://www.oceanexpert.org/institution/20196 -https://www.oceanexpert.org/institution/20198 -https://www.oceanexpert.org/institution/20199 -https://www.oceanexpert.org/institution/20201 -https://www.oceanexpert.org/institution/20202 -https://www.oceanexpert.org/institution/20203 -https://www.oceanexpert.org/institution/20205 -https://www.oceanexpert.org/institution/20206 -https://www.oceanexpert.org/institution/20207 -https://www.oceanexpert.org/institution/20209 -https://www.oceanexpert.org/institution/20210 -https://www.oceanexpert.org/institution/20211 -https://www.oceanexpert.org/institution/20212 -https://www.oceanexpert.org/institution/20213 -https://www.oceanexpert.org/institution/20215 -https://www.oceanexpert.org/institution/20216 -https://www.oceanexpert.org/institution/20217 -https://www.oceanexpert.org/institution/20218 -https://www.oceanexpert.org/institution/20222 -https://www.oceanexpert.org/institution/20223 -https://www.oceanexpert.org/institution/20228 -https://www.oceanexpert.org/institution/20229 -https://www.oceanexpert.org/institution/20230 -https://www.oceanexpert.org/institution/20231 -https://www.oceanexpert.org/institution/20232 -https://www.oceanexpert.org/institution/20235 -https://www.oceanexpert.org/institution/20236 -https://www.oceanexpert.org/institution/20238 -https://www.oceanexpert.org/institution/20240 -https://www.oceanexpert.org/institution/20241 -https://www.oceanexpert.org/institution/20242 -https://www.oceanexpert.org/institution/20245 -https://www.oceanexpert.org/institution/20248 -https://www.oceanexpert.org/institution/20256 -https://www.oceanexpert.org/institution/20257 -https://www.oceanexpert.org/institution/20258 -https://www.oceanexpert.org/institution/20259 -https://www.oceanexpert.org/institution/20261 -https://www.oceanexpert.org/institution/20262 -https://www.oceanexpert.org/institution/20263 -https://www.oceanexpert.org/institution/20265 -https://www.oceanexpert.org/institution/20266 -https://www.oceanexpert.org/institution/20267 -https://www.oceanexpert.org/institution/20271 -https://www.oceanexpert.org/institution/20273 -https://www.oceanexpert.org/institution/20279 -https://www.oceanexpert.org/institution/20280 -https://www.oceanexpert.org/institution/20281 -https://www.oceanexpert.org/institution/20282 -https://www.oceanexpert.org/institution/20283 -https://www.oceanexpert.org/institution/20284 -https://www.oceanexpert.org/institution/20288 -https://www.oceanexpert.org/institution/20289 -https://www.oceanexpert.org/institution/20290 -https://www.oceanexpert.org/institution/20293 -https://www.oceanexpert.org/institution/20296 -https://www.oceanexpert.org/institution/20297 -https://www.oceanexpert.org/institution/20299 -https://www.oceanexpert.org/institution/20301 -https://www.oceanexpert.org/institution/20302 -https://www.oceanexpert.org/institution/20305 -https://www.oceanexpert.org/institution/20306 -https://www.oceanexpert.org/institution/20307 -https://www.oceanexpert.org/institution/20308 -https://www.oceanexpert.org/institution/20310 -https://www.oceanexpert.org/institution/20312 -https://www.oceanexpert.org/institution/20313 -https://www.oceanexpert.org/institution/20314 -https://www.oceanexpert.org/institution/20319 -https://www.oceanexpert.org/institution/20321 -https://www.oceanexpert.org/institution/20323 -https://www.oceanexpert.org/institution/20324 -https://www.oceanexpert.org/institution/20325 -https://www.oceanexpert.org/institution/20329 -https://www.oceanexpert.org/institution/20332 -https://www.oceanexpert.org/institution/20334 -https://www.oceanexpert.org/institution/20336 -https://www.oceanexpert.org/institution/20338 -https://www.oceanexpert.org/institution/20341 -https://www.oceanexpert.org/institution/20342 -https://www.oceanexpert.org/institution/20343 -https://www.oceanexpert.org/institution/20344 -https://www.oceanexpert.org/institution/20345 -https://www.oceanexpert.org/institution/20347 -https://www.oceanexpert.org/institution/20349 -https://www.oceanexpert.org/institution/20351 -https://www.oceanexpert.org/institution/20356 -https://www.oceanexpert.org/institution/20358 -https://www.oceanexpert.org/institution/20359 -https://www.oceanexpert.org/institution/20360 -https://www.oceanexpert.org/institution/20362 -https://www.oceanexpert.org/institution/20364 -https://www.oceanexpert.org/institution/20365 -https://www.oceanexpert.org/institution/20366 -https://www.oceanexpert.org/institution/20368 -https://www.oceanexpert.org/institution/20369 -https://www.oceanexpert.org/institution/20372 -https://www.oceanexpert.org/institution/20374 -https://www.oceanexpert.org/institution/20375 -https://www.oceanexpert.org/institution/20376 -https://www.oceanexpert.org/institution/20378 -https://www.oceanexpert.org/institution/20379 -https://www.oceanexpert.org/institution/20380 -https://www.oceanexpert.org/institution/20381 -https://www.oceanexpert.org/institution/20382 -https://www.oceanexpert.org/institution/20387 -https://www.oceanexpert.org/institution/20389 -https://www.oceanexpert.org/institution/20390 -https://www.oceanexpert.org/institution/20391 -https://www.oceanexpert.org/institution/20392 -https://www.oceanexpert.org/institution/20394 -https://www.oceanexpert.org/institution/20395 -https://www.oceanexpert.org/institution/20396 -https://www.oceanexpert.org/institution/20397 -https://www.oceanexpert.org/institution/20398 -https://www.oceanexpert.org/institution/20399 -https://www.oceanexpert.org/institution/20400 -https://www.oceanexpert.org/institution/20401 -https://www.oceanexpert.org/institution/20402 -https://www.oceanexpert.org/institution/20405 -https://www.oceanexpert.org/institution/20406 -https://www.oceanexpert.org/institution/20408 -https://www.oceanexpert.org/institution/20410 -https://www.oceanexpert.org/institution/20411 -https://www.oceanexpert.org/institution/20413 -https://www.oceanexpert.org/institution/20414 -https://www.oceanexpert.org/institution/20416 -https://www.oceanexpert.org/institution/20417 -https://www.oceanexpert.org/institution/20418 -https://www.oceanexpert.org/institution/20419 -https://www.oceanexpert.org/institution/20420 -https://www.oceanexpert.org/institution/20423 -https://www.oceanexpert.org/institution/20424 -https://www.oceanexpert.org/institution/20425 -https://www.oceanexpert.org/institution/20426 -https://www.oceanexpert.org/institution/20427 -https://www.oceanexpert.org/institution/20428 -https://www.oceanexpert.org/institution/20429 -https://www.oceanexpert.org/institution/20430 -https://www.oceanexpert.org/institution/20432 -https://www.oceanexpert.org/institution/20433 -https://www.oceanexpert.org/institution/20434 -https://www.oceanexpert.org/institution/20437 -https://www.oceanexpert.org/institution/20438 -https://www.oceanexpert.org/institution/20439 -https://www.oceanexpert.org/institution/20440 -https://www.oceanexpert.org/institution/20441 -https://www.oceanexpert.org/institution/20444 -https://www.oceanexpert.org/institution/20445 -https://www.oceanexpert.org/institution/20446 -https://www.oceanexpert.org/institution/20448 -https://www.oceanexpert.org/institution/20450 -https://www.oceanexpert.org/institution/20451 -https://www.oceanexpert.org/institution/20452 -https://www.oceanexpert.org/institution/20453 -https://www.oceanexpert.org/institution/20456 -https://www.oceanexpert.org/institution/20458 -https://www.oceanexpert.org/institution/20459 -https://www.oceanexpert.org/institution/20460 -https://www.oceanexpert.org/institution/20462 -https://www.oceanexpert.org/institution/20464 -https://www.oceanexpert.org/institution/20465 -https://www.oceanexpert.org/institution/20466 -https://www.oceanexpert.org/institution/20468 -https://www.oceanexpert.org/institution/20470 -https://www.oceanexpert.org/institution/20472 -https://www.oceanexpert.org/institution/20476 -https://www.oceanexpert.org/institution/20477 -https://www.oceanexpert.org/institution/20478 -https://www.oceanexpert.org/institution/20479 -https://www.oceanexpert.org/institution/20480 -https://www.oceanexpert.org/institution/20482 -https://www.oceanexpert.org/institution/20483 -https://www.oceanexpert.org/institution/20484 -https://www.oceanexpert.org/institution/20486 -https://www.oceanexpert.org/institution/20489 -https://www.oceanexpert.org/institution/20491 -https://www.oceanexpert.org/institution/20492 -https://www.oceanexpert.org/institution/20495 -https://www.oceanexpert.org/institution/20496 -https://www.oceanexpert.org/institution/20497 -https://www.oceanexpert.org/institution/20498 -https://www.oceanexpert.org/institution/20499 -https://www.oceanexpert.org/institution/20500 -https://www.oceanexpert.org/institution/20502 -https://www.oceanexpert.org/institution/20507 -https://www.oceanexpert.org/institution/20508 -https://www.oceanexpert.org/institution/20509 -https://www.oceanexpert.org/institution/20510 -https://www.oceanexpert.org/institution/20511 -https://www.oceanexpert.org/institution/20513 -https://www.oceanexpert.org/institution/20514 -https://www.oceanexpert.org/institution/20517 -https://www.oceanexpert.org/institution/20518 -https://www.oceanexpert.org/institution/20519 -https://www.oceanexpert.org/institution/20521 -https://www.oceanexpert.org/institution/20523 -https://www.oceanexpert.org/institution/20524 -https://www.oceanexpert.org/institution/20525 -https://www.oceanexpert.org/institution/20526 -https://www.oceanexpert.org/institution/20527 -https://www.oceanexpert.org/institution/20528 -https://www.oceanexpert.org/institution/20529 -https://www.oceanexpert.org/institution/20533 -https://www.oceanexpert.org/institution/20534 -https://www.oceanexpert.org/institution/20539 -https://www.oceanexpert.org/institution/20540 -https://www.oceanexpert.org/institution/20541 -https://www.oceanexpert.org/institution/20542 -https://www.oceanexpert.org/institution/20543 -https://www.oceanexpert.org/institution/20545 -https://www.oceanexpert.org/institution/20548 -https://www.oceanexpert.org/institution/20549 -https://www.oceanexpert.org/institution/20551 -https://www.oceanexpert.org/institution/20552 -https://www.oceanexpert.org/institution/20555 -https://www.oceanexpert.org/institution/20556 -https://www.oceanexpert.org/institution/20557 -https://www.oceanexpert.org/institution/20561 -https://www.oceanexpert.org/institution/20562 -https://www.oceanexpert.org/institution/20564 -https://www.oceanexpert.org/institution/20565 -https://www.oceanexpert.org/institution/20566 -https://www.oceanexpert.org/institution/20571 -https://www.oceanexpert.org/institution/20572 -https://www.oceanexpert.org/institution/20573 -https://www.oceanexpert.org/institution/20574 -https://www.oceanexpert.org/institution/20577 -https://www.oceanexpert.org/institution/20578 -https://www.oceanexpert.org/institution/20579 -https://www.oceanexpert.org/institution/20580 -https://www.oceanexpert.org/institution/20581 -https://www.oceanexpert.org/institution/20586 -https://www.oceanexpert.org/institution/20587 -https://www.oceanexpert.org/institution/20588 -https://www.oceanexpert.org/institution/20589 -https://www.oceanexpert.org/institution/20592 -https://www.oceanexpert.org/institution/20594 -https://www.oceanexpert.org/institution/20595 -https://www.oceanexpert.org/institution/20597 -https://www.oceanexpert.org/institution/20598 -https://www.oceanexpert.org/institution/20602 -https://www.oceanexpert.org/institution/20603 -https://www.oceanexpert.org/institution/20606 -https://www.oceanexpert.org/institution/20608 -https://www.oceanexpert.org/institution/20609 -https://www.oceanexpert.org/institution/20610 -https://www.oceanexpert.org/institution/20612 -https://www.oceanexpert.org/institution/20613 -https://www.oceanexpert.org/institution/20614 -https://www.oceanexpert.org/institution/20615 -https://www.oceanexpert.org/institution/20616 -https://www.oceanexpert.org/institution/20617 -https://www.oceanexpert.org/institution/20619 -https://www.oceanexpert.org/institution/20620 -https://www.oceanexpert.org/institution/20622 -https://www.oceanexpert.org/institution/20623 -https://www.oceanexpert.org/institution/20624 -https://www.oceanexpert.org/institution/20626 -https://www.oceanexpert.org/institution/20627 -https://www.oceanexpert.org/institution/20630 -https://www.oceanexpert.org/institution/20632 -https://www.oceanexpert.org/institution/20633 -https://www.oceanexpert.org/institution/20634 -https://www.oceanexpert.org/institution/20635 -https://www.oceanexpert.org/institution/20637 -https://www.oceanexpert.org/institution/20638 -https://www.oceanexpert.org/institution/20639 -https://www.oceanexpert.org/institution/20640 -https://www.oceanexpert.org/institution/20641 -https://www.oceanexpert.org/institution/20642 -https://www.oceanexpert.org/institution/20644 -https://www.oceanexpert.org/institution/20646 -https://www.oceanexpert.org/institution/20648 -https://www.oceanexpert.org/institution/20649 -https://www.oceanexpert.org/institution/20650 -https://www.oceanexpert.org/institution/20651 -https://www.oceanexpert.org/institution/20653 -https://www.oceanexpert.org/institution/20655 -https://www.oceanexpert.org/institution/20657 -https://www.oceanexpert.org/institution/20658 -https://www.oceanexpert.org/institution/20659 -https://www.oceanexpert.org/institution/20660 -https://www.oceanexpert.org/institution/20661 -https://www.oceanexpert.org/institution/20662 -https://www.oceanexpert.org/institution/20663 -https://www.oceanexpert.org/institution/20664 -https://www.oceanexpert.org/institution/20665 -https://www.oceanexpert.org/institution/20666 -https://www.oceanexpert.org/institution/20668 -https://www.oceanexpert.org/institution/20669 -https://www.oceanexpert.org/institution/20670 -https://www.oceanexpert.org/institution/20671 -https://www.oceanexpert.org/institution/20676 -https://www.oceanexpert.org/institution/20677 -https://www.oceanexpert.org/institution/20680 -https://www.oceanexpert.org/institution/20681 -https://www.oceanexpert.org/institution/20683 -https://www.oceanexpert.org/institution/20684 -https://www.oceanexpert.org/institution/20685 -https://www.oceanexpert.org/institution/20686 -https://www.oceanexpert.org/institution/20687 -https://www.oceanexpert.org/institution/20688 -https://www.oceanexpert.org/institution/20689 -https://www.oceanexpert.org/institution/20690 -https://www.oceanexpert.org/institution/20691 -https://www.oceanexpert.org/institution/20692 -https://www.oceanexpert.org/institution/20693 -https://www.oceanexpert.org/institution/20695 -https://www.oceanexpert.org/institution/20696 -https://www.oceanexpert.org/institution/20704 -https://www.oceanexpert.org/institution/20706 -https://www.oceanexpert.org/institution/20707 -https://www.oceanexpert.org/institution/20711 -https://www.oceanexpert.org/institution/20716 -https://www.oceanexpert.org/institution/20717 -https://www.oceanexpert.org/institution/20720 -https://www.oceanexpert.org/institution/20721 -https://www.oceanexpert.org/institution/20722 -https://www.oceanexpert.org/institution/20723 -https://www.oceanexpert.org/institution/20724 -https://www.oceanexpert.org/institution/20725 -https://www.oceanexpert.org/institution/20726 -https://www.oceanexpert.org/institution/20727 -https://www.oceanexpert.org/institution/20731 -https://www.oceanexpert.org/institution/20732 -https://www.oceanexpert.org/institution/20733 -https://www.oceanexpert.org/institution/20734 -https://www.oceanexpert.org/institution/20736 -https://www.oceanexpert.org/institution/20738 -https://www.oceanexpert.org/institution/20739 -https://www.oceanexpert.org/institution/20740 -https://www.oceanexpert.org/institution/20741 -https://www.oceanexpert.org/institution/20742 -https://www.oceanexpert.org/institution/20743 -https://www.oceanexpert.org/institution/20746 -https://www.oceanexpert.org/institution/20747 -https://www.oceanexpert.org/institution/20748 -https://www.oceanexpert.org/institution/20749 -https://www.oceanexpert.org/institution/20750 -https://www.oceanexpert.org/institution/20751 -https://www.oceanexpert.org/institution/20753 -https://www.oceanexpert.org/institution/20754 -https://www.oceanexpert.org/institution/20755 -https://www.oceanexpert.org/institution/20757 -https://www.oceanexpert.org/institution/20759 -https://www.oceanexpert.org/institution/20761 -https://www.oceanexpert.org/institution/20762 -https://www.oceanexpert.org/institution/20763 -https://www.oceanexpert.org/institution/20765 -https://www.oceanexpert.org/institution/20766 -https://www.oceanexpert.org/institution/20767 -https://www.oceanexpert.org/institution/20769 -https://www.oceanexpert.org/institution/20771 -https://www.oceanexpert.org/institution/20772 -https://www.oceanexpert.org/institution/20774 -https://www.oceanexpert.org/institution/20775 -https://www.oceanexpert.org/institution/20776 -https://www.oceanexpert.org/institution/20777 -https://www.oceanexpert.org/institution/20778 -https://www.oceanexpert.org/institution/20779 -https://www.oceanexpert.org/institution/20781 -https://www.oceanexpert.org/institution/20784 -https://www.oceanexpert.org/institution/20785 -https://www.oceanexpert.org/institution/20786 -https://www.oceanexpert.org/institution/20787 -https://www.oceanexpert.org/institution/20788 -https://www.oceanexpert.org/institution/20789 -https://www.oceanexpert.org/institution/20790 -https://www.oceanexpert.org/institution/20791 -https://www.oceanexpert.org/institution/20792 -https://www.oceanexpert.org/institution/20793 -https://www.oceanexpert.org/institution/20794 -https://www.oceanexpert.org/institution/20795 -https://www.oceanexpert.org/institution/20796 -https://www.oceanexpert.org/institution/20797 -https://www.oceanexpert.org/institution/20798 -https://www.oceanexpert.org/institution/20799 -https://www.oceanexpert.org/institution/20800 -https://www.oceanexpert.org/institution/20801 -https://www.oceanexpert.org/institution/20803 -https://www.oceanexpert.org/institution/20804 -https://www.oceanexpert.org/institution/20805 -https://www.oceanexpert.org/institution/20806 -https://www.oceanexpert.org/institution/20807 -https://www.oceanexpert.org/institution/20808 -https://www.oceanexpert.org/institution/20809 -https://www.oceanexpert.org/institution/20810 -https://www.oceanexpert.org/institution/20811 -https://www.oceanexpert.org/institution/20812 -https://www.oceanexpert.org/institution/20813 -https://www.oceanexpert.org/institution/20814 -https://www.oceanexpert.org/institution/20815 -https://www.oceanexpert.org/institution/20816 -https://www.oceanexpert.org/institution/20817 -https://www.oceanexpert.org/institution/20818 -https://www.oceanexpert.org/institution/20819 -https://www.oceanexpert.org/institution/20820 -https://www.oceanexpert.org/institution/20821 -https://www.oceanexpert.org/institution/20822 -https://www.oceanexpert.org/institution/20823 -https://www.oceanexpert.org/institution/20825 -https://www.oceanexpert.org/institution/20826 -https://www.oceanexpert.org/institution/20827 -https://www.oceanexpert.org/institution/20828 -https://www.oceanexpert.org/institution/20829 -https://www.oceanexpert.org/institution/20830 -https://www.oceanexpert.org/institution/20831 -https://www.oceanexpert.org/institution/20832 -https://www.oceanexpert.org/institution/20833 -https://www.oceanexpert.org/institution/20834 -https://www.oceanexpert.org/institution/20835 -https://www.oceanexpert.org/institution/20836 -https://www.oceanexpert.org/institution/20837 -https://www.oceanexpert.org/institution/20838 -https://www.oceanexpert.org/institution/20839 -https://www.oceanexpert.org/institution/20840 -https://www.oceanexpert.org/institution/20841 -https://www.oceanexpert.org/institution/20842 -https://www.oceanexpert.org/institution/20844 -https://www.oceanexpert.org/institution/20845 -https://www.oceanexpert.org/institution/20847 -https://www.oceanexpert.org/institution/20848 -https://www.oceanexpert.org/institution/20849 -https://www.oceanexpert.org/institution/20850 -https://www.oceanexpert.org/institution/20851 -https://www.oceanexpert.org/institution/20852 -https://www.oceanexpert.org/institution/20853 -https://www.oceanexpert.org/institution/20854 -https://www.oceanexpert.org/institution/20855 -https://www.oceanexpert.org/institution/20856 -https://www.oceanexpert.org/institution/20857 -https://www.oceanexpert.org/institution/20858 -https://www.oceanexpert.org/institution/20859 -https://www.oceanexpert.org/institution/20861 -https://www.oceanexpert.org/institution/20862 -https://www.oceanexpert.org/institution/20863 -https://www.oceanexpert.org/institution/20864 -https://www.oceanexpert.org/institution/20865 -https://www.oceanexpert.org/institution/20866 -https://www.oceanexpert.org/institution/20867 -https://www.oceanexpert.org/institution/20868 -https://www.oceanexpert.org/institution/20869 -https://www.oceanexpert.org/institution/20871 -https://www.oceanexpert.org/institution/20872 -https://www.oceanexpert.org/institution/20873 -https://www.oceanexpert.org/institution/20874 -https://www.oceanexpert.org/institution/20875 -https://www.oceanexpert.org/institution/20876 -https://www.oceanexpert.org/institution/20877 -https://www.oceanexpert.org/institution/20878 -https://www.oceanexpert.org/institution/20880 -https://www.oceanexpert.org/institution/20881 -https://www.oceanexpert.org/institution/20883 -https://www.oceanexpert.org/institution/20884 -https://www.oceanexpert.org/institution/20885 -https://www.oceanexpert.org/institution/20887 -https://www.oceanexpert.org/institution/20888 -https://www.oceanexpert.org/institution/20889 -https://www.oceanexpert.org/institution/20891 -https://www.oceanexpert.org/institution/20892 -https://www.oceanexpert.org/institution/20893 -https://www.oceanexpert.org/institution/20894 -https://www.oceanexpert.org/institution/20895 -https://www.oceanexpert.org/institution/20896 -https://www.oceanexpert.org/institution/20897 -https://www.oceanexpert.org/institution/20898 -https://www.oceanexpert.org/institution/20899 -https://www.oceanexpert.org/institution/20900 -https://www.oceanexpert.org/institution/20901 -https://www.oceanexpert.org/institution/20902 -https://www.oceanexpert.org/institution/20903 -https://www.oceanexpert.org/institution/20904 -https://www.oceanexpert.org/institution/20905 -https://www.oceanexpert.org/institution/20906 -https://www.oceanexpert.org/institution/20907 -https://www.oceanexpert.org/institution/20908 -https://www.oceanexpert.org/institution/20909 -https://www.oceanexpert.org/institution/20910 -https://www.oceanexpert.org/institution/20912 -https://www.oceanexpert.org/institution/20913 -https://www.oceanexpert.org/institution/20914 -https://www.oceanexpert.org/institution/20915 -https://www.oceanexpert.org/institution/20916 -https://www.oceanexpert.org/institution/20917 -https://www.oceanexpert.org/institution/20919 -https://www.oceanexpert.org/institution/20920 -https://www.oceanexpert.org/institution/20921 -https://www.oceanexpert.org/institution/20922 -https://www.oceanexpert.org/institution/20923 -https://www.oceanexpert.org/institution/20925 -https://www.oceanexpert.org/institution/20926 -https://www.oceanexpert.org/institution/20927 -https://www.oceanexpert.org/institution/20928 -https://www.oceanexpert.org/institution/20929 -https://www.oceanexpert.org/institution/20931 -https://www.oceanexpert.org/institution/20932 -https://www.oceanexpert.org/institution/20933 -https://www.oceanexpert.org/institution/20934 -https://www.oceanexpert.org/institution/20935 -https://www.oceanexpert.org/institution/20936 -https://www.oceanexpert.org/institution/20937 -https://www.oceanexpert.org/institution/20938 -https://www.oceanexpert.org/institution/20939 -https://www.oceanexpert.org/institution/20941 -https://www.oceanexpert.org/institution/20942 -https://www.oceanexpert.org/institution/20943 -https://www.oceanexpert.org/institution/20944 -https://www.oceanexpert.org/institution/20945 -https://www.oceanexpert.org/institution/20946 -https://www.oceanexpert.org/institution/20947 -https://www.oceanexpert.org/institution/20948 -https://www.oceanexpert.org/institution/20949 -https://www.oceanexpert.org/institution/20950 -https://www.oceanexpert.org/institution/20951 -https://www.oceanexpert.org/institution/20952 -https://www.oceanexpert.org/institution/20953 -https://www.oceanexpert.org/institution/20954 -https://www.oceanexpert.org/institution/20955 -https://www.oceanexpert.org/institution/20956 -https://www.oceanexpert.org/institution/20957 -https://www.oceanexpert.org/institution/20958 -https://www.oceanexpert.org/institution/20959 -https://www.oceanexpert.org/institution/20960 -https://www.oceanexpert.org/institution/20961 -https://www.oceanexpert.org/institution/20962 -https://www.oceanexpert.org/institution/20964 -https://www.oceanexpert.org/institution/20967 -https://www.oceanexpert.org/institution/20968 -https://www.oceanexpert.org/institution/20969 -https://www.oceanexpert.org/institution/20970 -https://www.oceanexpert.org/institution/20971 -https://www.oceanexpert.org/institution/20972 -https://www.oceanexpert.org/institution/20973 -https://www.oceanexpert.org/institution/20975 -https://www.oceanexpert.org/institution/20976 -https://www.oceanexpert.org/institution/20977 -https://www.oceanexpert.org/institution/20978 -https://www.oceanexpert.org/institution/20979 -https://www.oceanexpert.org/institution/20981 -https://www.oceanexpert.org/institution/20982 -https://www.oceanexpert.org/institution/20984 -https://www.oceanexpert.org/institution/20985 -https://www.oceanexpert.org/institution/20986 -https://www.oceanexpert.org/institution/20987 -https://www.oceanexpert.org/institution/20988 -https://www.oceanexpert.org/institution/20989 -https://www.oceanexpert.org/institution/20990 -https://www.oceanexpert.org/institution/20991 -https://www.oceanexpert.org/institution/20992 -https://www.oceanexpert.org/institution/20993 -https://www.oceanexpert.org/institution/20994 -https://www.oceanexpert.org/institution/20995 -https://www.oceanexpert.org/institution/20996 -https://www.oceanexpert.org/institution/20997 -https://www.oceanexpert.org/institution/20998 -https://www.oceanexpert.org/institution/20999 -https://www.oceanexpert.org/institution/21000 -https://www.oceanexpert.org/institution/21002 -https://www.oceanexpert.org/institution/21003 -https://www.oceanexpert.org/institution/21004 -https://www.oceanexpert.org/institution/21005 -https://www.oceanexpert.org/institution/21006 -https://www.oceanexpert.org/institution/21007 -https://www.oceanexpert.org/institution/21009 -https://www.oceanexpert.org/institution/21010 -https://www.oceanexpert.org/institution/21011 -https://www.oceanexpert.org/institution/21014 -https://www.oceanexpert.org/institution/21015 -https://www.oceanexpert.org/institution/21016 -https://www.oceanexpert.org/institution/21017 -https://www.oceanexpert.org/institution/21018 -https://www.oceanexpert.org/institution/21019 -https://www.oceanexpert.org/institution/21020 -https://www.oceanexpert.org/institution/21021 -https://www.oceanexpert.org/institution/21022 -https://www.oceanexpert.org/institution/21023 -https://www.oceanexpert.org/institution/21025 -https://www.oceanexpert.org/institution/21026 -https://www.oceanexpert.org/institution/21027 -https://www.oceanexpert.org/institution/21028 -https://www.oceanexpert.org/institution/21030 -https://www.oceanexpert.org/institution/21033 -https://www.oceanexpert.org/institution/21034 -https://www.oceanexpert.org/institution/21035 -https://www.oceanexpert.org/institution/21037 -https://www.oceanexpert.org/institution/21038 -https://www.oceanexpert.org/institution/21041 -https://www.oceanexpert.org/institution/21044 -https://www.oceanexpert.org/institution/21045 -https://www.oceanexpert.org/institution/21046 -https://www.oceanexpert.org/institution/21047 -https://www.oceanexpert.org/institution/21050 -https://www.oceanexpert.org/institution/21051 -https://www.oceanexpert.org/institution/21053 -https://www.oceanexpert.org/institution/21055 -https://www.oceanexpert.org/institution/21057 -https://www.oceanexpert.org/institution/21058 -https://www.oceanexpert.org/institution/21059 -https://www.oceanexpert.org/institution/21060 -https://www.oceanexpert.org/institution/21061 -https://www.oceanexpert.org/institution/21062 -https://www.oceanexpert.org/institution/21063 -https://www.oceanexpert.org/institution/21065 -https://www.oceanexpert.org/institution/21066 -https://www.oceanexpert.org/institution/21067 -https://www.oceanexpert.org/institution/21069 -https://www.oceanexpert.org/institution/21070 -https://www.oceanexpert.org/institution/21071 -https://www.oceanexpert.org/institution/21072 -https://www.oceanexpert.org/institution/21073 -https://www.oceanexpert.org/institution/21074 -https://www.oceanexpert.org/institution/21075 -https://www.oceanexpert.org/institution/21076 -https://www.oceanexpert.org/institution/21077 -https://www.oceanexpert.org/institution/21078 -https://www.oceanexpert.org/institution/21081 -https://www.oceanexpert.org/institution/21082 -https://www.oceanexpert.org/institution/21083 -https://www.oceanexpert.org/institution/21084 -https://www.oceanexpert.org/institution/21086 -https://www.oceanexpert.org/institution/21087 -https://www.oceanexpert.org/institution/21088 -https://www.oceanexpert.org/institution/21089 -https://www.oceanexpert.org/institution/21090 -https://www.oceanexpert.org/institution/21091 -https://www.oceanexpert.org/institution/21092 -https://www.oceanexpert.org/institution/21093 -https://www.oceanexpert.org/institution/21094 -https://www.oceanexpert.org/institution/21095 -https://www.oceanexpert.org/institution/21096 -https://www.oceanexpert.org/institution/21097 -https://www.oceanexpert.org/institution/21099 -https://www.oceanexpert.org/institution/21100 -https://www.oceanexpert.org/institution/21101 -https://www.oceanexpert.org/institution/21102 -https://www.oceanexpert.org/institution/21103 -https://www.oceanexpert.org/institution/21105 -https://www.oceanexpert.org/institution/21107 -https://www.oceanexpert.org/institution/21108 -https://www.oceanexpert.org/institution/21109 -https://www.oceanexpert.org/institution/21111 -https://www.oceanexpert.org/institution/21112 -https://www.oceanexpert.org/institution/21113 -https://www.oceanexpert.org/institution/21114 -https://www.oceanexpert.org/institution/21115 -https://www.oceanexpert.org/institution/21116 -https://www.oceanexpert.org/institution/21117 -https://www.oceanexpert.org/institution/21118 -https://www.oceanexpert.org/institution/21120 -https://www.oceanexpert.org/institution/21122 -https://www.oceanexpert.org/institution/21123 -https://www.oceanexpert.org/institution/21124 -https://www.oceanexpert.org/institution/21125 -https://www.oceanexpert.org/institution/21127 -https://www.oceanexpert.org/institution/21128 -https://www.oceanexpert.org/institution/21129 -https://www.oceanexpert.org/institution/21130 -https://www.oceanexpert.org/institution/21133 -https://www.oceanexpert.org/institution/21134 -https://www.oceanexpert.org/institution/21135 -https://www.oceanexpert.org/institution/21136 -https://www.oceanexpert.org/institution/21137 -https://www.oceanexpert.org/institution/21138 -https://www.oceanexpert.org/institution/21139 -https://www.oceanexpert.org/institution/21140 -https://www.oceanexpert.org/institution/21141 -https://www.oceanexpert.org/institution/21142 -https://www.oceanexpert.org/institution/21143 -https://www.oceanexpert.org/institution/21144 -https://www.oceanexpert.org/institution/21145 -https://www.oceanexpert.org/institution/21146 -https://www.oceanexpert.org/institution/21147 -https://www.oceanexpert.org/institution/21148 -https://www.oceanexpert.org/institution/21149 -https://www.oceanexpert.org/institution/21150 -https://www.oceanexpert.org/institution/21151 -https://www.oceanexpert.org/institution/21152 -https://www.oceanexpert.org/institution/21153 -https://www.oceanexpert.org/institution/21155 -https://www.oceanexpert.org/institution/21156 -https://www.oceanexpert.org/institution/21157 -https://www.oceanexpert.org/institution/21158 -https://www.oceanexpert.org/institution/21159 -https://www.oceanexpert.org/institution/21160 -https://www.oceanexpert.org/institution/21161 -https://www.oceanexpert.org/institution/21162 -https://www.oceanexpert.org/institution/21163 -https://www.oceanexpert.org/institution/21164 -https://www.oceanexpert.org/institution/21165 -https://www.oceanexpert.org/institution/21166 -https://www.oceanexpert.org/institution/21168 -https://www.oceanexpert.org/institution/21169 -https://www.oceanexpert.org/institution/21170 -https://www.oceanexpert.org/institution/21171 -https://www.oceanexpert.org/institution/21173 -https://www.oceanexpert.org/institution/21174 -https://www.oceanexpert.org/institution/21175 -https://www.oceanexpert.org/institution/21178 -https://www.oceanexpert.org/institution/21179 -https://www.oceanexpert.org/institution/21181 -https://www.oceanexpert.org/institution/21182 -https://www.oceanexpert.org/institution/21184 -https://www.oceanexpert.org/institution/21185 -https://www.oceanexpert.org/institution/21186 -https://www.oceanexpert.org/institution/21187 -https://www.oceanexpert.org/institution/21188 -https://www.oceanexpert.org/institution/21189 -https://www.oceanexpert.org/institution/21190 -https://www.oceanexpert.org/institution/21191 -https://www.oceanexpert.org/institution/21192 -https://www.oceanexpert.org/institution/21193 -https://www.oceanexpert.org/institution/21194 -https://www.oceanexpert.org/institution/21195 -https://www.oceanexpert.org/institution/21198 -https://www.oceanexpert.org/institution/21199 -https://www.oceanexpert.org/institution/21200 -https://www.oceanexpert.org/institution/21201 -https://www.oceanexpert.org/institution/21202 -https://www.oceanexpert.org/institution/21203 -https://www.oceanexpert.org/institution/21205 -https://www.oceanexpert.org/institution/21206 -https://www.oceanexpert.org/institution/21207 -https://www.oceanexpert.org/institution/21208 -https://www.oceanexpert.org/institution/21209 -https://www.oceanexpert.org/institution/21210 -https://www.oceanexpert.org/institution/21211 -https://www.oceanexpert.org/institution/21212 -https://www.oceanexpert.org/institution/21213 -https://www.oceanexpert.org/institution/21214 -https://www.oceanexpert.org/institution/21215 -https://www.oceanexpert.org/institution/21216 -https://www.oceanexpert.org/institution/21217 -https://www.oceanexpert.org/institution/21218 -https://www.oceanexpert.org/institution/21220 -https://www.oceanexpert.org/institution/21221 -https://www.oceanexpert.org/institution/21222 -https://www.oceanexpert.org/institution/21223 -https://www.oceanexpert.org/institution/21224 -https://www.oceanexpert.org/institution/21225 -https://www.oceanexpert.org/institution/21226 -https://www.oceanexpert.org/institution/21227 -https://www.oceanexpert.org/institution/21228 -https://www.oceanexpert.org/institution/21229 -https://www.oceanexpert.org/institution/21230 -https://www.oceanexpert.org/institution/21231 -https://www.oceanexpert.org/institution/21232 -https://www.oceanexpert.org/institution/21233 -https://www.oceanexpert.org/institution/21234 -https://www.oceanexpert.org/institution/21235 -https://www.oceanexpert.org/institution/21236 -https://www.oceanexpert.org/institution/21238 -https://www.oceanexpert.org/institution/21239 -https://www.oceanexpert.org/institution/21240 -https://www.oceanexpert.org/institution/21241 -https://www.oceanexpert.org/institution/21242 -https://www.oceanexpert.org/institution/21243 -https://www.oceanexpert.org/institution/21244 -https://www.oceanexpert.org/institution/21245 -https://www.oceanexpert.org/institution/21246 -https://www.oceanexpert.org/institution/21247 -https://www.oceanexpert.org/institution/21249 -https://www.oceanexpert.org/institution/21250 -https://www.oceanexpert.org/institution/21251 -https://www.oceanexpert.org/institution/21252 -https://www.oceanexpert.org/institution/21253 -https://www.oceanexpert.org/institution/21254 -https://www.oceanexpert.org/institution/21255 -https://www.oceanexpert.org/institution/21256 -https://www.oceanexpert.org/institution/21257 -https://www.oceanexpert.org/institution/21260 -https://www.oceanexpert.org/institution/21261 -https://www.oceanexpert.org/institution/21264 -https://www.oceanexpert.org/institution/21265 -https://www.oceanexpert.org/institution/21266 -https://www.oceanexpert.org/institution/21268 -https://www.oceanexpert.org/institution/21269 -https://www.oceanexpert.org/institution/21272 -https://www.oceanexpert.org/institution/21273 -https://www.oceanexpert.org/institution/21274 -https://www.oceanexpert.org/institution/21275 -https://www.oceanexpert.org/institution/21276 -https://www.oceanexpert.org/institution/21277 -https://www.oceanexpert.org/institution/21278 -https://www.oceanexpert.org/institution/21280 -https://www.oceanexpert.org/institution/21281 -https://www.oceanexpert.org/institution/21282 -https://www.oceanexpert.org/institution/21283 -https://www.oceanexpert.org/institution/21284 -https://www.oceanexpert.org/institution/21285 -https://www.oceanexpert.org/institution/21287 -https://www.oceanexpert.org/institution/21288 -https://www.oceanexpert.org/institution/21289 -https://www.oceanexpert.org/institution/21290 -https://www.oceanexpert.org/institution/21291 -https://www.oceanexpert.org/institution/21292 -https://www.oceanexpert.org/institution/21293 -https://www.oceanexpert.org/institution/21294 -https://www.oceanexpert.org/institution/21295 -https://www.oceanexpert.org/institution/21296 -https://www.oceanexpert.org/institution/21297 -https://www.oceanexpert.org/institution/21298 -https://www.oceanexpert.org/institution/21299 -https://www.oceanexpert.org/institution/21300 -https://www.oceanexpert.org/institution/21301 -https://www.oceanexpert.org/institution/21303 -https://www.oceanexpert.org/institution/21304 -https://www.oceanexpert.org/institution/21305 -https://www.oceanexpert.org/institution/21306 -https://www.oceanexpert.org/institution/21308 -https://www.oceanexpert.org/institution/21309 -https://www.oceanexpert.org/institution/21310 -https://www.oceanexpert.org/institution/21311 -https://www.oceanexpert.org/institution/21312 -https://www.oceanexpert.org/institution/21313 -https://www.oceanexpert.org/institution/21314 -https://www.oceanexpert.org/institution/21315 -https://www.oceanexpert.org/institution/21316 -https://www.oceanexpert.org/institution/21317 -https://www.oceanexpert.org/institution/21318 -https://www.oceanexpert.org/institution/21319 -https://www.oceanexpert.org/institution/21320 -https://www.oceanexpert.org/institution/21321 -https://www.oceanexpert.org/institution/21322 -https://www.oceanexpert.org/institution/21323 -https://www.oceanexpert.org/institution/21324 -https://www.oceanexpert.org/institution/21325 -https://www.oceanexpert.org/institution/21326 -https://www.oceanexpert.org/institution/21327 -https://www.oceanexpert.org/institution/21328 -https://www.oceanexpert.org/institution/21329 -https://www.oceanexpert.org/institution/21330 -https://www.oceanexpert.org/institution/21331 -https://www.oceanexpert.org/institution/21332 -https://www.oceanexpert.org/institution/21333 -https://www.oceanexpert.org/institution/21334 -https://www.oceanexpert.org/institution/21335 -https://www.oceanexpert.org/institution/21336 -https://www.oceanexpert.org/institution/21337 -https://www.oceanexpert.org/institution/21338 -https://www.oceanexpert.org/institution/21339 -https://www.oceanexpert.org/institution/21340 -https://www.oceanexpert.org/institution/21341 -https://www.oceanexpert.org/institution/21342 -https://www.oceanexpert.org/institution/21343 -https://www.oceanexpert.org/institution/21344 -https://www.oceanexpert.org/institution/21345 -https://www.oceanexpert.org/institution/21346 -https://www.oceanexpert.org/institution/21347 -https://www.oceanexpert.org/institution/21348 -https://www.oceanexpert.org/institution/21350 -https://www.oceanexpert.org/institution/21351 -https://www.oceanexpert.org/institution/21352 -https://www.oceanexpert.org/institution/21354 -https://www.oceanexpert.org/institution/21355 -https://www.oceanexpert.org/institution/21356 -https://www.oceanexpert.org/institution/21357 -https://www.oceanexpert.org/institution/21358 -https://www.oceanexpert.org/institution/21360 -https://www.oceanexpert.org/institution/21362 -https://www.oceanexpert.org/institution/21363 -https://www.oceanexpert.org/institution/21365 -https://www.oceanexpert.org/institution/21366 -https://www.oceanexpert.org/institution/21368 -https://www.oceanexpert.org/institution/21369 -https://www.oceanexpert.org/institution/21370 -https://www.oceanexpert.org/institution/21371 -https://www.oceanexpert.org/institution/21372 -https://www.oceanexpert.org/institution/21373 -https://www.oceanexpert.org/institution/21374 -https://www.oceanexpert.org/institution/21375 -https://www.oceanexpert.org/institution/21376 -https://www.oceanexpert.org/institution/21378 -https://www.oceanexpert.org/institution/21381 -https://www.oceanexpert.org/institution/21382 -https://www.oceanexpert.org/institution/21383 -https://www.oceanexpert.org/institution/21384 -https://www.oceanexpert.org/institution/21386 -https://www.oceanexpert.org/institution/21387 -https://www.oceanexpert.org/institution/21388 -https://www.oceanexpert.org/institution/21389 -https://www.oceanexpert.org/institution/21392 -https://www.oceanexpert.org/institution/21393 -https://www.oceanexpert.org/institution/21394 -https://www.oceanexpert.org/institution/21395 -https://www.oceanexpert.org/institution/21396 -https://www.oceanexpert.org/institution/21397 -https://www.oceanexpert.org/institution/21398 -https://www.oceanexpert.org/institution/21399 -https://www.oceanexpert.org/institution/21400 -https://www.oceanexpert.org/institution/21401 -https://www.oceanexpert.org/institution/21402 -https://www.oceanexpert.org/institution/21403 -https://www.oceanexpert.org/institution/21404 -https://www.oceanexpert.org/institution/21405 -https://www.oceanexpert.org/institution/21406 -https://www.oceanexpert.org/institution/21407 -https://www.oceanexpert.org/institution/21408 -https://www.oceanexpert.org/institution/21410 -https://www.oceanexpert.org/institution/21411 -https://www.oceanexpert.org/institution/21412 -https://www.oceanexpert.org/institution/21413 -https://www.oceanexpert.org/institution/21414 -https://www.oceanexpert.org/institution/21415 -https://www.oceanexpert.org/institution/21416 -https://www.oceanexpert.org/institution/21417 -https://www.oceanexpert.org/institution/21418 -https://www.oceanexpert.org/institution/21419 -https://www.oceanexpert.org/institution/21420 -https://www.oceanexpert.org/institution/21421 -https://www.oceanexpert.org/institution/21422 -https://www.oceanexpert.org/institution/21423 -https://www.oceanexpert.org/institution/21424 -https://www.oceanexpert.org/institution/21426 -https://www.oceanexpert.org/institution/21427 -https://www.oceanexpert.org/institution/21428 -https://www.oceanexpert.org/institution/21429 -https://www.oceanexpert.org/institution/21430 -https://www.oceanexpert.org/institution/21431 -https://www.oceanexpert.org/institution/21432 -https://www.oceanexpert.org/institution/21433 -https://www.oceanexpert.org/institution/21434 -https://www.oceanexpert.org/institution/21435 -https://www.oceanexpert.org/institution/21436 -https://www.oceanexpert.org/institution/21437 -https://www.oceanexpert.org/institution/21438 -https://www.oceanexpert.org/institution/21439 -https://www.oceanexpert.org/institution/21440 -https://www.oceanexpert.org/institution/21441 -https://www.oceanexpert.org/institution/21442 -https://www.oceanexpert.org/institution/21443 -https://www.oceanexpert.org/institution/21444 -https://www.oceanexpert.org/institution/21445 -https://www.oceanexpert.org/institution/21446 -https://www.oceanexpert.org/institution/21447 -https://www.oceanexpert.org/institution/21448 -https://www.oceanexpert.org/institution/21449 -https://www.oceanexpert.org/institution/21450 -https://www.oceanexpert.org/institution/21451 -https://www.oceanexpert.org/institution/21452 -https://www.oceanexpert.org/institution/21453 -https://www.oceanexpert.org/institution/21454 -https://www.oceanexpert.org/institution/21455 -https://www.oceanexpert.org/institution/21456 -https://www.oceanexpert.org/institution/21458 -https://www.oceanexpert.org/institution/21459 -https://www.oceanexpert.org/institution/21460 -https://www.oceanexpert.org/institution/21463 -https://www.oceanexpert.org/institution/21464 -https://www.oceanexpert.org/institution/21465 -https://www.oceanexpert.org/institution/21467 -https://www.oceanexpert.org/institution/21468 -https://www.oceanexpert.org/institution/21469 -https://www.oceanexpert.org/institution/21470 -https://www.oceanexpert.org/institution/21472 -https://www.oceanexpert.org/institution/21473 -https://www.oceanexpert.org/institution/21474 -https://www.oceanexpert.org/institution/21475 -https://www.oceanexpert.org/institution/21476 -https://www.oceanexpert.org/institution/21480 -https://www.oceanexpert.org/institution/21482 -https://www.oceanexpert.org/institution/21483 -https://www.oceanexpert.org/institution/21484 -https://www.oceanexpert.org/institution/21485 -https://www.oceanexpert.org/institution/21486 -https://www.oceanexpert.org/institution/21487 -https://www.oceanexpert.org/institution/21489 -https://www.oceanexpert.org/institution/21490 -https://www.oceanexpert.org/institution/21492 -https://www.oceanexpert.org/institution/21493 -https://www.oceanexpert.org/institution/21494 -https://www.oceanexpert.org/institution/21495 -https://www.oceanexpert.org/institution/21496 -https://www.oceanexpert.org/institution/21498 -https://www.oceanexpert.org/institution/21499 -https://www.oceanexpert.org/institution/21501 -https://www.oceanexpert.org/institution/21502 -https://www.oceanexpert.org/institution/21504 -https://www.oceanexpert.org/institution/21505 -https://www.oceanexpert.org/institution/21506 -https://www.oceanexpert.org/institution/21507 -https://www.oceanexpert.org/institution/21508 -https://www.oceanexpert.org/institution/21509 -https://www.oceanexpert.org/institution/21510 -https://www.oceanexpert.org/institution/21511 -https://www.oceanexpert.org/institution/21512 -https://www.oceanexpert.org/institution/21513 -https://www.oceanexpert.org/institution/21514 -https://www.oceanexpert.org/institution/21515 -https://www.oceanexpert.org/institution/21517 -https://www.oceanexpert.org/institution/21518 -https://www.oceanexpert.org/institution/21519 -https://www.oceanexpert.org/institution/21520 -https://www.oceanexpert.org/institution/21521 -https://www.oceanexpert.org/institution/21522 -https://www.oceanexpert.org/institution/21523 -https://www.oceanexpert.org/institution/21524 -https://www.oceanexpert.org/institution/21525 -https://www.oceanexpert.org/institution/21526 -https://www.oceanexpert.org/institution/21527 -https://www.oceanexpert.org/institution/21528 -https://www.oceanexpert.org/institution/21529 -https://www.oceanexpert.org/institution/21530 -https://www.oceanexpert.org/institution/21531 -https://www.oceanexpert.org/institution/21532 -https://www.oceanexpert.org/institution/21533 -https://www.oceanexpert.org/institution/21534 -https://www.oceanexpert.org/institution/21535 -https://www.oceanexpert.org/institution/21536 -https://www.oceanexpert.org/institution/21537 -https://www.oceanexpert.org/institution/21538 -https://www.oceanexpert.org/institution/21539 -https://www.oceanexpert.org/institution/21540 -https://www.oceanexpert.org/institution/21541 -https://www.oceanexpert.org/institution/21542 -https://www.oceanexpert.org/institution/21543 -https://www.oceanexpert.org/institution/21544 -https://www.oceanexpert.org/institution/21545 -https://www.oceanexpert.org/institution/21546 -https://www.oceanexpert.org/institution/21547 -https://www.oceanexpert.org/institution/21548 -https://www.oceanexpert.org/institution/21549 -https://www.oceanexpert.org/institution/21552 -https://www.oceanexpert.org/institution/21553 -https://www.oceanexpert.org/institution/21557 -https://www.oceanexpert.org/institution/21558 -https://www.oceanexpert.org/institution/21559 -https://www.oceanexpert.org/institution/21561 -https://www.oceanexpert.org/institution/21562 -https://www.oceanexpert.org/institution/21563 -https://www.oceanexpert.org/institution/21564 -https://www.oceanexpert.org/institution/21567 -https://www.oceanexpert.org/institution/21568 -https://www.oceanexpert.org/institution/21569 -https://www.oceanexpert.org/institution/21572 -https://www.oceanexpert.org/institution/21573 -https://www.oceanexpert.org/institution/21574 -https://www.oceanexpert.org/institution/21575 -https://www.oceanexpert.org/institution/21576 -https://www.oceanexpert.org/institution/21577 -https://www.oceanexpert.org/institution/21578 -https://www.oceanexpert.org/institution/21579 -https://www.oceanexpert.org/institution/21580 -https://www.oceanexpert.org/institution/21581 -https://www.oceanexpert.org/institution/21582 -https://www.oceanexpert.org/institution/21583 -https://www.oceanexpert.org/institution/21584 -https://www.oceanexpert.org/institution/21585 -https://www.oceanexpert.org/institution/21586 -https://www.oceanexpert.org/institution/21587 -https://www.oceanexpert.org/institution/21588 -https://www.oceanexpert.org/institution/21590 -https://www.oceanexpert.org/institution/21591 -https://www.oceanexpert.org/institution/21594 -https://www.oceanexpert.org/institution/21595 -https://www.oceanexpert.org/institution/21596 -https://www.oceanexpert.org/institution/21597 -https://www.oceanexpert.org/institution/21598 -https://www.oceanexpert.org/institution/21602 -https://www.oceanexpert.org/institution/21603 -https://www.oceanexpert.org/institution/21604 -https://www.oceanexpert.org/institution/21606 -https://www.oceanexpert.org/institution/21607 -https://www.oceanexpert.org/institution/21608 -https://www.oceanexpert.org/institution/21609 -https://www.oceanexpert.org/institution/21610 -https://www.oceanexpert.org/institution/21611 -https://www.oceanexpert.org/institution/21612 -https://www.oceanexpert.org/institution/21613 -https://www.oceanexpert.org/institution/21614 -https://www.oceanexpert.org/institution/21615 -https://www.oceanexpert.org/institution/21616 -https://www.oceanexpert.org/institution/21617 -https://www.oceanexpert.org/institution/21618 -https://www.oceanexpert.org/institution/21619 -https://www.oceanexpert.org/institution/21620 -https://www.oceanexpert.org/institution/21621 -https://www.oceanexpert.org/institution/21622 -https://www.oceanexpert.org/institution/21623 -https://www.oceanexpert.org/institution/21624 -https://www.oceanexpert.org/institution/21625 -https://www.oceanexpert.org/institution/21626 -https://www.oceanexpert.org/institution/21627 -https://www.oceanexpert.org/institution/21628 -https://www.oceanexpert.org/institution/21629 -https://www.oceanexpert.org/institution/21630 -https://www.oceanexpert.org/institution/21631 -https://www.oceanexpert.org/institution/21632 -https://www.oceanexpert.org/institution/21633 -https://www.oceanexpert.org/institution/21634 -https://www.oceanexpert.org/institution/21635 -https://www.oceanexpert.org/institution/21636 -https://www.oceanexpert.org/institution/21637 -https://www.oceanexpert.org/institution/21638 -https://www.oceanexpert.org/institution/21639 -https://www.oceanexpert.org/institution/21640 -https://www.oceanexpert.org/institution/21641 -https://www.oceanexpert.org/institution/21642 -https://www.oceanexpert.org/institution/21643 -https://www.oceanexpert.org/institution/21644 -https://www.oceanexpert.org/institution/21645 -https://www.oceanexpert.org/institution/21647 -https://www.oceanexpert.org/institution/21648 -https://www.oceanexpert.org/institution/21649 -https://www.oceanexpert.org/institution/21650 -https://www.oceanexpert.org/institution/21652 -https://www.oceanexpert.org/institution/21653 -https://www.oceanexpert.org/institution/21654 -https://www.oceanexpert.org/institution/21655 -https://www.oceanexpert.org/institution/21656 -https://www.oceanexpert.org/institution/21657 -https://www.oceanexpert.org/institution/21658 -https://www.oceanexpert.org/institution/21659 -https://www.oceanexpert.org/institution/21660 -https://www.oceanexpert.org/institution/21661 -https://www.oceanexpert.org/institution/21662 -https://www.oceanexpert.org/institution/21663 -https://www.oceanexpert.org/institution/21665 -https://www.oceanexpert.org/institution/21666 -https://www.oceanexpert.org/institution/21667 -https://www.oceanexpert.org/institution/21668 -https://www.oceanexpert.org/institution/21669 -https://www.oceanexpert.org/institution/21670 -https://www.oceanexpert.org/institution/21672 -https://www.oceanexpert.org/institution/21673 -https://www.oceanexpert.org/institution/21674 -https://www.oceanexpert.org/institution/21675 -https://www.oceanexpert.org/institution/21676 -https://www.oceanexpert.org/institution/21677 -https://www.oceanexpert.org/institution/21678 -https://www.oceanexpert.org/institution/21679 -https://www.oceanexpert.org/institution/21680 -https://www.oceanexpert.org/institution/21681 -https://www.oceanexpert.org/institution/21682 -https://www.oceanexpert.org/institution/21683 -https://www.oceanexpert.org/institution/21684 -https://www.oceanexpert.org/institution/21685 -https://www.oceanexpert.org/institution/21686 -https://www.oceanexpert.org/institution/21687 -https://www.oceanexpert.org/institution/21688 -https://www.oceanexpert.org/institution/21689 -https://www.oceanexpert.org/institution/21690 -https://www.oceanexpert.org/institution/21691 -https://www.oceanexpert.org/institution/21692 -https://www.oceanexpert.org/institution/21693 -https://www.oceanexpert.org/institution/21694 -https://www.oceanexpert.org/institution/21695 -https://www.oceanexpert.org/institution/21696 -https://www.oceanexpert.org/institution/21697 -https://www.oceanexpert.org/institution/21698 -https://www.oceanexpert.org/institution/21699 -https://www.oceanexpert.org/institution/21701 -https://www.oceanexpert.org/institution/21702 -https://www.oceanexpert.org/institution/21703 -https://www.oceanexpert.org/institution/21704 -https://www.oceanexpert.org/institution/21705 -https://www.oceanexpert.org/institution/21706 -https://www.oceanexpert.org/institution/21707 -https://www.oceanexpert.org/institution/21708 -https://www.oceanexpert.org/institution/21709 -https://www.oceanexpert.org/institution/21710 -https://www.oceanexpert.org/institution/21711 -https://www.oceanexpert.org/institution/21713 -https://www.oceanexpert.org/institution/21714 -https://www.oceanexpert.org/institution/21716 -https://www.oceanexpert.org/institution/21718 -https://www.oceanexpert.org/institution/21719 -https://www.oceanexpert.org/institution/21721 -https://www.oceanexpert.org/institution/21722 -https://www.oceanexpert.org/institution/21723 -https://www.oceanexpert.org/institution/21724 -https://www.oceanexpert.org/institution/21726 -https://www.oceanexpert.org/institution/21727 -https://www.oceanexpert.org/institution/21729 -https://www.oceanexpert.org/institution/21730 -https://www.oceanexpert.org/institution/21731 -https://www.oceanexpert.org/institution/21732 -https://www.oceanexpert.org/institution/21733 -https://www.oceanexpert.org/institution/21734 -https://www.oceanexpert.org/institution/21735 -https://www.oceanexpert.org/institution/21736 -https://www.oceanexpert.org/institution/21738 -https://www.oceanexpert.org/institution/21739 -https://www.oceanexpert.org/institution/21741 -https://www.oceanexpert.org/institution/21742 -https://www.oceanexpert.org/institution/21743 -https://www.oceanexpert.org/institution/21744 -https://www.oceanexpert.org/institution/21745 -https://www.oceanexpert.org/institution/21746 -https://www.oceanexpert.org/institution/21747 -https://www.oceanexpert.org/institution/21748 -https://www.oceanexpert.org/institution/21749 -https://www.oceanexpert.org/institution/21750 -https://www.oceanexpert.org/institution/21751 -https://www.oceanexpert.org/institution/21752 -https://www.oceanexpert.org/institution/21753 -https://www.oceanexpert.org/institution/21754 -https://www.oceanexpert.org/institution/21755 -https://www.oceanexpert.org/institution/21756 -https://www.oceanexpert.org/institution/21757 -https://www.oceanexpert.org/institution/21758 -https://www.oceanexpert.org/institution/21759 -https://www.oceanexpert.org/institution/21760 -https://www.oceanexpert.org/institution/21761 -https://www.oceanexpert.org/institution/21762 -https://www.oceanexpert.org/institution/21763 -https://www.oceanexpert.org/institution/21764 -https://www.oceanexpert.org/institution/21765 -https://www.oceanexpert.org/institution/21766 -https://www.oceanexpert.org/institution/21767 -https://www.oceanexpert.org/institution/21769 -https://www.oceanexpert.org/institution/21770 -https://www.oceanexpert.org/institution/21771 -https://www.oceanexpert.org/institution/21772 -https://www.oceanexpert.org/institution/21773 -https://www.oceanexpert.org/institution/21774 -https://www.oceanexpert.org/institution/21775 -https://www.oceanexpert.org/institution/21776 -https://www.oceanexpert.org/institution/21777 -https://www.oceanexpert.org/institution/21779 -https://www.oceanexpert.org/institution/21780 -https://www.oceanexpert.org/institution/21781 -https://www.oceanexpert.org/institution/21782 -https://www.oceanexpert.org/institution/21783 -https://www.oceanexpert.org/institution/21785 -https://www.oceanexpert.org/institution/21786 -https://www.oceanexpert.org/institution/21787 -https://www.oceanexpert.org/institution/21788 -https://www.oceanexpert.org/institution/21789 -https://www.oceanexpert.org/institution/21791 -https://www.oceanexpert.org/institution/21792 -https://www.oceanexpert.org/institution/21793 -https://www.oceanexpert.org/institution/21794 -https://www.oceanexpert.org/institution/21795 -https://www.oceanexpert.org/institution/21796 -https://www.oceanexpert.org/institution/21797 -https://www.oceanexpert.org/institution/21798 -https://www.oceanexpert.org/institution/21799 -https://www.oceanexpert.org/institution/21800 -https://www.oceanexpert.org/institution/21802 -https://www.oceanexpert.org/institution/21803 -https://www.oceanexpert.org/institution/21804 -https://www.oceanexpert.org/institution/21806 -https://www.oceanexpert.org/institution/21807 -https://www.oceanexpert.org/institution/21808 -https://www.oceanexpert.org/institution/21809 -https://www.oceanexpert.org/institution/21810 -https://www.oceanexpert.org/institution/21811 -https://www.oceanexpert.org/institution/21812 -https://www.oceanexpert.org/institution/21813 -https://www.oceanexpert.org/institution/21814 -https://www.oceanexpert.org/institution/21815 -https://www.oceanexpert.org/institution/21819 -https://www.oceanexpert.org/institution/21820 -https://www.oceanexpert.org/institution/21821 -https://www.oceanexpert.org/institution/21822 -https://www.oceanexpert.org/institution/21823 -https://www.oceanexpert.org/institution/21824 -https://www.oceanexpert.org/institution/21825 -https://www.oceanexpert.org/institution/21826 -https://www.oceanexpert.org/institution/21827 -https://www.oceanexpert.org/institution/21828 -https://www.oceanexpert.org/institution/21829 -https://www.oceanexpert.org/institution/21830 -https://www.oceanexpert.org/institution/21831 -https://www.oceanexpert.org/institution/21832 -https://www.oceanexpert.org/institution/21833 -https://www.oceanexpert.org/institution/21834 -https://www.oceanexpert.org/institution/21835 -https://www.oceanexpert.org/institution/21836 -https://www.oceanexpert.org/institution/21837 -https://www.oceanexpert.org/institution/21838 -https://www.oceanexpert.org/institution/21839 -https://www.oceanexpert.org/institution/21840 -https://www.oceanexpert.org/institution/21841 -https://www.oceanexpert.org/institution/21843 -https://www.oceanexpert.org/institution/21845 -https://www.oceanexpert.org/institution/21846 -https://www.oceanexpert.org/institution/21847 -https://www.oceanexpert.org/institution/21848 -https://www.oceanexpert.org/institution/21849 -https://www.oceanexpert.org/institution/21850 -https://www.oceanexpert.org/institution/21854 -https://www.oceanexpert.org/institution/21855 -https://www.oceanexpert.org/institution/21856 -https://www.oceanexpert.org/institution/21857 -https://www.oceanexpert.org/institution/21858 -https://www.oceanexpert.org/institution/21860 -https://www.oceanexpert.org/institution/21862 -https://www.oceanexpert.org/institution/21863 -https://www.oceanexpert.org/institution/21864 -https://www.oceanexpert.org/institution/21865 -https://www.oceanexpert.org/institution/21866 -https://www.oceanexpert.org/institution/21867 -https://www.oceanexpert.org/institution/21868 -https://www.oceanexpert.org/institution/21869 -https://www.oceanexpert.org/institution/21870 -https://www.oceanexpert.org/institution/21871 -https://www.oceanexpert.org/institution/21872 -https://www.oceanexpert.org/institution/21873 -https://www.oceanexpert.org/institution/21874 -https://www.oceanexpert.org/institution/21875 -https://www.oceanexpert.org/institution/21876 -https://www.oceanexpert.org/institution/21878 -https://www.oceanexpert.org/institution/21879 -https://www.oceanexpert.org/institution/21881 -https://www.oceanexpert.org/institution/21882 -https://www.oceanexpert.org/institution/21883 -https://www.oceanexpert.org/institution/21884 -https://www.oceanexpert.org/institution/21885 -https://www.oceanexpert.org/institution/21886 -https://www.oceanexpert.org/institution/21887 -https://www.oceanexpert.org/institution/21889 -https://www.oceanexpert.org/institution/21890 -https://www.oceanexpert.org/institution/21891 -https://www.oceanexpert.org/institution/21892 -https://www.oceanexpert.org/institution/21893 -https://www.oceanexpert.org/institution/21894 -https://www.oceanexpert.org/institution/21895 -https://www.oceanexpert.org/institution/21896 -https://www.oceanexpert.org/institution/21899 -https://www.oceanexpert.org/institution/21900 -https://www.oceanexpert.org/institution/21901 -https://www.oceanexpert.org/institution/21903 -https://www.oceanexpert.org/institution/21904 -https://www.oceanexpert.org/institution/21905 -https://www.oceanexpert.org/institution/21906 -https://www.oceanexpert.org/institution/21907 -https://www.oceanexpert.org/institution/21908 -https://www.oceanexpert.org/institution/21909 -https://www.oceanexpert.org/institution/21910 -https://www.oceanexpert.org/institution/21912 -https://www.oceanexpert.org/institution/21913 -https://www.oceanexpert.org/institution/21914 -https://www.oceanexpert.org/institution/21915 -https://www.oceanexpert.org/institution/21916 -https://www.oceanexpert.org/institution/21917 -https://www.oceanexpert.org/institution/21918 -https://www.oceanexpert.org/institution/21919 -https://www.oceanexpert.org/institution/21921 -https://www.oceanexpert.org/institution/21922 -https://www.oceanexpert.org/institution/21923 -https://www.oceanexpert.org/institution/21924 -https://www.oceanexpert.org/institution/21925 -https://www.oceanexpert.org/institution/21926 -https://www.oceanexpert.org/institution/21928 -https://www.oceanexpert.org/institution/21929 -https://www.oceanexpert.org/institution/21930 -https://www.oceanexpert.org/institution/21931 -https://www.oceanexpert.org/institution/21932 -https://www.oceanexpert.org/institution/21933 -https://www.oceanexpert.org/institution/21934 -https://www.oceanexpert.org/institution/21935 -https://www.oceanexpert.org/institution/21936 -https://www.oceanexpert.org/institution/21937 -https://www.oceanexpert.org/institution/21938 -https://www.oceanexpert.org/institution/21939 -https://www.oceanexpert.org/institution/21940 -https://www.oceanexpert.org/institution/21942 -https://www.oceanexpert.org/institution/21943 -https://www.oceanexpert.org/institution/21944 -https://www.oceanexpert.org/institution/21945 -https://www.oceanexpert.org/institution/21946 -https://www.oceanexpert.org/institution/21947 -https://www.oceanexpert.org/institution/21948 -https://www.oceanexpert.org/institution/21950 -https://www.oceanexpert.org/institution/21952 -https://www.oceanexpert.org/institution/21953 -https://www.oceanexpert.org/institution/21958 -https://www.oceanexpert.org/institution/21959 -https://www.oceanexpert.org/institution/21960 -https://www.oceanexpert.org/institution/21961 -https://www.oceanexpert.org/institution/21962 -https://www.oceanexpert.org/institution/21963 -https://www.oceanexpert.org/institution/21964 -https://www.oceanexpert.org/institution/21966 -https://www.oceanexpert.org/institution/21967 -https://www.oceanexpert.org/institution/21968 -https://www.oceanexpert.org/institution/21969 -https://www.oceanexpert.org/institution/21971 -https://www.oceanexpert.org/institution/21972 -https://www.oceanexpert.org/institution/21973 -https://www.oceanexpert.org/institution/21974 -https://www.oceanexpert.org/institution/21975 -https://www.oceanexpert.org/institution/21979 -https://www.oceanexpert.org/institution/21980 -https://www.oceanexpert.org/institution/21981 -https://www.oceanexpert.org/institution/21982 -https://www.oceanexpert.org/institution/21983 -https://www.oceanexpert.org/institution/21986 -https://www.oceanexpert.org/institution/21989 -https://www.oceanexpert.org/institution/21990 -https://www.oceanexpert.org/institution/21992 -https://www.oceanexpert.org/institution/21993 -https://www.oceanexpert.org/institution/21994 -https://www.oceanexpert.org/institution/21995 -https://www.oceanexpert.org/institution/21996 -https://www.oceanexpert.org/institution/21997 -https://www.oceanexpert.org/institution/21999 -https://www.oceanexpert.org/institution/22000 -https://www.oceanexpert.org/institution/22001 -https://www.oceanexpert.org/institution/22002 -https://www.oceanexpert.org/institution/22003 -https://www.oceanexpert.org/institution/22004 -https://www.oceanexpert.org/institution/22006 -https://www.oceanexpert.org/institution/22007 -https://www.oceanexpert.org/institution/22008 -https://www.oceanexpert.org/institution/22009 -https://www.oceanexpert.org/institution/22010 -https://www.oceanexpert.org/institution/22011 -https://www.oceanexpert.org/institution/22013 -https://www.oceanexpert.org/institution/22015 -https://www.oceanexpert.org/institution/22017 -https://www.oceanexpert.org/institution/22018 -https://www.oceanexpert.org/institution/22019 -https://www.oceanexpert.org/institution/22020 -https://www.oceanexpert.org/institution/22022 -https://www.oceanexpert.org/institution/22023 -https://www.oceanexpert.org/institution/22024 -https://www.oceanexpert.org/institution/22025 -https://www.oceanexpert.org/institution/22027 -https://www.oceanexpert.org/institution/22028 -https://www.oceanexpert.org/institution/22029 -https://www.oceanexpert.org/institution/22030 -https://www.oceanexpert.org/institution/22031 -https://www.oceanexpert.org/institution/22032 -https://www.oceanexpert.org/institution/22033 -https://www.oceanexpert.org/institution/22034 -https://www.oceanexpert.org/institution/22035 -https://www.oceanexpert.org/institution/22036 -https://www.oceanexpert.org/institution/22037 -https://www.oceanexpert.org/institution/22038 -https://www.oceanexpert.org/institution/22039 -https://www.oceanexpert.org/institution/22042 -https://www.oceanexpert.org/institution/22043 -https://www.oceanexpert.org/institution/22045 -https://www.oceanexpert.org/institution/22046 -https://www.oceanexpert.org/institution/22047 -https://www.oceanexpert.org/institution/22048 -https://www.oceanexpert.org/institution/22049 -https://www.oceanexpert.org/institution/22050 -https://www.oceanexpert.org/institution/22051 -https://www.oceanexpert.org/institution/22052 -https://www.oceanexpert.org/institution/22053 -https://www.oceanexpert.org/institution/22055 -https://www.oceanexpert.org/institution/22056 -https://www.oceanexpert.org/institution/22057 -https://www.oceanexpert.org/institution/22058 -https://www.oceanexpert.org/institution/22059 -https://www.oceanexpert.org/institution/22060 -https://www.oceanexpert.org/institution/22061 -https://www.oceanexpert.org/institution/22062 -https://www.oceanexpert.org/institution/22063 -https://www.oceanexpert.org/institution/22064 -https://www.oceanexpert.org/institution/22065 -https://www.oceanexpert.org/institution/22066 -https://www.oceanexpert.org/institution/22067 -https://www.oceanexpert.org/institution/22069 -https://www.oceanexpert.org/institution/22070 -https://www.oceanexpert.org/institution/22071 -https://www.oceanexpert.org/institution/22073 -https://www.oceanexpert.org/institution/22074 -https://www.oceanexpert.org/institution/22076 -https://www.oceanexpert.org/institution/22077 -https://www.oceanexpert.org/institution/22078 -https://www.oceanexpert.org/institution/22079 -https://www.oceanexpert.org/institution/22080 -https://www.oceanexpert.org/institution/22081 -https://www.oceanexpert.org/institution/22082 -https://www.oceanexpert.org/institution/22083 -https://www.oceanexpert.org/institution/22084 -https://www.oceanexpert.org/institution/22085 -https://www.oceanexpert.org/institution/22086 -https://www.oceanexpert.org/institution/22087 -https://www.oceanexpert.org/institution/22088 -https://www.oceanexpert.org/institution/22089 -https://www.oceanexpert.org/institution/22090 -https://www.oceanexpert.org/institution/22092 -https://www.oceanexpert.org/institution/22093 -https://www.oceanexpert.org/institution/22094 -https://www.oceanexpert.org/institution/22095 -https://www.oceanexpert.org/institution/22096 -https://www.oceanexpert.org/institution/22097 -https://www.oceanexpert.org/institution/22098 -https://www.oceanexpert.org/institution/22099 -https://www.oceanexpert.org/institution/22100 -https://www.oceanexpert.org/institution/22102 -https://www.oceanexpert.org/institution/22103 -https://www.oceanexpert.org/institution/22104 -https://www.oceanexpert.org/institution/22105 -https://www.oceanexpert.org/institution/22106 -https://www.oceanexpert.org/institution/22107 -https://www.oceanexpert.org/institution/22108 -https://www.oceanexpert.org/institution/22109 -https://www.oceanexpert.org/institution/22110 -https://www.oceanexpert.org/institution/22112 -https://www.oceanexpert.org/institution/22113 -https://www.oceanexpert.org/institution/22114 -https://www.oceanexpert.org/institution/22115 -https://www.oceanexpert.org/institution/22116 -https://www.oceanexpert.org/institution/22117 -https://www.oceanexpert.org/institution/22118 -https://www.oceanexpert.org/institution/22119 -https://www.oceanexpert.org/institution/22120 -https://www.oceanexpert.org/institution/22121 -https://www.oceanexpert.org/institution/22122 -https://www.oceanexpert.org/institution/22124 -https://www.oceanexpert.org/institution/22125 -https://www.oceanexpert.org/institution/22126 -https://www.oceanexpert.org/institution/22128 -https://www.oceanexpert.org/institution/22129 -https://www.oceanexpert.org/institution/22130 -https://www.oceanexpert.org/institution/22131 -https://www.oceanexpert.org/institution/22132 -https://www.oceanexpert.org/institution/22134 -https://www.oceanexpert.org/institution/22138 -https://www.oceanexpert.org/institution/22139 -https://www.oceanexpert.org/institution/22140 -https://www.oceanexpert.org/institution/22141 -https://www.oceanexpert.org/institution/22142 -https://www.oceanexpert.org/institution/22143 -https://www.oceanexpert.org/institution/22144 -https://www.oceanexpert.org/institution/22145 -https://www.oceanexpert.org/institution/22147 -https://www.oceanexpert.org/institution/22148 -https://www.oceanexpert.org/institution/22149 -https://www.oceanexpert.org/institution/22150 -https://www.oceanexpert.org/institution/22151 -https://www.oceanexpert.org/institution/22152 -https://www.oceanexpert.org/institution/22153 -https://www.oceanexpert.org/institution/22154 -https://www.oceanexpert.org/institution/22155 -https://www.oceanexpert.org/institution/22156 -https://www.oceanexpert.org/institution/22157 -https://www.oceanexpert.org/institution/22158 -https://www.oceanexpert.org/institution/22160 -https://www.oceanexpert.org/institution/22161 -https://www.oceanexpert.org/institution/22163 -https://www.oceanexpert.org/institution/22164 -https://www.oceanexpert.org/institution/22165 -https://www.oceanexpert.org/institution/22166 -https://www.oceanexpert.org/institution/22167 -https://www.oceanexpert.org/institution/22169 -https://www.oceanexpert.org/institution/22170 -https://www.oceanexpert.org/institution/22171 -https://www.oceanexpert.org/institution/22172 -https://www.oceanexpert.org/institution/22173 -https://www.oceanexpert.org/institution/22174 -https://www.oceanexpert.org/institution/22175 -https://www.oceanexpert.org/institution/22176 -https://www.oceanexpert.org/institution/22178 -https://www.oceanexpert.org/institution/22179 -https://www.oceanexpert.org/institution/22180 -https://www.oceanexpert.org/institution/22181 -https://www.oceanexpert.org/institution/22182 -https://www.oceanexpert.org/institution/22183 -https://www.oceanexpert.org/institution/22184 -https://www.oceanexpert.org/institution/22185 -https://www.oceanexpert.org/institution/22186 -https://www.oceanexpert.org/institution/22187 -https://www.oceanexpert.org/institution/22188 -https://www.oceanexpert.org/institution/22189 -https://www.oceanexpert.org/institution/22190 -https://www.oceanexpert.org/institution/22191 -https://www.oceanexpert.org/institution/22192 -https://www.oceanexpert.org/institution/22193 -https://www.oceanexpert.org/institution/22194 -https://www.oceanexpert.org/institution/22195 -https://www.oceanexpert.org/institution/22196 -https://www.oceanexpert.org/institution/22197 -https://www.oceanexpert.org/institution/22198 -https://www.oceanexpert.org/institution/22200 -https://www.oceanexpert.org/institution/22201 -https://www.oceanexpert.org/institution/22202 -https://www.oceanexpert.org/institution/22203 -https://www.oceanexpert.org/institution/22204 -https://www.oceanexpert.org/institution/22205 -https://www.oceanexpert.org/institution/22206 -https://www.oceanexpert.org/institution/22207 -https://www.oceanexpert.org/institution/22208 -https://www.oceanexpert.org/institution/22209 -https://www.oceanexpert.org/institution/22210 -https://www.oceanexpert.org/institution/22212 -https://www.oceanexpert.org/institution/22213 -https://www.oceanexpert.org/institution/22214 -https://www.oceanexpert.org/institution/22215 -https://www.oceanexpert.org/institution/22216 -https://www.oceanexpert.org/institution/22217 -https://www.oceanexpert.org/institution/22218 -https://www.oceanexpert.org/institution/22220 -https://www.oceanexpert.org/institution/22221 -https://www.oceanexpert.org/institution/22222 -https://www.oceanexpert.org/institution/22223 -https://www.oceanexpert.org/institution/22224 -https://www.oceanexpert.org/institution/22225 -https://www.oceanexpert.org/event/2 -https://www.oceanexpert.org/event/3 -https://www.oceanexpert.org/event/4 -https://www.oceanexpert.org/event/10 -https://www.oceanexpert.org/event/12 -https://www.oceanexpert.org/event/13 -https://www.oceanexpert.org/event/15 -https://www.oceanexpert.org/event/16 -https://www.oceanexpert.org/event/18 -https://www.oceanexpert.org/event/19 -https://www.oceanexpert.org/event/20 -https://www.oceanexpert.org/event/21 -https://www.oceanexpert.org/event/22 -https://www.oceanexpert.org/event/23 -https://www.oceanexpert.org/event/24 -https://www.oceanexpert.org/event/25 -https://www.oceanexpert.org/event/26 -https://www.oceanexpert.org/event/27 -https://www.oceanexpert.org/event/28 -https://www.oceanexpert.org/event/30 -https://www.oceanexpert.org/event/31 -https://www.oceanexpert.org/event/32 -https://www.oceanexpert.org/event/35 -https://www.oceanexpert.org/event/37 -https://www.oceanexpert.org/event/38 -https://www.oceanexpert.org/event/39 -https://www.oceanexpert.org/event/40 -https://www.oceanexpert.org/event/41 -https://www.oceanexpert.org/event/42 -https://www.oceanexpert.org/event/43 -https://www.oceanexpert.org/event/44 -https://www.oceanexpert.org/event/45 -https://www.oceanexpert.org/event/46 -https://www.oceanexpert.org/event/47 -https://www.oceanexpert.org/event/48 -https://www.oceanexpert.org/event/49 -https://www.oceanexpert.org/event/50 -https://www.oceanexpert.org/event/51 -https://www.oceanexpert.org/event/52 -https://www.oceanexpert.org/event/53 -https://www.oceanexpert.org/event/54 -https://www.oceanexpert.org/event/55 -https://www.oceanexpert.org/event/56 -https://www.oceanexpert.org/event/57 -https://www.oceanexpert.org/event/58 -https://www.oceanexpert.org/event/61 -https://www.oceanexpert.org/event/64 -https://www.oceanexpert.org/event/65 -https://www.oceanexpert.org/event/66 -https://www.oceanexpert.org/event/67 -https://www.oceanexpert.org/event/69 -https://www.oceanexpert.org/event/70 -https://www.oceanexpert.org/event/71 -https://www.oceanexpert.org/event/72 -https://www.oceanexpert.org/event/73 -https://www.oceanexpert.org/event/74 -https://www.oceanexpert.org/event/75 -https://www.oceanexpert.org/event/76 -https://www.oceanexpert.org/event/77 -https://www.oceanexpert.org/event/78 -https://www.oceanexpert.org/event/80 -https://www.oceanexpert.org/event/81 -https://www.oceanexpert.org/event/82 -https://www.oceanexpert.org/event/84 -https://www.oceanexpert.org/event/85 -https://www.oceanexpert.org/event/86 -https://www.oceanexpert.org/event/87 -https://www.oceanexpert.org/event/88 -https://www.oceanexpert.org/event/89 -https://www.oceanexpert.org/event/90 -https://www.oceanexpert.org/event/91 -https://www.oceanexpert.org/event/92 -https://www.oceanexpert.org/event/94 -https://www.oceanexpert.org/event/95 -https://www.oceanexpert.org/event/96 -https://www.oceanexpert.org/event/97 -https://www.oceanexpert.org/event/98 -https://www.oceanexpert.org/event/99 -https://www.oceanexpert.org/event/100 -https://www.oceanexpert.org/event/101 -https://www.oceanexpert.org/event/104 -https://www.oceanexpert.org/event/106 -https://www.oceanexpert.org/event/108 -https://www.oceanexpert.org/event/111 -https://www.oceanexpert.org/event/112 -https://www.oceanexpert.org/event/113 -https://www.oceanexpert.org/event/114 -https://www.oceanexpert.org/event/118 -https://www.oceanexpert.org/event/120 -https://www.oceanexpert.org/event/122 -https://www.oceanexpert.org/event/123 -https://www.oceanexpert.org/event/124 -https://www.oceanexpert.org/event/125 -https://www.oceanexpert.org/event/126 -https://www.oceanexpert.org/event/127 -https://www.oceanexpert.org/event/128 -https://www.oceanexpert.org/event/129 -https://www.oceanexpert.org/event/130 -https://www.oceanexpert.org/event/131 -https://www.oceanexpert.org/event/132 -https://www.oceanexpert.org/event/133 -https://www.oceanexpert.org/event/135 -https://www.oceanexpert.org/event/140 -https://www.oceanexpert.org/event/142 -https://www.oceanexpert.org/event/143 -https://www.oceanexpert.org/event/144 -https://www.oceanexpert.org/event/145 -https://www.oceanexpert.org/event/146 -https://www.oceanexpert.org/event/147 -https://www.oceanexpert.org/event/148 -https://www.oceanexpert.org/event/149 -https://www.oceanexpert.org/event/150 -https://www.oceanexpert.org/event/151 -https://www.oceanexpert.org/event/152 -https://www.oceanexpert.org/event/153 -https://www.oceanexpert.org/event/154 -https://www.oceanexpert.org/event/155 -https://www.oceanexpert.org/event/157 -https://www.oceanexpert.org/event/158 -https://www.oceanexpert.org/event/160 -https://www.oceanexpert.org/event/161 -https://www.oceanexpert.org/event/162 -https://www.oceanexpert.org/event/163 -https://www.oceanexpert.org/event/164 -https://www.oceanexpert.org/event/165 -https://www.oceanexpert.org/event/166 -https://www.oceanexpert.org/event/168 -https://www.oceanexpert.org/event/169 -https://www.oceanexpert.org/event/170 -https://www.oceanexpert.org/event/172 -https://www.oceanexpert.org/event/173 -https://www.oceanexpert.org/event/175 -https://www.oceanexpert.org/event/176 -https://www.oceanexpert.org/event/177 -https://www.oceanexpert.org/event/178 -https://www.oceanexpert.org/event/179 -https://www.oceanexpert.org/event/180 -https://www.oceanexpert.org/event/181 -https://www.oceanexpert.org/event/182 -https://www.oceanexpert.org/event/183 -https://www.oceanexpert.org/event/184 -https://www.oceanexpert.org/event/185 -https://www.oceanexpert.org/event/187 -https://www.oceanexpert.org/event/188 -https://www.oceanexpert.org/event/189 -https://www.oceanexpert.org/event/191 -https://www.oceanexpert.org/event/192 -https://www.oceanexpert.org/event/193 -https://www.oceanexpert.org/event/194 -https://www.oceanexpert.org/event/195 -https://www.oceanexpert.org/event/197 -https://www.oceanexpert.org/event/198 -https://www.oceanexpert.org/event/199 -https://www.oceanexpert.org/event/201 -https://www.oceanexpert.org/event/202 -https://www.oceanexpert.org/event/203 -https://www.oceanexpert.org/event/204 -https://www.oceanexpert.org/event/205 -https://www.oceanexpert.org/event/206 -https://www.oceanexpert.org/event/207 -https://www.oceanexpert.org/event/208 -https://www.oceanexpert.org/event/209 -https://www.oceanexpert.org/event/210 -https://www.oceanexpert.org/event/211 -https://www.oceanexpert.org/event/212 -https://www.oceanexpert.org/event/213 -https://www.oceanexpert.org/event/214 -https://www.oceanexpert.org/event/215 -https://www.oceanexpert.org/event/217 -https://www.oceanexpert.org/event/218 -https://www.oceanexpert.org/event/220 -https://www.oceanexpert.org/event/221 -https://www.oceanexpert.org/event/222 -https://www.oceanexpert.org/event/223 -https://www.oceanexpert.org/event/224 -https://www.oceanexpert.org/event/225 -https://www.oceanexpert.org/event/226 -https://www.oceanexpert.org/event/227 -https://www.oceanexpert.org/event/228 -https://www.oceanexpert.org/event/229 -https://www.oceanexpert.org/event/230 -https://www.oceanexpert.org/event/231 -https://www.oceanexpert.org/event/232 -https://www.oceanexpert.org/event/233 -https://www.oceanexpert.org/event/234 -https://www.oceanexpert.org/event/235 -https://www.oceanexpert.org/event/236 -https://www.oceanexpert.org/event/237 -https://www.oceanexpert.org/event/238 -https://www.oceanexpert.org/event/239 -https://www.oceanexpert.org/event/240 -https://www.oceanexpert.org/event/241 -https://www.oceanexpert.org/event/242 -https://www.oceanexpert.org/event/243 -https://www.oceanexpert.org/event/244 -https://www.oceanexpert.org/event/245 -https://www.oceanexpert.org/event/246 -https://www.oceanexpert.org/event/247 -https://www.oceanexpert.org/event/248 -https://www.oceanexpert.org/event/249 -https://www.oceanexpert.org/event/250 -https://www.oceanexpert.org/event/251 -https://www.oceanexpert.org/event/252 -https://www.oceanexpert.org/event/254 -https://www.oceanexpert.org/event/255 -https://www.oceanexpert.org/event/256 -https://www.oceanexpert.org/event/257 -https://www.oceanexpert.org/event/258 -https://www.oceanexpert.org/event/259 -https://www.oceanexpert.org/event/260 -https://www.oceanexpert.org/event/264 -https://www.oceanexpert.org/event/265 -https://www.oceanexpert.org/event/266 -https://www.oceanexpert.org/event/267 -https://www.oceanexpert.org/event/268 -https://www.oceanexpert.org/event/269 -https://www.oceanexpert.org/event/270 -https://www.oceanexpert.org/event/271 -https://www.oceanexpert.org/event/272 -https://www.oceanexpert.org/event/273 -https://www.oceanexpert.org/event/274 -https://www.oceanexpert.org/event/275 -https://www.oceanexpert.org/event/276 -https://www.oceanexpert.org/event/277 -https://www.oceanexpert.org/event/278 -https://www.oceanexpert.org/event/279 -https://www.oceanexpert.org/event/280 -https://www.oceanexpert.org/event/281 -https://www.oceanexpert.org/event/282 -https://www.oceanexpert.org/event/284 -https://www.oceanexpert.org/event/285 -https://www.oceanexpert.org/event/286 -https://www.oceanexpert.org/event/287 -https://www.oceanexpert.org/event/288 -https://www.oceanexpert.org/event/289 -https://www.oceanexpert.org/event/290 -https://www.oceanexpert.org/event/291 -https://www.oceanexpert.org/event/292 -https://www.oceanexpert.org/event/293 -https://www.oceanexpert.org/event/294 -https://www.oceanexpert.org/event/295 -https://www.oceanexpert.org/event/296 -https://www.oceanexpert.org/event/297 -https://www.oceanexpert.org/event/298 -https://www.oceanexpert.org/event/299 -https://www.oceanexpert.org/event/300 -https://www.oceanexpert.org/event/301 -https://www.oceanexpert.org/event/302 -https://www.oceanexpert.org/event/303 -https://www.oceanexpert.org/event/304 -https://www.oceanexpert.org/event/305 -https://www.oceanexpert.org/event/306 -https://www.oceanexpert.org/event/307 -https://www.oceanexpert.org/event/308 -https://www.oceanexpert.org/event/309 -https://www.oceanexpert.org/event/312 -https://www.oceanexpert.org/event/313 -https://www.oceanexpert.org/event/314 -https://www.oceanexpert.org/event/315 -https://www.oceanexpert.org/event/316 -https://www.oceanexpert.org/event/317 -https://www.oceanexpert.org/event/318 -https://www.oceanexpert.org/event/319 -https://www.oceanexpert.org/event/320 -https://www.oceanexpert.org/event/321 -https://www.oceanexpert.org/event/322 -https://www.oceanexpert.org/event/323 -https://www.oceanexpert.org/event/324 -https://www.oceanexpert.org/event/325 -https://www.oceanexpert.org/event/326 -https://www.oceanexpert.org/event/327 -https://www.oceanexpert.org/event/328 -https://www.oceanexpert.org/event/330 -https://www.oceanexpert.org/event/332 -https://www.oceanexpert.org/event/333 -https://www.oceanexpert.org/event/334 -https://www.oceanexpert.org/event/336 -https://www.oceanexpert.org/event/337 -https://www.oceanexpert.org/event/338 -https://www.oceanexpert.org/event/340 -https://www.oceanexpert.org/event/341 -https://www.oceanexpert.org/event/342 -https://www.oceanexpert.org/event/343 -https://www.oceanexpert.org/event/344 -https://www.oceanexpert.org/event/345 -https://www.oceanexpert.org/event/346 -https://www.oceanexpert.org/event/347 -https://www.oceanexpert.org/event/350 -https://www.oceanexpert.org/event/351 -https://www.oceanexpert.org/event/352 -https://www.oceanexpert.org/event/353 -https://www.oceanexpert.org/event/354 -https://www.oceanexpert.org/event/355 -https://www.oceanexpert.org/event/356 -https://www.oceanexpert.org/event/357 -https://www.oceanexpert.org/event/358 -https://www.oceanexpert.org/event/359 -https://www.oceanexpert.org/event/360 -https://www.oceanexpert.org/event/362 -https://www.oceanexpert.org/event/363 -https://www.oceanexpert.org/event/365 -https://www.oceanexpert.org/event/366 -https://www.oceanexpert.org/event/367 -https://www.oceanexpert.org/event/368 -https://www.oceanexpert.org/event/369 -https://www.oceanexpert.org/event/370 -https://www.oceanexpert.org/event/371 -https://www.oceanexpert.org/event/372 -https://www.oceanexpert.org/event/374 -https://www.oceanexpert.org/event/375 -https://www.oceanexpert.org/event/376 -https://www.oceanexpert.org/event/377 -https://www.oceanexpert.org/event/378 -https://www.oceanexpert.org/event/379 -https://www.oceanexpert.org/event/380 -https://www.oceanexpert.org/event/381 -https://www.oceanexpert.org/event/383 -https://www.oceanexpert.org/event/385 -https://www.oceanexpert.org/event/386 -https://www.oceanexpert.org/event/387 -https://www.oceanexpert.org/event/388 -https://www.oceanexpert.org/event/389 -https://www.oceanexpert.org/event/390 -https://www.oceanexpert.org/event/392 -https://www.oceanexpert.org/event/393 -https://www.oceanexpert.org/event/394 -https://www.oceanexpert.org/event/395 -https://www.oceanexpert.org/event/397 -https://www.oceanexpert.org/event/398 -https://www.oceanexpert.org/event/399 -https://www.oceanexpert.org/event/401 -https://www.oceanexpert.org/event/402 -https://www.oceanexpert.org/event/404 -https://www.oceanexpert.org/event/405 -https://www.oceanexpert.org/event/406 -https://www.oceanexpert.org/event/407 -https://www.oceanexpert.org/event/409 -https://www.oceanexpert.org/event/410 -https://www.oceanexpert.org/event/411 -https://www.oceanexpert.org/event/412 -https://www.oceanexpert.org/event/413 -https://www.oceanexpert.org/event/414 -https://www.oceanexpert.org/event/415 -https://www.oceanexpert.org/event/416 -https://www.oceanexpert.org/event/417 -https://www.oceanexpert.org/event/418 -https://www.oceanexpert.org/event/419 -https://www.oceanexpert.org/event/420 -https://www.oceanexpert.org/event/421 -https://www.oceanexpert.org/event/422 -https://www.oceanexpert.org/event/423 -https://www.oceanexpert.org/event/424 -https://www.oceanexpert.org/event/425 -https://www.oceanexpert.org/event/426 -https://www.oceanexpert.org/event/429 -https://www.oceanexpert.org/event/430 -https://www.oceanexpert.org/event/431 -https://www.oceanexpert.org/event/432 -https://www.oceanexpert.org/event/433 -https://www.oceanexpert.org/event/434 -https://www.oceanexpert.org/event/435 -https://www.oceanexpert.org/event/436 -https://www.oceanexpert.org/event/437 -https://www.oceanexpert.org/event/438 -https://www.oceanexpert.org/event/439 -https://www.oceanexpert.org/event/440 -https://www.oceanexpert.org/event/441 -https://www.oceanexpert.org/event/442 -https://www.oceanexpert.org/event/443 -https://www.oceanexpert.org/event/444 -https://www.oceanexpert.org/event/445 -https://www.oceanexpert.org/event/446 -https://www.oceanexpert.org/event/447 -https://www.oceanexpert.org/event/448 -https://www.oceanexpert.org/event/450 -https://www.oceanexpert.org/event/451 -https://www.oceanexpert.org/event/452 -https://www.oceanexpert.org/event/453 -https://www.oceanexpert.org/event/454 -https://www.oceanexpert.org/event/455 -https://www.oceanexpert.org/event/456 -https://www.oceanexpert.org/event/459 -https://www.oceanexpert.org/event/463 -https://www.oceanexpert.org/event/464 -https://www.oceanexpert.org/event/467 -https://www.oceanexpert.org/event/468 -https://www.oceanexpert.org/event/469 -https://www.oceanexpert.org/event/470 -https://www.oceanexpert.org/event/471 -https://www.oceanexpert.org/event/472 -https://www.oceanexpert.org/event/473 -https://www.oceanexpert.org/event/475 -https://www.oceanexpert.org/event/476 -https://www.oceanexpert.org/event/477 -https://www.oceanexpert.org/event/478 -https://www.oceanexpert.org/event/481 -https://www.oceanexpert.org/event/482 -https://www.oceanexpert.org/event/483 -https://www.oceanexpert.org/event/484 -https://www.oceanexpert.org/event/485 -https://www.oceanexpert.org/event/488 -https://www.oceanexpert.org/event/489 -https://www.oceanexpert.org/event/490 -https://www.oceanexpert.org/event/491 -https://www.oceanexpert.org/event/492 -https://www.oceanexpert.org/event/493 -https://www.oceanexpert.org/event/494 -https://www.oceanexpert.org/event/495 -https://www.oceanexpert.org/event/496 -https://www.oceanexpert.org/event/501 -https://www.oceanexpert.org/event/502 -https://www.oceanexpert.org/event/503 -https://www.oceanexpert.org/event/505 -https://www.oceanexpert.org/event/506 -https://www.oceanexpert.org/event/507 -https://www.oceanexpert.org/event/508 -https://www.oceanexpert.org/event/509 -https://www.oceanexpert.org/event/510 -https://www.oceanexpert.org/event/512 -https://www.oceanexpert.org/event/513 -https://www.oceanexpert.org/event/515 -https://www.oceanexpert.org/event/516 -https://www.oceanexpert.org/event/517 -https://www.oceanexpert.org/event/518 -https://www.oceanexpert.org/event/520 -https://www.oceanexpert.org/event/521 -https://www.oceanexpert.org/event/522 -https://www.oceanexpert.org/event/523 -https://www.oceanexpert.org/event/524 -https://www.oceanexpert.org/event/526 -https://www.oceanexpert.org/event/527 -https://www.oceanexpert.org/event/528 -https://www.oceanexpert.org/event/529 -https://www.oceanexpert.org/event/530 -https://www.oceanexpert.org/event/531 -https://www.oceanexpert.org/event/532 -https://www.oceanexpert.org/event/533 -https://www.oceanexpert.org/event/534 -https://www.oceanexpert.org/event/535 -https://www.oceanexpert.org/event/536 -https://www.oceanexpert.org/event/537 -https://www.oceanexpert.org/event/538 -https://www.oceanexpert.org/event/539 -https://www.oceanexpert.org/event/540 -https://www.oceanexpert.org/event/541 -https://www.oceanexpert.org/event/542 -https://www.oceanexpert.org/event/544 -https://www.oceanexpert.org/event/545 -https://www.oceanexpert.org/event/546 -https://www.oceanexpert.org/event/547 -https://www.oceanexpert.org/event/548 -https://www.oceanexpert.org/event/549 -https://www.oceanexpert.org/event/550 -https://www.oceanexpert.org/event/551 -https://www.oceanexpert.org/event/552 -https://www.oceanexpert.org/event/553 -https://www.oceanexpert.org/event/554 -https://www.oceanexpert.org/event/556 -https://www.oceanexpert.org/event/557 -https://www.oceanexpert.org/event/558 -https://www.oceanexpert.org/event/559 -https://www.oceanexpert.org/event/560 -https://www.oceanexpert.org/event/561 -https://www.oceanexpert.org/event/562 -https://www.oceanexpert.org/event/563 -https://www.oceanexpert.org/event/564 -https://www.oceanexpert.org/event/565 -https://www.oceanexpert.org/event/566 -https://www.oceanexpert.org/event/567 -https://www.oceanexpert.org/event/568 -https://www.oceanexpert.org/event/576 -https://www.oceanexpert.org/event/577 -https://www.oceanexpert.org/event/578 -https://www.oceanexpert.org/event/579 -https://www.oceanexpert.org/event/580 -https://www.oceanexpert.org/event/581 -https://www.oceanexpert.org/event/582 -https://www.oceanexpert.org/event/583 -https://www.oceanexpert.org/event/584 -https://www.oceanexpert.org/event/587 -https://www.oceanexpert.org/event/588 -https://www.oceanexpert.org/event/590 -https://www.oceanexpert.org/event/591 -https://www.oceanexpert.org/event/592 -https://www.oceanexpert.org/event/593 -https://www.oceanexpert.org/event/594 -https://www.oceanexpert.org/event/595 -https://www.oceanexpert.org/event/596 -https://www.oceanexpert.org/event/597 -https://www.oceanexpert.org/event/598 -https://www.oceanexpert.org/event/599 -https://www.oceanexpert.org/event/601 -https://www.oceanexpert.org/event/602 -https://www.oceanexpert.org/event/605 -https://www.oceanexpert.org/event/606 -https://www.oceanexpert.org/event/607 -https://www.oceanexpert.org/event/608 -https://www.oceanexpert.org/event/609 -https://www.oceanexpert.org/event/610 -https://www.oceanexpert.org/event/611 -https://www.oceanexpert.org/event/612 -https://www.oceanexpert.org/event/613 -https://www.oceanexpert.org/event/614 -https://www.oceanexpert.org/event/615 -https://www.oceanexpert.org/event/616 -https://www.oceanexpert.org/event/622 -https://www.oceanexpert.org/event/624 -https://www.oceanexpert.org/event/625 -https://www.oceanexpert.org/event/626 -https://www.oceanexpert.org/event/627 -https://www.oceanexpert.org/event/628 -https://www.oceanexpert.org/event/629 -https://www.oceanexpert.org/event/630 -https://www.oceanexpert.org/event/632 -https://www.oceanexpert.org/event/633 -https://www.oceanexpert.org/event/634 -https://www.oceanexpert.org/event/635 -https://www.oceanexpert.org/event/636 -https://www.oceanexpert.org/event/637 -https://www.oceanexpert.org/event/638 -https://www.oceanexpert.org/event/639 -https://www.oceanexpert.org/event/640 -https://www.oceanexpert.org/event/641 -https://www.oceanexpert.org/event/642 -https://www.oceanexpert.org/event/643 -https://www.oceanexpert.org/event/644 -https://www.oceanexpert.org/event/645 -https://www.oceanexpert.org/event/647 -https://www.oceanexpert.org/event/648 -https://www.oceanexpert.org/event/649 -https://www.oceanexpert.org/event/650 -https://www.oceanexpert.org/event/651 -https://www.oceanexpert.org/event/652 -https://www.oceanexpert.org/event/653 -https://www.oceanexpert.org/event/659 -https://www.oceanexpert.org/event/660 -https://www.oceanexpert.org/event/661 -https://www.oceanexpert.org/event/662 -https://www.oceanexpert.org/event/663 -https://www.oceanexpert.org/event/664 -https://www.oceanexpert.org/event/665 -https://www.oceanexpert.org/event/667 -https://www.oceanexpert.org/event/668 -https://www.oceanexpert.org/event/670 -https://www.oceanexpert.org/event/671 -https://www.oceanexpert.org/event/672 -https://www.oceanexpert.org/event/674 -https://www.oceanexpert.org/event/675 -https://www.oceanexpert.org/event/676 -https://www.oceanexpert.org/event/677 -https://www.oceanexpert.org/event/678 -https://www.oceanexpert.org/event/681 -https://www.oceanexpert.org/event/682 -https://www.oceanexpert.org/event/683 -https://www.oceanexpert.org/event/684 -https://www.oceanexpert.org/event/686 -https://www.oceanexpert.org/event/687 -https://www.oceanexpert.org/event/688 -https://www.oceanexpert.org/event/689 -https://www.oceanexpert.org/event/690 -https://www.oceanexpert.org/event/691 -https://www.oceanexpert.org/event/692 -https://www.oceanexpert.org/event/693 -https://www.oceanexpert.org/event/694 -https://www.oceanexpert.org/event/695 -https://www.oceanexpert.org/event/696 -https://www.oceanexpert.org/event/697 -https://www.oceanexpert.org/event/698 -https://www.oceanexpert.org/event/699 -https://www.oceanexpert.org/event/700 -https://www.oceanexpert.org/event/701 -https://www.oceanexpert.org/event/702 -https://www.oceanexpert.org/event/703 -https://www.oceanexpert.org/event/704 -https://www.oceanexpert.org/event/705 -https://www.oceanexpert.org/event/706 -https://www.oceanexpert.org/event/707 -https://www.oceanexpert.org/event/708 -https://www.oceanexpert.org/event/709 -https://www.oceanexpert.org/event/710 -https://www.oceanexpert.org/event/712 -https://www.oceanexpert.org/event/713 -https://www.oceanexpert.org/event/715 -https://www.oceanexpert.org/event/716 -https://www.oceanexpert.org/event/717 -https://www.oceanexpert.org/event/718 -https://www.oceanexpert.org/event/719 -https://www.oceanexpert.org/event/720 -https://www.oceanexpert.org/event/721 -https://www.oceanexpert.org/event/722 -https://www.oceanexpert.org/event/723 -https://www.oceanexpert.org/event/724 -https://www.oceanexpert.org/event/725 -https://www.oceanexpert.org/event/727 -https://www.oceanexpert.org/event/731 -https://www.oceanexpert.org/event/732 -https://www.oceanexpert.org/event/733 -https://www.oceanexpert.org/event/734 -https://www.oceanexpert.org/event/735 -https://www.oceanexpert.org/event/736 -https://www.oceanexpert.org/event/744 -https://www.oceanexpert.org/event/746 -https://www.oceanexpert.org/event/747 -https://www.oceanexpert.org/event/748 -https://www.oceanexpert.org/event/749 -https://www.oceanexpert.org/event/752 -https://www.oceanexpert.org/event/753 -https://www.oceanexpert.org/event/754 -https://www.oceanexpert.org/event/755 -https://www.oceanexpert.org/event/756 -https://www.oceanexpert.org/event/757 -https://www.oceanexpert.org/event/758 -https://www.oceanexpert.org/event/760 -https://www.oceanexpert.org/event/761 -https://www.oceanexpert.org/event/762 -https://www.oceanexpert.org/event/763 -https://www.oceanexpert.org/event/764 -https://www.oceanexpert.org/event/765 -https://www.oceanexpert.org/event/766 -https://www.oceanexpert.org/event/768 -https://www.oceanexpert.org/event/769 -https://www.oceanexpert.org/event/772 -https://www.oceanexpert.org/event/773 -https://www.oceanexpert.org/event/774 -https://www.oceanexpert.org/event/779 -https://www.oceanexpert.org/event/780 -https://www.oceanexpert.org/event/781 -https://www.oceanexpert.org/event/782 -https://www.oceanexpert.org/event/783 -https://www.oceanexpert.org/event/784 -https://www.oceanexpert.org/event/788 -https://www.oceanexpert.org/event/789 -https://www.oceanexpert.org/event/790 -https://www.oceanexpert.org/event/791 -https://www.oceanexpert.org/event/792 -https://www.oceanexpert.org/event/793 -https://www.oceanexpert.org/event/794 -https://www.oceanexpert.org/event/795 -https://www.oceanexpert.org/event/796 -https://www.oceanexpert.org/event/797 -https://www.oceanexpert.org/event/798 -https://www.oceanexpert.org/event/799 -https://www.oceanexpert.org/event/802 -https://www.oceanexpert.org/event/804 -https://www.oceanexpert.org/event/805 -https://www.oceanexpert.org/event/806 -https://www.oceanexpert.org/event/807 -https://www.oceanexpert.org/event/808 -https://www.oceanexpert.org/event/809 -https://www.oceanexpert.org/event/810 -https://www.oceanexpert.org/event/811 -https://www.oceanexpert.org/event/812 -https://www.oceanexpert.org/event/813 -https://www.oceanexpert.org/event/816 -https://www.oceanexpert.org/event/818 -https://www.oceanexpert.org/event/820 -https://www.oceanexpert.org/event/821 -https://www.oceanexpert.org/event/822 -https://www.oceanexpert.org/event/823 -https://www.oceanexpert.org/event/824 -https://www.oceanexpert.org/event/826 -https://www.oceanexpert.org/event/827 -https://www.oceanexpert.org/event/828 -https://www.oceanexpert.org/event/829 -https://www.oceanexpert.org/event/830 -https://www.oceanexpert.org/event/831 -https://www.oceanexpert.org/event/832 -https://www.oceanexpert.org/event/833 -https://www.oceanexpert.org/event/834 -https://www.oceanexpert.org/event/835 -https://www.oceanexpert.org/event/836 -https://www.oceanexpert.org/event/837 -https://www.oceanexpert.org/event/838 -https://www.oceanexpert.org/event/839 -https://www.oceanexpert.org/event/840 -https://www.oceanexpert.org/event/845 -https://www.oceanexpert.org/event/846 -https://www.oceanexpert.org/event/847 -https://www.oceanexpert.org/event/850 -https://www.oceanexpert.org/event/851 -https://www.oceanexpert.org/event/854 -https://www.oceanexpert.org/event/855 -https://www.oceanexpert.org/event/856 -https://www.oceanexpert.org/event/858 -https://www.oceanexpert.org/event/859 -https://www.oceanexpert.org/event/860 -https://www.oceanexpert.org/event/861 -https://www.oceanexpert.org/event/862 -https://www.oceanexpert.org/event/863 -https://www.oceanexpert.org/event/864 -https://www.oceanexpert.org/event/865 -https://www.oceanexpert.org/event/866 -https://www.oceanexpert.org/event/867 -https://www.oceanexpert.org/event/868 -https://www.oceanexpert.org/event/869 -https://www.oceanexpert.org/event/870 -https://www.oceanexpert.org/event/871 -https://www.oceanexpert.org/event/872 -https://www.oceanexpert.org/event/873 -https://www.oceanexpert.org/event/874 -https://www.oceanexpert.org/event/875 -https://www.oceanexpert.org/event/876 -https://www.oceanexpert.org/event/877 -https://www.oceanexpert.org/event/878 -https://www.oceanexpert.org/event/879 -https://www.oceanexpert.org/event/880 -https://www.oceanexpert.org/event/881 -https://www.oceanexpert.org/event/882 -https://www.oceanexpert.org/event/883 -https://www.oceanexpert.org/event/884 -https://www.oceanexpert.org/event/885 -https://www.oceanexpert.org/event/889 -https://www.oceanexpert.org/event/890 -https://www.oceanexpert.org/event/891 -https://www.oceanexpert.org/event/892 -https://www.oceanexpert.org/event/896 -https://www.oceanexpert.org/event/897 -https://www.oceanexpert.org/event/898 -https://www.oceanexpert.org/event/900 -https://www.oceanexpert.org/event/901 -https://www.oceanexpert.org/event/905 -https://www.oceanexpert.org/event/906 -https://www.oceanexpert.org/event/914 -https://www.oceanexpert.org/event/919 -https://www.oceanexpert.org/event/922 -https://www.oceanexpert.org/event/926 -https://www.oceanexpert.org/event/928 -https://www.oceanexpert.org/event/929 -https://www.oceanexpert.org/event/937 -https://www.oceanexpert.org/event/939 -https://www.oceanexpert.org/event/940 -https://www.oceanexpert.org/event/941 -https://www.oceanexpert.org/event/942 -https://www.oceanexpert.org/event/943 -https://www.oceanexpert.org/event/944 -https://www.oceanexpert.org/event/945 -https://www.oceanexpert.org/event/946 -https://www.oceanexpert.org/event/947 -https://www.oceanexpert.org/event/948 -https://www.oceanexpert.org/event/949 -https://www.oceanexpert.org/event/950 -https://www.oceanexpert.org/event/951 -https://www.oceanexpert.org/event/952 -https://www.oceanexpert.org/event/953 -https://www.oceanexpert.org/event/954 -https://www.oceanexpert.org/event/955 -https://www.oceanexpert.org/event/956 -https://www.oceanexpert.org/event/957 -https://www.oceanexpert.org/event/958 -https://www.oceanexpert.org/event/959 -https://www.oceanexpert.org/event/960 -https://www.oceanexpert.org/event/962 -https://www.oceanexpert.org/event/963 -https://www.oceanexpert.org/event/964 -https://www.oceanexpert.org/event/965 -https://www.oceanexpert.org/event/966 -https://www.oceanexpert.org/event/967 -https://www.oceanexpert.org/event/968 -https://www.oceanexpert.org/event/969 -https://www.oceanexpert.org/event/970 -https://www.oceanexpert.org/event/971 -https://www.oceanexpert.org/event/972 -https://www.oceanexpert.org/event/973 -https://www.oceanexpert.org/event/974 -https://www.oceanexpert.org/event/975 -https://www.oceanexpert.org/event/976 -https://www.oceanexpert.org/event/977 -https://www.oceanexpert.org/event/978 -https://www.oceanexpert.org/event/979 -https://www.oceanexpert.org/event/980 -https://www.oceanexpert.org/event/981 -https://www.oceanexpert.org/event/982 -https://www.oceanexpert.org/event/983 -https://www.oceanexpert.org/event/984 -https://www.oceanexpert.org/event/985 -https://www.oceanexpert.org/event/986 -https://www.oceanexpert.org/event/987 -https://www.oceanexpert.org/event/988 -https://www.oceanexpert.org/event/989 -https://www.oceanexpert.org/event/990 -https://www.oceanexpert.org/event/991 -https://www.oceanexpert.org/event/992 -https://www.oceanexpert.org/event/998 -https://www.oceanexpert.org/event/999 -https://www.oceanexpert.org/event/1000 -https://www.oceanexpert.org/event/1001 -https://www.oceanexpert.org/event/1002 -https://www.oceanexpert.org/event/1003 -https://www.oceanexpert.org/event/1004 -https://www.oceanexpert.org/event/1005 -https://www.oceanexpert.org/event/1006 -https://www.oceanexpert.org/event/1007 -https://www.oceanexpert.org/event/1009 -https://www.oceanexpert.org/event/1010 -https://www.oceanexpert.org/event/1011 -https://www.oceanexpert.org/event/1014 -https://www.oceanexpert.org/event/1015 -https://www.oceanexpert.org/event/1016 -https://www.oceanexpert.org/event/1017 -https://www.oceanexpert.org/event/1018 -https://www.oceanexpert.org/event/1019 -https://www.oceanexpert.org/event/1020 -https://www.oceanexpert.org/event/1022 -https://www.oceanexpert.org/event/1023 -https://www.oceanexpert.org/event/1024 -https://www.oceanexpert.org/event/1025 -https://www.oceanexpert.org/event/1026 -https://www.oceanexpert.org/event/1027 -https://www.oceanexpert.org/event/1028 -https://www.oceanexpert.org/event/1029 -https://www.oceanexpert.org/event/1030 -https://www.oceanexpert.org/event/1032 -https://www.oceanexpert.org/event/1033 -https://www.oceanexpert.org/event/1034 -https://www.oceanexpert.org/event/1035 -https://www.oceanexpert.org/event/1036 -https://www.oceanexpert.org/event/1037 -https://www.oceanexpert.org/event/1038 -https://www.oceanexpert.org/event/1039 -https://www.oceanexpert.org/event/1040 -https://www.oceanexpert.org/event/1041 -https://www.oceanexpert.org/event/1042 -https://www.oceanexpert.org/event/1043 -https://www.oceanexpert.org/event/1044 -https://www.oceanexpert.org/event/1045 -https://www.oceanexpert.org/event/1046 -https://www.oceanexpert.org/event/1047 -https://www.oceanexpert.org/event/1048 -https://www.oceanexpert.org/event/1049 -https://www.oceanexpert.org/event/1050 -https://www.oceanexpert.org/event/1051 -https://www.oceanexpert.org/event/1052 -https://www.oceanexpert.org/event/1053 -https://www.oceanexpert.org/event/1054 -https://www.oceanexpert.org/event/1055 -https://www.oceanexpert.org/event/1056 -https://www.oceanexpert.org/event/1057 -https://www.oceanexpert.org/event/1058 -https://www.oceanexpert.org/event/1059 -https://www.oceanexpert.org/event/1060 -https://www.oceanexpert.org/event/1061 -https://www.oceanexpert.org/event/1062 -https://www.oceanexpert.org/event/1063 -https://www.oceanexpert.org/event/1064 -https://www.oceanexpert.org/event/1065 -https://www.oceanexpert.org/event/1066 -https://www.oceanexpert.org/event/1067 -https://www.oceanexpert.org/event/1068 -https://www.oceanexpert.org/event/1069 -https://www.oceanexpert.org/event/1070 -https://www.oceanexpert.org/event/1071 -https://www.oceanexpert.org/event/1072 -https://www.oceanexpert.org/event/1073 -https://www.oceanexpert.org/event/1074 -https://www.oceanexpert.org/event/1076 -https://www.oceanexpert.org/event/1077 -https://www.oceanexpert.org/event/1078 -https://www.oceanexpert.org/event/1079 -https://www.oceanexpert.org/event/1080 -https://www.oceanexpert.org/event/1081 -https://www.oceanexpert.org/event/1082 -https://www.oceanexpert.org/event/1083 -https://www.oceanexpert.org/event/1084 -https://www.oceanexpert.org/event/1085 -https://www.oceanexpert.org/event/1086 -https://www.oceanexpert.org/event/1087 -https://www.oceanexpert.org/event/1088 -https://www.oceanexpert.org/event/1089 -https://www.oceanexpert.org/event/1090 -https://www.oceanexpert.org/event/1092 -https://www.oceanexpert.org/event/1093 -https://www.oceanexpert.org/event/1094 -https://www.oceanexpert.org/event/1095 -https://www.oceanexpert.org/event/1096 -https://www.oceanexpert.org/event/1097 -https://www.oceanexpert.org/event/1098 -https://www.oceanexpert.org/event/1099 -https://www.oceanexpert.org/event/1101 -https://www.oceanexpert.org/event/1102 -https://www.oceanexpert.org/event/1104 -https://www.oceanexpert.org/event/1105 -https://www.oceanexpert.org/event/1106 -https://www.oceanexpert.org/event/1107 -https://www.oceanexpert.org/event/1108 -https://www.oceanexpert.org/event/1109 -https://www.oceanexpert.org/event/1110 -https://www.oceanexpert.org/event/1111 -https://www.oceanexpert.org/event/1112 -https://www.oceanexpert.org/event/1113 -https://www.oceanexpert.org/event/1114 -https://www.oceanexpert.org/event/1115 -https://www.oceanexpert.org/event/1116 -https://www.oceanexpert.org/event/1117 -https://www.oceanexpert.org/event/1118 -https://www.oceanexpert.org/event/1120 -https://www.oceanexpert.org/event/1121 -https://www.oceanexpert.org/event/1122 -https://www.oceanexpert.org/event/1123 -https://www.oceanexpert.org/event/1124 -https://www.oceanexpert.org/event/1125 -https://www.oceanexpert.org/event/1126 -https://www.oceanexpert.org/event/1127 -https://www.oceanexpert.org/event/1128 -https://www.oceanexpert.org/event/1129 -https://www.oceanexpert.org/event/1130 -https://www.oceanexpert.org/event/1131 -https://www.oceanexpert.org/event/1132 -https://www.oceanexpert.org/event/1133 -https://www.oceanexpert.org/event/1134 -https://www.oceanexpert.org/event/1135 -https://www.oceanexpert.org/event/1136 -https://www.oceanexpert.org/event/1137 -https://www.oceanexpert.org/event/1138 -https://www.oceanexpert.org/event/1139 -https://www.oceanexpert.org/event/1140 -https://www.oceanexpert.org/event/1142 -https://www.oceanexpert.org/event/1143 -https://www.oceanexpert.org/event/1145 -https://www.oceanexpert.org/event/1146 -https://www.oceanexpert.org/event/1147 -https://www.oceanexpert.org/event/1149 -https://www.oceanexpert.org/event/1150 -https://www.oceanexpert.org/event/1151 -https://www.oceanexpert.org/event/1152 -https://www.oceanexpert.org/event/1153 -https://www.oceanexpert.org/event/1154 -https://www.oceanexpert.org/event/1155 -https://www.oceanexpert.org/event/1157 -https://www.oceanexpert.org/event/1158 -https://www.oceanexpert.org/event/1159 -https://www.oceanexpert.org/event/1160 -https://www.oceanexpert.org/event/1161 -https://www.oceanexpert.org/event/1163 -https://www.oceanexpert.org/event/1164 -https://www.oceanexpert.org/event/1165 -https://www.oceanexpert.org/event/1166 -https://www.oceanexpert.org/event/1167 -https://www.oceanexpert.org/event/1168 -https://www.oceanexpert.org/event/1169 -https://www.oceanexpert.org/event/1170 -https://www.oceanexpert.org/event/1171 -https://www.oceanexpert.org/event/1172 -https://www.oceanexpert.org/event/1173 -https://www.oceanexpert.org/event/1174 -https://www.oceanexpert.org/event/1180 -https://www.oceanexpert.org/event/1181 -https://www.oceanexpert.org/event/1182 -https://www.oceanexpert.org/event/1183 -https://www.oceanexpert.org/event/1184 -https://www.oceanexpert.org/event/1186 -https://www.oceanexpert.org/event/1187 -https://www.oceanexpert.org/event/1188 -https://www.oceanexpert.org/event/1189 -https://www.oceanexpert.org/event/1190 -https://www.oceanexpert.org/event/1191 -https://www.oceanexpert.org/event/1192 -https://www.oceanexpert.org/event/1193 -https://www.oceanexpert.org/event/1194 -https://www.oceanexpert.org/event/1195 -https://www.oceanexpert.org/event/1197 -https://www.oceanexpert.org/event/1198 -https://www.oceanexpert.org/event/1199 -https://www.oceanexpert.org/event/1200 -https://www.oceanexpert.org/event/1203 -https://www.oceanexpert.org/event/1204 -https://www.oceanexpert.org/event/1205 -https://www.oceanexpert.org/event/1206 -https://www.oceanexpert.org/event/1207 -https://www.oceanexpert.org/event/1208 -https://www.oceanexpert.org/event/1209 -https://www.oceanexpert.org/event/1210 -https://www.oceanexpert.org/event/1211 -https://www.oceanexpert.org/event/1212 -https://www.oceanexpert.org/event/1213 -https://www.oceanexpert.org/event/1214 -https://www.oceanexpert.org/event/1215 -https://www.oceanexpert.org/event/1216 -https://www.oceanexpert.org/event/1217 -https://www.oceanexpert.org/event/1220 -https://www.oceanexpert.org/event/1221 -https://www.oceanexpert.org/event/1222 -https://www.oceanexpert.org/event/1224 -https://www.oceanexpert.org/event/1225 -https://www.oceanexpert.org/event/1226 -https://www.oceanexpert.org/event/1227 -https://www.oceanexpert.org/event/1228 -https://www.oceanexpert.org/event/1229 -https://www.oceanexpert.org/event/1231 -https://www.oceanexpert.org/event/1233 -https://www.oceanexpert.org/event/1234 -https://www.oceanexpert.org/event/1235 -https://www.oceanexpert.org/event/1236 -https://www.oceanexpert.org/event/1238 -https://www.oceanexpert.org/event/1239 -https://www.oceanexpert.org/event/1240 -https://www.oceanexpert.org/event/1241 -https://www.oceanexpert.org/event/1242 -https://www.oceanexpert.org/event/1243 -https://www.oceanexpert.org/event/1244 -https://www.oceanexpert.org/event/1245 -https://www.oceanexpert.org/event/1246 -https://www.oceanexpert.org/event/1247 -https://www.oceanexpert.org/event/1248 -https://www.oceanexpert.org/event/1249 -https://www.oceanexpert.org/event/1250 -https://www.oceanexpert.org/event/1251 -https://www.oceanexpert.org/event/1252 -https://www.oceanexpert.org/event/1253 -https://www.oceanexpert.org/event/1254 -https://www.oceanexpert.org/event/1255 -https://www.oceanexpert.org/event/1256 -https://www.oceanexpert.org/event/1257 -https://www.oceanexpert.org/event/1258 -https://www.oceanexpert.org/event/1259 -https://www.oceanexpert.org/event/1260 -https://www.oceanexpert.org/event/1261 -https://www.oceanexpert.org/event/1262 -https://www.oceanexpert.org/event/1263 -https://www.oceanexpert.org/event/1264 -https://www.oceanexpert.org/event/1265 -https://www.oceanexpert.org/event/1266 -https://www.oceanexpert.org/event/1267 -https://www.oceanexpert.org/event/1268 -https://www.oceanexpert.org/event/1269 -https://www.oceanexpert.org/event/1270 -https://www.oceanexpert.org/event/1271 -https://www.oceanexpert.org/event/1272 -https://www.oceanexpert.org/event/1273 -https://www.oceanexpert.org/event/1274 -https://www.oceanexpert.org/event/1275 -https://www.oceanexpert.org/event/1276 -https://www.oceanexpert.org/event/1277 -https://www.oceanexpert.org/event/1278 -https://www.oceanexpert.org/event/1279 -https://www.oceanexpert.org/event/1280 -https://www.oceanexpert.org/event/1281 -https://www.oceanexpert.org/event/1282 -https://www.oceanexpert.org/event/1287 -https://www.oceanexpert.org/event/1288 -https://www.oceanexpert.org/event/1289 -https://www.oceanexpert.org/event/1290 -https://www.oceanexpert.org/event/1291 -https://www.oceanexpert.org/event/1292 -https://www.oceanexpert.org/event/1293 -https://www.oceanexpert.org/event/1294 -https://www.oceanexpert.org/event/1295 -https://www.oceanexpert.org/event/1296 -https://www.oceanexpert.org/event/1297 -https://www.oceanexpert.org/event/1298 -https://www.oceanexpert.org/event/1299 -https://www.oceanexpert.org/event/1300 -https://www.oceanexpert.org/event/1301 -https://www.oceanexpert.org/event/1302 -https://www.oceanexpert.org/event/1303 -https://www.oceanexpert.org/event/1305 -https://www.oceanexpert.org/event/1307 -https://www.oceanexpert.org/event/1308 -https://www.oceanexpert.org/event/1310 -https://www.oceanexpert.org/event/1311 -https://www.oceanexpert.org/event/1312 -https://www.oceanexpert.org/event/1313 -https://www.oceanexpert.org/event/1314 -https://www.oceanexpert.org/event/1315 -https://www.oceanexpert.org/event/1316 -https://www.oceanexpert.org/event/1317 -https://www.oceanexpert.org/event/1318 -https://www.oceanexpert.org/event/1319 -https://www.oceanexpert.org/event/1320 -https://www.oceanexpert.org/event/1321 -https://www.oceanexpert.org/event/1322 -https://www.oceanexpert.org/event/1323 -https://www.oceanexpert.org/event/1324 -https://www.oceanexpert.org/event/1325 -https://www.oceanexpert.org/event/1326 -https://www.oceanexpert.org/event/1327 -https://www.oceanexpert.org/event/1328 -https://www.oceanexpert.org/event/1329 -https://www.oceanexpert.org/event/1330 -https://www.oceanexpert.org/event/1331 -https://www.oceanexpert.org/event/1332 -https://www.oceanexpert.org/event/1333 -https://www.oceanexpert.org/event/1334 -https://www.oceanexpert.org/event/1335 -https://www.oceanexpert.org/event/1336 -https://www.oceanexpert.org/event/1338 -https://www.oceanexpert.org/event/1340 -https://www.oceanexpert.org/event/1341 -https://www.oceanexpert.org/event/1342 -https://www.oceanexpert.org/event/1343 -https://www.oceanexpert.org/event/1344 -https://www.oceanexpert.org/event/1345 -https://www.oceanexpert.org/event/1346 -https://www.oceanexpert.org/event/1347 -https://www.oceanexpert.org/event/1348 -https://www.oceanexpert.org/event/1349 -https://www.oceanexpert.org/event/1350 -https://www.oceanexpert.org/event/1351 -https://www.oceanexpert.org/event/1352 -https://www.oceanexpert.org/event/1353 -https://www.oceanexpert.org/event/1354 -https://www.oceanexpert.org/event/1355 -https://www.oceanexpert.org/event/1356 -https://www.oceanexpert.org/event/1357 -https://www.oceanexpert.org/event/1358 -https://www.oceanexpert.org/event/1359 -https://www.oceanexpert.org/event/1360 -https://www.oceanexpert.org/event/1361 -https://www.oceanexpert.org/event/1362 -https://www.oceanexpert.org/event/1363 -https://www.oceanexpert.org/event/1364 -https://www.oceanexpert.org/event/1365 -https://www.oceanexpert.org/event/1366 -https://www.oceanexpert.org/event/1367 -https://www.oceanexpert.org/event/1368 -https://www.oceanexpert.org/event/1369 -https://www.oceanexpert.org/event/1370 -https://www.oceanexpert.org/event/1371 -https://www.oceanexpert.org/event/1372 -https://www.oceanexpert.org/event/1373 -https://www.oceanexpert.org/event/1376 -https://www.oceanexpert.org/event/1377 -https://www.oceanexpert.org/event/1378 -https://www.oceanexpert.org/event/1379 -https://www.oceanexpert.org/event/1380 -https://www.oceanexpert.org/event/1381 -https://www.oceanexpert.org/event/1383 -https://www.oceanexpert.org/event/1384 -https://www.oceanexpert.org/event/1385 -https://www.oceanexpert.org/event/1386 -https://www.oceanexpert.org/event/1388 -https://www.oceanexpert.org/event/1389 -https://www.oceanexpert.org/event/1390 -https://www.oceanexpert.org/event/1391 -https://www.oceanexpert.org/event/1392 -https://www.oceanexpert.org/event/1393 -https://www.oceanexpert.org/event/1394 -https://www.oceanexpert.org/event/1395 -https://www.oceanexpert.org/event/1396 -https://www.oceanexpert.org/event/1397 -https://www.oceanexpert.org/event/1398 -https://www.oceanexpert.org/event/1399 -https://www.oceanexpert.org/event/1400 -https://www.oceanexpert.org/event/1401 -https://www.oceanexpert.org/event/1402 -https://www.oceanexpert.org/event/1403 -https://www.oceanexpert.org/event/1405 -https://www.oceanexpert.org/event/1406 -https://www.oceanexpert.org/event/1407 -https://www.oceanexpert.org/event/1408 -https://www.oceanexpert.org/event/1409 -https://www.oceanexpert.org/event/1410 -https://www.oceanexpert.org/event/1411 -https://www.oceanexpert.org/event/1412 -https://www.oceanexpert.org/event/1413 -https://www.oceanexpert.org/event/1414 -https://www.oceanexpert.org/event/1415 -https://www.oceanexpert.org/event/1416 -https://www.oceanexpert.org/event/1417 -https://www.oceanexpert.org/event/1418 -https://www.oceanexpert.org/event/1419 -https://www.oceanexpert.org/event/1420 -https://www.oceanexpert.org/event/1421 -https://www.oceanexpert.org/event/1422 -https://www.oceanexpert.org/event/1423 -https://www.oceanexpert.org/event/1424 -https://www.oceanexpert.org/event/1425 -https://www.oceanexpert.org/event/1426 -https://www.oceanexpert.org/event/1427 -https://www.oceanexpert.org/event/1428 -https://www.oceanexpert.org/event/1429 -https://www.oceanexpert.org/event/1430 -https://www.oceanexpert.org/event/1431 -https://www.oceanexpert.org/event/1432 -https://www.oceanexpert.org/event/1433 -https://www.oceanexpert.org/event/1435 -https://www.oceanexpert.org/event/1436 -https://www.oceanexpert.org/event/1437 -https://www.oceanexpert.org/event/1440 -https://www.oceanexpert.org/event/1441 -https://www.oceanexpert.org/event/1442 -https://www.oceanexpert.org/event/1443 -https://www.oceanexpert.org/event/1444 -https://www.oceanexpert.org/event/1445 -https://www.oceanexpert.org/event/1446 -https://www.oceanexpert.org/event/1447 -https://www.oceanexpert.org/event/1448 -https://www.oceanexpert.org/event/1449 -https://www.oceanexpert.org/event/1450 -https://www.oceanexpert.org/event/1451 -https://www.oceanexpert.org/event/1452 -https://www.oceanexpert.org/event/1453 -https://www.oceanexpert.org/event/1454 -https://www.oceanexpert.org/event/1455 -https://www.oceanexpert.org/event/1456 -https://www.oceanexpert.org/event/1457 -https://www.oceanexpert.org/event/1458 -https://www.oceanexpert.org/event/1459 -https://www.oceanexpert.org/event/1461 -https://www.oceanexpert.org/event/1462 -https://www.oceanexpert.org/event/1463 -https://www.oceanexpert.org/event/1464 -https://www.oceanexpert.org/event/1465 -https://www.oceanexpert.org/event/1466 -https://www.oceanexpert.org/event/1467 -https://www.oceanexpert.org/event/1468 -https://www.oceanexpert.org/event/1469 -https://www.oceanexpert.org/event/1470 -https://www.oceanexpert.org/event/1471 -https://www.oceanexpert.org/event/1473 -https://www.oceanexpert.org/event/1474 -https://www.oceanexpert.org/event/1475 -https://www.oceanexpert.org/event/1477 -https://www.oceanexpert.org/event/1478 -https://www.oceanexpert.org/event/1479 -https://www.oceanexpert.org/event/1480 -https://www.oceanexpert.org/event/1481 -https://www.oceanexpert.org/event/1482 -https://www.oceanexpert.org/event/1483 -https://www.oceanexpert.org/event/1485 -https://www.oceanexpert.org/event/1486 -https://www.oceanexpert.org/event/1487 -https://www.oceanexpert.org/event/1488 -https://www.oceanexpert.org/event/1489 -https://www.oceanexpert.org/event/1490 -https://www.oceanexpert.org/event/1491 -https://www.oceanexpert.org/event/1492 -https://www.oceanexpert.org/event/1493 -https://www.oceanexpert.org/event/1494 -https://www.oceanexpert.org/event/1495 -https://www.oceanexpert.org/event/1496 -https://www.oceanexpert.org/event/1497 -https://www.oceanexpert.org/event/1498 -https://www.oceanexpert.org/event/1499 -https://www.oceanexpert.org/event/1500 -https://www.oceanexpert.org/event/1501 -https://www.oceanexpert.org/event/1502 -https://www.oceanexpert.org/event/1503 -https://www.oceanexpert.org/event/1504 -https://www.oceanexpert.org/event/1505 -https://www.oceanexpert.org/event/1506 -https://www.oceanexpert.org/event/1507 -https://www.oceanexpert.org/event/1508 -https://www.oceanexpert.org/event/1509 -https://www.oceanexpert.org/event/1510 -https://www.oceanexpert.org/event/1511 -https://www.oceanexpert.org/event/1512 -https://www.oceanexpert.org/event/1513 -https://www.oceanexpert.org/event/1514 -https://www.oceanexpert.org/event/1515 -https://www.oceanexpert.org/event/1516 -https://www.oceanexpert.org/event/1517 -https://www.oceanexpert.org/event/1518 -https://www.oceanexpert.org/event/1519 -https://www.oceanexpert.org/event/1520 -https://www.oceanexpert.org/event/1521 -https://www.oceanexpert.org/event/1522 -https://www.oceanexpert.org/event/1523 -https://www.oceanexpert.org/event/1524 -https://www.oceanexpert.org/event/1525 -https://www.oceanexpert.org/event/1526 -https://www.oceanexpert.org/event/1527 -https://www.oceanexpert.org/event/1528 -https://www.oceanexpert.org/event/1529 -https://www.oceanexpert.org/event/1531 -https://www.oceanexpert.org/event/1532 -https://www.oceanexpert.org/event/1533 -https://www.oceanexpert.org/event/1534 -https://www.oceanexpert.org/event/1537 -https://www.oceanexpert.org/event/1538 -https://www.oceanexpert.org/event/1539 -https://www.oceanexpert.org/event/1540 -https://www.oceanexpert.org/event/1541 -https://www.oceanexpert.org/event/1542 -https://www.oceanexpert.org/event/1543 -https://www.oceanexpert.org/event/1544 -https://www.oceanexpert.org/event/1545 -https://www.oceanexpert.org/event/1547 -https://www.oceanexpert.org/event/1550 -https://www.oceanexpert.org/event/1551 -https://www.oceanexpert.org/event/1552 -https://www.oceanexpert.org/event/1555 -https://www.oceanexpert.org/event/1556 -https://www.oceanexpert.org/event/1557 -https://www.oceanexpert.org/event/1559 -https://www.oceanexpert.org/event/1560 -https://www.oceanexpert.org/event/1561 -https://www.oceanexpert.org/event/1562 -https://www.oceanexpert.org/event/1563 -https://www.oceanexpert.org/event/1564 -https://www.oceanexpert.org/event/1566 -https://www.oceanexpert.org/event/1568 -https://www.oceanexpert.org/event/1569 -https://www.oceanexpert.org/event/1570 -https://www.oceanexpert.org/event/1571 -https://www.oceanexpert.org/event/1573 -https://www.oceanexpert.org/event/1574 -https://www.oceanexpert.org/event/1575 -https://www.oceanexpert.org/event/1576 -https://www.oceanexpert.org/event/1577 -https://www.oceanexpert.org/event/1578 -https://www.oceanexpert.org/event/1579 -https://www.oceanexpert.org/event/1580 -https://www.oceanexpert.org/event/1581 -https://www.oceanexpert.org/event/1583 -https://www.oceanexpert.org/event/1584 -https://www.oceanexpert.org/event/1585 -https://www.oceanexpert.org/event/1586 -https://www.oceanexpert.org/event/1588 -https://www.oceanexpert.org/event/1589 -https://www.oceanexpert.org/event/1590 -https://www.oceanexpert.org/event/1591 -https://www.oceanexpert.org/event/1592 -https://www.oceanexpert.org/event/1593 -https://www.oceanexpert.org/event/1594 -https://www.oceanexpert.org/event/1595 -https://www.oceanexpert.org/event/1597 -https://www.oceanexpert.org/event/1598 -https://www.oceanexpert.org/event/1599 -https://www.oceanexpert.org/event/1600 -https://www.oceanexpert.org/event/1601 -https://www.oceanexpert.org/event/1602 -https://www.oceanexpert.org/event/1604 -https://www.oceanexpert.org/event/1606 -https://www.oceanexpert.org/event/1608 -https://www.oceanexpert.org/event/1610 -https://www.oceanexpert.org/event/1611 -https://www.oceanexpert.org/event/1612 -https://www.oceanexpert.org/event/1613 -https://www.oceanexpert.org/event/1614 -https://www.oceanexpert.org/event/1617 -https://www.oceanexpert.org/event/1618 -https://www.oceanexpert.org/event/1619 -https://www.oceanexpert.org/event/1621 -https://www.oceanexpert.org/event/1622 -https://www.oceanexpert.org/event/1623 -https://www.oceanexpert.org/event/1625 -https://www.oceanexpert.org/event/1627 -https://www.oceanexpert.org/event/1629 -https://www.oceanexpert.org/event/1630 -https://www.oceanexpert.org/event/1631 -https://www.oceanexpert.org/event/1632 -https://www.oceanexpert.org/event/1633 -https://www.oceanexpert.org/event/1634 -https://www.oceanexpert.org/event/1635 -https://www.oceanexpert.org/event/1636 -https://www.oceanexpert.org/event/1637 -https://www.oceanexpert.org/event/1638 -https://www.oceanexpert.org/event/1639 -https://www.oceanexpert.org/event/1640 -https://www.oceanexpert.org/event/1641 -https://www.oceanexpert.org/event/1642 -https://www.oceanexpert.org/event/1643 -https://www.oceanexpert.org/event/1644 -https://www.oceanexpert.org/event/1645 -https://www.oceanexpert.org/event/1646 -https://www.oceanexpert.org/event/1648 -https://www.oceanexpert.org/event/1649 -https://www.oceanexpert.org/event/1650 -https://www.oceanexpert.org/event/1651 -https://www.oceanexpert.org/event/1652 -https://www.oceanexpert.org/event/1653 -https://www.oceanexpert.org/event/1654 -https://www.oceanexpert.org/event/1655 -https://www.oceanexpert.org/event/1656 -https://www.oceanexpert.org/event/1657 -https://www.oceanexpert.org/event/1658 -https://www.oceanexpert.org/event/1659 -https://www.oceanexpert.org/event/1660 -https://www.oceanexpert.org/event/1661 -https://www.oceanexpert.org/event/1662 -https://www.oceanexpert.org/event/1663 -https://www.oceanexpert.org/event/1664 -https://www.oceanexpert.org/event/1665 -https://www.oceanexpert.org/event/1666 -https://www.oceanexpert.org/event/1667 -https://www.oceanexpert.org/event/1668 -https://www.oceanexpert.org/event/1669 -https://www.oceanexpert.org/event/1670 -https://www.oceanexpert.org/event/1671 -https://www.oceanexpert.org/event/1672 -https://www.oceanexpert.org/event/1673 -https://www.oceanexpert.org/event/1674 -https://www.oceanexpert.org/event/1675 -https://www.oceanexpert.org/event/1676 -https://www.oceanexpert.org/event/1677 -https://www.oceanexpert.org/event/1678 -https://www.oceanexpert.org/event/1679 -https://www.oceanexpert.org/event/1680 -https://www.oceanexpert.org/event/1681 -https://www.oceanexpert.org/event/1682 -https://www.oceanexpert.org/event/1683 -https://www.oceanexpert.org/event/1684 -https://www.oceanexpert.org/event/1685 -https://www.oceanexpert.org/event/1686 -https://www.oceanexpert.org/event/1687 -https://www.oceanexpert.org/event/1688 -https://www.oceanexpert.org/event/1689 -https://www.oceanexpert.org/event/1690 -https://www.oceanexpert.org/event/1692 -https://www.oceanexpert.org/event/1693 -https://www.oceanexpert.org/event/1695 -https://www.oceanexpert.org/event/1696 -https://www.oceanexpert.org/event/1697 -https://www.oceanexpert.org/event/1698 -https://www.oceanexpert.org/event/1699 -https://www.oceanexpert.org/event/1700 -https://www.oceanexpert.org/event/1701 -https://www.oceanexpert.org/event/1702 -https://www.oceanexpert.org/event/1703 -https://www.oceanexpert.org/event/1704 -https://www.oceanexpert.org/event/1705 -https://www.oceanexpert.org/event/1706 -https://www.oceanexpert.org/event/1707 -https://www.oceanexpert.org/event/1708 -https://www.oceanexpert.org/event/1709 -https://www.oceanexpert.org/event/1710 -https://www.oceanexpert.org/event/1711 -https://www.oceanexpert.org/event/1712 -https://www.oceanexpert.org/event/1713 -https://www.oceanexpert.org/event/1714 -https://www.oceanexpert.org/event/1715 -https://www.oceanexpert.org/event/1716 -https://www.oceanexpert.org/event/1717 -https://www.oceanexpert.org/event/1719 -https://www.oceanexpert.org/event/1720 -https://www.oceanexpert.org/event/1721 -https://www.oceanexpert.org/event/1722 -https://www.oceanexpert.org/event/1723 -https://www.oceanexpert.org/event/1724 -https://www.oceanexpert.org/event/1725 -https://www.oceanexpert.org/event/1726 -https://www.oceanexpert.org/event/1727 -https://www.oceanexpert.org/event/1728 -https://www.oceanexpert.org/event/1729 -https://www.oceanexpert.org/event/1730 -https://www.oceanexpert.org/event/1731 -https://www.oceanexpert.org/event/1732 -https://www.oceanexpert.org/event/1733 -https://www.oceanexpert.org/event/1734 -https://www.oceanexpert.org/event/1735 -https://www.oceanexpert.org/event/1736 -https://www.oceanexpert.org/event/1737 -https://www.oceanexpert.org/event/1739 -https://www.oceanexpert.org/event/1740 -https://www.oceanexpert.org/event/1741 -https://www.oceanexpert.org/event/1744 -https://www.oceanexpert.org/event/1745 -https://www.oceanexpert.org/event/1746 -https://www.oceanexpert.org/event/1747 -https://www.oceanexpert.org/event/1748 -https://www.oceanexpert.org/event/1749 -https://www.oceanexpert.org/event/1750 -https://www.oceanexpert.org/event/1751 -https://www.oceanexpert.org/event/1752 -https://www.oceanexpert.org/event/1753 -https://www.oceanexpert.org/event/1754 -https://www.oceanexpert.org/event/1755 -https://www.oceanexpert.org/event/1756 -https://www.oceanexpert.org/event/1757 -https://www.oceanexpert.org/event/1758 -https://www.oceanexpert.org/event/1759 -https://www.oceanexpert.org/event/1760 -https://www.oceanexpert.org/event/1761 -https://www.oceanexpert.org/event/1762 -https://www.oceanexpert.org/event/1763 -https://www.oceanexpert.org/event/1764 -https://www.oceanexpert.org/event/1765 -https://www.oceanexpert.org/event/1766 -https://www.oceanexpert.org/event/1767 -https://www.oceanexpert.org/event/1770 -https://www.oceanexpert.org/event/1771 -https://www.oceanexpert.org/event/1772 -https://www.oceanexpert.org/event/1773 -https://www.oceanexpert.org/event/1774 -https://www.oceanexpert.org/event/1775 -https://www.oceanexpert.org/event/1778 -https://www.oceanexpert.org/event/1779 -https://www.oceanexpert.org/event/1780 -https://www.oceanexpert.org/event/1781 -https://www.oceanexpert.org/event/1782 -https://www.oceanexpert.org/event/1783 -https://www.oceanexpert.org/event/1784 -https://www.oceanexpert.org/event/1785 -https://www.oceanexpert.org/event/1786 -https://www.oceanexpert.org/event/1787 -https://www.oceanexpert.org/event/1788 -https://www.oceanexpert.org/event/1790 -https://www.oceanexpert.org/event/1791 -https://www.oceanexpert.org/event/1792 -https://www.oceanexpert.org/event/1793 -https://www.oceanexpert.org/event/1795 -https://www.oceanexpert.org/event/1796 -https://www.oceanexpert.org/event/1797 -https://www.oceanexpert.org/event/1798 -https://www.oceanexpert.org/event/1799 -https://www.oceanexpert.org/event/1800 -https://www.oceanexpert.org/event/1801 -https://www.oceanexpert.org/event/1802 -https://www.oceanexpert.org/event/1803 -https://www.oceanexpert.org/event/1804 -https://www.oceanexpert.org/event/1805 -https://www.oceanexpert.org/event/1806 -https://www.oceanexpert.org/event/1807 -https://www.oceanexpert.org/event/1808 -https://www.oceanexpert.org/event/1809 -https://www.oceanexpert.org/event/1810 -https://www.oceanexpert.org/event/1811 -https://www.oceanexpert.org/event/1812 -https://www.oceanexpert.org/event/1813 -https://www.oceanexpert.org/event/1814 -https://www.oceanexpert.org/event/1815 -https://www.oceanexpert.org/event/1816 -https://www.oceanexpert.org/event/1817 -https://www.oceanexpert.org/event/1819 -https://www.oceanexpert.org/event/1820 -https://www.oceanexpert.org/event/1822 -https://www.oceanexpert.org/event/1823 -https://www.oceanexpert.org/event/1824 -https://www.oceanexpert.org/event/1825 -https://www.oceanexpert.org/event/1826 -https://www.oceanexpert.org/event/1827 -https://www.oceanexpert.org/event/1828 -https://www.oceanexpert.org/event/1829 -https://www.oceanexpert.org/event/1830 -https://www.oceanexpert.org/event/1831 -https://www.oceanexpert.org/event/1832 -https://www.oceanexpert.org/event/1833 -https://www.oceanexpert.org/event/1834 -https://www.oceanexpert.org/event/1835 -https://www.oceanexpert.org/event/1836 -https://www.oceanexpert.org/event/1837 -https://www.oceanexpert.org/event/1839 -https://www.oceanexpert.org/event/1840 -https://www.oceanexpert.org/event/1841 -https://www.oceanexpert.org/event/1842 -https://www.oceanexpert.org/event/1844 -https://www.oceanexpert.org/event/1845 -https://www.oceanexpert.org/event/1846 -https://www.oceanexpert.org/event/1847 -https://www.oceanexpert.org/event/1848 -https://www.oceanexpert.org/event/1849 -https://www.oceanexpert.org/event/1850 -https://www.oceanexpert.org/event/1851 -https://www.oceanexpert.org/event/1852 -https://www.oceanexpert.org/event/1853 -https://www.oceanexpert.org/event/1854 -https://www.oceanexpert.org/event/1855 -https://www.oceanexpert.org/event/1856 -https://www.oceanexpert.org/event/1857 -https://www.oceanexpert.org/event/1859 -https://www.oceanexpert.org/event/1860 -https://www.oceanexpert.org/event/1861 -https://www.oceanexpert.org/event/1862 -https://www.oceanexpert.org/event/1863 -https://www.oceanexpert.org/event/1864 -https://www.oceanexpert.org/event/1865 -https://www.oceanexpert.org/event/1866 -https://www.oceanexpert.org/event/1867 -https://www.oceanexpert.org/event/1868 -https://www.oceanexpert.org/event/1869 -https://www.oceanexpert.org/event/1870 -https://www.oceanexpert.org/event/1871 -https://www.oceanexpert.org/event/1872 -https://www.oceanexpert.org/event/1874 -https://www.oceanexpert.org/event/1875 -https://www.oceanexpert.org/event/1877 -https://www.oceanexpert.org/event/1878 -https://www.oceanexpert.org/event/1879 -https://www.oceanexpert.org/event/1880 -https://www.oceanexpert.org/event/1882 -https://www.oceanexpert.org/event/1883 -https://www.oceanexpert.org/event/1884 -https://www.oceanexpert.org/event/1886 -https://www.oceanexpert.org/event/1887 -https://www.oceanexpert.org/event/1888 -https://www.oceanexpert.org/event/1889 -https://www.oceanexpert.org/event/1890 -https://www.oceanexpert.org/event/1891 -https://www.oceanexpert.org/event/1892 -https://www.oceanexpert.org/event/1893 -https://www.oceanexpert.org/event/1894 -https://www.oceanexpert.org/event/1895 -https://www.oceanexpert.org/event/1896 -https://www.oceanexpert.org/event/1897 -https://www.oceanexpert.org/event/1898 -https://www.oceanexpert.org/event/1899 -https://www.oceanexpert.org/event/1900 -https://www.oceanexpert.org/event/1901 -https://www.oceanexpert.org/event/1903 -https://www.oceanexpert.org/event/1904 -https://www.oceanexpert.org/event/1905 -https://www.oceanexpert.org/event/1906 -https://www.oceanexpert.org/event/1908 -https://www.oceanexpert.org/event/1912 -https://www.oceanexpert.org/event/1913 -https://www.oceanexpert.org/event/1914 -https://www.oceanexpert.org/event/1915 -https://www.oceanexpert.org/event/1916 -https://www.oceanexpert.org/event/1917 -https://www.oceanexpert.org/event/1918 -https://www.oceanexpert.org/event/1919 -https://www.oceanexpert.org/event/1920 -https://www.oceanexpert.org/event/1921 -https://www.oceanexpert.org/event/1922 -https://www.oceanexpert.org/event/1923 -https://www.oceanexpert.org/event/1924 -https://www.oceanexpert.org/event/1925 -https://www.oceanexpert.org/event/1926 -https://www.oceanexpert.org/event/1927 -https://www.oceanexpert.org/event/1929 -https://www.oceanexpert.org/event/1930 -https://www.oceanexpert.org/event/1931 -https://www.oceanexpert.org/event/1932 -https://www.oceanexpert.org/event/1934 -https://www.oceanexpert.org/event/1935 -https://www.oceanexpert.org/event/1936 -https://www.oceanexpert.org/event/1937 -https://www.oceanexpert.org/event/1938 -https://www.oceanexpert.org/event/1939 -https://www.oceanexpert.org/event/1940 -https://www.oceanexpert.org/event/1941 -https://www.oceanexpert.org/event/1942 -https://www.oceanexpert.org/event/1943 -https://www.oceanexpert.org/event/1944 -https://www.oceanexpert.org/event/1946 -https://www.oceanexpert.org/event/1947 -https://www.oceanexpert.org/event/1948 -https://www.oceanexpert.org/event/1949 -https://www.oceanexpert.org/event/1950 -https://www.oceanexpert.org/event/1951 -https://www.oceanexpert.org/event/1952 -https://www.oceanexpert.org/event/1953 -https://www.oceanexpert.org/event/1954 -https://www.oceanexpert.org/event/1955 -https://www.oceanexpert.org/event/1956 -https://www.oceanexpert.org/event/1957 -https://www.oceanexpert.org/event/1958 -https://www.oceanexpert.org/event/1959 -https://www.oceanexpert.org/event/1960 -https://www.oceanexpert.org/event/1961 -https://www.oceanexpert.org/event/1963 -https://www.oceanexpert.org/event/1964 -https://www.oceanexpert.org/event/1965 -https://www.oceanexpert.org/event/1966 -https://www.oceanexpert.org/event/1967 -https://www.oceanexpert.org/event/1968 -https://www.oceanexpert.org/event/1969 -https://www.oceanexpert.org/event/1970 -https://www.oceanexpert.org/event/1971 -https://www.oceanexpert.org/event/1972 -https://www.oceanexpert.org/event/1973 -https://www.oceanexpert.org/event/1974 -https://www.oceanexpert.org/event/1976 -https://www.oceanexpert.org/event/1977 -https://www.oceanexpert.org/event/1978 -https://www.oceanexpert.org/event/1980 -https://www.oceanexpert.org/event/1982 -https://www.oceanexpert.org/event/1983 -https://www.oceanexpert.org/event/1984 -https://www.oceanexpert.org/event/1985 -https://www.oceanexpert.org/event/1986 -https://www.oceanexpert.org/event/1987 -https://www.oceanexpert.org/event/1988 -https://www.oceanexpert.org/event/1989 -https://www.oceanexpert.org/event/1991 -https://www.oceanexpert.org/event/1992 -https://www.oceanexpert.org/event/1993 -https://www.oceanexpert.org/event/1994 -https://www.oceanexpert.org/event/1995 -https://www.oceanexpert.org/event/1997 -https://www.oceanexpert.org/event/2000 -https://www.oceanexpert.org/event/2001 -https://www.oceanexpert.org/event/2002 -https://www.oceanexpert.org/event/2003 -https://www.oceanexpert.org/event/2004 -https://www.oceanexpert.org/event/2005 -https://www.oceanexpert.org/event/2006 -https://www.oceanexpert.org/event/2007 -https://www.oceanexpert.org/event/2008 -https://www.oceanexpert.org/event/2009 -https://www.oceanexpert.org/event/2010 -https://www.oceanexpert.org/event/2011 -https://www.oceanexpert.org/event/2014 -https://www.oceanexpert.org/event/2015 -https://www.oceanexpert.org/event/2016 -https://www.oceanexpert.org/event/2017 -https://www.oceanexpert.org/event/2018 -https://www.oceanexpert.org/event/2019 -https://www.oceanexpert.org/event/2020 -https://www.oceanexpert.org/event/2021 -https://www.oceanexpert.org/event/2022 -https://www.oceanexpert.org/event/2024 -https://www.oceanexpert.org/event/2025 -https://www.oceanexpert.org/event/2026 -https://www.oceanexpert.org/event/2028 -https://www.oceanexpert.org/event/2029 -https://www.oceanexpert.org/event/2030 -https://www.oceanexpert.org/event/2032 -https://www.oceanexpert.org/event/2033 -https://www.oceanexpert.org/event/2034 -https://www.oceanexpert.org/event/2035 -https://www.oceanexpert.org/event/2037 -https://www.oceanexpert.org/event/2038 -https://www.oceanexpert.org/event/2039 -https://www.oceanexpert.org/event/2040 -https://www.oceanexpert.org/event/2041 -https://www.oceanexpert.org/event/2042 -https://www.oceanexpert.org/event/2043 -https://www.oceanexpert.org/event/2044 -https://www.oceanexpert.org/event/2050 -https://www.oceanexpert.org/event/2052 -https://www.oceanexpert.org/event/2055 -https://www.oceanexpert.org/event/2056 -https://www.oceanexpert.org/event/2058 -https://www.oceanexpert.org/event/2059 -https://www.oceanexpert.org/event/2061 -https://www.oceanexpert.org/event/2063 -https://www.oceanexpert.org/event/2064 -https://www.oceanexpert.org/event/2070 -https://www.oceanexpert.org/event/2071 -https://www.oceanexpert.org/event/2072 -https://www.oceanexpert.org/event/2073 -https://www.oceanexpert.org/event/2074 -https://www.oceanexpert.org/event/2075 -https://www.oceanexpert.org/event/2076 -https://www.oceanexpert.org/event/2077 -https://www.oceanexpert.org/event/2078 -https://www.oceanexpert.org/event/2082 -https://www.oceanexpert.org/event/2085 -https://www.oceanexpert.org/event/2086 -https://www.oceanexpert.org/event/2087 -https://www.oceanexpert.org/event/2088 -https://www.oceanexpert.org/event/2089 -https://www.oceanexpert.org/event/2090 -https://www.oceanexpert.org/event/2091 -https://www.oceanexpert.org/event/2092 -https://www.oceanexpert.org/event/2093 -https://www.oceanexpert.org/event/2095 -https://www.oceanexpert.org/event/2097 -https://www.oceanexpert.org/event/2098 -https://www.oceanexpert.org/event/2099 -https://www.oceanexpert.org/event/2100 -https://www.oceanexpert.org/event/2101 -https://www.oceanexpert.org/event/2102 -https://www.oceanexpert.org/event/2104 -https://www.oceanexpert.org/event/2105 -https://www.oceanexpert.org/event/2106 -https://www.oceanexpert.org/event/2107 -https://www.oceanexpert.org/event/2108 -https://www.oceanexpert.org/event/2109 -https://www.oceanexpert.org/event/2110 -https://www.oceanexpert.org/event/2111 -https://www.oceanexpert.org/event/2112 -https://www.oceanexpert.org/event/2113 -https://www.oceanexpert.org/event/2114 -https://www.oceanexpert.org/event/2115 -https://www.oceanexpert.org/event/2116 -https://www.oceanexpert.org/event/2117 -https://www.oceanexpert.org/event/2118 -https://www.oceanexpert.org/event/2119 -https://www.oceanexpert.org/event/2120 -https://www.oceanexpert.org/event/2121 -https://www.oceanexpert.org/event/2123 -https://www.oceanexpert.org/event/2124 -https://www.oceanexpert.org/event/2126 -https://www.oceanexpert.org/event/2127 -https://www.oceanexpert.org/event/2129 -https://www.oceanexpert.org/event/2130 -https://www.oceanexpert.org/event/2131 -https://www.oceanexpert.org/event/2132 -https://www.oceanexpert.org/event/2133 -https://www.oceanexpert.org/event/2134 -https://www.oceanexpert.org/event/2135 -https://www.oceanexpert.org/event/2136 -https://www.oceanexpert.org/event/2138 -https://www.oceanexpert.org/event/2139 -https://www.oceanexpert.org/event/2140 -https://www.oceanexpert.org/event/2141 -https://www.oceanexpert.org/event/2143 -https://www.oceanexpert.org/event/2144 -https://www.oceanexpert.org/event/2146 -https://www.oceanexpert.org/event/2147 -https://www.oceanexpert.org/event/2148 -https://www.oceanexpert.org/event/2150 -https://www.oceanexpert.org/event/2151 -https://www.oceanexpert.org/event/2152 -https://www.oceanexpert.org/event/2153 -https://www.oceanexpert.org/event/2154 -https://www.oceanexpert.org/event/2155 -https://www.oceanexpert.org/event/2156 -https://www.oceanexpert.org/event/2157 -https://www.oceanexpert.org/event/2158 -https://www.oceanexpert.org/event/2159 -https://www.oceanexpert.org/event/2162 -https://www.oceanexpert.org/event/2164 -https://www.oceanexpert.org/event/2165 -https://www.oceanexpert.org/event/2166 -https://www.oceanexpert.org/event/2167 -https://www.oceanexpert.org/event/2168 -https://www.oceanexpert.org/event/2169 -https://www.oceanexpert.org/event/2173 -https://www.oceanexpert.org/event/2174 -https://www.oceanexpert.org/event/2177 -https://www.oceanexpert.org/event/2178 -https://www.oceanexpert.org/event/2179 -https://www.oceanexpert.org/event/2181 -https://www.oceanexpert.org/event/2182 -https://www.oceanexpert.org/event/2183 -https://www.oceanexpert.org/event/2185 -https://www.oceanexpert.org/event/2187 -https://www.oceanexpert.org/event/2189 -https://www.oceanexpert.org/event/2190 -https://www.oceanexpert.org/event/2191 -https://www.oceanexpert.org/event/2192 -https://www.oceanexpert.org/event/2193 -https://www.oceanexpert.org/event/2194 -https://www.oceanexpert.org/event/2195 -https://www.oceanexpert.org/event/2196 -https://www.oceanexpert.org/event/2198 -https://www.oceanexpert.org/event/2199 -https://www.oceanexpert.org/event/2200 -https://www.oceanexpert.org/event/2201 -https://www.oceanexpert.org/event/2202 -https://www.oceanexpert.org/event/2203 -https://www.oceanexpert.org/event/2204 -https://www.oceanexpert.org/event/2206 -https://www.oceanexpert.org/event/2207 -https://www.oceanexpert.org/event/2208 -https://www.oceanexpert.org/event/2209 -https://www.oceanexpert.org/event/2210 -https://www.oceanexpert.org/event/2211 -https://www.oceanexpert.org/event/2212 -https://www.oceanexpert.org/event/2213 -https://www.oceanexpert.org/event/2214 -https://www.oceanexpert.org/event/2215 -https://www.oceanexpert.org/event/2216 -https://www.oceanexpert.org/event/2217 -https://www.oceanexpert.org/event/2218 -https://www.oceanexpert.org/event/2219 -https://www.oceanexpert.org/event/2220 -https://www.oceanexpert.org/event/2221 -https://www.oceanexpert.org/event/2222 -https://www.oceanexpert.org/event/2223 -https://www.oceanexpert.org/event/2224 -https://www.oceanexpert.org/event/2225 -https://www.oceanexpert.org/event/2226 -https://www.oceanexpert.org/event/2227 -https://www.oceanexpert.org/event/2228 -https://www.oceanexpert.org/event/2229 -https://www.oceanexpert.org/event/2230 -https://www.oceanexpert.org/event/2231 -https://www.oceanexpert.org/event/2233 -https://www.oceanexpert.org/event/2234 -https://www.oceanexpert.org/event/2235 -https://www.oceanexpert.org/event/2238 -https://www.oceanexpert.org/event/2239 -https://www.oceanexpert.org/event/2241 -https://www.oceanexpert.org/event/2242 -https://www.oceanexpert.org/event/2243 -https://www.oceanexpert.org/event/2244 -https://www.oceanexpert.org/event/2245 -https://www.oceanexpert.org/event/2246 -https://www.oceanexpert.org/event/2247 -https://www.oceanexpert.org/event/2249 -https://www.oceanexpert.org/event/2255 -https://www.oceanexpert.org/event/2256 -https://www.oceanexpert.org/event/2258 -https://www.oceanexpert.org/event/2260 -https://www.oceanexpert.org/event/2262 -https://www.oceanexpert.org/event/2264 -https://www.oceanexpert.org/event/2265 -https://www.oceanexpert.org/event/2266 -https://www.oceanexpert.org/event/2268 -https://www.oceanexpert.org/event/2269 -https://www.oceanexpert.org/event/2270 -https://www.oceanexpert.org/event/2271 -https://www.oceanexpert.org/event/2272 -https://www.oceanexpert.org/event/2273 -https://www.oceanexpert.org/event/2274 -https://www.oceanexpert.org/event/2275 -https://www.oceanexpert.org/event/2276 -https://www.oceanexpert.org/event/2277 -https://www.oceanexpert.org/event/2278 -https://www.oceanexpert.org/event/2279 -https://www.oceanexpert.org/event/2280 -https://www.oceanexpert.org/event/2281 -https://www.oceanexpert.org/event/2282 -https://www.oceanexpert.org/event/2283 -https://www.oceanexpert.org/event/2284 -https://www.oceanexpert.org/event/2285 -https://www.oceanexpert.org/event/2286 -https://www.oceanexpert.org/event/2287 -https://www.oceanexpert.org/event/2288 -https://www.oceanexpert.org/event/2289 -https://www.oceanexpert.org/event/2290 -https://www.oceanexpert.org/event/2291 -https://www.oceanexpert.org/event/2292 -https://www.oceanexpert.org/event/2293 -https://www.oceanexpert.org/event/2294 -https://www.oceanexpert.org/event/2295 -https://www.oceanexpert.org/event/2296 -https://www.oceanexpert.org/event/2297 -https://www.oceanexpert.org/event/2298 -https://www.oceanexpert.org/event/2299 -https://www.oceanexpert.org/event/2300 -https://www.oceanexpert.org/event/2301 -https://www.oceanexpert.org/event/2303 -https://www.oceanexpert.org/event/2304 -https://www.oceanexpert.org/event/2305 -https://www.oceanexpert.org/event/2307 -https://www.oceanexpert.org/event/2308 -https://www.oceanexpert.org/event/2309 -https://www.oceanexpert.org/event/2310 -https://www.oceanexpert.org/event/2311 -https://www.oceanexpert.org/event/2312 -https://www.oceanexpert.org/event/2313 -https://www.oceanexpert.org/event/2314 -https://www.oceanexpert.org/event/2315 -https://www.oceanexpert.org/event/2316 -https://www.oceanexpert.org/event/2318 -https://www.oceanexpert.org/event/2319 -https://www.oceanexpert.org/event/2320 -https://www.oceanexpert.org/event/2321 -https://www.oceanexpert.org/event/2322 -https://www.oceanexpert.org/event/2324 -https://www.oceanexpert.org/event/2325 -https://www.oceanexpert.org/event/2327 -https://www.oceanexpert.org/event/2328 -https://www.oceanexpert.org/event/2329 -https://www.oceanexpert.org/event/2330 -https://www.oceanexpert.org/event/2333 -https://www.oceanexpert.org/event/2334 -https://www.oceanexpert.org/event/2335 -https://www.oceanexpert.org/event/2336 -https://www.oceanexpert.org/event/2337 -https://www.oceanexpert.org/event/2338 -https://www.oceanexpert.org/event/2339 -https://www.oceanexpert.org/event/2340 -https://www.oceanexpert.org/event/2341 -https://www.oceanexpert.org/event/2342 -https://www.oceanexpert.org/event/2343 -https://www.oceanexpert.org/event/2344 -https://www.oceanexpert.org/event/2345 -https://www.oceanexpert.org/event/2346 -https://www.oceanexpert.org/event/2347 -https://www.oceanexpert.org/event/2348 -https://www.oceanexpert.org/event/2349 -https://www.oceanexpert.org/event/2350 -https://www.oceanexpert.org/event/2351 -https://www.oceanexpert.org/event/2354 -https://www.oceanexpert.org/event/2355 -https://www.oceanexpert.org/event/2356 -https://www.oceanexpert.org/event/2357 -https://www.oceanexpert.org/event/2358 -https://www.oceanexpert.org/event/2359 -https://www.oceanexpert.org/event/2360 -https://www.oceanexpert.org/event/2361 -https://www.oceanexpert.org/event/2362 -https://www.oceanexpert.org/event/2363 -https://www.oceanexpert.org/event/2364 -https://www.oceanexpert.org/event/2365 -https://www.oceanexpert.org/event/2366 -https://www.oceanexpert.org/event/2367 -https://www.oceanexpert.org/event/2368 -https://www.oceanexpert.org/event/2369 -https://www.oceanexpert.org/event/2371 -https://www.oceanexpert.org/event/2372 -https://www.oceanexpert.org/event/2373 -https://www.oceanexpert.org/event/2374 -https://www.oceanexpert.org/event/2376 -https://www.oceanexpert.org/event/2378 -https://www.oceanexpert.org/event/2379 -https://www.oceanexpert.org/event/2382 -https://www.oceanexpert.org/event/2384 -https://www.oceanexpert.org/event/2385 -https://www.oceanexpert.org/event/2386 -https://www.oceanexpert.org/event/2387 -https://www.oceanexpert.org/event/2388 -https://www.oceanexpert.org/event/2389 -https://www.oceanexpert.org/event/2390 -https://www.oceanexpert.org/event/2393 -https://www.oceanexpert.org/event/2394 -https://www.oceanexpert.org/event/2395 -https://www.oceanexpert.org/event/2397 -https://www.oceanexpert.org/event/2398 -https://www.oceanexpert.org/event/2399 -https://www.oceanexpert.org/event/2400 -https://www.oceanexpert.org/event/2401 -https://www.oceanexpert.org/event/2402 -https://www.oceanexpert.org/event/2403 -https://www.oceanexpert.org/event/2404 -https://www.oceanexpert.org/event/2406 -https://www.oceanexpert.org/event/2407 -https://www.oceanexpert.org/event/2408 -https://www.oceanexpert.org/event/2409 -https://www.oceanexpert.org/event/2410 -https://www.oceanexpert.org/event/2411 -https://www.oceanexpert.org/event/2412 -https://www.oceanexpert.org/event/2413 -https://www.oceanexpert.org/event/2414 -https://www.oceanexpert.org/event/2415 -https://www.oceanexpert.org/event/2416 -https://www.oceanexpert.org/event/2417 -https://www.oceanexpert.org/event/2422 -https://www.oceanexpert.org/event/2423 -https://www.oceanexpert.org/event/2425 -https://www.oceanexpert.org/event/2426 -https://www.oceanexpert.org/event/2427 -https://www.oceanexpert.org/event/2428 -https://www.oceanexpert.org/event/2429 -https://www.oceanexpert.org/event/2430 -https://www.oceanexpert.org/event/2431 -https://www.oceanexpert.org/event/2432 -https://www.oceanexpert.org/event/2433 -https://www.oceanexpert.org/event/2434 -https://www.oceanexpert.org/event/2435 -https://www.oceanexpert.org/event/2436 -https://www.oceanexpert.org/event/2437 -https://www.oceanexpert.org/event/2439 -https://www.oceanexpert.org/event/2440 -https://www.oceanexpert.org/event/2441 -https://www.oceanexpert.org/event/2443 -https://www.oceanexpert.org/event/2444 -https://www.oceanexpert.org/event/2445 -https://www.oceanexpert.org/event/2446 -https://www.oceanexpert.org/event/2447 -https://www.oceanexpert.org/event/2448 -https://www.oceanexpert.org/event/2449 -https://www.oceanexpert.org/event/2450 -https://www.oceanexpert.org/event/2451 -https://www.oceanexpert.org/event/2452 -https://www.oceanexpert.org/event/2453 -https://www.oceanexpert.org/event/2454 -https://www.oceanexpert.org/event/2455 -https://www.oceanexpert.org/event/2456 -https://www.oceanexpert.org/event/2457 -https://www.oceanexpert.org/event/2458 -https://www.oceanexpert.org/event/2459 -https://www.oceanexpert.org/event/2460 -https://www.oceanexpert.org/event/2461 -https://www.oceanexpert.org/event/2463 -https://www.oceanexpert.org/event/2467 -https://www.oceanexpert.org/event/2469 -https://www.oceanexpert.org/event/2470 -https://www.oceanexpert.org/event/2471 -https://www.oceanexpert.org/event/2473 -https://www.oceanexpert.org/event/2474 -https://www.oceanexpert.org/event/2476 -https://www.oceanexpert.org/event/2477 -https://www.oceanexpert.org/event/2483 -https://www.oceanexpert.org/event/2484 -https://www.oceanexpert.org/event/2485 -https://www.oceanexpert.org/event/2486 -https://www.oceanexpert.org/event/2488 -https://www.oceanexpert.org/event/2489 -https://www.oceanexpert.org/event/2490 -https://www.oceanexpert.org/event/2491 -https://www.oceanexpert.org/event/2492 -https://www.oceanexpert.org/event/2493 -https://www.oceanexpert.org/event/2495 -https://www.oceanexpert.org/event/2496 -https://www.oceanexpert.org/event/2497 -https://www.oceanexpert.org/event/2498 -https://www.oceanexpert.org/event/2499 -https://www.oceanexpert.org/event/2500 -https://www.oceanexpert.org/event/2501 -https://www.oceanexpert.org/event/2502 -https://www.oceanexpert.org/event/2504 -https://www.oceanexpert.org/event/2505 -https://www.oceanexpert.org/event/2506 -https://www.oceanexpert.org/event/2507 -https://www.oceanexpert.org/event/2508 -https://www.oceanexpert.org/event/2509 -https://www.oceanexpert.org/event/2510 -https://www.oceanexpert.org/event/2511 -https://www.oceanexpert.org/event/2512 -https://www.oceanexpert.org/event/2513 -https://www.oceanexpert.org/event/2514 -https://www.oceanexpert.org/event/2515 -https://www.oceanexpert.org/event/2518 -https://www.oceanexpert.org/event/2519 -https://www.oceanexpert.org/event/2520 -https://www.oceanexpert.org/event/2521 -https://www.oceanexpert.org/event/2522 -https://www.oceanexpert.org/event/2523 -https://www.oceanexpert.org/event/2524 -https://www.oceanexpert.org/event/2525 -https://www.oceanexpert.org/event/2526 -https://www.oceanexpert.org/event/2527 -https://www.oceanexpert.org/event/2528 -https://www.oceanexpert.org/event/2529 -https://www.oceanexpert.org/event/2531 -https://www.oceanexpert.org/event/2532 -https://www.oceanexpert.org/event/2533 -https://www.oceanexpert.org/event/2534 -https://www.oceanexpert.org/event/2535 -https://www.oceanexpert.org/event/2536 -https://www.oceanexpert.org/event/2537 -https://www.oceanexpert.org/event/2538 -https://www.oceanexpert.org/event/2539 -https://www.oceanexpert.org/event/2544 -https://www.oceanexpert.org/event/2548 -https://www.oceanexpert.org/event/2549 -https://www.oceanexpert.org/event/2550 -https://www.oceanexpert.org/event/2551 -https://www.oceanexpert.org/event/2552 -https://www.oceanexpert.org/event/2553 -https://www.oceanexpert.org/event/2554 -https://www.oceanexpert.org/event/2555 -https://www.oceanexpert.org/event/2556 -https://www.oceanexpert.org/event/2557 -https://www.oceanexpert.org/event/2558 -https://www.oceanexpert.org/event/2559 -https://www.oceanexpert.org/event/2560 -https://www.oceanexpert.org/event/2561 -https://www.oceanexpert.org/event/2562 -https://www.oceanexpert.org/event/2563 -https://www.oceanexpert.org/event/2564 -https://www.oceanexpert.org/event/2565 -https://www.oceanexpert.org/event/2566 -https://www.oceanexpert.org/event/2567 -https://www.oceanexpert.org/event/2568 -https://www.oceanexpert.org/event/2569 -https://www.oceanexpert.org/event/2570 -https://www.oceanexpert.org/event/2571 -https://www.oceanexpert.org/event/2572 -https://www.oceanexpert.org/event/2573 -https://www.oceanexpert.org/event/2575 -https://www.oceanexpert.org/event/2576 -https://www.oceanexpert.org/event/2577 -https://www.oceanexpert.org/event/2578 -https://www.oceanexpert.org/event/2579 -https://www.oceanexpert.org/event/2580 -https://www.oceanexpert.org/event/2581 -https://www.oceanexpert.org/event/2583 -https://www.oceanexpert.org/event/2584 -https://www.oceanexpert.org/event/2585 -https://www.oceanexpert.org/event/2586 -https://www.oceanexpert.org/event/2587 -https://www.oceanexpert.org/event/2588 -https://www.oceanexpert.org/event/2591 -https://www.oceanexpert.org/event/2593 -https://www.oceanexpert.org/event/2594 -https://www.oceanexpert.org/event/2595 -https://www.oceanexpert.org/event/2596 -https://www.oceanexpert.org/event/2597 -https://www.oceanexpert.org/event/2598 -https://www.oceanexpert.org/event/2599 -https://www.oceanexpert.org/event/2600 -https://www.oceanexpert.org/event/2601 -https://www.oceanexpert.org/event/2602 -https://www.oceanexpert.org/event/2603 -https://www.oceanexpert.org/event/2605 -https://www.oceanexpert.org/event/2606 -https://www.oceanexpert.org/event/2607 -https://www.oceanexpert.org/event/2608 -https://www.oceanexpert.org/event/2610 -https://www.oceanexpert.org/event/2612 -https://www.oceanexpert.org/event/2613 -https://www.oceanexpert.org/event/2614 -https://www.oceanexpert.org/event/2615 -https://www.oceanexpert.org/event/2616 -https://www.oceanexpert.org/event/2617 -https://www.oceanexpert.org/event/2618 -https://www.oceanexpert.org/event/2619 -https://www.oceanexpert.org/event/2620 -https://www.oceanexpert.org/event/2622 -https://www.oceanexpert.org/event/2624 -https://www.oceanexpert.org/event/2625 -https://www.oceanexpert.org/event/2626 -https://www.oceanexpert.org/event/2627 -https://www.oceanexpert.org/event/2629 -https://www.oceanexpert.org/event/2630 -https://www.oceanexpert.org/event/2631 -https://www.oceanexpert.org/event/2632 -https://www.oceanexpert.org/event/2633 -https://www.oceanexpert.org/event/2634 -https://www.oceanexpert.org/event/2635 -https://www.oceanexpert.org/event/2636 -https://www.oceanexpert.org/event/2637 -https://www.oceanexpert.org/event/2638 -https://www.oceanexpert.org/event/2639 -https://www.oceanexpert.org/event/2640 -https://www.oceanexpert.org/event/2641 -https://www.oceanexpert.org/event/2642 -https://www.oceanexpert.org/event/2643 -https://www.oceanexpert.org/event/2644 -https://www.oceanexpert.org/event/2645 -https://www.oceanexpert.org/event/2646 -https://www.oceanexpert.org/event/2647 -https://www.oceanexpert.org/event/2648 -https://www.oceanexpert.org/event/2649 -https://www.oceanexpert.org/event/2650 -https://www.oceanexpert.org/event/2654 -https://www.oceanexpert.org/event/2655 -https://www.oceanexpert.org/event/2656 -https://www.oceanexpert.org/event/2657 -https://www.oceanexpert.org/event/2662 -https://www.oceanexpert.org/event/2664 -https://www.oceanexpert.org/event/2666 -https://www.oceanexpert.org/event/2667 -https://www.oceanexpert.org/event/2669 -https://www.oceanexpert.org/event/2670 -https://www.oceanexpert.org/event/2672 -https://www.oceanexpert.org/event/2673 -https://www.oceanexpert.org/event/2674 -https://www.oceanexpert.org/event/2676 -https://www.oceanexpert.org/event/2677 -https://www.oceanexpert.org/event/2679 -https://www.oceanexpert.org/event/2680 -https://www.oceanexpert.org/event/2681 -https://www.oceanexpert.org/event/2682 -https://www.oceanexpert.org/event/2683 -https://www.oceanexpert.org/event/2684 -https://www.oceanexpert.org/event/2685 -https://www.oceanexpert.org/event/2686 -https://www.oceanexpert.org/event/2687 -https://www.oceanexpert.org/event/2688 -https://www.oceanexpert.org/event/2689 -https://www.oceanexpert.org/event/2690 -https://www.oceanexpert.org/event/2691 -https://www.oceanexpert.org/event/2692 -https://www.oceanexpert.org/event/2693 -https://www.oceanexpert.org/event/2694 -https://www.oceanexpert.org/event/2696 -https://www.oceanexpert.org/event/2697 -https://www.oceanexpert.org/event/2698 -https://www.oceanexpert.org/event/2699 -https://www.oceanexpert.org/event/2700 -https://www.oceanexpert.org/event/2701 -https://www.oceanexpert.org/event/2703 -https://www.oceanexpert.org/event/2704 -https://www.oceanexpert.org/event/2705 -https://www.oceanexpert.org/event/2706 -https://www.oceanexpert.org/event/2707 -https://www.oceanexpert.org/event/2708 -https://www.oceanexpert.org/event/2710 -https://www.oceanexpert.org/event/2711 -https://www.oceanexpert.org/event/2712 -https://www.oceanexpert.org/event/2714 -https://www.oceanexpert.org/event/2715 -https://www.oceanexpert.org/event/2716 -https://www.oceanexpert.org/event/2718 -https://www.oceanexpert.org/event/2719 -https://www.oceanexpert.org/event/2720 -https://www.oceanexpert.org/event/2721 -https://www.oceanexpert.org/event/2723 -https://www.oceanexpert.org/event/2724 -https://www.oceanexpert.org/event/2725 -https://www.oceanexpert.org/event/2726 -https://www.oceanexpert.org/event/2727 -https://www.oceanexpert.org/event/2728 -https://www.oceanexpert.org/event/2729 -https://www.oceanexpert.org/event/2730 -https://www.oceanexpert.org/event/2731 -https://www.oceanexpert.org/event/2732 -https://www.oceanexpert.org/event/2733 -https://www.oceanexpert.org/event/2734 -https://www.oceanexpert.org/event/2735 -https://www.oceanexpert.org/event/2736 -https://www.oceanexpert.org/event/2737 -https://www.oceanexpert.org/event/2738 -https://www.oceanexpert.org/event/2739 -https://www.oceanexpert.org/event/2740 -https://www.oceanexpert.org/event/2741 -https://www.oceanexpert.org/event/2742 -https://www.oceanexpert.org/event/2743 -https://www.oceanexpert.org/event/2744 -https://www.oceanexpert.org/event/2745 -https://www.oceanexpert.org/event/2746 -https://www.oceanexpert.org/event/2747 -https://www.oceanexpert.org/event/2748 -https://www.oceanexpert.org/event/2749 -https://www.oceanexpert.org/event/2750 -https://www.oceanexpert.org/event/2752 -https://www.oceanexpert.org/event/2753 -https://www.oceanexpert.org/event/2754 -https://www.oceanexpert.org/event/2755 -https://www.oceanexpert.org/event/2756 -https://www.oceanexpert.org/event/2757 -https://www.oceanexpert.org/event/2758 -https://www.oceanexpert.org/event/2759 -https://www.oceanexpert.org/event/2760 -https://www.oceanexpert.org/event/2761 -https://www.oceanexpert.org/event/2762 -https://www.oceanexpert.org/event/2763 -https://www.oceanexpert.org/event/2764 -https://www.oceanexpert.org/event/2765 -https://www.oceanexpert.org/event/2766 -https://www.oceanexpert.org/event/2768 -https://www.oceanexpert.org/event/2770 -https://www.oceanexpert.org/event/2771 -https://www.oceanexpert.org/event/2772 -https://www.oceanexpert.org/event/2773 -https://www.oceanexpert.org/event/2774 -https://www.oceanexpert.org/event/2775 -https://www.oceanexpert.org/event/2777 -https://www.oceanexpert.org/event/2778 -https://www.oceanexpert.org/event/2779 -https://www.oceanexpert.org/event/2780 -https://www.oceanexpert.org/event/2781 -https://www.oceanexpert.org/event/2782 -https://www.oceanexpert.org/event/2783 -https://www.oceanexpert.org/event/2785 -https://www.oceanexpert.org/event/2786 -https://www.oceanexpert.org/event/2787 -https://www.oceanexpert.org/event/2790 -https://www.oceanexpert.org/event/2792 -https://www.oceanexpert.org/event/2794 -https://www.oceanexpert.org/event/2795 -https://www.oceanexpert.org/event/2796 -https://www.oceanexpert.org/event/2797 -https://www.oceanexpert.org/event/2799 -https://www.oceanexpert.org/event/2800 -https://www.oceanexpert.org/event/2802 -https://www.oceanexpert.org/event/2803 -https://www.oceanexpert.org/event/2804 -https://www.oceanexpert.org/event/2805 -https://www.oceanexpert.org/event/2806 -https://www.oceanexpert.org/event/2807 -https://www.oceanexpert.org/event/2808 -https://www.oceanexpert.org/event/2809 -https://www.oceanexpert.org/event/2810 -https://www.oceanexpert.org/event/2811 -https://www.oceanexpert.org/event/2812 -https://www.oceanexpert.org/event/2813 -https://www.oceanexpert.org/event/2815 -https://www.oceanexpert.org/event/2816 -https://www.oceanexpert.org/event/2817 -https://www.oceanexpert.org/event/2818 -https://www.oceanexpert.org/event/2819 -https://www.oceanexpert.org/event/2820 -https://www.oceanexpert.org/event/2821 -https://www.oceanexpert.org/event/2822 -https://www.oceanexpert.org/event/2823 -https://www.oceanexpert.org/event/2824 -https://www.oceanexpert.org/event/2825 -https://www.oceanexpert.org/event/2826 -https://www.oceanexpert.org/event/2827 -https://www.oceanexpert.org/event/2828 -https://www.oceanexpert.org/event/2829 -https://www.oceanexpert.org/event/2830 -https://www.oceanexpert.org/event/2831 -https://www.oceanexpert.org/event/2832 -https://www.oceanexpert.org/event/2833 -https://www.oceanexpert.org/event/2834 -https://www.oceanexpert.org/event/2835 -https://www.oceanexpert.org/event/2837 -https://www.oceanexpert.org/event/2838 -https://www.oceanexpert.org/event/2839 -https://www.oceanexpert.org/event/2840 -https://www.oceanexpert.org/event/2841 -https://www.oceanexpert.org/event/2842 -https://www.oceanexpert.org/event/2843 -https://www.oceanexpert.org/event/2844 -https://www.oceanexpert.org/event/2845 -https://www.oceanexpert.org/event/2848 -https://www.oceanexpert.org/event/2849 -https://www.oceanexpert.org/event/2850 -https://www.oceanexpert.org/event/2851 -https://www.oceanexpert.org/event/2852 -https://www.oceanexpert.org/event/2853 -https://www.oceanexpert.org/event/2854 -https://www.oceanexpert.org/event/2855 -https://www.oceanexpert.org/event/2856 -https://www.oceanexpert.org/event/2857 -https://www.oceanexpert.org/event/2858 -https://www.oceanexpert.org/event/2859 -https://www.oceanexpert.org/event/2860 -https://www.oceanexpert.org/event/2861 -https://www.oceanexpert.org/event/2862 -https://www.oceanexpert.org/event/2863 -https://www.oceanexpert.org/event/2864 -https://www.oceanexpert.org/event/2865 -https://www.oceanexpert.org/event/2866 -https://www.oceanexpert.org/event/2867 -https://www.oceanexpert.org/event/2868 -https://www.oceanexpert.org/event/2869 -https://www.oceanexpert.org/event/2870 -https://www.oceanexpert.org/event/2871 -https://www.oceanexpert.org/event/2872 -https://www.oceanexpert.org/event/2873 -https://www.oceanexpert.org/event/2874 -https://www.oceanexpert.org/event/2876 -https://www.oceanexpert.org/event/2877 -https://www.oceanexpert.org/event/2878 -https://www.oceanexpert.org/event/2880 -https://www.oceanexpert.org/event/2881 -https://www.oceanexpert.org/event/2882 -https://www.oceanexpert.org/event/2884 -https://www.oceanexpert.org/event/2886 -https://www.oceanexpert.org/event/2887 -https://www.oceanexpert.org/event/2888 -https://www.oceanexpert.org/event/2889 -https://www.oceanexpert.org/event/2890 -https://www.oceanexpert.org/event/2891 -https://www.oceanexpert.org/event/2892 -https://www.oceanexpert.org/event/2893 -https://www.oceanexpert.org/event/2894 -https://www.oceanexpert.org/event/2895 -https://www.oceanexpert.org/event/2896 -https://www.oceanexpert.org/event/2897 -https://www.oceanexpert.org/event/2898 -https://www.oceanexpert.org/event/2899 -https://www.oceanexpert.org/event/2900 -https://www.oceanexpert.org/event/2901 -https://www.oceanexpert.org/event/2903 -https://www.oceanexpert.org/event/2904 -https://www.oceanexpert.org/event/2905 -https://www.oceanexpert.org/event/2906 -https://www.oceanexpert.org/event/2907 -https://www.oceanexpert.org/event/2908 -https://www.oceanexpert.org/event/2909 -https://www.oceanexpert.org/event/2910 -https://www.oceanexpert.org/event/2911 -https://www.oceanexpert.org/event/2912 -https://www.oceanexpert.org/event/2913 -https://www.oceanexpert.org/event/2914 -https://www.oceanexpert.org/event/2915 -https://www.oceanexpert.org/event/2916 -https://www.oceanexpert.org/event/2917 -https://www.oceanexpert.org/event/2918 -https://www.oceanexpert.org/event/2919 -https://www.oceanexpert.org/event/2920 -https://www.oceanexpert.org/event/2921 -https://www.oceanexpert.org/event/2922 -https://www.oceanexpert.org/event/2923 -https://www.oceanexpert.org/event/2924 -https://www.oceanexpert.org/event/2925 -https://www.oceanexpert.org/event/2926 -https://www.oceanexpert.org/event/2927 -https://www.oceanexpert.org/event/2928 -https://www.oceanexpert.org/event/2929 -https://www.oceanexpert.org/event/2930 -https://www.oceanexpert.org/event/2931 -https://www.oceanexpert.org/event/2932 -https://www.oceanexpert.org/event/2933 -https://www.oceanexpert.org/event/2934 -https://www.oceanexpert.org/event/2935 -https://www.oceanexpert.org/event/2936 -https://www.oceanexpert.org/event/2937 -https://www.oceanexpert.org/event/2938 -https://www.oceanexpert.org/event/2939 -https://www.oceanexpert.org/event/2940 -https://www.oceanexpert.org/event/2941 -https://www.oceanexpert.org/event/2942 -https://www.oceanexpert.org/event/2943 -https://www.oceanexpert.org/event/2944 -https://www.oceanexpert.org/event/2945 -https://www.oceanexpert.org/event/2946 -https://www.oceanexpert.org/event/2947 -https://www.oceanexpert.org/event/2948 -https://www.oceanexpert.org/event/2949 -https://www.oceanexpert.org/event/2950 -https://www.oceanexpert.org/event/2951 -https://www.oceanexpert.org/event/2952 -https://www.oceanexpert.org/event/2953 -https://www.oceanexpert.org/event/2954 -https://www.oceanexpert.org/event/2955 -https://www.oceanexpert.org/event/2956 -https://www.oceanexpert.org/event/2957 -https://www.oceanexpert.org/event/2958 -https://www.oceanexpert.org/event/2959 -https://www.oceanexpert.org/event/2960 -https://www.oceanexpert.org/event/2961 -https://www.oceanexpert.org/event/2962 -https://www.oceanexpert.org/event/2963 -https://www.oceanexpert.org/event/2964 -https://www.oceanexpert.org/event/2965 -https://www.oceanexpert.org/event/2966 -https://www.oceanexpert.org/event/2967 -https://www.oceanexpert.org/event/2968 -https://www.oceanexpert.org/event/2969 -https://www.oceanexpert.org/event/2970 -https://www.oceanexpert.org/event/2971 -https://www.oceanexpert.org/event/2972 -https://www.oceanexpert.org/event/2973 -https://www.oceanexpert.org/event/2974 -https://www.oceanexpert.org/event/2975 -https://www.oceanexpert.org/event/2976 -https://www.oceanexpert.org/event/2977 -https://www.oceanexpert.org/event/2978 -https://www.oceanexpert.org/event/2979 -https://www.oceanexpert.org/event/2980 -https://www.oceanexpert.org/event/2981 -https://www.oceanexpert.org/event/2982 -https://www.oceanexpert.org/event/2983 -https://www.oceanexpert.org/event/2984 -https://www.oceanexpert.org/event/2985 -https://www.oceanexpert.org/event/2986 -https://www.oceanexpert.org/event/2987 -https://www.oceanexpert.org/event/2988 -https://www.oceanexpert.org/event/2989 -https://www.oceanexpert.org/event/2990 -https://www.oceanexpert.org/event/2991 -https://www.oceanexpert.org/event/2992 -https://www.oceanexpert.org/event/2993 -https://www.oceanexpert.org/event/2994 -https://www.oceanexpert.org/event/2995 -https://www.oceanexpert.org/event/2996 -https://www.oceanexpert.org/event/2997 -https://www.oceanexpert.org/event/2998 -https://www.oceanexpert.org/event/2999 -https://www.oceanexpert.org/event/3000 -https://www.oceanexpert.org/event/3002 -https://www.oceanexpert.org/event/3003 -https://www.oceanexpert.org/event/3004 -https://www.oceanexpert.org/event/3006 -https://www.oceanexpert.org/event/3007 -https://www.oceanexpert.org/event/3008 -https://www.oceanexpert.org/event/3011 -https://www.oceanexpert.org/event/3012 -https://www.oceanexpert.org/event/3013 -https://www.oceanexpert.org/event/3014 -https://www.oceanexpert.org/event/3015 -https://www.oceanexpert.org/event/3016 -https://www.oceanexpert.org/event/3017 -https://www.oceanexpert.org/event/3018 -https://www.oceanexpert.org/event/3019 -https://www.oceanexpert.org/event/3020 -https://www.oceanexpert.org/event/3021 -https://www.oceanexpert.org/event/3022 -https://www.oceanexpert.org/event/3024 -https://www.oceanexpert.org/event/3025 -https://www.oceanexpert.org/event/3026 -https://www.oceanexpert.org/event/3027 -https://www.oceanexpert.org/event/3028 -https://www.oceanexpert.org/event/3029 -https://www.oceanexpert.org/event/3030 -https://www.oceanexpert.org/event/3031 -https://www.oceanexpert.org/event/3032 -https://www.oceanexpert.org/event/3033 -https://www.oceanexpert.org/event/3035 -https://www.oceanexpert.org/event/3036 -https://www.oceanexpert.org/event/3038 -https://www.oceanexpert.org/event/3039 -https://www.oceanexpert.org/event/3040 -https://www.oceanexpert.org/event/3041 -https://www.oceanexpert.org/event/3042 -https://www.oceanexpert.org/event/3043 -https://www.oceanexpert.org/event/3044 -https://www.oceanexpert.org/event/3046 -https://www.oceanexpert.org/event/3047 -https://www.oceanexpert.org/event/3048 -https://www.oceanexpert.org/event/3049 -https://www.oceanexpert.org/event/3050 -https://www.oceanexpert.org/event/3052 -https://www.oceanexpert.org/event/3053 -https://www.oceanexpert.org/event/3054 -https://www.oceanexpert.org/event/3055 -https://www.oceanexpert.org/event/3056 -https://www.oceanexpert.org/event/3057 -https://www.oceanexpert.org/event/3058 -https://www.oceanexpert.org/event/3059 -https://www.oceanexpert.org/event/3060 -https://www.oceanexpert.org/event/3061 -https://www.oceanexpert.org/event/3062 -https://www.oceanexpert.org/event/3063 -https://www.oceanexpert.org/event/3064 -https://www.oceanexpert.org/event/3065 -https://www.oceanexpert.org/event/3066 -https://www.oceanexpert.org/event/3067 -https://www.oceanexpert.org/event/3068 -https://www.oceanexpert.org/event/3069 -https://www.oceanexpert.org/event/3070 -https://www.oceanexpert.org/event/3071 -https://www.oceanexpert.org/event/3072 -https://www.oceanexpert.org/event/3073 -https://www.oceanexpert.org/event/3074 -https://www.oceanexpert.org/event/3075 -https://www.oceanexpert.org/event/3076 -https://www.oceanexpert.org/event/3077 -https://www.oceanexpert.org/event/3078 -https://www.oceanexpert.org/event/3079 -https://www.oceanexpert.org/event/3080 -https://www.oceanexpert.org/event/3081 -https://www.oceanexpert.org/event/3082 -https://www.oceanexpert.org/event/3083 -https://www.oceanexpert.org/event/3084 -https://www.oceanexpert.org/event/3085 -https://www.oceanexpert.org/event/3086 -https://www.oceanexpert.org/event/3087 -https://www.oceanexpert.org/event/3088 -https://www.oceanexpert.org/event/3089 -https://www.oceanexpert.org/event/3090 -https://www.oceanexpert.org/event/3091 -https://www.oceanexpert.org/event/3092 -https://www.oceanexpert.org/event/3093 -https://www.oceanexpert.org/event/3094 -https://www.oceanexpert.org/event/3096 -https://www.oceanexpert.org/event/3097 -https://www.oceanexpert.org/event/3098 -https://www.oceanexpert.org/event/3099 -https://www.oceanexpert.org/event/3100 -https://www.oceanexpert.org/event/3101 -https://www.oceanexpert.org/event/3102 -https://www.oceanexpert.org/event/3103 -https://www.oceanexpert.org/event/3104 -https://www.oceanexpert.org/event/3105 -https://www.oceanexpert.org/event/3106 -https://www.oceanexpert.org/event/3107 -https://www.oceanexpert.org/event/3109 -https://www.oceanexpert.org/event/3110 -https://www.oceanexpert.org/event/3111 -https://www.oceanexpert.org/event/3112 -https://www.oceanexpert.org/event/3113 -https://www.oceanexpert.org/event/3114 -https://www.oceanexpert.org/event/3115 -https://www.oceanexpert.org/event/3116 -https://www.oceanexpert.org/event/3117 -https://www.oceanexpert.org/event/3118 -https://www.oceanexpert.org/event/3119 -https://www.oceanexpert.org/event/3120 -https://www.oceanexpert.org/event/3121 -https://www.oceanexpert.org/event/3122 -https://www.oceanexpert.org/event/3123 -https://www.oceanexpert.org/event/3124 -https://www.oceanexpert.org/event/3125 -https://www.oceanexpert.org/event/3126 -https://www.oceanexpert.org/event/3127 -https://www.oceanexpert.org/event/3128 -https://www.oceanexpert.org/event/3131 -https://www.oceanexpert.org/event/3132 -https://www.oceanexpert.org/event/3133 -https://www.oceanexpert.org/event/3134 -https://www.oceanexpert.org/event/3137 -https://www.oceanexpert.org/event/3158 -https://www.oceanexpert.org/event/3159 -https://www.oceanexpert.org/event/3160 -https://www.oceanexpert.org/event/3163 -https://www.oceanexpert.org/event/3167 -https://www.oceanexpert.org/event/3168 -https://www.oceanexpert.org/event/3169 -https://www.oceanexpert.org/event/3170 -https://www.oceanexpert.org/event/3171 -https://www.oceanexpert.org/event/3172 -https://www.oceanexpert.org/event/3173 -https://www.oceanexpert.org/event/3174 -https://www.oceanexpert.org/event/3175 -https://www.oceanexpert.org/event/3176 -https://www.oceanexpert.org/event/3177 -https://www.oceanexpert.org/event/3178 -https://www.oceanexpert.org/event/3179 -https://www.oceanexpert.org/event/3180 -https://www.oceanexpert.org/event/3181 -https://www.oceanexpert.org/event/3182 -https://www.oceanexpert.org/event/3183 -https://www.oceanexpert.org/event/3184 -https://www.oceanexpert.org/event/3185 -https://www.oceanexpert.org/event/3186 -https://www.oceanexpert.org/event/3187 -https://www.oceanexpert.org/event/3188 -https://www.oceanexpert.org/event/3189 -https://www.oceanexpert.org/event/3190 -https://www.oceanexpert.org/event/3191 -https://www.oceanexpert.org/event/3194 -https://www.oceanexpert.org/event/3195 -https://www.oceanexpert.org/event/3196 -https://www.oceanexpert.org/event/3198 -https://www.oceanexpert.org/event/3238 -https://www.oceanexpert.org/event/3239 -https://www.oceanexpert.org/event/3240 -https://www.oceanexpert.org/event/3241 -https://www.oceanexpert.org/event/3242 -https://www.oceanexpert.org/event/3243 -https://www.oceanexpert.org/event/3244 -https://www.oceanexpert.org/event/3245 -https://www.oceanexpert.org/event/3246 -https://www.oceanexpert.org/event/3247 -https://www.oceanexpert.org/event/3248 -https://www.oceanexpert.org/event/3249 -https://www.oceanexpert.org/event/3250 -https://www.oceanexpert.org/event/3251 -https://www.oceanexpert.org/event/3252 -https://www.oceanexpert.org/event/3253 -https://www.oceanexpert.org/event/3254 -https://www.oceanexpert.org/event/3255 -https://www.oceanexpert.org/event/3256 -https://www.oceanexpert.org/event/3257 -https://www.oceanexpert.org/event/3258 -https://www.oceanexpert.org/event/3259 -https://www.oceanexpert.org/event/3260 -https://www.oceanexpert.org/event/3261 -https://www.oceanexpert.org/event/3262 -https://www.oceanexpert.org/event/3263 -https://www.oceanexpert.org/event/3264 -https://www.oceanexpert.org/event/3265 -https://www.oceanexpert.org/event/3266 -https://www.oceanexpert.org/event/3267 -https://www.oceanexpert.org/event/3268 -https://www.oceanexpert.org/event/3269 -https://www.oceanexpert.org/event/3276 -https://www.oceanexpert.org/event/3277 -https://www.oceanexpert.org/event/3279 -https://www.oceanexpert.org/event/3280 -https://www.oceanexpert.org/event/3281 -https://www.oceanexpert.org/event/3282 -https://www.oceanexpert.org/event/3283 -https://www.oceanexpert.org/event/3284 -https://www.oceanexpert.org/event/3285 -https://www.oceanexpert.org/event/3286 -https://www.oceanexpert.org/event/3287 -https://www.oceanexpert.org/event/3290 -https://www.oceanexpert.org/event/3291 -https://www.oceanexpert.org/event/3292 -https://www.oceanexpert.org/event/3293 -https://www.oceanexpert.org/event/3294 -https://www.oceanexpert.org/event/3296 -https://www.oceanexpert.org/event/3297 -https://www.oceanexpert.org/event/3298 -https://www.oceanexpert.org/event/3299 -https://www.oceanexpert.org/event/3300 -https://www.oceanexpert.org/event/3301 -https://www.oceanexpert.org/event/3302 -https://www.oceanexpert.org/event/3303 -https://www.oceanexpert.org/event/3304 -https://www.oceanexpert.org/event/3305 -https://www.oceanexpert.org/event/3306 -https://www.oceanexpert.org/event/3308 -https://www.oceanexpert.org/event/3309 -https://www.oceanexpert.org/event/3310 -https://www.oceanexpert.org/event/3311 -https://www.oceanexpert.org/event/3314 -https://www.oceanexpert.org/event/2 -https://www.oceanexpert.org/event/10 -https://www.oceanexpert.org/event/12 -https://www.oceanexpert.org/event/15 -https://www.oceanexpert.org/event/16 -https://www.oceanexpert.org/event/23 -https://www.oceanexpert.org/event/41 -https://www.oceanexpert.org/event/42 -https://www.oceanexpert.org/event/43 -https://www.oceanexpert.org/event/44 -https://www.oceanexpert.org/event/46 -https://www.oceanexpert.org/event/47 -https://www.oceanexpert.org/event/48 -https://www.oceanexpert.org/event/49 -https://www.oceanexpert.org/event/50 -https://www.oceanexpert.org/event/51 -https://www.oceanexpert.org/event/53 -https://www.oceanexpert.org/event/54 -https://www.oceanexpert.org/event/55 -https://www.oceanexpert.org/event/56 -https://www.oceanexpert.org/event/58 -https://www.oceanexpert.org/event/65 -https://www.oceanexpert.org/event/66 -https://www.oceanexpert.org/event/70 -https://www.oceanexpert.org/event/71 -https://www.oceanexpert.org/event/72 -https://www.oceanexpert.org/event/74 -https://www.oceanexpert.org/event/75 -https://www.oceanexpert.org/event/76 -https://www.oceanexpert.org/event/80 -https://www.oceanexpert.org/event/81 -https://www.oceanexpert.org/event/89 -https://www.oceanexpert.org/event/90 -https://www.oceanexpert.org/event/92 -https://www.oceanexpert.org/event/95 -https://www.oceanexpert.org/event/96 -https://www.oceanexpert.org/event/97 -https://www.oceanexpert.org/event/98 -https://www.oceanexpert.org/event/100 -https://www.oceanexpert.org/event/101 -https://www.oceanexpert.org/event/108 -https://www.oceanexpert.org/event/151 -https://www.oceanexpert.org/event/165 -https://www.oceanexpert.org/event/177 -https://www.oceanexpert.org/event/178 -https://www.oceanexpert.org/event/179 -https://www.oceanexpert.org/event/180 -https://www.oceanexpert.org/event/201 -https://www.oceanexpert.org/event/205 -https://www.oceanexpert.org/event/206 -https://www.oceanexpert.org/event/207 -https://www.oceanexpert.org/event/208 -https://www.oceanexpert.org/event/217 -https://www.oceanexpert.org/event/218 -https://www.oceanexpert.org/event/220 -https://www.oceanexpert.org/event/221 -https://www.oceanexpert.org/event/223 -https://www.oceanexpert.org/event/224 -https://www.oceanexpert.org/event/225 -https://www.oceanexpert.org/event/227 -https://www.oceanexpert.org/event/228 -https://www.oceanexpert.org/event/229 -https://www.oceanexpert.org/event/231 -https://www.oceanexpert.org/event/233 -https://www.oceanexpert.org/event/234 -https://www.oceanexpert.org/event/235 -https://www.oceanexpert.org/event/236 -https://www.oceanexpert.org/event/237 -https://www.oceanexpert.org/event/238 -https://www.oceanexpert.org/event/239 -https://www.oceanexpert.org/event/240 -https://www.oceanexpert.org/event/243 -https://www.oceanexpert.org/event/244 -https://www.oceanexpert.org/event/245 -https://www.oceanexpert.org/event/246 -https://www.oceanexpert.org/event/247 -https://www.oceanexpert.org/event/250 -https://www.oceanexpert.org/event/252 -https://www.oceanexpert.org/event/254 -https://www.oceanexpert.org/event/256 -https://www.oceanexpert.org/event/277 -https://www.oceanexpert.org/event/278 -https://www.oceanexpert.org/event/280 -https://www.oceanexpert.org/event/281 -https://www.oceanexpert.org/event/282 -https://www.oceanexpert.org/event/286 -https://www.oceanexpert.org/event/287 -https://www.oceanexpert.org/event/288 -https://www.oceanexpert.org/event/289 -https://www.oceanexpert.org/event/290 -https://www.oceanexpert.org/event/291 -https://www.oceanexpert.org/event/292 -https://www.oceanexpert.org/event/293 -https://www.oceanexpert.org/event/294 -https://www.oceanexpert.org/event/304 -https://www.oceanexpert.org/event/306 -https://www.oceanexpert.org/event/307 -https://www.oceanexpert.org/event/318 -https://www.oceanexpert.org/event/337 -https://www.oceanexpert.org/event/340 -https://www.oceanexpert.org/event/341 -https://www.oceanexpert.org/event/342 -https://www.oceanexpert.org/event/346 -https://www.oceanexpert.org/event/360 -https://www.oceanexpert.org/event/377 -https://www.oceanexpert.org/event/385 -https://www.oceanexpert.org/event/394 -https://www.oceanexpert.org/event/407 -https://www.oceanexpert.org/event/410 -https://www.oceanexpert.org/event/411 -https://www.oceanexpert.org/event/413 -https://www.oceanexpert.org/event/415 -https://www.oceanexpert.org/event/417 -https://www.oceanexpert.org/event/429 -https://www.oceanexpert.org/event/431 -https://www.oceanexpert.org/event/436 -https://www.oceanexpert.org/event/437 -https://www.oceanexpert.org/event/438 -https://www.oceanexpert.org/event/444 -https://www.oceanexpert.org/event/450 -https://www.oceanexpert.org/event/451 -https://www.oceanexpert.org/event/455 -https://www.oceanexpert.org/event/456 -https://www.oceanexpert.org/event/459 -https://www.oceanexpert.org/event/467 -https://www.oceanexpert.org/event/494 -https://www.oceanexpert.org/event/503 -https://www.oceanexpert.org/event/513 -https://www.oceanexpert.org/event/517 -https://www.oceanexpert.org/event/518 -https://www.oceanexpert.org/event/532 -https://www.oceanexpert.org/event/542 -https://www.oceanexpert.org/event/550 -https://www.oceanexpert.org/event/577 -https://www.oceanexpert.org/event/578 -https://www.oceanexpert.org/event/579 -https://www.oceanexpert.org/event/580 -https://www.oceanexpert.org/event/581 -https://www.oceanexpert.org/event/582 -https://www.oceanexpert.org/event/583 -https://www.oceanexpert.org/event/584 -https://www.oceanexpert.org/event/587 -https://www.oceanexpert.org/event/592 -https://www.oceanexpert.org/event/601 -https://www.oceanexpert.org/event/612 -https://www.oceanexpert.org/event/640 -https://www.oceanexpert.org/event/641 -https://www.oceanexpert.org/event/660 -https://www.oceanexpert.org/event/667 -https://www.oceanexpert.org/event/674 -https://www.oceanexpert.org/event/675 -https://www.oceanexpert.org/event/695 -https://www.oceanexpert.org/event/698 -https://www.oceanexpert.org/event/702 -https://www.oceanexpert.org/event/765 -https://www.oceanexpert.org/event/766 -https://www.oceanexpert.org/event/768 -https://www.oceanexpert.org/event/769 -https://www.oceanexpert.org/event/805 -https://www.oceanexpert.org/event/806 -https://www.oceanexpert.org/event/808 -https://www.oceanexpert.org/event/809 -https://www.oceanexpert.org/event/818 -https://www.oceanexpert.org/event/823 -https://www.oceanexpert.org/event/836 -https://www.oceanexpert.org/event/850 -https://www.oceanexpert.org/event/867 -https://www.oceanexpert.org/event/889 -https://www.oceanexpert.org/event/890 -https://www.oceanexpert.org/event/891 -https://www.oceanexpert.org/event/892 -https://www.oceanexpert.org/event/929 -https://www.oceanexpert.org/event/943 -https://www.oceanexpert.org/event/944 -https://www.oceanexpert.org/event/945 -https://www.oceanexpert.org/event/951 -https://www.oceanexpert.org/event/962 -https://www.oceanexpert.org/event/977 -https://www.oceanexpert.org/event/984 -https://www.oceanexpert.org/event/985 -https://www.oceanexpert.org/event/987 -https://www.oceanexpert.org/event/990 -https://www.oceanexpert.org/event/992 -https://www.oceanexpert.org/event/1000 -https://www.oceanexpert.org/event/1001 -https://www.oceanexpert.org/event/1005 -https://www.oceanexpert.org/event/1006 -https://www.oceanexpert.org/event/1054 -https://www.oceanexpert.org/event/1067 -https://www.oceanexpert.org/event/1082 -https://www.oceanexpert.org/event/1083 -https://www.oceanexpert.org/event/1084 -https://www.oceanexpert.org/event/1085 -https://www.oceanexpert.org/event/1086 -https://www.oceanexpert.org/event/1089 -https://www.oceanexpert.org/event/1090 -https://www.oceanexpert.org/event/1098 -https://www.oceanexpert.org/event/1104 -https://www.oceanexpert.org/event/1125 -https://www.oceanexpert.org/event/1129 -https://www.oceanexpert.org/event/1133 -https://www.oceanexpert.org/event/1149 -https://www.oceanexpert.org/event/1150 -https://www.oceanexpert.org/event/1153 -https://www.oceanexpert.org/event/1158 -https://www.oceanexpert.org/event/1159 -https://www.oceanexpert.org/event/1168 -https://www.oceanexpert.org/event/1170 -https://www.oceanexpert.org/event/1174 -https://www.oceanexpert.org/event/1186 -https://www.oceanexpert.org/event/1191 -https://www.oceanexpert.org/event/1195 -https://www.oceanexpert.org/event/1198 -https://www.oceanexpert.org/event/1203 -https://www.oceanexpert.org/event/1213 -https://www.oceanexpert.org/event/1220 -https://www.oceanexpert.org/event/1228 -https://www.oceanexpert.org/event/1229 -https://www.oceanexpert.org/event/1270 -https://www.oceanexpert.org/event/1272 -https://www.oceanexpert.org/event/1279 -https://www.oceanexpert.org/event/1280 -https://www.oceanexpert.org/event/1289 -https://www.oceanexpert.org/event/1290 -https://www.oceanexpert.org/event/1293 -https://www.oceanexpert.org/event/1305 -https://www.oceanexpert.org/event/1311 -https://www.oceanexpert.org/event/1313 -https://www.oceanexpert.org/event/1315 -https://www.oceanexpert.org/event/1336 -https://www.oceanexpert.org/event/1349 -https://www.oceanexpert.org/event/1368 -https://www.oceanexpert.org/event/1378 -https://www.oceanexpert.org/event/1379 -https://www.oceanexpert.org/event/1389 -https://www.oceanexpert.org/event/1392 -https://www.oceanexpert.org/event/1394 -https://www.oceanexpert.org/event/1397 -https://www.oceanexpert.org/event/1398 -https://www.oceanexpert.org/event/1403 -https://www.oceanexpert.org/event/1407 -https://www.oceanexpert.org/event/1410 -https://www.oceanexpert.org/event/1427 -https://www.oceanexpert.org/event/1428 -https://www.oceanexpert.org/event/1451 -https://www.oceanexpert.org/event/1453 -https://www.oceanexpert.org/event/1456 -https://www.oceanexpert.org/event/1467 -https://www.oceanexpert.org/event/1473 -https://www.oceanexpert.org/event/1475 -https://www.oceanexpert.org/event/1501 -https://www.oceanexpert.org/event/1509 -https://www.oceanexpert.org/event/1514 -https://www.oceanexpert.org/event/1522 -https://www.oceanexpert.org/event/1525 -https://www.oceanexpert.org/event/1529 -https://www.oceanexpert.org/event/1542 -https://www.oceanexpert.org/event/1545 -https://www.oceanexpert.org/event/1551 -https://www.oceanexpert.org/event/1556 -https://www.oceanexpert.org/event/1559 -https://www.oceanexpert.org/event/1560 -https://www.oceanexpert.org/event/1564 -https://www.oceanexpert.org/event/1583 -https://www.oceanexpert.org/event/1591 -https://www.oceanexpert.org/event/1604 -https://www.oceanexpert.org/event/1619 -https://www.oceanexpert.org/event/1621 -https://www.oceanexpert.org/event/1622 -https://www.oceanexpert.org/event/1623 -https://www.oceanexpert.org/event/1625 -https://www.oceanexpert.org/event/1627 -https://www.oceanexpert.org/event/1648 -https://www.oceanexpert.org/event/1650 -https://www.oceanexpert.org/event/1652 -https://www.oceanexpert.org/event/1659 -https://www.oceanexpert.org/event/1673 -https://www.oceanexpert.org/event/1674 -https://www.oceanexpert.org/event/1677 -https://www.oceanexpert.org/event/1684 -https://www.oceanexpert.org/event/1689 -https://www.oceanexpert.org/event/1690 -https://www.oceanexpert.org/event/1705 -https://www.oceanexpert.org/event/1708 -https://www.oceanexpert.org/event/1722 -https://www.oceanexpert.org/event/1725 -https://www.oceanexpert.org/event/1728 -https://www.oceanexpert.org/event/1730 -https://www.oceanexpert.org/event/1736 -https://www.oceanexpert.org/event/1740 -https://www.oceanexpert.org/event/1741 -https://www.oceanexpert.org/event/1746 -https://www.oceanexpert.org/event/1748 -https://www.oceanexpert.org/event/1752 -https://www.oceanexpert.org/event/1763 -https://www.oceanexpert.org/event/1772 -https://www.oceanexpert.org/event/1782 -https://www.oceanexpert.org/event/1803 -https://www.oceanexpert.org/event/1809 -https://www.oceanexpert.org/event/1836 -https://www.oceanexpert.org/event/1848 -https://www.oceanexpert.org/event/1849 -https://www.oceanexpert.org/event/1850 -https://www.oceanexpert.org/event/1851 -https://www.oceanexpert.org/event/1859 -https://www.oceanexpert.org/event/1861 -https://www.oceanexpert.org/event/1862 -https://www.oceanexpert.org/event/1863 -https://www.oceanexpert.org/event/1864 -https://www.oceanexpert.org/event/1865 -https://www.oceanexpert.org/event/1875 -https://www.oceanexpert.org/event/1889 -https://www.oceanexpert.org/event/1891 -https://www.oceanexpert.org/event/1896 -https://www.oceanexpert.org/event/1905 -https://www.oceanexpert.org/event/1908 -https://www.oceanexpert.org/event/1926 -https://www.oceanexpert.org/event/1929 -https://www.oceanexpert.org/event/1930 -https://www.oceanexpert.org/event/1931 -https://www.oceanexpert.org/event/1941 -https://www.oceanexpert.org/event/1943 -https://www.oceanexpert.org/event/1944 -https://www.oceanexpert.org/event/1947 -https://www.oceanexpert.org/event/1954 -https://www.oceanexpert.org/event/1978 -https://www.oceanexpert.org/event/1984 -https://www.oceanexpert.org/event/1986 -https://www.oceanexpert.org/event/1987 -https://www.oceanexpert.org/event/1988 -https://www.oceanexpert.org/event/1991 -https://www.oceanexpert.org/event/1995 -https://www.oceanexpert.org/event/2001 -https://www.oceanexpert.org/event/2002 -https://www.oceanexpert.org/event/2004 -https://www.oceanexpert.org/event/2006 -https://www.oceanexpert.org/event/2008 -https://www.oceanexpert.org/event/2014 -https://www.oceanexpert.org/event/2015 -https://www.oceanexpert.org/event/2016 -https://www.oceanexpert.org/event/2017 -https://www.oceanexpert.org/event/2018 -https://www.oceanexpert.org/event/2019 -https://www.oceanexpert.org/event/2020 -https://www.oceanexpert.org/event/2021 -https://www.oceanexpert.org/event/2022 -https://www.oceanexpert.org/event/2025 -https://www.oceanexpert.org/event/2026 -https://www.oceanexpert.org/event/2028 -https://www.oceanexpert.org/event/2042 -https://www.oceanexpert.org/event/2043 -https://www.oceanexpert.org/event/2055 -https://www.oceanexpert.org/event/2077 -https://www.oceanexpert.org/event/2087 -https://www.oceanexpert.org/event/2105 -https://www.oceanexpert.org/event/2107 -https://www.oceanexpert.org/event/2109 -https://www.oceanexpert.org/event/2112 -https://www.oceanexpert.org/event/2115 -https://www.oceanexpert.org/event/2118 -https://www.oceanexpert.org/event/2126 -https://www.oceanexpert.org/event/2127 -https://www.oceanexpert.org/event/2132 -https://www.oceanexpert.org/event/2133 -https://www.oceanexpert.org/event/2134 -https://www.oceanexpert.org/event/2135 -https://www.oceanexpert.org/event/2136 -https://www.oceanexpert.org/event/2138 -https://www.oceanexpert.org/event/2139 -https://www.oceanexpert.org/event/2140 -https://www.oceanexpert.org/event/2141 -https://www.oceanexpert.org/event/2143 -https://www.oceanexpert.org/event/2153 -https://www.oceanexpert.org/event/2164 -https://www.oceanexpert.org/event/2168 -https://www.oceanexpert.org/event/2174 -https://www.oceanexpert.org/event/2177 -https://www.oceanexpert.org/event/2178 -https://www.oceanexpert.org/event/2179 -https://www.oceanexpert.org/event/2181 -https://www.oceanexpert.org/event/2189 -https://www.oceanexpert.org/event/2194 -https://www.oceanexpert.org/event/2196 -https://www.oceanexpert.org/event/2209 -https://www.oceanexpert.org/event/2210 -https://www.oceanexpert.org/event/2231 -https://www.oceanexpert.org/event/2239 -https://www.oceanexpert.org/event/2249 -https://www.oceanexpert.org/event/2255 -https://www.oceanexpert.org/event/2277 -https://www.oceanexpert.org/event/2279 -https://www.oceanexpert.org/event/2280 -https://www.oceanexpert.org/event/2281 -https://www.oceanexpert.org/event/2282 -https://www.oceanexpert.org/event/2283 -https://www.oceanexpert.org/event/2286 -https://www.oceanexpert.org/event/2287 -https://www.oceanexpert.org/event/2288 -https://www.oceanexpert.org/event/2289 -https://www.oceanexpert.org/event/2294 -https://www.oceanexpert.org/event/2295 -https://www.oceanexpert.org/event/2296 -https://www.oceanexpert.org/event/2297 -https://www.oceanexpert.org/event/2298 -https://www.oceanexpert.org/event/2299 -https://www.oceanexpert.org/event/2300 -https://www.oceanexpert.org/event/2312 -https://www.oceanexpert.org/event/2329 -https://www.oceanexpert.org/event/2330 -https://www.oceanexpert.org/event/2333 -https://www.oceanexpert.org/event/2341 -https://www.oceanexpert.org/event/2347 -https://www.oceanexpert.org/event/2350 -https://www.oceanexpert.org/event/2362 -https://www.oceanexpert.org/event/2371 -https://www.oceanexpert.org/event/2374 -https://www.oceanexpert.org/event/2382 -https://www.oceanexpert.org/event/2403 -https://www.oceanexpert.org/event/2408 -https://www.oceanexpert.org/event/2413 -https://www.oceanexpert.org/event/2425 -https://www.oceanexpert.org/event/2426 -https://www.oceanexpert.org/event/2427 -https://www.oceanexpert.org/event/2428 -https://www.oceanexpert.org/event/2429 -https://www.oceanexpert.org/event/2430 -https://www.oceanexpert.org/event/2431 -https://www.oceanexpert.org/event/2432 -https://www.oceanexpert.org/event/2433 -https://www.oceanexpert.org/event/2443 -https://www.oceanexpert.org/event/2444 -https://www.oceanexpert.org/event/2463 -https://www.oceanexpert.org/event/2473 -https://www.oceanexpert.org/event/2474 -https://www.oceanexpert.org/event/2483 -https://www.oceanexpert.org/event/2485 -https://www.oceanexpert.org/event/2488 -https://www.oceanexpert.org/event/2489 -https://www.oceanexpert.org/event/2495 -https://www.oceanexpert.org/event/2496 -https://www.oceanexpert.org/event/2510 -https://www.oceanexpert.org/event/2534 -https://www.oceanexpert.org/event/2553 -https://www.oceanexpert.org/event/2554 -https://www.oceanexpert.org/event/2555 -https://www.oceanexpert.org/event/2556 -https://www.oceanexpert.org/event/2557 -https://www.oceanexpert.org/event/2558 -https://www.oceanexpert.org/event/2559 -https://www.oceanexpert.org/event/2563 -https://www.oceanexpert.org/event/2580 -https://www.oceanexpert.org/event/2581 -https://www.oceanexpert.org/event/2587 -https://www.oceanexpert.org/event/2593 -https://www.oceanexpert.org/event/2594 -https://www.oceanexpert.org/event/2595 -https://www.oceanexpert.org/event/2605 -https://www.oceanexpert.org/event/2620 -https://www.oceanexpert.org/event/2627 -https://www.oceanexpert.org/event/2629 -https://www.oceanexpert.org/event/2690 -https://www.oceanexpert.org/event/2697 -https://www.oceanexpert.org/event/2747 -https://www.oceanexpert.org/event/2765 -https://www.oceanexpert.org/event/2773 -https://www.oceanexpert.org/event/2783 -https://www.oceanexpert.org/event/2786 -https://www.oceanexpert.org/event/2804 -https://www.oceanexpert.org/event/2806 -https://www.oceanexpert.org/event/2813 -https://www.oceanexpert.org/event/2825 -https://www.oceanexpert.org/event/2845 -https://www.oceanexpert.org/event/2859 -https://www.oceanexpert.org/event/2860 -https://www.oceanexpert.org/event/2861 -https://www.oceanexpert.org/event/2862 -https://www.oceanexpert.org/event/2878 -https://www.oceanexpert.org/event/2917 -https://www.oceanexpert.org/event/2988 -https://www.oceanexpert.org/event/2991 -https://www.oceanexpert.org/event/3007 -https://www.oceanexpert.org/event/3012 -https://www.oceanexpert.org/event/3013 -https://www.oceanexpert.org/event/3014 -https://www.oceanexpert.org/event/3015 -https://www.oceanexpert.org/event/3018 -https://www.oceanexpert.org/event/3019 -https://www.oceanexpert.org/event/3024 -https://www.oceanexpert.org/event/3029 -https://www.oceanexpert.org/event/3040 -https://www.oceanexpert.org/event/3041 -https://www.oceanexpert.org/event/3044 -https://www.oceanexpert.org/event/3053 -https://www.oceanexpert.org/event/3062 -https://www.oceanexpert.org/event/3064 -https://www.oceanexpert.org/event/3094 -https://www.oceanexpert.org/event/3106 -https://www.oceanexpert.org/event/3198 -https://www.oceanexpert.org/event/3246 -https://www.oceanexpert.org/event/3251 -https://www.oceanexpert.org/event/3252 -https://www.oceanexpert.org/event/3253 -https://www.oceanexpert.org/event/3254 -https://www.oceanexpert.org/event/3256 -https://www.oceanexpert.org/event/3257 -https://www.oceanexpert.org/event/3258 -https://www.oceanexpert.org/event/3259 -https://www.oceanexpert.org/event/3279 -https://www.oceanexpert.org/event/3292 -https://www.oceanexpert.org/event/3298 -https://www.oceanexpert.org/event/3299 -https://www.oceanexpert.org/event/3308 -https://www.oceanexpert.org/event/3309 -https://www.oceanexpert.org/event/3310 -https://www.oceanexpert.org/event/3311 -print s3select urls ----------------------------------------------- -https://www.oceanexpert.org/institution/6668 -https://www.oceanexpert.org/institution/17919 -https://www.oceanexpert.org/expert/39985 -https://www.oceanexpert.org/expert/48851 -https://www.oceanexpert.org/expert/17177 -https://www.oceanexpert.org/expert/22801 -https://www.oceanexpert.org/expert/16582 -https://www.oceanexpert.org/expert/42651 -https://www.oceanexpert.org/expert/10983 -https://www.oceanexpert.org/expert/44631 -https://www.oceanexpert.org/institution/11455 -https://www.oceanexpert.org/institution/18893 -https://www.oceanexpert.org/expert/21123 -https://www.oceanexpert.org/expert/29570 -https://www.oceanexpert.org/expert/35413 -https://www.oceanexpert.org/expert/27593 -https://www.oceanexpert.org/institution/18242 -https://www.oceanexpert.org/expert/18493 -https://www.oceanexpert.org/institution/18374 -https://www.oceanexpert.org/expert/23595 -https://www.oceanexpert.org/event/1497 -https://www.oceanexpert.org/expert/37328 -https://www.oceanexpert.org/expert/14410 -https://www.oceanexpert.org/expert/15911 -https://www.oceanexpert.org/expert/43775 -https://www.oceanexpert.org/expert/44932 -https://www.oceanexpert.org/expert/32370 -https://www.oceanexpert.org/expert/27388 -https://www.oceanexpert.org/expert/45850 -https://www.oceanexpert.org/expert/33997 -https://www.oceanexpert.org/expert/43836 -https://www.oceanexpert.org/expert/47722 -https://www.oceanexpert.org/expert/23157 -https://www.oceanexpert.org/institution/21972 -https://www.oceanexpert.org/expert/16903 -https://www.oceanexpert.org/expert/45967 -https://www.oceanexpert.org/expert/14716 -https://www.oceanexpert.org/event/1349 -https://www.oceanexpert.org/expert/25964 -https://www.oceanexpert.org/expert/23848 -https://www.oceanexpert.org/institution/5927 -https://www.oceanexpert.org/expert/16772 -https://www.oceanexpert.org/institution/21062 -https://www.oceanexpert.org/expert/43141 -https://www.oceanexpert.org/expert/42459 -https://www.oceanexpert.org/expert/26077 -https://www.oceanexpert.org/institution/20453 -https://www.oceanexpert.org/expert/39285 -https://www.oceanexpert.org/institution/21776 -https://www.oceanexpert.org/expert/38448 -https://www.oceanexpert.org/expert/39154 -https://www.oceanexpert.org/expert/20887 -https://www.oceanexpert.org/expert/33294 -https://www.oceanexpert.org/expert/23183 -https://www.oceanexpert.org/expert/30748 -https://www.oceanexpert.org/expert/37076 -https://www.oceanexpert.org/expert/18744 -https://www.oceanexpert.org/expert/19907 -https://www.oceanexpert.org/expert/35992 -https://www.oceanexpert.org/expert/19859 -https://www.oceanexpert.org/expert/44220 -https://www.oceanexpert.org/institution/8401 -https://www.oceanexpert.org/expert/14404 -https://www.oceanexpert.org/expert/38271 -https://www.oceanexpert.org/expert/28363 -https://www.oceanexpert.org/expert/28908 -https://www.oceanexpert.org/expert/45999 -https://www.oceanexpert.org/institution/18360 -https://www.oceanexpert.org/event/753 -https://www.oceanexpert.org/institution/18463 -https://www.oceanexpert.org/expert/46557 -https://www.oceanexpert.org/institution/13449 -https://www.oceanexpert.org/institution/19072 -https://www.oceanexpert.org/expert/43154 -https://www.oceanexpert.org/expert/24548 -https://www.oceanexpert.org/expert/6913 -https://www.oceanexpert.org/expert/39265 -https://www.oceanexpert.org/institution/18737 -https://www.oceanexpert.org/expert/45253 -https://www.oceanexpert.org/institution/16254 -https://www.oceanexpert.org/institution/12768 -https://www.oceanexpert.org/expert/24506 -https://www.oceanexpert.org/expert/28347 -https://www.oceanexpert.org/expert/32698 -https://www.oceanexpert.org/institution/18161 -https://www.oceanexpert.org/expert/17320 -https://www.oceanexpert.org/expert/43141 -https://www.oceanexpert.org/expert/19556 -https://www.oceanexpert.org/expert/21263 -https://www.oceanexpert.org/event/2584 -https://www.oceanexpert.org/institution/19376 -https://www.oceanexpert.org/expert/47037 -https://www.oceanexpert.org/expert/22623 -https://www.oceanexpert.org/expert/35485 -https://www.oceanexpert.org/expert/42640 -https://www.oceanexpert.org/expert/24897 -https://www.oceanexpert.org/expert/23093 -https://www.oceanexpert.org/expert/18198 -https://www.oceanexpert.org/expert/39606 -https://www.oceanexpert.org/expert/46879 -https://www.oceanexpert.org/institution/16345 -https://www.oceanexpert.org/expert/30259 -https://www.oceanexpert.org/expert/38834 -https://www.oceanexpert.org/expert/18706 -https://www.oceanexpert.org/institution/18923 -https://www.oceanexpert.org/expert/45453 -https://www.oceanexpert.org/institution/14370 -https://www.oceanexpert.org/expert/26321 -https://www.oceanexpert.org/expert/46654 -https://www.oceanexpert.org/expert/36502 -https://www.oceanexpert.org/institution/8715 -https://www.oceanexpert.org/expert/47113 -https://www.oceanexpert.org/expert/43333 -https://www.oceanexpert.org/institution/15044 -https://www.oceanexpert.org/event/2007 -https://www.oceanexpert.org/expert/26932 -https://www.oceanexpert.org/event/1824 -https://www.oceanexpert.org/expert/16849 -https://www.oceanexpert.org/expert/36389 -https://www.oceanexpert.org/expert/26150 -https://www.oceanexpert.org/expert/48186 -https://www.oceanexpert.org/expert/42541 -https://www.oceanexpert.org/institution/21016 -https://www.oceanexpert.org/expert/17228 -https://www.oceanexpert.org/expert/44176 -https://www.oceanexpert.org/expert/17420 -https://www.oceanexpert.org/institution/18454 -https://www.oceanexpert.org/expert/36537 -https://www.oceanexpert.org/institution/9499 -https://www.oceanexpert.org/expert/13174 -https://www.oceanexpert.org/expert/22637 -https://www.oceanexpert.org/institution/21175 -https://www.oceanexpert.org/event/979 -https://www.oceanexpert.org/event/1786 -https://www.oceanexpert.org/expert/7124 -https://www.oceanexpert.org/expert/17504 -https://www.oceanexpert.org/expert/29896 -https://www.oceanexpert.org/expert/44854 -https://www.oceanexpert.org/expert/44001 -https://www.oceanexpert.org/institution/18494 -https://www.oceanexpert.org/institution/9442 -https://www.oceanexpert.org/expert/19277 -https://www.oceanexpert.org/expert/44320 -https://www.oceanexpert.org/event/1940 -https://www.oceanexpert.org/expert/45787 -https://www.oceanexpert.org/expert/42463 -https://www.oceanexpert.org/institution/14821 -https://www.oceanexpert.org/expert/39329 -https://www.oceanexpert.org/expert/46733 -https://www.oceanexpert.org/event/135 -https://www.oceanexpert.org/institution/8493 -https://www.oceanexpert.org/expert/36798 -https://www.oceanexpert.org/expert/34852 -https://www.oceanexpert.org/event/3132 -https://www.oceanexpert.org/expert/48466 -https://www.oceanexpert.org/expert/26607 -https://www.oceanexpert.org/expert/28092 -https://www.oceanexpert.org/expert/24456 -https://www.oceanexpert.org/expert/16387 -https://www.oceanexpert.org/expert/48574 -https://www.oceanexpert.org/expert/42831 -https://www.oceanexpert.org/institution/6514 -https://www.oceanexpert.org/expert/15103 -https://www.oceanexpert.org/event/834 -https://www.oceanexpert.org/institution/19064 -https://www.oceanexpert.org/institution/16276 -https://www.oceanexpert.org/expert/29823 -https://www.oceanexpert.org/expert/18901 -https://www.oceanexpert.org/expert/7017 -https://www.oceanexpert.org/event/535 -https://www.oceanexpert.org/expert/46615 -https://www.oceanexpert.org/expert/47585 -https://www.oceanexpert.org/expert/19482 -https://www.oceanexpert.org/institution/21962 -https://www.oceanexpert.org/event/1786 -https://www.oceanexpert.org/institution/18425 -https://www.oceanexpert.org/expert/27579 -https://www.oceanexpert.org/expert/18620 -https://www.oceanexpert.org/expert/48935 -https://www.oceanexpert.org/expert/37719 -https://www.oceanexpert.org/event/1184 -https://www.oceanexpert.org/expert/36744 -https://www.oceanexpert.org/expert/46296 -https://www.oceanexpert.org/expert/25923 -https://www.oceanexpert.org/institution/16100 -https://www.oceanexpert.org/institution/18758 -https://www.oceanexpert.org/expert/33277 -https://www.oceanexpert.org/expert/28277 -https://www.oceanexpert.org/expert/25508 -https://www.oceanexpert.org/institution/15717 -https://www.oceanexpert.org/institution/17921 -https://www.oceanexpert.org/expert/19650 -https://www.oceanexpert.org/expert/33028 -https://www.oceanexpert.org/institution/9557 -https://www.oceanexpert.org/institution/20021 -https://www.oceanexpert.org/expert/44547 -https://www.oceanexpert.org/expert/26478 -https://www.oceanexpert.org/expert/27423 -https://www.oceanexpert.org/expert/16765 -https://www.oceanexpert.org/institution/20131 -https://www.oceanexpert.org/institution/19179 -https://www.oceanexpert.org/event/1371 -https://www.oceanexpert.org/expert/19265 -https://www.oceanexpert.org/expert/44840 -https://www.oceanexpert.org/expert/43137 -https://www.oceanexpert.org/expert/35926 -https://www.oceanexpert.org/expert/22465 -https://www.oceanexpert.org/institution/11919 -https://www.oceanexpert.org/expert/44832 -https://www.oceanexpert.org/expert/38175 -https://www.oceanexpert.org/expert/30574 -https://www.oceanexpert.org/expert/37347 -https://www.oceanexpert.org/expert/20459 -https://www.oceanexpert.org/institution/17411 -https://www.oceanexpert.org/expert/22672 -https://www.oceanexpert.org/expert/8065 -https://www.oceanexpert.org/event/1090 -https://www.oceanexpert.org/event/2584 -https://www.oceanexpert.org/expert/22460 -https://www.oceanexpert.org/institution/18545 -https://www.oceanexpert.org/expert/33115 -https://www.oceanexpert.org/institution/11661 -https://www.oceanexpert.org/expert/38809 -https://www.oceanexpert.org/expert/38204 -https://www.oceanexpert.org/event/1803 -https://www.oceanexpert.org/institution/20526 -https://www.oceanexpert.org/expert/42436 -https://www.oceanexpert.org/expert/37803 -https://www.oceanexpert.org/expert/48751 -https://www.oceanexpert.org/event/3120 -https://www.oceanexpert.org/expert/36229 -https://www.oceanexpert.org/expert/10086 -https://www.oceanexpert.org/institution/8319 -https://www.oceanexpert.org/expert/47306 -https://www.oceanexpert.org/expert/12378 -https://www.oceanexpert.org/expert/31389 -https://www.oceanexpert.org/institution/14331 -https://www.oceanexpert.org/expert/7038 -https://www.oceanexpert.org/expert/44940 -https://www.oceanexpert.org/institution/19313 -https://www.oceanexpert.org/expert/31109 -https://www.oceanexpert.org/institution/5202 -https://www.oceanexpert.org/event/1658 -https://www.oceanexpert.org/expert/35377 -https://www.oceanexpert.org/expert/30990 -https://www.oceanexpert.org/institution/6706 -https://www.oceanexpert.org/expert/29770 -https://www.oceanexpert.org/expert/37369 -https://www.oceanexpert.org/event/704 -https://www.oceanexpert.org/expert/18209 -https://www.oceanexpert.org/event/2753 -https://www.oceanexpert.org/expert/48667 -https://www.oceanexpert.org/expert/21124 -https://www.oceanexpert.org/expert/27082 -https://www.oceanexpert.org/event/407 -https://www.oceanexpert.org/expert/39372 -https://www.oceanexpert.org/expert/299 -https://www.oceanexpert.org/institution/19331 -https://www.oceanexpert.org/expert/35379 -https://www.oceanexpert.org/institution/20561 -https://www.oceanexpert.org/expert/35156 -https://www.oceanexpert.org/institution/7750 -https://www.oceanexpert.org/expert/34224 -https://www.oceanexpert.org/institution/17933 -https://www.oceanexpert.org/expert/36946 -https://www.oceanexpert.org/event/247 -https://www.oceanexpert.org/expert/19010 -https://www.oceanexpert.org/expert/28027 -https://www.oceanexpert.org/event/1325 -https://www.oceanexpert.org/institution/13316 -https://www.oceanexpert.org/expert/16441 -https://www.oceanexpert.org/institution/19047 -https://www.oceanexpert.org/expert/39803 -https://www.oceanexpert.org/expert/27023 -https://www.oceanexpert.org/expert/18874 -https://www.oceanexpert.org/institution/15145 -https://www.oceanexpert.org/expert/42436 -https://www.oceanexpert.org/expert/48448 -https://www.oceanexpert.org/institution/20839 -https://www.oceanexpert.org/institution/19393 -https://www.oceanexpert.org/institution/5532 -https://www.oceanexpert.org/institution/12965 -https://www.oceanexpert.org/expert/36988 -https://www.oceanexpert.org/institution/19098 -https://www.oceanexpert.org/expert/36520 -https://www.oceanexpert.org/expert/35189 -https://www.oceanexpert.org/institution/18875 -https://www.oceanexpert.org/expert/43112 -https://www.oceanexpert.org/institution/17617 -https://www.oceanexpert.org/expert/29917 -https://www.oceanexpert.org/expert/18429 -https://www.oceanexpert.org/expert/20796 -https://www.oceanexpert.org/expert/12168 -https://www.oceanexpert.org/expert/23698 -https://www.oceanexpert.org/expert/19255 -https://www.oceanexpert.org/expert/1866 -https://www.oceanexpert.org/expert/29201 -https://www.oceanexpert.org/expert/19878 -https://www.oceanexpert.org/institution/20658 -https://www.oceanexpert.org/expert/33268 -https://www.oceanexpert.org/expert/24142 -https://www.oceanexpert.org/institution/20615 -https://www.oceanexpert.org/expert/32816 -https://www.oceanexpert.org/expert/16639 -https://www.oceanexpert.org/expert/17275 -https://www.oceanexpert.org/expert/45464 -https://www.oceanexpert.org/institution/10716 -https://www.oceanexpert.org/expert/34929 -https://www.oceanexpert.org/expert/26970 -https://www.oceanexpert.org/expert/48056 -https://www.oceanexpert.org/expert/23665 -https://www.oceanexpert.org/institution/21232 -https://www.oceanexpert.org/expert/18462 -https://www.oceanexpert.org/event/2098 -https://www.oceanexpert.org/expert/36332 -https://www.oceanexpert.org/expert/16044 -https://www.oceanexpert.org/institution/11008 -https://www.oceanexpert.org/expert/45838 -https://www.oceanexpert.org/event/2210 -https://www.oceanexpert.org/expert/19699 -https://www.oceanexpert.org/institution/6874 -https://www.oceanexpert.org/expert/18719 -https://www.oceanexpert.org/expert/19849 -https://www.oceanexpert.org/expert/27393 -https://www.oceanexpert.org/expert/47130 -https://www.oceanexpert.org/institution/21291 -https://www.oceanexpert.org/expert/23856 -https://www.oceanexpert.org/expert/25971 -https://www.oceanexpert.org/event/1583 -https://www.oceanexpert.org/event/1198 -https://www.oceanexpert.org/expert/38073 -https://www.oceanexpert.org/institution/19976 -https://www.oceanexpert.org/expert/31906 -https://www.oceanexpert.org/institution/9045 -https://www.oceanexpert.org/expert/36597 -https://www.oceanexpert.org/expert/29563 -https://www.oceanexpert.org/expert/44962 -https://www.oceanexpert.org/institution/14924 -https://www.oceanexpert.org/event/2342 -https://www.oceanexpert.org/expert/25540 -https://www.oceanexpert.org/expert/34571 -https://www.oceanexpert.org/institution/19153 -https://www.oceanexpert.org/event/99 -https://www.oceanexpert.org/expert/44354 -https://www.oceanexpert.org/institution/15466 -https://www.oceanexpert.org/expert/34805 -https://www.oceanexpert.org/expert/28203 -https://www.oceanexpert.org/expert/21212 -https://www.oceanexpert.org/expert/42946 -https://www.oceanexpert.org/expert/24602 -https://www.oceanexpert.org/institution/18734 -https://www.oceanexpert.org/institution/13739 -https://www.oceanexpert.org/expert/47256 -https://www.oceanexpert.org/expert/44236 -https://www.oceanexpert.org/expert/32110 -https://www.oceanexpert.org/expert/45915 -https://www.oceanexpert.org/expert/7356 -https://www.oceanexpert.org/event/2913 -https://www.oceanexpert.org/expert/36458 -https://www.oceanexpert.org/expert/20489 -https://www.oceanexpert.org/institution/21733 -https://www.oceanexpert.org/expert/46539 -https://www.oceanexpert.org/expert/44567 -https://www.oceanexpert.org/institution/20868 -https://www.oceanexpert.org/expert/36942 -https://www.oceanexpert.org/expert/18944 -https://www.oceanexpert.org/expert/34383 -https://www.oceanexpert.org/event/2313 -https://www.oceanexpert.org/expert/39969 -https://www.oceanexpert.org/event/1153 -https://www.oceanexpert.org/institution/21630 -https://www.oceanexpert.org/expert/39079 -https://www.oceanexpert.org/expert/12093 -https://www.oceanexpert.org/institution/18500 -https://www.oceanexpert.org/institution/19442 -https://www.oceanexpert.org/expert/32061 -https://www.oceanexpert.org/institution/20720 -https://www.oceanexpert.org/expert/26163 -https://www.oceanexpert.org/expert/35058 -https://www.oceanexpert.org/expert/47109 -https://www.oceanexpert.org/institution/21298 -https://www.oceanexpert.org/institution/21410 -https://www.oceanexpert.org/expert/44082 -https://www.oceanexpert.org/expert/40656 -https://www.oceanexpert.org/expert/24103 -https://www.oceanexpert.org/expert/30408 -https://www.oceanexpert.org/expert/24704 -https://www.oceanexpert.org/event/1461 -https://www.oceanexpert.org/event/629 -https://www.oceanexpert.org/expert/36510 -https://www.oceanexpert.org/expert/12680 -https://www.oceanexpert.org/expert/18343 -https://www.oceanexpert.org/expert/20965 -https://www.oceanexpert.org/expert/35225 -https://www.oceanexpert.org/expert/35592 -https://www.oceanexpert.org/expert/46718 -https://www.oceanexpert.org/expert/25030 -https://www.oceanexpert.org/expert/26544 -https://www.oceanexpert.org/expert/1218 -https://www.oceanexpert.org/event/1259 -https://www.oceanexpert.org/expert/33452 -https://www.oceanexpert.org/expert/30369 -https://www.oceanexpert.org/institution/14961 -https://www.oceanexpert.org/institution/22001 -https://www.oceanexpert.org/expert/30122 -https://www.oceanexpert.org/institution/15588 -https://www.oceanexpert.org/event/1363 -https://www.oceanexpert.org/expert/21089 -https://www.oceanexpert.org/event/1151 -https://www.oceanexpert.org/expert/25668 -https://www.oceanexpert.org/institution/20065 -https://www.oceanexpert.org/institution/18289 -https://www.oceanexpert.org/expert/45634 -https://www.oceanexpert.org/expert/33007 -https://www.oceanexpert.org/institution/21992 -https://www.oceanexpert.org/expert/30932 -https://www.oceanexpert.org/expert/35317 -https://www.oceanexpert.org/institution/15956 -https://www.oceanexpert.org/expert/43822 -https://www.oceanexpert.org/event/16 -https://www.oceanexpert.org/institution/21775 -https://www.oceanexpert.org/expert/20495 -https://www.oceanexpert.org/event/2550 -https://www.oceanexpert.org/expert/45022 -https://www.oceanexpert.org/institution/12199 -https://www.oceanexpert.org/expert/37129 -https://www.oceanexpert.org/expert/47640 -https://www.oceanexpert.org/institution/8942 -https://www.oceanexpert.org/expert/37023 -https://www.oceanexpert.org/institution/16197 -https://www.oceanexpert.org/institution/18243 -https://www.oceanexpert.org/expert/16480 -https://www.oceanexpert.org/expert/15546 -https://www.oceanexpert.org/expert/37267 -https://www.oceanexpert.org/expert/40329 -https://www.oceanexpert.org/event/662 -https://www.oceanexpert.org/expert/11515 -https://www.oceanexpert.org/event/197 -https://www.oceanexpert.org/institution/16260 -https://www.oceanexpert.org/expert/46660 -https://www.oceanexpert.org/expert/3421 -https://www.oceanexpert.org/expert/39235 -https://www.oceanexpert.org/expert/36631 -https://www.oceanexpert.org/expert/23503 -https://www.oceanexpert.org/expert/14609 -https://www.oceanexpert.org/institution/14188 -https://www.oceanexpert.org/event/2731 -https://www.oceanexpert.org/expert/27543 -https://www.oceanexpert.org/expert/26640 -https://www.oceanexpert.org/expert/30762 -https://www.oceanexpert.org/expert/34108 -https://www.oceanexpert.org/expert/13784 -https://www.oceanexpert.org/expert/47844 -https://www.oceanexpert.org/institution/12318 -https://www.oceanexpert.org/event/2277 -https://www.oceanexpert.org/expert/20039 -https://www.oceanexpert.org/expert/42453 -https://www.oceanexpert.org/expert/27425 -https://www.oceanexpert.org/expert/24054 -https://www.oceanexpert.org/expert/29176 -https://www.oceanexpert.org/institution/21707 -https://www.oceanexpert.org/event/676 -https://www.oceanexpert.org/expert/47959 -https://www.oceanexpert.org/institution/16799 -https://www.oceanexpert.org/institution/20176 -https://www.oceanexpert.org/institution/17733 -https://www.oceanexpert.org/expert/45966 -https://www.oceanexpert.org/expert/40070 -https://www.oceanexpert.org/expert/4342 -https://www.oceanexpert.org/expert/12605 -https://www.oceanexpert.org/event/1210 -https://www.oceanexpert.org/expert/48589 -https://www.oceanexpert.org/institution/19576 -https://www.oceanexpert.org/expert/34853 -https://www.oceanexpert.org/expert/11138 -https://www.oceanexpert.org/institution/14016 -https://www.oceanexpert.org/expert/48013 -https://www.oceanexpert.org/institution/7301 -https://www.oceanexpert.org/expert/45766 -https://www.oceanexpert.org/institution/18534 -https://www.oceanexpert.org/expert/35280 -https://www.oceanexpert.org/event/3285 -https://www.oceanexpert.org/institution/12645 -https://www.oceanexpert.org/expert/38422 -https://www.oceanexpert.org/expert/23239 -https://www.oceanexpert.org/expert/46279 -https://www.oceanexpert.org/expert/18472 -https://www.oceanexpert.org/event/125 -https://www.oceanexpert.org/institution/15851 -https://www.oceanexpert.org/expert/42586 -https://www.oceanexpert.org/expert/42680 -https://www.oceanexpert.org/expert/26401 -https://www.oceanexpert.org/institution/22049 -https://www.oceanexpert.org/expert/18032 -https://www.oceanexpert.org/expert/47602 -https://www.oceanexpert.org/expert/48203 -https://www.oceanexpert.org/expert/29357 -https://www.oceanexpert.org/institution/21038 -https://www.oceanexpert.org/expert/42618 -https://www.oceanexpert.org/event/3119 -https://www.oceanexpert.org/expert/44926 -https://www.oceanexpert.org/institution/16355 -https://www.oceanexpert.org/expert/34763 -https://www.oceanexpert.org/institution/17968 -https://www.oceanexpert.org/expert/15618 -https://www.oceanexpert.org/expert/43730 -https://www.oceanexpert.org/expert/16171 -https://www.oceanexpert.org/event/2363 -https://www.oceanexpert.org/expert/19911 -https://www.oceanexpert.org/expert/22337 -https://www.oceanexpert.org/expert/36861 -https://www.oceanexpert.org/expert/38914 -https://www.oceanexpert.org/expert/15176 -https://www.oceanexpert.org/expert/31048 -https://www.oceanexpert.org/institution/17776 -https://www.oceanexpert.org/expert/37996 -https://www.oceanexpert.org/expert/23504 -https://www.oceanexpert.org/institution/21634 -https://www.oceanexpert.org/expert/21897 -https://www.oceanexpert.org/expert/20926 -https://www.oceanexpert.org/expert/17929 -https://www.oceanexpert.org/expert/25481 -https://www.oceanexpert.org/expert/28369 -https://www.oceanexpert.org/expert/43359 -https://www.oceanexpert.org/expert/26727 -https://www.oceanexpert.org/institution/17764 -https://www.oceanexpert.org/institution/18617 -https://www.oceanexpert.org/institution/21701 -https://www.oceanexpert.org/institution/21025 -https://www.oceanexpert.org/institution/17580 -https://www.oceanexpert.org/event/2327 -https://www.oceanexpert.org/expert/31572 -https://www.oceanexpert.org/expert/35204 -https://www.oceanexpert.org/expert/44454 -https://www.oceanexpert.org/expert/37622 -https://www.oceanexpert.org/expert/35729 -https://www.oceanexpert.org/expert/29131 -https://www.oceanexpert.org/expert/17175 -https://www.oceanexpert.org/expert/44290 -https://www.oceanexpert.org/expert/18612 -https://www.oceanexpert.org/event/2800 -https://www.oceanexpert.org/expert/35749 -https://www.oceanexpert.org/expert/22024 -https://www.oceanexpert.org/expert/34475 -https://www.oceanexpert.org/institution/14437 -https://www.oceanexpert.org/expert/25648 -https://www.oceanexpert.org/institution/9306 -https://www.oceanexpert.org/expert/4714 -https://www.oceanexpert.org/event/2760 -https://www.oceanexpert.org/expert/1294 -https://www.oceanexpert.org/expert/33314 -https://www.oceanexpert.org/expert/37683 -https://www.oceanexpert.org/institution/19273 -https://www.oceanexpert.org/institution/12865 -https://www.oceanexpert.org/expert/37345 -https://www.oceanexpert.org/institution/20086 -https://www.oceanexpert.org/institution/10052 -https://www.oceanexpert.org/institution/7778 -https://www.oceanexpert.org/expert/48609 -https://www.oceanexpert.org/institution/8657 -https://www.oceanexpert.org/expert/35525 -https://www.oceanexpert.org/expert/23249 -https://www.oceanexpert.org/expert/24436 -https://www.oceanexpert.org/expert/35266 -https://www.oceanexpert.org/event/2222 -https://www.oceanexpert.org/institution/20844 -https://www.oceanexpert.org/expert/40072 -https://www.oceanexpert.org/expert/9247 -https://www.oceanexpert.org/institution/10350 -https://www.oceanexpert.org/expert/35974 -https://www.oceanexpert.org/expert/23800 -https://www.oceanexpert.org/expert/24123 -https://www.oceanexpert.org/institution/15409 -https://www.oceanexpert.org/event/3018 -https://www.oceanexpert.org/expert/38608 -https://www.oceanexpert.org/expert/26903 -https://www.oceanexpert.org/event/546 -https://www.oceanexpert.org/expert/9634 -https://www.oceanexpert.org/expert/44112 -https://www.oceanexpert.org/expert/20232 -https://www.oceanexpert.org/institution/19056 -https://www.oceanexpert.org/expert/21503 -https://www.oceanexpert.org/institution/17483 -https://www.oceanexpert.org/institution/11680 -https://www.oceanexpert.org/event/453 -https://www.oceanexpert.org/expert/19500 -https://www.oceanexpert.org/expert/43629 -https://www.oceanexpert.org/expert/44537 -https://www.oceanexpert.org/expert/23816 -https://www.oceanexpert.org/institution/13022 -https://www.oceanexpert.org/expert/22867 -https://www.oceanexpert.org/institution/19228 -https://www.oceanexpert.org/expert/23322 -https://www.oceanexpert.org/expert/3508 -https://www.oceanexpert.org/expert/19608 -https://www.oceanexpert.org/institution/11758 -https://www.oceanexpert.org/expert/19995 -https://www.oceanexpert.org/expert/22466 -https://www.oceanexpert.org/expert/30647 -https://www.oceanexpert.org/expert/37141 -https://www.oceanexpert.org/institution/20762 -https://www.oceanexpert.org/institution/18191 -https://www.oceanexpert.org/expert/23444 -https://www.oceanexpert.org/expert/15460 -https://www.oceanexpert.org/expert/18982 -https://www.oceanexpert.org/expert/37415 -https://www.oceanexpert.org/expert/37417 -https://www.oceanexpert.org/expert/14201 -https://www.oceanexpert.org/event/876 -https://www.oceanexpert.org/expert/20088 -https://www.oceanexpert.org/expert/17969 -https://www.oceanexpert.org/institution/19451 -https://www.oceanexpert.org/expert/21033 -https://www.oceanexpert.org/institution/16482 -https://www.oceanexpert.org/expert/26410 -https://www.oceanexpert.org/expert/35494 -https://www.oceanexpert.org/expert/21490 -https://www.oceanexpert.org/institution/17499 -https://www.oceanexpert.org/expert/42735 -https://www.oceanexpert.org/institution/15811 -https://www.oceanexpert.org/institution/17758 -https://www.oceanexpert.org/expert/33689 -https://www.oceanexpert.org/expert/26405 -https://www.oceanexpert.org/expert/44367 -https://www.oceanexpert.org/institution/21622 -https://www.oceanexpert.org/expert/36202 -https://www.oceanexpert.org/expert/43885 -https://www.oceanexpert.org/expert/23519 -https://www.oceanexpert.org/expert/37798 -https://www.oceanexpert.org/expert/48686 -https://www.oceanexpert.org/expert/26852 -https://www.oceanexpert.org/expert/24492 -https://www.oceanexpert.org/expert/27126 -https://www.oceanexpert.org/expert/45787 -https://www.oceanexpert.org/expert/45597 -https://www.oceanexpert.org/expert/46753 -https://www.oceanexpert.org/expert/38433 -https://www.oceanexpert.org/event/2966 -https://www.oceanexpert.org/institution/18817 -https://www.oceanexpert.org/institution/16889 -https://www.oceanexpert.org/expert/42884 -https://www.oceanexpert.org/institution/20836 -https://www.oceanexpert.org/expert/38477 -https://www.oceanexpert.org/expert/42809 -https://www.oceanexpert.org/expert/23454 -https://www.oceanexpert.org/expert/38660 -https://www.oceanexpert.org/event/827 -https://www.oceanexpert.org/expert/46748 -https://www.oceanexpert.org/institution/22084 -https://www.oceanexpert.org/expert/20623 -https://www.oceanexpert.org/institution/14181 -https://www.oceanexpert.org/event/2347 -https://www.oceanexpert.org/expert/23194 -https://www.oceanexpert.org/expert/17945 -https://www.oceanexpert.org/expert/48149 -https://www.oceanexpert.org/expert/6968 -https://www.oceanexpert.org/expert/34857 -https://www.oceanexpert.org/expert/25040 -https://www.oceanexpert.org/event/1274 -https://www.oceanexpert.org/institution/15584 -https://www.oceanexpert.org/institution/19437 -https://www.oceanexpert.org/expert/44639 -https://www.oceanexpert.org/event/2183 -https://www.oceanexpert.org/institution/18055 -https://www.oceanexpert.org/expert/30090 -https://www.oceanexpert.org/expert/24371 -https://www.oceanexpert.org/expert/26206 -https://www.oceanexpert.org/expert/27126 -https://www.oceanexpert.org/event/1679 -https://www.oceanexpert.org/expert/47659 -https://www.oceanexpert.org/expert/47215 -https://www.oceanexpert.org/expert/18147 -https://www.oceanexpert.org/institution/20040 -https://www.oceanexpert.org/expert/42642 -https://www.oceanexpert.org/expert/43021 -https://www.oceanexpert.org/expert/39154 -https://www.oceanexpert.org/expert/48106 -https://www.oceanexpert.org/expert/47571 -https://www.oceanexpert.org/expert/36738 -https://www.oceanexpert.org/expert/47706 -https://www.oceanexpert.org/institution/20434 -https://www.oceanexpert.org/expert/43286 -https://www.oceanexpert.org/expert/47043 -https://www.oceanexpert.org/expert/15468 -https://www.oceanexpert.org/institution/13086 -https://www.oceanexpert.org/expert/47861 -https://www.oceanexpert.org/institution/17780 -https://www.oceanexpert.org/expert/39004 -https://www.oceanexpert.org/expert/26301 -https://www.oceanexpert.org/expert/33069 -https://www.oceanexpert.org/expert/33783 -https://www.oceanexpert.org/expert/44725 -https://www.oceanexpert.org/event/2693 -https://www.oceanexpert.org/expert/40130 -https://www.oceanexpert.org/institution/14908 -https://www.oceanexpert.org/expert/24246 -https://www.oceanexpert.org/expert/25882 -https://www.oceanexpert.org/institution/20748 -https://www.oceanexpert.org/expert/33026 -https://www.oceanexpert.org/institution/18212 -https://www.oceanexpert.org/expert/18256 -https://www.oceanexpert.org/institution/17981 -https://www.oceanexpert.org/expert/37518 -https://www.oceanexpert.org/institution/15680 -https://www.oceanexpert.org/event/2174 -https://www.oceanexpert.org/expert/47355 -https://www.oceanexpert.org/event/3126 -https://www.oceanexpert.org/expert/44453 -https://www.oceanexpert.org/expert/29935 -https://www.oceanexpert.org/expert/20482 -https://www.oceanexpert.org/expert/18371 -https://www.oceanexpert.org/expert/29679 -https://www.oceanexpert.org/expert/27045 -https://www.oceanexpert.org/expert/33319 -https://www.oceanexpert.org/expert/33030 -https://www.oceanexpert.org/expert/29493 -https://www.oceanexpert.org/institution/10160 -https://www.oceanexpert.org/expert/28046 -https://www.oceanexpert.org/expert/19998 -https://www.oceanexpert.org/expert/36091 -https://www.oceanexpert.org/institution/18532 -https://www.oceanexpert.org/expert/47015 -https://www.oceanexpert.org/expert/21522 -https://www.oceanexpert.org/institution/5105 -https://www.oceanexpert.org/institution/8496 -https://www.oceanexpert.org/institution/13061 -https://www.oceanexpert.org/expert/48603 -https://www.oceanexpert.org/expert/30173 -https://www.oceanexpert.org/expert/24931 -https://www.oceanexpert.org/institution/5107 -https://www.oceanexpert.org/expert/36718 -https://www.oceanexpert.org/expert/33808 -https://www.oceanexpert.org/expert/4619 -https://www.oceanexpert.org/expert/20204 -https://www.oceanexpert.org/expert/34078 -https://www.oceanexpert.org/expert/25078 -https://www.oceanexpert.org/expert/43428 -https://www.oceanexpert.org/institution/12660 -https://www.oceanexpert.org/expert/3827 -https://www.oceanexpert.org/expert/21549 -https://www.oceanexpert.org/institution/17429 -https://www.oceanexpert.org/institution/18637 -https://www.oceanexpert.org/expert/25099 -https://www.oceanexpert.org/expert/19160 -https://www.oceanexpert.org/expert/36720 -https://www.oceanexpert.org/expert/33299 -https://www.oceanexpert.org/institution/14869 -https://www.oceanexpert.org/institution/11547 -https://www.oceanexpert.org/expert/14059 -https://www.oceanexpert.org/institution/18965 -https://www.oceanexpert.org/expert/47846 -https://www.oceanexpert.org/expert/42536 -https://www.oceanexpert.org/expert/36536 -https://www.oceanexpert.org/expert/29133 -https://www.oceanexpert.org/expert/26390 -https://www.oceanexpert.org/expert/19933 -https://www.oceanexpert.org/expert/20248 -https://www.oceanexpert.org/expert/46638 -https://www.oceanexpert.org/expert/11704 -https://www.oceanexpert.org/expert/48463 -https://www.oceanexpert.org/expert/25863 -https://www.oceanexpert.org/expert/46461 -https://www.oceanexpert.org/expert/361 -https://www.oceanexpert.org/expert/47102 -https://www.oceanexpert.org/expert/13106 -https://www.oceanexpert.org/expert/24298 -https://www.oceanexpert.org/expert/17374 -https://www.oceanexpert.org/event/1390 -https://www.oceanexpert.org/expert/24876 -https://www.oceanexpert.org/expert/29384 -https://www.oceanexpert.org/expert/25355 -https://www.oceanexpert.org/expert/20525 -https://www.oceanexpert.org/expert/22542 -https://www.oceanexpert.org/expert/23041 -https://www.oceanexpert.org/expert/12269 -https://www.oceanexpert.org/expert/22622 -https://www.oceanexpert.org/expert/28887 -https://www.oceanexpert.org/institution/18841 -https://www.oceanexpert.org/institution/19675 -https://www.oceanexpert.org/expert/6936 -https://www.oceanexpert.org/expert/28505 -https://www.oceanexpert.org/expert/18624 -https://www.oceanexpert.org/expert/18539 -https://www.oceanexpert.org/expert/52 -https://www.oceanexpert.org/expert/35299 -https://www.oceanexpert.org/expert/47490 -https://www.oceanexpert.org/expert/25962 -https://www.oceanexpert.org/institution/14133 -https://www.oceanexpert.org/expert/43919 -https://www.oceanexpert.org/expert/39344 -https://www.oceanexpert.org/expert/37024 -https://www.oceanexpert.org/expert/21372 -https://www.oceanexpert.org/event/2525 -https://www.oceanexpert.org/expert/32125 -https://www.oceanexpert.org/expert/36042 -https://www.oceanexpert.org/expert/45810 -https://www.oceanexpert.org/expert/48660 -https://www.oceanexpert.org/expert/16924 -https://www.oceanexpert.org/institution/20151 -https://www.oceanexpert.org/expert/43608 -https://www.oceanexpert.org/institution/11235 -https://www.oceanexpert.org/institution/10209 -https://www.oceanexpert.org/expert/20837 -https://www.oceanexpert.org/event/833 -https://www.oceanexpert.org/expert/19343 -https://www.oceanexpert.org/expert/19659 -https://www.oceanexpert.org/institution/20986 -https://www.oceanexpert.org/expert/12791 -https://www.oceanexpert.org/expert/18267 -https://www.oceanexpert.org/event/1236 -https://www.oceanexpert.org/expert/28082 -https://www.oceanexpert.org/institution/21499 -https://www.oceanexpert.org/expert/19360 -https://www.oceanexpert.org/expert/26439 -https://www.oceanexpert.org/expert/45704 -https://www.oceanexpert.org/event/2563 -https://www.oceanexpert.org/expert/38130 -https://www.oceanexpert.org/expert/22499 -https://www.oceanexpert.org/institution/8279 -https://www.oceanexpert.org/expert/12264 -https://www.oceanexpert.org/expert/19256 -https://www.oceanexpert.org/institution/18348 -https://www.oceanexpert.org/event/1123 -https://www.oceanexpert.org/event/1207 -https://www.oceanexpert.org/expert/7024 -https://www.oceanexpert.org/expert/35094 -https://www.oceanexpert.org/expert/19469 -https://www.oceanexpert.org/expert/45953 -https://www.oceanexpert.org/expert/21933 -https://www.oceanexpert.org/institution/21640 -https://www.oceanexpert.org/institution/19168 -https://www.oceanexpert.org/institution/13698 -https://www.oceanexpert.org/expert/23920 -https://www.oceanexpert.org/expert/44955 -https://www.oceanexpert.org/event/2371 -https://www.oceanexpert.org/expert/34071 -https://www.oceanexpert.org/expert/16479 -https://www.oceanexpert.org/institution/17721 -https://www.oceanexpert.org/expert/25952 -https://www.oceanexpert.org/expert/35294 -https://www.oceanexpert.org/expert/13804 -https://www.oceanexpert.org/expert/25434 -https://www.oceanexpert.org/institution/13823 -https://www.oceanexpert.org/expert/23024 -https://www.oceanexpert.org/institution/18682 -https://www.oceanexpert.org/expert/16915 -https://www.oceanexpert.org/expert/8677 -https://www.oceanexpert.org/institution/10994 -https://www.oceanexpert.org/institution/21252 -https://www.oceanexpert.org/expert/16123 -https://www.oceanexpert.org/event/87 -https://www.oceanexpert.org/expert/44180 -https://www.oceanexpert.org/expert/29136 -https://www.oceanexpert.org/institution/11895 -https://www.oceanexpert.org/expert/17149 -https://www.oceanexpert.org/expert/13104 -https://www.oceanexpert.org/institution/9635 -https://www.oceanexpert.org/institution/10087 -https://www.oceanexpert.org/institution/10180 -https://www.oceanexpert.org/expert/36810 -https://www.oceanexpert.org/institution/19300 -https://www.oceanexpert.org/expert/34779 -https://www.oceanexpert.org/expert/17164 -https://www.oceanexpert.org/expert/17266 -https://www.oceanexpert.org/expert/32440 -https://www.oceanexpert.org/institution/15601 -https://www.oceanexpert.org/event/3124 -https://www.oceanexpert.org/institution/18547 -https://www.oceanexpert.org/expert/44065 -https://www.oceanexpert.org/event/1520 -https://www.oceanexpert.org/event/2507 -https://www.oceanexpert.org/expert/21756 -https://www.oceanexpert.org/expert/24909 -https://www.oceanexpert.org/expert/47337 -https://www.oceanexpert.org/expert/19261 -https://www.oceanexpert.org/institution/20073 -https://www.oceanexpert.org/expert/17906 -https://www.oceanexpert.org/expert/23150 -https://www.oceanexpert.org/institution/21253 -https://www.oceanexpert.org/expert/16926 -https://www.oceanexpert.org/institution/11217 -https://www.oceanexpert.org/expert/21567 -https://www.oceanexpert.org/expert/15919 -https://www.oceanexpert.org/institution/18406 -https://www.oceanexpert.org/expert/44813 -https://www.oceanexpert.org/event/2167 -https://www.oceanexpert.org/expert/48751 -https://www.oceanexpert.org/expert/3543 -https://www.oceanexpert.org/institution/12468 -https://www.oceanexpert.org/event/975 -https://www.oceanexpert.org/expert/26099 -https://www.oceanexpert.org/expert/39173 -https://www.oceanexpert.org/expert/26636 -https://www.oceanexpert.org/expert/1259 -https://www.oceanexpert.org/expert/42530 -https://www.oceanexpert.org/expert/43783 -https://www.oceanexpert.org/institution/14370 -https://www.oceanexpert.org/institution/18186 -https://www.oceanexpert.org/expert/48066 -https://www.oceanexpert.org/expert/41412 -https://www.oceanexpert.org/institution/15765 -https://www.oceanexpert.org/expert/36423 -https://www.oceanexpert.org/expert/33468 -https://www.oceanexpert.org/event/3075 -https://www.oceanexpert.org/institution/17872 -https://www.oceanexpert.org/expert/34538 -https://www.oceanexpert.org/institution/21140 -https://www.oceanexpert.org/expert/19758 -https://www.oceanexpert.org/expert/20447 -https://www.oceanexpert.org/expert/35247 -https://www.oceanexpert.org/institution/16828 -https://www.oceanexpert.org/expert/22867 -https://www.oceanexpert.org/expert/29918 -https://www.oceanexpert.org/expert/7067 -https://www.oceanexpert.org/expert/4136 -https://www.oceanexpert.org/expert/18467 -https://www.oceanexpert.org/expert/27276 -https://www.oceanexpert.org/institution/16821 -https://www.oceanexpert.org/institution/19647 -https://www.oceanexpert.org/expert/48901 -https://www.oceanexpert.org/institution/12748 -https://www.oceanexpert.org/expert/46278 -https://www.oceanexpert.org/institution/15296 -https://www.oceanexpert.org/institution/10818 -https://www.oceanexpert.org/expert/35042 -https://www.oceanexpert.org/expert/29550 -https://www.oceanexpert.org/institution/16971 -https://www.oceanexpert.org/expert/19989 -https://www.oceanexpert.org/institution/18781 -https://www.oceanexpert.org/expert/29099 -https://www.oceanexpert.org/event/2030 -https://www.oceanexpert.org/expert/40874 -https://www.oceanexpert.org/event/687 -https://www.oceanexpert.org/expert/41611 -https://www.oceanexpert.org/expert/20786 -https://www.oceanexpert.org/expert/44342 -https://www.oceanexpert.org/expert/47933 -https://www.oceanexpert.org/event/1384 -https://www.oceanexpert.org/expert/3080 -https://www.oceanexpert.org/event/3121 -https://www.oceanexpert.org/expert/20060 -https://www.oceanexpert.org/expert/33628 -https://www.oceanexpert.org/expert/27843 -https://www.oceanexpert.org/expert/34791 -https://www.oceanexpert.org/event/791 -https://www.oceanexpert.org/expert/36866 -https://www.oceanexpert.org/institution/21437 -https://www.oceanexpert.org/expert/43836 -https://www.oceanexpert.org/expert/19773 -https://www.oceanexpert.org/expert/29717 -https://www.oceanexpert.org/event/1153 -https://www.oceanexpert.org/event/2070 -https://www.oceanexpert.org/event/2758 -https://www.oceanexpert.org/institution/12611 -https://www.oceanexpert.org/institution/10576 -https://www.oceanexpert.org/expert/45549 -https://www.oceanexpert.org/expert/26639 -https://www.oceanexpert.org/expert/27802 -https://www.oceanexpert.org/expert/32252 -https://www.oceanexpert.org/expert/28154 -https://www.oceanexpert.org/expert/42563 -https://www.oceanexpert.org/expert/43266 -https://www.oceanexpert.org/expert/37480 -https://www.oceanexpert.org/expert/11363 -https://www.oceanexpert.org/expert/2321 -https://www.oceanexpert.org/expert/32222 -https://www.oceanexpert.org/expert/28284 -https://www.oceanexpert.org/expert/34797 -https://www.oceanexpert.org/institution/10751 -https://www.oceanexpert.org/expert/25830 -https://www.oceanexpert.org/expert/33296 -https://www.oceanexpert.org/institution/9816 -https://www.oceanexpert.org/institution/13137 -https://www.oceanexpert.org/expert/14783 -https://www.oceanexpert.org/institution/19040 -https://www.oceanexpert.org/expert/45139 -https://www.oceanexpert.org/expert/24626 -https://www.oceanexpert.org/expert/37794 -https://www.oceanexpert.org/expert/37332 -https://www.oceanexpert.org/expert/25395 -https://www.oceanexpert.org/institution/19717 -https://www.oceanexpert.org/event/2796 -https://www.oceanexpert.org/expert/22943 -https://www.oceanexpert.org/expert/26389 -https://www.oceanexpert.org/event/2626 -https://www.oceanexpert.org/expert/29914 -https://www.oceanexpert.org/expert/36832 -https://www.oceanexpert.org/expert/36825 -https://www.oceanexpert.org/event/897 -https://www.oceanexpert.org/expert/8445 -https://www.oceanexpert.org/expert/31239 -https://www.oceanexpert.org/expert/19720 -https://www.oceanexpert.org/expert/36534 -https://www.oceanexpert.org/expert/6179 -https://www.oceanexpert.org/expert/24040 -https://www.oceanexpert.org/expert/16053 -https://www.oceanexpert.org/institution/10259 -https://www.oceanexpert.org/expert/44768 -https://www.oceanexpert.org/expert/31328 -https://www.oceanexpert.org/expert/31339 -https://www.oceanexpert.org/institution/21441 -https://www.oceanexpert.org/expert/36690 -https://www.oceanexpert.org/institution/11804 -https://www.oceanexpert.org/institution/75 -https://www.oceanexpert.org/expert/20190 -https://www.oceanexpert.org/expert/28052 -https://www.oceanexpert.org/expert/18377 -https://www.oceanexpert.org/expert/11557 -https://www.oceanexpert.org/institution/21278 -https://www.oceanexpert.org/expert/12748 -https://www.oceanexpert.org/institution/17311 -https://www.oceanexpert.org/expert/21118 -https://www.oceanexpert.org/expert/46052 -https://www.oceanexpert.org/expert/23954 -https://www.oceanexpert.org/expert/15506 -https://www.oceanexpert.org/institution/13193 -https://www.oceanexpert.org/expert/42902 -https://www.oceanexpert.org/institution/10140 -https://www.oceanexpert.org/expert/27625 -https://www.oceanexpert.org/expert/25505 -https://www.oceanexpert.org/event/2764 -https://www.oceanexpert.org/expert/34984 -https://www.oceanexpert.org/expert/36461 -https://www.oceanexpert.org/institution/20749 -https://www.oceanexpert.org/expert/25722 -https://www.oceanexpert.org/institution/18587 -https://www.oceanexpert.org/event/549 -https://www.oceanexpert.org/expert/15390 -https://www.oceanexpert.org/expert/30302 -https://www.oceanexpert.org/expert/42657 -https://www.oceanexpert.org/event/227 -https://www.oceanexpert.org/institution/21688 -https://www.oceanexpert.org/event/2618 -https://www.oceanexpert.org/event/860 -https://www.oceanexpert.org/institution/19505 -https://www.oceanexpert.org/institution/5839 -https://www.oceanexpert.org/expert/28502 -https://www.oceanexpert.org/institution/5811 -https://www.oceanexpert.org/institution/19643 -https://www.oceanexpert.org/institution/21467 -https://www.oceanexpert.org/expert/27508 -https://www.oceanexpert.org/expert/31305 -https://www.oceanexpert.org/expert/45784 -https://www.oceanexpert.org/institution/8770 -https://www.oceanexpert.org/expert/26142 -https://www.oceanexpert.org/expert/11284 -https://www.oceanexpert.org/expert/16642 -https://www.oceanexpert.org/expert/37422 -https://www.oceanexpert.org/event/2058 -https://www.oceanexpert.org/institution/19481 -https://www.oceanexpert.org/expert/34247 -https://www.oceanexpert.org/expert/36397 -https://www.oceanexpert.org/event/2447 -https://www.oceanexpert.org/institution/11491 -https://www.oceanexpert.org/expert/38532 -https://www.oceanexpert.org/expert/23976 -https://www.oceanexpert.org/expert/47610 -https://www.oceanexpert.org/institution/6641 -https://www.oceanexpert.org/expert/19923 -https://www.oceanexpert.org/expert/13900 -https://www.oceanexpert.org/expert/20791 -https://www.oceanexpert.org/expert/26643 -https://www.oceanexpert.org/expert/21986 -https://www.oceanexpert.org/institution/17273 -https://www.oceanexpert.org/expert/26421 -https://www.oceanexpert.org/institution/15734 -https://www.oceanexpert.org/expert/47156 -https://www.oceanexpert.org/institution/8603 -https://www.oceanexpert.org/expert/7155 -https://www.oceanexpert.org/expert/14192 -https://www.oceanexpert.org/expert/30918 -https://www.oceanexpert.org/expert/12162 -https://www.oceanexpert.org/expert/44075 -https://www.oceanexpert.org/expert/34654 -https://www.oceanexpert.org/event/50 -https://www.oceanexpert.org/event/1261 -https://www.oceanexpert.org/event/2732 -https://www.oceanexpert.org/institution/19414 -https://www.oceanexpert.org/expert/749 -https://www.oceanexpert.org/expert/11335 -https://www.oceanexpert.org/expert/31750 -https://www.oceanexpert.org/expert/48541 -https://www.oceanexpert.org/expert/24268 -https://www.oceanexpert.org/expert/26179 -https://www.oceanexpert.org/institution/15153 -https://www.oceanexpert.org/expert/20495 -https://www.oceanexpert.org/expert/14679 -https://www.oceanexpert.org/expert/25647 -https://www.oceanexpert.org/expert/27348 -https://www.oceanexpert.org/event/184 -https://www.oceanexpert.org/expert/28222 -https://www.oceanexpert.org/expert/21013 -https://www.oceanexpert.org/expert/29778 -https://www.oceanexpert.org/institution/19030 -https://www.oceanexpert.org/expert/22154 -https://www.oceanexpert.org/expert/18623 -https://www.oceanexpert.org/institution/14730 -https://www.oceanexpert.org/expert/22377 -https://www.oceanexpert.org/institution/19404 -https://www.oceanexpert.org/expert/24276 -https://www.oceanexpert.org/expert/7376 -https://www.oceanexpert.org/expert/21401 -https://www.oceanexpert.org/institution/13881 -https://www.oceanexpert.org/expert/36860 -https://www.oceanexpert.org/expert/27368 -https://www.oceanexpert.org/expert/27023 -https://www.oceanexpert.org/expert/24911 -https://www.oceanexpert.org/institution/18009 -https://www.oceanexpert.org/expert/2487 -https://www.oceanexpert.org/expert/7041 -https://www.oceanexpert.org/institution/17999 -https://www.oceanexpert.org/expert/23568 -https://www.oceanexpert.org/institution/7120 -https://www.oceanexpert.org/expert/31729 -https://www.oceanexpert.org/expert/17363 -https://www.oceanexpert.org/event/300 -https://www.oceanexpert.org/expert/26215 -https://www.oceanexpert.org/institution/19765 -https://www.oceanexpert.org/expert/22673 -https://www.oceanexpert.org/expert/7176 -https://www.oceanexpert.org/institution/15152 -https://www.oceanexpert.org/institution/20222 -https://www.oceanexpert.org/expert/29318 -https://www.oceanexpert.org/expert/36225 -https://www.oceanexpert.org/expert/44218 -https://www.oceanexpert.org/expert/40100 -https://www.oceanexpert.org/expert/20418 -https://www.oceanexpert.org/expert/35659 -https://www.oceanexpert.org/expert/1538 -https://www.oceanexpert.org/expert/19512 -https://www.oceanexpert.org/institution/13851 -https://www.oceanexpert.org/event/507 -https://www.oceanexpert.org/expert/42926 -https://www.oceanexpert.org/event/2998 -https://www.oceanexpert.org/expert/42703 -https://www.oceanexpert.org/expert/47168 -https://www.oceanexpert.org/expert/36615 -https://www.oceanexpert.org/expert/23242 -https://www.oceanexpert.org/expert/30740 -https://www.oceanexpert.org/expert/25532 -https://www.oceanexpert.org/expert/19565 -https://www.oceanexpert.org/institution/13102 -https://www.oceanexpert.org/expert/31209 -https://www.oceanexpert.org/institution/19742 -https://www.oceanexpert.org/expert/22285 -https://www.oceanexpert.org/expert/23020 -https://www.oceanexpert.org/expert/43935 -https://www.oceanexpert.org/institution/18638 -https://www.oceanexpert.org/institution/18008 -https://www.oceanexpert.org/institution/12423 -https://www.oceanexpert.org/expert/18517 -https://www.oceanexpert.org/expert/23005 -https://www.oceanexpert.org/expert/35058 -https://www.oceanexpert.org/expert/37639 -https://www.oceanexpert.org/institution/14086 -https://www.oceanexpert.org/expert/22740 -https://www.oceanexpert.org/institution/12043 -https://www.oceanexpert.org/institution/20986 -https://www.oceanexpert.org/expert/2929 -https://www.oceanexpert.org/expert/42937 -https://www.oceanexpert.org/institution/19902 -https://www.oceanexpert.org/expert/36681 -https://www.oceanexpert.org/expert/44716 -https://www.oceanexpert.org/institution/9447 -https://www.oceanexpert.org/expert/16025 -https://www.oceanexpert.org/expert/30747 -https://www.oceanexpert.org/institution/18347 -https://www.oceanexpert.org/expert/32664 -https://www.oceanexpert.org/expert/46180 -https://www.oceanexpert.org/expert/40981 -https://www.oceanexpert.org/institution/16746 -https://www.oceanexpert.org/expert/20146 -https://www.oceanexpert.org/expert/32640 -https://www.oceanexpert.org/expert/14408 -https://www.oceanexpert.org/institution/15631 -https://www.oceanexpert.org/institution/21033 -https://www.oceanexpert.org/expert/42749 -https://www.oceanexpert.org/expert/34749 -https://www.oceanexpert.org/event/1807 -https://www.oceanexpert.org/expert/18535 -https://www.oceanexpert.org/expert/24412 -https://www.oceanexpert.org/event/516 -https://www.oceanexpert.org/expert/8877 -https://www.oceanexpert.org/event/2364 -https://www.oceanexpert.org/expert/31055 -https://www.oceanexpert.org/expert/16612 -https://www.oceanexpert.org/expert/7489 -https://www.oceanexpert.org/expert/44057 -https://www.oceanexpert.org/expert/21099 -https://www.oceanexpert.org/expert/35265 -https://www.oceanexpert.org/expert/32456 -https://www.oceanexpert.org/expert/18616 -https://www.oceanexpert.org/institution/12749 -https://www.oceanexpert.org/event/2880 -https://www.oceanexpert.org/expert/17192 -https://www.oceanexpert.org/expert/36510 -https://www.oceanexpert.org/institution/22109 -https://www.oceanexpert.org/expert/41037 -https://www.oceanexpert.org/expert/27557 -https://www.oceanexpert.org/expert/11635 -https://www.oceanexpert.org/expert/16984 -https://www.oceanexpert.org/event/1238 -https://www.oceanexpert.org/expert/26910 -https://www.oceanexpert.org/expert/33524 -https://www.oceanexpert.org/expert/43292 -https://www.oceanexpert.org/event/2912 -https://www.oceanexpert.org/expert/26137 -https://www.oceanexpert.org/institution/20681 -https://www.oceanexpert.org/expert/30117 -https://www.oceanexpert.org/expert/25196 -https://www.oceanexpert.org/expert/38068 -https://www.oceanexpert.org/institution/15441 -https://www.oceanexpert.org/expert/25097 -https://www.oceanexpert.org/institution/17934 -https://www.oceanexpert.org/institution/7612 -https://www.oceanexpert.org/institution/4958 -https://www.oceanexpert.org/expert/31618 -https://www.oceanexpert.org/expert/46353 -https://www.oceanexpert.org/expert/24434 -https://www.oceanexpert.org/institution/17950 -https://www.oceanexpert.org/expert/29638 -https://www.oceanexpert.org/institution/6552 -https://www.oceanexpert.org/expert/30044 -https://www.oceanexpert.org/institution/15548 -https://www.oceanexpert.org/expert/37566 -https://www.oceanexpert.org/institution/11723 -https://www.oceanexpert.org/expert/24930 -https://www.oceanexpert.org/institution/12068 -https://www.oceanexpert.org/expert/11746 -https://www.oceanexpert.org/expert/37442 -https://www.oceanexpert.org/event/1096 -https://www.oceanexpert.org/event/753 -https://www.oceanexpert.org/expert/44005 -https://www.oceanexpert.org/institution/20334 -https://www.oceanexpert.org/expert/39862 -https://www.oceanexpert.org/event/1644 -https://www.oceanexpert.org/institution/19764 -https://www.oceanexpert.org/expert/29685 -https://www.oceanexpert.org/expert/13423 -https://www.oceanexpert.org/institution/10454 -https://www.oceanexpert.org/institution/10790 -https://www.oceanexpert.org/expert/25696 -https://www.oceanexpert.org/institution/16270 -https://www.oceanexpert.org/expert/30 -https://www.oceanexpert.org/expert/32304 -https://www.oceanexpert.org/expert/47733 -https://www.oceanexpert.org/expert/31690 -https://www.oceanexpert.org/expert/24895 -https://www.oceanexpert.org/expert/28298 -https://www.oceanexpert.org/expert/45461 -https://www.oceanexpert.org/institution/17451 -https://www.oceanexpert.org/institution/8034 -https://www.oceanexpert.org/event/1340 -https://www.oceanexpert.org/expert/45402 -https://www.oceanexpert.org/expert/27356 -https://www.oceanexpert.org/institution/14917 -https://www.oceanexpert.org/expert/29505 -https://www.oceanexpert.org/institution/20359 -https://www.oceanexpert.org/expert/36106 -https://www.oceanexpert.org/institution/18126 -https://www.oceanexpert.org/expert/23989 -https://www.oceanexpert.org/institution/21107 -https://www.oceanexpert.org/institution/20908 -https://www.oceanexpert.org/event/2124 -https://www.oceanexpert.org/institution/17540 -https://www.oceanexpert.org/expert/9199 -https://www.oceanexpert.org/expert/36915 -https://www.oceanexpert.org/expert/23990 -https://www.oceanexpert.org/expert/15401 -https://www.oceanexpert.org/event/1771 -https://www.oceanexpert.org/expert/47269 -https://www.oceanexpert.org/event/2497 -https://www.oceanexpert.org/expert/19804 -https://www.oceanexpert.org/expert/25228 -https://www.oceanexpert.org/institution/22092 -https://www.oceanexpert.org/expert/48397 -https://www.oceanexpert.org/institution/17330 -https://www.oceanexpert.org/event/3186 -https://www.oceanexpert.org/expert/10852 -https://www.oceanexpert.org/expert/21955 -https://www.oceanexpert.org/expert/7515 -https://www.oceanexpert.org/expert/27341 -https://www.oceanexpert.org/expert/18589 -https://www.oceanexpert.org/event/635 -https://www.oceanexpert.org/expert/47548 -https://www.oceanexpert.org/expert/30188 -https://www.oceanexpert.org/expert/44335 -https://www.oceanexpert.org/expert/47417 -https://www.oceanexpert.org/institution/21242 -https://www.oceanexpert.org/expert/18648 -https://www.oceanexpert.org/expert/32530 -https://www.oceanexpert.org/expert/38220 -https://www.oceanexpert.org/expert/45147 -https://www.oceanexpert.org/institution/15746 -https://www.oceanexpert.org/expert/34618 -https://www.oceanexpert.org/expert/48617 -https://www.oceanexpert.org/institution/22171 -https://www.oceanexpert.org/expert/22826 -https://www.oceanexpert.org/expert/15695 -https://www.oceanexpert.org/institution/19539 -https://www.oceanexpert.org/expert/19280 -https://www.oceanexpert.org/expert/41577 -https://www.oceanexpert.org/expert/24989 -https://www.oceanexpert.org/event/2586 -https://www.oceanexpert.org/institution/10748 -https://www.oceanexpert.org/institution/19338 -https://www.oceanexpert.org/expert/29735 -https://www.oceanexpert.org/institution/18627 -https://www.oceanexpert.org/expert/45846 -https://www.oceanexpert.org/expert/44442 -https://www.oceanexpert.org/expert/23967 -https://www.oceanexpert.org/institution/12536 -https://www.oceanexpert.org/expert/38032 -https://www.oceanexpert.org/expert/27229 -https://www.oceanexpert.org/expert/24230 -https://www.oceanexpert.org/institution/17908 -https://www.oceanexpert.org/expert/31970 -https://www.oceanexpert.org/institution/21914 -https://www.oceanexpert.org/expert/13556 -https://www.oceanexpert.org/expert/42804 -https://www.oceanexpert.org/event/1135 -https://www.oceanexpert.org/institution/5631 -https://www.oceanexpert.org/expert/48687 -https://www.oceanexpert.org/expert/33688 -https://www.oceanexpert.org/expert/38138 -https://www.oceanexpert.org/expert/43416 -https://www.oceanexpert.org/expert/21946 -https://www.oceanexpert.org/expert/30489 -https://www.oceanexpert.org/expert/13489 -https://www.oceanexpert.org/institution/5572 -https://www.oceanexpert.org/expert/40019 -https://www.oceanexpert.org/institution/17040 -https://www.oceanexpert.org/expert/14181 -https://www.oceanexpert.org/expert/24354 -https://www.oceanexpert.org/institution/17828 -https://www.oceanexpert.org/expert/17206 -https://www.oceanexpert.org/event/2 -https://www.oceanexpert.org/institution/18564 -https://www.oceanexpert.org/expert/14676 -https://www.oceanexpert.org/institution/17542 -https://www.oceanexpert.org/expert/39672 -https://www.oceanexpert.org/expert/27342 -https://www.oceanexpert.org/event/421 -https://www.oceanexpert.org/institution/6998 -https://www.oceanexpert.org/institution/21321 -https://www.oceanexpert.org/expert/8102 -https://www.oceanexpert.org/expert/25554 -https://www.oceanexpert.org/institution/9231 -https://www.oceanexpert.org/expert/1609 -https://www.oceanexpert.org/expert/19502 -https://www.oceanexpert.org/institution/14515 -https://www.oceanexpert.org/expert/24864 -https://www.oceanexpert.org/expert/27436 -https://www.oceanexpert.org/expert/36848 -https://www.oceanexpert.org/institution/20032 -https://www.oceanexpert.org/expert/12490 -https://www.oceanexpert.org/expert/24076 -https://www.oceanexpert.org/institution/12054 -https://www.oceanexpert.org/expert/21600 -https://www.oceanexpert.org/expert/17620 -https://www.oceanexpert.org/expert/22388 -https://www.oceanexpert.org/expert/36091 -https://www.oceanexpert.org/event/2343 -https://www.oceanexpert.org/expert/12144 -https://www.oceanexpert.org/institution/20641 -https://www.oceanexpert.org/institution/12652 -https://www.oceanexpert.org/expert/16841 -https://www.oceanexpert.org/expert/8133 -https://www.oceanexpert.org/expert/23797 -https://www.oceanexpert.org/expert/44279 -https://www.oceanexpert.org/institution/14612 -https://www.oceanexpert.org/institution/10803 -https://www.oceanexpert.org/expert/25946 -https://www.oceanexpert.org/expert/24386 -https://www.oceanexpert.org/expert/48831 -https://www.oceanexpert.org/expert/47079 -https://www.oceanexpert.org/expert/32466 -https://www.oceanexpert.org/event/2834 -https://www.oceanexpert.org/event/1723 -https://www.oceanexpert.org/institution/14940 -https://www.oceanexpert.org/expert/6473 -https://www.oceanexpert.org/expert/25268 -https://www.oceanexpert.org/event/61 -https://www.oceanexpert.org/event/2995 -https://www.oceanexpert.org/expert/37313 -https://www.oceanexpert.org/institution/18914 -https://www.oceanexpert.org/expert/7197 -https://www.oceanexpert.org/expert/39032 -https://www.oceanexpert.org/expert/48677 -https://www.oceanexpert.org/expert/32893 -https://www.oceanexpert.org/expert/27286 -https://www.oceanexpert.org/expert/32460 -https://www.oceanexpert.org/expert/20369 -https://www.oceanexpert.org/expert/43347 -https://www.oceanexpert.org/expert/28447 -https://www.oceanexpert.org/institution/21334 -https://www.oceanexpert.org/institution/18617 -https://www.oceanexpert.org/institution/8792 -https://www.oceanexpert.org/expert/43869 -https://www.oceanexpert.org/expert/32536 -https://www.oceanexpert.org/expert/46727 -https://www.oceanexpert.org/expert/46810 -https://www.oceanexpert.org/expert/18770 -https://www.oceanexpert.org/event/1030 -https://www.oceanexpert.org/expert/37451 -https://www.oceanexpert.org/expert/28931 -https://www.oceanexpert.org/expert/35578 -https://www.oceanexpert.org/expert/46095 -https://www.oceanexpert.org/expert/48843 -https://www.oceanexpert.org/expert/30697 -https://www.oceanexpert.org/institution/14553 -https://www.oceanexpert.org/expert/45844 -https://www.oceanexpert.org/institution/20810 -https://www.oceanexpert.org/event/1328 -https://www.oceanexpert.org/expert/36360 -https://www.oceanexpert.org/event/2863 -https://www.oceanexpert.org/expert/32647 -https://www.oceanexpert.org/expert/17319 -https://www.oceanexpert.org/event/2104 -https://www.oceanexpert.org/expert/14924 -https://www.oceanexpert.org/expert/31656 -https://www.oceanexpert.org/expert/48486 -https://www.oceanexpert.org/expert/25193 -https://www.oceanexpert.org/expert/4337 -https://www.oceanexpert.org/event/372 -https://www.oceanexpert.org/expert/34603 -https://www.oceanexpert.org/expert/22302 -https://www.oceanexpert.org/institution/22113 -https://www.oceanexpert.org/institution/19068 -https://www.oceanexpert.org/expert/17090 -https://www.oceanexpert.org/expert/21262 -https://www.oceanexpert.org/expert/47613 -https://www.oceanexpert.org/expert/39257 -https://www.oceanexpert.org/institution/20616 -https://www.oceanexpert.org/event/3039 -https://www.oceanexpert.org/institution/19361 -https://www.oceanexpert.org/expert/31993 -https://www.oceanexpert.org/expert/26825 -https://www.oceanexpert.org/expert/24043 -https://www.oceanexpert.org/expert/37165 -https://www.oceanexpert.org/institution/9170 -https://www.oceanexpert.org/institution/21334 -https://www.oceanexpert.org/event/1715 -https://www.oceanexpert.org/expert/36770 -https://www.oceanexpert.org/expert/28117 -https://www.oceanexpert.org/institution/19787 -https://www.oceanexpert.org/institution/13232 -https://www.oceanexpert.org/expert/37085 -https://www.oceanexpert.org/institution/20400 -https://www.oceanexpert.org/expert/43306 -https://www.oceanexpert.org/expert/23470 -https://www.oceanexpert.org/expert/46467 -https://www.oceanexpert.org/institution/16736 -https://www.oceanexpert.org/institution/14487 -https://www.oceanexpert.org/expert/45680 -https://www.oceanexpert.org/expert/24278 -https://www.oceanexpert.org/expert/6560 -https://www.oceanexpert.org/expert/42773 -https://www.oceanexpert.org/expert/23124 -https://www.oceanexpert.org/expert/44543 -https://www.oceanexpert.org/expert/30811 -https://www.oceanexpert.org/expert/29277 -https://www.oceanexpert.org/expert/46417 -https://www.oceanexpert.org/expert/11704 -https://www.oceanexpert.org/expert/23761 -https://www.oceanexpert.org/expert/48109 -https://www.oceanexpert.org/expert/23497 -https://www.oceanexpert.org/expert/25304 -https://www.oceanexpert.org/institution/21458 -https://www.oceanexpert.org/expert/12755 -https://www.oceanexpert.org/institution/18010 -https://www.oceanexpert.org/expert/33915 -https://www.oceanexpert.org/expert/4482 -https://www.oceanexpert.org/expert/26714 -https://www.oceanexpert.org/expert/43421 -https://www.oceanexpert.org/expert/17533 -https://www.oceanexpert.org/expert/22926 -https://www.oceanexpert.org/expert/7004 -https://www.oceanexpert.org/expert/43263 -https://www.oceanexpert.org/expert/37309 -https://www.oceanexpert.org/event/2358 -https://www.oceanexpert.org/institution/5778 -https://www.oceanexpert.org/expert/41237 -https://www.oceanexpert.org/event/409 -https://www.oceanexpert.org/expert/25487 -https://www.oceanexpert.org/expert/37972 -https://www.oceanexpert.org/institution/12141 -https://www.oceanexpert.org/expert/16746 -https://www.oceanexpert.org/institution/20033 -https://www.oceanexpert.org/expert/33959 -https://www.oceanexpert.org/expert/32786 -https://www.oceanexpert.org/institution/21288 -https://www.oceanexpert.org/expert/4767 -https://www.oceanexpert.org/expert/27476 -https://www.oceanexpert.org/institution/13699 -https://www.oceanexpert.org/expert/24777 -https://www.oceanexpert.org/institution/18261 -https://www.oceanexpert.org/expert/28080 -https://www.oceanexpert.org/institution/18142 -https://www.oceanexpert.org/expert/38725 -https://www.oceanexpert.org/expert/44756 -https://www.oceanexpert.org/expert/27769 -https://www.oceanexpert.org/expert/31891 -https://www.oceanexpert.org/institution/20999 -https://www.oceanexpert.org/expert/37049 -https://www.oceanexpert.org/expert/14103 -https://www.oceanexpert.org/expert/44550 -https://www.oceanexpert.org/institution/5285 -https://www.oceanexpert.org/institution/18643 -https://www.oceanexpert.org/institution/22035 -https://www.oceanexpert.org/institution/17895 -https://www.oceanexpert.org/expert/36825 -https://www.oceanexpert.org/expert/4378 -https://www.oceanexpert.org/expert/2310 -https://www.oceanexpert.org/expert/36529 -https://www.oceanexpert.org/expert/22817 -https://www.oceanexpert.org/expert/29962 -https://www.oceanexpert.org/institution/19973 -https://www.oceanexpert.org/expert/16059 -https://www.oceanexpert.org/expert/15707 -https://www.oceanexpert.org/expert/20564 -https://www.oceanexpert.org/expert/7001 -https://www.oceanexpert.org/expert/16241 -https://www.oceanexpert.org/event/763 -https://www.oceanexpert.org/expert/1914 -https://www.oceanexpert.org/expert/7203 -https://www.oceanexpert.org/expert/26966 -https://www.oceanexpert.org/expert/37377 -https://www.oceanexpert.org/expert/18779 -https://www.oceanexpert.org/expert/6595 -https://www.oceanexpert.org/expert/29076 -https://www.oceanexpert.org/expert/46787 -https://www.oceanexpert.org/expert/43248 -https://www.oceanexpert.org/institution/19450 -https://www.oceanexpert.org/expert/32759 -https://www.oceanexpert.org/expert/45456 -https://www.oceanexpert.org/expert/40407 -https://www.oceanexpert.org/expert/27633 -https://www.oceanexpert.org/expert/36550 -https://www.oceanexpert.org/expert/33099 -https://www.oceanexpert.org/expert/24159 -https://www.oceanexpert.org/expert/3781 -https://www.oceanexpert.org/expert/48521 -https://www.oceanexpert.org/expert/32251 -https://www.oceanexpert.org/institution/16689 -https://www.oceanexpert.org/institution/13033 -https://www.oceanexpert.org/expert/24812 -https://www.oceanexpert.org/expert/44682 -https://www.oceanexpert.org/expert/24181 -https://www.oceanexpert.org/event/2179 -https://www.oceanexpert.org/expert/32069 -https://www.oceanexpert.org/institution/16799 -https://www.oceanexpert.org/institution/20633 -https://www.oceanexpert.org/event/856 -https://www.oceanexpert.org/institution/18047 -https://www.oceanexpert.org/expert/29815 -https://www.oceanexpert.org/expert/12817 -https://www.oceanexpert.org/expert/361 -https://www.oceanexpert.org/event/2871 -https://www.oceanexpert.org/expert/27750 -https://www.oceanexpert.org/expert/43000 -https://www.oceanexpert.org/expert/31302 -https://www.oceanexpert.org/institution/16461 -https://www.oceanexpert.org/expert/66 -https://www.oceanexpert.org/expert/23915 -https://www.oceanexpert.org/expert/15196 -https://www.oceanexpert.org/expert/47477 -https://www.oceanexpert.org/event/2474 -https://www.oceanexpert.org/institution/9860 -https://www.oceanexpert.org/expert/31094 -https://www.oceanexpert.org/expert/37469 -https://www.oceanexpert.org/institution/17485 -https://www.oceanexpert.org/expert/22204 -https://www.oceanexpert.org/expert/47314 -https://www.oceanexpert.org/expert/46478 -https://www.oceanexpert.org/expert/18917 -https://www.oceanexpert.org/expert/36935 -https://www.oceanexpert.org/institution/21157 -https://www.oceanexpert.org/expert/45657 -https://www.oceanexpert.org/expert/45964 -https://www.oceanexpert.org/expert/42501 -https://www.oceanexpert.org/expert/2235 -https://www.oceanexpert.org/institution/15912 -https://www.oceanexpert.org/expert/39261 -https://www.oceanexpert.org/expert/24198 -https://www.oceanexpert.org/event/748 -https://www.oceanexpert.org/expert/25145 -https://www.oceanexpert.org/institution/12563 -https://www.oceanexpert.org/event/784 -https://www.oceanexpert.org/institution/9038 -https://www.oceanexpert.org/expert/46102 -https://www.oceanexpert.org/event/1931 -https://www.oceanexpert.org/institution/21746 -https://www.oceanexpert.org/expert/23776 -https://www.oceanexpert.org/expert/44955 -https://www.oceanexpert.org/institution/12016 -https://www.oceanexpert.org/institution/20981 -https://www.oceanexpert.org/expert/26094 -https://www.oceanexpert.org/expert/9092 -https://www.oceanexpert.org/expert/47017 -https://www.oceanexpert.org/institution/8158 -https://www.oceanexpert.org/expert/44052 -https://www.oceanexpert.org/expert/40002 -https://www.oceanexpert.org/expert/48349 -https://www.oceanexpert.org/expert/47749 -https://www.oceanexpert.org/expert/34294 -https://www.oceanexpert.org/expert/26105 -https://www.oceanexpert.org/expert/26557 -https://www.oceanexpert.org/institution/17427 -https://www.oceanexpert.org/event/1076 -https://www.oceanexpert.org/expert/2493 -https://www.oceanexpert.org/expert/27835 -https://www.oceanexpert.org/expert/11848 -https://www.oceanexpert.org/expert/16921 -https://www.oceanexpert.org/expert/37222 -https://www.oceanexpert.org/institution/8848 -https://www.oceanexpert.org/expert/43015 -https://www.oceanexpert.org/expert/34619 -https://www.oceanexpert.org/expert/39606 -https://www.oceanexpert.org/expert/45323 -https://www.oceanexpert.org/expert/37429 -https://www.oceanexpert.org/expert/37133 -https://www.oceanexpert.org/institution/14545 -https://www.oceanexpert.org/expert/48914 -https://www.oceanexpert.org/institution/10106 -https://www.oceanexpert.org/expert/22955 -https://www.oceanexpert.org/expert/30175 -https://www.oceanexpert.org/expert/22431 -https://www.oceanexpert.org/expert/17210 -https://www.oceanexpert.org/expert/22504 -https://www.oceanexpert.org/expert/20336 -https://www.oceanexpert.org/expert/25250 -https://www.oceanexpert.org/expert/32392 -https://www.oceanexpert.org/institution/10316 -https://www.oceanexpert.org/expert/22518 -https://www.oceanexpert.org/expert/27445 -https://www.oceanexpert.org/expert/45770 -https://www.oceanexpert.org/institution/18742 -https://www.oceanexpert.org/expert/31664 -https://www.oceanexpert.org/institution/14236 -https://www.oceanexpert.org/institution/14944 -https://www.oceanexpert.org/expert/23918 -https://www.oceanexpert.org/expert/42401 -https://www.oceanexpert.org/expert/8598 -https://www.oceanexpert.org/expert/45694 -https://www.oceanexpert.org/expert/28117 -https://www.oceanexpert.org/expert/29504 -https://www.oceanexpert.org/institution/18732 -https://www.oceanexpert.org/expert/30186 -https://www.oceanexpert.org/event/2703 -https://www.oceanexpert.org/expert/11091 -https://www.oceanexpert.org/expert/34556 -https://www.oceanexpert.org/institution/21257 -https://www.oceanexpert.org/expert/42501 -https://www.oceanexpert.org/institution/18592 -https://www.oceanexpert.org/expert/25074 -https://www.oceanexpert.org/institution/16096 -https://www.oceanexpert.org/expert/11739 -https://www.oceanexpert.org/expert/15441 -https://www.oceanexpert.org/institution/15473 -https://www.oceanexpert.org/expert/16890 -https://www.oceanexpert.org/expert/46622 -https://www.oceanexpert.org/expert/21609 -https://www.oceanexpert.org/institution/17528 -https://www.oceanexpert.org/expert/29135 -https://www.oceanexpert.org/expert/1645 -https://www.oceanexpert.org/expert/12029 -https://www.oceanexpert.org/expert/19317 -https://www.oceanexpert.org/institution/17072 -https://www.oceanexpert.org/event/1827 -https://www.oceanexpert.org/expert/35994 -https://www.oceanexpert.org/expert/24901 -https://www.oceanexpert.org/event/2631 -https://www.oceanexpert.org/expert/30215 -https://www.oceanexpert.org/event/2210 -https://www.oceanexpert.org/expert/26123 -https://www.oceanexpert.org/institution/19276 -https://www.oceanexpert.org/expert/40134 -https://www.oceanexpert.org/expert/43164 -https://www.oceanexpert.org/expert/34805 -https://www.oceanexpert.org/expert/36918 -https://www.oceanexpert.org/expert/25461 -https://www.oceanexpert.org/expert/7794 -https://www.oceanexpert.org/expert/20841 -https://www.oceanexpert.org/event/3287 -https://www.oceanexpert.org/institution/19684 -https://www.oceanexpert.org/expert/44429 -https://www.oceanexpert.org/expert/21807 -https://www.oceanexpert.org/expert/45152 -https://www.oceanexpert.org/event/2916 -https://www.oceanexpert.org/institution/8011 -https://www.oceanexpert.org/expert/6284 -https://www.oceanexpert.org/expert/47131 -https://www.oceanexpert.org/expert/16377 -https://www.oceanexpert.org/expert/48047 -https://www.oceanexpert.org/expert/12500 -https://www.oceanexpert.org/expert/38381 -https://www.oceanexpert.org/expert/11026 -https://www.oceanexpert.org/institution/15556 -https://www.oceanexpert.org/institution/10611 -https://www.oceanexpert.org/expert/25351 -https://www.oceanexpert.org/expert/25498 -https://www.oceanexpert.org/expert/11564 -https://www.oceanexpert.org/expert/43074 -https://www.oceanexpert.org/institution/19406 -https://www.oceanexpert.org/event/3296 -https://www.oceanexpert.org/expert/27277 -https://www.oceanexpert.org/expert/34874 -https://www.oceanexpert.org/event/2433 -https://www.oceanexpert.org/expert/24785 -https://www.oceanexpert.org/expert/26667 -https://www.oceanexpert.org/expert/26775 -https://www.oceanexpert.org/event/3133 -https://www.oceanexpert.org/expert/4452 -https://www.oceanexpert.org/event/651 -https://www.oceanexpert.org/institution/21430 -https://www.oceanexpert.org/expert/31727 -https://www.oceanexpert.org/expert/27592 -https://www.oceanexpert.org/expert/46838 -https://www.oceanexpert.org/institution/21075 -https://www.oceanexpert.org/expert/20832 -https://www.oceanexpert.org/event/3066 -https://www.oceanexpert.org/expert/34753 -https://www.oceanexpert.org/institution/16355 -https://www.oceanexpert.org/expert/48308 -https://www.oceanexpert.org/institution/7786 -https://www.oceanexpert.org/expert/16066 -https://www.oceanexpert.org/institution/12533 -https://www.oceanexpert.org/expert/47651 -https://www.oceanexpert.org/event/2191 -https://www.oceanexpert.org/expert/34590 -https://www.oceanexpert.org/institution/19890 -https://www.oceanexpert.org/expert/11769 -https://www.oceanexpert.org/expert/16683 -https://www.oceanexpert.org/expert/35823 -https://www.oceanexpert.org/expert/14150 -https://www.oceanexpert.org/expert/40901 -https://www.oceanexpert.org/expert/47150 -https://www.oceanexpert.org/institution/18584 -https://www.oceanexpert.org/event/1226 -https://www.oceanexpert.org/expert/15102 -https://www.oceanexpert.org/expert/662 -https://www.oceanexpert.org/expert/25282 -https://www.oceanexpert.org/expert/47781 -https://www.oceanexpert.org/expert/14542 -https://www.oceanexpert.org/expert/20656 -https://www.oceanexpert.org/expert/14200 -https://www.oceanexpert.org/institution/17430 -https://www.oceanexpert.org/expert/48914 -https://www.oceanexpert.org/expert/10943 -https://www.oceanexpert.org/event/552 -https://www.oceanexpert.org/expert/32786 -https://www.oceanexpert.org/expert/26699 -https://www.oceanexpert.org/expert/43122 -https://www.oceanexpert.org/expert/12812 -https://www.oceanexpert.org/institution/19115 -https://www.oceanexpert.org/expert/26144 -https://www.oceanexpert.org/expert/26582 -https://www.oceanexpert.org/institution/16798 -https://www.oceanexpert.org/institution/21398 -https://www.oceanexpert.org/expert/20441 -https://www.oceanexpert.org/institution/18328 -https://www.oceanexpert.org/expert/25414 -https://www.oceanexpert.org/expert/36306 -https://www.oceanexpert.org/expert/12017 -https://www.oceanexpert.org/expert/18273 -https://www.oceanexpert.org/expert/42786 -https://www.oceanexpert.org/expert/12442 -https://www.oceanexpert.org/event/1385 -https://www.oceanexpert.org/institution/10651 -https://www.oceanexpert.org/event/157 -https://www.oceanexpert.org/expert/45895 -https://www.oceanexpert.org/expert/43602 -https://www.oceanexpert.org/expert/19340 -https://www.oceanexpert.org/institution/18740 -https://www.oceanexpert.org/expert/37832 -https://www.oceanexpert.org/expert/48625 -https://www.oceanexpert.org/expert/43703 -https://www.oceanexpert.org/expert/19747 -https://www.oceanexpert.org/expert/47015 -https://www.oceanexpert.org/institution/18322 -https://www.oceanexpert.org/institution/18892 -https://www.oceanexpert.org/expert/46355 -https://www.oceanexpert.org/expert/45683 -https://www.oceanexpert.org/institution/11582 -https://www.oceanexpert.org/expert/45765 -https://www.oceanexpert.org/expert/23528 -https://www.oceanexpert.org/institution/20155 -https://www.oceanexpert.org/institution/21405 -https://www.oceanexpert.org/institution/19397 -https://www.oceanexpert.org/institution/16450 -https://www.oceanexpert.org/expert/27414 -https://www.oceanexpert.org/expert/38641 -https://www.oceanexpert.org/event/1317 -https://www.oceanexpert.org/expert/36084 -https://www.oceanexpert.org/event/2463 -https://www.oceanexpert.org/institution/13183 -https://www.oceanexpert.org/institution/11475 -https://www.oceanexpert.org/expert/39861 -https://www.oceanexpert.org/expert/12664 -https://www.oceanexpert.org/expert/37826 -https://www.oceanexpert.org/institution/16741 -https://www.oceanexpert.org/expert/14759 -https://www.oceanexpert.org/expert/20780 -https://www.oceanexpert.org/institution/15341 -https://www.oceanexpert.org/expert/25439 -https://www.oceanexpert.org/institution/17043 -https://www.oceanexpert.org/expert/21658 -https://www.oceanexpert.org/expert/26590 -https://www.oceanexpert.org/institution/6441 -https://www.oceanexpert.org/institution/15726 -https://www.oceanexpert.org/expert/8858 -https://www.oceanexpert.org/expert/40528 -https://www.oceanexpert.org/event/330 -https://www.oceanexpert.org/expert/37877 -https://www.oceanexpert.org/expert/8674 -https://www.oceanexpert.org/institution/7284 -https://www.oceanexpert.org/expert/43149 -https://www.oceanexpert.org/expert/936 -https://www.oceanexpert.org/expert/18612 -https://www.oceanexpert.org/expert/6430 -https://www.oceanexpert.org/institution/18355 -https://www.oceanexpert.org/expert/35578 -https://www.oceanexpert.org/expert/47882 -https://www.oceanexpert.org/expert/36280 -https://www.oceanexpert.org/institution/12107 -https://www.oceanexpert.org/expert/26933 -https://www.oceanexpert.org/expert/34407 -https://www.oceanexpert.org/institution/17057 -https://www.oceanexpert.org/institution/21108 -https://www.oceanexpert.org/expert/38518 -https://www.oceanexpert.org/expert/16235 -https://www.oceanexpert.org/expert/8711 -https://www.oceanexpert.org/event/1927 -https://www.oceanexpert.org/expert/38208 -https://www.oceanexpert.org/institution/17787 -https://www.oceanexpert.org/institution/11823 -https://www.oceanexpert.org/institution/14014 -https://www.oceanexpert.org/institution/5591 -https://www.oceanexpert.org/institution/18661 -https://www.oceanexpert.org/expert/26657 -https://www.oceanexpert.org/expert/17045 -https://www.oceanexpert.org/expert/18788 -https://www.oceanexpert.org/expert/32459 -https://www.oceanexpert.org/expert/25178 -https://www.oceanexpert.org/expert/23203 -https://www.oceanexpert.org/event/1954 -https://www.oceanexpert.org/institution/20458 -https://www.oceanexpert.org/expert/23958 -https://www.oceanexpert.org/expert/45636 -https://www.oceanexpert.org/expert/20808 -https://www.oceanexpert.org/event/1828 -https://www.oceanexpert.org/institution/18951 -https://www.oceanexpert.org/expert/26317 -https://www.oceanexpert.org/expert/8685 -https://www.oceanexpert.org/event/1841 -https://www.oceanexpert.org/expert/20432 -https://www.oceanexpert.org/event/2291 -https://www.oceanexpert.org/expert/20868 -https://www.oceanexpert.org/institution/12472 -https://www.oceanexpert.org/expert/40556 -https://www.oceanexpert.org/institution/12851 -https://www.oceanexpert.org/institution/18403 -https://www.oceanexpert.org/expert/21825 -https://www.oceanexpert.org/expert/32491 -https://www.oceanexpert.org/expert/28092 -https://www.oceanexpert.org/expert/33223 -https://www.oceanexpert.org/expert/35981 -https://www.oceanexpert.org/expert/26271 -https://www.oceanexpert.org/institution/14273 -https://www.oceanexpert.org/institution/21766 -https://www.oceanexpert.org/expert/24983 -https://www.oceanexpert.org/expert/17147 -https://www.oceanexpert.org/expert/27449 -https://www.oceanexpert.org/event/3046 -https://www.oceanexpert.org/event/271 -https://www.oceanexpert.org/expert/23352 -https://www.oceanexpert.org/institution/11352 -https://www.oceanexpert.org/expert/35855 -https://www.oceanexpert.org/expert/37046 -https://www.oceanexpert.org/institution/18697 -https://www.oceanexpert.org/expert/28177 -https://www.oceanexpert.org/event/637 -https://www.oceanexpert.org/expert/45140 -https://www.oceanexpert.org/expert/47153 -https://www.oceanexpert.org/expert/11557 -https://www.oceanexpert.org/expert/31818 -https://www.oceanexpert.org/institution/12970 -https://www.oceanexpert.org/expert/46419 -https://www.oceanexpert.org/institution/5850 -https://www.oceanexpert.org/institution/21185 -https://www.oceanexpert.org/institution/18942 -https://www.oceanexpert.org/expert/20690 -https://www.oceanexpert.org/expert/48763 -https://www.oceanexpert.org/institution/18723 -https://www.oceanexpert.org/event/2598 -https://www.oceanexpert.org/expert/24950 -https://www.oceanexpert.org/event/2968 -https://www.oceanexpert.org/institution/21857 -https://www.oceanexpert.org/expert/5534 -https://www.oceanexpert.org/expert/21940 -https://www.oceanexpert.org/expert/7745 -https://www.oceanexpert.org/institution/20972 -https://www.oceanexpert.org/expert/12461 -https://www.oceanexpert.org/expert/40006 -https://www.oceanexpert.org/expert/42479 -https://www.oceanexpert.org/event/3082 -https://www.oceanexpert.org/expert/31615 -https://www.oceanexpert.org/event/2470 -https://www.oceanexpert.org/expert/22989 -https://www.oceanexpert.org/expert/36849 -https://www.oceanexpert.org/event/3269 -https://www.oceanexpert.org/expert/13013 -https://www.oceanexpert.org/expert/24519 -https://www.oceanexpert.org/expert/28336 -https://www.oceanexpert.org/event/1935 -https://www.oceanexpert.org/expert/19397 -https://www.oceanexpert.org/institution/20358 -https://www.oceanexpert.org/expert/20812 -https://www.oceanexpert.org/institution/15025 -https://www.oceanexpert.org/event/1755 -https://www.oceanexpert.org/expert/6321 -https://www.oceanexpert.org/expert/46238 -https://www.oceanexpert.org/expert/30285 -https://www.oceanexpert.org/expert/21219 -https://www.oceanexpert.org/expert/36031 -https://www.oceanexpert.org/expert/46261 -https://www.oceanexpert.org/expert/23769 -https://www.oceanexpert.org/expert/4651 -https://www.oceanexpert.org/institution/19994 -https://www.oceanexpert.org/expert/15196 -https://www.oceanexpert.org/institution/20812 -https://www.oceanexpert.org/expert/42711 -https://www.oceanexpert.org/expert/45442 -https://www.oceanexpert.org/institution/20368 -https://www.oceanexpert.org/expert/38043 -https://www.oceanexpert.org/institution/20810 -https://www.oceanexpert.org/institution/18056 -https://www.oceanexpert.org/expert/12400 -https://www.oceanexpert.org/expert/34155 -https://www.oceanexpert.org/expert/32806 -https://www.oceanexpert.org/expert/34753 -https://www.oceanexpert.org/expert/32146 -https://www.oceanexpert.org/expert/21037 -https://www.oceanexpert.org/expert/30697 -https://www.oceanexpert.org/event/284 -https://www.oceanexpert.org/expert/47033 -https://www.oceanexpert.org/institution/21810 -https://www.oceanexpert.org/institution/19860 -https://www.oceanexpert.org/institution/18055 -https://www.oceanexpert.org/institution/20217 -https://www.oceanexpert.org/expert/39478 -https://www.oceanexpert.org/institution/12683 -https://www.oceanexpert.org/institution/15253 -https://www.oceanexpert.org/expert/17022 -https://www.oceanexpert.org/expert/44830 -https://www.oceanexpert.org/institution/12819 -https://www.oceanexpert.org/expert/13355 -https://www.oceanexpert.org/institution/21586 -https://www.oceanexpert.org/expert/23533 -https://www.oceanexpert.org/expert/26442 -https://www.oceanexpert.org/institution/21028 -https://www.oceanexpert.org/expert/43146 -https://www.oceanexpert.org/institution/21540 -https://www.oceanexpert.org/institution/12725 -https://www.oceanexpert.org/event/2265 -https://www.oceanexpert.org/expert/7205 -https://www.oceanexpert.org/expert/38233 -https://www.oceanexpert.org/institution/19909 -https://www.oceanexpert.org/expert/45156 -https://www.oceanexpert.org/expert/47170 -https://www.oceanexpert.org/expert/14575 -https://www.oceanexpert.org/expert/29394 -https://www.oceanexpert.org/expert/19706 -https://www.oceanexpert.org/institution/18235 -https://www.oceanexpert.org/expert/17017 -https://www.oceanexpert.org/expert/19630 -https://www.oceanexpert.org/expert/28294 -https://www.oceanexpert.org/expert/38006 -https://www.oceanexpert.org/institution/19942 -https://www.oceanexpert.org/expert/6940 -https://www.oceanexpert.org/institution/20988 -https://www.oceanexpert.org/institution/18038 -https://www.oceanexpert.org/institution/19797 -https://www.oceanexpert.org/institution/21697 -https://www.oceanexpert.org/institution/20189 -https://www.oceanexpert.org/expert/21679 -https://www.oceanexpert.org/institution/21663 -https://www.oceanexpert.org/event/2852 -https://www.oceanexpert.org/expert/26460 -https://www.oceanexpert.org/expert/33086 -https://www.oceanexpert.org/expert/2363 -https://www.oceanexpert.org/expert/35355 -https://www.oceanexpert.org/event/698 -https://www.oceanexpert.org/expert/4333 -https://www.oceanexpert.org/expert/26073 -https://www.oceanexpert.org/expert/25721 -https://www.oceanexpert.org/expert/35139 -https://www.oceanexpert.org/expert/8487 -https://www.oceanexpert.org/institution/16311 -https://www.oceanexpert.org/expert/34585 -https://www.oceanexpert.org/institution/20853 -https://www.oceanexpert.org/expert/26214 -https://www.oceanexpert.org/institution/18722 -https://www.oceanexpert.org/expert/24797 -https://www.oceanexpert.org/expert/33375 -https://www.oceanexpert.org/expert/44416 -https://www.oceanexpert.org/expert/12099 -https://www.oceanexpert.org/institution/13420 -https://www.oceanexpert.org/expert/46823 -https://www.oceanexpert.org/expert/13705 -https://www.oceanexpert.org/institution/15314 -https://www.oceanexpert.org/institution/13723 -https://www.oceanexpert.org/expert/31399 -https://www.oceanexpert.org/event/1600 -https://www.oceanexpert.org/expert/35516 -https://www.oceanexpert.org/expert/44102 -https://www.oceanexpert.org/expert/35114 -https://www.oceanexpert.org/expert/38354 -https://www.oceanexpert.org/expert/38783 -https://www.oceanexpert.org/event/977 -https://www.oceanexpert.org/expert/27220 -https://www.oceanexpert.org/expert/4204 -https://www.oceanexpert.org/expert/42454 -https://www.oceanexpert.org/institution/13851 -https://www.oceanexpert.org/event/3247 -https://www.oceanexpert.org/institution/19077 -https://www.oceanexpert.org/event/3099 -https://www.oceanexpert.org/expert/26117 -https://www.oceanexpert.org/event/885 -https://www.oceanexpert.org/institution/18636 -https://www.oceanexpert.org/expert/47146 -https://www.oceanexpert.org/institution/20950 -https://www.oceanexpert.org/institution/21645 -https://www.oceanexpert.org/institution/14883 -https://www.oceanexpert.org/event/746 -https://www.oceanexpert.org/institution/13301 -https://www.oceanexpert.org/expert/23640 -https://www.oceanexpert.org/expert/22966 -https://www.oceanexpert.org/expert/21463 -https://www.oceanexpert.org/institution/21939 -https://www.oceanexpert.org/expert/27561 -https://www.oceanexpert.org/expert/36342 -https://www.oceanexpert.org/expert/34281 -https://www.oceanexpert.org/event/66 -https://www.oceanexpert.org/institution/21879 -https://www.oceanexpert.org/expert/20666 -https://www.oceanexpert.org/institution/12740 -https://www.oceanexpert.org/expert/8243 -https://www.oceanexpert.org/institution/13493 -https://www.oceanexpert.org/institution/17235 -https://www.oceanexpert.org/institution/19422 -https://www.oceanexpert.org/institution/22180 -https://www.oceanexpert.org/expert/42872 -https://www.oceanexpert.org/expert/44134 -https://www.oceanexpert.org/event/2732 -https://www.oceanexpert.org/expert/6516 -https://www.oceanexpert.org/expert/35338 -https://www.oceanexpert.org/institution/17771 -https://www.oceanexpert.org/expert/44768 -https://www.oceanexpert.org/expert/33084 -https://www.oceanexpert.org/event/3090 -https://www.oceanexpert.org/event/2298 -https://www.oceanexpert.org/institution/14140 -https://www.oceanexpert.org/expert/27595 -https://www.oceanexpert.org/institution/18374 -https://www.oceanexpert.org/institution/12511 -https://www.oceanexpert.org/expert/21236 -https://www.oceanexpert.org/expert/47415 -https://www.oceanexpert.org/expert/25426 -https://www.oceanexpert.org/event/1289 -https://www.oceanexpert.org/expert/29914 -https://www.oceanexpert.org/institution/12038 -https://www.oceanexpert.org/expert/17910 -https://www.oceanexpert.org/institution/18183 -https://www.oceanexpert.org/expert/25032 -https://www.oceanexpert.org/expert/46599 -https://www.oceanexpert.org/expert/20825 -https://www.oceanexpert.org/expert/34295 -https://www.oceanexpert.org/expert/43007 -https://www.oceanexpert.org/expert/43748 -https://www.oceanexpert.org/expert/7275 -https://www.oceanexpert.org/expert/30186 -https://www.oceanexpert.org/expert/23244 -https://www.oceanexpert.org/institution/19490 -https://www.oceanexpert.org/expert/22586 -https://www.oceanexpert.org/expert/18264 -https://www.oceanexpert.org/expert/26851 -https://www.oceanexpert.org/institution/14233 -https://www.oceanexpert.org/institution/21562 -https://www.oceanexpert.org/expert/6270 -https://www.oceanexpert.org/institution/15069 -https://www.oceanexpert.org/institution/5244 -https://www.oceanexpert.org/expert/8952 -https://www.oceanexpert.org/event/2990 -https://www.oceanexpert.org/expert/16290 -https://www.oceanexpert.org/expert/43313 -https://www.oceanexpert.org/expert/27237 -https://www.oceanexpert.org/institution/21014 -https://www.oceanexpert.org/institution/19184 -https://www.oceanexpert.org/institution/12359 -https://www.oceanexpert.org/expert/32572 -https://www.oceanexpert.org/expert/42738 -https://www.oceanexpert.org/expert/29091 -https://www.oceanexpert.org/expert/37773 -https://www.oceanexpert.org/institution/21860 -https://www.oceanexpert.org/expert/21854 -https://www.oceanexpert.org/expert/42738 -https://www.oceanexpert.org/expert/19075 -https://www.oceanexpert.org/expert/34799 -https://www.oceanexpert.org/expert/44243 -https://www.oceanexpert.org/event/3196 -https://www.oceanexpert.org/institution/20045 -https://www.oceanexpert.org/institution/20479 -https://www.oceanexpert.org/expert/13558 -https://www.oceanexpert.org/institution/12997 -https://www.oceanexpert.org/institution/17764 -https://www.oceanexpert.org/event/1971 -https://www.oceanexpert.org/expert/19350 -https://www.oceanexpert.org/expert/28201 -https://www.oceanexpert.org/expert/42696 -https://www.oceanexpert.org/institution/21788 -https://www.oceanexpert.org/event/2192 -https://www.oceanexpert.org/expert/14776 -https://www.oceanexpert.org/institution/5506 -https://www.oceanexpert.org/institution/15313 -https://www.oceanexpert.org/event/1456 -https://www.oceanexpert.org/institution/18888 -https://www.oceanexpert.org/expert/40305 -https://www.oceanexpert.org/institution/14750 -https://www.oceanexpert.org/institution/21538 -https://www.oceanexpert.org/expert/26183 -https://www.oceanexpert.org/institution/19680 -https://www.oceanexpert.org/institution/13040 -https://www.oceanexpert.org/event/282 -https://www.oceanexpert.org/expert/26152 -https://www.oceanexpert.org/expert/35973 -https://www.oceanexpert.org/expert/12968 -https://www.oceanexpert.org/expert/16960 -https://www.oceanexpert.org/expert/31131 -https://www.oceanexpert.org/expert/46845 -https://www.oceanexpert.org/expert/37260 -https://www.oceanexpert.org/institution/18708 -https://www.oceanexpert.org/institution/17686 -https://www.oceanexpert.org/expert/8156 -https://www.oceanexpert.org/event/1840 -https://www.oceanexpert.org/expert/20043 -https://www.oceanexpert.org/expert/37868 -https://www.oceanexpert.org/institution/15926 -https://www.oceanexpert.org/expert/37693 -https://www.oceanexpert.org/expert/47392 -https://www.oceanexpert.org/expert/4675 -https://www.oceanexpert.org/expert/20729 -https://www.oceanexpert.org/expert/14190 -https://www.oceanexpert.org/institution/22144 -https://www.oceanexpert.org/expert/24706 -https://www.oceanexpert.org/event/1228 -https://www.oceanexpert.org/expert/48009 -https://www.oceanexpert.org/expert/24020 -https://www.oceanexpert.org/expert/25454 -https://www.oceanexpert.org/expert/17150 -https://www.oceanexpert.org/expert/38916 -https://www.oceanexpert.org/expert/43581 -https://www.oceanexpert.org/expert/43706 -https://www.oceanexpert.org/expert/25445 -https://www.oceanexpert.org/institution/14107 -https://www.oceanexpert.org/event/1433 -https://www.oceanexpert.org/expert/37306 -https://www.oceanexpert.org/expert/19693 -https://www.oceanexpert.org/expert/9044 -https://www.oceanexpert.org/expert/24627 -https://www.oceanexpert.org/expert/42443 -https://www.oceanexpert.org/expert/44569 -https://www.oceanexpert.org/expert/38121 -https://www.oceanexpert.org/expert/39010 -https://www.oceanexpert.org/institution/8762 -https://www.oceanexpert.org/expert/36497 -https://www.oceanexpert.org/institution/12764 -https://www.oceanexpert.org/expert/27048 -https://www.oceanexpert.org/expert/29075 -https://www.oceanexpert.org/expert/34814 -https://www.oceanexpert.org/institution/21442 -https://www.oceanexpert.org/expert/36268 -https://www.oceanexpert.org/event/1289 -https://www.oceanexpert.org/event/1027 -https://www.oceanexpert.org/institution/15930 -https://www.oceanexpert.org/expert/26263 -https://www.oceanexpert.org/institution/21654 -https://www.oceanexpert.org/expert/16041 -https://www.oceanexpert.org/institution/14247 -https://www.oceanexpert.org/institution/20641 -https://www.oceanexpert.org/institution/20344 -https://www.oceanexpert.org/event/2320 -https://www.oceanexpert.org/institution/18722 -https://www.oceanexpert.org/expert/37013 -https://www.oceanexpert.org/expert/32899 -https://www.oceanexpert.org/institution/8404 -https://www.oceanexpert.org/institution/12343 -https://www.oceanexpert.org/expert/17587 -https://www.oceanexpert.org/institution/19276 -https://www.oceanexpert.org/expert/45089 -https://www.oceanexpert.org/expert/32559 -https://www.oceanexpert.org/expert/40901 -https://www.oceanexpert.org/institution/15961 -https://www.oceanexpert.org/institution/21539 -https://www.oceanexpert.org/institution/21567 -https://www.oceanexpert.org/expert/39607 -https://www.oceanexpert.org/institution/20734 -https://www.oceanexpert.org/expert/14443 -https://www.oceanexpert.org/expert/20485 -https://www.oceanexpert.org/institution/8450 -https://www.oceanexpert.org/institution/16183 -https://www.oceanexpert.org/expert/48562 -https://www.oceanexpert.org/expert/25017 -https://www.oceanexpert.org/expert/26806 -https://www.oceanexpert.org/expert/48055 -https://www.oceanexpert.org/expert/44383 -https://www.oceanexpert.org/expert/32487 -https://www.oceanexpert.org/expert/46963 -https://www.oceanexpert.org/expert/44958 -https://www.oceanexpert.org/expert/48029 -https://www.oceanexpert.org/expert/12938 -https://www.oceanexpert.org/expert/45077 -https://www.oceanexpert.org/institution/18868 -https://www.oceanexpert.org/event/3121 -https://www.oceanexpert.org/institution/18906 -https://www.oceanexpert.org/expert/23325 -https://www.oceanexpert.org/event/2448 -https://www.oceanexpert.org/expert/48745 -https://www.oceanexpert.org/expert/23662 -https://www.oceanexpert.org/institution/19319 -https://www.oceanexpert.org/expert/46726 -https://www.oceanexpert.org/institution/18437 -https://www.oceanexpert.org/expert/18681 -https://www.oceanexpert.org/expert/40672 -https://www.oceanexpert.org/expert/44979 -https://www.oceanexpert.org/expert/24273 -https://www.oceanexpert.org/expert/27776 -https://www.oceanexpert.org/institution/19832 -https://www.oceanexpert.org/institution/16815 -https://www.oceanexpert.org/expert/37309 -https://www.oceanexpert.org/expert/33463 -https://www.oceanexpert.org/expert/235 -https://www.oceanexpert.org/institution/15662 -https://www.oceanexpert.org/institution/18279 -https://www.oceanexpert.org/institution/10345 -https://www.oceanexpert.org/expert/44300 -https://www.oceanexpert.org/expert/46580 -https://www.oceanexpert.org/expert/42798 -https://www.oceanexpert.org/expert/16755 -https://www.oceanexpert.org/institution/20034 -https://www.oceanexpert.org/expert/8358 -https://www.oceanexpert.org/expert/15293 -https://www.oceanexpert.org/expert/37148 -https://www.oceanexpert.org/expert/29983 -https://www.oceanexpert.org/institution/13137 -https://www.oceanexpert.org/institution/19223 -https://www.oceanexpert.org/expert/47638 -https://www.oceanexpert.org/institution/15212 -https://www.oceanexpert.org/expert/8935 -https://www.oceanexpert.org/institution/17758 -https://www.oceanexpert.org/expert/44932 -https://www.oceanexpert.org/institution/15360 -https://www.oceanexpert.org/institution/16568 -https://www.oceanexpert.org/institution/20990 -https://www.oceanexpert.org/expert/25571 -https://www.oceanexpert.org/institution/14299 -https://www.oceanexpert.org/expert/4916 -https://www.oceanexpert.org/expert/43960 -https://www.oceanexpert.org/institution/14778 -https://www.oceanexpert.org/expert/14053 -https://www.oceanexpert.org/expert/22223 -https://www.oceanexpert.org/institution/20818 -https://www.oceanexpert.org/expert/45778 -https://www.oceanexpert.org/expert/27625 -https://www.oceanexpert.org/event/851 -https://www.oceanexpert.org/expert/3383 -https://www.oceanexpert.org/expert/19247 -https://www.oceanexpert.org/event/594 -https://www.oceanexpert.org/expert/20207 -https://www.oceanexpert.org/institution/21151 -https://www.oceanexpert.org/expert/27749 -https://www.oceanexpert.org/expert/31479 -https://www.oceanexpert.org/expert/46622 -https://www.oceanexpert.org/expert/33399 -https://www.oceanexpert.org/institution/6852 -https://www.oceanexpert.org/expert/34916 -https://www.oceanexpert.org/expert/20948 -https://www.oceanexpert.org/expert/43284 -https://www.oceanexpert.org/expert/24488 -https://www.oceanexpert.org/expert/48112 -https://www.oceanexpert.org/event/1203 -https://www.oceanexpert.org/expert/30221 -https://www.oceanexpert.org/event/2874 -https://www.oceanexpert.org/expert/43842 -https://www.oceanexpert.org/expert/16656 -https://www.oceanexpert.org/expert/47615 -https://www.oceanexpert.org/expert/4369 -https://www.oceanexpert.org/expert/48830 -https://www.oceanexpert.org/event/1160 -https://www.oceanexpert.org/expert/15489 -https://www.oceanexpert.org/expert/23998 -https://www.oceanexpert.org/expert/25405 -https://www.oceanexpert.org/expert/24832 -https://www.oceanexpert.org/institution/11309 -https://www.oceanexpert.org/institution/18978 -https://www.oceanexpert.org/expert/39472 -https://www.oceanexpert.org/expert/1844 -https://www.oceanexpert.org/expert/19013 -https://www.oceanexpert.org/event/2632 -https://www.oceanexpert.org/expert/34127 -https://www.oceanexpert.org/event/301 -https://www.oceanexpert.org/institution/20589 -https://www.oceanexpert.org/expert/21518 -https://www.oceanexpert.org/expert/22951 -https://www.oceanexpert.org/expert/24911 -https://www.oceanexpert.org/expert/32645 -https://www.oceanexpert.org/expert/8068 -https://www.oceanexpert.org/institution/19750 -https://www.oceanexpert.org/institution/19178 -https://www.oceanexpert.org/expert/22220 -https://www.oceanexpert.org/institution/15668 -https://www.oceanexpert.org/expert/17399 -https://www.oceanexpert.org/expert/19989 -https://www.oceanexpert.org/expert/44352 -https://www.oceanexpert.org/institution/19510 -https://www.oceanexpert.org/institution/16280 -https://www.oceanexpert.org/event/2996 -https://www.oceanexpert.org/institution/10299 -https://www.oceanexpert.org/expert/23118 -https://www.oceanexpert.org/expert/21811 -https://www.oceanexpert.org/institution/20321 -https://www.oceanexpert.org/expert/27551 -https://www.oceanexpert.org/expert/37279 -https://www.oceanexpert.org/event/1939 -https://www.oceanexpert.org/institution/18721 -https://www.oceanexpert.org/expert/23123 -https://www.oceanexpert.org/expert/18504 -https://www.oceanexpert.org/expert/42509 -https://www.oceanexpert.org/institution/21472 -https://www.oceanexpert.org/institution/14048 -https://www.oceanexpert.org/institution/19082 -https://www.oceanexpert.org/expert/23880 -https://www.oceanexpert.org/expert/35308 -https://www.oceanexpert.org/expert/26651 -https://www.oceanexpert.org/institution/21207 -https://www.oceanexpert.org/expert/14704 -https://www.oceanexpert.org/institution/18616 -https://www.oceanexpert.org/expert/673 -https://www.oceanexpert.org/institution/21272 -https://www.oceanexpert.org/institution/21371 -https://www.oceanexpert.org/expert/33074 -https://www.oceanexpert.org/expert/108 -https://www.oceanexpert.org/expert/36780 -https://www.oceanexpert.org/expert/45969 -https://www.oceanexpert.org/expert/36978 -https://www.oceanexpert.org/expert/36703 -https://www.oceanexpert.org/event/2896 -https://www.oceanexpert.org/institution/13626 -https://www.oceanexpert.org/expert/45995 -https://www.oceanexpert.org/expert/18379 -https://www.oceanexpert.org/expert/21117 -https://www.oceanexpert.org/expert/48709 -https://www.oceanexpert.org/event/467 -https://www.oceanexpert.org/expert/22664 -https://www.oceanexpert.org/expert/37247 -https://www.oceanexpert.org/institution/15155 -https://www.oceanexpert.org/expert/44912 -https://www.oceanexpert.org/expert/11951 -https://www.oceanexpert.org/expert/43316 -https://www.oceanexpert.org/institution/14873 -https://www.oceanexpert.org/expert/45866 -https://www.oceanexpert.org/expert/39293 -https://www.oceanexpert.org/expert/3214 -https://www.oceanexpert.org/expert/47832 -https://www.oceanexpert.org/institution/20392 -https://www.oceanexpert.org/expert/26097 -https://www.oceanexpert.org/event/2297 -https://www.oceanexpert.org/institution/18589 -https://www.oceanexpert.org/expert/43620 -https://www.oceanexpert.org/expert/39613 -https://www.oceanexpert.org/institution/12349 -https://www.oceanexpert.org/expert/17651 -https://www.oceanexpert.org/expert/12976 -https://www.oceanexpert.org/institution/20380 -https://www.oceanexpert.org/expert/25942 -https://www.oceanexpert.org/institution/20693 -https://www.oceanexpert.org/expert/26713 -https://www.oceanexpert.org/expert/26899 -https://www.oceanexpert.org/expert/23572 -https://www.oceanexpert.org/expert/24773 -https://www.oceanexpert.org/event/2894 -https://www.oceanexpert.org/expert/27644 -https://www.oceanexpert.org/expert/44884 -https://www.oceanexpert.org/expert/45926 -https://www.oceanexpert.org/expert/44332 -https://www.oceanexpert.org/expert/48802 -https://www.oceanexpert.org/institution/12535 -https://www.oceanexpert.org/event/1233 -https://www.oceanexpert.org/institution/15814 -https://www.oceanexpert.org/expert/42561 -https://www.oceanexpert.org/event/1840 -https://www.oceanexpert.org/expert/16281 -https://www.oceanexpert.org/event/2972 -https://www.oceanexpert.org/expert/30189 -https://www.oceanexpert.org/expert/17626 -https://www.oceanexpert.org/expert/23229 -https://www.oceanexpert.org/institution/12249 -https://www.oceanexpert.org/expert/38114 -https://www.oceanexpert.org/expert/18536 -https://www.oceanexpert.org/expert/43032 -https://www.oceanexpert.org/institution/17377 -https://www.oceanexpert.org/expert/22745 -https://www.oceanexpert.org/institution/20011 -https://www.oceanexpert.org/expert/44688 -https://www.oceanexpert.org/institution/11037 -https://www.oceanexpert.org/event/1569 -https://www.oceanexpert.org/expert/45791 -https://www.oceanexpert.org/expert/48404 -https://www.oceanexpert.org/expert/36990 -https://www.oceanexpert.org/expert/24565 -https://www.oceanexpert.org/expert/34939 -https://www.oceanexpert.org/expert/19057 -https://www.oceanexpert.org/expert/22464 -https://www.oceanexpert.org/institution/21374 -https://www.oceanexpert.org/expert/28507 -https://www.oceanexpert.org/expert/26881 -https://www.oceanexpert.org/institution/7375 -https://www.oceanexpert.org/institution/19606 -https://www.oceanexpert.org/institution/14382 -https://www.oceanexpert.org/expert/25143 -https://www.oceanexpert.org/expert/26045 -https://www.oceanexpert.org/expert/12193 -https://www.oceanexpert.org/expert/37251 -https://www.oceanexpert.org/expert/35761 -https://www.oceanexpert.org/institution/8681 -https://www.oceanexpert.org/expert/42450 -https://www.oceanexpert.org/expert/42562 -https://www.oceanexpert.org/expert/17291 -https://www.oceanexpert.org/event/2759 -https://www.oceanexpert.org/expert/32547 -https://www.oceanexpert.org/expert/27235 -https://www.oceanexpert.org/institution/10596 -https://www.oceanexpert.org/event/2382 -https://www.oceanexpert.org/expert/13297 -https://www.oceanexpert.org/institution/20613 -https://www.oceanexpert.org/institution/18351 -https://www.oceanexpert.org/institution/10026 -https://www.oceanexpert.org/institution/21415 -https://www.oceanexpert.org/expert/37588 -https://www.oceanexpert.org/institution/18881 -https://www.oceanexpert.org/institution/21655 -https://www.oceanexpert.org/expert/45778 -https://www.oceanexpert.org/institution/20877 -https://www.oceanexpert.org/expert/26868 -https://www.oceanexpert.org/expert/23882 -https://www.oceanexpert.org/event/108 -https://www.oceanexpert.org/expert/43147 -https://www.oceanexpert.org/expert/34992 -https://www.oceanexpert.org/institution/13004 -https://www.oceanexpert.org/event/2229 -https://www.oceanexpert.org/expert/3383 -https://www.oceanexpert.org/expert/1433 -https://www.oceanexpert.org/expert/12525 -https://www.oceanexpert.org/expert/48960 -https://www.oceanexpert.org/institution/20199 -https://www.oceanexpert.org/institution/14286 -https://www.oceanexpert.org/expert/25004 -https://www.oceanexpert.org/expert/18557 -https://www.oceanexpert.org/institution/7759 -https://www.oceanexpert.org/expert/30011 -https://www.oceanexpert.org/event/1614 -https://www.oceanexpert.org/event/1308 -https://www.oceanexpert.org/expert/38910 -https://www.oceanexpert.org/institution/13262 -https://www.oceanexpert.org/expert/35151 -https://www.oceanexpert.org/event/713 -https://www.oceanexpert.org/expert/26468 -https://www.oceanexpert.org/expert/6736 -https://www.oceanexpert.org/expert/37575 -https://www.oceanexpert.org/expert/37139 -https://www.oceanexpert.org/expert/22246 -https://www.oceanexpert.org/event/954 -https://www.oceanexpert.org/institution/22102 -https://www.oceanexpert.org/institution/13953 -https://www.oceanexpert.org/expert/37060 -https://www.oceanexpert.org/expert/22630 -https://www.oceanexpert.org/expert/38248 -https://www.oceanexpert.org/expert/20192 -https://www.oceanexpert.org/institution/19884 -https://www.oceanexpert.org/event/1393 -https://www.oceanexpert.org/expert/2643 -https://www.oceanexpert.org/institution/14115 -https://www.oceanexpert.org/institution/22024 -https://www.oceanexpert.org/expert/25472 -https://www.oceanexpert.org/expert/44859 -https://www.oceanexpert.org/institution/18692 -https://www.oceanexpert.org/expert/25118 -https://www.oceanexpert.org/expert/44494 -https://www.oceanexpert.org/institution/11864 -https://www.oceanexpert.org/institution/17198 -https://www.oceanexpert.org/institution/14681 -https://www.oceanexpert.org/expert/18298 -https://www.oceanexpert.org/expert/46188 -https://www.oceanexpert.org/event/2038 -https://www.oceanexpert.org/expert/44079 -https://www.oceanexpert.org/institution/19479 -https://www.oceanexpert.org/event/1243 -https://www.oceanexpert.org/expert/21712 -https://www.oceanexpert.org/expert/28210 -https://www.oceanexpert.org/expert/26487 -https://www.oceanexpert.org/event/2311 -https://www.oceanexpert.org/expert/25772 -https://www.oceanexpert.org/expert/36881 -https://www.oceanexpert.org/expert/43211 -https://www.oceanexpert.org/institution/14268 -https://www.oceanexpert.org/expert/2283 -https://www.oceanexpert.org/expert/38111 -https://www.oceanexpert.org/expert/24452 -https://www.oceanexpert.org/expert/30177 -https://www.oceanexpert.org/expert/48014 -https://www.oceanexpert.org/expert/47966 -https://www.oceanexpert.org/expert/6624 -https://www.oceanexpert.org/expert/21856 -https://www.oceanexpert.org/expert/6904 -https://www.oceanexpert.org/expert/14745 -https://www.oceanexpert.org/expert/19069 -https://www.oceanexpert.org/expert/16870 -https://www.oceanexpert.org/expert/13019 -https://www.oceanexpert.org/expert/16155 -https://www.oceanexpert.org/event/2544 -https://www.oceanexpert.org/expert/31938 -https://www.oceanexpert.org/expert/24029 -https://www.oceanexpert.org/institution/21545 -https://www.oceanexpert.org/expert/41992 -https://www.oceanexpert.org/institution/10607 -https://www.oceanexpert.org/event/747 -https://www.oceanexpert.org/expert/39131 -https://www.oceanexpert.org/expert/39393 -https://www.oceanexpert.org/expert/44244 -https://www.oceanexpert.org/institution/18188 -https://www.oceanexpert.org/institution/18647 -https://www.oceanexpert.org/institution/15526 -https://www.oceanexpert.org/expert/18348 -https://www.oceanexpert.org/expert/35663 -https://www.oceanexpert.org/expert/35563 -https://www.oceanexpert.org/expert/34749 -https://www.oceanexpert.org/expert/1166 -https://www.oceanexpert.org/expert/27483 -https://www.oceanexpert.org/expert/25992 -https://www.oceanexpert.org/expert/18002 -https://www.oceanexpert.org/expert/18122 -https://www.oceanexpert.org/expert/38939 -https://www.oceanexpert.org/expert/31036 -https://www.oceanexpert.org/expert/49007 -https://www.oceanexpert.org/expert/36131 -https://www.oceanexpert.org/expert/43360 -https://www.oceanexpert.org/expert/36216 -https://www.oceanexpert.org/institution/15992 -https://www.oceanexpert.org/expert/24603 -https://www.oceanexpert.org/expert/40892 -https://www.oceanexpert.org/expert/23836 -https://www.oceanexpert.org/expert/28222 -https://www.oceanexpert.org/expert/39193 -https://www.oceanexpert.org/expert/16266 -https://www.oceanexpert.org/expert/36845 -https://www.oceanexpert.org/expert/15367 -https://www.oceanexpert.org/institution/18990 -https://www.oceanexpert.org/event/2551 -https://www.oceanexpert.org/expert/2629 -https://www.oceanexpert.org/institution/16101 -https://www.oceanexpert.org/expert/46571 -https://www.oceanexpert.org/expert/46916 -https://www.oceanexpert.org/expert/16955 -https://www.oceanexpert.org/expert/35646 -https://www.oceanexpert.org/expert/1445 -https://www.oceanexpert.org/event/1846 -https://www.oceanexpert.org/institution/19312 -https://www.oceanexpert.org/expert/35118 -https://www.oceanexpert.org/expert/22532 -https://www.oceanexpert.org/institution/6225 -https://www.oceanexpert.org/expert/7312 -https://www.oceanexpert.org/expert/16843 -https://www.oceanexpert.org/expert/11914 -https://www.oceanexpert.org/institution/16761 -https://www.oceanexpert.org/institution/21313 -https://www.oceanexpert.org/institution/20356 -https://www.oceanexpert.org/expert/21534 -https://www.oceanexpert.org/institution/20010 -https://www.oceanexpert.org/institution/18708 -https://www.oceanexpert.org/expert/27565 -https://www.oceanexpert.org/expert/33336 -https://www.oceanexpert.org/expert/29839 -https://www.oceanexpert.org/institution/15498 -https://www.oceanexpert.org/expert/13398 -https://www.oceanexpert.org/expert/44921 -https://www.oceanexpert.org/institution/18656 -https://www.oceanexpert.org/expert/47734 -https://www.oceanexpert.org/expert/14835 -https://www.oceanexpert.org/event/1779 -https://www.oceanexpert.org/institution/14116 -https://www.oceanexpert.org/institution/9057 -https://www.oceanexpert.org/expert/32605 -https://www.oceanexpert.org/institution/18329 -https://www.oceanexpert.org/expert/11047 -https://www.oceanexpert.org/expert/6869 -https://www.oceanexpert.org/expert/31817 -https://www.oceanexpert.org/expert/866 -https://www.oceanexpert.org/expert/34625 -https://www.oceanexpert.org/expert/24047 -https://www.oceanexpert.org/event/1261 -https://www.oceanexpert.org/expert/42892 -https://www.oceanexpert.org/expert/46974 -https://www.oceanexpert.org/expert/13519 -https://www.oceanexpert.org/event/1289 -https://www.oceanexpert.org/institution/18580 -https://www.oceanexpert.org/expert/43817 -https://www.oceanexpert.org/expert/821 -https://www.oceanexpert.org/institution/12789 -https://www.oceanexpert.org/expert/37127 -https://www.oceanexpert.org/expert/28083 -https://www.oceanexpert.org/institution/7643 -https://www.oceanexpert.org/institution/17884 -https://www.oceanexpert.org/institution/15860 -https://www.oceanexpert.org/expert/39919 -https://www.oceanexpert.org/event/163 -https://www.oceanexpert.org/expert/43068 -https://www.oceanexpert.org/institution/19541 -https://www.oceanexpert.org/expert/34993 -https://www.oceanexpert.org/expert/48878 -https://www.oceanexpert.org/expert/38116 -https://www.oceanexpert.org/institution/11769 -https://www.oceanexpert.org/institution/21163 -https://www.oceanexpert.org/expert/38555 -https://www.oceanexpert.org/expert/34901 -https://www.oceanexpert.org/expert/42588 -https://www.oceanexpert.org/event/2562 -https://www.oceanexpert.org/expert/43867 -https://www.oceanexpert.org/expert/41035 -https://www.oceanexpert.org/expert/47046 -https://www.oceanexpert.org/expert/18797 -https://www.oceanexpert.org/event/2140 -https://www.oceanexpert.org/expert/3155 -https://www.oceanexpert.org/expert/28172 -https://www.oceanexpert.org/institution/13654 -https://www.oceanexpert.org/expert/19344 -https://www.oceanexpert.org/expert/20874 -https://www.oceanexpert.org/event/1889 -https://www.oceanexpert.org/event/1819 -https://www.oceanexpert.org/expert/42483 -https://www.oceanexpert.org/expert/43240 -https://www.oceanexpert.org/expert/48831 -https://www.oceanexpert.org/expert/45631 -https://www.oceanexpert.org/event/1719 -https://www.oceanexpert.org/institution/8928 -https://www.oceanexpert.org/expert/37662 -https://www.oceanexpert.org/event/2034 -https://www.oceanexpert.org/event/670 -https://www.oceanexpert.org/event/1065 -https://www.oceanexpert.org/event/596 -https://www.oceanexpert.org/expert/2060 -https://www.oceanexpert.org/institution/20997 -https://www.oceanexpert.org/event/194 -https://www.oceanexpert.org/expert/46719 -https://www.oceanexpert.org/institution/18411 -https://www.oceanexpert.org/expert/37004 -https://www.oceanexpert.org/expert/18998 -https://www.oceanexpert.org/expert/46260 -https://www.oceanexpert.org/expert/43476 -https://www.oceanexpert.org/expert/22029 -https://www.oceanexpert.org/expert/27610 -https://www.oceanexpert.org/expert/49033 -https://www.oceanexpert.org/expert/17991 -https://www.oceanexpert.org/event/1055 -https://www.oceanexpert.org/expert/24296 -https://www.oceanexpert.org/institution/18568 -https://www.oceanexpert.org/expert/195 -https://www.oceanexpert.org/expert/26116 -https://www.oceanexpert.org/expert/22777 -https://www.oceanexpert.org/institution/21157 -https://www.oceanexpert.org/expert/47434 -https://www.oceanexpert.org/institution/12660 -https://www.oceanexpert.org/event/2018 -https://www.oceanexpert.org/expert/32551 -https://www.oceanexpert.org/institution/19810 -https://www.oceanexpert.org/institution/11761 -https://www.oceanexpert.org/institution/22097 -https://www.oceanexpert.org/institution/18959 -https://www.oceanexpert.org/expert/45567 -https://www.oceanexpert.org/expert/27121 -https://www.oceanexpert.org/expert/15955 -https://www.oceanexpert.org/expert/17231 -https://www.oceanexpert.org/expert/19124 -https://www.oceanexpert.org/event/1588 -https://www.oceanexpert.org/expert/19774 -https://www.oceanexpert.org/institution/13951 -https://www.oceanexpert.org/event/1089 -https://www.oceanexpert.org/expert/26186 -https://www.oceanexpert.org/expert/44581 -https://www.oceanexpert.org/expert/37482 -https://www.oceanexpert.org/expert/48295 -https://www.oceanexpert.org/expert/16837 -https://www.oceanexpert.org/institution/20169 -https://www.oceanexpert.org/expert/23423 -https://www.oceanexpert.org/institution/13673 -https://www.oceanexpert.org/event/2159 -https://www.oceanexpert.org/event/2350 -https://www.oceanexpert.org/event/2011 -https://www.oceanexpert.org/expert/32372 -https://www.oceanexpert.org/expert/44448 -https://www.oceanexpert.org/expert/47814 -https://www.oceanexpert.org/expert/25891 -https://www.oceanexpert.org/institution/14955 -https://www.oceanexpert.org/institution/16885 -https://www.oceanexpert.org/expert/25237 -https://www.oceanexpert.org/expert/48980 -https://www.oceanexpert.org/expert/48254 -https://www.oceanexpert.org/institution/14357 -https://www.oceanexpert.org/event/2526 -https://www.oceanexpert.org/expert/20957 -https://www.oceanexpert.org/expert/14430 -https://www.oceanexpert.org/expert/42548 -https://www.oceanexpert.org/expert/43805 -https://www.oceanexpert.org/expert/36537 -https://www.oceanexpert.org/event/2097 -https://www.oceanexpert.org/expert/43293 -https://www.oceanexpert.org/expert/28973 -https://www.oceanexpert.org/expert/42427 -https://www.oceanexpert.org/event/1208 -https://www.oceanexpert.org/institution/13577 -https://www.oceanexpert.org/expert/35917 -https://www.oceanexpert.org/expert/34857 -https://www.oceanexpert.org/institution/11118 -https://www.oceanexpert.org/expert/30995 -https://www.oceanexpert.org/expert/29571 -https://www.oceanexpert.org/expert/122 -https://www.oceanexpert.org/institution/8613 -https://www.oceanexpert.org/expert/33111 -https://www.oceanexpert.org/event/3031 -https://www.oceanexpert.org/expert/36772 -https://www.oceanexpert.org/expert/24331 -https://www.oceanexpert.org/expert/7067 -https://www.oceanexpert.org/expert/46949 -https://www.oceanexpert.org/event/804 -https://www.oceanexpert.org/expert/45472 -https://www.oceanexpert.org/expert/43566 -https://www.oceanexpert.org/expert/25175 -https://www.oceanexpert.org/expert/47195 -https://www.oceanexpert.org/institution/15595 -https://www.oceanexpert.org/institution/18077 -https://www.oceanexpert.org/institution/20666 -https://www.oceanexpert.org/institution/21952 -https://www.oceanexpert.org/expert/34013 -https://www.oceanexpert.org/expert/48821 -https://www.oceanexpert.org/expert/45820 -https://www.oceanexpert.org/institution/16472 -https://www.oceanexpert.org/expert/35424 -https://www.oceanexpert.org/expert/48181 -https://www.oceanexpert.org/expert/35007 -https://www.oceanexpert.org/institution/19029 -https://www.oceanexpert.org/institution/19620 -https://www.oceanexpert.org/institution/9838 -https://www.oceanexpert.org/expert/18626 -https://www.oceanexpert.org/expert/43439 -https://www.oceanexpert.org/expert/45182 -https://www.oceanexpert.org/expert/14790 -https://www.oceanexpert.org/expert/34609 -https://www.oceanexpert.org/expert/47398 -https://www.oceanexpert.org/expert/17306 -https://www.oceanexpert.org/event/3065 -https://www.oceanexpert.org/expert/46762 -https://www.oceanexpert.org/institution/21335 -https://www.oceanexpert.org/institution/13684 -https://www.oceanexpert.org/expert/37864 -https://www.oceanexpert.org/expert/21506 -https://www.oceanexpert.org/expert/46195 -https://www.oceanexpert.org/expert/45992 -https://www.oceanexpert.org/institution/16376 -https://www.oceanexpert.org/expert/23897 -https://www.oceanexpert.org/institution/7410 -https://www.oceanexpert.org/expert/17430 -https://www.oceanexpert.org/event/3283 -https://www.oceanexpert.org/expert/26951 -https://www.oceanexpert.org/expert/25565 -https://www.oceanexpert.org/expert/33767 -https://www.oceanexpert.org/event/2139 -https://www.oceanexpert.org/expert/24864 -https://www.oceanexpert.org/expert/34638 -https://www.oceanexpert.org/event/2211 -https://www.oceanexpert.org/expert/11461 -https://www.oceanexpert.org/expert/46575 -https://www.oceanexpert.org/expert/47122 -https://www.oceanexpert.org/expert/26152 -https://www.oceanexpert.org/institution/4893 -https://www.oceanexpert.org/expert/42060 -https://www.oceanexpert.org/expert/29484 -https://www.oceanexpert.org/expert/17588 -https://www.oceanexpert.org/event/44 -https://www.oceanexpert.org/expert/47980 -https://www.oceanexpert.org/expert/23794 -https://www.oceanexpert.org/expert/26252 -https://www.oceanexpert.org/expert/36797 -https://www.oceanexpert.org/institution/19758 -https://www.oceanexpert.org/institution/15812 -https://www.oceanexpert.org/institution/6849 -https://www.oceanexpert.org/expert/33084 -https://www.oceanexpert.org/expert/46422 -https://www.oceanexpert.org/expert/14864 -https://www.oceanexpert.org/expert/22277 -https://www.oceanexpert.org/expert/21329 -https://www.oceanexpert.org/event/1973 -https://www.oceanexpert.org/expert/47497 -https://www.oceanexpert.org/expert/27580 -https://www.oceanexpert.org/institution/17346 -https://www.oceanexpert.org/expert/45143 -https://www.oceanexpert.org/expert/33387 -https://www.oceanexpert.org/expert/44074 -https://www.oceanexpert.org/expert/33925 -https://www.oceanexpert.org/institution/12230 -https://www.oceanexpert.org/expert/34783 -https://www.oceanexpert.org/event/2993 -https://www.oceanexpert.org/event/1685 -https://www.oceanexpert.org/expert/26060 -https://www.oceanexpert.org/expert/23058 -https://www.oceanexpert.org/expert/12620 -https://www.oceanexpert.org/expert/47572 -https://www.oceanexpert.org/institution/21820 -https://www.oceanexpert.org/expert/43427 -https://www.oceanexpert.org/institution/11839 -https://www.oceanexpert.org/institution/18902 -https://www.oceanexpert.org/expert/33349 -https://www.oceanexpert.org/expert/14169 -https://www.oceanexpert.org/expert/26941 -https://www.oceanexpert.org/institution/11235 -https://www.oceanexpert.org/event/478 -https://www.oceanexpert.org/institution/12031 -https://www.oceanexpert.org/institution/14920 -https://www.oceanexpert.org/institution/19041 -https://www.oceanexpert.org/expert/20031 -https://www.oceanexpert.org/institution/21165 -https://www.oceanexpert.org/expert/33368 -https://www.oceanexpert.org/expert/30556 -https://www.oceanexpert.org/expert/22901 -https://www.oceanexpert.org/expert/26414 -https://www.oceanexpert.org/expert/25985 -https://www.oceanexpert.org/expert/11577 -https://www.oceanexpert.org/expert/18624 -https://www.oceanexpert.org/expert/17208 -https://www.oceanexpert.org/expert/26878 -https://www.oceanexpert.org/expert/43073 -https://www.oceanexpert.org/institution/6195 -https://www.oceanexpert.org/expert/13159 -https://www.oceanexpert.org/expert/47864 -https://www.oceanexpert.org/expert/18876 -https://www.oceanexpert.org/expert/17629 -https://www.oceanexpert.org/expert/31071 -https://www.oceanexpert.org/expert/44001 -https://www.oceanexpert.org/expert/35997 -https://www.oceanexpert.org/expert/39329 -https://www.oceanexpert.org/institution/15109 -https://www.oceanexpert.org/expert/45747 -https://www.oceanexpert.org/expert/47693 -https://www.oceanexpert.org/event/282 -https://www.oceanexpert.org/expert/42746 -https://www.oceanexpert.org/institution/11695 -https://www.oceanexpert.org/expert/44952 -https://www.oceanexpert.org/expert/23877 -https://www.oceanexpert.org/expert/31018 -https://www.oceanexpert.org/institution/19490 -https://www.oceanexpert.org/expert/30453 -https://www.oceanexpert.org/expert/13369 -https://www.oceanexpert.org/expert/42415 -https://www.oceanexpert.org/expert/54 -https://www.oceanexpert.org/institution/21285 -https://www.oceanexpert.org/expert/47683 -https://www.oceanexpert.org/expert/34713 -https://www.oceanexpert.org/expert/26348 -https://www.oceanexpert.org/expert/19618 -https://www.oceanexpert.org/institution/11075 -https://www.oceanexpert.org/event/634 -https://www.oceanexpert.org/event/3070 -https://www.oceanexpert.org/expert/31213 -https://www.oceanexpert.org/expert/24102 -https://www.oceanexpert.org/institution/17645 -https://www.oceanexpert.org/expert/27600 -https://www.oceanexpert.org/expert/47155 -https://www.oceanexpert.org/expert/16659 -https://www.oceanexpert.org/institution/19333 -https://www.oceanexpert.org/expert/34766 -https://www.oceanexpert.org/event/1074 -https://www.oceanexpert.org/institution/5747 -https://www.oceanexpert.org/expert/20032 -https://www.oceanexpert.org/expert/18689 -https://www.oceanexpert.org/expert/19591 -https://www.oceanexpert.org/expert/27350 -https://www.oceanexpert.org/expert/28311 -https://www.oceanexpert.org/event/1583 -https://www.oceanexpert.org/expert/48270 -https://www.oceanexpert.org/event/1774 -https://www.oceanexpert.org/institution/17436 -https://www.oceanexpert.org/expert/20067 -https://www.oceanexpert.org/expert/20324 -https://www.oceanexpert.org/expert/35035 -https://www.oceanexpert.org/event/2129 -https://www.oceanexpert.org/institution/21686 -https://www.oceanexpert.org/expert/22383 -https://www.oceanexpert.org/institution/19182 -https://www.oceanexpert.org/institution/19314 -https://www.oceanexpert.org/institution/6030 -https://www.oceanexpert.org/institution/20945 -https://www.oceanexpert.org/institution/10176 -https://www.oceanexpert.org/expert/43716 -https://www.oceanexpert.org/event/2453 -https://www.oceanexpert.org/expert/5519 -https://www.oceanexpert.org/event/2440 -https://www.oceanexpert.org/expert/35207 -https://www.oceanexpert.org/institution/8599 -https://www.oceanexpert.org/expert/45169 -https://www.oceanexpert.org/institution/18929 -https://www.oceanexpert.org/expert/22056 -https://www.oceanexpert.org/expert/43475 -https://www.oceanexpert.org/expert/18738 -https://www.oceanexpert.org/expert/43391 -https://www.oceanexpert.org/expert/6791 -https://www.oceanexpert.org/expert/36224 -https://www.oceanexpert.org/expert/27400 -https://www.oceanexpert.org/expert/18352 -https://www.oceanexpert.org/expert/37365 -https://www.oceanexpert.org/expert/16045 -https://www.oceanexpert.org/expert/37661 -https://www.oceanexpert.org/expert/21923 -https://www.oceanexpert.org/expert/45303 -https://www.oceanexpert.org/expert/31945 -https://www.oceanexpert.org/expert/42828 -https://www.oceanexpert.org/expert/45143 -https://www.oceanexpert.org/expert/29110 -https://www.oceanexpert.org/expert/20600 -https://www.oceanexpert.org/expert/46918 -https://www.oceanexpert.org/expert/48109 -https://www.oceanexpert.org/expert/36776 -https://www.oceanexpert.org/expert/47086 -https://www.oceanexpert.org/expert/16901 -https://www.oceanexpert.org/expert/34597 -https://www.oceanexpert.org/expert/27787 -https://www.oceanexpert.org/expert/17566 -https://www.oceanexpert.org/expert/23266 -https://www.oceanexpert.org/expert/17816 -https://www.oceanexpert.org/expert/18050 -https://www.oceanexpert.org/expert/24996 -https://www.oceanexpert.org/expert/28880 -https://www.oceanexpert.org/expert/43106 -https://www.oceanexpert.org/event/874 -https://www.oceanexpert.org/event/445 -https://www.oceanexpert.org/institution/17126 -https://www.oceanexpert.org/institution/22095 -https://www.oceanexpert.org/expert/22440 -https://www.oceanexpert.org/expert/18990 -https://www.oceanexpert.org/expert/46708 -https://www.oceanexpert.org/expert/38057 -https://www.oceanexpert.org/expert/19124 -https://www.oceanexpert.org/expert/37463 -https://www.oceanexpert.org/expert/43896 -https://www.oceanexpert.org/event/1168 -https://www.oceanexpert.org/expert/36412 -https://www.oceanexpert.org/expert/6332 -https://www.oceanexpert.org/institution/10401 -https://www.oceanexpert.org/expert/30636 -https://www.oceanexpert.org/institution/10084 -https://www.oceanexpert.org/expert/36040 -https://www.oceanexpert.org/expert/42864 -https://www.oceanexpert.org/institution/14365 -https://www.oceanexpert.org/event/3163 -https://www.oceanexpert.org/institution/17842 -https://www.oceanexpert.org/expert/32053 -https://www.oceanexpert.org/expert/30748 -https://www.oceanexpert.org/institution/18685 -https://www.oceanexpert.org/expert/43240 -https://www.oceanexpert.org/event/2329 -https://www.oceanexpert.org/expert/4565 -https://www.oceanexpert.org/expert/17641 -https://www.oceanexpert.org/expert/18489 -https://www.oceanexpert.org/expert/35428 -https://www.oceanexpert.org/expert/23783 -https://www.oceanexpert.org/expert/1332 -https://www.oceanexpert.org/expert/30940 -https://www.oceanexpert.org/institution/21557 -https://www.oceanexpert.org/expert/43304 -https://www.oceanexpert.org/event/2155 -https://www.oceanexpert.org/expert/22797 -https://www.oceanexpert.org/expert/18639 -https://www.oceanexpert.org/expert/44755 -https://www.oceanexpert.org/expert/38005 -https://www.oceanexpert.org/institution/21063 -https://www.oceanexpert.org/institution/12845 -https://www.oceanexpert.org/expert/9527 -https://www.oceanexpert.org/expert/45594 -https://www.oceanexpert.org/expert/16128 -https://www.oceanexpert.org/expert/19159 -https://www.oceanexpert.org/event/1773 -https://www.oceanexpert.org/expert/37234 -https://www.oceanexpert.org/expert/13499 -https://www.oceanexpert.org/expert/44226 -https://www.oceanexpert.org/expert/19387 -https://www.oceanexpert.org/institution/20687 -https://www.oceanexpert.org/event/1370 -https://www.oceanexpert.org/expert/37417 -https://www.oceanexpert.org/expert/48466 -https://www.oceanexpert.org/expert/26390 -https://www.oceanexpert.org/expert/30173 -https://www.oceanexpert.org/expert/39978 -https://www.oceanexpert.org/event/2485 -https://www.oceanexpert.org/institution/21134 -https://www.oceanexpert.org/expert/43433 -https://www.oceanexpert.org/expert/29232 -https://www.oceanexpert.org/institution/18269 -https://www.oceanexpert.org/expert/16158 -https://www.oceanexpert.org/expert/16409 -https://www.oceanexpert.org/expert/15538 -https://www.oceanexpert.org/expert/47723 -https://www.oceanexpert.org/expert/24087 -https://www.oceanexpert.org/expert/24494 -https://www.oceanexpert.org/event/1750 -https://www.oceanexpert.org/event/2743 -https://www.oceanexpert.org/expert/20500 -https://www.oceanexpert.org/institution/10054 -https://www.oceanexpert.org/institution/9012 -https://www.oceanexpert.org/expert/27477 -https://www.oceanexpert.org/institution/14095 -https://www.oceanexpert.org/institution/10765 -https://www.oceanexpert.org/expert/44152 -https://www.oceanexpert.org/expert/13485 -https://www.oceanexpert.org/expert/48204 -https://www.oceanexpert.org/expert/28240 -https://www.oceanexpert.org/institution/20740 -https://www.oceanexpert.org/institution/19174 -https://www.oceanexpert.org/expert/34714 -https://www.oceanexpert.org/institution/21993 -https://www.oceanexpert.org/expert/30203 -https://www.oceanexpert.org/expert/7375 -https://www.oceanexpert.org/institution/22138 -https://www.oceanexpert.org/event/161 -https://www.oceanexpert.org/expert/23344 -https://www.oceanexpert.org/expert/28410 -https://www.oceanexpert.org/expert/22973 -https://www.oceanexpert.org/expert/20315 -https://www.oceanexpert.org/expert/10959 -https://www.oceanexpert.org/expert/4337 -https://www.oceanexpert.org/institution/16483 -https://www.oceanexpert.org/institution/21590 -https://www.oceanexpert.org/expert/44506 -https://www.oceanexpert.org/event/1726 -https://www.oceanexpert.org/expert/42425 -https://www.oceanexpert.org/expert/35071 -https://www.oceanexpert.org/expert/30181 -https://www.oceanexpert.org/expert/48611 -https://www.oceanexpert.org/expert/13596 -https://www.oceanexpert.org/expert/37073 -https://www.oceanexpert.org/institution/11430 -https://www.oceanexpert.org/expert/43621 -https://www.oceanexpert.org/expert/47332 -https://www.oceanexpert.org/institution/22081 -https://www.oceanexpert.org/expert/15554 -https://www.oceanexpert.org/expert/44969 -https://www.oceanexpert.org/institution/18958 -https://www.oceanexpert.org/expert/43978 -https://www.oceanexpert.org/institution/5832 -https://www.oceanexpert.org/institution/21498 -https://www.oceanexpert.org/expert/49044 -https://www.oceanexpert.org/institution/10168 -https://www.oceanexpert.org/institution/21276 -https://www.oceanexpert.org/institution/21573 -https://www.oceanexpert.org/institution/21452 -https://www.oceanexpert.org/expert/7749 -https://www.oceanexpert.org/expert/37052 -https://www.oceanexpert.org/institution/20875 -https://www.oceanexpert.org/expert/43979 -https://www.oceanexpert.org/expert/3200 -https://www.oceanexpert.org/expert/6788 -https://www.oceanexpert.org/expert/45811 -https://www.oceanexpert.org/expert/40292 -https://www.oceanexpert.org/event/928 -https://www.oceanexpert.org/institution/21950 -https://www.oceanexpert.org/expert/26680 -https://www.oceanexpert.org/expert/36183 -https://www.oceanexpert.org/event/1166 -https://www.oceanexpert.org/expert/22458 -https://www.oceanexpert.org/institution/18686 -https://www.oceanexpert.org/institution/22174 -https://www.oceanexpert.org/expert/30065 -https://www.oceanexpert.org/expert/19908 -https://www.oceanexpert.org/expert/27531 -https://www.oceanexpert.org/expert/21536 -https://www.oceanexpert.org/institution/22004 -https://www.oceanexpert.org/expert/26247 -https://www.oceanexpert.org/expert/35655 -https://www.oceanexpert.org/expert/26412 -https://www.oceanexpert.org/event/2775 -https://www.oceanexpert.org/expert/29197 -https://www.oceanexpert.org/expert/46643 -https://www.oceanexpert.org/expert/35002 -https://www.oceanexpert.org/institution/18506 -https://www.oceanexpert.org/institution/5421 -https://www.oceanexpert.org/institution/20341 -https://www.oceanexpert.org/institution/18648 -https://www.oceanexpert.org/expert/48153 -https://www.oceanexpert.org/expert/28493 -https://www.oceanexpert.org/expert/20643 -https://www.oceanexpert.org/expert/545 -https://www.oceanexpert.org/event/1692 -https://www.oceanexpert.org/expert/39518 -https://www.oceanexpert.org/expert/23481 -https://www.oceanexpert.org/expert/10444 -https://www.oceanexpert.org/expert/18397 -https://www.oceanexpert.org/expert/48600 -https://www.oceanexpert.org/expert/39327 -https://www.oceanexpert.org/institution/21123 -https://www.oceanexpert.org/expert/23800 -https://www.oceanexpert.org/institution/19051 -https://www.oceanexpert.org/expert/25811 -https://www.oceanexpert.org/expert/9085 -https://www.oceanexpert.org/expert/43297 -https://www.oceanexpert.org/institution/15802 -https://www.oceanexpert.org/expert/23195 -https://www.oceanexpert.org/expert/23286 -https://www.oceanexpert.org/expert/47708 -https://www.oceanexpert.org/institution/9179 -https://www.oceanexpert.org/expert/48526 -https://www.oceanexpert.org/institution/10298 -https://www.oceanexpert.org/expert/23281 -https://www.oceanexpert.org/expert/34762 -https://www.oceanexpert.org/expert/21239 -https://www.oceanexpert.org/expert/34376 -https://www.oceanexpert.org/institution/21018 -https://www.oceanexpert.org/expert/13539 -https://www.oceanexpert.org/expert/16066 -https://www.oceanexpert.org/expert/20626 -https://www.oceanexpert.org/institution/14719 -https://www.oceanexpert.org/expert/18599 -https://www.oceanexpert.org/institution/16121 -https://www.oceanexpert.org/institution/20786 -https://www.oceanexpert.org/expert/12086 -https://www.oceanexpert.org/expert/12314 -https://www.oceanexpert.org/expert/24280 -https://www.oceanexpert.org/expert/25164 -https://www.oceanexpert.org/expert/19684 -https://www.oceanexpert.org/expert/18512 -https://www.oceanexpert.org/expert/33131 -https://www.oceanexpert.org/institution/20649 -https://www.oceanexpert.org/expert/37316 -https://www.oceanexpert.org/expert/44546 -https://www.oceanexpert.org/expert/22396 -https://www.oceanexpert.org/expert/46385 -https://www.oceanexpert.org/institution/16367 -https://www.oceanexpert.org/expert/26959 -https://www.oceanexpert.org/expert/47348 -https://www.oceanexpert.org/event/1914 -https://www.oceanexpert.org/institution/16357 -https://www.oceanexpert.org/expert/11214 -https://www.oceanexpert.org/expert/48184 -https://www.oceanexpert.org/institution/16309 -https://www.oceanexpert.org/expert/32559 -https://www.oceanexpert.org/expert/35164 -https://www.oceanexpert.org/expert/29695 -https://www.oceanexpert.org/expert/31768 -https://www.oceanexpert.org/institution/19578 -https://www.oceanexpert.org/institution/17473 -https://www.oceanexpert.org/expert/21893 -https://www.oceanexpert.org/expert/48457 -https://www.oceanexpert.org/expert/20562 -https://www.oceanexpert.org/institution/18459 -https://www.oceanexpert.org/expert/32848 -https://www.oceanexpert.org/institution/19579 -https://www.oceanexpert.org/expert/26712 -https://www.oceanexpert.org/expert/16619 -https://www.oceanexpert.org/institution/12155 -https://www.oceanexpert.org/expert/13137 -https://www.oceanexpert.org/institution/20098 -https://www.oceanexpert.org/institution/17153 -https://www.oceanexpert.org/expert/45104 -https://www.oceanexpert.org/expert/21990 -https://www.oceanexpert.org/event/2190 -https://www.oceanexpert.org/expert/30366 -https://www.oceanexpert.org/expert/26502 -https://www.oceanexpert.org/event/3015 -https://www.oceanexpert.org/expert/27356 -https://www.oceanexpert.org/expert/35988 -https://www.oceanexpert.org/expert/35399 -https://www.oceanexpert.org/expert/43790 -https://www.oceanexpert.org/expert/43360 -https://www.oceanexpert.org/expert/31508 -https://www.oceanexpert.org/institution/5208 -https://www.oceanexpert.org/expert/22369 -https://www.oceanexpert.org/expert/23780 -https://www.oceanexpert.org/expert/25995 -https://www.oceanexpert.org/expert/20657 -https://www.oceanexpert.org/expert/19849 -https://www.oceanexpert.org/expert/37914 -https://www.oceanexpert.org/institution/7534 -https://www.oceanexpert.org/expert/8518 -https://www.oceanexpert.org/event/2815 -https://www.oceanexpert.org/institution/17440 -https://www.oceanexpert.org/institution/18614 -https://www.oceanexpert.org/expert/37936 -https://www.oceanexpert.org/expert/36401 -https://www.oceanexpert.org/expert/32540 -https://www.oceanexpert.org/expert/35634 -https://www.oceanexpert.org/expert/25774 -https://www.oceanexpert.org/institution/11860 -https://www.oceanexpert.org/expert/37382 -https://www.oceanexpert.org/institution/19346 -https://www.oceanexpert.org/expert/32479 -https://www.oceanexpert.org/event/2737 -https://www.oceanexpert.org/expert/44999 -https://www.oceanexpert.org/event/2958 -https://www.oceanexpert.org/expert/48542 -https://www.oceanexpert.org/institution/21802 -https://www.oceanexpert.org/expert/44786 -https://www.oceanexpert.org/institution/21896 -https://www.oceanexpert.org/institution/21218 -https://www.oceanexpert.org/expert/14031 -https://www.oceanexpert.org/expert/39316 -https://www.oceanexpert.org/expert/45291 -https://www.oceanexpert.org/expert/40544 -https://www.oceanexpert.org/expert/31002 -https://www.oceanexpert.org/expert/35537 -https://www.oceanexpert.org/expert/46397 -https://www.oceanexpert.org/expert/8555 -https://www.oceanexpert.org/expert/20845 -https://www.oceanexpert.org/institution/21874 -https://www.oceanexpert.org/expert/23600 -https://www.oceanexpert.org/expert/34026 -https://www.oceanexpert.org/expert/27899 -https://www.oceanexpert.org/expert/32862 -https://www.oceanexpert.org/expert/24960 -https://www.oceanexpert.org/expert/27317 -https://www.oceanexpert.org/expert/23461 -https://www.oceanexpert.org/institution/7201 -https://www.oceanexpert.org/event/2912 -https://www.oceanexpert.org/expert/48918 -https://www.oceanexpert.org/institution/19315 -https://www.oceanexpert.org/event/421 -https://www.oceanexpert.org/expert/28507 -https://www.oceanexpert.org/expert/34051 -https://www.oceanexpert.org/expert/27589 -https://www.oceanexpert.org/event/1977 -https://www.oceanexpert.org/event/1848 -https://www.oceanexpert.org/expert/19847 -https://www.oceanexpert.org/expert/42514 -https://www.oceanexpert.org/institution/21060 -https://www.oceanexpert.org/expert/1341 -https://www.oceanexpert.org/event/2900 -https://www.oceanexpert.org/expert/23533 -https://www.oceanexpert.org/expert/30292 -https://www.oceanexpert.org/expert/43012 -https://www.oceanexpert.org/expert/45214 -https://www.oceanexpert.org/expert/34891 -https://www.oceanexpert.org/institution/19643 -https://www.oceanexpert.org/expert/10959 -https://www.oceanexpert.org/institution/14365 -https://www.oceanexpert.org/expert/47070 -https://www.oceanexpert.org/event/552 -https://www.oceanexpert.org/expert/11067 -https://www.oceanexpert.org/expert/29509 -https://www.oceanexpert.org/institution/22062 -https://www.oceanexpert.org/expert/37742 -https://www.oceanexpert.org/expert/26172 -https://www.oceanexpert.org/institution/5198 -https://www.oceanexpert.org/expert/22848 -https://www.oceanexpert.org/institution/9089 -https://www.oceanexpert.org/institution/21289 -https://www.oceanexpert.org/expert/33707 -https://www.oceanexpert.org/institution/13639 -https://www.oceanexpert.org/institution/19090 -https://www.oceanexpert.org/expert/48618 -https://www.oceanexpert.org/institution/7026 -https://www.oceanexpert.org/event/1052 -https://www.oceanexpert.org/institution/20984 -https://www.oceanexpert.org/institution/13118 -https://www.oceanexpert.org/expert/37133 -https://www.oceanexpert.org/expert/30663 -https://www.oceanexpert.org/institution/15762 -https://www.oceanexpert.org/institution/20085 -https://www.oceanexpert.org/event/2866 -https://www.oceanexpert.org/expert/21778 -https://www.oceanexpert.org/institution/18639 -https://www.oceanexpert.org/event/702 -https://www.oceanexpert.org/event/3085 -https://www.oceanexpert.org/expert/7566 -https://www.oceanexpert.org/expert/16643 -https://www.oceanexpert.org/expert/14315 -https://www.oceanexpert.org/expert/37588 -https://www.oceanexpert.org/institution/9651 -https://www.oceanexpert.org/expert/25538 -https://www.oceanexpert.org/expert/48493 -https://www.oceanexpert.org/expert/20710 -https://www.oceanexpert.org/expert/48065 -https://www.oceanexpert.org/expert/34974 -https://www.oceanexpert.org/event/1253 -https://www.oceanexpert.org/expert/45657 -https://www.oceanexpert.org/expert/44517 -https://www.oceanexpert.org/expert/24481 -https://www.oceanexpert.org/expert/38932 -https://www.oceanexpert.org/expert/46624 -https://www.oceanexpert.org/expert/48785 -https://www.oceanexpert.org/institution/11493 -https://www.oceanexpert.org/institution/11365 -https://www.oceanexpert.org/expert/48974 -https://www.oceanexpert.org/institution/15915 -https://www.oceanexpert.org/expert/25070 -https://www.oceanexpert.org/event/2956 -https://www.oceanexpert.org/expert/24099 -https://www.oceanexpert.org/event/303 -https://www.oceanexpert.org/institution/13279 -https://www.oceanexpert.org/expert/23201 -https://www.oceanexpert.org/expert/44733 -https://www.oceanexpert.org/expert/40636 -https://www.oceanexpert.org/event/223 -https://www.oceanexpert.org/expert/22596 -https://www.oceanexpert.org/expert/33703 -https://www.oceanexpert.org/event/81 -https://www.oceanexpert.org/event/735 -https://www.oceanexpert.org/expert/27367 -https://www.oceanexpert.org/expert/27867 -https://www.oceanexpert.org/institution/7263 -https://www.oceanexpert.org/expert/23006 -https://www.oceanexpert.org/expert/2487 -https://www.oceanexpert.org/expert/44076 -https://www.oceanexpert.org/expert/3869 -https://www.oceanexpert.org/expert/22767 -https://www.oceanexpert.org/institution/21515 -https://www.oceanexpert.org/expert/17307 -https://www.oceanexpert.org/institution/12120 -https://www.oceanexpert.org/expert/19470 -https://www.oceanexpert.org/institution/20657 -https://www.oceanexpert.org/expert/48252 -https://www.oceanexpert.org/institution/14251 -https://www.oceanexpert.org/expert/33242 -https://www.oceanexpert.org/expert/43418 -https://www.oceanexpert.org/institution/21932 -https://www.oceanexpert.org/expert/18388 -https://www.oceanexpert.org/expert/33074 -https://www.oceanexpert.org/institution/19856 -https://www.oceanexpert.org/event/1538 -https://www.oceanexpert.org/expert/34607 -https://www.oceanexpert.org/institution/11576 -https://www.oceanexpert.org/expert/37034 -https://www.oceanexpert.org/event/3239 -https://www.oceanexpert.org/expert/8619 -https://www.oceanexpert.org/event/1625 -https://www.oceanexpert.org/institution/19392 -https://www.oceanexpert.org/institution/21193 -https://www.oceanexpert.org/expert/21648 -https://www.oceanexpert.org/expert/47171 -https://www.oceanexpert.org/expert/25934 -https://www.oceanexpert.org/expert/27080 -https://www.oceanexpert.org/expert/43149 -https://www.oceanexpert.org/expert/14147 -https://www.oceanexpert.org/expert/46833 -https://www.oceanexpert.org/expert/24752 -https://www.oceanexpert.org/expert/31103 -https://www.oceanexpert.org/expert/47830 -https://www.oceanexpert.org/expert/24141 -https://www.oceanexpert.org/expert/34286 -https://www.oceanexpert.org/expert/15315 -https://www.oceanexpert.org/institution/22160 -https://www.oceanexpert.org/event/559 -https://www.oceanexpert.org/expert/4267 -https://www.oceanexpert.org/expert/30796 -https://www.oceanexpert.org/expert/45683 -https://www.oceanexpert.org/institution/18153 -https://www.oceanexpert.org/expert/25459 -https://www.oceanexpert.org/expert/38826 -https://www.oceanexpert.org/institution/13124 -https://www.oceanexpert.org/expert/9484 -https://www.oceanexpert.org/expert/24298 -https://www.oceanexpert.org/expert/21352 -https://www.oceanexpert.org/expert/33016 -https://www.oceanexpert.org/institution/13030 -https://www.oceanexpert.org/expert/22499 -https://www.oceanexpert.org/event/1473 -https://www.oceanexpert.org/expert/37846 -https://www.oceanexpert.org/institution/5166 -https://www.oceanexpert.org/expert/26498 -https://www.oceanexpert.org/expert/31187 -https://www.oceanexpert.org/expert/21031 -https://www.oceanexpert.org/expert/38165 -https://www.oceanexpert.org/event/2034 -https://www.oceanexpert.org/institution/14363 -https://www.oceanexpert.org/expert/38406 -https://www.oceanexpert.org/institution/21284 -https://www.oceanexpert.org/institution/20306 -https://www.oceanexpert.org/expert/29916 -https://www.oceanexpert.org/expert/42080 -https://www.oceanexpert.org/expert/36919 -https://www.oceanexpert.org/expert/32876 -https://www.oceanexpert.org/expert/20271 -https://www.oceanexpert.org/institution/17411 -https://www.oceanexpert.org/event/2809 -https://www.oceanexpert.org/expert/36748 -https://www.oceanexpert.org/expert/35213 -https://www.oceanexpert.org/expert/38650 -https://www.oceanexpert.org/expert/42157 -https://www.oceanexpert.org/expert/46314 -https://www.oceanexpert.org/expert/46844 -https://www.oceanexpert.org/institution/11828 -https://www.oceanexpert.org/institution/19503 -https://www.oceanexpert.org/expert/15528 -https://www.oceanexpert.org/expert/16639 -https://www.oceanexpert.org/expert/43472 -https://www.oceanexpert.org/expert/36423 -https://www.oceanexpert.org/expert/38477 -https://www.oceanexpert.org/expert/19746 -https://www.oceanexpert.org/expert/43013 -https://www.oceanexpert.org/expert/36679 -https://www.oceanexpert.org/expert/46204 -https://www.oceanexpert.org/expert/20848 -https://www.oceanexpert.org/expert/47811 -https://www.oceanexpert.org/institution/12864 -https://www.oceanexpert.org/expert/26519 -https://www.oceanexpert.org/expert/24038 -https://www.oceanexpert.org/event/328 -https://www.oceanexpert.org/expert/26590 -https://www.oceanexpert.org/institution/20486 -https://www.oceanexpert.org/expert/19159 -https://www.oceanexpert.org/expert/47075 -https://www.oceanexpert.org/expert/15771 -https://www.oceanexpert.org/expert/26609 -https://www.oceanexpert.org/expert/27323 -https://www.oceanexpert.org/institution/18896 -https://www.oceanexpert.org/expert/20389 -https://www.oceanexpert.org/expert/23042 -https://www.oceanexpert.org/expert/42762 -https://www.oceanexpert.org/institution/17469 -https://www.oceanexpert.org/expert/29660 -https://www.oceanexpert.org/expert/29131 -https://www.oceanexpert.org/expert/35453 -https://www.oceanexpert.org/institution/16997 -https://www.oceanexpert.org/event/2292 -https://www.oceanexpert.org/institution/7922 -https://www.oceanexpert.org/expert/44908 -https://www.oceanexpert.org/event/341 -https://www.oceanexpert.org/institution/15217 -https://www.oceanexpert.org/expert/29954 -https://www.oceanexpert.org/expert/38461 -https://www.oceanexpert.org/expert/122 -https://www.oceanexpert.org/expert/36642 -https://www.oceanexpert.org/expert/26000 -https://www.oceanexpert.org/institution/21990 -https://www.oceanexpert.org/expert/17265 -https://www.oceanexpert.org/expert/31886 -https://www.oceanexpert.org/expert/18242 -https://www.oceanexpert.org/event/1534 -https://www.oceanexpert.org/expert/44071 -https://www.oceanexpert.org/institution/19367 -https://www.oceanexpert.org/institution/12372 -https://www.oceanexpert.org/expert/23784 -https://www.oceanexpert.org/expert/48988 -https://www.oceanexpert.org/expert/19205 -https://www.oceanexpert.org/expert/43268 -https://www.oceanexpert.org/expert/27118 -https://www.oceanexpert.org/institution/20205 -https://www.oceanexpert.org/expert/24226 -https://www.oceanexpert.org/expert/33252 -https://www.oceanexpert.org/expert/39137 -https://www.oceanexpert.org/expert/24532 -https://www.oceanexpert.org/institution/18700 -https://www.oceanexpert.org/expert/46970 -https://www.oceanexpert.org/institution/21358 -https://www.oceanexpert.org/institution/10874 -https://www.oceanexpert.org/institution/13921 -https://www.oceanexpert.org/expert/33803 -https://www.oceanexpert.org/event/1129 -https://www.oceanexpert.org/expert/32184 -https://www.oceanexpert.org/expert/20151 -https://www.oceanexpert.org/expert/47235 -https://www.oceanexpert.org/institution/20509 -https://www.oceanexpert.org/event/453 -https://www.oceanexpert.org/expert/35444 -https://www.oceanexpert.org/expert/18469 -https://www.oceanexpert.org/expert/7162 -https://www.oceanexpert.org/expert/19195 -https://www.oceanexpert.org/expert/23531 -https://www.oceanexpert.org/expert/13381 -https://www.oceanexpert.org/expert/27244 -https://www.oceanexpert.org/expert/47805 -https://www.oceanexpert.org/expert/46138 -https://www.oceanexpert.org/expert/2370 -https://www.oceanexpert.org/expert/1928 -https://www.oceanexpert.org/event/568 -https://www.oceanexpert.org/expert/24475 -https://www.oceanexpert.org/expert/26541 -https://www.oceanexpert.org/expert/18036 -https://www.oceanexpert.org/expert/12102 -https://www.oceanexpert.org/expert/22076 -https://www.oceanexpert.org/institution/20989 -https://www.oceanexpert.org/event/1746 -https://www.oceanexpert.org/expert/36623 -https://www.oceanexpert.org/event/878 -https://www.oceanexpert.org/event/2300 -https://www.oceanexpert.org/expert/45842 -https://www.oceanexpert.org/expert/18117 -https://www.oceanexpert.org/expert/13814 -https://www.oceanexpert.org/expert/46582 -https://www.oceanexpert.org/expert/38909 -https://www.oceanexpert.org/expert/32306 -https://www.oceanexpert.org/expert/36478 -https://www.oceanexpert.org/expert/35418 -https://www.oceanexpert.org/expert/42385 -https://www.oceanexpert.org/institution/20787 -https://www.oceanexpert.org/expert/42781 -https://www.oceanexpert.org/expert/46351 -https://www.oceanexpert.org/institution/20229 -https://www.oceanexpert.org/event/985 -https://www.oceanexpert.org/expert/43922 -https://www.oceanexpert.org/institution/13891 -https://www.oceanexpert.org/expert/23560 -https://www.oceanexpert.org/expert/32881 -https://www.oceanexpert.org/institution/13639 -https://www.oceanexpert.org/expert/46888 -https://www.oceanexpert.org/expert/18113 -https://www.oceanexpert.org/institution/21697 -https://www.oceanexpert.org/expert/20721 -https://www.oceanexpert.org/event/2555 -https://www.oceanexpert.org/event/142 -https://www.oceanexpert.org/expert/25822 -https://www.oceanexpert.org/event/2826 -https://www.oceanexpert.org/event/1462 -https://www.oceanexpert.org/expert/22611 -https://www.oceanexpert.org/expert/25706 -https://www.oceanexpert.org/institution/13619 -https://www.oceanexpert.org/event/2927 -https://www.oceanexpert.org/institution/16683 -https://www.oceanexpert.org/expert/38379 -https://www.oceanexpert.org/institution/8691 -https://www.oceanexpert.org/expert/21881 -https://www.oceanexpert.org/institution/20838 -https://www.oceanexpert.org/expert/27279 -https://www.oceanexpert.org/expert/13486 -https://www.oceanexpert.org/expert/2827 -https://www.oceanexpert.org/institution/21594 -https://www.oceanexpert.org/expert/18582 -https://www.oceanexpert.org/institution/18919 -https://www.oceanexpert.org/institution/21952 -https://www.oceanexpert.org/expert/21769 -https://www.oceanexpert.org/expert/23668 -https://www.oceanexpert.org/institution/19627 -https://www.oceanexpert.org/institution/16238 -https://www.oceanexpert.org/expert/31621 -https://www.oceanexpert.org/expert/35668 -https://www.oceanexpert.org/event/1241 -https://www.oceanexpert.org/institution/19890 -https://www.oceanexpert.org/institution/19071 -https://www.oceanexpert.org/expert/32288 -https://www.oceanexpert.org/institution/21300 -https://www.oceanexpert.org/expert/24672 -https://www.oceanexpert.org/event/1165 -https://www.oceanexpert.org/expert/35427 -https://www.oceanexpert.org/institution/15385 -https://www.oceanexpert.org/expert/26003 -https://www.oceanexpert.org/event/3178 -https://www.oceanexpert.org/expert/9469 -https://www.oceanexpert.org/expert/32551 -https://www.oceanexpert.org/expert/48163 -https://www.oceanexpert.org/expert/30449 -https://www.oceanexpert.org/expert/6699 -https://www.oceanexpert.org/expert/27478 -https://www.oceanexpert.org/expert/47464 -https://www.oceanexpert.org/expert/6831 -https://www.oceanexpert.org/institution/12002 -https://www.oceanexpert.org/expert/35873 -https://www.oceanexpert.org/event/336 -https://www.oceanexpert.org/expert/32227 -https://www.oceanexpert.org/event/1505 -https://www.oceanexpert.org/institution/8175 -https://www.oceanexpert.org/expert/31155 -https://www.oceanexpert.org/expert/45697 -https://www.oceanexpert.org/expert/28154 -https://www.oceanexpert.org/expert/30253 -https://www.oceanexpert.org/event/2314 -https://www.oceanexpert.org/expert/76 -https://www.oceanexpert.org/expert/43935 -https://www.oceanexpert.org/expert/19020 -https://www.oceanexpert.org/institution/17012 -https://www.oceanexpert.org/event/316 -https://www.oceanexpert.org/expert/37086 -https://www.oceanexpert.org/institution/12295 -https://www.oceanexpert.org/expert/29774 -https://www.oceanexpert.org/expert/18601 -https://www.oceanexpert.org/expert/35437 -https://www.oceanexpert.org/expert/26393 -https://www.oceanexpert.org/expert/24599 -https://www.oceanexpert.org/expert/47534 -https://www.oceanexpert.org/event/2854 -https://www.oceanexpert.org/expert/20383 -https://www.oceanexpert.org/institution/14061 -https://www.oceanexpert.org/institution/15338 -https://www.oceanexpert.org/institution/7002 -https://www.oceanexpert.org/expert/26382 -https://www.oceanexpert.org/expert/267 -https://www.oceanexpert.org/institution/10772 -https://www.oceanexpert.org/expert/18826 -https://www.oceanexpert.org/institution/18536 -https://www.oceanexpert.org/expert/34725 -https://www.oceanexpert.org/expert/48308 -https://www.oceanexpert.org/institution/19192 -https://www.oceanexpert.org/expert/25127 -https://www.oceanexpert.org/expert/47970 -https://www.oceanexpert.org/expert/39460 -https://www.oceanexpert.org/institution/14049 -https://www.oceanexpert.org/expert/43576 -https://www.oceanexpert.org/expert/42999 -https://www.oceanexpert.org/institution/18872 -https://www.oceanexpert.org/expert/19802 -https://www.oceanexpert.org/institution/15702 -https://www.oceanexpert.org/expert/24717 -https://www.oceanexpert.org/expert/22502 -https://www.oceanexpert.org/expert/47667 -https://www.oceanexpert.org/expert/24815 -https://www.oceanexpert.org/expert/22228 -https://www.oceanexpert.org/expert/17274 -https://www.oceanexpert.org/institution/18313 -https://www.oceanexpert.org/expert/16912 -https://www.oceanexpert.org/event/1262 -https://www.oceanexpert.org/institution/22114 -https://www.oceanexpert.org/expert/26738 -https://www.oceanexpert.org/institution/6759 -https://www.oceanexpert.org/institution/15746 -https://www.oceanexpert.org/expert/20622 -https://www.oceanexpert.org/expert/24258 -https://www.oceanexpert.org/institution/12909 -https://www.oceanexpert.org/expert/24338 -https://www.oceanexpert.org/expert/46810 -https://www.oceanexpert.org/expert/25349 -https://www.oceanexpert.org/institution/17892 -https://www.oceanexpert.org/expert/21724 -https://www.oceanexpert.org/institution/20988 -https://www.oceanexpert.org/institution/20659 -https://www.oceanexpert.org/expert/22971 -https://www.oceanexpert.org/expert/30453 -https://www.oceanexpert.org/expert/310 -https://www.oceanexpert.org/expert/42874 -https://www.oceanexpert.org/expert/25067 -https://www.oceanexpert.org/expert/34986 -https://www.oceanexpert.org/expert/13881 -https://www.oceanexpert.org/event/1951 -https://www.oceanexpert.org/institution/21793 -https://www.oceanexpert.org/institution/19407 -https://www.oceanexpert.org/expert/43837 -https://www.oceanexpert.org/expert/29467 -https://www.oceanexpert.org/expert/11743 -https://www.oceanexpert.org/expert/46459 -https://www.oceanexpert.org/expert/21012 -https://www.oceanexpert.org/institution/20716 -https://www.oceanexpert.org/institution/6536 -https://www.oceanexpert.org/expert/18761 -https://www.oceanexpert.org/institution/18103 -https://www.oceanexpert.org/expert/13370 -https://www.oceanexpert.org/expert/27941 -https://www.oceanexpert.org/institution/16664 -https://www.oceanexpert.org/expert/34541 -https://www.oceanexpert.org/institution/13512 -https://www.oceanexpert.org/expert/18291 -https://www.oceanexpert.org/expert/19112 -https://www.oceanexpert.org/expert/32602 -https://www.oceanexpert.org/institution/21408 -https://www.oceanexpert.org/event/608 -https://www.oceanexpert.org/expert/42084 -https://www.oceanexpert.org/expert/19064 -https://www.oceanexpert.org/event/867 -https://www.oceanexpert.org/expert/12884 -https://www.oceanexpert.org/event/1403 -https://www.oceanexpert.org/institution/22148 -https://www.oceanexpert.org/expert/30971 -https://www.oceanexpert.org/expert/43104 -https://www.oceanexpert.org/expert/44044 -https://www.oceanexpert.org/expert/47666 -https://www.oceanexpert.org/expert/33407 -https://www.oceanexpert.org/institution/15341 -https://www.oceanexpert.org/expert/10839 -https://www.oceanexpert.org/event/1312 -https://www.oceanexpert.org/expert/871 -https://www.oceanexpert.org/expert/45532 -https://www.oceanexpert.org/expert/34080 -https://www.oceanexpert.org/institution/18172 -https://www.oceanexpert.org/expert/13228 -https://www.oceanexpert.org/expert/22547 -https://www.oceanexpert.org/expert/43289 -https://www.oceanexpert.org/expert/45160 -https://www.oceanexpert.org/expert/15984 -https://www.oceanexpert.org/expert/16452 -https://www.oceanexpert.org/expert/3990 -https://www.oceanexpert.org/expert/17823 -https://www.oceanexpert.org/expert/33226 -https://www.oceanexpert.org/event/532 -https://www.oceanexpert.org/expert/48857 -https://www.oceanexpert.org/expert/16770 -https://www.oceanexpert.org/expert/14982 -https://www.oceanexpert.org/institution/6849 -https://www.oceanexpert.org/expert/48597 -https://www.oceanexpert.org/expert/29026 -https://www.oceanexpert.org/institution/21660 -https://www.oceanexpert.org/expert/19102 -https://www.oceanexpert.org/expert/26598 -https://www.oceanexpert.org/expert/23238 -https://www.oceanexpert.org/expert/13044 -https://www.oceanexpert.org/expert/18178 -https://www.oceanexpert.org/expert/25952 -https://www.oceanexpert.org/expert/35080 -https://www.oceanexpert.org/institution/14138 -https://www.oceanexpert.org/expert/11949 -https://www.oceanexpert.org/institution/20413 -https://www.oceanexpert.org/institution/21316 -https://www.oceanexpert.org/expert/20056 -https://www.oceanexpert.org/expert/42605 -https://www.oceanexpert.org/event/476 -https://www.oceanexpert.org/expert/46442 -https://www.oceanexpert.org/expert/659 -https://www.oceanexpert.org/institution/22070 -https://www.oceanexpert.org/expert/25397 -https://www.oceanexpert.org/expert/18893 -https://www.oceanexpert.org/expert/47329 -https://www.oceanexpert.org/event/1740 -https://www.oceanexpert.org/expert/44752 -https://www.oceanexpert.org/expert/25211 -https://www.oceanexpert.org/expert/22681 -https://www.oceanexpert.org/expert/45995 -https://www.oceanexpert.org/expert/13265 -https://www.oceanexpert.org/institution/18125 -https://www.oceanexpert.org/institution/19061 -https://www.oceanexpert.org/institution/7764 -https://www.oceanexpert.org/expert/24983 -https://www.oceanexpert.org/expert/8629 -https://www.oceanexpert.org/expert/40038 -https://www.oceanexpert.org/expert/42910 -https://www.oceanexpert.org/expert/19275 -https://www.oceanexpert.org/event/2056 -https://www.oceanexpert.org/institution/20028 -https://www.oceanexpert.org/expert/14811 -https://www.oceanexpert.org/expert/27348 -https://www.oceanexpert.org/expert/26759 -https://www.oceanexpert.org/expert/12246 -https://www.oceanexpert.org/expert/19211 -https://www.oceanexpert.org/expert/37099 -https://www.oceanexpert.org/institution/19400 -https://www.oceanexpert.org/expert/32202 -https://www.oceanexpert.org/expert/18362 -https://www.oceanexpert.org/expert/21695 -https://www.oceanexpert.org/expert/32813 -https://www.oceanexpert.org/expert/46729 -https://www.oceanexpert.org/expert/3993 -https://www.oceanexpert.org/expert/16425 -https://www.oceanexpert.org/expert/45550 -https://www.oceanexpert.org/institution/9801 -https://www.oceanexpert.org/expert/25271 -https://www.oceanexpert.org/expert/49005 -https://www.oceanexpert.org/expert/20681 -https://www.oceanexpert.org/expert/13856 -https://www.oceanexpert.org/expert/35049 -https://www.oceanexpert.org/expert/38448 -https://www.oceanexpert.org/expert/36597 -https://www.oceanexpert.org/event/61 -https://www.oceanexpert.org/expert/44249 -https://www.oceanexpert.org/expert/18899 -https://www.oceanexpert.org/expert/34700 -https://www.oceanexpert.org/expert/31947 -https://www.oceanexpert.org/expert/37390 -https://www.oceanexpert.org/expert/37715 -https://www.oceanexpert.org/expert/14455 -https://www.oceanexpert.org/expert/33091 -https://www.oceanexpert.org/institution/19469 -https://www.oceanexpert.org/event/2849 -https://www.oceanexpert.org/expert/35589 -https://www.oceanexpert.org/expert/40340 -https://www.oceanexpert.org/institution/19549 -https://www.oceanexpert.org/expert/31428 -https://www.oceanexpert.org/expert/44282 -https://www.oceanexpert.org/expert/30799 -https://www.oceanexpert.org/event/1425 -https://www.oceanexpert.org/institution/7142 -https://www.oceanexpert.org/expert/42990 -https://www.oceanexpert.org/expert/19980 -https://www.oceanexpert.org/expert/20690 -https://www.oceanexpert.org/institution/19059 -https://www.oceanexpert.org/institution/17914 -https://www.oceanexpert.org/expert/21761 -https://www.oceanexpert.org/expert/49013 -https://www.oceanexpert.org/expert/26535 -https://www.oceanexpert.org/expert/40045 -https://www.oceanexpert.org/expert/31129 -https://www.oceanexpert.org/expert/2258 -https://www.oceanexpert.org/expert/25324 -https://www.oceanexpert.org/institution/19742 -https://www.oceanexpert.org/expert/29751 -https://www.oceanexpert.org/expert/23375 -https://www.oceanexpert.org/expert/25046 -https://www.oceanexpert.org/expert/21075 -https://www.oceanexpert.org/expert/29418 -https://www.oceanexpert.org/expert/25198 -https://www.oceanexpert.org/expert/9469 -https://www.oceanexpert.org/expert/31527 -https://www.oceanexpert.org/expert/23001 -https://www.oceanexpert.org/expert/44213 -https://www.oceanexpert.org/expert/47495 -https://www.oceanexpert.org/event/2795 -https://www.oceanexpert.org/institution/20952 -https://www.oceanexpert.org/expert/21543 -https://www.oceanexpert.org/expert/19076 -https://www.oceanexpert.org/expert/42589 -https://www.oceanexpert.org/institution/12480 -https://www.oceanexpert.org/expert/20801 -https://www.oceanexpert.org/expert/45037 -https://www.oceanexpert.org/institution/14757 -https://www.oceanexpert.org/expert/37096 -https://www.oceanexpert.org/institution/18078 -https://www.oceanexpert.org/institution/20878 -https://www.oceanexpert.org/expert/20783 -https://www.oceanexpert.org/institution/22104 -https://www.oceanexpert.org/expert/20695 -https://www.oceanexpert.org/institution/11836 -https://www.oceanexpert.org/event/2723 -https://www.oceanexpert.org/expert/25452 -https://www.oceanexpert.org/institution/16450 -https://www.oceanexpert.org/expert/45561 -https://www.oceanexpert.org/institution/14623 -https://www.oceanexpert.org/expert/26090 -https://www.oceanexpert.org/expert/47434 -https://www.oceanexpert.org/expert/44471 -https://www.oceanexpert.org/expert/42621 -https://www.oceanexpert.org/expert/26851 -https://www.oceanexpert.org/expert/1718 -https://www.oceanexpert.org/event/1845 -https://www.oceanexpert.org/expert/25429 -https://www.oceanexpert.org/expert/22203 -https://www.oceanexpert.org/expert/28645 -https://www.oceanexpert.org/institution/12877 -https://www.oceanexpert.org/expert/38829 -https://www.oceanexpert.org/institution/21137 -https://www.oceanexpert.org/expert/46003 -https://www.oceanexpert.org/event/1698 -https://www.oceanexpert.org/institution/18863 -https://www.oceanexpert.org/event/528 -https://www.oceanexpert.org/expert/33277 -https://www.oceanexpert.org/expert/15996 -https://www.oceanexpert.org/expert/3185 -https://www.oceanexpert.org/expert/23367 -https://www.oceanexpert.org/expert/21002 -https://www.oceanexpert.org/institution/12383 -https://www.oceanexpert.org/expert/24137 -https://www.oceanexpert.org/expert/21837 -https://www.oceanexpert.org/expert/2762 -https://www.oceanexpert.org/event/1315 -https://www.oceanexpert.org/expert/16485 -https://www.oceanexpert.org/institution/20726 -https://www.oceanexpert.org/expert/17626 -https://www.oceanexpert.org/expert/2613 -https://www.oceanexpert.org/institution/12011 -https://www.oceanexpert.org/expert/34669 -https://www.oceanexpert.org/expert/22381 -https://www.oceanexpert.org/expert/43858 -https://www.oceanexpert.org/expert/36523 -https://www.oceanexpert.org/expert/32177 -https://www.oceanexpert.org/institution/13534 -https://www.oceanexpert.org/expert/36878 -https://www.oceanexpert.org/institution/18272 -https://www.oceanexpert.org/expert/46512 -https://www.oceanexpert.org/expert/12266 -https://www.oceanexpert.org/institution/17908 -https://www.oceanexpert.org/institution/5169 -https://www.oceanexpert.org/expert/31948 -https://www.oceanexpert.org/expert/1879 -https://www.oceanexpert.org/expert/31728 -https://www.oceanexpert.org/expert/25376 -https://www.oceanexpert.org/expert/21791 -https://www.oceanexpert.org/expert/12039 -https://www.oceanexpert.org/expert/36578 -https://www.oceanexpert.org/expert/27433 -https://www.oceanexpert.org/expert/46250 -https://www.oceanexpert.org/institution/21109 -https://www.oceanexpert.org/institution/14041 -https://www.oceanexpert.org/expert/43349 -https://www.oceanexpert.org/expert/33362 -https://www.oceanexpert.org/expert/14070 -https://www.oceanexpert.org/expert/43855 -https://www.oceanexpert.org/expert/33611 -https://www.oceanexpert.org/expert/13995 -https://www.oceanexpert.org/expert/47790 -https://www.oceanexpert.org/expert/47199 -https://www.oceanexpert.org/expert/16622 -https://www.oceanexpert.org/expert/19939 -https://www.oceanexpert.org/expert/11461 -https://www.oceanexpert.org/expert/8400 -https://www.oceanexpert.org/institution/20813 -https://www.oceanexpert.org/expert/14514 -https://www.oceanexpert.org/expert/18799 -https://www.oceanexpert.org/expert/22746 -https://www.oceanexpert.org/expert/32775 -https://www.oceanexpert.org/institution/21860 -https://www.oceanexpert.org/institution/17677 -https://www.oceanexpert.org/expert/8358 -https://www.oceanexpert.org/expert/13035 -https://www.oceanexpert.org/expert/9660 -https://www.oceanexpert.org/expert/47904 -https://www.oceanexpert.org/expert/33007 -https://www.oceanexpert.org/institution/21094 -https://www.oceanexpert.org/expert/37003 -https://www.oceanexpert.org/institution/14968 -https://www.oceanexpert.org/institution/20259 -https://www.oceanexpert.org/expert/18593 -https://www.oceanexpert.org/expert/31774 -https://www.oceanexpert.org/expert/30985 -https://www.oceanexpert.org/expert/40160 -https://www.oceanexpert.org/expert/26710 -https://www.oceanexpert.org/institution/18494 -https://www.oceanexpert.org/expert/47312 -https://www.oceanexpert.org/institution/18289 -https://www.oceanexpert.org/expert/19174 -https://www.oceanexpert.org/institution/20141 -https://www.oceanexpert.org/expert/29806 -https://www.oceanexpert.org/expert/1812 -https://www.oceanexpert.org/expert/47430 -https://www.oceanexpert.org/institution/13986 -https://www.oceanexpert.org/event/379 -https://www.oceanexpert.org/expert/12866 -https://www.oceanexpert.org/expert/11198 -https://www.oceanexpert.org/event/719 -https://www.oceanexpert.org/institution/11003 -https://www.oceanexpert.org/expert/35076 -https://www.oceanexpert.org/institution/16210 -https://www.oceanexpert.org/expert/45249 -https://www.oceanexpert.org/expert/7515 -https://www.oceanexpert.org/expert/46982 -https://www.oceanexpert.org/institution/14742 -https://www.oceanexpert.org/institution/18679 -https://www.oceanexpert.org/expert/47301 -https://www.oceanexpert.org/expert/22939 -https://www.oceanexpert.org/expert/32647 -https://www.oceanexpert.org/institution/20552 -https://www.oceanexpert.org/expert/21552 -https://www.oceanexpert.org/event/1869 -https://www.oceanexpert.org/expert/42809 -https://www.oceanexpert.org/institution/20329 -https://www.oceanexpert.org/expert/39043 -https://www.oceanexpert.org/expert/4895 -https://www.oceanexpert.org/expert/33122 -https://www.oceanexpert.org/expert/29702 -https://www.oceanexpert.org/institution/12019 -https://www.oceanexpert.org/event/528 -https://www.oceanexpert.org/institution/15567 -https://www.oceanexpert.org/expert/20138 -https://www.oceanexpert.org/expert/45558 -https://www.oceanexpert.org/expert/27065 -https://www.oceanexpert.org/expert/38126 -https://www.oceanexpert.org/institution/13183 -https://www.oceanexpert.org/expert/8232 -https://www.oceanexpert.org/expert/27569 -https://www.oceanexpert.org/expert/29363 -https://www.oceanexpert.org/institution/20232 -https://www.oceanexpert.org/expert/48812 -https://www.oceanexpert.org/institution/5444 -https://www.oceanexpert.org/event/3172 -https://www.oceanexpert.org/expert/35384 -https://www.oceanexpert.org/expert/43238 -https://www.oceanexpert.org/expert/43544 -https://www.oceanexpert.org/expert/22498 -https://www.oceanexpert.org/expert/22128 -https://www.oceanexpert.org/expert/33069 -https://www.oceanexpert.org/institution/13633 -https://www.oceanexpert.org/expert/47877 -https://www.oceanexpert.org/expert/21553 -https://www.oceanexpert.org/expert/33359 -https://www.oceanexpert.org/expert/43192 -https://www.oceanexpert.org/expert/26803 -https://www.oceanexpert.org/expert/21724 -https://www.oceanexpert.org/expert/26139 -https://www.oceanexpert.org/expert/46347 -https://www.oceanexpert.org/expert/38075 -https://www.oceanexpert.org/expert/33384 -https://www.oceanexpert.org/institution/21562 -https://www.oceanexpert.org/expert/25204 -https://www.oceanexpert.org/institution/16012 -https://www.oceanexpert.org/expert/38374 -https://www.oceanexpert.org/event/2616 -https://www.oceanexpert.org/expert/47206 -https://www.oceanexpert.org/expert/43181 -https://www.oceanexpert.org/expert/29722 -https://www.oceanexpert.org/expert/31161 -https://www.oceanexpert.org/expert/41415 -https://www.oceanexpert.org/event/199 -https://www.oceanexpert.org/institution/10418 -https://www.oceanexpert.org/institution/21205 -https://www.oceanexpert.org/expert/19886 -https://www.oceanexpert.org/expert/27730 -https://www.oceanexpert.org/expert/18297 -https://www.oceanexpert.org/expert/27500 -https://www.oceanexpert.org/expert/12177 -https://www.oceanexpert.org/expert/36561 -https://www.oceanexpert.org/expert/13909 -https://www.oceanexpert.org/expert/47702 -https://www.oceanexpert.org/event/804 -https://www.oceanexpert.org/expert/43550 -https://www.oceanexpert.org/expert/22973 -https://www.oceanexpert.org/institution/6587 -https://www.oceanexpert.org/expert/36214 -https://www.oceanexpert.org/expert/96 -https://www.oceanexpert.org/institution/18908 -https://www.oceanexpert.org/institution/11707 -https://www.oceanexpert.org/expert/26410 -https://www.oceanexpert.org/expert/42479 -https://www.oceanexpert.org/institution/12939 -https://www.oceanexpert.org/expert/27566 -https://www.oceanexpert.org/expert/24982 -https://www.oceanexpert.org/expert/25242 -https://www.oceanexpert.org/expert/22589 -https://www.oceanexpert.org/institution/18585 -https://www.oceanexpert.org/institution/20256 -https://www.oceanexpert.org/event/3057 -https://www.oceanexpert.org/institution/20608 -https://www.oceanexpert.org/expert/43863 -https://www.oceanexpert.org/event/3044 -https://www.oceanexpert.org/expert/31664 -https://www.oceanexpert.org/expert/29596 -https://www.oceanexpert.org/expert/38587 -https://www.oceanexpert.org/institution/19245 -https://www.oceanexpert.org/expert/20683 -https://www.oceanexpert.org/expert/30716 -https://www.oceanexpert.org/expert/22784 -https://www.oceanexpert.org/expert/34082 -https://www.oceanexpert.org/expert/16860 -https://www.oceanexpert.org/expert/32155 -https://www.oceanexpert.org/institution/17343 -https://www.oceanexpert.org/expert/44521 -https://www.oceanexpert.org/expert/44461 -https://www.oceanexpert.org/expert/21495 -https://www.oceanexpert.org/expert/23178 -https://www.oceanexpert.org/expert/30171 -https://www.oceanexpert.org/institution/12104 -https://www.oceanexpert.org/expert/21658 -https://www.oceanexpert.org/expert/27731 -https://www.oceanexpert.org/institution/16488 -https://www.oceanexpert.org/expert/29493 -https://www.oceanexpert.org/expert/26898 -https://www.oceanexpert.org/expert/45041 -https://www.oceanexpert.org/expert/48637 -https://www.oceanexpert.org/expert/22485 -https://www.oceanexpert.org/expert/26395 -https://www.oceanexpert.org/expert/46626 -https://www.oceanexpert.org/expert/16480 -https://www.oceanexpert.org/event/2786 -https://www.oceanexpert.org/expert/22248 -https://www.oceanexpert.org/expert/31010 -https://www.oceanexpert.org/expert/44945 -https://www.oceanexpert.org/expert/43905 -https://www.oceanexpert.org/expert/32501 -https://www.oceanexpert.org/expert/12535 -https://www.oceanexpert.org/expert/47380 -https://www.oceanexpert.org/expert/27262 -https://www.oceanexpert.org/expert/43970 -https://www.oceanexpert.org/expert/24750 -https://www.oceanexpert.org/expert/42845 -https://www.oceanexpert.org/expert/14147 -https://www.oceanexpert.org/expert/44056 -https://www.oceanexpert.org/expert/12315 -https://www.oceanexpert.org/expert/25295 -https://www.oceanexpert.org/institution/12804 -https://www.oceanexpert.org/expert/19670 -https://www.oceanexpert.org/expert/17638 -https://www.oceanexpert.org/expert/6547 -https://www.oceanexpert.org/expert/21940 -https://www.oceanexpert.org/expert/44960 -https://www.oceanexpert.org/expert/16863 -https://www.oceanexpert.org/expert/47081 -https://www.oceanexpert.org/institution/20936 -https://www.oceanexpert.org/expert/20475 -https://www.oceanexpert.org/expert/17612 -https://www.oceanexpert.org/institution/22100 -https://www.oceanexpert.org/expert/28088 -https://www.oceanexpert.org/event/1924 -https://www.oceanexpert.org/institution/14810 -https://www.oceanexpert.org/expert/30533 -https://www.oceanexpert.org/event/2289 -https://www.oceanexpert.org/expert/34393 -https://www.oceanexpert.org/expert/30885 -https://www.oceanexpert.org/expert/43188 -https://www.oceanexpert.org/expert/46409 -https://www.oceanexpert.org/expert/18750 -https://www.oceanexpert.org/expert/31793 -https://www.oceanexpert.org/expert/47820 -https://www.oceanexpert.org/expert/11907 -https://www.oceanexpert.org/expert/26864 -https://www.oceanexpert.org/expert/34588 -https://www.oceanexpert.org/expert/2912 -https://www.oceanexpert.org/expert/33122 -https://www.oceanexpert.org/event/1987 -https://www.oceanexpert.org/expert/34071 -https://www.oceanexpert.org/expert/46310 -https://www.oceanexpert.org/institution/18486 -https://www.oceanexpert.org/expert/20952 -https://www.oceanexpert.org/expert/33782 -https://www.oceanexpert.org/institution/13042 -https://www.oceanexpert.org/institution/9338 -https://www.oceanexpert.org/expert/19988 -https://www.oceanexpert.org/expert/22283 -https://www.oceanexpert.org/institution/20803 -https://www.oceanexpert.org/expert/14287 -https://www.oceanexpert.org/expert/24108 -https://www.oceanexpert.org/expert/24882 -https://www.oceanexpert.org/expert/38105 -https://www.oceanexpert.org/expert/25720 -https://www.oceanexpert.org/expert/9038 -https://www.oceanexpert.org/expert/19623 -https://www.oceanexpert.org/expert/44649 -https://www.oceanexpert.org/institution/22022 -https://www.oceanexpert.org/expert/21099 -https://www.oceanexpert.org/expert/43261 -https://www.oceanexpert.org/expert/34440 -https://www.oceanexpert.org/expert/45940 -https://www.oceanexpert.org/institution/9296 -https://www.oceanexpert.org/institution/19683 -https://www.oceanexpert.org/expert/27244 -https://www.oceanexpert.org/event/1431 -https://www.oceanexpert.org/expert/23966 -https://www.oceanexpert.org/expert/45107 -https://www.oceanexpert.org/expert/48613 -https://www.oceanexpert.org/expert/15366 -https://www.oceanexpert.org/institution/21057 -https://www.oceanexpert.org/expert/27945 -https://www.oceanexpert.org/expert/26664 -https://www.oceanexpert.org/expert/31050 -https://www.oceanexpert.org/expert/48131 -https://www.oceanexpert.org/expert/44934 -https://www.oceanexpert.org/expert/43519 -https://www.oceanexpert.org/expert/37524 -https://www.oceanexpert.org/expert/25299 -https://www.oceanexpert.org/expert/7187 -https://www.oceanexpert.org/institution/8810 -https://www.oceanexpert.org/expert/16287 -https://www.oceanexpert.org/event/1751 -https://www.oceanexpert.org/event/2654 -https://www.oceanexpert.org/institution/19398 -https://www.oceanexpert.org/event/957 -https://www.oceanexpert.org/expert/6225 -https://www.oceanexpert.org/expert/11240 -https://www.oceanexpert.org/expert/21868 -https://www.oceanexpert.org/expert/7292 -https://www.oceanexpert.org/expert/13762 -https://www.oceanexpert.org/expert/47230 -https://www.oceanexpert.org/institution/10850 -https://www.oceanexpert.org/expert/26967 -https://www.oceanexpert.org/event/496 -https://www.oceanexpert.org/event/292 -https://www.oceanexpert.org/expert/39299 -https://www.oceanexpert.org/institution/12801 -https://www.oceanexpert.org/expert/20346 -https://www.oceanexpert.org/expert/19940 -https://www.oceanexpert.org/expert/43737 -https://www.oceanexpert.org/institution/14298 -https://www.oceanexpert.org/expert/27454 -https://www.oceanexpert.org/institution/21632 -https://www.oceanexpert.org/institution/11700 -https://www.oceanexpert.org/expert/34380 -https://www.oceanexpert.org/institution/21691 -https://www.oceanexpert.org/expert/43273 -https://www.oceanexpert.org/institution/20305 -https://www.oceanexpert.org/expert/16706 -https://www.oceanexpert.org/institution/11587 -https://www.oceanexpert.org/institution/21329 -https://www.oceanexpert.org/expert/42689 -https://www.oceanexpert.org/institution/18862 -https://www.oceanexpert.org/institution/13082 -https://www.oceanexpert.org/expert/38324 -https://www.oceanexpert.org/expert/23761 -https://www.oceanexpert.org/expert/41153 -https://www.oceanexpert.org/institution/10626 -https://www.oceanexpert.org/institution/12268 -https://www.oceanexpert.org/institution/21685 -https://www.oceanexpert.org/expert/11224 -https://www.oceanexpert.org/expert/20325 -https://www.oceanexpert.org/institution/21407 -https://www.oceanexpert.org/expert/21488 -https://www.oceanexpert.org/expert/33775 -https://www.oceanexpert.org/institution/19830 -https://www.oceanexpert.org/institution/20909 -https://www.oceanexpert.org/expert/12501 -https://www.oceanexpert.org/expert/43763 -https://www.oceanexpert.org/expert/37593 -https://www.oceanexpert.org/institution/12771 -https://www.oceanexpert.org/expert/22823 -https://www.oceanexpert.org/expert/26504 -https://www.oceanexpert.org/institution/13264 -https://www.oceanexpert.org/expert/40017 -https://www.oceanexpert.org/expert/29017 -https://www.oceanexpert.org/expert/43234 -https://www.oceanexpert.org/event/854 -https://www.oceanexpert.org/expert/42118 -https://www.oceanexpert.org/expert/30445 -https://www.oceanexpert.org/expert/48480 -https://www.oceanexpert.org/expert/47403 -https://www.oceanexpert.org/expert/35558 -https://www.oceanexpert.org/expert/22587 -https://www.oceanexpert.org/expert/22441 -https://www.oceanexpert.org/expert/22123 -https://www.oceanexpert.org/expert/17735 -https://www.oceanexpert.org/expert/26025 -https://www.oceanexpert.org/institution/12908 -https://www.oceanexpert.org/expert/30794 -https://www.oceanexpert.org/institution/20895 -https://www.oceanexpert.org/expert/46256 -https://www.oceanexpert.org/event/1381 -https://www.oceanexpert.org/event/1673 -https://www.oceanexpert.org/expert/20195 -https://www.oceanexpert.org/expert/21796 -https://www.oceanexpert.org/institution/16744 -https://www.oceanexpert.org/expert/22776 -https://www.oceanexpert.org/expert/20579 -https://www.oceanexpert.org/institution/13142 -https://www.oceanexpert.org/expert/17338 -https://www.oceanexpert.org/expert/25274 -https://www.oceanexpert.org/expert/1741 -https://www.oceanexpert.org/expert/17043 -https://www.oceanexpert.org/expert/21600 -https://www.oceanexpert.org/expert/20192 -https://www.oceanexpert.org/expert/27187 -https://www.oceanexpert.org/expert/17392 -https://www.oceanexpert.org/expert/45402 -https://www.oceanexpert.org/expert/36411 -https://www.oceanexpert.org/expert/22514 -https://www.oceanexpert.org/institution/17827 -https://www.oceanexpert.org/institution/13514 -https://www.oceanexpert.org/institution/11980 -https://www.oceanexpert.org/expert/29874 -https://www.oceanexpert.org/expert/44742 -https://www.oceanexpert.org/expert/26776 -https://www.oceanexpert.org/expert/25440 -https://www.oceanexpert.org/institution/18874 -https://www.oceanexpert.org/expert/47414 -https://www.oceanexpert.org/expert/16812 -https://www.oceanexpert.org/expert/21696 -https://www.oceanexpert.org/expert/25496 -https://www.oceanexpert.org/event/2558 -https://www.oceanexpert.org/institution/14227 -https://www.oceanexpert.org/expert/34085 -https://www.oceanexpert.org/expert/13803 -https://www.oceanexpert.org/expert/36378 -https://www.oceanexpert.org/institution/8376 -https://www.oceanexpert.org/expert/31416 -https://www.oceanexpert.org/expert/16606 -https://www.oceanexpert.org/expert/21930 -https://www.oceanexpert.org/expert/12152 -https://www.oceanexpert.org/expert/44758 -https://www.oceanexpert.org/expert/19400 -https://www.oceanexpert.org/expert/37967 -https://www.oceanexpert.org/expert/42620 -https://www.oceanexpert.org/expert/37712 -https://www.oceanexpert.org/expert/22279 -https://www.oceanexpert.org/expert/45066 -https://www.oceanexpert.org/expert/48035 -https://www.oceanexpert.org/event/2393 -https://www.oceanexpert.org/event/1287 -https://www.oceanexpert.org/expert/16887 -https://www.oceanexpert.org/institution/21515 -https://www.oceanexpert.org/expert/24923 -https://www.oceanexpert.org/expert/13914 -https://www.oceanexpert.org/expert/19139 -https://www.oceanexpert.org/event/2316 -https://www.oceanexpert.org/expert/30993 -https://www.oceanexpert.org/institution/20978 -https://www.oceanexpert.org/institution/9069 -https://www.oceanexpert.org/expert/37843 -https://www.oceanexpert.org/expert/23535 -https://www.oceanexpert.org/institution/19551 -https://www.oceanexpert.org/expert/11534 -https://www.oceanexpert.org/expert/47516 -https://www.oceanexpert.org/expert/31125 -https://www.oceanexpert.org/expert/12500 -https://www.oceanexpert.org/expert/47823 -https://www.oceanexpert.org/expert/19912 -https://www.oceanexpert.org/institution/20145 -https://www.oceanexpert.org/institution/14290 -https://www.oceanexpert.org/expert/35736 -https://www.oceanexpert.org/institution/19305 -https://www.oceanexpert.org/expert/35584 -https://www.oceanexpert.org/expert/29531 -https://www.oceanexpert.org/expert/24515 -https://www.oceanexpert.org/expert/22209 -https://www.oceanexpert.org/institution/12125 -https://www.oceanexpert.org/institution/20395 -https://www.oceanexpert.org/expert/27174 -https://www.oceanexpert.org/institution/18084 -https://www.oceanexpert.org/expert/26683 -https://www.oceanexpert.org/institution/21047 -https://www.oceanexpert.org/event/1311 -https://www.oceanexpert.org/institution/12252 -https://www.oceanexpert.org/expert/20882 -https://www.oceanexpert.org/expert/43445 -https://www.oceanexpert.org/expert/45531 -https://www.oceanexpert.org/institution/20837 -https://www.oceanexpert.org/expert/26543 -https://www.oceanexpert.org/institution/19615 -https://www.oceanexpert.org/expert/30392 -https://www.oceanexpert.org/expert/22397 -https://www.oceanexpert.org/expert/48739 -https://www.oceanexpert.org/event/2531 -https://www.oceanexpert.org/institution/19305 -https://www.oceanexpert.org/event/1226 -https://www.oceanexpert.org/expert/48662 -https://www.oceanexpert.org/institution/17018 -https://www.oceanexpert.org/expert/25821 -https://www.oceanexpert.org/institution/7540 -https://www.oceanexpert.org/expert/22244 -https://www.oceanexpert.org/expert/18759 -https://www.oceanexpert.org/expert/36830 -https://www.oceanexpert.org/expert/30040 -https://www.oceanexpert.org/institution/8289 -https://www.oceanexpert.org/expert/25861 -https://www.oceanexpert.org/expert/17487 -https://www.oceanexpert.org/expert/45884 -https://www.oceanexpert.org/expert/30014 -https://www.oceanexpert.org/expert/38020 -https://www.oceanexpert.org/event/790 -https://www.oceanexpert.org/expert/29225 -https://www.oceanexpert.org/expert/24666 -https://www.oceanexpert.org/institution/18467 -https://www.oceanexpert.org/expert/26416 -https://www.oceanexpert.org/event/1224 -https://www.oceanexpert.org/expert/39561 -https://www.oceanexpert.org/expert/44071 -https://www.oceanexpert.org/expert/27096 -https://www.oceanexpert.org/expert/35151 -https://www.oceanexpert.org/expert/20504 -https://www.oceanexpert.org/institution/15360 -https://www.oceanexpert.org/expert/32974 -https://www.oceanexpert.org/expert/29858 -https://www.oceanexpert.org/expert/18807 -https://www.oceanexpert.org/expert/47589 -https://www.oceanexpert.org/expert/1944 -https://www.oceanexpert.org/institution/14328 -https://www.oceanexpert.org/expert/23221 -https://www.oceanexpert.org/institution/17136 -https://www.oceanexpert.org/expert/23964 -https://www.oceanexpert.org/institution/19231 -https://www.oceanexpert.org/expert/39298 -https://www.oceanexpert.org/expert/20388 -https://www.oceanexpert.org/institution/11450 -https://www.oceanexpert.org/expert/44578 -https://www.oceanexpert.org/expert/4741 -https://www.oceanexpert.org/institution/19494 -https://www.oceanexpert.org/expert/43273 -https://www.oceanexpert.org/institution/9530 -https://www.oceanexpert.org/expert/17183 -https://www.oceanexpert.org/expert/28130 -https://www.oceanexpert.org/event/47 -https://www.oceanexpert.org/institution/18930 -https://www.oceanexpert.org/expert/48948 -https://www.oceanexpert.org/expert/20381 -https://www.oceanexpert.org/event/1894 -https://www.oceanexpert.org/institution/21847 -https://www.oceanexpert.org/expert/23057 -https://www.oceanexpert.org/institution/11489 -https://www.oceanexpert.org/event/557 -https://www.oceanexpert.org/institution/15749 -https://www.oceanexpert.org/expert/42754 -https://www.oceanexpert.org/institution/16018 -https://www.oceanexpert.org/institution/14055 -https://www.oceanexpert.org/event/3122 -https://www.oceanexpert.org/institution/14661 -https://www.oceanexpert.org/expert/23172 -https://www.oceanexpert.org/expert/37322 -https://www.oceanexpert.org/expert/38498 -https://www.oceanexpert.org/expert/13522 -https://www.oceanexpert.org/expert/44896 -https://www.oceanexpert.org/event/2360 -https://www.oceanexpert.org/event/3125 -https://www.oceanexpert.org/expert/26718 -https://www.oceanexpert.org/expert/30716 -https://www.oceanexpert.org/event/2458 -https://www.oceanexpert.org/expert/25655 -https://www.oceanexpert.org/expert/38322 -https://www.oceanexpert.org/expert/2736 -https://www.oceanexpert.org/expert/44647 -https://www.oceanexpert.org/expert/45701 -https://www.oceanexpert.org/expert/26425 -https://www.oceanexpert.org/event/3038 -https://www.oceanexpert.org/institution/7628 -https://www.oceanexpert.org/expert/44881 -https://www.oceanexpert.org/expert/35699 -https://www.oceanexpert.org/expert/44847 -https://www.oceanexpert.org/expert/21209 -https://www.oceanexpert.org/institution/21265 -https://www.oceanexpert.org/expert/21190 -https://www.oceanexpert.org/expert/21750 -https://www.oceanexpert.org/expert/20912 -https://www.oceanexpert.org/expert/17431 -https://www.oceanexpert.org/expert/39158 -https://www.oceanexpert.org/expert/12690 -https://www.oceanexpert.org/institution/14292 -https://www.oceanexpert.org/expert/48982 -https://www.oceanexpert.org/expert/26916 -https://www.oceanexpert.org/expert/26181 -https://www.oceanexpert.org/expert/36648 -https://www.oceanexpert.org/expert/27013 -https://www.oceanexpert.org/institution/19613 -https://www.oceanexpert.org/institution/19022 -https://www.oceanexpert.org/expert/47535 -https://www.oceanexpert.org/expert/21249 -https://www.oceanexpert.org/event/1187 -https://www.oceanexpert.org/expert/45086 -https://www.oceanexpert.org/expert/25327 -https://www.oceanexpert.org/expert/33904 -https://www.oceanexpert.org/event/3126 -https://www.oceanexpert.org/expert/23817 -https://www.oceanexpert.org/expert/27607 -https://www.oceanexpert.org/expert/24582 -https://www.oceanexpert.org/expert/46469 -https://www.oceanexpert.org/expert/43810 -https://www.oceanexpert.org/expert/11159 -https://www.oceanexpert.org/expert/32446 -https://www.oceanexpert.org/event/556 -https://www.oceanexpert.org/expert/34662 -https://www.oceanexpert.org/expert/38030 -https://www.oceanexpert.org/event/25 -https://www.oceanexpert.org/expert/26314 -https://www.oceanexpert.org/institution/11709 -https://www.oceanexpert.org/expert/18310 -https://www.oceanexpert.org/expert/18624 -https://www.oceanexpert.org/institution/19548 -https://www.oceanexpert.org/expert/10912 -https://www.oceanexpert.org/expert/19638 -https://www.oceanexpert.org/institution/14347 -https://www.oceanexpert.org/expert/27044 -https://www.oceanexpert.org/event/2802 -https://www.oceanexpert.org/expert/5703 -https://www.oceanexpert.org/institution/14917 -https://www.oceanexpert.org/expert/28105 -https://www.oceanexpert.org/expert/38917 -https://www.oceanexpert.org/expert/22115 -https://www.oceanexpert.org/expert/43416 -https://www.oceanexpert.org/expert/17206 -https://www.oceanexpert.org/expert/35859 -https://www.oceanexpert.org/institution/16169 -https://www.oceanexpert.org/expert/28201 -https://www.oceanexpert.org/expert/47975 -https://www.oceanexpert.org/institution/19297 -https://www.oceanexpert.org/expert/19623 -https://www.oceanexpert.org/expert/25948 -https://www.oceanexpert.org/event/1355 -https://www.oceanexpert.org/institution/12537 -https://www.oceanexpert.org/expert/25717 -https://www.oceanexpert.org/expert/45892 -https://www.oceanexpert.org/expert/27578 -https://www.oceanexpert.org/expert/46111 -https://www.oceanexpert.org/institution/18192 -https://www.oceanexpert.org/expert/31592 -https://www.oceanexpert.org/institution/8300 -https://www.oceanexpert.org/expert/21001 -https://www.oceanexpert.org/expert/46136 -https://www.oceanexpert.org/expert/46762 -https://www.oceanexpert.org/institution/21975 -https://www.oceanexpert.org/expert/38751 -https://www.oceanexpert.org/expert/37217 -https://www.oceanexpert.org/institution/19624 -https://www.oceanexpert.org/expert/24659 -https://www.oceanexpert.org/expert/14423 -https://www.oceanexpert.org/expert/26061 -https://www.oceanexpert.org/event/2786 -https://www.oceanexpert.org/institution/20895 -https://www.oceanexpert.org/expert/44382 -https://www.oceanexpert.org/institution/14569 -https://www.oceanexpert.org/expert/21524 -https://www.oceanexpert.org/expert/20675 -https://www.oceanexpert.org/expert/12934 -https://www.oceanexpert.org/expert/25167 -https://www.oceanexpert.org/expert/33321 -https://www.oceanexpert.org/expert/36802 -https://www.oceanexpert.org/expert/32638 -https://www.oceanexpert.org/institution/17602 -https://www.oceanexpert.org/institution/11919 -https://www.oceanexpert.org/event/1256 -https://www.oceanexpert.org/expert/27584 -https://www.oceanexpert.org/institution/21089 -https://www.oceanexpert.org/expert/43025 -https://www.oceanexpert.org/expert/24047 -https://www.oceanexpert.org/event/2118 -https://www.oceanexpert.org/expert/31819 -https://www.oceanexpert.org/expert/10646 -https://www.oceanexpert.org/expert/47676 -https://www.oceanexpert.org/expert/42541 -https://www.oceanexpert.org/event/1140 -https://www.oceanexpert.org/expert/14094 -https://www.oceanexpert.org/expert/47788 -https://www.oceanexpert.org/institution/15795 -https://www.oceanexpert.org/expert/34037 -https://www.oceanexpert.org/expert/14653 -https://www.oceanexpert.org/institution/15521 -https://www.oceanexpert.org/institution/19467 -https://www.oceanexpert.org/expert/23154 -https://www.oceanexpert.org/expert/36382 -https://www.oceanexpert.org/expert/21453 -https://www.oceanexpert.org/institution/16464 -https://www.oceanexpert.org/institution/18896 -https://www.oceanexpert.org/institution/18543 -https://www.oceanexpert.org/expert/21298 -https://www.oceanexpert.org/expert/36826 -https://www.oceanexpert.org/expert/32505 -https://www.oceanexpert.org/expert/46272 -https://www.oceanexpert.org/expert/17929 -https://www.oceanexpert.org/expert/8309 -https://www.oceanexpert.org/expert/4869 -https://www.oceanexpert.org/expert/29400 -https://www.oceanexpert.org/institution/21631 -https://www.oceanexpert.org/expert/24708 -https://www.oceanexpert.org/expert/20631 -https://www.oceanexpert.org/expert/38957 -https://www.oceanexpert.org/expert/37822 -https://www.oceanexpert.org/expert/40294 -https://www.oceanexpert.org/expert/24545 -https://www.oceanexpert.org/expert/38920 -https://www.oceanexpert.org/institution/5396 -https://www.oceanexpert.org/expert/8100 -https://www.oceanexpert.org/expert/1002 -https://www.oceanexpert.org/institution/8028 -https://www.oceanexpert.org/expert/26416 -https://www.oceanexpert.org/expert/37191 -https://www.oceanexpert.org/institution/16970 -https://www.oceanexpert.org/expert/27106 -https://www.oceanexpert.org/expert/14959 -https://www.oceanexpert.org/expert/25371 -https://www.oceanexpert.org/institution/18765 -https://www.oceanexpert.org/institution/10650 -https://www.oceanexpert.org/event/1172 -https://www.oceanexpert.org/expert/43923 -https://www.oceanexpert.org/expert/17460 -https://www.oceanexpert.org/expert/19777 -https://www.oceanexpert.org/expert/17330 -https://www.oceanexpert.org/expert/28431 -https://www.oceanexpert.org/institution/14598 -https://www.oceanexpert.org/expert/8105 -https://www.oceanexpert.org/institution/13988 -https://www.oceanexpert.org/expert/32601 -https://www.oceanexpert.org/expert/11383 -https://www.oceanexpert.org/expert/33408 -https://www.oceanexpert.org/expert/47471 -https://www.oceanexpert.org/expert/35003 -https://www.oceanexpert.org/expert/19698 -https://www.oceanexpert.org/expert/45791 -https://www.oceanexpert.org/expert/44301 -https://www.oceanexpert.org/institution/15804 -https://www.oceanexpert.org/expert/36341 -https://www.oceanexpert.org/expert/2619 -https://www.oceanexpert.org/expert/12313 -https://www.oceanexpert.org/expert/548 -https://www.oceanexpert.org/expert/31101 -https://www.oceanexpert.org/expert/42118 -https://www.oceanexpert.org/institution/21093 -https://www.oceanexpert.org/expert/46202 -https://www.oceanexpert.org/institution/19718 -https://www.oceanexpert.org/expert/44692 -https://www.oceanexpert.org/expert/43320 -https://www.oceanexpert.org/expert/40581 -https://www.oceanexpert.org/institution/16119 -https://www.oceanexpert.org/expert/36518 -https://www.oceanexpert.org/expert/45618 -https://www.oceanexpert.org/expert/36274 -https://www.oceanexpert.org/institution/6106 -https://www.oceanexpert.org/expert/47712 -https://www.oceanexpert.org/expert/24754 -https://www.oceanexpert.org/expert/28571 -https://www.oceanexpert.org/institution/17800 -https://www.oceanexpert.org/institution/5838 -https://www.oceanexpert.org/institution/15595 -https://www.oceanexpert.org/expert/27288 -https://www.oceanexpert.org/expert/23275 -https://www.oceanexpert.org/expert/17352 -https://www.oceanexpert.org/expert/17932 -https://www.oceanexpert.org/expert/26019 -https://www.oceanexpert.org/expert/21932 -https://www.oceanexpert.org/expert/22688 -https://www.oceanexpert.org/expert/33558 -https://www.oceanexpert.org/expert/29883 -https://www.oceanexpert.org/event/72 -https://www.oceanexpert.org/expert/17165 -https://www.oceanexpert.org/institution/19112 -https://www.oceanexpert.org/expert/43359 -https://www.oceanexpert.org/expert/41237 -https://www.oceanexpert.org/expert/42060 -https://www.oceanexpert.org/institution/11863 -https://www.oceanexpert.org/expert/39442 -https://www.oceanexpert.org/expert/7768 -https://www.oceanexpert.org/expert/16834 -https://www.oceanexpert.org/expert/8722 -https://www.oceanexpert.org/institution/6736 -https://www.oceanexpert.org/expert/17116 -https://www.oceanexpert.org/institution/22163 -https://www.oceanexpert.org/expert/25962 -https://www.oceanexpert.org/expert/43807 -https://www.oceanexpert.org/expert/19305 -https://www.oceanexpert.org/expert/34583 -https://www.oceanexpert.org/expert/44497 -https://www.oceanexpert.org/institution/8292 -https://www.oceanexpert.org/expert/22404 -https://www.oceanexpert.org/expert/16241 -https://www.oceanexpert.org/expert/15463 -https://www.oceanexpert.org/expert/17978 -https://www.oceanexpert.org/institution/22096 -https://www.oceanexpert.org/event/1890 -https://www.oceanexpert.org/institution/18085 -https://www.oceanexpert.org/expert/18937 -https://www.oceanexpert.org/expert/48845 -https://www.oceanexpert.org/expert/9319 -https://www.oceanexpert.org/expert/20000 -https://www.oceanexpert.org/expert/39615 -https://www.oceanexpert.org/expert/24180 -https://www.oceanexpert.org/expert/14763 -https://www.oceanexpert.org/expert/36157 -https://www.oceanexpert.org/expert/25228 -https://www.oceanexpert.org/expert/36439 -https://www.oceanexpert.org/expert/26039 -https://www.oceanexpert.org/event/1591 -https://www.oceanexpert.org/event/454 -https://www.oceanexpert.org/institution/21243 -https://www.oceanexpert.org/expert/22526 -https://www.oceanexpert.org/expert/31865 -https://www.oceanexpert.org/expert/33916 -https://www.oceanexpert.org/event/2876 -https://www.oceanexpert.org/institution/20302 -https://www.oceanexpert.org/expert/32653 -https://www.oceanexpert.org/expert/25146 -https://www.oceanexpert.org/expert/36359 -https://www.oceanexpert.org/expert/46711 -https://www.oceanexpert.org/expert/47176 -https://www.oceanexpert.org/event/1836 -https://www.oceanexpert.org/expert/20126 -https://www.oceanexpert.org/event/2108 -https://www.oceanexpert.org/expert/34682 -https://www.oceanexpert.org/expert/30644 -https://www.oceanexpert.org/expert/47905 -https://www.oceanexpert.org/expert/24035 -https://www.oceanexpert.org/expert/32198 -https://www.oceanexpert.org/expert/34091 -https://www.oceanexpert.org/expert/37797 -https://www.oceanexpert.org/expert/32752 -https://www.oceanexpert.org/expert/22027 -https://www.oceanexpert.org/institution/20891 -https://www.oceanexpert.org/institution/20689 -https://www.oceanexpert.org/expert/45205 -https://www.oceanexpert.org/expert/37456 -https://www.oceanexpert.org/institution/14255 -https://www.oceanexpert.org/institution/16119 -https://www.oceanexpert.org/institution/17722 -https://www.oceanexpert.org/expert/44571 -https://www.oceanexpert.org/expert/44589 -https://www.oceanexpert.org/expert/26413 -https://www.oceanexpert.org/institution/11787 -https://www.oceanexpert.org/institution/6124 -https://www.oceanexpert.org/expert/46845 -https://www.oceanexpert.org/expert/25058 -https://www.oceanexpert.org/expert/48907 -https://www.oceanexpert.org/institution/19371 -https://www.oceanexpert.org/expert/3143 -https://www.oceanexpert.org/expert/20198 -https://www.oceanexpert.org/expert/38703 -https://www.oceanexpert.org/expert/36626 -https://www.oceanexpert.org/expert/18483 -https://www.oceanexpert.org/expert/35000 -https://www.oceanexpert.org/expert/21289 -https://www.oceanexpert.org/institution/18510 -https://www.oceanexpert.org/institution/4975 -https://www.oceanexpert.org/institution/18161 -https://www.oceanexpert.org/expert/28398 -https://www.oceanexpert.org/expert/29387 -https://www.oceanexpert.org/institution/6715 -https://www.oceanexpert.org/expert/46187 -https://www.oceanexpert.org/event/2354 -https://www.oceanexpert.org/expert/18969 -https://www.oceanexpert.org/expert/37232 -https://www.oceanexpert.org/expert/45063 -https://www.oceanexpert.org/expert/23641 -https://www.oceanexpert.org/expert/10790 -https://www.oceanexpert.org/expert/37752 -https://www.oceanexpert.org/expert/22233 -https://www.oceanexpert.org/expert/32288 -https://www.oceanexpert.org/expert/7042 -https://www.oceanexpert.org/event/1991 -https://www.oceanexpert.org/expert/26915 -https://www.oceanexpert.org/expert/46483 -https://www.oceanexpert.org/expert/40330 -https://www.oceanexpert.org/expert/43589 -https://www.oceanexpert.org/expert/44820 -https://www.oceanexpert.org/institution/22122 -https://www.oceanexpert.org/institution/12227 -https://www.oceanexpert.org/expert/25784 -https://www.oceanexpert.org/event/1300 -https://www.oceanexpert.org/expert/18353 -https://www.oceanexpert.org/expert/35264 -https://www.oceanexpert.org/expert/44578 -https://www.oceanexpert.org/event/576 -https://www.oceanexpert.org/institution/5976 -https://www.oceanexpert.org/expert/46304 -https://www.oceanexpert.org/expert/24591 -https://www.oceanexpert.org/expert/16193 -https://www.oceanexpert.org/expert/21726 -https://www.oceanexpert.org/expert/13043 -https://www.oceanexpert.org/institution/21230 -https://www.oceanexpert.org/expert/31190 -https://www.oceanexpert.org/institution/19948 -https://www.oceanexpert.org/institution/9244 -https://www.oceanexpert.org/expert/20444 -https://www.oceanexpert.org/institution/19342 -https://www.oceanexpert.org/institution/21582 -https://www.oceanexpert.org/expert/29401 -https://www.oceanexpert.org/expert/43477 -https://www.oceanexpert.org/expert/46645 -https://www.oceanexpert.org/expert/18313 -https://www.oceanexpert.org/expert/26315 -https://www.oceanexpert.org/expert/48744 -https://www.oceanexpert.org/expert/23631 -https://www.oceanexpert.org/expert/26101 -https://www.oceanexpert.org/expert/31980 -https://www.oceanexpert.org/institution/12472 -https://www.oceanexpert.org/event/1638 -https://www.oceanexpert.org/institution/21840 -https://www.oceanexpert.org/institution/12232 -https://www.oceanexpert.org/expert/8861 -https://www.oceanexpert.org/event/276 -https://www.oceanexpert.org/expert/26366 -https://www.oceanexpert.org/institution/11997 -https://www.oceanexpert.org/expert/45173 -https://www.oceanexpert.org/expert/43251 -https://www.oceanexpert.org/expert/32454 -https://www.oceanexpert.org/expert/15538 -https://www.oceanexpert.org/institution/20299 -https://www.oceanexpert.org/expert/23573 -https://www.oceanexpert.org/event/356 -https://www.oceanexpert.org/expert/44102 -https://www.oceanexpert.org/institution/12002 -https://www.oceanexpert.org/expert/37098 -https://www.oceanexpert.org/institution/17599 -https://www.oceanexpert.org/expert/41425 -https://www.oceanexpert.org/expert/35793 -https://www.oceanexpert.org/expert/25434 -https://www.oceanexpert.org/expert/25891 -https://www.oceanexpert.org/event/1597 -https://www.oceanexpert.org/expert/32408 -https://www.oceanexpert.org/expert/20116 -https://www.oceanexpert.org/expert/45375 -https://www.oceanexpert.org/expert/32536 -https://www.oceanexpert.org/institution/14002 -https://www.oceanexpert.org/expert/24919 -https://www.oceanexpert.org/event/2720 -https://www.oceanexpert.org/expert/48557 -https://www.oceanexpert.org/expert/39153 -https://www.oceanexpert.org/expert/153 -https://www.oceanexpert.org/expert/42731 -https://www.oceanexpert.org/institution/21447 -https://www.oceanexpert.org/expert/33327 -https://www.oceanexpert.org/expert/20483 -https://www.oceanexpert.org/expert/20633 -https://www.oceanexpert.org/expert/44010 -https://www.oceanexpert.org/institution/10023 -https://www.oceanexpert.org/institution/19357 -https://www.oceanexpert.org/expert/45596 -https://www.oceanexpert.org/institution/14416 -https://www.oceanexpert.org/institution/18872 -https://www.oceanexpert.org/expert/24164 -https://www.oceanexpert.org/institution/20033 -https://www.oceanexpert.org/expert/49007 -https://www.oceanexpert.org/expert/43509 -https://www.oceanexpert.org/event/3263 -https://www.oceanexpert.org/expert/47922 -https://www.oceanexpert.org/expert/26802 -https://www.oceanexpert.org/institution/20053 -https://www.oceanexpert.org/institution/5455 -https://www.oceanexpert.org/institution/10519 -https://www.oceanexpert.org/expert/16658 -https://www.oceanexpert.org/institution/11599 -https://www.oceanexpert.org/expert/29852 -https://www.oceanexpert.org/expert/46835 -https://www.oceanexpert.org/expert/34735 -https://www.oceanexpert.org/institution/21358 -https://www.oceanexpert.org/institution/15661 -https://www.oceanexpert.org/expert/22101 -https://www.oceanexpert.org/expert/28123 -https://www.oceanexpert.org/expert/22971 -https://www.oceanexpert.org/expert/26565 -https://www.oceanexpert.org/event/510 -https://www.oceanexpert.org/expert/36832 -https://www.oceanexpert.org/event/659 -https://www.oceanexpert.org/institution/20724 -https://www.oceanexpert.org/expert/12019 -https://www.oceanexpert.org/institution/13189 -https://www.oceanexpert.org/expert/7761 -https://www.oceanexpert.org/institution/21192 -https://www.oceanexpert.org/institution/15814 -https://www.oceanexpert.org/expert/25139 -https://www.oceanexpert.org/expert/28032 -https://www.oceanexpert.org/expert/14542 -https://www.oceanexpert.org/expert/29919 -https://www.oceanexpert.org/expert/36524 -https://www.oceanexpert.org/expert/46911 -https://www.oceanexpert.org/institution/15212 -https://www.oceanexpert.org/expert/24963 -https://www.oceanexpert.org/expert/1437 -https://www.oceanexpert.org/expert/35400 -https://www.oceanexpert.org/expert/21758 -https://www.oceanexpert.org/expert/25706 -https://www.oceanexpert.org/institution/15248 -https://www.oceanexpert.org/event/820 -https://www.oceanexpert.org/expert/7572 -https://www.oceanexpert.org/expert/37554 -https://www.oceanexpert.org/expert/18793 -https://www.oceanexpert.org/institution/20784 -https://www.oceanexpert.org/expert/48161 -https://www.oceanexpert.org/institution/16284 -https://www.oceanexpert.org/expert/26169 -https://www.oceanexpert.org/expert/18723 -https://www.oceanexpert.org/expert/19972 -https://www.oceanexpert.org/expert/20166 -https://www.oceanexpert.org/expert/46216 -https://www.oceanexpert.org/institution/16063 -https://www.oceanexpert.org/institution/21710 -https://www.oceanexpert.org/institution/20637 -https://www.oceanexpert.org/expert/44197 -https://www.oceanexpert.org/expert/26559 -https://www.oceanexpert.org/expert/26886 -https://www.oceanexpert.org/institution/15473 -https://www.oceanexpert.org/expert/24645 -https://www.oceanexpert.org/institution/13613 -https://www.oceanexpert.org/expert/47650 -https://www.oceanexpert.org/expert/12005 -https://www.oceanexpert.org/expert/19715 -https://www.oceanexpert.org/expert/46995 -https://www.oceanexpert.org/event/168 -https://www.oceanexpert.org/expert/29205 -https://www.oceanexpert.org/expert/15336 -https://www.oceanexpert.org/institution/6080 -https://www.oceanexpert.org/expert/34274 -https://www.oceanexpert.org/expert/25427 -https://www.oceanexpert.org/expert/24858 -https://www.oceanexpert.org/expert/38174 -https://www.oceanexpert.org/expert/40587 -https://www.oceanexpert.org/expert/34239 -https://www.oceanexpert.org/institution/8785 -https://www.oceanexpert.org/expert/48709 -https://www.oceanexpert.org/event/2524 -https://www.oceanexpert.org/expert/38044 -https://www.oceanexpert.org/expert/4619 -https://www.oceanexpert.org/institution/19196 -https://www.oceanexpert.org/expert/27199 -https://www.oceanexpert.org/expert/37072 -https://www.oceanexpert.org/expert/20262 -https://www.oceanexpert.org/expert/37504 -https://www.oceanexpert.org/expert/27802 -https://www.oceanexpert.org/expert/48143 -https://www.oceanexpert.org/expert/24269 -https://www.oceanexpert.org/event/2824 -https://www.oceanexpert.org/institution/11849 -https://www.oceanexpert.org/expert/6919 -https://www.oceanexpert.org/institution/15380 -https://www.oceanexpert.org/expert/28361 -https://www.oceanexpert.org/expert/21915 -https://www.oceanexpert.org/expert/40100 -https://www.oceanexpert.org/expert/17124 -https://www.oceanexpert.org/expert/27871 -https://www.oceanexpert.org/institution/7618 -https://www.oceanexpert.org/expert/42021 -https://www.oceanexpert.org/institution/21597 -https://www.oceanexpert.org/expert/1291 -https://www.oceanexpert.org/expert/24092 -https://www.oceanexpert.org/expert/46826 -https://www.oceanexpert.org/institution/16158 -https://www.oceanexpert.org/expert/37686 -https://www.oceanexpert.org/expert/35405 -https://www.oceanexpert.org/expert/33915 -https://www.oceanexpert.org/expert/4417 -https://www.oceanexpert.org/event/1663 -https://www.oceanexpert.org/expert/34410 -https://www.oceanexpert.org/institution/21545 -https://www.oceanexpert.org/expert/25831 -https://www.oceanexpert.org/event/1210 -https://www.oceanexpert.org/institution/19392 -https://www.oceanexpert.org/expert/4294 -https://www.oceanexpert.org/expert/37752 -https://www.oceanexpert.org/expert/22342 -https://www.oceanexpert.org/expert/9247 -https://www.oceanexpert.org/expert/27277 -https://www.oceanexpert.org/expert/32198 -https://www.oceanexpert.org/institution/11797 -https://www.oceanexpert.org/institution/10566 -https://www.oceanexpert.org/expert/47812 -https://www.oceanexpert.org/institution/13102 -https://www.oceanexpert.org/event/1891 -https://www.oceanexpert.org/expert/45570 -https://www.oceanexpert.org/expert/37670 -https://www.oceanexpert.org/expert/48304 -https://www.oceanexpert.org/expert/26792 -https://www.oceanexpert.org/institution/17233 -https://www.oceanexpert.org/expert/29340 -https://www.oceanexpert.org/expert/26165 -https://www.oceanexpert.org/expert/19400 -https://www.oceanexpert.org/expert/43460 -https://www.oceanexpert.org/institution/18021 -https://www.oceanexpert.org/event/2173 -https://www.oceanexpert.org/institution/21403 -https://www.oceanexpert.org/expert/6342 -https://www.oceanexpert.org/expert/27130 -https://www.oceanexpert.org/expert/21530 -https://www.oceanexpert.org/expert/45296 -https://www.oceanexpert.org/expert/35263 -https://www.oceanexpert.org/expert/36165 -https://www.oceanexpert.org/expert/10839 -https://www.oceanexpert.org/institution/16521 -https://www.oceanexpert.org/event/1712 -https://www.oceanexpert.org/expert/33201 -https://www.oceanexpert.org/expert/32513 -https://www.oceanexpert.org/expert/47575 -https://www.oceanexpert.org/expert/41924 -https://www.oceanexpert.org/expert/1609 -https://www.oceanexpert.org/expert/44513 -https://www.oceanexpert.org/expert/21185 -https://www.oceanexpert.org/expert/7197 -https://www.oceanexpert.org/institution/19359 -https://www.oceanexpert.org/institution/10309 -https://www.oceanexpert.org/institution/6989 -https://www.oceanexpert.org/expert/24820 -https://www.oceanexpert.org/expert/41611 -https://www.oceanexpert.org/expert/25095 -https://www.oceanexpert.org/expert/26176 -https://www.oceanexpert.org/expert/23003 -https://www.oceanexpert.org/institution/5301 -https://www.oceanexpert.org/institution/5909 -https://www.oceanexpert.org/expert/16634 -https://www.oceanexpert.org/expert/12351 -https://www.oceanexpert.org/expert/23931 -https://www.oceanexpert.org/event/2328 -https://www.oceanexpert.org/expert/16012 -https://www.oceanexpert.org/expert/32207 -https://www.oceanexpert.org/expert/17420 -https://www.oceanexpert.org/expert/34713 -https://www.oceanexpert.org/institution/15388 -https://www.oceanexpert.org/expert/21352 -https://www.oceanexpert.org/expert/40674 -https://www.oceanexpert.org/expert/48448 -https://www.oceanexpert.org/expert/18124 -https://www.oceanexpert.org/event/1935 -https://www.oceanexpert.org/expert/45125 -https://www.oceanexpert.org/event/2549 -https://www.oceanexpert.org/institution/15518 -https://www.oceanexpert.org/expert/43464 -https://www.oceanexpert.org/expert/44927 -https://www.oceanexpert.org/expert/18151 -https://www.oceanexpert.org/institution/9596 -https://www.oceanexpert.org/expert/19581 -https://www.oceanexpert.org/expert/33323 -https://www.oceanexpert.org/institution/16696 -https://www.oceanexpert.org/institution/20076 -https://www.oceanexpert.org/expert/3771 -https://www.oceanexpert.org/expert/25707 -https://www.oceanexpert.org/expert/37895 -https://www.oceanexpert.org/event/3100 -https://www.oceanexpert.org/expert/18408 -https://www.oceanexpert.org/expert/17230 -https://www.oceanexpert.org/expert/48652 -https://www.oceanexpert.org/event/3002 -https://www.oceanexpert.org/expert/24883 -https://www.oceanexpert.org/expert/7271 -https://www.oceanexpert.org/institution/11674 -https://www.oceanexpert.org/institution/18991 -https://www.oceanexpert.org/institution/13794 -https://www.oceanexpert.org/expert/19851 -https://www.oceanexpert.org/expert/36337 -https://www.oceanexpert.org/expert/34846 -https://www.oceanexpert.org/expert/39889 -https://www.oceanexpert.org/institution/12374 -https://www.oceanexpert.org/expert/44508 -https://www.oceanexpert.org/institution/21855 -https://www.oceanexpert.org/expert/42137 -https://www.oceanexpert.org/expert/24538 -https://www.oceanexpert.org/expert/42892 -https://www.oceanexpert.org/expert/36155 -https://www.oceanexpert.org/expert/47737 -https://www.oceanexpert.org/expert/36640 -https://www.oceanexpert.org/expert/11740 -https://www.oceanexpert.org/institution/19838 -https://www.oceanexpert.org/expert/19080 -https://www.oceanexpert.org/expert/27222 -https://www.oceanexpert.org/expert/16380 -https://www.oceanexpert.org/expert/21132 -https://www.oceanexpert.org/institution/17409 -https://www.oceanexpert.org/expert/39034 -https://www.oceanexpert.org/expert/28845 -https://www.oceanexpert.org/expert/37085 -https://www.oceanexpert.org/expert/16985 -https://www.oceanexpert.org/expert/22612 -https://www.oceanexpert.org/expert/25884 -https://www.oceanexpert.org/institution/12498 -https://www.oceanexpert.org/event/1412 -https://www.oceanexpert.org/expert/43156 -https://www.oceanexpert.org/expert/48186 -https://www.oceanexpert.org/event/2834 -https://www.oceanexpert.org/expert/31993 -https://www.oceanexpert.org/expert/19987 -https://www.oceanexpert.org/expert/13176 -https://www.oceanexpert.org/expert/31566 -https://www.oceanexpert.org/institution/19842 -https://www.oceanexpert.org/expert/37132 -https://www.oceanexpert.org/expert/28166 -https://www.oceanexpert.org/expert/32858 -https://www.oceanexpert.org/expert/36343 -https://www.oceanexpert.org/institution/16691 -https://www.oceanexpert.org/institution/19901 -https://www.oceanexpert.org/event/2878 -https://www.oceanexpert.org/expert/25830 -https://www.oceanexpert.org/event/2357 -https://www.oceanexpert.org/expert/38929 -https://www.oceanexpert.org/expert/43360 -https://www.oceanexpert.org/expert/18656 -https://www.oceanexpert.org/institution/18118 -https://www.oceanexpert.org/expert/19733 -https://www.oceanexpert.org/expert/45716 -https://www.oceanexpert.org/institution/17037 -https://www.oceanexpert.org/institution/14163 -https://www.oceanexpert.org/expert/4370 -https://www.oceanexpert.org/expert/47292 -https://www.oceanexpert.org/event/3058 -https://www.oceanexpert.org/expert/21096 -https://www.oceanexpert.org/expert/2150 -https://www.oceanexpert.org/expert/27310 -https://www.oceanexpert.org/expert/47018 -https://www.oceanexpert.org/expert/36997 -https://www.oceanexpert.org/expert/24718 -https://www.oceanexpert.org/event/2977 -https://www.oceanexpert.org/expert/11209 -https://www.oceanexpert.org/expert/24897 -https://www.oceanexpert.org/expert/44767 -https://www.oceanexpert.org/event/2104 -https://www.oceanexpert.org/institution/9179 -https://www.oceanexpert.org/institution/17834 -https://www.oceanexpert.org/expert/44432 -https://www.oceanexpert.org/expert/38629 -https://www.oceanexpert.org/expert/44294 -https://www.oceanexpert.org/expert/46982 -https://www.oceanexpert.org/institution/13158 -https://www.oceanexpert.org/expert/20388 -https://www.oceanexpert.org/expert/48425 -https://www.oceanexpert.org/event/44 -https://www.oceanexpert.org/expert/48156 -https://www.oceanexpert.org/expert/28409 -https://www.oceanexpert.org/institution/14409 -https://www.oceanexpert.org/expert/31050 -https://www.oceanexpert.org/expert/24672 -https://www.oceanexpert.org/expert/27442 -https://www.oceanexpert.org/expert/43136 -https://www.oceanexpert.org/expert/39227 -https://www.oceanexpert.org/expert/26827 -https://www.oceanexpert.org/expert/32236 -https://www.oceanexpert.org/expert/26694 -https://www.oceanexpert.org/institution/22149 -https://www.oceanexpert.org/institution/19093 -https://www.oceanexpert.org/institution/18882 -https://www.oceanexpert.org/expert/47951 -https://www.oceanexpert.org/expert/29484 -https://www.oceanexpert.org/expert/47640 -https://www.oceanexpert.org/expert/27273 -https://www.oceanexpert.org/expert/47108 -https://www.oceanexpert.org/expert/32347 -https://www.oceanexpert.org/event/143 -https://www.oceanexpert.org/institution/21712 -https://www.oceanexpert.org/event/2355 -https://www.oceanexpert.org/expert/31449 -https://www.oceanexpert.org/expert/6607 -https://www.oceanexpert.org/institution/19481 -https://www.oceanexpert.org/expert/21089 -https://www.oceanexpert.org/institution/21705 -https://www.oceanexpert.org/expert/45850 -https://www.oceanexpert.org/expert/37517 -https://www.oceanexpert.org/event/1212 -https://www.oceanexpert.org/expert/20624 -https://www.oceanexpert.org/expert/15853 -https://www.oceanexpert.org/expert/39274 -https://www.oceanexpert.org/institution/20723 -https://www.oceanexpert.org/institution/17940 -https://www.oceanexpert.org/expert/22955 -https://www.oceanexpert.org/event/1282 -https://www.oceanexpert.org/expert/37514 -https://www.oceanexpert.org/expert/48952 -https://www.oceanexpert.org/expert/47701 -https://www.oceanexpert.org/expert/29035 -https://www.oceanexpert.org/expert/32236 -https://www.oceanexpert.org/institution/11307 -https://www.oceanexpert.org/institution/21759 -https://www.oceanexpert.org/expert/47018 -https://www.oceanexpert.org/expert/45367 -https://www.oceanexpert.org/institution/21084 -https://www.oceanexpert.org/expert/36386 -https://www.oceanexpert.org/expert/36180 -https://www.oceanexpert.org/expert/35494 -https://www.oceanexpert.org/expert/46807 -https://www.oceanexpert.org/expert/43085 -https://www.oceanexpert.org/expert/26481 -https://www.oceanexpert.org/institution/20829 -https://www.oceanexpert.org/institution/18815 -https://www.oceanexpert.org/institution/20910 -https://www.oceanexpert.org/expert/35759 -https://www.oceanexpert.org/expert/28245 -https://www.oceanexpert.org/institution/16797 -https://www.oceanexpert.org/expert/15911 -https://www.oceanexpert.org/event/807 -https://www.oceanexpert.org/event/1050 -https://www.oceanexpert.org/event/2550 -https://www.oceanexpert.org/expert/45467 -https://www.oceanexpert.org/expert/3993 -https://www.oceanexpert.org/expert/16689 -https://www.oceanexpert.org/expert/30530 -https://www.oceanexpert.org/event/3107 -https://www.oceanexpert.org/event/1545 -https://www.oceanexpert.org/expert/48490 -https://www.oceanexpert.org/institution/22052 -https://www.oceanexpert.org/expert/13286 -https://www.oceanexpert.org/expert/35806 -https://www.oceanexpert.org/expert/35244 -https://www.oceanexpert.org/expert/37436 -https://www.oceanexpert.org/institution/12546 -https://www.oceanexpert.org/expert/8598 -https://www.oceanexpert.org/expert/42735 -https://www.oceanexpert.org/event/891 -https://www.oceanexpert.org/expert/17617 -https://www.oceanexpert.org/expert/26423 -https://www.oceanexpert.org/expert/43271 -https://www.oceanexpert.org/expert/43079 -https://www.oceanexpert.org/institution/12792 -https://www.oceanexpert.org/event/1347 -https://www.oceanexpert.org/expert/43016 -https://www.oceanexpert.org/institution/14511 -https://www.oceanexpert.org/expert/41053 -https://www.oceanexpert.org/expert/20040 -https://www.oceanexpert.org/expert/4294 -https://www.oceanexpert.org/expert/29696 -https://www.oceanexpert.org/expert/18050 -https://www.oceanexpert.org/institution/12260 -https://www.oceanexpert.org/institution/10933 -https://www.oceanexpert.org/event/2076 -https://www.oceanexpert.org/expert/21097 -https://www.oceanexpert.org/expert/26681 -https://www.oceanexpert.org/expert/48968 -https://www.oceanexpert.org/expert/35894 -https://www.oceanexpert.org/expert/36456 -https://www.oceanexpert.org/event/1544 -https://www.oceanexpert.org/expert/44665 -https://www.oceanexpert.org/institution/21333 -https://www.oceanexpert.org/expert/27381 -https://www.oceanexpert.org/event/2033 -https://www.oceanexpert.org/expert/34446 -https://www.oceanexpert.org/expert/21441 -https://www.oceanexpert.org/institution/10490 -https://www.oceanexpert.org/expert/44435 -https://www.oceanexpert.org/institution/20759 -https://www.oceanexpert.org/expert/21093 -https://www.oceanexpert.org/expert/36448 -https://www.oceanexpert.org/expert/26886 -https://www.oceanexpert.org/expert/32515 -https://www.oceanexpert.org/expert/26032 -https://www.oceanexpert.org/expert/44930 -https://www.oceanexpert.org/expert/47204 -https://www.oceanexpert.org/institution/21667 -https://www.oceanexpert.org/expert/23777 -https://www.oceanexpert.org/event/2553 -https://www.oceanexpert.org/expert/25210 -https://www.oceanexpert.org/expert/26838 -https://www.oceanexpert.org/institution/16968 -https://www.oceanexpert.org/event/368 -https://www.oceanexpert.org/expert/20596 -https://www.oceanexpert.org/institution/18910 -https://www.oceanexpert.org/event/1598 -https://www.oceanexpert.org/expert/22397 -https://www.oceanexpert.org/expert/36791 -https://www.oceanexpert.org/expert/46921 -https://www.oceanexpert.org/expert/35527 -https://www.oceanexpert.org/expert/11728 -https://www.oceanexpert.org/event/176 -https://www.oceanexpert.org/expert/42641 -https://www.oceanexpert.org/expert/44842 -https://www.oceanexpert.org/expert/20818 -https://www.oceanexpert.org/event/2255 -https://www.oceanexpert.org/institution/20753 -https://www.oceanexpert.org/expert/48790 -https://www.oceanexpert.org/expert/47813 -https://www.oceanexpert.org/institution/21739 -https://www.oceanexpert.org/expert/23623 -https://www.oceanexpert.org/expert/13381 -https://www.oceanexpert.org/expert/11986 -https://www.oceanexpert.org/expert/33174 -https://www.oceanexpert.org/expert/40566 -https://www.oceanexpert.org/expert/48152 -https://www.oceanexpert.org/institution/7833 -https://www.oceanexpert.org/expert/23561 -https://www.oceanexpert.org/expert/46236 -https://www.oceanexpert.org/expert/14139 -https://www.oceanexpert.org/expert/23566 -https://www.oceanexpert.org/expert/6818 -https://www.oceanexpert.org/expert/38261 -https://www.oceanexpert.org/expert/27525 -https://www.oceanexpert.org/expert/22955 -https://www.oceanexpert.org/expert/47341 -https://www.oceanexpert.org/expert/48039 -https://www.oceanexpert.org/expert/36010 -https://www.oceanexpert.org/expert/14173 -https://www.oceanexpert.org/expert/8736 -https://www.oceanexpert.org/expert/19996 -https://www.oceanexpert.org/expert/16767 -https://www.oceanexpert.org/expert/34784 -https://www.oceanexpert.org/expert/39239 -https://www.oceanexpert.org/expert/31966 -https://www.oceanexpert.org/expert/6475 -https://www.oceanexpert.org/expert/19400 -https://www.oceanexpert.org/expert/29691 -https://www.oceanexpert.org/expert/44501 -https://www.oceanexpert.org/expert/16479 -https://www.oceanexpert.org/expert/36245 -https://www.oceanexpert.org/expert/21708 -https://www.oceanexpert.org/event/1296 -https://www.oceanexpert.org/expert/26757 -https://www.oceanexpert.org/expert/17147 -https://www.oceanexpert.org/expert/32241 -https://www.oceanexpert.org/expert/43094 -https://www.oceanexpert.org/expert/35038 -https://www.oceanexpert.org/event/1697 -https://www.oceanexpert.org/expert/20856 -https://www.oceanexpert.org/institution/11289 -https://www.oceanexpert.org/expert/45496 -https://www.oceanexpert.org/expert/38016 -https://www.oceanexpert.org/expert/20812 -https://www.oceanexpert.org/expert/26584 -https://www.oceanexpert.org/expert/47177 -https://www.oceanexpert.org/institution/15823 -https://www.oceanexpert.org/expert/1189 -https://www.oceanexpert.org/expert/26536 -https://www.oceanexpert.org/expert/24123 -https://www.oceanexpert.org/expert/32448 -https://www.oceanexpert.org/expert/35260 -https://www.oceanexpert.org/expert/6915 -https://www.oceanexpert.org/expert/42698 -https://www.oceanexpert.org/institution/14004 -https://www.oceanexpert.org/expert/29971 -https://www.oceanexpert.org/expert/15742 -https://www.oceanexpert.org/expert/43216 -https://www.oceanexpert.org/institution/14171 -https://www.oceanexpert.org/expert/31464 -https://www.oceanexpert.org/institution/8173 -https://www.oceanexpert.org/expert/22662 -https://www.oceanexpert.org/expert/43392 -https://www.oceanexpert.org/event/1170 -https://www.oceanexpert.org/institution/17985 -https://www.oceanexpert.org/expert/33937 -https://www.oceanexpert.org/expert/38783 -https://www.oceanexpert.org/institution/20122 -https://www.oceanexpert.org/expert/34889 -https://www.oceanexpert.org/expert/36264 -https://www.oceanexpert.org/expert/28077 -https://www.oceanexpert.org/expert/24224 -https://www.oceanexpert.org/expert/33621 -https://www.oceanexpert.org/expert/6934 -https://www.oceanexpert.org/expert/43569 -https://www.oceanexpert.org/expert/22610 -https://www.oceanexpert.org/expert/24369 -https://www.oceanexpert.org/expert/44888 -https://www.oceanexpert.org/expert/43322 -https://www.oceanexpert.org/institution/9727 -https://www.oceanexpert.org/institution/20951 -https://www.oceanexpert.org/expert/27293 -https://www.oceanexpert.org/expert/43937 -https://www.oceanexpert.org/expert/47064 -https://www.oceanexpert.org/expert/22721 -https://www.oceanexpert.org/expert/24234 -https://www.oceanexpert.org/expert/36515 -https://www.oceanexpert.org/expert/20528 -https://www.oceanexpert.org/event/45 -https://www.oceanexpert.org/expert/40037 -https://www.oceanexpert.org/expert/24455 -https://www.oceanexpert.org/expert/35358 -https://www.oceanexpert.org/institution/14719 -https://www.oceanexpert.org/expert/32476 -https://www.oceanexpert.org/event/1729 -https://www.oceanexpert.org/expert/28170 -https://www.oceanexpert.org/institution/19396 -https://www.oceanexpert.org/event/1570 -https://www.oceanexpert.org/institution/7914 -https://www.oceanexpert.org/expert/24398 -https://www.oceanexpert.org/expert/35456 -https://www.oceanexpert.org/institution/15731 -https://www.oceanexpert.org/expert/23040 -https://www.oceanexpert.org/event/240 -https://www.oceanexpert.org/event/2508 -https://www.oceanexpert.org/institution/10939 -https://www.oceanexpert.org/expert/18944 -https://www.oceanexpert.org/expert/33062 -https://www.oceanexpert.org/expert/42883 -https://www.oceanexpert.org/expert/26716 -https://www.oceanexpert.org/expert/13743 -https://www.oceanexpert.org/institution/19288 -https://www.oceanexpert.org/expert/46651 -https://www.oceanexpert.org/event/699 -https://www.oceanexpert.org/event/2683 -https://www.oceanexpert.org/expert/46770 -https://www.oceanexpert.org/event/761 -https://www.oceanexpert.org/institution/18668 -https://www.oceanexpert.org/expert/28458 -https://www.oceanexpert.org/expert/42545 -https://www.oceanexpert.org/institution/21510 -https://www.oceanexpert.org/institution/20813 -https://www.oceanexpert.org/expert/18445 -https://www.oceanexpert.org/institution/21704 -https://www.oceanexpert.org/expert/35644 -https://www.oceanexpert.org/institution/20823 -https://www.oceanexpert.org/expert/26022 -https://www.oceanexpert.org/event/2557 -https://www.oceanexpert.org/expert/19778 -https://www.oceanexpert.org/expert/31661 -https://www.oceanexpert.org/institution/20937 -https://www.oceanexpert.org/institution/15823 -https://www.oceanexpert.org/expert/32815 -https://www.oceanexpert.org/expert/23334 -https://www.oceanexpert.org/expert/44002 -https://www.oceanexpert.org/expert/17848 -https://www.oceanexpert.org/institution/15701 -https://www.oceanexpert.org/expert/32587 -https://www.oceanexpert.org/event/1948 -https://www.oceanexpert.org/expert/3525 -https://www.oceanexpert.org/expert/26119 -https://www.oceanexpert.org/expert/46954 -https://www.oceanexpert.org/expert/37474 -https://www.oceanexpert.org/expert/24802 -https://www.oceanexpert.org/expert/27295 -https://www.oceanexpert.org/institution/12618 -https://www.oceanexpert.org/expert/21650 -https://www.oceanexpert.org/institution/17793 -https://www.oceanexpert.org/expert/30736 -https://www.oceanexpert.org/expert/17508 -https://www.oceanexpert.org/expert/27068 -https://www.oceanexpert.org/expert/27446 -https://www.oceanexpert.org/expert/43509 -https://www.oceanexpert.org/expert/36305 -https://www.oceanexpert.org/expert/506 -https://www.oceanexpert.org/expert/30563 -https://www.oceanexpert.org/institution/7745 -https://www.oceanexpert.org/expert/11209 -https://www.oceanexpert.org/expert/30560 -https://www.oceanexpert.org/institution/17076 -https://www.oceanexpert.org/institution/13642 -https://www.oceanexpert.org/expert/42697 -https://www.oceanexpert.org/expert/29375 -https://www.oceanexpert.org/expert/8427 -https://www.oceanexpert.org/expert/18892 -https://www.oceanexpert.org/expert/18432 -https://www.oceanexpert.org/institution/19314 -https://www.oceanexpert.org/expert/23739 -https://www.oceanexpert.org/expert/31616 -https://www.oceanexpert.org/expert/19047 -https://www.oceanexpert.org/expert/21141 -https://www.oceanexpert.org/expert/22756 -https://www.oceanexpert.org/institution/19071 -https://www.oceanexpert.org/expert/35158 -https://www.oceanexpert.org/expert/13351 -https://www.oceanexpert.org/expert/23748 -https://www.oceanexpert.org/expert/35170 -https://www.oceanexpert.org/event/3113 -https://www.oceanexpert.org/event/634 -https://www.oceanexpert.org/expert/28389 -https://www.oceanexpert.org/expert/47595 -https://www.oceanexpert.org/institution/21273 -https://www.oceanexpert.org/expert/40631 -https://www.oceanexpert.org/expert/1936 -https://www.oceanexpert.org/expert/22186 -https://www.oceanexpert.org/event/1779 -https://www.oceanexpert.org/expert/13557 -https://www.oceanexpert.org/expert/32542 -https://www.oceanexpert.org/expert/23191 -https://www.oceanexpert.org/expert/21100 -https://www.oceanexpert.org/expert/17626 -https://www.oceanexpert.org/expert/37000 -https://www.oceanexpert.org/institution/14952 -https://www.oceanexpert.org/event/1651 -https://www.oceanexpert.org/expert/38934 -https://www.oceanexpert.org/event/1965 -https://www.oceanexpert.org/expert/18838 -https://www.oceanexpert.org/institution/18670 -https://www.oceanexpert.org/expert/16744 -https://www.oceanexpert.org/expert/30783 -https://www.oceanexpert.org/expert/11195 -https://www.oceanexpert.org/expert/19567 -https://www.oceanexpert.org/institution/19250 -https://www.oceanexpert.org/event/2008 -https://www.oceanexpert.org/expert/8333 -https://www.oceanexpert.org/expert/13141 -https://www.oceanexpert.org/expert/25269 -https://www.oceanexpert.org/expert/34837 -https://www.oceanexpert.org/expert/38239 -https://www.oceanexpert.org/expert/20883 -https://www.oceanexpert.org/institution/15891 -https://www.oceanexpert.org/expert/25761 -https://www.oceanexpert.org/institution/15688 -https://www.oceanexpert.org/expert/22558 -https://www.oceanexpert.org/expert/33448 -https://www.oceanexpert.org/expert/31777 -https://www.oceanexpert.org/expert/24292 -https://www.oceanexpert.org/expert/27409 -https://www.oceanexpert.org/expert/23385 -https://www.oceanexpert.org/expert/6810 -https://www.oceanexpert.org/expert/34356 -https://www.oceanexpert.org/expert/7782 -https://www.oceanexpert.org/expert/24895 -https://www.oceanexpert.org/expert/21188 -https://www.oceanexpert.org/expert/28361 -https://www.oceanexpert.org/event/782 -https://www.oceanexpert.org/institution/17796 -https://www.oceanexpert.org/expert/26583 -https://www.oceanexpert.org/expert/29779 -https://www.oceanexpert.org/expert/18128 -https://www.oceanexpert.org/event/2915 -https://www.oceanexpert.org/expert/24301 -https://www.oceanexpert.org/expert/2182 -https://www.oceanexpert.org/expert/13054 -https://www.oceanexpert.org/expert/32233 -https://www.oceanexpert.org/expert/32348 -https://www.oceanexpert.org/expert/36221 -https://www.oceanexpert.org/expert/30244 -https://www.oceanexpert.org/expert/37341 -https://www.oceanexpert.org/institution/14132 -https://www.oceanexpert.org/expert/31048 -https://www.oceanexpert.org/institution/11356 -https://www.oceanexpert.org/expert/19729 -https://www.oceanexpert.org/expert/27050 -https://www.oceanexpert.org/expert/36368 -https://www.oceanexpert.org/institution/21087 -https://www.oceanexpert.org/expert/12709 -https://www.oceanexpert.org/expert/10613 -https://www.oceanexpert.org/expert/17339 -https://www.oceanexpert.org/expert/24108 -https://www.oceanexpert.org/event/2151 -https://www.oceanexpert.org/institution/19901 -https://www.oceanexpert.org/institution/11022 -https://www.oceanexpert.org/expert/22754 -https://www.oceanexpert.org/expert/42887 -https://www.oceanexpert.org/institution/18055 -https://www.oceanexpert.org/event/2920 -https://www.oceanexpert.org/expert/26012 -https://www.oceanexpert.org/expert/33274 -https://www.oceanexpert.org/expert/24629 -https://www.oceanexpert.org/expert/22581 -https://www.oceanexpert.org/expert/36471 -https://www.oceanexpert.org/expert/37943 -https://www.oceanexpert.org/event/1597 -https://www.oceanexpert.org/expert/24033 -https://www.oceanexpert.org/institution/6852 -https://www.oceanexpert.org/expert/26102 -https://www.oceanexpert.org/expert/45166 -https://www.oceanexpert.org/expert/33876 -https://www.oceanexpert.org/institution/19131 -https://www.oceanexpert.org/expert/42693 -https://www.oceanexpert.org/expert/45616 -https://www.oceanexpert.org/expert/25833 -https://www.oceanexpert.org/institution/15740 -https://www.oceanexpert.org/institution/21078 -https://www.oceanexpert.org/institution/14260 -https://www.oceanexpert.org/institution/19320 -https://www.oceanexpert.org/expert/11769 -https://www.oceanexpert.org/expert/43994 -https://www.oceanexpert.org/expert/37054 -https://www.oceanexpert.org/institution/18729 -https://www.oceanexpert.org/expert/43782 -https://www.oceanexpert.org/institution/10869 -https://www.oceanexpert.org/expert/9862 -https://www.oceanexpert.org/expert/45222 -https://www.oceanexpert.org/expert/46469 -https://www.oceanexpert.org/expert/22672 -https://www.oceanexpert.org/expert/40321 -https://www.oceanexpert.org/expert/43294 -https://www.oceanexpert.org/event/2700 -https://www.oceanexpert.org/institution/20608 -https://www.oceanexpert.org/expert/15102 -https://www.oceanexpert.org/institution/20323 -https://www.oceanexpert.org/expert/2341 -https://www.oceanexpert.org/expert/24038 -https://www.oceanexpert.org/expert/23074 -https://www.oceanexpert.org/expert/28411 -https://www.oceanexpert.org/expert/30211 -https://www.oceanexpert.org/institution/18481 -https://www.oceanexpert.org/institution/6811 -https://www.oceanexpert.org/institution/19329 -https://www.oceanexpert.org/expert/35456 -https://www.oceanexpert.org/expert/29836 -https://www.oceanexpert.org/institution/12703 -https://www.oceanexpert.org/expert/23281 -https://www.oceanexpert.org/expert/43837 -https://www.oceanexpert.org/expert/25564 -https://www.oceanexpert.org/institution/9456 -https://www.oceanexpert.org/expert/30208 -https://www.oceanexpert.org/institution/11461 -https://www.oceanexpert.org/expert/12875 -https://www.oceanexpert.org/event/1022 -https://www.oceanexpert.org/expert/43421 -https://www.oceanexpert.org/event/1073 -https://www.oceanexpert.org/institution/21604 -https://www.oceanexpert.org/institution/21193 -https://www.oceanexpert.org/expert/27463 -https://www.oceanexpert.org/expert/26339 -https://www.oceanexpert.org/expert/27100 -https://www.oceanexpert.org/expert/25530 -https://www.oceanexpert.org/expert/32907 -https://www.oceanexpert.org/expert/39474 -https://www.oceanexpert.org/event/3132 -https://www.oceanexpert.org/institution/15388 -https://www.oceanexpert.org/expert/21768 -https://www.oceanexpert.org/expert/11240 -https://www.oceanexpert.org/expert/45104 -https://www.oceanexpert.org/expert/31566 -https://www.oceanexpert.org/expert/42646 -https://www.oceanexpert.org/institution/21858 -https://www.oceanexpert.org/institution/14283 -https://www.oceanexpert.org/expert/45626 -https://www.oceanexpert.org/institution/8244 -https://www.oceanexpert.org/expert/22912 -https://www.oceanexpert.org/institution/6362 -https://www.oceanexpert.org/expert/27458 -https://www.oceanexpert.org/expert/46313 -https://www.oceanexpert.org/expert/19084 -https://www.oceanexpert.org/expert/45425 -https://www.oceanexpert.org/expert/39620 -https://www.oceanexpert.org/institution/10678 -https://www.oceanexpert.org/institution/12154 -https://www.oceanexpert.org/expert/41045 -https://www.oceanexpert.org/expert/45575 -https://www.oceanexpert.org/expert/45347 -https://www.oceanexpert.org/institution/7029 -https://www.oceanexpert.org/institution/11497 -https://www.oceanexpert.org/expert/20078 -https://www.oceanexpert.org/expert/47143 -https://www.oceanexpert.org/expert/20246 -https://www.oceanexpert.org/expert/16937 -https://www.oceanexpert.org/institution/14931 -https://www.oceanexpert.org/institution/15294 -https://www.oceanexpert.org/institution/20044 -https://www.oceanexpert.org/expert/38902 -https://www.oceanexpert.org/institution/21107 -https://www.oceanexpert.org/institution/19025 -https://www.oceanexpert.org/expert/47918 -https://www.oceanexpert.org/expert/19885 -https://www.oceanexpert.org/institution/12810 -https://www.oceanexpert.org/institution/13587 -https://www.oceanexpert.org/expert/45013 -https://www.oceanexpert.org/expert/37123 -https://www.oceanexpert.org/event/130 -https://www.oceanexpert.org/institution/21381 -https://www.oceanexpert.org/expert/45450 -https://www.oceanexpert.org/expert/34407 -https://www.oceanexpert.org/expert/21016 -https://www.oceanexpert.org/expert/22947 -https://www.oceanexpert.org/expert/16353 -https://www.oceanexpert.org/event/1247 -https://www.oceanexpert.org/expert/43046 -https://www.oceanexpert.org/expert/47905 -https://www.oceanexpert.org/expert/47476 -https://www.oceanexpert.org/expert/48735 -https://www.oceanexpert.org/institution/18795 -https://www.oceanexpert.org/institution/19096 -https://www.oceanexpert.org/institution/19702 -https://www.oceanexpert.org/expert/25164 -https://www.oceanexpert.org/institution/18877 -https://www.oceanexpert.org/expert/22625 -https://www.oceanexpert.org/expert/21249 -https://www.oceanexpert.org/expert/44512 -https://www.oceanexpert.org/expert/43320 -https://www.oceanexpert.org/expert/21306 -https://www.oceanexpert.org/expert/20211 -https://www.oceanexpert.org/expert/31156 -https://www.oceanexpert.org/event/1450 -https://www.oceanexpert.org/institution/10206 -https://www.oceanexpert.org/event/1576 -https://www.oceanexpert.org/expert/23123 -https://www.oceanexpert.org/expert/38046 -https://www.oceanexpert.org/institution/13195 -https://www.oceanexpert.org/institution/18349 -https://www.oceanexpert.org/expert/47618 -https://www.oceanexpert.org/institution/17735 -https://www.oceanexpert.org/expert/30539 -https://www.oceanexpert.org/institution/11514 -https://www.oceanexpert.org/expert/23712 -https://www.oceanexpert.org/expert/27286 -https://www.oceanexpert.org/expert/3201 -https://www.oceanexpert.org/event/2235 -https://www.oceanexpert.org/expert/24659 -https://www.oceanexpert.org/expert/43410 -https://www.oceanexpert.org/expert/35349 -https://www.oceanexpert.org/expert/24107 -https://www.oceanexpert.org/institution/12219 -https://www.oceanexpert.org/institution/18032 -https://www.oceanexpert.org/institution/12976 -https://www.oceanexpert.org/expert/34493 -https://www.oceanexpert.org/institution/17821 -https://www.oceanexpert.org/expert/35670 -https://www.oceanexpert.org/expert/19870 -https://www.oceanexpert.org/event/2557 -https://www.oceanexpert.org/event/2116 -https://www.oceanexpert.org/expert/12152 -https://www.oceanexpert.org/expert/41430 -https://www.oceanexpert.org/expert/5492 -https://www.oceanexpert.org/expert/27371 -https://www.oceanexpert.org/expert/35767 -https://www.oceanexpert.org/institution/15643 -https://www.oceanexpert.org/expert/25992 -https://www.oceanexpert.org/expert/44735 -https://www.oceanexpert.org/expert/48732 -https://www.oceanexpert.org/expert/32512 -https://www.oceanexpert.org/expert/40330 -https://www.oceanexpert.org/expert/20079 -https://www.oceanexpert.org/expert/25886 -https://www.oceanexpert.org/institution/17386 -https://www.oceanexpert.org/expert/36769 -https://www.oceanexpert.org/expert/41053 -https://www.oceanexpert.org/institution/20065 -https://www.oceanexpert.org/expert/42819 -https://www.oceanexpert.org/institution/21418 -https://www.oceanexpert.org/event/265 -https://www.oceanexpert.org/expert/3579 -https://www.oceanexpert.org/expert/46961 -https://www.oceanexpert.org/expert/37516 -https://www.oceanexpert.org/expert/26391 -https://www.oceanexpert.org/expert/38782 -https://www.oceanexpert.org/institution/16179 -https://www.oceanexpert.org/expert/18957 -https://www.oceanexpert.org/expert/29665 -https://www.oceanexpert.org/institution/20364 -https://www.oceanexpert.org/expert/6037 -https://www.oceanexpert.org/expert/25167 -https://www.oceanexpert.org/expert/19495 -https://www.oceanexpert.org/institution/20465 -https://www.oceanexpert.org/expert/16879 -https://www.oceanexpert.org/event/250 -https://www.oceanexpert.org/institution/20496 -https://www.oceanexpert.org/expert/24030 -https://www.oceanexpert.org/expert/17831 -https://www.oceanexpert.org/expert/21675 -https://www.oceanexpert.org/institution/21689 -https://www.oceanexpert.org/expert/22952 -https://www.oceanexpert.org/expert/21221 -https://www.oceanexpert.org/expert/44582 -https://www.oceanexpert.org/institution/18207 -https://www.oceanexpert.org/expert/31256 -https://www.oceanexpert.org/expert/21331 -https://www.oceanexpert.org/institution/18370 -https://www.oceanexpert.org/institution/18753 -https://www.oceanexpert.org/event/2305 -https://www.oceanexpert.org/expert/32223 -https://www.oceanexpert.org/event/1464 -https://www.oceanexpert.org/institution/11487 -https://www.oceanexpert.org/expert/44856 -https://www.oceanexpert.org/expert/27311 -https://www.oceanexpert.org/expert/21281 -https://www.oceanexpert.org/expert/36673 -https://www.oceanexpert.org/expert/33506 -https://www.oceanexpert.org/expert/26450 -https://www.oceanexpert.org/expert/17108 -https://www.oceanexpert.org/expert/44621 -https://www.oceanexpert.org/expert/42522 -https://www.oceanexpert.org/expert/32517 -https://www.oceanexpert.org/expert/44265 -https://www.oceanexpert.org/expert/17642 -https://www.oceanexpert.org/expert/26608 -https://www.oceanexpert.org/institution/11787 -https://www.oceanexpert.org/expert/33135 -https://www.oceanexpert.org/expert/38908 -https://www.oceanexpert.org/expert/22146 -https://www.oceanexpert.org/expert/7022 -https://www.oceanexpert.org/expert/42702 -https://www.oceanexpert.org/expert/19733 -https://www.oceanexpert.org/expert/20037 -https://www.oceanexpert.org/expert/42711 -https://www.oceanexpert.org/expert/25060 -https://www.oceanexpert.org/institution/19375 -https://www.oceanexpert.org/expert/30450 -https://www.oceanexpert.org/expert/2128 -https://www.oceanexpert.org/institution/5899 -https://www.oceanexpert.org/expert/34816 -https://www.oceanexpert.org/expert/20163 -https://www.oceanexpert.org/institution/20984 -https://www.oceanexpert.org/expert/47089 -https://www.oceanexpert.org/institution/13514 -https://www.oceanexpert.org/expert/27118 -https://www.oceanexpert.org/expert/22228 -https://www.oceanexpert.org/institution/12017 -https://www.oceanexpert.org/expert/31688 -https://www.oceanexpert.org/expert/6172 -https://www.oceanexpert.org/institution/13084 -https://www.oceanexpert.org/expert/43809 -https://www.oceanexpert.org/expert/24836 -https://www.oceanexpert.org/expert/26266 -https://www.oceanexpert.org/expert/32950 -https://www.oceanexpert.org/institution/14080 -https://www.oceanexpert.org/expert/7184 -https://www.oceanexpert.org/expert/28337 -https://www.oceanexpert.org/expert/17022 -https://www.oceanexpert.org/institution/20693 -https://www.oceanexpert.org/expert/44690 -https://www.oceanexpert.org/expert/36719 -https://www.oceanexpert.org/expert/17304 -https://www.oceanexpert.org/expert/36031 -https://www.oceanexpert.org/expert/783 -https://www.oceanexpert.org/expert/23199 -https://www.oceanexpert.org/expert/46292 -https://www.oceanexpert.org/expert/30562 -https://www.oceanexpert.org/expert/18386 -https://www.oceanexpert.org/expert/24032 -https://www.oceanexpert.org/expert/14883 -https://www.oceanexpert.org/expert/47523 -https://www.oceanexpert.org/institution/10180 -https://www.oceanexpert.org/expert/11815 -https://www.oceanexpert.org/expert/46909 -https://www.oceanexpert.org/institution/21433 -https://www.oceanexpert.org/expert/31107 -https://www.oceanexpert.org/expert/21543 -https://www.oceanexpert.org/expert/7921 -https://www.oceanexpert.org/expert/25768 -https://www.oceanexpert.org/expert/26670 -https://www.oceanexpert.org/expert/46444 -https://www.oceanexpert.org/expert/28818 -https://www.oceanexpert.org/expert/25064 -https://www.oceanexpert.org/expert/44844 -https://www.oceanexpert.org/expert/33552 -https://www.oceanexpert.org/expert/20314 -https://www.oceanexpert.org/expert/45132 -https://www.oceanexpert.org/expert/15742 -https://www.oceanexpert.org/expert/17132 -https://www.oceanexpert.org/expert/29432 -https://www.oceanexpert.org/institution/4899 -https://www.oceanexpert.org/expert/45711 -https://www.oceanexpert.org/event/2168 -https://www.oceanexpert.org/expert/13259 -https://www.oceanexpert.org/institution/21225 -https://www.oceanexpert.org/expert/25354 -https://www.oceanexpert.org/expert/34921 -https://www.oceanexpert.org/expert/30580 -https://www.oceanexpert.org/expert/34926 -https://www.oceanexpert.org/institution/20900 -https://www.oceanexpert.org/expert/43665 -https://www.oceanexpert.org/expert/39610 -https://www.oceanexpert.org/expert/31170 -https://www.oceanexpert.org/expert/31677 -https://www.oceanexpert.org/expert/28310 -https://www.oceanexpert.org/expert/19969 -https://www.oceanexpert.org/expert/27252 -https://www.oceanexpert.org/institution/12056 -https://www.oceanexpert.org/expert/32231 -https://www.oceanexpert.org/expert/20473 -https://www.oceanexpert.org/institution/8143 -https://www.oceanexpert.org/event/734 -https://www.oceanexpert.org/institution/12417 -https://www.oceanexpert.org/institution/14357 -https://www.oceanexpert.org/expert/45797 -https://www.oceanexpert.org/institution/20190 -https://www.oceanexpert.org/event/3084 -https://www.oceanexpert.org/expert/37992 -https://www.oceanexpert.org/expert/19625 -https://www.oceanexpert.org/institution/12617 -https://www.oceanexpert.org/expert/19881 -https://www.oceanexpert.org/expert/23029 -https://www.oceanexpert.org/institution/17743 -https://www.oceanexpert.org/expert/47755 -https://www.oceanexpert.org/expert/28394 -https://www.oceanexpert.org/expert/32210 -https://www.oceanexpert.org/institution/19875 -https://www.oceanexpert.org/event/1345 -https://www.oceanexpert.org/expert/48249 -https://www.oceanexpert.org/expert/16711 -https://www.oceanexpert.org/institution/18285 -https://www.oceanexpert.org/expert/1878 -https://www.oceanexpert.org/expert/20706 -https://www.oceanexpert.org/expert/17344 -https://www.oceanexpert.org/expert/44770 -https://www.oceanexpert.org/event/953 -https://www.oceanexpert.org/expert/48661 -https://www.oceanexpert.org/expert/20519 -https://www.oceanexpert.org/institution/12135 -https://www.oceanexpert.org/event/526 -https://www.oceanexpert.org/expert/39638 -https://www.oceanexpert.org/expert/39328 -https://www.oceanexpert.org/expert/25159 -https://www.oceanexpert.org/expert/35640 -https://www.oceanexpert.org/expert/35670 -https://www.oceanexpert.org/event/82 -https://www.oceanexpert.org/expert/46572 -https://www.oceanexpert.org/event/1441 -https://www.oceanexpert.org/expert/11697 -https://www.oceanexpert.org/expert/21160 -https://www.oceanexpert.org/event/3188 -https://www.oceanexpert.org/expert/29508 -https://www.oceanexpert.org/expert/47476 -https://www.oceanexpert.org/expert/21754 -https://www.oceanexpert.org/expert/44109 -https://www.oceanexpert.org/expert/39276 -https://www.oceanexpert.org/institution/18303 -https://www.oceanexpert.org/expert/43021 -https://www.oceanexpert.org/expert/27498 -https://www.oceanexpert.org/institution/18343 -https://www.oceanexpert.org/expert/44150 -https://www.oceanexpert.org/institution/19271 -https://www.oceanexpert.org/expert/17809 -https://www.oceanexpert.org/institution/19104 -https://www.oceanexpert.org/institution/13078 -https://www.oceanexpert.org/event/1656 -https://www.oceanexpert.org/expert/14424 -https://www.oceanexpert.org/expert/42455 -https://www.oceanexpert.org/expert/25953 -https://www.oceanexpert.org/expert/32774 -https://www.oceanexpert.org/institution/20655 -https://www.oceanexpert.org/expert/48740 -https://www.oceanexpert.org/expert/36770 -https://www.oceanexpert.org/expert/45072 -https://www.oceanexpert.org/expert/13696 -https://www.oceanexpert.org/expert/31058 -https://www.oceanexpert.org/event/183 -https://www.oceanexpert.org/expert/19284 -https://www.oceanexpert.org/expert/12440 -https://www.oceanexpert.org/expert/26959 -https://www.oceanexpert.org/expert/26700 -https://www.oceanexpert.org/expert/48230 -https://www.oceanexpert.org/expert/43181 -https://www.oceanexpert.org/expert/46782 -https://www.oceanexpert.org/institution/17984 -https://www.oceanexpert.org/event/3056 -https://www.oceanexpert.org/expert/42628 -https://www.oceanexpert.org/expert/27471 -https://www.oceanexpert.org/institution/19785 -https://www.oceanexpert.org/expert/46850 -https://www.oceanexpert.org/institution/6799 -https://www.oceanexpert.org/expert/45286 -https://www.oceanexpert.org/event/3158 -https://www.oceanexpert.org/event/599 -https://www.oceanexpert.org/expert/17286 -https://www.oceanexpert.org/institution/13432 -https://www.oceanexpert.org/expert/47740 -https://www.oceanexpert.org/institution/19954 -https://www.oceanexpert.org/expert/46335 -https://www.oceanexpert.org/expert/45954 -https://www.oceanexpert.org/expert/31684 -https://www.oceanexpert.org/expert/17248 -https://www.oceanexpert.org/expert/43364 -https://www.oceanexpert.org/expert/11088 -https://www.oceanexpert.org/event/1384 -https://www.oceanexpert.org/institution/20662 -https://www.oceanexpert.org/institution/18747 -https://www.oceanexpert.org/institution/12666 -https://www.oceanexpert.org/expert/44429 -https://www.oceanexpert.org/expert/11057 -https://www.oceanexpert.org/event/2450 -https://www.oceanexpert.org/expert/27122 -https://www.oceanexpert.org/institution/20368 -https://www.oceanexpert.org/expert/27868 -https://www.oceanexpert.org/expert/45708 -https://www.oceanexpert.org/expert/24682 -https://www.oceanexpert.org/expert/36022 -https://www.oceanexpert.org/expert/33715 -https://www.oceanexpert.org/institution/18047 -https://www.oceanexpert.org/expert/42501 -https://www.oceanexpert.org/expert/22879 -https://www.oceanexpert.org/expert/34806 -https://www.oceanexpert.org/expert/18484 -https://www.oceanexpert.org/institution/21858 -https://www.oceanexpert.org/expert/28415 -https://www.oceanexpert.org/expert/33980 -https://www.oceanexpert.org/expert/19975 -https://www.oceanexpert.org/event/1619 -https://www.oceanexpert.org/expert/46799 -https://www.oceanexpert.org/event/493 -https://www.oceanexpert.org/institution/14620 -https://www.oceanexpert.org/institution/13143 -https://www.oceanexpert.org/expert/48761 -https://www.oceanexpert.org/expert/20252 -https://www.oceanexpert.org/expert/19250 -https://www.oceanexpert.org/expert/26060 -https://www.oceanexpert.org/expert/44861 -https://www.oceanexpert.org/expert/45898 -https://www.oceanexpert.org/expert/31129 -https://www.oceanexpert.org/expert/37459 -https://www.oceanexpert.org/institution/17031 -https://www.oceanexpert.org/expert/37028 -https://www.oceanexpert.org/expert/42096 -https://www.oceanexpert.org/expert/45762 -https://www.oceanexpert.org/event/2364 -https://www.oceanexpert.org/expert/27254 -https://www.oceanexpert.org/expert/44909 -https://www.oceanexpert.org/expert/14231 -https://www.oceanexpert.org/expert/23754 -https://www.oceanexpert.org/expert/25797 -https://www.oceanexpert.org/expert/42522 -https://www.oceanexpert.org/expert/35342 -https://www.oceanexpert.org/expert/11277 -https://www.oceanexpert.org/institution/9323 -https://www.oceanexpert.org/expert/44254 -https://www.oceanexpert.org/expert/24829 -https://www.oceanexpert.org/expert/48640 -https://www.oceanexpert.org/institution/11482 -https://www.oceanexpert.org/expert/1756 -https://www.oceanexpert.org/expert/45773 -https://www.oceanexpert.org/expert/34250 -https://www.oceanexpert.org/expert/42877 -https://www.oceanexpert.org/expert/22606 -https://www.oceanexpert.org/expert/25867 -https://www.oceanexpert.org/institution/10632 -https://www.oceanexpert.org/institution/20513 -https://www.oceanexpert.org/expert/21291 -https://www.oceanexpert.org/institution/21229 -https://www.oceanexpert.org/expert/34352 -https://www.oceanexpert.org/expert/44254 -https://www.oceanexpert.org/institution/19525 -https://www.oceanexpert.org/expert/26014 -https://www.oceanexpert.org/institution/13223 -https://www.oceanexpert.org/institution/22053 -https://www.oceanexpert.org/expert/35285 -https://www.oceanexpert.org/expert/35122 -https://www.oceanexpert.org/expert/16765 -https://www.oceanexpert.org/expert/34103 -https://www.oceanexpert.org/institution/21922 -https://www.oceanexpert.org/expert/30016 -https://www.oceanexpert.org/expert/35493 -https://www.oceanexpert.org/expert/2669 -https://www.oceanexpert.org/expert/46224 -https://www.oceanexpert.org/expert/10697 -https://www.oceanexpert.org/expert/27508 -https://www.oceanexpert.org/institution/14607 -https://www.oceanexpert.org/event/643 -https://www.oceanexpert.org/expert/7926 -https://www.oceanexpert.org/institution/20905 -https://www.oceanexpert.org/expert/27373 -https://www.oceanexpert.org/expert/24838 -https://www.oceanexpert.org/event/2734 -https://www.oceanexpert.org/institution/20039 -https://www.oceanexpert.org/expert/14722 -https://www.oceanexpert.org/expert/27474 -https://www.oceanexpert.org/institution/13921 -https://www.oceanexpert.org/expert/32523 -https://www.oceanexpert.org/expert/40852 -https://www.oceanexpert.org/expert/31967 -https://www.oceanexpert.org/event/3030 -https://www.oceanexpert.org/expert/22744 -https://www.oceanexpert.org/institution/11183 -https://www.oceanexpert.org/expert/42711 -https://www.oceanexpert.org/expert/45159 -https://www.oceanexpert.org/expert/279 -https://www.oceanexpert.org/institution/20483 -https://www.oceanexpert.org/institution/18956 -https://www.oceanexpert.org/institution/21588 -https://www.oceanexpert.org/expert/42719 -https://www.oceanexpert.org/institution/20069 -https://www.oceanexpert.org/expert/44671 -https://www.oceanexpert.org/institution/19592 -https://www.oceanexpert.org/expert/2470 -https://www.oceanexpert.org/expert/2352 -https://www.oceanexpert.org/expert/24619 -https://www.oceanexpert.org/event/1321 -https://www.oceanexpert.org/expert/43655 -https://www.oceanexpert.org/expert/34879 -https://www.oceanexpert.org/expert/1876 -https://www.oceanexpert.org/event/1957 -https://www.oceanexpert.org/expert/3862 -https://www.oceanexpert.org/expert/44113 -https://www.oceanexpert.org/expert/44298 -https://www.oceanexpert.org/expert/32518 -https://www.oceanexpert.org/expert/21672 -https://www.oceanexpert.org/expert/20808 -https://www.oceanexpert.org/expert/25375 -https://www.oceanexpert.org/institution/16828 -https://www.oceanexpert.org/expert/45906 -https://www.oceanexpert.org/expert/45418 -https://www.oceanexpert.org/institution/20727 -https://www.oceanexpert.org/expert/30762 -https://www.oceanexpert.org/expert/27363 -https://www.oceanexpert.org/expert/30841 -https://www.oceanexpert.org/expert/38073 -https://www.oceanexpert.org/expert/19889 -https://www.oceanexpert.org/expert/28088 -https://www.oceanexpert.org/expert/24002 -https://www.oceanexpert.org/expert/33268 -https://www.oceanexpert.org/expert/11115 -https://www.oceanexpert.org/expert/42566 -https://www.oceanexpert.org/expert/21594 -https://www.oceanexpert.org/expert/28337 -https://www.oceanexpert.org/institution/18766 -https://www.oceanexpert.org/institution/5631 -https://www.oceanexpert.org/institution/21926 -https://www.oceanexpert.org/expert/26735 -https://www.oceanexpert.org/expert/46752 -https://www.oceanexpert.org/event/756 -https://www.oceanexpert.org/expert/16971 -https://www.oceanexpert.org/expert/13110 -https://www.oceanexpert.org/expert/25537 -https://www.oceanexpert.org/institution/20814 -https://www.oceanexpert.org/institution/10312 -https://www.oceanexpert.org/institution/17753 -https://www.oceanexpert.org/expert/22580 -https://www.oceanexpert.org/expert/46267 -https://www.oceanexpert.org/event/1621 -https://www.oceanexpert.org/expert/39498 -https://www.oceanexpert.org/expert/47020 -https://www.oceanexpert.org/institution/20441 -https://www.oceanexpert.org/expert/26679 -https://www.oceanexpert.org/expert/17270 -https://www.oceanexpert.org/expert/25011 -https://www.oceanexpert.org/expert/37591 -https://www.oceanexpert.org/expert/46596 -https://www.oceanexpert.org/institution/7424 -https://www.oceanexpert.org/expert/13995 -https://www.oceanexpert.org/event/1254 -https://www.oceanexpert.org/expert/28457 -https://www.oceanexpert.org/expert/25668 -https://www.oceanexpert.org/institution/14487 -https://www.oceanexpert.org/expert/28178 -https://www.oceanexpert.org/institution/17458 -https://www.oceanexpert.org/expert/47341 -https://www.oceanexpert.org/expert/32231 -https://www.oceanexpert.org/expert/48491 -https://www.oceanexpert.org/expert/47539 -https://www.oceanexpert.org/expert/16608 -https://www.oceanexpert.org/expert/3777 -https://www.oceanexpert.org/expert/38189 -https://www.oceanexpert.org/expert/2341 -https://www.oceanexpert.org/expert/21593 -https://www.oceanexpert.org/expert/35050 -https://www.oceanexpert.org/institution/16293 -https://www.oceanexpert.org/expert/8270 -https://www.oceanexpert.org/expert/24518 -https://www.oceanexpert.org/expert/20057 -https://www.oceanexpert.org/expert/20567 -https://www.oceanexpert.org/institution/11916 -https://www.oceanexpert.org/institution/18272 -https://www.oceanexpert.org/expert/36736 -https://www.oceanexpert.org/institution/18546 -https://www.oceanexpert.org/expert/20931 -https://www.oceanexpert.org/expert/35154 -https://www.oceanexpert.org/institution/17888 -https://www.oceanexpert.org/expert/46208 -https://www.oceanexpert.org/expert/44952 -https://www.oceanexpert.org/expert/12962 -https://www.oceanexpert.org/expert/35010 -https://www.oceanexpert.org/expert/22875 -https://www.oceanexpert.org/expert/23576 -https://www.oceanexpert.org/expert/4343 -https://www.oceanexpert.org/event/2073 -https://www.oceanexpert.org/expert/35678 -https://www.oceanexpert.org/expert/31392 -https://www.oceanexpert.org/event/1761 -https://www.oceanexpert.org/expert/27026 -https://www.oceanexpert.org/expert/27099 -https://www.oceanexpert.org/expert/11695 -https://www.oceanexpert.org/institution/21208 -https://www.oceanexpert.org/expert/17468 -https://www.oceanexpert.org/expert/47051 -https://www.oceanexpert.org/expert/24775 -https://www.oceanexpert.org/institution/13906 -https://www.oceanexpert.org/expert/20071 -https://www.oceanexpert.org/expert/43329 -https://www.oceanexpert.org/institution/11842 -https://www.oceanexpert.org/expert/37647 -https://www.oceanexpert.org/expert/36041 -https://www.oceanexpert.org/expert/29017 -https://www.oceanexpert.org/expert/34281 -https://www.oceanexpert.org/institution/17027 -https://www.oceanexpert.org/institution/18881 -https://www.oceanexpert.org/expert/26415 -https://www.oceanexpert.org/expert/39807 -https://www.oceanexpert.org/expert/24673 -https://www.oceanexpert.org/expert/5510 -https://www.oceanexpert.org/expert/18871 -https://www.oceanexpert.org/expert/11184 -https://www.oceanexpert.org/expert/19806 -https://www.oceanexpert.org/institution/13035 -https://www.oceanexpert.org/expert/1859 -https://www.oceanexpert.org/expert/37063 -https://www.oceanexpert.org/expert/24493 -https://www.oceanexpert.org/institution/10316 -https://www.oceanexpert.org/expert/31986 -https://www.oceanexpert.org/expert/20269 -https://www.oceanexpert.org/expert/20155 -https://www.oceanexpert.org/expert/47539 -https://www.oceanexpert.org/institution/21319 -https://www.oceanexpert.org/institution/21609 -https://www.oceanexpert.org/institution/15236 -https://www.oceanexpert.org/expert/14187 -https://www.oceanexpert.org/expert/42450 -https://www.oceanexpert.org/expert/29697 -https://www.oceanexpert.org/expert/6654 -https://www.oceanexpert.org/expert/44065 -https://www.oceanexpert.org/institution/19931 -https://www.oceanexpert.org/expert/33528 -https://www.oceanexpert.org/expert/23118 -https://www.oceanexpert.org/expert/22427 -https://www.oceanexpert.org/event/556 -https://www.oceanexpert.org/expert/19492 -https://www.oceanexpert.org/expert/20929 -https://www.oceanexpert.org/expert/32700 -https://www.oceanexpert.org/expert/7423 -https://www.oceanexpert.org/institution/8942 -https://www.oceanexpert.org/institution/18726 -https://www.oceanexpert.org/event/974 -https://www.oceanexpert.org/institution/19423 -https://www.oceanexpert.org/expert/14247 -https://www.oceanexpert.org/institution/12033 -https://www.oceanexpert.org/expert/44110 -https://www.oceanexpert.org/institution/18501 -https://www.oceanexpert.org/expert/41674 -https://www.oceanexpert.org/expert/30894 -https://www.oceanexpert.org/expert/35793 -https://www.oceanexpert.org/expert/44849 -https://www.oceanexpert.org/expert/26789 -https://www.oceanexpert.org/expert/47919 -https://www.oceanexpert.org/institution/21335 -https://www.oceanexpert.org/institution/19046 -https://www.oceanexpert.org/expert/35314 -https://www.oceanexpert.org/expert/7255 -https://www.oceanexpert.org/expert/32547 -https://www.oceanexpert.org/expert/5699 -https://www.oceanexpert.org/institution/12602 -https://www.oceanexpert.org/expert/8650 -https://www.oceanexpert.org/institution/8688 -https://www.oceanexpert.org/institution/18816 -https://www.oceanexpert.org/expert/23685 -https://www.oceanexpert.org/expert/751 -https://www.oceanexpert.org/institution/11119 -https://www.oceanexpert.org/institution/15656 -https://www.oceanexpert.org/expert/42621 -https://www.oceanexpert.org/event/2141 -https://www.oceanexpert.org/institution/16870 -https://www.oceanexpert.org/expert/16915 -https://www.oceanexpert.org/expert/23400 -https://www.oceanexpert.org/institution/18445 -https://www.oceanexpert.org/event/1000 -https://www.oceanexpert.org/expert/25894 -https://www.oceanexpert.org/expert/47859 -https://www.oceanexpert.org/expert/22536 -https://www.oceanexpert.org/expert/17219 -https://www.oceanexpert.org/institution/12308 -https://www.oceanexpert.org/expert/31599 -https://www.oceanexpert.org/expert/20852 -https://www.oceanexpert.org/expert/39282 -https://www.oceanexpert.org/expert/15513 -https://www.oceanexpert.org/event/1584 -https://www.oceanexpert.org/expert/48958 -https://www.oceanexpert.org/institution/18060 -https://www.oceanexpert.org/expert/36670 -https://www.oceanexpert.org/institution/19443 -https://www.oceanexpert.org/event/1893 -https://www.oceanexpert.org/expert/7273 -https://www.oceanexpert.org/institution/18439 -https://www.oceanexpert.org/expert/29817 -https://www.oceanexpert.org/event/2693 -https://www.oceanexpert.org/expert/20132 -https://www.oceanexpert.org/expert/22189 -https://www.oceanexpert.org/event/958 -https://www.oceanexpert.org/expert/25450 -https://www.oceanexpert.org/institution/12316 -https://www.oceanexpert.org/expert/6485 -https://www.oceanexpert.org/expert/33314 -https://www.oceanexpert.org/institution/19601 -https://www.oceanexpert.org/institution/18876 -https://www.oceanexpert.org/institution/20855 -https://www.oceanexpert.org/institution/19192 -https://www.oceanexpert.org/expert/17703 -https://www.oceanexpert.org/institution/19980 -https://www.oceanexpert.org/institution/18548 -https://www.oceanexpert.org/expert/16860 -https://www.oceanexpert.org/expert/15321 -https://www.oceanexpert.org/expert/39651 -https://www.oceanexpert.org/expert/16889 -https://www.oceanexpert.org/institution/11200 -https://www.oceanexpert.org/expert/47482 -https://www.oceanexpert.org/expert/30448 -https://www.oceanexpert.org/institution/20360 -https://www.oceanexpert.org/expert/24045 -https://www.oceanexpert.org/expert/42576 -https://www.oceanexpert.org/event/96 -https://www.oceanexpert.org/expert/40664 -https://www.oceanexpert.org/expert/23469 -https://www.oceanexpert.org/expert/29534 -https://www.oceanexpert.org/expert/44884 -https://www.oceanexpert.org/expert/38282 -https://www.oceanexpert.org/expert/42455 -https://www.oceanexpert.org/institution/20796 -https://www.oceanexpert.org/institution/19309 -https://www.oceanexpert.org/institution/12995 -https://www.oceanexpert.org/expert/46235 -https://www.oceanexpert.org/expert/19195 -https://www.oceanexpert.org/institution/21928 -https://www.oceanexpert.org/event/1002 -https://www.oceanexpert.org/expert/30587 -https://www.oceanexpert.org/institution/21330 -https://www.oceanexpert.org/expert/20721 -https://www.oceanexpert.org/institution/12560 -https://www.oceanexpert.org/expert/20000 -https://www.oceanexpert.org/expert/39156 -https://www.oceanexpert.org/expert/46486 -https://www.oceanexpert.org/expert/21107 -https://www.oceanexpert.org/institution/10755 -https://www.oceanexpert.org/expert/9477 -https://www.oceanexpert.org/institution/19324 -https://www.oceanexpert.org/expert/16067 -https://www.oceanexpert.org/expert/18616 -https://www.oceanexpert.org/expert/35477 -https://www.oceanexpert.org/expert/17895 -https://www.oceanexpert.org/institution/11857 -https://www.oceanexpert.org/expert/24390 -https://www.oceanexpert.org/expert/36432 -https://www.oceanexpert.org/institution/17441 -https://www.oceanexpert.org/expert/47324 -https://www.oceanexpert.org/expert/30073 -https://www.oceanexpert.org/expert/30218 -https://www.oceanexpert.org/expert/29986 -https://www.oceanexpert.org/event/3300 -https://www.oceanexpert.org/expert/47843 -https://www.oceanexpert.org/expert/12728 -https://www.oceanexpert.org/event/798 -https://www.oceanexpert.org/expert/24256 -https://www.oceanexpert.org/expert/21351 -https://www.oceanexpert.org/expert/23452 -https://www.oceanexpert.org/expert/7281 -https://www.oceanexpert.org/expert/43565 -https://www.oceanexpert.org/institution/18148 -https://www.oceanexpert.org/expert/24888 -https://www.oceanexpert.org/institution/18404 -https://www.oceanexpert.org/expert/32872 -https://www.oceanexpert.org/expert/25997 -https://www.oceanexpert.org/institution/16322 -https://www.oceanexpert.org/expert/43155 -https://www.oceanexpert.org/expert/38269 -https://www.oceanexpert.org/expert/45946 -https://www.oceanexpert.org/expert/8009 -https://www.oceanexpert.org/expert/30796 -https://www.oceanexpert.org/institution/21034 -https://www.oceanexpert.org/institution/6077 -https://www.oceanexpert.org/expert/28992 -https://www.oceanexpert.org/expert/12269 -https://www.oceanexpert.org/expert/18573 -https://www.oceanexpert.org/expert/13255 -https://www.oceanexpert.org/event/1714 -https://www.oceanexpert.org/expert/13351 -https://www.oceanexpert.org/expert/16016 -https://www.oceanexpert.org/expert/19364 -https://www.oceanexpert.org/expert/1936 -https://www.oceanexpert.org/expert/7158 -https://www.oceanexpert.org/expert/19262 -https://www.oceanexpert.org/institution/21469 -https://www.oceanexpert.org/expert/22162 -https://www.oceanexpert.org/event/2583 -https://www.oceanexpert.org/expert/40282 -https://www.oceanexpert.org/expert/20992 -https://www.oceanexpert.org/expert/45831 -https://www.oceanexpert.org/expert/45476 -https://www.oceanexpert.org/institution/15865 -https://www.oceanexpert.org/institution/14951 -https://www.oceanexpert.org/institution/12896 -https://www.oceanexpert.org/expert/46675 -https://www.oceanexpert.org/expert/35107 -https://www.oceanexpert.org/expert/17366 -https://www.oceanexpert.org/expert/13311 -https://www.oceanexpert.org/expert/14281 -https://www.oceanexpert.org/institution/12307 -https://www.oceanexpert.org/institution/21394 -https://www.oceanexpert.org/expert/47397 -https://www.oceanexpert.org/institution/9075 -https://www.oceanexpert.org/institution/17684 -https://www.oceanexpert.org/expert/43637 -https://www.oceanexpert.org/expert/529 -https://www.oceanexpert.org/expert/20679 -https://www.oceanexpert.org/institution/21838 -https://www.oceanexpert.org/expert/25825 -https://www.oceanexpert.org/institution/21277 -https://www.oceanexpert.org/expert/22696 -https://www.oceanexpert.org/expert/42924 -https://www.oceanexpert.org/institution/19505 -https://www.oceanexpert.org/expert/47569 -https://www.oceanexpert.org/expert/27036 -https://www.oceanexpert.org/expert/27092 -https://www.oceanexpert.org/expert/42580 -https://www.oceanexpert.org/expert/18120 -https://www.oceanexpert.org/expert/21838 -https://www.oceanexpert.org/institution/20514 -https://www.oceanexpert.org/expert/37223 -https://www.oceanexpert.org/institution/19317 -https://www.oceanexpert.org/expert/37660 -https://www.oceanexpert.org/institution/19571 -https://www.oceanexpert.org/expert/46909 -https://www.oceanexpert.org/expert/19958 -https://www.oceanexpert.org/institution/6225 -https://www.oceanexpert.org/expert/23866 -https://www.oceanexpert.org/institution/16698 -https://www.oceanexpert.org/institution/18673 -https://www.oceanexpert.org/expert/45615 -https://www.oceanexpert.org/event/2109 -https://www.oceanexpert.org/event/753 -https://www.oceanexpert.org/expert/20033 -https://www.oceanexpert.org/expert/17988 -https://www.oceanexpert.org/institution/16822 -https://www.oceanexpert.org/expert/47878 -https://www.oceanexpert.org/expert/35645 -https://www.oceanexpert.org/institution/10741 -https://www.oceanexpert.org/expert/5548 -https://www.oceanexpert.org/expert/2433 -https://www.oceanexpert.org/institution/17247 -https://www.oceanexpert.org/expert/38784 -https://www.oceanexpert.org/expert/16387 -https://www.oceanexpert.org/institution/10287 -https://www.oceanexpert.org/expert/31102 -https://www.oceanexpert.org/expert/22064 -https://www.oceanexpert.org/expert/33034 -https://www.oceanexpert.org/expert/45064 -https://www.oceanexpert.org/expert/48537 -https://www.oceanexpert.org/expert/36545 -https://www.oceanexpert.org/expert/19755 -https://www.oceanexpert.org/expert/21020 -https://www.oceanexpert.org/institution/18050 -https://www.oceanexpert.org/expert/30025 -https://www.oceanexpert.org/expert/13287 -https://www.oceanexpert.org/expert/31418 -https://www.oceanexpert.org/expert/27948 -https://www.oceanexpert.org/institution/22148 -https://www.oceanexpert.org/expert/18613 -https://www.oceanexpert.org/institution/19187 -https://www.oceanexpert.org/institution/20706 -https://www.oceanexpert.org/expert/22251 -https://www.oceanexpert.org/expert/6664 -https://www.oceanexpert.org/expert/33792 -https://www.oceanexpert.org/expert/45621 -https://www.oceanexpert.org/expert/29954 -https://www.oceanexpert.org/expert/27443 -https://www.oceanexpert.org/expert/43614 -https://www.oceanexpert.org/institution/20923 -https://www.oceanexpert.org/expert/44046 -https://www.oceanexpert.org/expert/1142 -https://www.oceanexpert.org/institution/12227 -https://www.oceanexpert.org/expert/9546 -https://www.oceanexpert.org/expert/27939 -https://www.oceanexpert.org/expert/12810 -https://www.oceanexpert.org/event/1922 -https://www.oceanexpert.org/expert/31255 -https://www.oceanexpert.org/event/959 -https://www.oceanexpert.org/institution/12268 -https://www.oceanexpert.org/expert/47866 -https://www.oceanexpert.org/expert/23427 -https://www.oceanexpert.org/expert/47883 -https://www.oceanexpert.org/expert/33608 -https://www.oceanexpert.org/expert/33290 -https://www.oceanexpert.org/event/1367 -https://www.oceanexpert.org/expert/25451 -https://www.oceanexpert.org/expert/48348 -https://www.oceanexpert.org/event/1248 -https://www.oceanexpert.org/expert/27816 -https://www.oceanexpert.org/expert/14408 -https://www.oceanexpert.org/expert/20533 -https://www.oceanexpert.org/institution/8866 -https://www.oceanexpert.org/expert/26186 -https://www.oceanexpert.org/expert/42709 -https://www.oceanexpert.org/expert/44770 -https://www.oceanexpert.org/institution/19420 -https://www.oceanexpert.org/expert/32065 -https://www.oceanexpert.org/event/3167 -https://www.oceanexpert.org/expert/45461 -https://www.oceanexpert.org/expert/16687 -https://www.oceanexpert.org/institution/21507 -https://www.oceanexpert.org/event/2832 -https://www.oceanexpert.org/expert/16811 -https://www.oceanexpert.org/expert/20037 -https://www.oceanexpert.org/expert/8052 -https://www.oceanexpert.org/expert/25177 -https://www.oceanexpert.org/expert/25798 -https://www.oceanexpert.org/event/3039 -https://www.oceanexpert.org/institution/13068 -https://www.oceanexpert.org/expert/35928 -https://www.oceanexpert.org/expert/42650 -https://www.oceanexpert.org/expert/22991 -https://www.oceanexpert.org/institution/21443 -https://www.oceanexpert.org/expert/37565 -https://www.oceanexpert.org/expert/39618 -https://www.oceanexpert.org/expert/16733 -https://www.oceanexpert.org/expert/27227 -https://www.oceanexpert.org/expert/8001 -https://www.oceanexpert.org/expert/23537 -https://www.oceanexpert.org/expert/43864 -https://www.oceanexpert.org/expert/33687 -https://www.oceanexpert.org/expert/7040 -https://www.oceanexpert.org/institution/8715 -https://www.oceanexpert.org/expert/38054 -https://www.oceanexpert.org/expert/27404 -https://www.oceanexpert.org/expert/43428 -https://www.oceanexpert.org/institution/17956 -https://www.oceanexpert.org/institution/12083 -https://www.oceanexpert.org/expert/40667 -https://www.oceanexpert.org/expert/24578 -https://www.oceanexpert.org/expert/36825 -https://www.oceanexpert.org/event/1094 -https://www.oceanexpert.org/expert/20900 -https://www.oceanexpert.org/expert/48347 -https://www.oceanexpert.org/expert/25743 -https://www.oceanexpert.org/institution/13814 -https://www.oceanexpert.org/expert/8961 -https://www.oceanexpert.org/event/1350 -https://www.oceanexpert.org/expert/20317 -https://www.oceanexpert.org/expert/43521 -https://www.oceanexpert.org/institution/20087 -https://www.oceanexpert.org/expert/46163 -https://www.oceanexpert.org/event/3119 -https://www.oceanexpert.org/event/26 -https://www.oceanexpert.org/institution/10957 -https://www.oceanexpert.org/expert/23305 -https://www.oceanexpert.org/expert/42810 -https://www.oceanexpert.org/expert/43509 -https://www.oceanexpert.org/institution/14724 -https://www.oceanexpert.org/event/2413 -https://www.oceanexpert.org/expert/1878 -https://www.oceanexpert.org/expert/43062 -https://www.oceanexpert.org/expert/38285 -https://www.oceanexpert.org/expert/41443 -https://www.oceanexpert.org/expert/34255 -https://www.oceanexpert.org/expert/47024 -https://www.oceanexpert.org/institution/12482 -https://www.oceanexpert.org/expert/18240 -https://www.oceanexpert.org/expert/32493 -https://www.oceanexpert.org/expert/36838 -https://www.oceanexpert.org/event/735 -https://www.oceanexpert.org/institution/17938 -https://www.oceanexpert.org/expert/13941 -https://www.oceanexpert.org/expert/1866 -https://www.oceanexpert.org/expert/23521 -https://www.oceanexpert.org/expert/33029 -https://www.oceanexpert.org/expert/34130 -https://www.oceanexpert.org/expert/24213 -https://www.oceanexpert.org/institution/13184 -https://www.oceanexpert.org/expert/32349 -https://www.oceanexpert.org/expert/26103 -https://www.oceanexpert.org/institution/20941 -https://www.oceanexpert.org/institution/21995 -https://www.oceanexpert.org/expert/43205 -https://www.oceanexpert.org/institution/21374 -https://www.oceanexpert.org/expert/48000 -https://www.oceanexpert.org/institution/19000 -https://www.oceanexpert.org/institution/19903 -https://www.oceanexpert.org/expert/46340 -https://www.oceanexpert.org/expert/48203 -https://www.oceanexpert.org/event/1641 -https://www.oceanexpert.org/expert/19162 -https://www.oceanexpert.org/expert/25102 -https://www.oceanexpert.org/expert/32665 -https://www.oceanexpert.org/expert/6022 -https://www.oceanexpert.org/expert/31569 -https://www.oceanexpert.org/expert/41609 -https://www.oceanexpert.org/expert/25333 -https://www.oceanexpert.org/expert/25139 -https://www.oceanexpert.org/event/968 -https://www.oceanexpert.org/expert/30793 -https://www.oceanexpert.org/expert/30609 -https://www.oceanexpert.org/institution/11695 -https://www.oceanexpert.org/institution/13874 -https://www.oceanexpert.org/expert/46197 -https://www.oceanexpert.org/expert/3386 -https://www.oceanexpert.org/expert/23243 -https://www.oceanexpert.org/institution/12309 -https://www.oceanexpert.org/event/2820 -https://www.oceanexpert.org/expert/28859 -https://www.oceanexpert.org/expert/40121 -https://www.oceanexpert.org/event/89 -https://www.oceanexpert.org/event/760 -https://www.oceanexpert.org/expert/17366 -https://www.oceanexpert.org/institution/17480 -https://www.oceanexpert.org/expert/30178 -https://www.oceanexpert.org/event/2841 -https://www.oceanexpert.org/institution/18405 -https://www.oceanexpert.org/expert/36930 -https://www.oceanexpert.org/expert/38914 -https://www.oceanexpert.org/expert/20636 -https://www.oceanexpert.org/expert/44245 -https://www.oceanexpert.org/event/241 -https://www.oceanexpert.org/expert/19235 -https://www.oceanexpert.org/expert/37412 -https://www.oceanexpert.org/event/71 -https://www.oceanexpert.org/expert/31769 -https://www.oceanexpert.org/expert/32584 -https://www.oceanexpert.org/expert/47058 -https://www.oceanexpert.org/expert/45312 -https://www.oceanexpert.org/institution/20477 -https://www.oceanexpert.org/institution/17610 -https://www.oceanexpert.org/expert/44472 -https://www.oceanexpert.org/institution/14384 -https://www.oceanexpert.org/expert/22165 -https://www.oceanexpert.org/expert/36115 -https://www.oceanexpert.org/institution/19057 -https://www.oceanexpert.org/expert/14317 -https://www.oceanexpert.org/expert/43091 -https://www.oceanexpert.org/expert/19647 -https://www.oceanexpert.org/institution/13118 -https://www.oceanexpert.org/expert/28274 -https://www.oceanexpert.org/expert/33113 -https://www.oceanexpert.org/institution/13893 -https://www.oceanexpert.org/expert/45619 -https://www.oceanexpert.org/expert/39654 -https://www.oceanexpert.org/event/2412 -https://www.oceanexpert.org/expert/756 -https://www.oceanexpert.org/expert/37695 -https://www.oceanexpert.org/expert/16692 -https://www.oceanexpert.org/event/153 -https://www.oceanexpert.org/institution/15680 -https://www.oceanexpert.org/event/812 -https://www.oceanexpert.org/expert/6866 -https://www.oceanexpert.org/expert/48573 -https://www.oceanexpert.org/expert/18481 -https://www.oceanexpert.org/institution/15894 -https://www.oceanexpert.org/expert/22288 -https://www.oceanexpert.org/event/2528 -https://www.oceanexpert.org/expert/6212 -https://www.oceanexpert.org/expert/48161 -https://www.oceanexpert.org/expert/29530 -https://www.oceanexpert.org/expert/36375 -https://www.oceanexpert.org/expert/32988 -https://www.oceanexpert.org/expert/42866 -https://www.oceanexpert.org/expert/48454 -https://www.oceanexpert.org/expert/38652 -https://www.oceanexpert.org/institution/20418 -https://www.oceanexpert.org/institution/17699 -https://www.oceanexpert.org/expert/42808 -https://www.oceanexpert.org/expert/36399 -https://www.oceanexpert.org/expert/32529 -https://www.oceanexpert.org/expert/48089 -https://www.oceanexpert.org/expert/44152 -https://www.oceanexpert.org/event/2790 -https://www.oceanexpert.org/institution/18365 -https://www.oceanexpert.org/expert/29830 -https://www.oceanexpert.org/institution/15879 -https://www.oceanexpert.org/expert/42993 -https://www.oceanexpert.org/institution/17458 -https://www.oceanexpert.org/institution/11697 -https://www.oceanexpert.org/expert/29467 -https://www.oceanexpert.org/expert/22286 -https://www.oceanexpert.org/expert/44645 -https://www.oceanexpert.org/expert/105 -https://www.oceanexpert.org/expert/5510 -https://www.oceanexpert.org/expert/26406 -https://www.oceanexpert.org/event/2354 -https://www.oceanexpert.org/event/1383 -https://www.oceanexpert.org/expert/19934 -https://www.oceanexpert.org/institution/19078 -https://www.oceanexpert.org/expert/24485 -https://www.oceanexpert.org/institution/5042 -https://www.oceanexpert.org/institution/21663 -https://www.oceanexpert.org/expert/25064 -https://www.oceanexpert.org/expert/23289 -https://www.oceanexpert.org/expert/17349 -https://www.oceanexpert.org/expert/22612 -https://www.oceanexpert.org/expert/40480 -https://www.oceanexpert.org/event/2824 -https://www.oceanexpert.org/institution/13072 -https://www.oceanexpert.org/expert/18474 -https://www.oceanexpert.org/institution/16829 -https://www.oceanexpert.org/expert/48722 -https://www.oceanexpert.org/institution/12420 -https://www.oceanexpert.org/expert/17062 -https://www.oceanexpert.org/expert/34847 -https://www.oceanexpert.org/expert/1251 -https://www.oceanexpert.org/expert/47474 -https://www.oceanexpert.org/expert/26385 -https://www.oceanexpert.org/institution/13882 -https://www.oceanexpert.org/institution/21910 -https://www.oceanexpert.org/institution/19064 -https://www.oceanexpert.org/expert/30558 -https://www.oceanexpert.org/event/3105 -https://www.oceanexpert.org/expert/21520 -https://www.oceanexpert.org/expert/17510 -https://www.oceanexpert.org/expert/18647 -https://www.oceanexpert.org/expert/44554 -https://www.oceanexpert.org/expert/2047 -https://www.oceanexpert.org/event/2470 -https://www.oceanexpert.org/expert/42649 -https://www.oceanexpert.org/expert/24545 -https://www.oceanexpert.org/expert/25597 -https://www.oceanexpert.org/institution/20968 -https://www.oceanexpert.org/institution/10165 -https://www.oceanexpert.org/institution/13512 -https://www.oceanexpert.org/expert/31364 -https://www.oceanexpert.org/institution/10444 -https://www.oceanexpert.org/expert/23422 -https://www.oceanexpert.org/expert/18395 -https://www.oceanexpert.org/expert/24380 -https://www.oceanexpert.org/event/2204 -https://www.oceanexpert.org/expert/35416 -https://www.oceanexpert.org/institution/13896 -https://www.oceanexpert.org/expert/18891 -https://www.oceanexpert.org/expert/2762 -https://www.oceanexpert.org/expert/19342 -https://www.oceanexpert.org/expert/39046 -https://www.oceanexpert.org/expert/38588 -https://www.oceanexpert.org/event/1453 -https://www.oceanexpert.org/expert/317 -https://www.oceanexpert.org/institution/21368 -https://www.oceanexpert.org/expert/42991 -https://www.oceanexpert.org/institution/15814 -https://www.oceanexpert.org/expert/23805 -https://www.oceanexpert.org/institution/18607 -https://www.oceanexpert.org/expert/24291 -https://www.oceanexpert.org/expert/32773 -https://www.oceanexpert.org/expert/36847 -https://www.oceanexpert.org/expert/34535 -https://www.oceanexpert.org/expert/46316 -https://www.oceanexpert.org/expert/34394 -https://www.oceanexpert.org/expert/24643 -https://www.oceanexpert.org/event/2662 -https://www.oceanexpert.org/expert/39335 -https://www.oceanexpert.org/institution/11560 -https://www.oceanexpert.org/institution/20805 -https://www.oceanexpert.org/expert/13298 -https://www.oceanexpert.org/expert/37794 -https://www.oceanexpert.org/expert/47703 -https://www.oceanexpert.org/expert/36236 -https://www.oceanexpert.org/expert/31141 -https://www.oceanexpert.org/institution/21055 -https://www.oceanexpert.org/institution/11740 -https://www.oceanexpert.org/expert/35239 -https://www.oceanexpert.org/expert/48458 -https://www.oceanexpert.org/expert/24431 -https://www.oceanexpert.org/event/2075 -https://www.oceanexpert.org/institution/22025 -https://www.oceanexpert.org/expert/4855 -https://www.oceanexpert.org/expert/23771 -https://www.oceanexpert.org/institution/19568 -https://www.oceanexpert.org/institution/18400 -https://www.oceanexpert.org/institution/15888 -https://www.oceanexpert.org/expert/20498 -https://www.oceanexpert.org/institution/10373 -https://www.oceanexpert.org/expert/46708 -https://www.oceanexpert.org/expert/48383 -https://www.oceanexpert.org/expert/37459 -https://www.oceanexpert.org/expert/47386 -https://www.oceanexpert.org/institution/19008 -https://www.oceanexpert.org/expert/31372 -https://www.oceanexpert.org/expert/48937 -https://www.oceanexpert.org/expert/48576 -https://www.oceanexpert.org/institution/13926 -https://www.oceanexpert.org/institution/21590 -https://www.oceanexpert.org/expert/25927 -https://www.oceanexpert.org/institution/14627 -https://www.oceanexpert.org/expert/37053 -https://www.oceanexpert.org/expert/12007 -https://www.oceanexpert.org/institution/13199 -https://www.oceanexpert.org/expert/36919 -https://www.oceanexpert.org/expert/12231 -https://www.oceanexpert.org/expert/14923 -https://www.oceanexpert.org/event/2667 -https://www.oceanexpert.org/expert/18595 -https://www.oceanexpert.org/expert/39532 -https://www.oceanexpert.org/event/1790 -https://www.oceanexpert.org/event/3177 -https://www.oceanexpert.org/expert/19322 -https://www.oceanexpert.org/expert/33384 -https://www.oceanexpert.org/institution/19303 -https://www.oceanexpert.org/expert/26504 -https://www.oceanexpert.org/expert/23412 -https://www.oceanexpert.org/expert/41505 -https://www.oceanexpert.org/institution/6362 -https://www.oceanexpert.org/expert/23142 -https://www.oceanexpert.org/expert/26143 -https://www.oceanexpert.org/expert/31194 -https://www.oceanexpert.org/expert/22064 -https://www.oceanexpert.org/expert/16006 -https://www.oceanexpert.org/expert/29735 -https://www.oceanexpert.org/expert/18177 -https://www.oceanexpert.org/institution/20428 -https://www.oceanexpert.org/expert/27106 -https://www.oceanexpert.org/expert/4177 -https://www.oceanexpert.org/expert/23907 -https://www.oceanexpert.org/expert/28396 -https://www.oceanexpert.org/expert/24854 -https://www.oceanexpert.org/expert/16902 -https://www.oceanexpert.org/institution/16140 -https://www.oceanexpert.org/institution/10047 -https://www.oceanexpert.org/expert/47817 -https://www.oceanexpert.org/event/2229 -https://www.oceanexpert.org/expert/47993 -https://www.oceanexpert.org/expert/43040 -https://www.oceanexpert.org/expert/44108 -https://www.oceanexpert.org/expert/17789 -https://www.oceanexpert.org/expert/42413 -https://www.oceanexpert.org/expert/29681 -https://www.oceanexpert.org/expert/23773 -https://www.oceanexpert.org/expert/17236 -https://www.oceanexpert.org/expert/36542 -https://www.oceanexpert.org/expert/31185 -https://www.oceanexpert.org/expert/14624 -https://www.oceanexpert.org/expert/12175 -https://www.oceanexpert.org/expert/47663 -https://www.oceanexpert.org/expert/12748 -https://www.oceanexpert.org/expert/35250 -https://www.oceanexpert.org/institution/19515 -https://www.oceanexpert.org/expert/47491 -https://www.oceanexpert.org/expert/15598 -https://www.oceanexpert.org/institution/10434 -https://www.oceanexpert.org/expert/43987 -https://www.oceanexpert.org/expert/46842 -https://www.oceanexpert.org/expert/44732 -https://www.oceanexpert.org/expert/39326 -https://www.oceanexpert.org/expert/23600 -https://www.oceanexpert.org/expert/17338 -https://www.oceanexpert.org/expert/34034 -https://www.oceanexpert.org/expert/10912 -https://www.oceanexpert.org/event/1249 -https://www.oceanexpert.org/expert/43356 -https://www.oceanexpert.org/expert/36542 -https://www.oceanexpert.org/expert/46261 -https://www.oceanexpert.org/expert/25284 -https://www.oceanexpert.org/expert/25528 -https://www.oceanexpert.org/expert/7155 -https://www.oceanexpert.org/institution/12347 -https://www.oceanexpert.org/institution/5405 -https://www.oceanexpert.org/expert/27720 -https://www.oceanexpert.org/expert/27718 -https://www.oceanexpert.org/expert/35553 -https://www.oceanexpert.org/expert/44804 -https://www.oceanexpert.org/institution/7078 -https://www.oceanexpert.org/institution/18672 -https://www.oceanexpert.org/expert/35058 -https://www.oceanexpert.org/event/2091 -https://www.oceanexpert.org/expert/17233 -https://www.oceanexpert.org/institution/6685 -https://www.oceanexpert.org/expert/31043 -https://www.oceanexpert.org/expert/35541 -https://www.oceanexpert.org/institution/11033 -https://www.oceanexpert.org/expert/8153 -https://www.oceanexpert.org/institution/22143 -https://www.oceanexpert.org/institution/19911 -https://www.oceanexpert.org/expert/24904 -https://www.oceanexpert.org/institution/12320 -https://www.oceanexpert.org/institution/10308 -https://www.oceanexpert.org/expert/263 -https://www.oceanexpert.org/expert/26046 -https://www.oceanexpert.org/expert/35310 -https://www.oceanexpert.org/event/2803 -https://www.oceanexpert.org/expert/22605 -https://www.oceanexpert.org/expert/12908 -https://www.oceanexpert.org/institution/19350 -https://www.oceanexpert.org/expert/36755 -https://www.oceanexpert.org/expert/47816 -https://www.oceanexpert.org/expert/33230 -https://www.oceanexpert.org/institution/18435 -https://www.oceanexpert.org/event/2863 -https://www.oceanexpert.org/event/2016 -https://www.oceanexpert.org/expert/12437 -https://www.oceanexpert.org/expert/48914 -https://www.oceanexpert.org/institution/10539 -https://www.oceanexpert.org/expert/44089 -https://www.oceanexpert.org/institution/19193 -https://www.oceanexpert.org/expert/42626 -https://www.oceanexpert.org/expert/7185 -https://www.oceanexpert.org/expert/9904 -https://www.oceanexpert.org/expert/32273 -https://www.oceanexpert.org/expert/48785 -https://www.oceanexpert.org/expert/7642 -https://www.oceanexpert.org/institution/15859 -https://www.oceanexpert.org/institution/19708 -https://www.oceanexpert.org/expert/8667 -https://www.oceanexpert.org/expert/43167 -https://www.oceanexpert.org/expert/11214 -https://www.oceanexpert.org/event/2995 -https://www.oceanexpert.org/event/892 -https://www.oceanexpert.org/institution/10983 -https://www.oceanexpert.org/expert/46488 -https://www.oceanexpert.org/expert/18730 -https://www.oceanexpert.org/expert/24187 -https://www.oceanexpert.org/expert/7532 -https://www.oceanexpert.org/event/2150 -https://www.oceanexpert.org/institution/10023 -https://www.oceanexpert.org/expert/30936 -https://www.oceanexpert.org/institution/13104 -https://www.oceanexpert.org/expert/35414 -https://www.oceanexpert.org/expert/26986 -https://www.oceanexpert.org/expert/35392 -https://www.oceanexpert.org/expert/6647 -https://www.oceanexpert.org/institution/17629 -https://www.oceanexpert.org/institution/11200 -https://www.oceanexpert.org/institution/21553 -https://www.oceanexpert.org/institution/5389 -https://www.oceanexpert.org/expert/15959 -https://www.oceanexpert.org/institution/9184 -https://www.oceanexpert.org/institution/16805 -https://www.oceanexpert.org/expert/44456 -https://www.oceanexpert.org/expert/38487 -https://www.oceanexpert.org/expert/48284 -https://www.oceanexpert.org/institution/18604 -https://www.oceanexpert.org/expert/22756 -https://www.oceanexpert.org/institution/16481 -https://www.oceanexpert.org/expert/35166 -https://www.oceanexpert.org/institution/22085 -https://www.oceanexpert.org/institution/19437 -https://www.oceanexpert.org/event/2244 -https://www.oceanexpert.org/institution/11323 -https://www.oceanexpert.org/institution/20177 -https://www.oceanexpert.org/expert/46543 -https://www.oceanexpert.org/event/1169 -https://www.oceanexpert.org/expert/39743 -https://www.oceanexpert.org/expert/26778 -https://www.oceanexpert.org/expert/19036 -https://www.oceanexpert.org/event/1642 -https://www.oceanexpert.org/event/1024 -https://www.oceanexpert.org/expert/18598 -https://www.oceanexpert.org/expert/4128 -https://www.oceanexpert.org/expert/34881 -https://www.oceanexpert.org/expert/46316 -https://www.oceanexpert.org/expert/45104 -https://www.oceanexpert.org/expert/25555 -https://www.oceanexpert.org/expert/32393 -https://www.oceanexpert.org/expert/13154 -https://www.oceanexpert.org/institution/13301 -https://www.oceanexpert.org/expert/31564 -https://www.oceanexpert.org/institution/16489 -https://www.oceanexpert.org/event/393 -https://www.oceanexpert.org/institution/18269 -https://www.oceanexpert.org/expert/28300 -https://www.oceanexpert.org/expert/43685 -https://www.oceanexpert.org/institution/18810 -https://www.oceanexpert.org/expert/25349 -https://www.oceanexpert.org/expert/27300 -https://www.oceanexpert.org/event/3070 -https://www.oceanexpert.org/expert/30863 -https://www.oceanexpert.org/institution/16337 -https://www.oceanexpert.org/expert/24603 -https://www.oceanexpert.org/expert/6922 -https://www.oceanexpert.org/institution/22049 -https://www.oceanexpert.org/institution/11437 -https://www.oceanexpert.org/expert/22446 -https://www.oceanexpert.org/expert/44498 -https://www.oceanexpert.org/expert/32593 -https://www.oceanexpert.org/event/1040 -https://www.oceanexpert.org/expert/34126 -https://www.oceanexpert.org/expert/46992 -https://www.oceanexpert.org/expert/42988 -https://www.oceanexpert.org/institution/14747 -https://www.oceanexpert.org/expert/35290 -https://www.oceanexpert.org/expert/37371 -https://www.oceanexpert.org/expert/43220 -https://www.oceanexpert.org/expert/15766 -https://www.oceanexpert.org/institution/7845 -https://www.oceanexpert.org/expert/38089 -https://www.oceanexpert.org/expert/29377 -https://www.oceanexpert.org/expert/27787 -https://www.oceanexpert.org/expert/16653 -https://www.oceanexpert.org/expert/44360 -https://www.oceanexpert.org/expert/48150 -https://www.oceanexpert.org/expert/17583 -https://www.oceanexpert.org/expert/46149 -https://www.oceanexpert.org/expert/42644 -https://www.oceanexpert.org/expert/26122 -https://www.oceanexpert.org/expert/20032 -https://www.oceanexpert.org/event/2358 -https://www.oceanexpert.org/expert/38064 -https://www.oceanexpert.org/expert/17554 -https://www.oceanexpert.org/expert/34542 -https://www.oceanexpert.org/event/2095 -https://www.oceanexpert.org/expert/30669 -https://www.oceanexpert.org/expert/14399 -https://www.oceanexpert.org/expert/37827 -https://www.oceanexpert.org/institution/5480 -https://www.oceanexpert.org/expert/33481 -https://www.oceanexpert.org/expert/32597 -https://www.oceanexpert.org/expert/18573 -https://www.oceanexpert.org/expert/12812 -https://www.oceanexpert.org/institution/15942 -https://www.oceanexpert.org/institution/20519 -https://www.oceanexpert.org/expert/36112 -https://www.oceanexpert.org/expert/28049 -https://www.oceanexpert.org/expert/29828 -https://www.oceanexpert.org/expert/23005 -https://www.oceanexpert.org/institution/18349 -https://www.oceanexpert.org/institution/14361 -https://www.oceanexpert.org/expert/25832 -https://www.oceanexpert.org/expert/21485 -https://www.oceanexpert.org/expert/20528 -https://www.oceanexpert.org/institution/6657 -https://www.oceanexpert.org/expert/26131 -https://www.oceanexpert.org/expert/21061 -https://www.oceanexpert.org/institution/21114 -https://www.oceanexpert.org/expert/26841 -https://www.oceanexpert.org/expert/27434 -https://www.oceanexpert.org/event/1369 -https://www.oceanexpert.org/event/301 -https://www.oceanexpert.org/expert/21636 -https://www.oceanexpert.org/institution/5747 -https://www.oceanexpert.org/expert/43183 -https://www.oceanexpert.org/expert/15791 -https://www.oceanexpert.org/expert/27212 -https://www.oceanexpert.org/event/289 -https://www.oceanexpert.org/expert/14729 -https://www.oceanexpert.org/institution/21510 -https://www.oceanexpert.org/expert/34877 -https://www.oceanexpert.org/expert/18907 -https://www.oceanexpert.org/expert/2363 -https://www.oceanexpert.org/expert/30463 -https://www.oceanexpert.org/expert/10975 -https://www.oceanexpert.org/expert/22281 -https://www.oceanexpert.org/expert/40350 -https://www.oceanexpert.org/expert/2392 -https://www.oceanexpert.org/expert/45853 -https://www.oceanexpert.org/institution/21401 -https://www.oceanexpert.org/expert/46580 -https://www.oceanexpert.org/expert/22206 -https://www.oceanexpert.org/expert/36946 -https://www.oceanexpert.org/institution/10526 -https://www.oceanexpert.org/expert/38239 -https://www.oceanexpert.org/institution/18600 -https://www.oceanexpert.org/institution/6008 -https://www.oceanexpert.org/expert/21902 -https://www.oceanexpert.org/institution/18332 -https://www.oceanexpert.org/expert/44795 -https://www.oceanexpert.org/institution/17936 -https://www.oceanexpert.org/expert/45119 -https://www.oceanexpert.org/institution/21249 -https://www.oceanexpert.org/expert/26090 -https://www.oceanexpert.org/expert/44944 -https://www.oceanexpert.org/expert/48037 -https://www.oceanexpert.org/expert/19926 -https://www.oceanexpert.org/expert/12144 -https://www.oceanexpert.org/event/1182 -https://www.oceanexpert.org/expert/35027 -https://www.oceanexpert.org/expert/22868 -https://www.oceanexpert.org/expert/47436 -https://www.oceanexpert.org/institution/17735 -https://www.oceanexpert.org/expert/29860 -https://www.oceanexpert.org/institution/20452 -https://www.oceanexpert.org/expert/31530 -https://www.oceanexpert.org/expert/27981 -https://www.oceanexpert.org/expert/19440 -https://www.oceanexpert.org/expert/20253 -https://www.oceanexpert.org/institution/10935 -https://www.oceanexpert.org/expert/11925 -https://www.oceanexpert.org/institution/16992 -https://www.oceanexpert.org/expert/18398 -https://www.oceanexpert.org/institution/10279 -https://www.oceanexpert.org/institution/21360 -https://www.oceanexpert.org/expert/12178 -https://www.oceanexpert.org/event/2266 -https://www.oceanexpert.org/institution/22089 -https://www.oceanexpert.org/event/2340 -https://www.oceanexpert.org/institution/20427 -https://www.oceanexpert.org/expert/20748 -https://www.oceanexpert.org/expert/28144 -https://www.oceanexpert.org/expert/17029 -https://www.oceanexpert.org/expert/30579 -https://www.oceanexpert.org/expert/8258 -https://www.oceanexpert.org/institution/10819 -https://www.oceanexpert.org/expert/46876 -https://www.oceanexpert.org/expert/39491 -https://www.oceanexpert.org/expert/35230 -https://www.oceanexpert.org/institution/13338 -https://www.oceanexpert.org/expert/25740 -https://www.oceanexpert.org/institution/21427 -https://www.oceanexpert.org/expert/21514 -https://www.oceanexpert.org/expert/33930 -https://www.oceanexpert.org/event/583 -https://www.oceanexpert.org/institution/8279 -https://www.oceanexpert.org/institution/20216 -https://www.oceanexpert.org/institution/21269 -https://www.oceanexpert.org/expert/45131 -https://www.oceanexpert.org/institution/18735 -https://www.oceanexpert.org/event/565 -https://www.oceanexpert.org/expert/22146 -https://www.oceanexpert.org/expert/23689 -https://www.oceanexpert.org/expert/45090 -https://www.oceanexpert.org/expert/26655 -https://www.oceanexpert.org/institution/7979 -https://www.oceanexpert.org/expert/13734 -https://www.oceanexpert.org/expert/18313 -https://www.oceanexpert.org/expert/20057 -https://www.oceanexpert.org/expert/37298 -https://www.oceanexpert.org/expert/30014 -https://www.oceanexpert.org/expert/18832 -https://www.oceanexpert.org/institution/6989 -https://www.oceanexpert.org/institution/17753 -https://www.oceanexpert.org/expert/43259 -https://www.oceanexpert.org/expert/46354 -https://www.oceanexpert.org/institution/19169 -https://www.oceanexpert.org/expert/35012 -https://www.oceanexpert.org/expert/7436 -https://www.oceanexpert.org/expert/27152 -https://www.oceanexpert.org/expert/25272 -https://www.oceanexpert.org/event/277 -https://www.oceanexpert.org/expert/23950 -https://www.oceanexpert.org/expert/47808 -https://www.oceanexpert.org/expert/31464 -https://www.oceanexpert.org/expert/20134 -https://www.oceanexpert.org/expert/18292 -https://www.oceanexpert.org/institution/19532 -https://www.oceanexpert.org/expert/37025 -https://www.oceanexpert.org/expert/29498 -https://www.oceanexpert.org/expert/44689 -https://www.oceanexpert.org/event/2246 -https://www.oceanexpert.org/expert/48033 -https://www.oceanexpert.org/expert/18475 -https://www.oceanexpert.org/institution/20960 -https://www.oceanexpert.org/event/2040 -https://www.oceanexpert.org/expert/44711 -https://www.oceanexpert.org/institution/20994 -https://www.oceanexpert.org/expert/43725 -https://www.oceanexpert.org/expert/48121 -https://www.oceanexpert.org/expert/43054 -https://www.oceanexpert.org/expert/4775 -https://www.oceanexpert.org/expert/16571 -https://www.oceanexpert.org/expert/48631 -https://www.oceanexpert.org/institution/20369 -https://www.oceanexpert.org/expert/7035 -https://www.oceanexpert.org/event/1671 -https://www.oceanexpert.org/expert/31655 -https://www.oceanexpert.org/expert/18956 -https://www.oceanexpert.org/expert/17932 -https://www.oceanexpert.org/expert/48247 -https://www.oceanexpert.org/institution/21060 -https://www.oceanexpert.org/expert/25597 -https://www.oceanexpert.org/event/2869 -https://www.oceanexpert.org/institution/18831 -https://www.oceanexpert.org/expert/48764 -https://www.oceanexpert.org/expert/38885 -https://www.oceanexpert.org/expert/18253 -https://www.oceanexpert.org/expert/34072 -https://www.oceanexpert.org/expert/34358 -https://www.oceanexpert.org/expert/47954 -https://www.oceanexpert.org/institution/21907 -https://www.oceanexpert.org/event/1256 -https://www.oceanexpert.org/expert/44592 -https://www.oceanexpert.org/expert/27337 -https://www.oceanexpert.org/event/1764 -https://www.oceanexpert.org/expert/26633 -https://www.oceanexpert.org/expert/38279 -https://www.oceanexpert.org/expert/37016 -https://www.oceanexpert.org/institution/12740 -https://www.oceanexpert.org/event/822 -https://www.oceanexpert.org/expert/20357 -https://www.oceanexpert.org/institution/17775 -https://www.oceanexpert.org/event/1872 -https://www.oceanexpert.org/institution/18254 -https://www.oceanexpert.org/expert/4770 -https://www.oceanexpert.org/expert/1957 -https://www.oceanexpert.org/event/1014 -https://www.oceanexpert.org/expert/39008 -https://www.oceanexpert.org/expert/35634 -https://www.oceanexpert.org/expert/44736 -https://www.oceanexpert.org/expert/42696 -https://www.oceanexpert.org/expert/22889 -https://www.oceanexpert.org/expert/48176 -https://www.oceanexpert.org/institution/21631 -https://www.oceanexpert.org/expert/45592 -https://www.oceanexpert.org/expert/19403 -https://www.oceanexpert.org/institution/6250 -https://www.oceanexpert.org/expert/28815 -https://www.oceanexpert.org/expert/22263 -https://www.oceanexpert.org/expert/34798 -https://www.oceanexpert.org/expert/13213 -https://www.oceanexpert.org/expert/21750 -https://www.oceanexpert.org/expert/23352 -https://www.oceanexpert.org/expert/18647 -https://www.oceanexpert.org/expert/25359 -https://www.oceanexpert.org/expert/44938 -https://www.oceanexpert.org/expert/34691 -https://www.oceanexpert.org/expert/48089 -https://www.oceanexpert.org/expert/48174 -https://www.oceanexpert.org/expert/35397 -https://www.oceanexpert.org/institution/18683 -https://www.oceanexpert.org/expert/35970 -https://www.oceanexpert.org/event/779 -https://www.oceanexpert.org/event/2915 -https://www.oceanexpert.org/institution/15042 -https://www.oceanexpert.org/expert/44770 -https://www.oceanexpert.org/expert/38440 -https://www.oceanexpert.org/expert/46913 -https://www.oceanexpert.org/institution/17939 -https://www.oceanexpert.org/event/2141 -https://www.oceanexpert.org/expert/24494 -https://www.oceanexpert.org/expert/6520 -https://www.oceanexpert.org/institution/21996 -https://www.oceanexpert.org/institution/21145 -https://www.oceanexpert.org/expert/29385 -https://www.oceanexpert.org/expert/48006 -https://www.oceanexpert.org/institution/21791 -https://www.oceanexpert.org/institution/21182 -https://www.oceanexpert.org/institution/19487 -https://www.oceanexpert.org/expert/46411 -https://www.oceanexpert.org/expert/37265 -https://www.oceanexpert.org/expert/8861 -https://www.oceanexpert.org/expert/17366 -https://www.oceanexpert.org/expert/30590 -https://www.oceanexpert.org/expert/31586 -https://www.oceanexpert.org/event/3257 -https://www.oceanexpert.org/expert/18708 -https://www.oceanexpert.org/institution/6713 -https://www.oceanexpert.org/expert/27479 -https://www.oceanexpert.org/expert/33125 -https://www.oceanexpert.org/expert/25821 -https://www.oceanexpert.org/event/798 -https://www.oceanexpert.org/institution/10747 -https://www.oceanexpert.org/expert/4530 -https://www.oceanexpert.org/institution/14273 -https://www.oceanexpert.org/expert/43620 -https://www.oceanexpert.org/event/2930 -https://www.oceanexpert.org/expert/8187 -https://www.oceanexpert.org/event/766 -https://www.oceanexpert.org/expert/22889 -https://www.oceanexpert.org/expert/29123 -https://www.oceanexpert.org/expert/13072 -https://www.oceanexpert.org/institution/14104 -https://www.oceanexpert.org/expert/16924 -https://www.oceanexpert.org/expert/29917 -https://www.oceanexpert.org/expert/43760 -https://www.oceanexpert.org/expert/10223 -https://www.oceanexpert.org/expert/7179 -https://www.oceanexpert.org/expert/47425 -https://www.oceanexpert.org/institution/18574 -https://www.oceanexpert.org/expert/43587 -https://www.oceanexpert.org/expert/46333 -https://www.oceanexpert.org/institution/19248 -https://www.oceanexpert.org/institution/13823 -https://www.oceanexpert.org/institution/18200 -https://www.oceanexpert.org/expert/29396 -https://www.oceanexpert.org/expert/37727 -https://www.oceanexpert.org/expert/26535 -https://www.oceanexpert.org/expert/46581 -https://www.oceanexpert.org/expert/43467 -https://www.oceanexpert.org/expert/43043 -https://www.oceanexpert.org/expert/30556 -https://www.oceanexpert.org/expert/43465 -https://www.oceanexpert.org/institution/18929 -https://www.oceanexpert.org/expert/34500 -https://www.oceanexpert.org/event/2856 -https://www.oceanexpert.org/expert/32451 -https://www.oceanexpert.org/expert/17193 -https://www.oceanexpert.org/expert/11823 -https://www.oceanexpert.org/expert/33299 -https://www.oceanexpert.org/event/828 -https://www.oceanexpert.org/expert/42481 -https://www.oceanexpert.org/expert/47118 -https://www.oceanexpert.org/institution/10916 -https://www.oceanexpert.org/expert/46586 -https://www.oceanexpert.org/event/2164 -https://www.oceanexpert.org/institution/14121 -https://www.oceanexpert.org/expert/36815 -https://www.oceanexpert.org/expert/27327 -https://www.oceanexpert.org/expert/44323 -https://www.oceanexpert.org/expert/1125 -https://www.oceanexpert.org/institution/18215 -https://www.oceanexpert.org/institution/20510 -https://www.oceanexpert.org/institution/14545 -https://www.oceanexpert.org/event/681 -https://www.oceanexpert.org/expert/37086 -https://www.oceanexpert.org/expert/33222 -https://www.oceanexpert.org/expert/25793 -https://www.oceanexpert.org/expert/36408 -https://www.oceanexpert.org/expert/44810 -https://www.oceanexpert.org/expert/21630 -https://www.oceanexpert.org/expert/44472 -https://www.oceanexpert.org/expert/19463 -https://www.oceanexpert.org/expert/47573 -https://www.oceanexpert.org/expert/6803 -https://www.oceanexpert.org/expert/21506 -https://www.oceanexpert.org/event/547 -https://www.oceanexpert.org/institution/9853 -https://www.oceanexpert.org/expert/27095 -https://www.oceanexpert.org/institution/9229 -https://www.oceanexpert.org/institution/9523 -https://www.oceanexpert.org/expert/29380 -https://www.oceanexpert.org/event/3175 -https://www.oceanexpert.org/institution/12686 -https://www.oceanexpert.org/expert/10086 -https://www.oceanexpert.org/expert/47243 -https://www.oceanexpert.org/expert/35475 -https://www.oceanexpert.org/event/691 -https://www.oceanexpert.org/institution/19456 -https://www.oceanexpert.org/expert/26593 -https://www.oceanexpert.org/event/1997 -https://www.oceanexpert.org/expert/27616 -https://www.oceanexpert.org/expert/22622 -https://www.oceanexpert.org/expert/20297 -https://www.oceanexpert.org/expert/36122 -https://www.oceanexpert.org/institution/21009 -https://www.oceanexpert.org/institution/17556 -https://www.oceanexpert.org/institution/8025 -https://www.oceanexpert.org/expert/47518 -https://www.oceanexpert.org/expert/20385 -https://www.oceanexpert.org/expert/24934 -https://www.oceanexpert.org/expert/31169 -https://www.oceanexpert.org/event/3064 -https://www.oceanexpert.org/expert/20670 -https://www.oceanexpert.org/expert/26144 -https://www.oceanexpert.org/event/3292 -https://www.oceanexpert.org/expert/48511 -https://www.oceanexpert.org/institution/18913 -https://www.oceanexpert.org/institution/18425 -https://www.oceanexpert.org/expert/23396 -https://www.oceanexpert.org/institution/6907 -https://www.oceanexpert.org/expert/23442 -https://www.oceanexpert.org/expert/21754 -https://www.oceanexpert.org/expert/7172 -https://www.oceanexpert.org/event/1655 -https://www.oceanexpert.org/expert/6915 -https://www.oceanexpert.org/expert/32598 -https://www.oceanexpert.org/expert/40280 -https://www.oceanexpert.org/event/783 -https://www.oceanexpert.org/event/1291 -https://www.oceanexpert.org/institution/18502 -https://www.oceanexpert.org/expert/36629 -https://www.oceanexpert.org/event/1062 -https://www.oceanexpert.org/institution/16310 -https://www.oceanexpert.org/institution/15507 -https://www.oceanexpert.org/institution/8239 -https://www.oceanexpert.org/expert/48576 -https://www.oceanexpert.org/expert/16621 -https://www.oceanexpert.org/expert/30887 -https://www.oceanexpert.org/expert/4258 -https://www.oceanexpert.org/expert/26732 -https://www.oceanexpert.org/institution/19928 -https://www.oceanexpert.org/expert/22855 -https://www.oceanexpert.org/institution/16877 -https://www.oceanexpert.org/expert/33081 -https://www.oceanexpert.org/expert/39079 -https://www.oceanexpert.org/event/1180 -https://www.oceanexpert.org/expert/31154 -https://www.oceanexpert.org/expert/16564 -https://www.oceanexpert.org/expert/3450 -https://www.oceanexpert.org/expert/31535 -https://www.oceanexpert.org/expert/36519 -https://www.oceanexpert.org/expert/47408 -https://www.oceanexpert.org/expert/8633 -https://www.oceanexpert.org/expert/16574 -https://www.oceanexpert.org/expert/27133 -https://www.oceanexpert.org/expert/26189 -https://www.oceanexpert.org/expert/22225 -https://www.oceanexpert.org/institution/11037 -https://www.oceanexpert.org/expert/22815 -https://www.oceanexpert.org/expert/26227 -https://www.oceanexpert.org/institution/8163 -https://www.oceanexpert.org/expert/43348 -https://www.oceanexpert.org/expert/37342 -https://www.oceanexpert.org/expert/31051 -https://www.oceanexpert.org/expert/24305 -https://www.oceanexpert.org/institution/21969 -https://www.oceanexpert.org/expert/19895 -https://www.oceanexpert.org/institution/20541 -https://www.oceanexpert.org/expert/12073 -https://www.oceanexpert.org/institution/11940 -https://www.oceanexpert.org/expert/15866 -https://www.oceanexpert.org/expert/46583 -https://www.oceanexpert.org/expert/28044 -https://www.oceanexpert.org/institution/21393 -https://www.oceanexpert.org/expert/42361 -https://www.oceanexpert.org/institution/18993 -https://www.oceanexpert.org/expert/42003 -https://www.oceanexpert.org/expert/15707 -https://www.oceanexpert.org/expert/34626 -https://www.oceanexpert.org/expert/43322 -https://www.oceanexpert.org/expert/29191 -https://www.oceanexpert.org/expert/14147 -https://www.oceanexpert.org/expert/32141 -https://www.oceanexpert.org/institution/16758 -https://www.oceanexpert.org/expert/26555 -https://www.oceanexpert.org/expert/17991 -https://www.oceanexpert.org/expert/48289 -https://www.oceanexpert.org/expert/38267 -https://www.oceanexpert.org/expert/37310 -https://www.oceanexpert.org/expert/17586 -https://www.oceanexpert.org/expert/7296 -https://www.oceanexpert.org/expert/22776 -https://www.oceanexpert.org/expert/31974 -https://www.oceanexpert.org/institution/19899 -https://www.oceanexpert.org/institution/21465 -https://www.oceanexpert.org/expert/25107 -https://www.oceanexpert.org/institution/18269 -https://www.oceanexpert.org/expert/24038 -https://www.oceanexpert.org/institution/18027 -https://www.oceanexpert.org/institution/5202 -https://www.oceanexpert.org/expert/22519 -https://www.oceanexpert.org/expert/20034 -https://www.oceanexpert.org/expert/19322 -https://www.oceanexpert.org/expert/37285 -https://www.oceanexpert.org/expert/14811 -https://www.oceanexpert.org/institution/15544 -https://www.oceanexpert.org/institution/20706 -https://www.oceanexpert.org/event/1411 -https://www.oceanexpert.org/expert/20463 -https://www.oceanexpert.org/expert/38301 -https://www.oceanexpert.org/institution/18706 -https://www.oceanexpert.org/expert/47747 -https://www.oceanexpert.org/expert/28853 -https://www.oceanexpert.org/institution/6434 -https://www.oceanexpert.org/institution/7750 -https://www.oceanexpert.org/expert/30025 -https://www.oceanexpert.org/expert/38091 -https://www.oceanexpert.org/expert/4316 -https://www.oceanexpert.org/expert/48828 -https://www.oceanexpert.org/institution/15465 -https://www.oceanexpert.org/expert/40368 -https://www.oceanexpert.org/expert/32229 -https://www.oceanexpert.org/event/2654 -https://www.oceanexpert.org/institution/6741 -https://www.oceanexpert.org/institution/18532 -https://www.oceanexpert.org/institution/19769 -https://www.oceanexpert.org/expert/21547 -https://www.oceanexpert.org/event/2095 -https://www.oceanexpert.org/institution/22071 -https://www.oceanexpert.org/institution/17893 -https://www.oceanexpert.org/expert/27321 -https://www.oceanexpert.org/expert/19373 -https://www.oceanexpert.org/expert/41 -https://www.oceanexpert.org/expert/34671 -https://www.oceanexpert.org/institution/7920 -https://www.oceanexpert.org/institution/12661 -https://www.oceanexpert.org/expert/42412 -https://www.oceanexpert.org/expert/35030 -https://www.oceanexpert.org/expert/34535 -https://www.oceanexpert.org/institution/16222 -https://www.oceanexpert.org/expert/21738 -https://www.oceanexpert.org/institution/12320 -https://www.oceanexpert.org/expert/18912 -https://www.oceanexpert.org/expert/20648 -https://www.oceanexpert.org/institution/13256 -https://www.oceanexpert.org/expert/24172 -https://www.oceanexpert.org/expert/16019 -https://www.oceanexpert.org/expert/29483 -https://www.oceanexpert.org/event/1397 -https://www.oceanexpert.org/expert/16878 -https://www.oceanexpert.org/expert/21903 -https://www.oceanexpert.org/expert/47785 -https://www.oceanexpert.org/expert/39446 -https://www.oceanexpert.org/institution/5163 -https://www.oceanexpert.org/event/1719 -https://www.oceanexpert.org/expert/38915 -https://www.oceanexpert.org/expert/14485 -https://www.oceanexpert.org/expert/19996 -https://www.oceanexpert.org/institution/15476 -https://www.oceanexpert.org/expert/27287 -https://www.oceanexpert.org/event/905 -https://www.oceanexpert.org/event/1126 -https://www.oceanexpert.org/expert/29401 -https://www.oceanexpert.org/expert/14478 -https://www.oceanexpert.org/event/627 -https://www.oceanexpert.org/expert/46657 -https://www.oceanexpert.org/event/2026 -https://www.oceanexpert.org/institution/20088 -https://www.oceanexpert.org/event/212 -https://www.oceanexpert.org/expert/46913 -https://www.oceanexpert.org/event/1562 -https://www.oceanexpert.org/expert/31728 -https://www.oceanexpert.org/expert/29537 -https://www.oceanexpert.org/event/1154 -https://www.oceanexpert.org/expert/23557 -https://www.oceanexpert.org/institution/19542 -https://www.oceanexpert.org/institution/16187 -https://www.oceanexpert.org/event/140 -https://www.oceanexpert.org/expert/48244 -https://www.oceanexpert.org/expert/38216 -https://www.oceanexpert.org/institution/20293 -https://www.oceanexpert.org/institution/14891 -https://www.oceanexpert.org/expert/46475 -https://www.oceanexpert.org/expert/9619 -https://www.oceanexpert.org/expert/39132 -https://www.oceanexpert.org/expert/44516 -https://www.oceanexpert.org/expert/2912 -https://www.oceanexpert.org/institution/9523 -https://www.oceanexpert.org/expert/26370 -https://www.oceanexpert.org/expert/44043 -https://www.oceanexpert.org/expert/25005 -https://www.oceanexpert.org/expert/20445 -https://www.oceanexpert.org/expert/37883 -https://www.oceanexpert.org/institution/8140 -https://www.oceanexpert.org/expert/22199 -https://www.oceanexpert.org/event/1870 -https://www.oceanexpert.org/event/405 -https://www.oceanexpert.org/expert/46301 -https://www.oceanexpert.org/expert/42597 -https://www.oceanexpert.org/expert/36956 -https://www.oceanexpert.org/expert/23044 -https://www.oceanexpert.org/institution/15169 -https://www.oceanexpert.org/expert/24294 -https://www.oceanexpert.org/expert/36429 -https://www.oceanexpert.org/expert/47751 -https://www.oceanexpert.org/expert/20262 -https://www.oceanexpert.org/expert/20565 -https://www.oceanexpert.org/expert/18007 -https://www.oceanexpert.org/expert/44717 -https://www.oceanexpert.org/event/3025 -https://www.oceanexpert.org/expert/37788 -https://www.oceanexpert.org/expert/22845 -https://www.oceanexpert.org/expert/33175 -https://www.oceanexpert.org/expert/22708 -https://www.oceanexpert.org/institution/19132 -https://www.oceanexpert.org/expert/43664 -https://www.oceanexpert.org/expert/13586 -https://www.oceanexpert.org/expert/24347 -https://www.oceanexpert.org/expert/30772 -https://www.oceanexpert.org/expert/13937 -https://www.oceanexpert.org/event/2958 -https://www.oceanexpert.org/expert/21778 -https://www.oceanexpert.org/expert/43039 -https://www.oceanexpert.org/event/332 -https://www.oceanexpert.org/event/360 -https://www.oceanexpert.org/expert/39304 -https://www.oceanexpert.org/expert/33734 -https://www.oceanexpert.org/expert/18892 -https://www.oceanexpert.org/expert/34454 -https://www.oceanexpert.org/expert/27853 -https://www.oceanexpert.org/institution/9133 -https://www.oceanexpert.org/institution/19766 -https://www.oceanexpert.org/expert/26867 -https://www.oceanexpert.org/expert/20124 -https://www.oceanexpert.org/expert/23878 -https://www.oceanexpert.org/expert/23932 -https://www.oceanexpert.org/institution/15334 -https://www.oceanexpert.org/institution/14460 -https://www.oceanexpert.org/expert/24754 -https://www.oceanexpert.org/expert/14262 -https://www.oceanexpert.org/expert/24937 -https://www.oceanexpert.org/expert/37533 -https://www.oceanexpert.org/expert/36644 -https://www.oceanexpert.org/expert/21953 -https://www.oceanexpert.org/expert/22890 -https://www.oceanexpert.org/expert/47856 -https://www.oceanexpert.org/expert/39985 -https://www.oceanexpert.org/institution/19279 -https://www.oceanexpert.org/institution/7039 -https://www.oceanexpert.org/expert/21837 -https://www.oceanexpert.org/institution/18156 -https://www.oceanexpert.org/expert/18409 -https://www.oceanexpert.org/expert/38111 -https://www.oceanexpert.org/expert/32178 -https://www.oceanexpert.org/expert/40004 -https://www.oceanexpert.org/event/2162 -https://www.oceanexpert.org/institution/14717 -https://www.oceanexpert.org/expert/47523 -https://www.oceanexpert.org/expert/42451 -https://www.oceanexpert.org/expert/22110 -https://www.oceanexpert.org/event/878 -https://www.oceanexpert.org/expert/45725 -https://www.oceanexpert.org/event/1971 -https://www.oceanexpert.org/expert/28080 -https://www.oceanexpert.org/institution/14777 -https://www.oceanexpert.org/expert/24683 -https://www.oceanexpert.org/expert/21958 -https://www.oceanexpert.org/event/1205 -https://www.oceanexpert.org/expert/24214 -https://www.oceanexpert.org/institution/20180 -https://www.oceanexpert.org/expert/189 -https://www.oceanexpert.org/expert/38692 -https://www.oceanexpert.org/expert/4097 -https://www.oceanexpert.org/institution/21608 -https://www.oceanexpert.org/institution/10076 -https://www.oceanexpert.org/expert/4523 -https://www.oceanexpert.org/event/2399 -https://www.oceanexpert.org/institution/13813 -https://www.oceanexpert.org/expert/30323 -https://www.oceanexpert.org/expert/31086 -https://www.oceanexpert.org/expert/38136 -https://www.oceanexpert.org/institution/7087 -https://www.oceanexpert.org/expert/37175 -https://www.oceanexpert.org/expert/4895 -https://www.oceanexpert.org/expert/21874 -https://www.oceanexpert.org/expert/34977 -https://www.oceanexpert.org/institution/16835 -https://www.oceanexpert.org/expert/19804 -https://www.oceanexpert.org/expert/13241 -https://www.oceanexpert.org/expert/17508 -https://www.oceanexpert.org/expert/33915 -https://www.oceanexpert.org/expert/43008 -https://www.oceanexpert.org/institution/20595 -https://www.oceanexpert.org/expert/20290 -https://www.oceanexpert.org/institution/20127 -https://www.oceanexpert.org/institution/19480 -https://www.oceanexpert.org/expert/34880 -https://www.oceanexpert.org/institution/20283 -https://www.oceanexpert.org/institution/21383 -https://www.oceanexpert.org/expert/27513 -https://www.oceanexpert.org/expert/16221 -https://www.oceanexpert.org/event/1994 -https://www.oceanexpert.org/institution/10259 -https://www.oceanexpert.org/expert/16878 -https://www.oceanexpert.org/expert/8657 -https://www.oceanexpert.org/institution/7432 -https://www.oceanexpert.org/institution/16055 -https://www.oceanexpert.org/expert/12561 -https://www.oceanexpert.org/expert/29148 -https://www.oceanexpert.org/expert/25956 -https://www.oceanexpert.org/expert/44621 -https://www.oceanexpert.org/expert/28479 -https://www.oceanexpert.org/institution/12641 -https://www.oceanexpert.org/expert/12952 -https://www.oceanexpert.org/expert/33361 -https://www.oceanexpert.org/expert/4779 -https://www.oceanexpert.org/expert/43507 -https://www.oceanexpert.org/expert/6973 -https://www.oceanexpert.org/expert/41443 -https://www.oceanexpert.org/expert/16486 -https://www.oceanexpert.org/event/1006 -https://www.oceanexpert.org/event/2894 -https://www.oceanexpert.org/expert/18998 -https://www.oceanexpert.org/expert/23792 -https://www.oceanexpert.org/institution/19313 -https://www.oceanexpert.org/expert/44846 -https://www.oceanexpert.org/expert/23550 -https://www.oceanexpert.org/expert/21181 -https://www.oceanexpert.org/expert/24469 -https://www.oceanexpert.org/expert/17974 -https://www.oceanexpert.org/event/2072 -https://www.oceanexpert.org/institution/18739 -https://www.oceanexpert.org/expert/37790 -https://www.oceanexpert.org/expert/20987 -https://www.oceanexpert.org/institution/10861 -https://www.oceanexpert.org/institution/10855 -https://www.oceanexpert.org/expert/15468 -https://www.oceanexpert.org/institution/12067 -https://www.oceanexpert.org/expert/25158 -https://www.oceanexpert.org/expert/21789 -https://www.oceanexpert.org/expert/48449 -https://www.oceanexpert.org/expert/18887 -https://www.oceanexpert.org/expert/26037 -https://www.oceanexpert.org/institution/12121 -https://www.oceanexpert.org/expert/19068 -https://www.oceanexpert.org/expert/47967 -https://www.oceanexpert.org/expert/11467 -https://www.oceanexpert.org/expert/38305 -https://www.oceanexpert.org/expert/35871 -https://www.oceanexpert.org/expert/37775 -https://www.oceanexpert.org/expert/40032 -https://www.oceanexpert.org/institution/8300 -https://www.oceanexpert.org/expert/36867 -https://www.oceanexpert.org/expert/13360 -https://www.oceanexpert.org/expert/13519 -https://www.oceanexpert.org/expert/33285 -https://www.oceanexpert.org/expert/26751 -https://www.oceanexpert.org/event/362 -https://www.oceanexpert.org/institution/21105 -https://www.oceanexpert.org/institution/16616 -https://www.oceanexpert.org/expert/34798 -https://www.oceanexpert.org/expert/35031 -https://www.oceanexpert.org/institution/18410 -https://www.oceanexpert.org/expert/24808 -https://www.oceanexpert.org/expert/20566 -https://www.oceanexpert.org/event/900 -https://www.oceanexpert.org/expert/20150 -https://www.oceanexpert.org/institution/19818 -https://www.oceanexpert.org/expert/23483 -https://www.oceanexpert.org/institution/14234 -https://www.oceanexpert.org/expert/34671 -https://www.oceanexpert.org/institution/18655 -https://www.oceanexpert.org/institution/18217 -https://www.oceanexpert.org/expert/46998 -https://www.oceanexpert.org/expert/650 -https://www.oceanexpert.org/expert/45765 -https://www.oceanexpert.org/expert/26724 -https://www.oceanexpert.org/expert/18788 -https://www.oceanexpert.org/institution/7772 -https://www.oceanexpert.org/institution/20186 -https://www.oceanexpert.org/expert/23512 -https://www.oceanexpert.org/expert/21778 -https://www.oceanexpert.org/expert/43346 -https://www.oceanexpert.org/expert/35352 -https://www.oceanexpert.org/institution/6380 -https://www.oceanexpert.org/expert/11858 -https://www.oceanexpert.org/event/1265 -https://www.oceanexpert.org/expert/38248 -https://www.oceanexpert.org/institution/11187 -https://www.oceanexpert.org/institution/19672 -https://www.oceanexpert.org/expert/47544 -https://www.oceanexpert.org/event/609 -https://www.oceanexpert.org/expert/24506 -https://www.oceanexpert.org/expert/21004 -https://www.oceanexpert.org/expert/4284 -https://www.oceanexpert.org/expert/48005 -https://www.oceanexpert.org/event/1936 -https://www.oceanexpert.org/institution/14066 -https://www.oceanexpert.org/institution/21726 -https://www.oceanexpert.org/expert/48624 -https://www.oceanexpert.org/expert/6802 -https://www.oceanexpert.org/expert/29687 -https://www.oceanexpert.org/expert/23982 -https://www.oceanexpert.org/expert/38061 -https://www.oceanexpert.org/expert/25840 -https://www.oceanexpert.org/expert/26633 -https://www.oceanexpert.org/expert/20103 -https://www.oceanexpert.org/expert/22927 -https://www.oceanexpert.org/expert/24444 -https://www.oceanexpert.org/institution/21953 -https://www.oceanexpert.org/expert/27348 -https://www.oceanexpert.org/expert/16722 -https://www.oceanexpert.org/expert/19417 -https://www.oceanexpert.org/expert/45868 -https://www.oceanexpert.org/institution/18659 -https://www.oceanexpert.org/institution/21753 -https://www.oceanexpert.org/expert/35973 -https://www.oceanexpert.org/expert/29571 -https://www.oceanexpert.org/event/2509 -https://www.oceanexpert.org/expert/19460 -https://www.oceanexpert.org/expert/24979 -https://www.oceanexpert.org/institution/20424 -https://www.oceanexpert.org/institution/14959 -https://www.oceanexpert.org/expert/11554 -https://www.oceanexpert.org/expert/21796 -https://www.oceanexpert.org/institution/5627 -https://www.oceanexpert.org/institution/19565 -https://www.oceanexpert.org/expert/11946 -https://www.oceanexpert.org/expert/48231 -https://www.oceanexpert.org/expert/27018 -https://www.oceanexpert.org/expert/20825 -https://www.oceanexpert.org/expert/43253 -https://www.oceanexpert.org/expert/29375 -https://www.oceanexpert.org/expert/38494 -https://www.oceanexpert.org/expert/32763 -https://www.oceanexpert.org/expert/32558 -https://www.oceanexpert.org/expert/43788 -https://www.oceanexpert.org/institution/20853 -https://www.oceanexpert.org/institution/21912 -https://www.oceanexpert.org/expert/29435 -https://www.oceanexpert.org/expert/12325 -https://www.oceanexpert.org/expert/26141 -https://www.oceanexpert.org/event/1240 -https://www.oceanexpert.org/expert/9092 -https://www.oceanexpert.org/expert/24289 -https://www.oceanexpert.org/expert/29916 -https://www.oceanexpert.org/expert/19595 -https://www.oceanexpert.org/expert/19868 -https://www.oceanexpert.org/expert/5370 -https://www.oceanexpert.org/expert/23869 -https://www.oceanexpert.org/event/1427 -https://www.oceanexpert.org/expert/28865 -https://www.oceanexpert.org/expert/47622 -https://www.oceanexpert.org/expert/22761 -https://www.oceanexpert.org/expert/23748 -https://www.oceanexpert.org/expert/21028 -https://www.oceanexpert.org/expert/42663 -https://www.oceanexpert.org/expert/38315 -https://www.oceanexpert.org/expert/2493 -https://www.oceanexpert.org/expert/46406 -https://www.oceanexpert.org/institution/17236 -https://www.oceanexpert.org/expert/31977 -https://www.oceanexpert.org/expert/29586 -https://www.oceanexpert.org/expert/27033 -https://www.oceanexpert.org/expert/47192 -https://www.oceanexpert.org/expert/32383 -https://www.oceanexpert.org/expert/42877 -https://www.oceanexpert.org/expert/42560 -https://www.oceanexpert.org/institution/19558 -https://www.oceanexpert.org/expert/38457 -https://www.oceanexpert.org/expert/40022 -https://www.oceanexpert.org/institution/15557 -https://www.oceanexpert.org/expert/34618 -https://www.oceanexpert.org/expert/19993 -https://www.oceanexpert.org/expert/17005 -https://www.oceanexpert.org/expert/23344 -https://www.oceanexpert.org/expert/47756 -https://www.oceanexpert.org/expert/33575 -https://www.oceanexpert.org/event/2629 -https://www.oceanexpert.org/expert/18987 -https://www.oceanexpert.org/expert/13816 -https://www.oceanexpert.org/expert/49022 -https://www.oceanexpert.org/expert/13032 -https://www.oceanexpert.org/expert/23364 -https://www.oceanexpert.org/expert/28221 -https://www.oceanexpert.org/institution/15999 -https://www.oceanexpert.org/institution/15615 -https://www.oceanexpert.org/expert/38003 -https://www.oceanexpert.org/expert/19267 -https://www.oceanexpert.org/institution/21845 -https://www.oceanexpert.org/expert/46735 -https://www.oceanexpert.org/expert/20707 -https://www.oceanexpert.org/expert/38479 -https://www.oceanexpert.org/institution/14362 -https://www.oceanexpert.org/expert/48511 -https://www.oceanexpert.org/institution/19320 -https://www.oceanexpert.org/institution/16017 -https://www.oceanexpert.org/institution/10315 -https://www.oceanexpert.org/expert/38228 -https://www.oceanexpert.org/expert/4627 -https://www.oceanexpert.org/expert/39821 -https://www.oceanexpert.org/expert/18520 -https://www.oceanexpert.org/institution/18113 -https://www.oceanexpert.org/expert/47884 -https://www.oceanexpert.org/event/2763 -https://www.oceanexpert.org/expert/19511 -https://www.oceanexpert.org/expert/18017 -https://www.oceanexpert.org/expert/48765 -https://www.oceanexpert.org/event/2455 -https://www.oceanexpert.org/expert/36875 -https://www.oceanexpert.org/expert/32523 -https://www.oceanexpert.org/institution/19186 -https://www.oceanexpert.org/institution/18622 -https://www.oceanexpert.org/expert/20780 -https://www.oceanexpert.org/expert/29515 -https://www.oceanexpert.org/institution/21890 -https://www.oceanexpert.org/institution/19877 -https://www.oceanexpert.org/institution/12426 -https://www.oceanexpert.org/expert/812 -https://www.oceanexpert.org/institution/19674 -https://www.oceanexpert.org/institution/18830 -https://www.oceanexpert.org/expert/17773 -https://www.oceanexpert.org/institution/16822 -https://www.oceanexpert.org/expert/43681 -https://www.oceanexpert.org/expert/36666 -https://www.oceanexpert.org/expert/19651 -https://www.oceanexpert.org/event/3103 -https://www.oceanexpert.org/expert/31844 -https://www.oceanexpert.org/expert/22784 -https://www.oceanexpert.org/institution/20334 -https://www.oceanexpert.org/expert/29382 -https://www.oceanexpert.org/institution/13188 -https://www.oceanexpert.org/expert/16269 -https://www.oceanexpert.org/expert/43988 -https://www.oceanexpert.org/expert/4204 -https://www.oceanexpert.org/expert/34809 -https://www.oceanexpert.org/expert/42149 -https://www.oceanexpert.org/expert/20138 -https://www.oceanexpert.org/expert/42668 -https://www.oceanexpert.org/expert/19030 -https://www.oceanexpert.org/expert/37174 -https://www.oceanexpert.org/expert/21795 -https://www.oceanexpert.org/expert/23591 -https://www.oceanexpert.org/expert/12622 -https://www.oceanexpert.org/expert/36318 -https://www.oceanexpert.org/expert/21773 -https://www.oceanexpert.org/expert/25797 -https://www.oceanexpert.org/institution/17736 -https://www.oceanexpert.org/expert/46941 -https://www.oceanexpert.org/expert/14607 -https://www.oceanexpert.org/expert/8704 -https://www.oceanexpert.org/institution/19927 -https://www.oceanexpert.org/expert/23078 -https://www.oceanexpert.org/expert/6798 -https://www.oceanexpert.org/expert/20377 -https://www.oceanexpert.org/institution/20821 -https://www.oceanexpert.org/expert/17201 -https://www.oceanexpert.org/expert/4565 -https://www.oceanexpert.org/expert/30036 -https://www.oceanexpert.org/expert/22516 -https://www.oceanexpert.org/institution/19867 -https://www.oceanexpert.org/expert/22605 -https://www.oceanexpert.org/event/1421 -https://www.oceanexpert.org/institution/12096 -https://www.oceanexpert.org/expert/27185 -https://www.oceanexpert.org/expert/25849 -https://www.oceanexpert.org/expert/4693 -https://www.oceanexpert.org/expert/32533 -https://www.oceanexpert.org/expert/17786 -https://www.oceanexpert.org/expert/23517 -https://www.oceanexpert.org/event/2632 -https://www.oceanexpert.org/expert/35948 -https://www.oceanexpert.org/institution/15311 -https://www.oceanexpert.org/expert/26059 -https://www.oceanexpert.org/expert/29851 -https://www.oceanexpert.org/expert/12372 -https://www.oceanexpert.org/institution/16818 -https://www.oceanexpert.org/expert/40560 -https://www.oceanexpert.org/event/928 -https://www.oceanexpert.org/expert/42473 -https://www.oceanexpert.org/expert/27030 -https://www.oceanexpert.org/expert/25258 -https://www.oceanexpert.org/expert/43667 -https://www.oceanexpert.org/event/1649 -https://www.oceanexpert.org/event/1486 -https://www.oceanexpert.org/expert/33553 -https://www.oceanexpert.org/expert/18173 -https://www.oceanexpert.org/expert/22959 -https://www.oceanexpert.org/event/1225 -https://www.oceanexpert.org/expert/43331 -https://www.oceanexpert.org/institution/17802 -https://www.oceanexpert.org/expert/22417 -https://www.oceanexpert.org/expert/6912 -https://www.oceanexpert.org/event/2790 -https://www.oceanexpert.org/expert/46741 -https://www.oceanexpert.org/expert/42911 -https://www.oceanexpert.org/expert/19231 -https://www.oceanexpert.org/expert/25156 -https://www.oceanexpert.org/expert/5367 -https://www.oceanexpert.org/expert/22088 -https://www.oceanexpert.org/institution/10261 -https://www.oceanexpert.org/expert/32299 -https://www.oceanexpert.org/event/1666 -https://www.oceanexpert.org/institution/19921 -https://www.oceanexpert.org/institution/20161 -https://www.oceanexpert.org/institution/10745 -https://www.oceanexpert.org/event/2960 -https://www.oceanexpert.org/expert/22516 -https://www.oceanexpert.org/event/2963 -https://www.oceanexpert.org/institution/5927 -https://www.oceanexpert.org/institution/12136 -https://www.oceanexpert.org/expert/44473 -https://www.oceanexpert.org/expert/6931 -https://www.oceanexpert.org/expert/3598 -https://www.oceanexpert.org/expert/30112 -https://www.oceanexpert.org/institution/13911 -https://www.oceanexpert.org/expert/32211 -https://www.oceanexpert.org/expert/20794 -https://www.oceanexpert.org/expert/44640 -https://www.oceanexpert.org/expert/28118 -https://www.oceanexpert.org/expert/16634 -https://www.oceanexpert.org/expert/25295 -https://www.oceanexpert.org/expert/27501 -https://www.oceanexpert.org/institution/18191 -https://www.oceanexpert.org/institution/19781 -https://www.oceanexpert.org/expert/21616 -https://www.oceanexpert.org/expert/26493 -https://www.oceanexpert.org/expert/30700 -https://www.oceanexpert.org/institution/10235 -https://www.oceanexpert.org/expert/16645 -https://www.oceanexpert.org/expert/4974 -https://www.oceanexpert.org/expert/19481 -https://www.oceanexpert.org/institution/17898 -https://www.oceanexpert.org/institution/6160 -https://www.oceanexpert.org/expert/31945 -https://www.oceanexpert.org/institution/21443 -https://www.oceanexpert.org/expert/26445 -https://www.oceanexpert.org/event/1394 -https://www.oceanexpert.org/expert/27355 -https://www.oceanexpert.org/expert/11768 -https://www.oceanexpert.org/institution/16459 -https://www.oceanexpert.org/expert/24925 -https://www.oceanexpert.org/expert/25760 -https://www.oceanexpert.org/institution/11621 -https://www.oceanexpert.org/expert/46329 -https://www.oceanexpert.org/expert/40118 -https://www.oceanexpert.org/event/2686 -https://www.oceanexpert.org/expert/14935 -https://www.oceanexpert.org/expert/26165 -https://www.oceanexpert.org/event/471 -https://www.oceanexpert.org/event/151 -https://www.oceanexpert.org/expert/48015 -https://www.oceanexpert.org/expert/26416 -https://www.oceanexpert.org/expert/26722 -https://www.oceanexpert.org/expert/30006 -https://www.oceanexpert.org/expert/31967 -https://www.oceanexpert.org/expert/25800 -https://www.oceanexpert.org/expert/37377 -https://www.oceanexpert.org/institution/20921 -https://www.oceanexpert.org/event/553 -https://www.oceanexpert.org/expert/23500 -https://www.oceanexpert.org/expert/46479 -https://www.oceanexpert.org/expert/22884 -https://www.oceanexpert.org/expert/35412 -https://www.oceanexpert.org/expert/45634 -https://www.oceanexpert.org/institution/17363 -https://www.oceanexpert.org/institution/5631 -https://www.oceanexpert.org/expert/25458 -https://www.oceanexpert.org/institution/22078 -https://www.oceanexpert.org/event/2938 -https://www.oceanexpert.org/expert/31109 -https://www.oceanexpert.org/expert/31643 -https://www.oceanexpert.org/expert/11197 -https://www.oceanexpert.org/expert/36043 -https://www.oceanexpert.org/expert/36567 -https://www.oceanexpert.org/expert/16290 -https://www.oceanexpert.org/expert/47704 -https://www.oceanexpert.org/expert/31539 -https://www.oceanexpert.org/institution/19388 -https://www.oceanexpert.org/institution/7953 -https://www.oceanexpert.org/institution/14707 -https://www.oceanexpert.org/expert/45652 -https://www.oceanexpert.org/event/2476 -https://www.oceanexpert.org/institution/22076 -https://www.oceanexpert.org/institution/21369 -https://www.oceanexpert.org/expert/37925 -https://www.oceanexpert.org/expert/26071 -https://www.oceanexpert.org/expert/13828 -https://www.oceanexpert.org/expert/26298 -https://www.oceanexpert.org/institution/10516 -https://www.oceanexpert.org/expert/17182 -https://www.oceanexpert.org/expert/25210 -https://www.oceanexpert.org/expert/31032 -https://www.oceanexpert.org/expert/36993 -https://www.oceanexpert.org/expert/48549 -https://www.oceanexpert.org/institution/21668 -https://www.oceanexpert.org/expert/27177 -https://www.oceanexpert.org/institution/14106 -https://www.oceanexpert.org/institution/19535 -https://www.oceanexpert.org/expert/30184 -https://www.oceanexpert.org/expert/26717 -https://www.oceanexpert.org/event/1802 -https://www.oceanexpert.org/expert/21816 -https://www.oceanexpert.org/expert/29693 -https://www.oceanexpert.org/expert/24008 -https://www.oceanexpert.org/expert/47002 -https://www.oceanexpert.org/expert/36559 -https://www.oceanexpert.org/event/1561 -https://www.oceanexpert.org/expert/12004 -https://www.oceanexpert.org/event/2618 -https://www.oceanexpert.org/expert/32174 -https://www.oceanexpert.org/expert/23540 -https://www.oceanexpert.org/expert/10707 -https://www.oceanexpert.org/institution/5374 -https://www.oceanexpert.org/expert/34511 -https://www.oceanexpert.org/expert/48582 -https://www.oceanexpert.org/expert/8048 -https://www.oceanexpert.org/expert/34524 -https://www.oceanexpert.org/expert/23187 -https://www.oceanexpert.org/institution/21137 -https://www.oceanexpert.org/event/3242 -https://www.oceanexpert.org/expert/17276 -https://www.oceanexpert.org/institution/7581 -https://www.oceanexpert.org/expert/44008 -https://www.oceanexpert.org/institution/96 -https://www.oceanexpert.org/expert/28233 -https://www.oceanexpert.org/expert/18792 -https://www.oceanexpert.org/expert/28422 -https://www.oceanexpert.org/event/1078 -https://www.oceanexpert.org/event/675 -https://www.oceanexpert.org/expert/22970 -https://www.oceanexpert.org/expert/19165 -https://www.oceanexpert.org/institution/6316 -https://www.oceanexpert.org/expert/24430 -https://www.oceanexpert.org/expert/46639 -https://www.oceanexpert.org/expert/3235 -https://www.oceanexpert.org/expert/26404 -https://www.oceanexpert.org/expert/27210 -https://www.oceanexpert.org/expert/33457 -https://www.oceanexpert.org/expert/11644 -https://www.oceanexpert.org/expert/23947 -https://www.oceanexpert.org/expert/13079 -https://www.oceanexpert.org/institution/18493 -https://www.oceanexpert.org/institution/18723 -https://www.oceanexpert.org/expert/12226 -https://www.oceanexpert.org/institution/15129 -https://www.oceanexpert.org/institution/18270 -https://www.oceanexpert.org/event/652 -https://www.oceanexpert.org/expert/45140 -https://www.oceanexpert.org/expert/24977 -https://www.oceanexpert.org/expert/10748 -https://www.oceanexpert.org/expert/34885 -https://www.oceanexpert.org/expert/48975 -https://www.oceanexpert.org/expert/17279 -https://www.oceanexpert.org/expert/14247 -https://www.oceanexpert.org/expert/29214 -https://www.oceanexpert.org/expert/40924 -https://www.oceanexpert.org/expert/43218 -https://www.oceanexpert.org/expert/22729 -https://www.oceanexpert.org/expert/25446 -https://www.oceanexpert.org/expert/43714 -https://www.oceanexpert.org/event/1648 -https://www.oceanexpert.org/expert/21216 -https://www.oceanexpert.org/expert/23078 -https://www.oceanexpert.org/expert/26024 -https://www.oceanexpert.org/expert/16220 -https://www.oceanexpert.org/expert/17010 -https://www.oceanexpert.org/event/1000 -https://www.oceanexpert.org/expert/20670 -https://www.oceanexpert.org/event/2837 -https://www.oceanexpert.org/institution/19419 -https://www.oceanexpert.org/expert/46701 -https://www.oceanexpert.org/institution/19244 -https://www.oceanexpert.org/expert/11372 -https://www.oceanexpert.org/expert/20359 -https://www.oceanexpert.org/expert/37559 -https://www.oceanexpert.org/expert/36647 -https://www.oceanexpert.org/institution/9131 -https://www.oceanexpert.org/expert/46859 -https://www.oceanexpert.org/expert/37240 -https://www.oceanexpert.org/expert/36408 -https://www.oceanexpert.org/expert/35576 -https://www.oceanexpert.org/expert/29866 -https://www.oceanexpert.org/expert/43131 -https://www.oceanexpert.org/institution/22181 -https://www.oceanexpert.org/event/2575 -https://www.oceanexpert.org/expert/33253 -https://www.oceanexpert.org/institution/19156 -https://www.oceanexpert.org/expert/13361 -https://www.oceanexpert.org/expert/25538 -https://www.oceanexpert.org/institution/10842 -https://www.oceanexpert.org/institution/14906 -https://www.oceanexpert.org/expert/39004 -https://www.oceanexpert.org/expert/23318 -https://www.oceanexpert.org/institution/9442 -https://www.oceanexpert.org/institution/7852 -https://www.oceanexpert.org/institution/21407 -https://www.oceanexpert.org/institution/8487 -https://www.oceanexpert.org/institution/20325 -https://www.oceanexpert.org/expert/19247 -https://www.oceanexpert.org/expert/6352 -https://www.oceanexpert.org/expert/7743 -https://www.oceanexpert.org/institution/10693 -https://www.oceanexpert.org/expert/12190 -https://www.oceanexpert.org/event/2996 -https://www.oceanexpert.org/expert/24065 -https://www.oceanexpert.org/expert/3657 -https://www.oceanexpert.org/institution/20375 -https://www.oceanexpert.org/expert/40583 -https://www.oceanexpert.org/expert/9306 -https://www.oceanexpert.org/institution/18011 -https://www.oceanexpert.org/expert/26876 -https://www.oceanexpert.org/expert/1516 -https://www.oceanexpert.org/institution/21631 -https://www.oceanexpert.org/expert/32143 -https://www.oceanexpert.org/institution/11437 -https://www.oceanexpert.org/institution/12096 -https://www.oceanexpert.org/expert/44956 -https://www.oceanexpert.org/expert/668 -https://www.oceanexpert.org/expert/22266 -https://www.oceanexpert.org/expert/47808 -https://www.oceanexpert.org/expert/40314 -https://www.oceanexpert.org/event/758 -https://www.oceanexpert.org/institution/18768 -https://www.oceanexpert.org/expert/11379 -https://www.oceanexpert.org/expert/22533 -https://www.oceanexpert.org/expert/44064 -https://www.oceanexpert.org/institution/6110 -https://www.oceanexpert.org/expert/23097 -https://www.oceanexpert.org/expert/38004 -https://www.oceanexpert.org/expert/8797 -https://www.oceanexpert.org/expert/48524 -https://www.oceanexpert.org/expert/37574 -https://www.oceanexpert.org/expert/38217 -https://www.oceanexpert.org/expert/38520 -https://www.oceanexpert.org/institution/17644 -https://www.oceanexpert.org/expert/20090 -https://www.oceanexpert.org/institution/15453 -https://www.oceanexpert.org/expert/33630 -https://www.oceanexpert.org/expert/32899 -https://www.oceanexpert.org/event/31 -https://www.oceanexpert.org/expert/28865 -https://www.oceanexpert.org/expert/237 -https://www.oceanexpert.org/expert/30558 -https://www.oceanexpert.org/expert/26932 -https://www.oceanexpert.org/expert/21039 -https://www.oceanexpert.org/institution/12417 -https://www.oceanexpert.org/expert/18978 -https://www.oceanexpert.org/expert/19223 -https://www.oceanexpert.org/event/2361 -https://www.oceanexpert.org/expert/31094 -https://www.oceanexpert.org/expert/30662 -https://www.oceanexpert.org/institution/16801 -https://www.oceanexpert.org/event/2295 -https://www.oceanexpert.org/expert/22976 -https://www.oceanexpert.org/expert/30636 -https://www.oceanexpert.org/event/1808 -https://www.oceanexpert.org/expert/26577 -https://www.oceanexpert.org/expert/43963 -https://www.oceanexpert.org/expert/25460 -https://www.oceanexpert.org/expert/1914 -https://www.oceanexpert.org/expert/43986 -https://www.oceanexpert.org/expert/36903 -https://www.oceanexpert.org/expert/29465 -https://www.oceanexpert.org/expert/27376 -https://www.oceanexpert.org/expert/47013 -https://www.oceanexpert.org/institution/21979 -https://www.oceanexpert.org/institution/19347 -https://www.oceanexpert.org/expert/48174 -https://www.oceanexpert.org/expert/19172 -https://www.oceanexpert.org/event/380 -https://www.oceanexpert.org/expert/35376 -https://www.oceanexpert.org/expert/19751 -https://www.oceanexpert.org/expert/42827 -https://www.oceanexpert.org/expert/25816 -https://www.oceanexpert.org/institution/15410 -https://www.oceanexpert.org/expert/44042 -https://www.oceanexpert.org/event/206 -https://www.oceanexpert.org/expert/4869 -https://www.oceanexpert.org/expert/10728 -https://www.oceanexpert.org/expert/46846 -https://www.oceanexpert.org/expert/18949 -https://www.oceanexpert.org/institution/14422 -https://www.oceanexpert.org/expert/42813 -https://www.oceanexpert.org/expert/29962 -https://www.oceanexpert.org/expert/46989 -https://www.oceanexpert.org/expert/17170 -https://www.oceanexpert.org/institution/13236 -https://www.oceanexpert.org/institution/7527 -https://www.oceanexpert.org/institution/20310 -https://www.oceanexpert.org/institution/12214 -https://www.oceanexpert.org/expert/38892 -https://www.oceanexpert.org/institution/21392 -https://www.oceanexpert.org/expert/20140 -https://www.oceanexpert.org/expert/38717 -https://www.oceanexpert.org/expert/33939 -https://www.oceanexpert.org/expert/36995 -https://www.oceanexpert.org/expert/16234 -https://www.oceanexpert.org/expert/38906 -https://www.oceanexpert.org/expert/47200 -https://www.oceanexpert.org/expert/28154 -https://www.oceanexpert.org/expert/20961 -https://www.oceanexpert.org/institution/5799 -https://www.oceanexpert.org/institution/17036 -https://www.oceanexpert.org/expert/33279 -https://www.oceanexpert.org/expert/11067 -https://www.oceanexpert.org/expert/48242 -https://www.oceanexpert.org/expert/48691 -https://www.oceanexpert.org/event/3261 -https://www.oceanexpert.org/expert/23474 -https://www.oceanexpert.org/expert/39884 -https://www.oceanexpert.org/expert/39043 -https://www.oceanexpert.org/expert/27405 -https://www.oceanexpert.org/expert/23746 -https://www.oceanexpert.org/event/1032 -https://www.oceanexpert.org/expert/45150 -https://www.oceanexpert.org/expert/46699 -https://www.oceanexpert.org/expert/20982 -https://www.oceanexpert.org/institution/10731 -https://www.oceanexpert.org/institution/17475 -https://www.oceanexpert.org/expert/18598 -https://www.oceanexpert.org/expert/36165 -https://www.oceanexpert.org/institution/18934 -https://www.oceanexpert.org/expert/42806 -https://www.oceanexpert.org/institution/13243 -https://www.oceanexpert.org/expert/19802 -https://www.oceanexpert.org/expert/43147 -https://www.oceanexpert.org/institution/21680 -https://www.oceanexpert.org/institution/17434 -https://www.oceanexpert.org/expert/17782 -https://www.oceanexpert.org/institution/21206 -https://www.oceanexpert.org/event/2990 -https://www.oceanexpert.org/event/2133 -https://www.oceanexpert.org/expert/20598 -https://www.oceanexpert.org/expert/28097 -https://www.oceanexpert.org/expert/26282 -https://www.oceanexpert.org/expert/24283 -https://www.oceanexpert.org/expert/32523 -https://www.oceanexpert.org/institution/21429 -https://www.oceanexpert.org/institution/12773 -https://www.oceanexpert.org/institution/13666 -https://www.oceanexpert.org/expert/17307 -https://www.oceanexpert.org/expert/8010 -https://www.oceanexpert.org/event/768 -https://www.oceanexpert.org/expert/42898 -https://www.oceanexpert.org/expert/13905 -https://www.oceanexpert.org/expert/43272 -https://www.oceanexpert.org/expert/11934 -https://www.oceanexpert.org/expert/20836 -https://www.oceanexpert.org/expert/27396 -https://www.oceanexpert.org/expert/44940 -https://www.oceanexpert.org/event/1294 -https://www.oceanexpert.org/event/2736 -https://www.oceanexpert.org/expert/22660 -https://www.oceanexpert.org/expert/24215 -https://www.oceanexpert.org/expert/43253 -https://www.oceanexpert.org/expert/37664 -https://www.oceanexpert.org/expert/27109 -https://www.oceanexpert.org/expert/20454 -https://www.oceanexpert.org/institution/15770 -https://www.oceanexpert.org/expert/18969 -https://www.oceanexpert.org/expert/41038 -https://www.oceanexpert.org/expert/34314 -https://www.oceanexpert.org/expert/26763 -https://www.oceanexpert.org/expert/32226 -https://www.oceanexpert.org/expert/45485 -https://www.oceanexpert.org/expert/16745 -https://www.oceanexpert.org/expert/31203 -https://www.oceanexpert.org/expert/36682 -https://www.oceanexpert.org/expert/37128 -https://www.oceanexpert.org/expert/45818 -https://www.oceanexpert.org/expert/7484 -https://www.oceanexpert.org/expert/44490 -https://www.oceanexpert.org/expert/28616 -https://www.oceanexpert.org/expert/26388 -https://www.oceanexpert.org/expert/20085 -https://www.oceanexpert.org/event/1388 -https://www.oceanexpert.org/event/130 -https://www.oceanexpert.org/expert/13054 -https://www.oceanexpert.org/expert/28371 -https://www.oceanexpert.org/expert/24281 -https://www.oceanexpert.org/expert/29705 -https://www.oceanexpert.org/expert/4315 -https://www.oceanexpert.org/expert/33284 -https://www.oceanexpert.org/expert/28330 -https://www.oceanexpert.org/expert/1879 -https://www.oceanexpert.org/expert/36943 -https://www.oceanexpert.org/expert/34461 -https://www.oceanexpert.org/expert/24347 -https://www.oceanexpert.org/institution/16974 -https://www.oceanexpert.org/institution/17415 -https://www.oceanexpert.org/expert/36578 -https://www.oceanexpert.org/expert/46543 -https://www.oceanexpert.org/expert/25126 -https://www.oceanexpert.org/expert/35880 -https://www.oceanexpert.org/institution/12629 -https://www.oceanexpert.org/expert/28427 -https://www.oceanexpert.org/expert/19969 -https://www.oceanexpert.org/expert/39327 -https://www.oceanexpert.org/expert/12968 -https://www.oceanexpert.org/expert/25677 -https://www.oceanexpert.org/expert/25455 -https://www.oceanexpert.org/institution/19420 -https://www.oceanexpert.org/expert/29691 -https://www.oceanexpert.org/institution/10461 -https://www.oceanexpert.org/expert/37962 -https://www.oceanexpert.org/institution/13313 -https://www.oceanexpert.org/expert/36697 -https://www.oceanexpert.org/expert/28489 -https://www.oceanexpert.org/institution/18335 -https://www.oceanexpert.org/event/2456 -https://www.oceanexpert.org/event/831 -https://www.oceanexpert.org/expert/34521 -https://www.oceanexpert.org/event/989 -https://www.oceanexpert.org/expert/46839 -https://www.oceanexpert.org/institution/18386 -https://www.oceanexpert.org/expert/43435 -https://www.oceanexpert.org/expert/21664 -https://www.oceanexpert.org/expert/48086 -https://www.oceanexpert.org/expert/19466 -https://www.oceanexpert.org/event/1662 -https://www.oceanexpert.org/expert/45805 -https://www.oceanexpert.org/institution/19206 -https://www.oceanexpert.org/expert/44297 -https://www.oceanexpert.org/expert/19464 -https://www.oceanexpert.org/event/2225 -https://www.oceanexpert.org/institution/18739 -https://www.oceanexpert.org/event/3092 -https://www.oceanexpert.org/institution/6688 -https://www.oceanexpert.org/expert/27427 -https://www.oceanexpert.org/expert/21746 -https://www.oceanexpert.org/expert/36638 -https://www.oceanexpert.org/institution/12419 -https://www.oceanexpert.org/event/2020 -https://www.oceanexpert.org/expert/21868 -https://www.oceanexpert.org/expert/41272 -https://www.oceanexpert.org/expert/22969 -https://www.oceanexpert.org/expert/25377 -https://www.oceanexpert.org/expert/112 -https://www.oceanexpert.org/event/425 -https://www.oceanexpert.org/institution/11356 -https://www.oceanexpert.org/expert/40114 -https://www.oceanexpert.org/institution/18014 -https://www.oceanexpert.org/expert/20981 -https://www.oceanexpert.org/institution/22128 -https://www.oceanexpert.org/expert/17468 -https://www.oceanexpert.org/expert/34998 -https://www.oceanexpert.org/institution/21023 -https://www.oceanexpert.org/event/782 -https://www.oceanexpert.org/expert/12635 -https://www.oceanexpert.org/expert/48403 -https://www.oceanexpert.org/expert/35291 -https://www.oceanexpert.org/expert/14458 -https://www.oceanexpert.org/expert/23580 -https://www.oceanexpert.org/expert/20386 -https://www.oceanexpert.org/expert/26726 -https://www.oceanexpert.org/event/172 -https://www.oceanexpert.org/expert/27069 -https://www.oceanexpert.org/expert/48732 -https://www.oceanexpert.org/expert/13730 -https://www.oceanexpert.org/expert/34848 -https://www.oceanexpert.org/expert/24349 -https://www.oceanexpert.org/expert/47821 -https://www.oceanexpert.org/expert/7118 -https://www.oceanexpert.org/expert/40664 -https://www.oceanexpert.org/expert/19917 -https://www.oceanexpert.org/expert/37411 -https://www.oceanexpert.org/expert/46282 -https://www.oceanexpert.org/expert/29963 -https://www.oceanexpert.org/expert/35771 -https://www.oceanexpert.org/institution/18393 -https://www.oceanexpert.org/expert/35286 -https://www.oceanexpert.org/expert/45356 -https://www.oceanexpert.org/institution/7679 -https://www.oceanexpert.org/expert/44569 -https://www.oceanexpert.org/expert/25303 -https://www.oceanexpert.org/institution/11003 -https://www.oceanexpert.org/institution/21854 -https://www.oceanexpert.org/expert/44428 -https://www.oceanexpert.org/expert/44869 -https://www.oceanexpert.org/expert/35920 -https://www.oceanexpert.org/institution/17135 -https://www.oceanexpert.org/expert/23673 -https://www.oceanexpert.org/expert/46525 -https://www.oceanexpert.org/institution/12011 -https://www.oceanexpert.org/institution/5537 -https://www.oceanexpert.org/expert/44181 -https://www.oceanexpert.org/institution/12048 -https://www.oceanexpert.org/expert/14092 -https://www.oceanexpert.org/expert/48180 -https://www.oceanexpert.org/expert/37123 -https://www.oceanexpert.org/expert/47967 -https://www.oceanexpert.org/event/1692 -https://www.oceanexpert.org/expert/23562 -https://www.oceanexpert.org/expert/45895 -https://www.oceanexpert.org/expert/6194 -https://www.oceanexpert.org/expert/44724 -https://www.oceanexpert.org/expert/25442 -https://www.oceanexpert.org/expert/44111 -https://www.oceanexpert.org/institution/16363 -https://www.oceanexpert.org/event/3043 -https://www.oceanexpert.org/expert/19916 -https://www.oceanexpert.org/expert/40085 -https://www.oceanexpert.org/expert/2249 -https://www.oceanexpert.org/expert/4346 -https://www.oceanexpert.org/expert/25974 -https://www.oceanexpert.org/event/1577 -https://www.oceanexpert.org/expert/15754 -https://www.oceanexpert.org/expert/43655 -https://www.oceanexpert.org/event/1120 -https://www.oceanexpert.org/event/2584 -https://www.oceanexpert.org/expert/39562 -https://www.oceanexpert.org/expert/27312 -https://www.oceanexpert.org/institution/18792 -https://www.oceanexpert.org/expert/24744 -https://www.oceanexpert.org/institution/17481 -https://www.oceanexpert.org/expert/40871 -https://www.oceanexpert.org/expert/44876 -https://www.oceanexpert.org/expert/18333 -https://www.oceanexpert.org/expert/17071 -https://www.oceanexpert.org/institution/21041 -https://www.oceanexpert.org/expert/47844 -https://www.oceanexpert.org/expert/25221 -https://www.oceanexpert.org/expert/11873 -https://www.oceanexpert.org/expert/17457 -https://www.oceanexpert.org/expert/36544 -https://www.oceanexpert.org/institution/13297 -https://www.oceanexpert.org/institution/21799 -https://www.oceanexpert.org/event/2136 -https://www.oceanexpert.org/expert/29322 -https://www.oceanexpert.org/expert/39170 -https://www.oceanexpert.org/event/2605 -https://www.oceanexpert.org/expert/46688 -https://www.oceanexpert.org/expert/34099 -https://www.oceanexpert.org/expert/34464 -https://www.oceanexpert.org/expert/36640 -https://www.oceanexpert.org/expert/49076 -https://www.oceanexpert.org/expert/32574 -https://www.oceanexpert.org/expert/46400 -https://www.oceanexpert.org/expert/34981 -https://www.oceanexpert.org/event/1112 -https://www.oceanexpert.org/expert/36667 -https://www.oceanexpert.org/expert/44843 -https://www.oceanexpert.org/expert/48768 -https://www.oceanexpert.org/institution/18213 -https://www.oceanexpert.org/institution/12420 -https://www.oceanexpert.org/institution/10832 -https://www.oceanexpert.org/expert/3083 -https://www.oceanexpert.org/expert/30032 -https://www.oceanexpert.org/expert/13900 -https://www.oceanexpert.org/expert/44933 -https://www.oceanexpert.org/expert/22452 -https://www.oceanexpert.org/expert/22452 -https://www.oceanexpert.org/expert/18291 -https://www.oceanexpert.org/expert/38027 -https://www.oceanexpert.org/event/2281 -https://www.oceanexpert.org/expert/26242 -https://www.oceanexpert.org/event/962 -https://www.oceanexpert.org/expert/12485 -https://www.oceanexpert.org/expert/21861 -https://www.oceanexpert.org/expert/34851 -https://www.oceanexpert.org/event/1824 -https://www.oceanexpert.org/expert/22962 -https://www.oceanexpert.org/institution/22049 -https://www.oceanexpert.org/expert/27142 -https://www.oceanexpert.org/institution/21337 -https://www.oceanexpert.org/institution/21252 -https://www.oceanexpert.org/expert/47985 -https://www.oceanexpert.org/expert/27238 -https://www.oceanexpert.org/institution/5684 -https://www.oceanexpert.org/institution/20382 -https://www.oceanexpert.org/expert/28755 -https://www.oceanexpert.org/event/2594 -https://www.oceanexpert.org/expert/46180 -https://www.oceanexpert.org/expert/44947 -https://www.oceanexpert.org/event/2993 -https://www.oceanexpert.org/expert/11094 -https://www.oceanexpert.org/expert/24515 -https://www.oceanexpert.org/institution/18639 -https://www.oceanexpert.org/expert/22263 -https://www.oceanexpert.org/expert/22357 -https://www.oceanexpert.org/expert/46809 -https://www.oceanexpert.org/expert/27563 -https://www.oceanexpert.org/expert/26932 -https://www.oceanexpert.org/institution/7242 -https://www.oceanexpert.org/expert/13831 -https://www.oceanexpert.org/institution/9186 -https://www.oceanexpert.org/expert/54 -https://www.oceanexpert.org/expert/47713 -https://www.oceanexpert.org/institution/19658 -https://www.oceanexpert.org/expert/26189 -https://www.oceanexpert.org/expert/32280 -https://www.oceanexpert.org/expert/33613 -https://www.oceanexpert.org/expert/25671 -https://www.oceanexpert.org/institution/13301 -https://www.oceanexpert.org/institution/17914 -https://www.oceanexpert.org/institution/10928 -https://www.oceanexpert.org/expert/3160 -https://www.oceanexpert.org/expert/35169 -https://www.oceanexpert.org/expert/25354 -https://www.oceanexpert.org/expert/39975 -https://www.oceanexpert.org/expert/24084 -https://www.oceanexpert.org/institution/15042 -https://www.oceanexpert.org/expert/24094 -https://www.oceanexpert.org/expert/18889 -https://www.oceanexpert.org/institution/21917 -https://www.oceanexpert.org/institution/14495 -https://www.oceanexpert.org/expert/43589 -https://www.oceanexpert.org/expert/12661 -https://www.oceanexpert.org/event/2853 -https://www.oceanexpert.org/institution/22113 -https://www.oceanexpert.org/event/3041 -https://www.oceanexpert.org/expert/24006 -https://www.oceanexpert.org/expert/14310 -https://www.oceanexpert.org/expert/39919 -https://www.oceanexpert.org/institution/20445 -https://www.oceanexpert.org/institution/14494 -https://www.oceanexpert.org/expert/46565 -https://www.oceanexpert.org/expert/26609 -https://www.oceanexpert.org/institution/20212 -https://www.oceanexpert.org/expert/39420 -https://www.oceanexpert.org/expert/20456 -https://www.oceanexpert.org/expert/26543 -https://www.oceanexpert.org/event/417 -https://www.oceanexpert.org/expert/13638 -https://www.oceanexpert.org/event/258 -https://www.oceanexpert.org/expert/24636 -https://www.oceanexpert.org/expert/38651 -https://www.oceanexpert.org/expert/24414 -https://www.oceanexpert.org/institution/6385 -https://www.oceanexpert.org/expert/24999 -https://www.oceanexpert.org/expert/8020 -https://www.oceanexpert.org/institution/21414 -https://www.oceanexpert.org/expert/29076 -https://www.oceanexpert.org/institution/16123 -https://www.oceanexpert.org/institution/16327 -https://www.oceanexpert.org/expert/7292 -https://www.oceanexpert.org/institution/8029 -https://www.oceanexpert.org/expert/23403 -https://www.oceanexpert.org/expert/31941 -https://www.oceanexpert.org/expert/25002 -https://www.oceanexpert.org/expert/17227 -https://www.oceanexpert.org/institution/20433 -https://www.oceanexpert.org/expert/33937 -https://www.oceanexpert.org/institution/18238 -https://www.oceanexpert.org/expert/44335 -https://www.oceanexpert.org/expert/26740 -https://www.oceanexpert.org/institution/21512 -https://www.oceanexpert.org/expert/34567 -https://www.oceanexpert.org/expert/13492 -https://www.oceanexpert.org/expert/38563 -https://www.oceanexpert.org/institution/18032 -https://www.oceanexpert.org/institution/14094 -https://www.oceanexpert.org/institution/20920 -https://www.oceanexpert.org/event/2904 -https://www.oceanexpert.org/expert/28499 -https://www.oceanexpert.org/expert/22939 -https://www.oceanexpert.org/expert/31877 -https://www.oceanexpert.org/expert/34568 -https://www.oceanexpert.org/expert/46183 -https://www.oceanexpert.org/expert/23630 -https://www.oceanexpert.org/expert/32570 -https://www.oceanexpert.org/expert/22215 -https://www.oceanexpert.org/institution/18046 -https://www.oceanexpert.org/event/2471 -https://www.oceanexpert.org/expert/39475 -https://www.oceanexpert.org/expert/24567 -https://www.oceanexpert.org/expert/22931 -https://www.oceanexpert.org/expert/42840 -https://www.oceanexpert.org/event/452 -https://www.oceanexpert.org/expert/16652 -https://www.oceanexpert.org/expert/36049 -https://www.oceanexpert.org/expert/34698 -https://www.oceanexpert.org/event/2368 -https://www.oceanexpert.org/institution/20794 -https://www.oceanexpert.org/institution/17779 -https://www.oceanexpert.org/expert/21857 -https://www.oceanexpert.org/institution/18786 -https://www.oceanexpert.org/expert/25360 -https://www.oceanexpert.org/expert/26075 -https://www.oceanexpert.org/expert/36276 -https://www.oceanexpert.org/institution/17067 -https://www.oceanexpert.org/expert/42163 -https://www.oceanexpert.org/expert/19419 -https://www.oceanexpert.org/expert/24687 -https://www.oceanexpert.org/expert/7201 -https://www.oceanexpert.org/expert/33632 -https://www.oceanexpert.org/expert/8243 -https://www.oceanexpert.org/expert/25323 -https://www.oceanexpert.org/event/2676 -https://www.oceanexpert.org/expert/15773 -https://www.oceanexpert.org/event/2536 -https://www.oceanexpert.org/institution/17897 -https://www.oceanexpert.org/expert/24607 -https://www.oceanexpert.org/expert/3860 -https://www.oceanexpert.org/institution/19653 -https://www.oceanexpert.org/expert/36703 -https://www.oceanexpert.org/expert/38221 -https://www.oceanexpert.org/expert/28029 -https://www.oceanexpert.org/expert/45134 -https://www.oceanexpert.org/expert/13102 -https://www.oceanexpert.org/expert/36317 -https://www.oceanexpert.org/institution/12441 -https://www.oceanexpert.org/expert/46486 -https://www.oceanexpert.org/expert/13767 -https://www.oceanexpert.org/institution/5459 -https://www.oceanexpert.org/institution/15724 -https://www.oceanexpert.org/expert/29398 -https://www.oceanexpert.org/expert/19233 -https://www.oceanexpert.org/expert/15963 -https://www.oceanexpert.org/institution/11391 -https://www.oceanexpert.org/expert/48305 -https://www.oceanexpert.org/institution/19176 -https://www.oceanexpert.org/expert/36003 -https://www.oceanexpert.org/expert/25692 -https://www.oceanexpert.org/expert/31914 -https://www.oceanexpert.org/institution/19210 -https://www.oceanexpert.org/expert/26057 -https://www.oceanexpert.org/expert/25828 -https://www.oceanexpert.org/expert/28499 -https://www.oceanexpert.org/event/404 -https://www.oceanexpert.org/expert/45682 -https://www.oceanexpert.org/expert/20674 -https://www.oceanexpert.org/institution/21455 -https://www.oceanexpert.org/event/1441 -https://www.oceanexpert.org/expert/6209 -https://www.oceanexpert.org/institution/20897 -https://www.oceanexpert.org/expert/43271 -https://www.oceanexpert.org/expert/22575 -https://www.oceanexpert.org/expert/44782 -https://www.oceanexpert.org/expert/26491 -https://www.oceanexpert.org/expert/30594 -https://www.oceanexpert.org/expert/26004 -https://www.oceanexpert.org/expert/34575 -https://www.oceanexpert.org/expert/19707 -https://www.oceanexpert.org/event/1359 -https://www.oceanexpert.org/institution/13881 -https://www.oceanexpert.org/institution/11013 -https://www.oceanexpert.org/expert/28159 -https://www.oceanexpert.org/institution/17851 -https://www.oceanexpert.org/expert/42925 -https://www.oceanexpert.org/expert/39352 -https://www.oceanexpert.org/event/2617 -https://www.oceanexpert.org/institution/21428 -https://www.oceanexpert.org/expert/27085 -https://www.oceanexpert.org/expert/19790 -https://www.oceanexpert.org/expert/27541 -https://www.oceanexpert.org/expert/7268 -https://www.oceanexpert.org/institution/20118 -https://www.oceanexpert.org/expert/22864 -https://www.oceanexpert.org/expert/1131 -https://www.oceanexpert.org/institution/21182 -https://www.oceanexpert.org/expert/33445 -https://www.oceanexpert.org/expert/23078 -https://www.oceanexpert.org/expert/18550 -https://www.oceanexpert.org/institution/20915 -https://www.oceanexpert.org/expert/42914 -https://www.oceanexpert.org/institution/21670 -https://www.oceanexpert.org/institution/13680 -https://www.oceanexpert.org/institution/11643 -https://www.oceanexpert.org/expert/48124 -https://www.oceanexpert.org/expert/48300 -https://www.oceanexpert.org/institution/12651 -https://www.oceanexpert.org/expert/30665 -https://www.oceanexpert.org/expert/47222 -https://www.oceanexpert.org/expert/26916 -https://www.oceanexpert.org/expert/533 -https://www.oceanexpert.org/event/2922 -https://www.oceanexpert.org/institution/11012 -https://www.oceanexpert.org/expert/48381 -https://www.oceanexpert.org/expert/43620 -https://www.oceanexpert.org/event/2143 -https://www.oceanexpert.org/event/140 -https://www.oceanexpert.org/expert/11834 -https://www.oceanexpert.org/expert/42459 -https://www.oceanexpert.org/institution/21189 -https://www.oceanexpert.org/event/1251 -https://www.oceanexpert.org/expert/48524 -https://www.oceanexpert.org/institution/21878 -https://www.oceanexpert.org/expert/25426 -https://www.oceanexpert.org/institution/19883 -https://www.oceanexpert.org/institution/11576 -https://www.oceanexpert.org/expert/21518 -https://www.oceanexpert.org/expert/19270 -https://www.oceanexpert.org/institution/15799 -https://www.oceanexpert.org/event/2762 -https://www.oceanexpert.org/expert/16960 -https://www.oceanexpert.org/institution/19382 -https://www.oceanexpert.org/expert/12709 -https://www.oceanexpert.org/expert/38213 -https://www.oceanexpert.org/expert/33092 -https://www.oceanexpert.org/expert/20760 -https://www.oceanexpert.org/expert/44939 -https://www.oceanexpert.org/expert/26875 -https://www.oceanexpert.org/event/2130 -https://www.oceanexpert.org/expert/36600 -https://www.oceanexpert.org/institution/5872 -https://www.oceanexpert.org/expert/29927 -https://www.oceanexpert.org/expert/35134 -https://www.oceanexpert.org/institution/18159 -https://www.oceanexpert.org/institution/18288 -https://www.oceanexpert.org/event/1569 -https://www.oceanexpert.org/expert/34495 -https://www.oceanexpert.org/expert/24391 -https://www.oceanexpert.org/institution/12407 -https://www.oceanexpert.org/institution/11219 -https://www.oceanexpert.org/expert/33409 -https://www.oceanexpert.org/institution/18487 -https://www.oceanexpert.org/expert/39465 -https://www.oceanexpert.org/expert/31943 -https://www.oceanexpert.org/institution/21450 -https://www.oceanexpert.org/expert/22207 -https://www.oceanexpert.org/expert/25572 -https://www.oceanexpert.org/expert/27052 -https://www.oceanexpert.org/institution/12062 -https://www.oceanexpert.org/expert/20887 -https://www.oceanexpert.org/expert/36319 -https://www.oceanexpert.org/expert/37402 -https://www.oceanexpert.org/expert/35359 -https://www.oceanexpert.org/expert/45940 -https://www.oceanexpert.org/expert/7026 -https://www.oceanexpert.org/expert/25730 -https://www.oceanexpert.org/event/2596 -https://www.oceanexpert.org/expert/44350 -https://www.oceanexpert.org/expert/30824 -https://www.oceanexpert.org/expert/30472 -https://www.oceanexpert.org/institution/10296 -https://www.oceanexpert.org/expert/31278 -https://www.oceanexpert.org/expert/18910 -https://www.oceanexpert.org/institution/6971 -https://www.oceanexpert.org/expert/36727 -https://www.oceanexpert.org/expert/15431 -https://www.oceanexpert.org/institution/5208 -https://www.oceanexpert.org/expert/21835 -https://www.oceanexpert.org/event/2315 -https://www.oceanexpert.org/expert/18753 -https://www.oceanexpert.org/expert/46775 -https://www.oceanexpert.org/institution/7925 -https://www.oceanexpert.org/expert/47679 -https://www.oceanexpert.org/expert/464 -https://www.oceanexpert.org/institution/18555 -https://www.oceanexpert.org/institution/21751 -https://www.oceanexpert.org/expert/18060 -https://www.oceanexpert.org/institution/12343 -https://www.oceanexpert.org/expert/34392 -https://www.oceanexpert.org/expert/36322 -https://www.oceanexpert.org/institution/15642 -https://www.oceanexpert.org/expert/26502 -https://www.oceanexpert.org/expert/37585 -https://www.oceanexpert.org/institution/13465 -https://www.oceanexpert.org/expert/21777 -https://www.oceanexpert.org/expert/12226 -https://www.oceanexpert.org/institution/16156 -https://www.oceanexpert.org/expert/37622 -https://www.oceanexpert.org/expert/21799 -https://www.oceanexpert.org/expert/36173 -https://www.oceanexpert.org/expert/8012 -https://www.oceanexpert.org/expert/21211 -https://www.oceanexpert.org/institution/7413 -https://www.oceanexpert.org/institution/11195 -https://www.oceanexpert.org/event/1048 -https://www.oceanexpert.org/expert/48405 -https://www.oceanexpert.org/expert/31286 -https://www.oceanexpert.org/expert/1277 -https://www.oceanexpert.org/expert/39367 -https://www.oceanexpert.org/expert/37053 -https://www.oceanexpert.org/expert/17931 -https://www.oceanexpert.org/expert/27366 -https://www.oceanexpert.org/institution/16440 -https://www.oceanexpert.org/expert/22296 -https://www.oceanexpert.org/expert/27106 -https://www.oceanexpert.org/expert/22113 -https://www.oceanexpert.org/institution/10554 -https://www.oceanexpert.org/expert/26740 -https://www.oceanexpert.org/institution/22046 -https://www.oceanexpert.org/expert/18633 -https://www.oceanexpert.org/expert/43129 -https://www.oceanexpert.org/expert/29130 -https://www.oceanexpert.org/expert/42892 -https://www.oceanexpert.org/expert/25773 -https://www.oceanexpert.org/event/1280 -https://www.oceanexpert.org/expert/31729 -https://www.oceanexpert.org/institution/20959 -https://www.oceanexpert.org/expert/38440 -https://www.oceanexpert.org/expert/31924 -https://www.oceanexpert.org/expert/38624 -https://www.oceanexpert.org/expert/26088 -https://www.oceanexpert.org/expert/37040 -https://www.oceanexpert.org/expert/33364 -https://www.oceanexpert.org/institution/12796 -https://www.oceanexpert.org/institution/21094 -https://www.oceanexpert.org/expert/28099 -https://www.oceanexpert.org/expert/48635 -https://www.oceanexpert.org/expert/22653 -https://www.oceanexpert.org/expert/47832 -https://www.oceanexpert.org/expert/15573 -https://www.oceanexpert.org/expert/27021 -https://www.oceanexpert.org/expert/48616 -https://www.oceanexpert.org/institution/21774 -https://www.oceanexpert.org/expert/36161 -https://www.oceanexpert.org/event/2953 -https://www.oceanexpert.org/expert/48374 -https://www.oceanexpert.org/institution/13025 -https://www.oceanexpert.org/institution/18065 -https://www.oceanexpert.org/expert/36571 -https://www.oceanexpert.org/institution/15819 -https://www.oceanexpert.org/expert/22252 -https://www.oceanexpert.org/expert/6933 -https://www.oceanexpert.org/event/900 -https://www.oceanexpert.org/institution/18511 -https://www.oceanexpert.org/expert/18628 -https://www.oceanexpert.org/expert/8625 -https://www.oceanexpert.org/expert/43000 -https://www.oceanexpert.org/expert/47684 -https://www.oceanexpert.org/institution/14873 -https://www.oceanexpert.org/expert/15598 -https://www.oceanexpert.org/expert/33439 -https://www.oceanexpert.org/expert/20568 -https://www.oceanexpert.org/expert/33002 -https://www.oceanexpert.org/event/3079 -https://www.oceanexpert.org/expert/43236 -https://www.oceanexpert.org/event/1260 -https://www.oceanexpert.org/expert/22212 -https://www.oceanexpert.org/event/1886 -https://www.oceanexpert.org/institution/18707 -https://www.oceanexpert.org/institution/16973 -https://www.oceanexpert.org/expert/24132 -https://www.oceanexpert.org/expert/34321 -https://www.oceanexpert.org/institution/14355 -https://www.oceanexpert.org/expert/25950 -https://www.oceanexpert.org/expert/26192 -https://www.oceanexpert.org/expert/24294 -https://www.oceanexpert.org/institution/12891 -https://www.oceanexpert.org/expert/32458 -https://www.oceanexpert.org/expert/14308 -https://www.oceanexpert.org/institution/17523 -https://www.oceanexpert.org/expert/45044 -https://www.oceanexpert.org/institution/13298 -https://www.oceanexpert.org/expert/20945 -https://www.oceanexpert.org/institution/17151 -https://www.oceanexpert.org/institution/19060 -https://www.oceanexpert.org/expert/39229 -https://www.oceanexpert.org/expert/41610 -https://www.oceanexpert.org/expert/17820 -https://www.oceanexpert.org/institution/14741 -https://www.oceanexpert.org/institution/21169 -https://www.oceanexpert.org/institution/16689 -https://www.oceanexpert.org/institution/21849 -https://www.oceanexpert.org/expert/11515 -https://www.oceanexpert.org/expert/19357 -https://www.oceanexpert.org/event/2366 -https://www.oceanexpert.org/expert/2156 -https://www.oceanexpert.org/event/2911 -https://www.oceanexpert.org/expert/17735 -https://www.oceanexpert.org/expert/18928 -https://www.oceanexpert.org/expert/32142 -https://www.oceanexpert.org/expert/707 -https://www.oceanexpert.org/institution/8393 -https://www.oceanexpert.org/expert/47568 -https://www.oceanexpert.org/expert/19201 -https://www.oceanexpert.org/expert/44854 -https://www.oceanexpert.org/expert/18939 -https://www.oceanexpert.org/event/2796 -https://www.oceanexpert.org/expert/39928 -https://www.oceanexpert.org/institution/8877 -https://www.oceanexpert.org/expert/24922 -https://www.oceanexpert.org/institution/19610 -https://www.oceanexpert.org/expert/36872 -https://www.oceanexpert.org/expert/40089 -https://www.oceanexpert.org/expert/22028 -https://www.oceanexpert.org/expert/23775 -https://www.oceanexpert.org/expert/20029 -https://www.oceanexpert.org/expert/47231 -https://www.oceanexpert.org/institution/20110 -https://www.oceanexpert.org/institution/15960 -https://www.oceanexpert.org/expert/7116 -https://www.oceanexpert.org/expert/19929 -https://www.oceanexpert.org/expert/45875 -https://www.oceanexpert.org/expert/14422 -https://www.oceanexpert.org/expert/48453 -https://www.oceanexpert.org/expert/32648 -https://www.oceanexpert.org/institution/20241 -https://www.oceanexpert.org/expert/15612 -https://www.oceanexpert.org/institution/7299 -https://www.oceanexpert.org/expert/17584 -https://www.oceanexpert.org/expert/22238 -https://www.oceanexpert.org/expert/19731 -https://www.oceanexpert.org/expert/26404 -https://www.oceanexpert.org/expert/26253 -https://www.oceanexpert.org/expert/44913 -https://www.oceanexpert.org/expert/46468 -https://www.oceanexpert.org/expert/34625 -https://www.oceanexpert.org/expert/32776 -https://www.oceanexpert.org/event/386 -https://www.oceanexpert.org/expert/30935 -https://www.oceanexpert.org/expert/18176 -https://www.oceanexpert.org/expert/29147 -https://www.oceanexpert.org/institution/12591 -https://www.oceanexpert.org/expert/26381 -https://www.oceanexpert.org/event/1748 -https://www.oceanexpert.org/expert/37521 -https://www.oceanexpert.org/expert/35052 -https://www.oceanexpert.org/event/1183 -https://www.oceanexpert.org/expert/35168 -https://www.oceanexpert.org/expert/29659 -https://www.oceanexpert.org/institution/11845 -https://www.oceanexpert.org/expert/46635 -https://www.oceanexpert.org/institution/20432 -https://www.oceanexpert.org/event/890 -https://www.oceanexpert.org/institution/17377 -https://www.oceanexpert.org/expert/46482 -https://www.oceanexpert.org/expert/28967 -https://www.oceanexpert.org/expert/26162 -https://www.oceanexpert.org/expert/168 -https://www.oceanexpert.org/expert/29676 -https://www.oceanexpert.org/expert/44719 -https://www.oceanexpert.org/expert/22466 -https://www.oceanexpert.org/expert/17712 -https://www.oceanexpert.org/expert/39444 -https://www.oceanexpert.org/expert/33706 -https://www.oceanexpert.org/expert/27294 -https://www.oceanexpert.org/institution/19695 -https://www.oceanexpert.org/expert/1084 -https://www.oceanexpert.org/expert/47905 -https://www.oceanexpert.org/expert/28330 -https://www.oceanexpert.org/expert/43714 -https://www.oceanexpert.org/expert/22619 -https://www.oceanexpert.org/expert/5731 -https://www.oceanexpert.org/expert/7140 -https://www.oceanexpert.org/expert/37063 -https://www.oceanexpert.org/event/851 -https://www.oceanexpert.org/expert/18795 -https://www.oceanexpert.org/expert/45474 -https://www.oceanexpert.org/expert/11095 -https://www.oceanexpert.org/expert/8639 -https://www.oceanexpert.org/institution/17838 -https://www.oceanexpert.org/expert/38237 -https://www.oceanexpert.org/expert/20463 -https://www.oceanexpert.org/institution/20790 -https://www.oceanexpert.org/expert/48956 -https://www.oceanexpert.org/expert/16111 -https://www.oceanexpert.org/expert/30783 -https://www.oceanexpert.org/expert/33613 -https://www.oceanexpert.org/institution/19277 -https://www.oceanexpert.org/expert/14902 -https://www.oceanexpert.org/institution/22139 -https://www.oceanexpert.org/event/1027 -https://www.oceanexpert.org/expert/20564 -https://www.oceanexpert.org/expert/6692 -https://www.oceanexpert.org/expert/36711 -https://www.oceanexpert.org/expert/20361 -https://www.oceanexpert.org/expert/35949 -https://www.oceanexpert.org/expert/25284 -https://www.oceanexpert.org/expert/47179 -https://www.oceanexpert.org/expert/47480 -https://www.oceanexpert.org/expert/7444 -https://www.oceanexpert.org/event/238 -https://www.oceanexpert.org/expert/43536 -https://www.oceanexpert.org/expert/18356 -https://www.oceanexpert.org/expert/35232 -https://www.oceanexpert.org/institution/21502 -https://www.oceanexpert.org/expert/46707 -https://www.oceanexpert.org/expert/14262 -https://www.oceanexpert.org/expert/7011 -https://www.oceanexpert.org/institution/11061 -https://www.oceanexpert.org/institution/5532 -https://www.oceanexpert.org/expert/30554 -https://www.oceanexpert.org/institution/18143 -https://www.oceanexpert.org/expert/46258 -https://www.oceanexpert.org/expert/19575 -https://www.oceanexpert.org/expert/22902 -https://www.oceanexpert.org/expert/34814 -https://www.oceanexpert.org/expert/16318 -https://www.oceanexpert.org/institution/10981 -https://www.oceanexpert.org/expert/48263 -https://www.oceanexpert.org/institution/19568 -https://www.oceanexpert.org/expert/44757 -https://www.oceanexpert.org/expert/17667 -https://www.oceanexpert.org/expert/47896 -https://www.oceanexpert.org/expert/48946 -https://www.oceanexpert.org/institution/11745 -https://www.oceanexpert.org/expert/48578 -https://www.oceanexpert.org/expert/47559 -https://www.oceanexpert.org/expert/20513 -https://www.oceanexpert.org/expert/18955 -https://www.oceanexpert.org/institution/21017 -https://www.oceanexpert.org/expert/35050 -https://www.oceanexpert.org/institution/15017 -https://www.oceanexpert.org/institution/9408 -https://www.oceanexpert.org/expert/45925 -https://www.oceanexpert.org/expert/37124 -https://www.oceanexpert.org/expert/31379 -https://www.oceanexpert.org/expert/25582 -https://www.oceanexpert.org/expert/21360 -https://www.oceanexpert.org/institution/20049 -https://www.oceanexpert.org/expert/18645 -https://www.oceanexpert.org/expert/36954 -https://www.oceanexpert.org/expert/44322 -https://www.oceanexpert.org/expert/30852 -https://www.oceanexpert.org/event/2816 -https://www.oceanexpert.org/expert/34552 -https://www.oceanexpert.org/expert/25362 -https://www.oceanexpert.org/expert/36616 -https://www.oceanexpert.org/expert/48595 -https://www.oceanexpert.org/expert/48039 -https://www.oceanexpert.org/institution/10871 -https://www.oceanexpert.org/expert/7273 -https://www.oceanexpert.org/institution/18626 -https://www.oceanexpert.org/event/2193 -https://www.oceanexpert.org/institution/21905 -https://www.oceanexpert.org/expert/28387 -https://www.oceanexpert.org/institution/18670 -https://www.oceanexpert.org/institution/7533 -https://www.oceanexpert.org/institution/18512 -https://www.oceanexpert.org/expert/20316 -https://www.oceanexpert.org/institution/19625 -https://www.oceanexpert.org/expert/11242 -https://www.oceanexpert.org/expert/22551 -https://www.oceanexpert.org/expert/17997 -https://www.oceanexpert.org/expert/32183 -https://www.oceanexpert.org/expert/17419 -https://www.oceanexpert.org/institution/19419 -https://www.oceanexpert.org/expert/26242 -https://www.oceanexpert.org/expert/46865 -https://www.oceanexpert.org/expert/39974 -https://www.oceanexpert.org/institution/10013 -https://www.oceanexpert.org/expert/32715 -https://www.oceanexpert.org/institution/18434 -https://www.oceanexpert.org/institution/12056 -https://www.oceanexpert.org/institution/19334 -https://www.oceanexpert.org/expert/18162 -https://www.oceanexpert.org/expert/32462 -https://www.oceanexpert.org/expert/35837 -https://www.oceanexpert.org/institution/7131 -https://www.oceanexpert.org/institution/16083 -https://www.oceanexpert.org/institution/10974 -https://www.oceanexpert.org/expert/43939 -https://www.oceanexpert.org/institution/20668 -https://www.oceanexpert.org/institution/20653 -https://www.oceanexpert.org/expert/34889 -https://www.oceanexpert.org/event/1835 -https://www.oceanexpert.org/expert/36523 -https://www.oceanexpert.org/expert/16792 -https://www.oceanexpert.org/expert/33241 -https://www.oceanexpert.org/expert/21053 -https://www.oceanexpert.org/expert/24208 -https://www.oceanexpert.org/expert/2257 -https://www.oceanexpert.org/expert/48693 -https://www.oceanexpert.org/expert/35662 -https://www.oceanexpert.org/expert/40866 -https://www.oceanexpert.org/expert/22142 -https://www.oceanexpert.org/institution/5014 -https://www.oceanexpert.org/institution/13080 -https://www.oceanexpert.org/expert/45596 -https://www.oceanexpert.org/expert/22560 -https://www.oceanexpert.org/institution/14459 -https://www.oceanexpert.org/expert/43814 -https://www.oceanexpert.org/expert/45472 -https://www.oceanexpert.org/expert/19755 -https://www.oceanexpert.org/expert/31244 -https://www.oceanexpert.org/expert/48154 -https://www.oceanexpert.org/expert/47099 -https://www.oceanexpert.org/expert/43276 -https://www.oceanexpert.org/expert/23015 -https://www.oceanexpert.org/event/250 -https://www.oceanexpert.org/expert/44654 -https://www.oceanexpert.org/institution/17148 -https://www.oceanexpert.org/institution/20688 -https://www.oceanexpert.org/expert/24129 -https://www.oceanexpert.org/expert/7813 -https://www.oceanexpert.org/institution/12102 -https://www.oceanexpert.org/expert/8537 -https://www.oceanexpert.org/institution/13617 -https://www.oceanexpert.org/institution/21746 -https://www.oceanexpert.org/institution/19245 -https://www.oceanexpert.org/expert/22444 -https://www.oceanexpert.org/expert/31974 -https://www.oceanexpert.org/institution/21365 -https://www.oceanexpert.org/expert/46332 -https://www.oceanexpert.org/event/1793 -https://www.oceanexpert.org/institution/10401 -https://www.oceanexpert.org/expert/25149 -https://www.oceanexpert.org/expert/35953 -https://www.oceanexpert.org/institution/20887 -https://www.oceanexpert.org/expert/23286 -https://www.oceanexpert.org/expert/21556 -https://www.oceanexpert.org/expert/35779 -https://www.oceanexpert.org/institution/16835 -https://www.oceanexpert.org/expert/38966 -https://www.oceanexpert.org/expert/38231 -https://www.oceanexpert.org/institution/20261 -https://www.oceanexpert.org/institution/18662 -https://www.oceanexpert.org/expert/11328 -https://www.oceanexpert.org/expert/26844 -https://www.oceanexpert.org/institution/22017 -https://www.oceanexpert.org/expert/24186 -https://www.oceanexpert.org/expert/46791 -https://www.oceanexpert.org/expert/43359 -https://www.oceanexpert.org/expert/12102 -https://www.oceanexpert.org/expert/46437 -https://www.oceanexpert.org/institution/11839 -https://www.oceanexpert.org/expert/27480 -https://www.oceanexpert.org/expert/27228 -https://www.oceanexpert.org/institution/13695 -https://www.oceanexpert.org/event/1868 -https://www.oceanexpert.org/institution/18378 -https://www.oceanexpert.org/institution/19701 -https://www.oceanexpert.org/expert/20402 -https://www.oceanexpert.org/expert/36972 -https://www.oceanexpert.org/event/1630 -https://www.oceanexpert.org/expert/48337 -https://www.oceanexpert.org/expert/44327 -https://www.oceanexpert.org/expert/18887 -https://www.oceanexpert.org/expert/534 -https://www.oceanexpert.org/event/51 -https://www.oceanexpert.org/expert/39411 -https://www.oceanexpert.org/institution/21496 -https://www.oceanexpert.org/expert/6904 -https://www.oceanexpert.org/expert/36435 -https://www.oceanexpert.org/expert/44674 -https://www.oceanexpert.org/expert/2236 -https://www.oceanexpert.org/expert/35433 -https://www.oceanexpert.org/expert/44240 -https://www.oceanexpert.org/event/2711 -https://www.oceanexpert.org/expert/43820 -https://www.oceanexpert.org/institution/14444 -https://www.oceanexpert.org/expert/38504 -https://www.oceanexpert.org/event/85 -https://www.oceanexpert.org/expert/17653 -https://www.oceanexpert.org/expert/35950 -https://www.oceanexpert.org/event/58 -https://www.oceanexpert.org/expert/16216 -https://www.oceanexpert.org/expert/7183 -https://www.oceanexpert.org/institution/15761 -https://www.oceanexpert.org/expert/48081 -https://www.oceanexpert.org/expert/6352 -https://www.oceanexpert.org/expert/26350 -https://www.oceanexpert.org/expert/36475 -https://www.oceanexpert.org/expert/38973 -https://www.oceanexpert.org/expert/32498 -https://www.oceanexpert.org/expert/14330 -https://www.oceanexpert.org/event/1687 -https://www.oceanexpert.org/expert/35735 -https://www.oceanexpert.org/institution/14820 -https://www.oceanexpert.org/expert/19510 -https://www.oceanexpert.org/expert/26494 -https://www.oceanexpert.org/expert/20814 -https://www.oceanexpert.org/expert/34136 -https://www.oceanexpert.org/expert/48681 -https://www.oceanexpert.org/expert/27169 -https://www.oceanexpert.org/institution/19359 -https://www.oceanexpert.org/expert/24009 -https://www.oceanexpert.org/institution/12366 -https://www.oceanexpert.org/expert/26735 -https://www.oceanexpert.org/expert/20469 -https://www.oceanexpert.org/expert/44491 -https://www.oceanexpert.org/expert/25965 -https://www.oceanexpert.org/expert/12803 -https://www.oceanexpert.org/institution/20742 -https://www.oceanexpert.org/expert/25680 -https://www.oceanexpert.org/institution/13429 -https://www.oceanexpert.org/expert/38090 -https://www.oceanexpert.org/expert/47260 -https://www.oceanexpert.org/expert/3822 -https://www.oceanexpert.org/institution/22078 -https://www.oceanexpert.org/institution/19469 -https://www.oceanexpert.org/expert/7529 -https://www.oceanexpert.org/expert/24090 -https://www.oceanexpert.org/expert/17511 -https://www.oceanexpert.org/expert/18445 -https://www.oceanexpert.org/expert/45418 -https://www.oceanexpert.org/expert/37246 -https://www.oceanexpert.org/event/1860 -https://www.oceanexpert.org/expert/25373 -https://www.oceanexpert.org/expert/22312 -https://www.oceanexpert.org/expert/25416 -https://www.oceanexpert.org/institution/11306 -https://www.oceanexpert.org/institution/13082 -https://www.oceanexpert.org/institution/20116 -https://www.oceanexpert.org/institution/21077 -https://www.oceanexpert.org/event/2288 -https://www.oceanexpert.org/expert/43891 -https://www.oceanexpert.org/institution/19817 -https://www.oceanexpert.org/expert/39419 -https://www.oceanexpert.org/institution/14016 -https://www.oceanexpert.org/expert/48816 -https://www.oceanexpert.org/expert/7510 -https://www.oceanexpert.org/expert/33061 -https://www.oceanexpert.org/expert/24088 -https://www.oceanexpert.org/expert/34659 -https://www.oceanexpert.org/expert/9498 -https://www.oceanexpert.org/expert/46268 -https://www.oceanexpert.org/institution/18274 -https://www.oceanexpert.org/institution/13777 -https://www.oceanexpert.org/institution/12138 -https://www.oceanexpert.org/expert/14439 -https://www.oceanexpert.org/expert/35277 -https://www.oceanexpert.org/expert/14231 -https://www.oceanexpert.org/expert/42806 -https://www.oceanexpert.org/expert/46895 -https://www.oceanexpert.org/expert/25123 -https://www.oceanexpert.org/expert/19796 -https://www.oceanexpert.org/expert/27286 -https://www.oceanexpert.org/expert/37445 -https://www.oceanexpert.org/institution/19065 -https://www.oceanexpert.org/expert/19032 -https://www.oceanexpert.org/institution/11143 -https://www.oceanexpert.org/expert/45911 -https://www.oceanexpert.org/institution/18968 -https://www.oceanexpert.org/institution/21486 -https://www.oceanexpert.org/expert/26828 -https://www.oceanexpert.org/expert/36499 -https://www.oceanexpert.org/institution/18956 -https://www.oceanexpert.org/expert/18333 -https://www.oceanexpert.org/expert/43094 -https://www.oceanexpert.org/event/943 -https://www.oceanexpert.org/expert/26393 -https://www.oceanexpert.org/institution/17471 -https://www.oceanexpert.org/expert/23525 -https://www.oceanexpert.org/expert/18369 -https://www.oceanexpert.org/expert/6194 -https://www.oceanexpert.org/institution/20609 -https://www.oceanexpert.org/expert/27155 -https://www.oceanexpert.org/expert/46278 -https://www.oceanexpert.org/expert/36514 -https://www.oceanexpert.org/expert/42917 -https://www.oceanexpert.org/event/1272 -https://www.oceanexpert.org/institution/17409 -https://www.oceanexpert.org/expert/26260 -https://www.oceanexpert.org/expert/39157 -https://www.oceanexpert.org/expert/44811 -https://www.oceanexpert.org/expert/712 -https://www.oceanexpert.org/expert/21686 -https://www.oceanexpert.org/expert/20289 -https://www.oceanexpert.org/expert/30588 -https://www.oceanexpert.org/expert/19103 -https://www.oceanexpert.org/institution/21160 -https://www.oceanexpert.org/expert/18690 -https://www.oceanexpert.org/institution/19022 -https://www.oceanexpert.org/event/2009 -https://www.oceanexpert.org/expert/18288 -https://www.oceanexpert.org/expert/17052 -https://www.oceanexpert.org/institution/15921 -https://www.oceanexpert.org/expert/15526 -https://www.oceanexpert.org/event/1116 -https://www.oceanexpert.org/expert/46899 -https://www.oceanexpert.org/expert/18610 -https://www.oceanexpert.org/institution/19754 -https://www.oceanexpert.org/event/1318 -https://www.oceanexpert.org/expert/27527 -https://www.oceanexpert.org/expert/34051 -https://www.oceanexpert.org/event/468 -https://www.oceanexpert.org/expert/46256 -https://www.oceanexpert.org/expert/30884 -https://www.oceanexpert.org/expert/13558 -https://www.oceanexpert.org/expert/41394 -https://www.oceanexpert.org/institution/19170 -https://www.oceanexpert.org/expert/40592 -https://www.oceanexpert.org/event/1541 -https://www.oceanexpert.org/institution/21486 -https://www.oceanexpert.org/expert/42514 -https://www.oceanexpert.org/institution/21856 -https://www.oceanexpert.org/expert/26099 -https://www.oceanexpert.org/expert/13082 -https://www.oceanexpert.org/expert/10748 -https://www.oceanexpert.org/expert/13353 -https://www.oceanexpert.org/expert/38449 -https://www.oceanexpert.org/institution/20786 -https://www.oceanexpert.org/institution/12792 -https://www.oceanexpert.org/event/1281 -https://www.oceanexpert.org/expert/46902 -https://www.oceanexpert.org/expert/21913 -https://www.oceanexpert.org/expert/36236 -https://www.oceanexpert.org/institution/21346 -https://www.oceanexpert.org/expert/42957 -https://www.oceanexpert.org/event/1612 -https://www.oceanexpert.org/institution/10554 -https://www.oceanexpert.org/institution/18884 -https://www.oceanexpert.org/expert/20619 -https://www.oceanexpert.org/expert/40165 -https://www.oceanexpert.org/expert/37976 -https://www.oceanexpert.org/expert/47412 -https://www.oceanexpert.org/expert/18379 -https://www.oceanexpert.org/expert/7176 -https://www.oceanexpert.org/expert/22884 -https://www.oceanexpert.org/expert/30838 -https://www.oceanexpert.org/institution/18362 -https://www.oceanexpert.org/institution/21940 -https://www.oceanexpert.org/institution/22105 -https://www.oceanexpert.org/expert/45209 -https://www.oceanexpert.org/expert/20195 -https://www.oceanexpert.org/expert/20072 -https://www.oceanexpert.org/expert/36759 -https://www.oceanexpert.org/institution/5843 -https://www.oceanexpert.org/expert/22651 -https://www.oceanexpert.org/expert/24359 -https://www.oceanexpert.org/expert/21266 -https://www.oceanexpert.org/expert/17087 -https://www.oceanexpert.org/expert/26744 -https://www.oceanexpert.org/institution/18932 -https://www.oceanexpert.org/institution/13766 -https://www.oceanexpert.org/event/2572 -https://www.oceanexpert.org/institution/10904 -https://www.oceanexpert.org/expert/45843 -https://www.oceanexpert.org/institution/20413 -https://www.oceanexpert.org/expert/632 -https://www.oceanexpert.org/expert/36095 -https://www.oceanexpert.org/expert/15190 -https://www.oceanexpert.org/event/2121 -https://www.oceanexpert.org/expert/31994 -https://www.oceanexpert.org/expert/35176 -https://www.oceanexpert.org/expert/6504 -https://www.oceanexpert.org/expert/24090 -https://www.oceanexpert.org/expert/26974 -https://www.oceanexpert.org/expert/27760 -https://www.oceanexpert.org/expert/44128 -https://www.oceanexpert.org/expert/2108 -https://www.oceanexpert.org/expert/40108 -https://www.oceanexpert.org/expert/25676 -https://www.oceanexpert.org/expert/26942 -https://www.oceanexpert.org/institution/14408 -https://www.oceanexpert.org/event/1914 -https://www.oceanexpert.org/expert/30127 -https://www.oceanexpert.org/expert/24343 -https://www.oceanexpert.org/institution/19630 -https://www.oceanexpert.org/institution/15750 -https://www.oceanexpert.org/expert/47664 -https://www.oceanexpert.org/expert/20923 -https://www.oceanexpert.org/event/3028 -https://www.oceanexpert.org/expert/23711 -https://www.oceanexpert.org/institution/10519 -https://www.oceanexpert.org/expert/22391 -https://www.oceanexpert.org/institution/15362 -https://www.oceanexpert.org/institution/11563 -https://www.oceanexpert.org/expert/37040 -https://www.oceanexpert.org/expert/43220 -https://www.oceanexpert.org/expert/25920 -https://www.oceanexpert.org/institution/19929 -https://www.oceanexpert.org/event/2758 -https://www.oceanexpert.org/expert/25480 -https://www.oceanexpert.org/expert/36681 -https://www.oceanexpert.org/institution/19562 -https://www.oceanexpert.org/expert/27287 -https://www.oceanexpert.org/expert/32529 -https://www.oceanexpert.org/event/330 -https://www.oceanexpert.org/institution/15076 -https://www.oceanexpert.org/expert/43006 -https://www.oceanexpert.org/expert/48767 -https://www.oceanexpert.org/expert/19145 -https://www.oceanexpert.org/institution/21696 -https://www.oceanexpert.org/expert/25278 -https://www.oceanexpert.org/expert/43536 -https://www.oceanexpert.org/expert/13923 -https://www.oceanexpert.org/expert/40024 -https://www.oceanexpert.org/expert/20420 -https://www.oceanexpert.org/institution/21588 -https://www.oceanexpert.org/event/2768 -https://www.oceanexpert.org/expert/18841 -https://www.oceanexpert.org/expert/37347 -https://www.oceanexpert.org/institution/6727 -https://www.oceanexpert.org/expert/46072 -https://www.oceanexpert.org/event/1334 -https://www.oceanexpert.org/expert/31470 -https://www.oceanexpert.org/expert/47535 -https://www.oceanexpert.org/expert/28093 -https://www.oceanexpert.org/expert/23130 -https://www.oceanexpert.org/event/540 -https://www.oceanexpert.org/expert/34695 -https://www.oceanexpert.org/expert/29778 -https://www.oceanexpert.org/expert/29505 -https://www.oceanexpert.org/expert/1878 -https://www.oceanexpert.org/expert/32399 -https://www.oceanexpert.org/expert/22406 -https://www.oceanexpert.org/expert/17360 -https://www.oceanexpert.org/institution/10261 -https://www.oceanexpert.org/institution/18357 -https://www.oceanexpert.org/expert/47629 -https://www.oceanexpert.org/expert/42638 -https://www.oceanexpert.org/expert/46595 -https://www.oceanexpert.org/institution/10983 -https://www.oceanexpert.org/expert/33092 -https://www.oceanexpert.org/institution/19074 -https://www.oceanexpert.org/expert/21631 -https://www.oceanexpert.org/event/681 -https://www.oceanexpert.org/institution/13703 -https://www.oceanexpert.org/institution/21506 -https://www.oceanexpert.org/expert/36549 -https://www.oceanexpert.org/expert/43712 -https://www.oceanexpert.org/event/225 -https://www.oceanexpert.org/institution/19754 -https://www.oceanexpert.org/expert/42986 -https://www.oceanexpert.org/expert/48811 -https://www.oceanexpert.org/expert/30122 -https://www.oceanexpert.org/expert/26980 -https://www.oceanexpert.org/expert/13019 -https://www.oceanexpert.org/expert/2480 -https://www.oceanexpert.org/expert/20420 -https://www.oceanexpert.org/expert/6866 -https://www.oceanexpert.org/expert/47363 -https://www.oceanexpert.org/expert/18013 -https://www.oceanexpert.org/institution/21783 -https://www.oceanexpert.org/expert/25498 -https://www.oceanexpert.org/expert/48522 -https://www.oceanexpert.org/expert/37313 -https://www.oceanexpert.org/expert/44430 -https://www.oceanexpert.org/expert/34679 -https://www.oceanexpert.org/institution/5372 -https://www.oceanexpert.org/expert/37251 -https://www.oceanexpert.org/expert/19286 -https://www.oceanexpert.org/expert/19997 -https://www.oceanexpert.org/expert/44571 -https://www.oceanexpert.org/expert/29836 -https://www.oceanexpert.org/event/1379 -https://www.oceanexpert.org/expert/25047 -https://www.oceanexpert.org/expert/20270 -https://www.oceanexpert.org/expert/30111 -https://www.oceanexpert.org/expert/47028 -https://www.oceanexpert.org/expert/30905 -https://www.oceanexpert.org/institution/19012 -https://www.oceanexpert.org/expert/32601 -https://www.oceanexpert.org/expert/33112 -https://www.oceanexpert.org/expert/31859 -https://www.oceanexpert.org/institution/18950 -https://www.oceanexpert.org/institution/22060 -https://www.oceanexpert.org/institution/21918 -https://www.oceanexpert.org/institution/18572 -https://www.oceanexpert.org/expert/26405 -https://www.oceanexpert.org/event/1806 -https://www.oceanexpert.org/expert/23168 -https://www.oceanexpert.org/expert/18934 -https://www.oceanexpert.org/expert/23714 -https://www.oceanexpert.org/expert/31881 -https://www.oceanexpert.org/institution/15185 -https://www.oceanexpert.org/institution/18531 -https://www.oceanexpert.org/event/864 -https://www.oceanexpert.org/institution/10700 -https://www.oceanexpert.org/institution/6634 -https://www.oceanexpert.org/institution/21296 -https://www.oceanexpert.org/expert/19375 -https://www.oceanexpert.org/institution/16375 -https://www.oceanexpert.org/institution/22130 -https://www.oceanexpert.org/expert/20797 -https://www.oceanexpert.org/expert/34410 -https://www.oceanexpert.org/expert/45573 -https://www.oceanexpert.org/institution/19876 -https://www.oceanexpert.org/expert/19926 -https://www.oceanexpert.org/expert/43398 -https://www.oceanexpert.org/expert/38208 -https://www.oceanexpert.org/institution/13137 -https://www.oceanexpert.org/institution/21094 -https://www.oceanexpert.org/expert/48076 -https://www.oceanexpert.org/expert/38609 -https://www.oceanexpert.org/expert/47349 -https://www.oceanexpert.org/expert/11020 -https://www.oceanexpert.org/event/2937 -https://www.oceanexpert.org/expert/44894 -https://www.oceanexpert.org/expert/31651 -https://www.oceanexpert.org/event/2288 -https://www.oceanexpert.org/institution/19943 -https://www.oceanexpert.org/institution/11010 -https://www.oceanexpert.org/institution/20996 -https://www.oceanexpert.org/expert/18160 -https://www.oceanexpert.org/expert/37926 -https://www.oceanexpert.org/expert/37690 -https://www.oceanexpert.org/expert/38235 -https://www.oceanexpert.org/expert/44190 -https://www.oceanexpert.org/expert/26990 -https://www.oceanexpert.org/expert/45565 -https://www.oceanexpert.org/institution/21122 -https://www.oceanexpert.org/event/2670 -https://www.oceanexpert.org/institution/10490 -https://www.oceanexpert.org/institution/20753 -https://www.oceanexpert.org/institution/18821 -https://www.oceanexpert.org/expert/20030 -https://www.oceanexpert.org/expert/17574 -https://www.oceanexpert.org/institution/13773 -https://www.oceanexpert.org/expert/35483 -https://www.oceanexpert.org/expert/24643 -https://www.oceanexpert.org/event/111 -https://www.oceanexpert.org/expert/26641 -https://www.oceanexpert.org/expert/17632 -https://www.oceanexpert.org/expert/36381 -https://www.oceanexpert.org/expert/9233 -https://www.oceanexpert.org/expert/31162 -https://www.oceanexpert.org/expert/11830 -https://www.oceanexpert.org/expert/28941 -https://www.oceanexpert.org/expert/27326 -https://www.oceanexpert.org/institution/13116 -https://www.oceanexpert.org/expert/18962 -https://www.oceanexpert.org/expert/818 -https://www.oceanexpert.org/expert/34104 -https://www.oceanexpert.org/expert/2493 -https://www.oceanexpert.org/expert/22732 -https://www.oceanexpert.org/institution/14372 -https://www.oceanexpert.org/expert/26736 -https://www.oceanexpert.org/expert/24200 -https://www.oceanexpert.org/expert/44096 -https://www.oceanexpert.org/institution/15911 -https://www.oceanexpert.org/expert/12119 -https://www.oceanexpert.org/institution/18672 -https://www.oceanexpert.org/expert/24541 -https://www.oceanexpert.org/expert/19502 -https://www.oceanexpert.org/expert/45862 -https://www.oceanexpert.org/institution/20883 -https://www.oceanexpert.org/expert/17920 -https://www.oceanexpert.org/expert/37095 -https://www.oceanexpert.org/institution/18808 -https://www.oceanexpert.org/expert/21047 -https://www.oceanexpert.org/expert/43314 -https://www.oceanexpert.org/expert/19539 -https://www.oceanexpert.org/institution/17199 -https://www.oceanexpert.org/expert/44296 -https://www.oceanexpert.org/institution/14833 -https://www.oceanexpert.org/event/1571 -https://www.oceanexpert.org/institution/11623 -https://www.oceanexpert.org/expert/20619 -https://www.oceanexpert.org/expert/22832 -https://www.oceanexpert.org/event/2857 -https://www.oceanexpert.org/institution/16821 -https://www.oceanexpert.org/expert/29884 -https://www.oceanexpert.org/expert/26001 -https://www.oceanexpert.org/institution/21673 -https://www.oceanexpert.org/institution/11665 -https://www.oceanexpert.org/expert/30488 -https://www.oceanexpert.org/expert/44086 -https://www.oceanexpert.org/event/881 -https://www.oceanexpert.org/expert/42589 -https://www.oceanexpert.org/expert/44847 -https://www.oceanexpert.org/expert/24477 -https://www.oceanexpert.org/institution/14039 -https://www.oceanexpert.org/expert/12073 -https://www.oceanexpert.org/expert/42888 -https://www.oceanexpert.org/expert/13102 -https://www.oceanexpert.org/institution/18993 -https://www.oceanexpert.org/institution/20257 -https://www.oceanexpert.org/expert/32524 -https://www.oceanexpert.org/expert/6213 -https://www.oceanexpert.org/event/1323 -https://www.oceanexpert.org/expert/30012 -https://www.oceanexpert.org/expert/18022 -https://www.oceanexpert.org/expert/23197 -https://www.oceanexpert.org/institution/20896 -https://www.oceanexpert.org/expert/48263 -https://www.oceanexpert.org/institution/18453 -https://www.oceanexpert.org/expert/47505 -https://www.oceanexpert.org/institution/11579 -https://www.oceanexpert.org/expert/21902 -https://www.oceanexpert.org/institution/20307 -https://www.oceanexpert.org/expert/18557 -https://www.oceanexpert.org/expert/47051 -https://www.oceanexpert.org/expert/6788 -https://www.oceanexpert.org/event/315 -https://www.oceanexpert.org/expert/42977 -https://www.oceanexpert.org/expert/20991 -https://www.oceanexpert.org/expert/47675 -https://www.oceanexpert.org/expert/23271 -https://www.oceanexpert.org/expert/28979 -https://www.oceanexpert.org/event/2960 -https://www.oceanexpert.org/institution/19567 -https://www.oceanexpert.org/institution/18783 -https://www.oceanexpert.org/expert/24248 -https://www.oceanexpert.org/expert/21316 -https://www.oceanexpert.org/institution/18641 -https://www.oceanexpert.org/institution/19874 -https://www.oceanexpert.org/institution/12252 -https://www.oceanexpert.org/expert/42881 -https://www.oceanexpert.org/institution/21841 -https://www.oceanexpert.org/event/1502 -https://www.oceanexpert.org/expert/40369 -https://www.oceanexpert.org/expert/7105 -https://www.oceanexpert.org/expert/36163 -https://www.oceanexpert.org/expert/44976 -https://www.oceanexpert.org/institution/18656 -https://www.oceanexpert.org/expert/28257 -https://www.oceanexpert.org/event/1324 -https://www.oceanexpert.org/expert/48924 -https://www.oceanexpert.org/event/24 -https://www.oceanexpert.org/expert/37460 -https://www.oceanexpert.org/expert/24600 -https://www.oceanexpert.org/expert/21194 -https://www.oceanexpert.org/event/2600 -https://www.oceanexpert.org/expert/45453 -https://www.oceanexpert.org/expert/43693 -https://www.oceanexpert.org/expert/31428 -https://www.oceanexpert.org/expert/16244 -https://www.oceanexpert.org/institution/21181 -https://www.oceanexpert.org/expert/21236 -https://www.oceanexpert.org/event/1830 -https://www.oceanexpert.org/event/430 -https://www.oceanexpert.org/institution/18008 -https://www.oceanexpert.org/expert/36576 -https://www.oceanexpert.org/expert/37623 -https://www.oceanexpert.org/expert/16681 -https://www.oceanexpert.org/institution/10576 -https://www.oceanexpert.org/expert/34465 -https://www.oceanexpert.org/expert/42884 -https://www.oceanexpert.org/expert/19000 -https://www.oceanexpert.org/expert/8232 -https://www.oceanexpert.org/expert/19394 -https://www.oceanexpert.org/expert/43980 -https://www.oceanexpert.org/institution/11777 -https://www.oceanexpert.org/expert/36907 -https://www.oceanexpert.org/expert/43881 -https://www.oceanexpert.org/expert/28340 -https://www.oceanexpert.org/expert/47489 -https://www.oceanexpert.org/expert/48143 -https://www.oceanexpert.org/institution/20111 -https://www.oceanexpert.org/expert/17233 -https://www.oceanexpert.org/institution/19423 -https://www.oceanexpert.org/expert/31947 -https://www.oceanexpert.org/expert/22866 -https://www.oceanexpert.org/expert/42933 -https://www.oceanexpert.org/expert/14493 -https://www.oceanexpert.org/expert/44221 -https://www.oceanexpert.org/expert/32792 -https://www.oceanexpert.org/expert/12561 -https://www.oceanexpert.org/expert/27147 -https://www.oceanexpert.org/expert/31228 -https://www.oceanexpert.org/expert/25043 -https://www.oceanexpert.org/expert/8819 -https://www.oceanexpert.org/expert/34224 -https://www.oceanexpert.org/expert/48004 -https://www.oceanexpert.org/expert/48019 -https://www.oceanexpert.org/event/326 -https://www.oceanexpert.org/expert/36563 -https://www.oceanexpert.org/expert/38821 -https://www.oceanexpert.org/expert/47340 -https://www.oceanexpert.org/expert/33452 -https://www.oceanexpert.org/expert/30208 -https://www.oceanexpert.org/event/2017 -https://www.oceanexpert.org/institution/12769 -https://www.oceanexpert.org/expert/22609 -https://www.oceanexpert.org/institution/17273 -https://www.oceanexpert.org/institution/22006 -https://www.oceanexpert.org/event/789 -https://www.oceanexpert.org/institution/18743 -https://www.oceanexpert.org/institution/20845 -https://www.oceanexpert.org/event/1584 -https://www.oceanexpert.org/expert/3475 -https://www.oceanexpert.org/institution/17811 -https://www.oceanexpert.org/event/2773 -https://www.oceanexpert.org/expert/47897 -https://www.oceanexpert.org/expert/19545 -https://www.oceanexpert.org/institution/14417 -https://www.oceanexpert.org/expert/7510 -https://www.oceanexpert.org/expert/22961 -https://www.oceanexpert.org/expert/26404 -https://www.oceanexpert.org/expert/28213 -https://www.oceanexpert.org/expert/26492 -https://www.oceanexpert.org/expert/32201 -https://www.oceanexpert.org/expert/33268 -https://www.oceanexpert.org/expert/42414 -https://www.oceanexpert.org/expert/12280 -https://www.oceanexpert.org/expert/23694 -https://www.oceanexpert.org/expert/48819 -https://www.oceanexpert.org/institution/20948 -https://www.oceanexpert.org/event/2698 -https://www.oceanexpert.org/expert/32178 -https://www.oceanexpert.org/expert/36351 -https://www.oceanexpert.org/expert/18869 -https://www.oceanexpert.org/expert/20836 -https://www.oceanexpert.org/institution/20733 -https://www.oceanexpert.org/expert/31945 -https://www.oceanexpert.org/expert/28376 -https://www.oceanexpert.org/institution/20080 -https://www.oceanexpert.org/expert/46774 -https://www.oceanexpert.org/expert/23983 -https://www.oceanexpert.org/expert/18029 -https://www.oceanexpert.org/expert/37843 -https://www.oceanexpert.org/expert/24028 -https://www.oceanexpert.org/expert/28221 -https://www.oceanexpert.org/institution/8848 -https://www.oceanexpert.org/expert/32179 -https://www.oceanexpert.org/institution/19536 -https://www.oceanexpert.org/event/1458 -https://www.oceanexpert.org/expert/42852 -https://www.oceanexpert.org/expert/28122 -https://www.oceanexpert.org/expert/10162 -https://www.oceanexpert.org/expert/7039 -https://www.oceanexpert.org/expert/27168 -https://www.oceanexpert.org/institution/12604 -https://www.oceanexpert.org/institution/19769 -https://www.oceanexpert.org/institution/18785 -https://www.oceanexpert.org/institution/8902 -https://www.oceanexpert.org/institution/10841 -https://www.oceanexpert.org/expert/31738 -https://www.oceanexpert.org/expert/38160 -https://www.oceanexpert.org/event/2646 -https://www.oceanexpert.org/event/1555 -https://www.oceanexpert.org/expert/43882 -https://www.oceanexpert.org/institution/9202 -https://www.oceanexpert.org/expert/24175 -https://www.oceanexpert.org/expert/45809 -https://www.oceanexpert.org/expert/14395 -https://www.oceanexpert.org/expert/13030 -https://www.oceanexpert.org/institution/12294 -https://www.oceanexpert.org/expert/29845 -https://www.oceanexpert.org/event/2064 -https://www.oceanexpert.org/expert/23362 -https://www.oceanexpert.org/expert/48686 -https://www.oceanexpert.org/expert/38281 -https://www.oceanexpert.org/expert/46729 -https://www.oceanexpert.org/expert/20593 -https://www.oceanexpert.org/expert/35825 -https://www.oceanexpert.org/expert/44651 -https://www.oceanexpert.org/institution/18952 -https://www.oceanexpert.org/event/1635 -https://www.oceanexpert.org/expert/37371 -https://www.oceanexpert.org/institution/21244 -https://www.oceanexpert.org/expert/47835 -https://www.oceanexpert.org/event/1482 -https://www.oceanexpert.org/institution/6547 -https://www.oceanexpert.org/expert/8616 -https://www.oceanexpert.org/institution/9622 -https://www.oceanexpert.org/institution/21464 -https://www.oceanexpert.org/expert/44800 -https://www.oceanexpert.org/expert/34698 -https://www.oceanexpert.org/expert/22030 -https://www.oceanexpert.org/expert/24875 -https://www.oceanexpert.org/institution/17667 -https://www.oceanexpert.org/event/3190 -https://www.oceanexpert.org/expert/35182 -https://www.oceanexpert.org/expert/35595 -https://www.oceanexpert.org/expert/44241 -https://www.oceanexpert.org/expert/32532 -https://www.oceanexpert.org/expert/48788 -https://www.oceanexpert.org/event/2781 -https://www.oceanexpert.org/expert/26398 -https://www.oceanexpert.org/expert/13171 -https://www.oceanexpert.org/institution/16419 -https://www.oceanexpert.org/expert/20987 -https://www.oceanexpert.org/expert/32530 -https://www.oceanexpert.org/expert/48789 -https://www.oceanexpert.org/expert/16167 -https://www.oceanexpert.org/expert/15457 -https://www.oceanexpert.org/event/2024 -https://www.oceanexpert.org/expert/19256 -https://www.oceanexpert.org/institution/11693 -https://www.oceanexpert.org/institution/16991 -https://www.oceanexpert.org/expert/20490 -https://www.oceanexpert.org/expert/30667 -https://www.oceanexpert.org/expert/43197 -https://www.oceanexpert.org/expert/46997 -https://www.oceanexpert.org/institution/19491 -https://www.oceanexpert.org/expert/33470 -https://www.oceanexpert.org/expert/46781 -https://www.oceanexpert.org/institution/18160 -https://www.oceanexpert.org/institution/12387 -https://www.oceanexpert.org/institution/13943 -https://www.oceanexpert.org/expert/47210 -https://www.oceanexpert.org/expert/35821 -https://www.oceanexpert.org/expert/46443 -https://www.oceanexpert.org/institution/19502 -https://www.oceanexpert.org/institution/7641 -https://www.oceanexpert.org/expert/23609 -https://www.oceanexpert.org/expert/42690 -https://www.oceanexpert.org/expert/40656 -https://www.oceanexpert.org/institution/20438 -https://www.oceanexpert.org/expert/21163 -https://www.oceanexpert.org/expert/44798 -https://www.oceanexpert.org/expert/44037 -https://www.oceanexpert.org/expert/47417 -https://www.oceanexpert.org/expert/33315 -https://www.oceanexpert.org/expert/43773 -https://www.oceanexpert.org/expert/42412 -https://www.oceanexpert.org/expert/20816 -https://www.oceanexpert.org/event/792 -https://www.oceanexpert.org/expert/25392 -https://www.oceanexpert.org/expert/33747 -https://www.oceanexpert.org/expert/22517 -https://www.oceanexpert.org/expert/47992 -https://www.oceanexpert.org/expert/20884 -https://www.oceanexpert.org/expert/36113 -https://www.oceanexpert.org/expert/46548 -https://www.oceanexpert.org/institution/21133 -https://www.oceanexpert.org/expert/14254 -https://www.oceanexpert.org/expert/10699 -https://www.oceanexpert.org/institution/14206 -https://www.oceanexpert.org/institution/15067 -https://www.oceanexpert.org/expert/29984 -https://www.oceanexpert.org/expert/25131 -https://www.oceanexpert.org/expert/27942 -https://www.oceanexpert.org/expert/45836 -https://www.oceanexpert.org/expert/42495 -https://www.oceanexpert.org/expert/23317 -https://www.oceanexpert.org/expert/5540 -https://www.oceanexpert.org/expert/35894 -https://www.oceanexpert.org/expert/23951 -https://www.oceanexpert.org/expert/37746 -https://www.oceanexpert.org/institution/10762 -https://www.oceanexpert.org/expert/37615 -https://www.oceanexpert.org/expert/42762 -https://www.oceanexpert.org/event/562 -https://www.oceanexpert.org/expert/15058 -https://www.oceanexpert.org/expert/20621 -https://www.oceanexpert.org/expert/22551 -https://www.oceanexpert.org/institution/20661 -https://www.oceanexpert.org/expert/32816 -https://www.oceanexpert.org/expert/25821 -https://www.oceanexpert.org/expert/20416 -https://www.oceanexpert.org/expert/44784 -https://www.oceanexpert.org/expert/37890 -https://www.oceanexpert.org/institution/17911 -https://www.oceanexpert.org/expert/26663 -https://www.oceanexpert.org/institution/11219 -https://www.oceanexpert.org/institution/19440 -https://www.oceanexpert.org/expert/46978 -https://www.oceanexpert.org/expert/25435 -https://www.oceanexpert.org/event/1988 -https://www.oceanexpert.org/expert/3866 -https://www.oceanexpert.org/institution/21158 -https://www.oceanexpert.org/expert/34976 -https://www.oceanexpert.org/event/2699 -https://www.oceanexpert.org/institution/21534 -https://www.oceanexpert.org/expert/33245 -https://www.oceanexpert.org/expert/19736 -https://www.oceanexpert.org/event/2090 -https://www.oceanexpert.org/expert/47172 -https://www.oceanexpert.org/expert/34309 -https://www.oceanexpert.org/expert/23045 -https://www.oceanexpert.org/expert/25371 -https://www.oceanexpert.org/expert/39155 -https://www.oceanexpert.org/expert/36698 -https://www.oceanexpert.org/expert/43027 -https://www.oceanexpert.org/expert/22676 -https://www.oceanexpert.org/institution/21943 -https://www.oceanexpert.org/expert/11741 -https://www.oceanexpert.org/expert/36552 -https://www.oceanexpert.org/expert/24750 -https://www.oceanexpert.org/institution/20343 -https://www.oceanexpert.org/expert/39979 -https://www.oceanexpert.org/expert/48866 -https://www.oceanexpert.org/institution/14751 -https://www.oceanexpert.org/expert/20497 -https://www.oceanexpert.org/expert/20274 -https://www.oceanexpert.org/expert/35123 -https://www.oceanexpert.org/expert/14020 -https://www.oceanexpert.org/expert/44333 -https://www.oceanexpert.org/expert/20719 -https://www.oceanexpert.org/expert/19940 -https://www.oceanexpert.org/expert/36289 -https://www.oceanexpert.org/expert/42698 -https://www.oceanexpert.org/expert/48195 -https://www.oceanexpert.org/expert/7428 -https://www.oceanexpert.org/expert/21532 -https://www.oceanexpert.org/institution/12094 -https://www.oceanexpert.org/expert/34972 -https://www.oceanexpert.org/expert/26306 -https://www.oceanexpert.org/institution/18623 -https://www.oceanexpert.org/event/2014 -https://www.oceanexpert.org/expert/19984 -https://www.oceanexpert.org/institution/8099 -https://www.oceanexpert.org/expert/23970 -https://www.oceanexpert.org/institution/14431 -https://www.oceanexpert.org/expert/36212 -https://www.oceanexpert.org/expert/38401 -https://www.oceanexpert.org/expert/30048 -https://www.oceanexpert.org/expert/38821 -https://www.oceanexpert.org/expert/29834 -https://www.oceanexpert.org/event/1499 -https://www.oceanexpert.org/expert/11763 -https://www.oceanexpert.org/expert/35001 -https://www.oceanexpert.org/institution/18079 -https://www.oceanexpert.org/expert/46389 -https://www.oceanexpert.org/expert/858 -https://www.oceanexpert.org/expert/46337 -https://www.oceanexpert.org/expert/46253 -https://www.oceanexpert.org/expert/48992 -https://www.oceanexpert.org/expert/13703 -https://www.oceanexpert.org/expert/45487 -https://www.oceanexpert.org/expert/26092 -https://www.oceanexpert.org/institution/9609 -https://www.oceanexpert.org/institution/19988 -https://www.oceanexpert.org/expert/19962 -https://www.oceanexpert.org/institution/18618 -https://www.oceanexpert.org/expert/43507 -https://www.oceanexpert.org/expert/23017 -https://www.oceanexpert.org/institution/5357 -https://www.oceanexpert.org/expert/42533 -https://www.oceanexpert.org/expert/2110 -https://www.oceanexpert.org/expert/46163 -https://www.oceanexpert.org/expert/6583 -https://www.oceanexpert.org/expert/35591 -https://www.oceanexpert.org/expert/42915 -https://www.oceanexpert.org/institution/18366 -https://www.oceanexpert.org/expert/18975 -https://www.oceanexpert.org/expert/45828 -https://www.oceanexpert.org/expert/35987 -https://www.oceanexpert.org/expert/14191 -https://www.oceanexpert.org/expert/16169 -https://www.oceanexpert.org/expert/17286 -https://www.oceanexpert.org/expert/20498 -https://www.oceanexpert.org/expert/26940 -https://www.oceanexpert.org/expert/41038 -https://www.oceanexpert.org/expert/39046 -https://www.oceanexpert.org/event/1913 -https://www.oceanexpert.org/event/201 -https://www.oceanexpert.org/institution/11256 -https://www.oceanexpert.org/institution/17038 -https://www.oceanexpert.org/expert/29944 -https://www.oceanexpert.org/expert/15005 -https://www.oceanexpert.org/expert/3784 -https://www.oceanexpert.org/event/526 -https://www.oceanexpert.org/expert/34938 -https://www.oceanexpert.org/expert/17003 -https://www.oceanexpert.org/expert/12941 -https://www.oceanexpert.org/expert/16925 -https://www.oceanexpert.org/event/958 -https://www.oceanexpert.org/institution/13900 -https://www.oceanexpert.org/expert/6428 -https://www.oceanexpert.org/expert/20647 -https://www.oceanexpert.org/institution/16347 -https://www.oceanexpert.org/expert/24036 -https://www.oceanexpert.org/expert/38178 -https://www.oceanexpert.org/institution/19223 -https://www.oceanexpert.org/institution/21568 -https://www.oceanexpert.org/expert/19636 -https://www.oceanexpert.org/expert/28109 -https://www.oceanexpert.org/expert/23714 -https://www.oceanexpert.org/institution/21934 -https://www.oceanexpert.org/expert/32227 -https://www.oceanexpert.org/expert/11268 -https://www.oceanexpert.org/expert/33370 -https://www.oceanexpert.org/expert/47210 -https://www.oceanexpert.org/event/1625 -https://www.oceanexpert.org/event/1513 -https://www.oceanexpert.org/event/1471 -https://www.oceanexpert.org/expert/25161 -https://www.oceanexpert.org/expert/18321 -https://www.oceanexpert.org/event/2606 -https://www.oceanexpert.org/expert/48681 -https://www.oceanexpert.org/expert/48613 -https://www.oceanexpert.org/institution/20242 -https://www.oceanexpert.org/expert/48746 -https://www.oceanexpert.org/expert/16409 -https://www.oceanexpert.org/expert/29009 -https://www.oceanexpert.org/expert/26667 -https://www.oceanexpert.org/expert/19359 -https://www.oceanexpert.org/expert/14895 -https://www.oceanexpert.org/institution/19981 -https://www.oceanexpert.org/expert/11411 -https://www.oceanexpert.org/institution/18864 -https://www.oceanexpert.org/expert/31422 -https://www.oceanexpert.org/institution/20653 -https://www.oceanexpert.org/expert/40852 -https://www.oceanexpert.org/event/2878 -https://www.oceanexpert.org/institution/20857 -https://www.oceanexpert.org/event/876 -https://www.oceanexpert.org/institution/21596 -https://www.oceanexpert.org/expert/31445 -https://www.oceanexpert.org/expert/23466 -https://www.oceanexpert.org/expert/34128 -https://www.oceanexpert.org/expert/35237 -https://www.oceanexpert.org/expert/45079 -https://www.oceanexpert.org/event/2393 -https://www.oceanexpert.org/expert/43364 -https://www.oceanexpert.org/expert/23154 -https://www.oceanexpert.org/institution/12216 -https://www.oceanexpert.org/expert/45814 -https://www.oceanexpert.org/expert/36124 -https://www.oceanexpert.org/expert/1317 -https://www.oceanexpert.org/institution/17232 -https://www.oceanexpert.org/expert/23047 -https://www.oceanexpert.org/expert/13124 -https://www.oceanexpert.org/institution/18917 -https://www.oceanexpert.org/expert/48004 -https://www.oceanexpert.org/institution/20580 -https://www.oceanexpert.org/expert/19419 -https://www.oceanexpert.org/expert/45619 -https://www.oceanexpert.org/institution/5328 -https://www.oceanexpert.org/institution/20659 -https://www.oceanexpert.org/expert/25067 -https://www.oceanexpert.org/event/3296 -https://www.oceanexpert.org/institution/13564 -https://www.oceanexpert.org/expert/7022 -https://www.oceanexpert.org/expert/37845 -https://www.oceanexpert.org/institution/5122 -https://www.oceanexpert.org/event/1764 -https://www.oceanexpert.org/expert/33149 -https://www.oceanexpert.org/event/2819 -https://www.oceanexpert.org/expert/35396 -https://www.oceanexpert.org/expert/38565 -https://www.oceanexpert.org/institution/8162 -https://www.oceanexpert.org/expert/6880 -https://www.oceanexpert.org/expert/46199 -https://www.oceanexpert.org/expert/26813 -https://www.oceanexpert.org/expert/16678 -https://www.oceanexpert.org/institution/18870 -https://www.oceanexpert.org/expert/9585 -https://www.oceanexpert.org/institution/21059 -https://www.oceanexpert.org/expert/23238 -https://www.oceanexpert.org/institution/17339 -https://www.oceanexpert.org/institution/21731 -https://www.oceanexpert.org/expert/27691 -https://www.oceanexpert.org/expert/20283 -https://www.oceanexpert.org/expert/35083 -https://www.oceanexpert.org/institution/18518 -https://www.oceanexpert.org/expert/27489 -https://www.oceanexpert.org/expert/24549 -https://www.oceanexpert.org/expert/47335 -https://www.oceanexpert.org/expert/16386 -https://www.oceanexpert.org/institution/19285 -https://www.oceanexpert.org/expert/29422 -https://www.oceanexpert.org/expert/34141 -https://www.oceanexpert.org/event/3252 -https://www.oceanexpert.org/expert/40534 -https://www.oceanexpert.org/expert/19049 -https://www.oceanexpert.org/expert/34632 -https://www.oceanexpert.org/expert/35052 -https://www.oceanexpert.org/expert/48593 -https://www.oceanexpert.org/expert/24601 -https://www.oceanexpert.org/expert/22803 -https://www.oceanexpert.org/expert/32280 -https://www.oceanexpert.org/institution/18586 -https://www.oceanexpert.org/expert/37058 -https://www.oceanexpert.org/institution/18535 -https://www.oceanexpert.org/expert/37908 -https://www.oceanexpert.org/expert/26579 -https://www.oceanexpert.org/institution/17280 -https://www.oceanexpert.org/event/2097 -https://www.oceanexpert.org/institution/10295 -https://www.oceanexpert.org/expert/27384 -https://www.oceanexpert.org/expert/15963 -https://www.oceanexpert.org/expert/27709 -https://www.oceanexpert.org/institution/11514 -https://www.oceanexpert.org/expert/24698 -https://www.oceanexpert.org/event/869 -https://www.oceanexpert.org/expert/29156 -https://www.oceanexpert.org/event/1077 -https://www.oceanexpert.org/expert/18839 -https://www.oceanexpert.org/institution/21594 -https://www.oceanexpert.org/institution/10444 -https://www.oceanexpert.org/expert/39153 -https://www.oceanexpert.org/expert/12071 -https://www.oceanexpert.org/expert/27218 -https://www.oceanexpert.org/expert/26599 -https://www.oceanexpert.org/institution/17119 -https://www.oceanexpert.org/expert/44311 -https://www.oceanexpert.org/expert/16762 -https://www.oceanexpert.org/expert/16171 -https://www.oceanexpert.org/expert/20182 -https://www.oceanexpert.org/event/1643 -https://www.oceanexpert.org/institution/20797 -https://www.oceanexpert.org/institution/7221 -https://www.oceanexpert.org/expert/36321 -https://www.oceanexpert.org/expert/11924 -https://www.oceanexpert.org/expert/47859 -https://www.oceanexpert.org/expert/6810 -https://www.oceanexpert.org/expert/16138 -https://www.oceanexpert.org/expert/25575 -https://www.oceanexpert.org/institution/18287 -https://www.oceanexpert.org/institution/20523 -https://www.oceanexpert.org/expert/18633 -https://www.oceanexpert.org/expert/42626 -https://www.oceanexpert.org/expert/48050 -https://www.oceanexpert.org/expert/25859 -https://www.oceanexpert.org/expert/36503 -https://www.oceanexpert.org/expert/44328 -https://www.oceanexpert.org/institution/19838 -https://www.oceanexpert.org/expert/20089 -https://www.oceanexpert.org/expert/21853 -https://www.oceanexpert.org/expert/21849 -https://www.oceanexpert.org/expert/16369 -https://www.oceanexpert.org/expert/8068 -https://www.oceanexpert.org/expert/25007 -https://www.oceanexpert.org/expert/38183 -https://www.oceanexpert.org/expert/34436 -https://www.oceanexpert.org/expert/47528 -https://www.oceanexpert.org/institution/8603 -https://www.oceanexpert.org/expert/22244 -https://www.oceanexpert.org/event/1659 -https://www.oceanexpert.org/expert/7179 -https://www.oceanexpert.org/institution/8718 -https://www.oceanexpert.org/expert/47501 -https://www.oceanexpert.org/expert/25005 -https://www.oceanexpert.org/expert/28350 -https://www.oceanexpert.org/event/49 -https://www.oceanexpert.org/expert/20017 -https://www.oceanexpert.org/event/3286 -https://www.oceanexpert.org/expert/29215 -https://www.oceanexpert.org/expert/38375 -https://www.oceanexpert.org/expert/16756 -https://www.oceanexpert.org/institution/18398 -https://www.oceanexpert.org/expert/8858 -https://www.oceanexpert.org/expert/26346 -https://www.oceanexpert.org/event/312 -https://www.oceanexpert.org/institution/16823 -https://www.oceanexpert.org/expert/16872 -https://www.oceanexpert.org/event/225 -https://www.oceanexpert.org/event/1652 -https://www.oceanexpert.org/institution/20644 -https://www.oceanexpert.org/event/1995 -https://www.oceanexpert.org/expert/48919 -https://www.oceanexpert.org/expert/11963 -https://www.oceanexpert.org/expert/8674 -https://www.oceanexpert.org/expert/31723 -https://www.oceanexpert.org/institution/19404 -https://www.oceanexpert.org/event/959 -https://www.oceanexpert.org/expert/23429 -https://www.oceanexpert.org/expert/34441 -https://www.oceanexpert.org/institution/19350 -https://www.oceanexpert.org/expert/26694 -https://www.oceanexpert.org/institution/15765 -https://www.oceanexpert.org/expert/5370 -https://www.oceanexpert.org/expert/37962 -https://www.oceanexpert.org/expert/37067 -https://www.oceanexpert.org/expert/15835 -https://www.oceanexpert.org/expert/8352 -https://www.oceanexpert.org/expert/37300 -https://www.oceanexpert.org/expert/22653 -https://www.oceanexpert.org/expert/35625 -https://www.oceanexpert.org/institution/20049 -https://www.oceanexpert.org/institution/21194 -https://www.oceanexpert.org/institution/18901 -https://www.oceanexpert.org/institution/18355 -https://www.oceanexpert.org/expert/33541 -https://www.oceanexpert.org/expert/21171 -https://www.oceanexpert.org/institution/17456 -https://www.oceanexpert.org/expert/6560 -https://www.oceanexpert.org/expert/47319 -https://www.oceanexpert.org/expert/44293 -https://www.oceanexpert.org/institution/20375 -https://www.oceanexpert.org/institution/18590 -https://www.oceanexpert.org/institution/21776 -https://www.oceanexpert.org/expert/6640 -https://www.oceanexpert.org/institution/13874 -https://www.oceanexpert.org/institution/22103 -https://www.oceanexpert.org/expert/19481 -https://www.oceanexpert.org/institution/20973 -https://www.oceanexpert.org/institution/12497 -https://www.oceanexpert.org/expert/17633 -https://www.oceanexpert.org/institution/12994 -https://www.oceanexpert.org/expert/44444 -https://www.oceanexpert.org/institution/5396 -https://www.oceanexpert.org/expert/20003 -https://www.oceanexpert.org/expert/46656 -https://www.oceanexpert.org/institution/21944 -https://www.oceanexpert.org/expert/34394 -https://www.oceanexpert.org/expert/25416 -https://www.oceanexpert.org/expert/22654 -https://www.oceanexpert.org/expert/21700 -https://www.oceanexpert.org/expert/44679 -https://www.oceanexpert.org/expert/39889 -https://www.oceanexpert.org/event/1590 -https://www.oceanexpert.org/expert/43564 -https://www.oceanexpert.org/expert/26205 -https://www.oceanexpert.org/institution/18083 -https://www.oceanexpert.org/event/3090 -https://www.oceanexpert.org/expert/5064 -https://www.oceanexpert.org/institution/10695 -https://www.oceanexpert.org/institution/18035 -https://www.oceanexpert.org/expert/27709 -https://www.oceanexpert.org/expert/22515 -https://www.oceanexpert.org/institution/20196 -https://www.oceanexpert.org/institution/22138 -https://www.oceanexpert.org/expert/19738 -https://www.oceanexpert.org/expert/35155 -https://www.oceanexpert.org/expert/48902 -https://www.oceanexpert.org/expert/18044 -https://www.oceanexpert.org/expert/46019 -https://www.oceanexpert.org/expert/37939 -https://www.oceanexpert.org/expert/22498 -https://www.oceanexpert.org/expert/29488 -https://www.oceanexpert.org/expert/17129 -https://www.oceanexpert.org/expert/16044 -https://www.oceanexpert.org/event/1105 -https://www.oceanexpert.org/expert/44795 -https://www.oceanexpert.org/expert/45155 -https://www.oceanexpert.org/expert/16479 -https://www.oceanexpert.org/expert/20601 -https://www.oceanexpert.org/expert/48234 -https://www.oceanexpert.org/expert/27438 -https://www.oceanexpert.org/expert/25358 -https://www.oceanexpert.org/event/3172 -https://www.oceanexpert.org/expert/30103 -https://www.oceanexpert.org/expert/43339 -https://www.oceanexpert.org/event/536 -https://www.oceanexpert.org/expert/44430 -https://www.oceanexpert.org/institution/7280 -https://www.oceanexpert.org/expert/19650 -https://www.oceanexpert.org/expert/7379 -https://www.oceanexpert.org/expert/47146 -https://www.oceanexpert.org/institution/16315 -https://www.oceanexpert.org/expert/44517 -https://www.oceanexpert.org/expert/29594 -https://www.oceanexpert.org/expert/29670 -https://www.oceanexpert.org/expert/17418 -https://www.oceanexpert.org/expert/18810 -https://www.oceanexpert.org/event/1844 -https://www.oceanexpert.org/institution/6161 -https://www.oceanexpert.org/institution/19677 -https://www.oceanexpert.org/institution/12195 -https://www.oceanexpert.org/expert/23138 -https://www.oceanexpert.org/expert/22324 -https://www.oceanexpert.org/institution/19139 -https://www.oceanexpert.org/expert/45434 -https://www.oceanexpert.org/institution/7592 -https://www.oceanexpert.org/expert/48300 -https://www.oceanexpert.org/expert/38899 -https://www.oceanexpert.org/expert/6771 -https://www.oceanexpert.org/expert/35602 -https://www.oceanexpert.org/expert/31013 -https://www.oceanexpert.org/institution/21249 -https://www.oceanexpert.org/expert/42577 -https://www.oceanexpert.org/expert/44739 -https://www.oceanexpert.org/expert/41505 -https://www.oceanexpert.org/expert/31736 -https://www.oceanexpert.org/expert/26638 -https://www.oceanexpert.org/expert/24658 -https://www.oceanexpert.org/expert/45685 -https://www.oceanexpert.org/institution/14388 -https://www.oceanexpert.org/event/1454 -https://www.oceanexpert.org/expert/32746 -https://www.oceanexpert.org/expert/13031 -https://www.oceanexpert.org/expert/35944 -https://www.oceanexpert.org/expert/25933 -https://www.oceanexpert.org/expert/15103 -https://www.oceanexpert.org/expert/37564 -https://www.oceanexpert.org/expert/48041 -https://www.oceanexpert.org/expert/32576 -https://www.oceanexpert.org/institution/14684 -https://www.oceanexpert.org/expert/47263 -https://www.oceanexpert.org/expert/23059 -https://www.oceanexpert.org/institution/20211 -https://www.oceanexpert.org/expert/45137 -https://www.oceanexpert.org/expert/22291 -https://www.oceanexpert.org/institution/18665 -https://www.oceanexpert.org/expert/33242 -https://www.oceanexpert.org/event/772 -https://www.oceanexpert.org/expert/22080 -https://www.oceanexpert.org/expert/36519 -https://www.oceanexpert.org/event/2677 -https://www.oceanexpert.org/expert/31559 -https://www.oceanexpert.org/event/1766 -https://www.oceanexpert.org/expert/21755 -https://www.oceanexpert.org/expert/30841 -https://www.oceanexpert.org/expert/5622 -https://www.oceanexpert.org/event/1004 -https://www.oceanexpert.org/institution/19786 -https://www.oceanexpert.org/expert/34494 -https://www.oceanexpert.org/institution/14280 -https://www.oceanexpert.org/institution/9091 -https://www.oceanexpert.org/institution/20058 -https://www.oceanexpert.org/event/1936 -https://www.oceanexpert.org/institution/16315 -https://www.oceanexpert.org/expert/14696 -https://www.oceanexpert.org/expert/7102 -https://www.oceanexpert.org/expert/43289 -https://www.oceanexpert.org/expert/25569 -https://www.oceanexpert.org/expert/24461 -https://www.oceanexpert.org/expert/36407 -https://www.oceanexpert.org/institution/6766 -https://www.oceanexpert.org/expert/22013 -https://www.oceanexpert.org/expert/35062 -https://www.oceanexpert.org/expert/25091 -https://www.oceanexpert.org/expert/36860 -https://www.oceanexpert.org/expert/32326 -https://www.oceanexpert.org/expert/23970 -https://www.oceanexpert.org/expert/29481 -https://www.oceanexpert.org/expert/15983 -https://www.oceanexpert.org/event/1002 -https://www.oceanexpert.org/expert/49074 -https://www.oceanexpert.org/expert/24529 -https://www.oceanexpert.org/expert/27939 -https://www.oceanexpert.org/expert/4540 -https://www.oceanexpert.org/expert/34395 -https://www.oceanexpert.org/institution/12185 -https://www.oceanexpert.org/expert/7104 -https://www.oceanexpert.org/expert/288 -https://www.oceanexpert.org/expert/11072 -https://www.oceanexpert.org/expert/38627 -https://www.oceanexpert.org/expert/39266 -https://www.oceanexpert.org/expert/24773 -https://www.oceanexpert.org/expert/42643 -https://www.oceanexpert.org/expert/20078 -https://www.oceanexpert.org/expert/35139 -https://www.oceanexpert.org/expert/20928 -https://www.oceanexpert.org/expert/45910 -https://www.oceanexpert.org/institution/18110 -https://www.oceanexpert.org/expert/47471 -https://www.oceanexpert.org/institution/21891 -https://www.oceanexpert.org/expert/35579 -https://www.oceanexpert.org/expert/47182 -https://www.oceanexpert.org/expert/22253 -https://www.oceanexpert.org/expert/14770 -https://www.oceanexpert.org/expert/27081 -https://www.oceanexpert.org/institution/5242 -https://www.oceanexpert.org/expert/26650 -https://www.oceanexpert.org/expert/39002 -https://www.oceanexpert.org/institution/11132 -https://www.oceanexpert.org/expert/32803 -https://www.oceanexpert.org/expert/29205 -https://www.oceanexpert.org/institution/16692 -https://www.oceanexpert.org/institution/18862 -https://www.oceanexpert.org/institution/20775 -https://www.oceanexpert.org/expert/21842 -https://www.oceanexpert.org/institution/22126 -https://www.oceanexpert.org/expert/45660 -https://www.oceanexpert.org/expert/30958 -https://www.oceanexpert.org/event/1522 -https://www.oceanexpert.org/expert/26211 -https://www.oceanexpert.org/expert/13238 -https://www.oceanexpert.org/expert/25057 -https://www.oceanexpert.org/expert/14050 -https://www.oceanexpert.org/institution/21692 -https://www.oceanexpert.org/institution/20639 -https://www.oceanexpert.org/expert/38489 -https://www.oceanexpert.org/expert/17789 -https://www.oceanexpert.org/expert/27255 -https://www.oceanexpert.org/expert/27251 -https://www.oceanexpert.org/expert/25476 -https://www.oceanexpert.org/expert/30811 -https://www.oceanexpert.org/expert/45935 -https://www.oceanexpert.org/expert/23061 -https://www.oceanexpert.org/expert/21988 -https://www.oceanexpert.org/expert/47834 -https://www.oceanexpert.org/institution/21290 -https://www.oceanexpert.org/institution/17865 -https://www.oceanexpert.org/event/1861 -https://www.oceanexpert.org/expert/37871 -https://www.oceanexpert.org/institution/18061 -https://www.oceanexpert.org/event/1845 -https://www.oceanexpert.org/expert/47113 -https://www.oceanexpert.org/event/593 -https://www.oceanexpert.org/institution/22112 -https://www.oceanexpert.org/event/2816 -https://www.oceanexpert.org/expert/43176 -https://www.oceanexpert.org/expert/750 -https://www.oceanexpert.org/institution/9605 -https://www.oceanexpert.org/institution/21846 -https://www.oceanexpert.org/event/1995 -https://www.oceanexpert.org/institution/18402 -https://www.oceanexpert.org/expert/31182 -https://www.oceanexpert.org/expert/43291 -https://www.oceanexpert.org/expert/38387 -https://www.oceanexpert.org/expert/47150 -https://www.oceanexpert.org/expert/42897 -https://www.oceanexpert.org/expert/18962 -https://www.oceanexpert.org/expert/25391 -https://www.oceanexpert.org/institution/16784 -https://www.oceanexpert.org/event/2867 -https://www.oceanexpert.org/institution/13900 -https://www.oceanexpert.org/expert/47843 -https://www.oceanexpert.org/expert/18617 -https://www.oceanexpert.org/expert/48459 -https://www.oceanexpert.org/expert/11951 -https://www.oceanexpert.org/expert/47621 -https://www.oceanexpert.org/expert/20590 -https://www.oceanexpert.org/expert/27459 -https://www.oceanexpert.org/expert/45172 -https://www.oceanexpert.org/institution/18415 -https://www.oceanexpert.org/expert/16711 -https://www.oceanexpert.org/expert/32888 -https://www.oceanexpert.org/event/367 -https://www.oceanexpert.org/institution/20527 -https://www.oceanexpert.org/institution/18558 -https://www.oceanexpert.org/event/1344 -https://www.oceanexpert.org/expert/17351 -https://www.oceanexpert.org/expert/26455 -https://www.oceanexpert.org/event/1577 -https://www.oceanexpert.org/expert/32757 -https://www.oceanexpert.org/institution/19566 -https://www.oceanexpert.org/expert/36868 -https://www.oceanexpert.org/institution/20842 -https://www.oceanexpert.org/expert/39257 -https://www.oceanexpert.org/expert/28358 -https://www.oceanexpert.org/event/491 -https://www.oceanexpert.org/institution/19289 -https://www.oceanexpert.org/event/2556 -https://www.oceanexpert.org/expert/45058 -https://www.oceanexpert.org/expert/22974 -https://www.oceanexpert.org/expert/17199 -https://www.oceanexpert.org/institution/10747 -https://www.oceanexpert.org/expert/37462 -https://www.oceanexpert.org/expert/18495 -https://www.oceanexpert.org/expert/26831 -https://www.oceanexpert.org/expert/45897 -https://www.oceanexpert.org/expert/24788 -https://www.oceanexpert.org/expert/6489 -https://www.oceanexpert.org/event/1734 -https://www.oceanexpert.org/institution/14249 -https://www.oceanexpert.org/expert/8007 -https://www.oceanexpert.org/expert/37140 -https://www.oceanexpert.org/expert/27327 -https://www.oceanexpert.org/expert/20048 -https://www.oceanexpert.org/event/1608 -https://www.oceanexpert.org/expert/16025 -https://www.oceanexpert.org/expert/30821 -https://www.oceanexpert.org/expert/47032 -https://www.oceanexpert.org/expert/31291 -https://www.oceanexpert.org/institution/20822 -https://www.oceanexpert.org/event/1812 -https://www.oceanexpert.org/institution/13239 -https://www.oceanexpert.org/expert/48183 -https://www.oceanexpert.org/expert/6520 -https://www.oceanexpert.org/expert/44333 -https://www.oceanexpert.org/expert/24714 -https://www.oceanexpert.org/expert/44059 -https://www.oceanexpert.org/expert/22563 -https://www.oceanexpert.org/expert/19010 -https://www.oceanexpert.org/institution/7979 -https://www.oceanexpert.org/institution/21916 -https://www.oceanexpert.org/event/120 -https://www.oceanexpert.org/institution/18944 -https://www.oceanexpert.org/institution/6639 -https://www.oceanexpert.org/expert/40314 -https://www.oceanexpert.org/expert/15549 -https://www.oceanexpert.org/institution/14383 -https://www.oceanexpert.org/expert/13747 -https://www.oceanexpert.org/institution/18016 -https://www.oceanexpert.org/expert/47283 -https://www.oceanexpert.org/expert/38115 -https://www.oceanexpert.org/event/2212 -https://www.oceanexpert.org/expert/26636 -https://www.oceanexpert.org/expert/17528 -https://www.oceanexpert.org/expert/44818 -https://www.oceanexpert.org/event/111 -https://www.oceanexpert.org/institution/15492 -https://www.oceanexpert.org/institution/5605 -https://www.oceanexpert.org/institution/10526 -https://www.oceanexpert.org/expert/18526 -https://www.oceanexpert.org/expert/31055 -https://www.oceanexpert.org/expert/44925 -https://www.oceanexpert.org/institution/21153 -https://www.oceanexpert.org/expert/22887 -https://www.oceanexpert.org/event/3292 -https://www.oceanexpert.org/expert/29121 -https://www.oceanexpert.org/institution/11010 -https://www.oceanexpert.org/expert/47356 -https://www.oceanexpert.org/expert/38903 -https://www.oceanexpert.org/expert/29908 -https://www.oceanexpert.org/expert/3866 -https://www.oceanexpert.org/event/1126 -https://www.oceanexpert.org/expert/46788 -https://www.oceanexpert.org/expert/38283 -https://www.oceanexpert.org/expert/46817 -https://www.oceanexpert.org/expert/29452 -https://www.oceanexpert.org/institution/11987 -https://www.oceanexpert.org/event/2962 -https://www.oceanexpert.org/institution/18845 -https://www.oceanexpert.org/institution/22025 -https://www.oceanexpert.org/institution/19493 -https://www.oceanexpert.org/expert/39029 -https://www.oceanexpert.org/expert/26479 -https://www.oceanexpert.org/expert/45547 -https://www.oceanexpert.org/expert/45647 -https://www.oceanexpert.org/expert/8423 -https://www.oceanexpert.org/expert/16696 -https://www.oceanexpert.org/expert/15541 -https://www.oceanexpert.org/expert/43592 -https://www.oceanexpert.org/event/2777 -https://www.oceanexpert.org/expert/33948 -https://www.oceanexpert.org/expert/9389 -https://www.oceanexpert.org/institution/19691 -https://www.oceanexpert.org/expert/25175 -https://www.oceanexpert.org/institution/16740 -https://www.oceanexpert.org/institution/16012 -https://www.oceanexpert.org/expert/31225 -https://www.oceanexpert.org/expert/27157 -https://www.oceanexpert.org/expert/23783 -https://www.oceanexpert.org/institution/18060 -https://www.oceanexpert.org/expert/25673 -https://www.oceanexpert.org/expert/19338 -https://www.oceanexpert.org/institution/21141 -https://www.oceanexpert.org/expert/46151 -https://www.oceanexpert.org/expert/46968 -https://www.oceanexpert.org/expert/19086 -https://www.oceanexpert.org/institution/10664 -https://www.oceanexpert.org/expert/46672 -https://www.oceanexpert.org/expert/28077 -https://www.oceanexpert.org/institution/8090 -https://www.oceanexpert.org/event/2220 -https://www.oceanexpert.org/expert/24420 -https://www.oceanexpert.org/institution/18192 -https://www.oceanexpert.org/expert/14429 -https://www.oceanexpert.org/expert/48617 -https://www.oceanexpert.org/expert/25169 -https://www.oceanexpert.org/expert/22790 -https://www.oceanexpert.org/expert/28192 -https://www.oceanexpert.org/expert/35472 -https://www.oceanexpert.org/expert/24582 -https://www.oceanexpert.org/institution/17412 -https://www.oceanexpert.org/expert/24160 -https://www.oceanexpert.org/expert/28158 -https://www.oceanexpert.org/event/929 -https://www.oceanexpert.org/expert/24091 -https://www.oceanexpert.org/expert/4420 -https://www.oceanexpert.org/institution/21206 -https://www.oceanexpert.org/expert/37727 -https://www.oceanexpert.org/institution/15490 -https://www.oceanexpert.org/expert/23434 -https://www.oceanexpert.org/institution/14598 -https://www.oceanexpert.org/institution/15823 -https://www.oceanexpert.org/institution/17057 -https://www.oceanexpert.org/expert/22863 -https://www.oceanexpert.org/expert/35108 -https://www.oceanexpert.org/expert/26826 -https://www.oceanexpert.org/institution/20891 -https://www.oceanexpert.org/expert/29125 -https://www.oceanexpert.org/institution/9377 -https://www.oceanexpert.org/expert/31651 -https://www.oceanexpert.org/expert/47095 -https://www.oceanexpert.org/institution/20289 -https://www.oceanexpert.org/event/1974 -https://www.oceanexpert.org/expert/37811 -https://www.oceanexpert.org/institution/19652 -https://www.oceanexpert.org/expert/17106 -https://www.oceanexpert.org/institution/16739 -https://www.oceanexpert.org/expert/27405 -https://www.oceanexpert.org/institution/9499 -https://www.oceanexpert.org/expert/24838 -https://www.oceanexpert.org/institution/14654 -https://www.oceanexpert.org/expert/44544 -https://www.oceanexpert.org/institution/21900 -https://www.oceanexpert.org/expert/11168 -https://www.oceanexpert.org/institution/10747 -https://www.oceanexpert.org/institution/18225 -https://www.oceanexpert.org/expert/16380 -https://www.oceanexpert.org/institution/12837 -https://www.oceanexpert.org/expert/17335 -https://www.oceanexpert.org/institution/19609 -https://www.oceanexpert.org/institution/21327 -https://www.oceanexpert.org/expert/11790 -https://www.oceanexpert.org/expert/49018 -https://www.oceanexpert.org/expert/44160 -https://www.oceanexpert.org/expert/16659 -https://www.oceanexpert.org/expert/26769 -https://www.oceanexpert.org/event/1227 -https://www.oceanexpert.org/expert/12956 -https://www.oceanexpert.org/expert/27199 -https://www.oceanexpert.org/event/1631 -https://www.oceanexpert.org/expert/48462 -https://www.oceanexpert.org/event/152 -https://www.oceanexpert.org/expert/24174 -https://www.oceanexpert.org/institution/19616 -https://www.oceanexpert.org/institution/18224 -https://www.oceanexpert.org/expert/23623 -https://www.oceanexpert.org/expert/22524 -https://www.oceanexpert.org/expert/44226 -https://www.oceanexpert.org/expert/17256 -https://www.oceanexpert.org/institution/19862 -https://www.oceanexpert.org/expert/23756 -https://www.oceanexpert.org/expert/44715 -https://www.oceanexpert.org/expert/32827 -https://www.oceanexpert.org/expert/45289 -https://www.oceanexpert.org/institution/6763 -https://www.oceanexpert.org/expert/17497 -https://www.oceanexpert.org/expert/27109 -https://www.oceanexpert.org/expert/36373 -https://www.oceanexpert.org/expert/13642 -https://www.oceanexpert.org/institution/21934 -https://www.oceanexpert.org/institution/17903 -https://www.oceanexpert.org/institution/19975 -https://www.oceanexpert.org/institution/16351 -https://www.oceanexpert.org/expert/27334 -https://www.oceanexpert.org/expert/47116 -https://www.oceanexpert.org/expert/18052 -https://www.oceanexpert.org/expert/12619 -https://www.oceanexpert.org/event/2822 -https://www.oceanexpert.org/expert/40643 -https://www.oceanexpert.org/expert/35950 -https://www.oceanexpert.org/expert/24678 -https://www.oceanexpert.org/expert/37310 -https://www.oceanexpert.org/expert/18569 -https://www.oceanexpert.org/expert/27184 -https://www.oceanexpert.org/expert/5544 -https://www.oceanexpert.org/institution/19731 -https://www.oceanexpert.org/institution/17370 -https://www.oceanexpert.org/expert/38101 -https://www.oceanexpert.org/event/242 -https://www.oceanexpert.org/expert/34980 -https://www.oceanexpert.org/expert/8697 -https://www.oceanexpert.org/institution/12545 -https://www.oceanexpert.org/expert/7192 -https://www.oceanexpert.org/expert/38757 -https://www.oceanexpert.org/institution/19968 -https://www.oceanexpert.org/expert/20471 -https://www.oceanexpert.org/expert/48046 -https://www.oceanexpert.org/expert/19951 -https://www.oceanexpert.org/expert/37715 -https://www.oceanexpert.org/institution/18590 -https://www.oceanexpert.org/institution/19282 -https://www.oceanexpert.org/institution/14582 -https://www.oceanexpert.org/expert/36485 -https://www.oceanexpert.org/expert/15720 -https://www.oceanexpert.org/expert/44885 -https://www.oceanexpert.org/expert/48293 -https://www.oceanexpert.org/institution/21847 -https://www.oceanexpert.org/expert/24929 -https://www.oceanexpert.org/expert/35406 -https://www.oceanexpert.org/institution/21925 -https://www.oceanexpert.org/event/3078 -https://www.oceanexpert.org/expert/20531 -https://www.oceanexpert.org/institution/20788 -https://www.oceanexpert.org/expert/23483 -https://www.oceanexpert.org/institution/17901 -https://www.oceanexpert.org/event/2181 -https://www.oceanexpert.org/expert/4121 -https://www.oceanexpert.org/expert/43407 -https://www.oceanexpert.org/institution/18004 -https://www.oceanexpert.org/event/3024 -https://www.oceanexpert.org/expert/31865 -https://www.oceanexpert.org/event/3240 -https://www.oceanexpert.org/expert/34965 -https://www.oceanexpert.org/expert/44583 -https://www.oceanexpert.org/expert/25979 -https://www.oceanexpert.org/expert/26371 -https://www.oceanexpert.org/expert/37988 -https://www.oceanexpert.org/institution/16875 -https://www.oceanexpert.org/expert/13391 -https://www.oceanexpert.org/expert/28984 -https://www.oceanexpert.org/expert/11320 -https://www.oceanexpert.org/expert/24822 -https://www.oceanexpert.org/institution/18630 -https://www.oceanexpert.org/expert/27000 -https://www.oceanexpert.org/institution/8732 -https://www.oceanexpert.org/expert/22224 -https://www.oceanexpert.org/institution/7562 -https://www.oceanexpert.org/expert/39830 -https://www.oceanexpert.org/expert/21070 -https://www.oceanexpert.org/expert/34995 -https://www.oceanexpert.org/expert/29436 -https://www.oceanexpert.org/expert/25458 -https://www.oceanexpert.org/expert/6446 -https://www.oceanexpert.org/expert/18495 -https://www.oceanexpert.org/institution/19498 -https://www.oceanexpert.org/institution/20733 -https://www.oceanexpert.org/expert/13748 -https://www.oceanexpert.org/expert/43569 -https://www.oceanexpert.org/event/401 -https://www.oceanexpert.org/expert/48317 -https://www.oceanexpert.org/expert/14739 -https://www.oceanexpert.org/expert/32345 -https://www.oceanexpert.org/institution/15218 -https://www.oceanexpert.org/expert/22270 -https://www.oceanexpert.org/expert/45086 -https://www.oceanexpert.org/expert/36570 -https://www.oceanexpert.org/expert/20719 -https://www.oceanexpert.org/expert/40599 -https://www.oceanexpert.org/expert/26206 -https://www.oceanexpert.org/event/1034 -https://www.oceanexpert.org/expert/47702 -https://www.oceanexpert.org/expert/2657 -https://www.oceanexpert.org/institution/13842 -https://www.oceanexpert.org/institution/18336 -https://www.oceanexpert.org/institution/17192 -https://www.oceanexpert.org/expert/24556 -https://www.oceanexpert.org/expert/46651 -https://www.oceanexpert.org/expert/24934 -https://www.oceanexpert.org/institution/13199 -https://www.oceanexpert.org/expert/18929 -https://www.oceanexpert.org/institution/16016 -https://www.oceanexpert.org/event/240 -https://www.oceanexpert.org/expert/19795 -https://www.oceanexpert.org/expert/30837 -https://www.oceanexpert.org/expert/15739 -https://www.oceanexpert.org/expert/20141 -https://www.oceanexpert.org/institution/19569 -https://www.oceanexpert.org/expert/33243 -https://www.oceanexpert.org/expert/24909 -https://www.oceanexpert.org/institution/21264 -https://www.oceanexpert.org/expert/48184 -https://www.oceanexpert.org/expert/6514 -https://www.oceanexpert.org/expert/42918 -https://www.oceanexpert.org/expert/22309 -https://www.oceanexpert.org/expert/21892 -https://www.oceanexpert.org/institution/12923 -https://www.oceanexpert.org/expert/6832 -https://www.oceanexpert.org/expert/44738 -https://www.oceanexpert.org/expert/35105 -https://www.oceanexpert.org/expert/22695 -https://www.oceanexpert.org/expert/35239 -https://www.oceanexpert.org/expert/16043 -https://www.oceanexpert.org/expert/24792 -https://www.oceanexpert.org/institution/20360 -https://www.oceanexpert.org/expert/16901 -https://www.oceanexpert.org/event/359 -https://www.oceanexpert.org/expert/36622 -https://www.oceanexpert.org/expert/37128 -https://www.oceanexpert.org/expert/36615 -https://www.oceanexpert.org/expert/42550 -https://www.oceanexpert.org/expert/28157 -https://www.oceanexpert.org/expert/32812 -https://www.oceanexpert.org/expert/17420 -https://www.oceanexpert.org/expert/25276 -https://www.oceanexpert.org/expert/19913 -https://www.oceanexpert.org/institution/21215 -https://www.oceanexpert.org/expert/43705 -https://www.oceanexpert.org/expert/24122 -https://www.oceanexpert.org/institution/22053 -https://www.oceanexpert.org/institution/11691 -https://www.oceanexpert.org/institution/19797 -https://www.oceanexpert.org/expert/44502 -https://www.oceanexpert.org/expert/26041 -https://www.oceanexpert.org/institution/19169 -https://www.oceanexpert.org/expert/44999 -https://www.oceanexpert.org/institution/22155 -https://www.oceanexpert.org/expert/42636 -https://www.oceanexpert.org/expert/17363 -https://www.oceanexpert.org/expert/6940 -https://www.oceanexpert.org/expert/48263 -https://www.oceanexpert.org/expert/19797 -https://www.oceanexpert.org/institution/20937 -https://www.oceanexpert.org/expert/36113 -https://www.oceanexpert.org/institution/20379 -https://www.oceanexpert.org/expert/8706 -https://www.oceanexpert.org/institution/8244 -https://www.oceanexpert.org/expert/23509 -https://www.oceanexpert.org/expert/21634 -https://www.oceanexpert.org/expert/17724 -https://www.oceanexpert.org/institution/21144 -https://www.oceanexpert.org/expert/48052 -https://www.oceanexpert.org/expert/30946 -https://www.oceanexpert.org/expert/42628 -https://www.oceanexpert.org/expert/8400 -https://www.oceanexpert.org/expert/44102 -https://www.oceanexpert.org/expert/29540 -https://www.oceanexpert.org/expert/29882 -https://www.oceanexpert.org/expert/46952 -https://www.oceanexpert.org/expert/11191 -https://www.oceanexpert.org/expert/15847 -https://www.oceanexpert.org/expert/44572 -https://www.oceanexpert.org/institution/14955 -https://www.oceanexpert.org/expert/34783 -https://www.oceanexpert.org/expert/31777 -https://www.oceanexpert.org/expert/19764 -https://www.oceanexpert.org/institution/21414 -https://www.oceanexpert.org/expert/35705 -https://www.oceanexpert.org/institution/13920 -https://www.oceanexpert.org/expert/26332 -https://www.oceanexpert.org/expert/38355 -https://www.oceanexpert.org/institution/18480 -https://www.oceanexpert.org/institution/18505 -https://www.oceanexpert.org/event/149 -https://www.oceanexpert.org/expert/47255 -https://www.oceanexpert.org/institution/21731 -https://www.oceanexpert.org/expert/32583 -https://www.oceanexpert.org/expert/17409 -https://www.oceanexpert.org/expert/9510 -https://www.oceanexpert.org/expert/48881 -https://www.oceanexpert.org/institution/22154 -https://www.oceanexpert.org/institution/21336 -https://www.oceanexpert.org/expert/20927 -https://www.oceanexpert.org/institution/16709 -https://www.oceanexpert.org/expert/46223 -https://www.oceanexpert.org/expert/34381 -https://www.oceanexpert.org/expert/22262 -https://www.oceanexpert.org/expert/36193 -https://www.oceanexpert.org/event/1363 -https://www.oceanexpert.org/expert/7426 -https://www.oceanexpert.org/expert/29922 -https://www.oceanexpert.org/expert/42935 -https://www.oceanexpert.org/expert/48882 -https://www.oceanexpert.org/institution/20909 -https://www.oceanexpert.org/event/226 -https://www.oceanexpert.org/institution/17615 -https://www.oceanexpert.org/institution/6649 -https://www.oceanexpert.org/institution/20150 -https://www.oceanexpert.org/expert/25970 -https://www.oceanexpert.org/institution/21521 -https://www.oceanexpert.org/institution/19988 -https://www.oceanexpert.org/expert/47568 -https://www.oceanexpert.org/expert/24564 -https://www.oceanexpert.org/event/1806 -https://www.oceanexpert.org/institution/13199 -https://www.oceanexpert.org/institution/13845 -https://www.oceanexpert.org/institution/12878 -https://www.oceanexpert.org/institution/20332 -https://www.oceanexpert.org/institution/14246 -https://www.oceanexpert.org/expert/26335 -https://www.oceanexpert.org/expert/16989 -https://www.oceanexpert.org/expert/18244 -https://www.oceanexpert.org/expert/44402 -https://www.oceanexpert.org/institution/18947 -https://www.oceanexpert.org/expert/30776 -https://www.oceanexpert.org/expert/34960 -https://www.oceanexpert.org/expert/36784 -https://www.oceanexpert.org/expert/33620 -https://www.oceanexpert.org/event/2029 -https://www.oceanexpert.org/expert/21120 -https://www.oceanexpert.org/event/1252 -https://www.oceanexpert.org/expert/6187 -https://www.oceanexpert.org/expert/24139 -https://www.oceanexpert.org/expert/43123 -https://www.oceanexpert.org/institution/14280 -https://www.oceanexpert.org/expert/17741 -https://www.oceanexpert.org/event/440 -https://www.oceanexpert.org/expert/43466 -https://www.oceanexpert.org/institution/13627 -https://www.oceanexpert.org/expert/18993 -https://www.oceanexpert.org/expert/42684 -https://www.oceanexpert.org/event/1208 -https://www.oceanexpert.org/institution/9824 -https://www.oceanexpert.org/institution/20117 -https://www.oceanexpert.org/expert/42756 -https://www.oceanexpert.org/institution/15080 -https://www.oceanexpert.org/expert/24028 -https://www.oceanexpert.org/expert/30376 -https://www.oceanexpert.org/expert/20991 -https://www.oceanexpert.org/expert/20955 -https://www.oceanexpert.org/institution/13410 -https://www.oceanexpert.org/expert/35038 -https://www.oceanexpert.org/institution/21849 -https://www.oceanexpert.org/expert/24232 -https://www.oceanexpert.org/expert/10851 -https://www.oceanexpert.org/expert/38468 -https://www.oceanexpert.org/expert/29487 -https://www.oceanexpert.org/expert/19385 -https://www.oceanexpert.org/institution/5277 -https://www.oceanexpert.org/expert/26334 -https://www.oceanexpert.org/institution/19659 -https://www.oceanexpert.org/expert/43899 -https://www.oceanexpert.org/expert/32988 -https://www.oceanexpert.org/expert/22581 -https://www.oceanexpert.org/expert/47241 -https://www.oceanexpert.org/institution/18490 -https://www.oceanexpert.org/expert/47243 -https://www.oceanexpert.org/institution/20919 -https://www.oceanexpert.org/expert/37466 -https://www.oceanexpert.org/expert/18551 -https://www.oceanexpert.org/expert/19823 -https://www.oceanexpert.org/expert/37839 -https://www.oceanexpert.org/expert/16602 -https://www.oceanexpert.org/institution/21188 -https://www.oceanexpert.org/expert/26114 -https://www.oceanexpert.org/expert/36601 -https://www.oceanexpert.org/event/2004 -https://www.oceanexpert.org/institution/7213 -https://www.oceanexpert.org/institution/19364 -https://www.oceanexpert.org/expert/37090 -https://www.oceanexpert.org/expert/27394 -https://www.oceanexpert.org/expert/20490 -https://www.oceanexpert.org/institution/16284 -https://www.oceanexpert.org/institution/18440 -https://www.oceanexpert.org/expert/38189 -https://www.oceanexpert.org/expert/42469 -https://www.oceanexpert.org/expert/47459 -https://www.oceanexpert.org/expert/43419 -https://www.oceanexpert.org/expert/24279 -https://www.oceanexpert.org/event/3293 -https://www.oceanexpert.org/institution/13925 -https://www.oceanexpert.org/institution/19195 -https://www.oceanexpert.org/expert/7005 -https://www.oceanexpert.org/expert/32323 -https://www.oceanexpert.org/expert/16984 -https://www.oceanexpert.org/expert/30261 -https://www.oceanexpert.org/event/390 -https://www.oceanexpert.org/expert/33656 -https://www.oceanexpert.org/expert/9306 -https://www.oceanexpert.org/expert/35880 -https://www.oceanexpert.org/expert/27664 -https://www.oceanexpert.org/expert/48110 -https://www.oceanexpert.org/expert/38778 -https://www.oceanexpert.org/expert/29317 -https://www.oceanexpert.org/expert/13651 -https://www.oceanexpert.org/expert/2196 -https://www.oceanexpert.org/expert/30586 -https://www.oceanexpert.org/expert/46580 -https://www.oceanexpert.org/expert/15463 -https://www.oceanexpert.org/expert/34766 -https://www.oceanexpert.org/expert/20992 -https://www.oceanexpert.org/institution/11111 -https://www.oceanexpert.org/expert/26610 -https://www.oceanexpert.org/expert/37135 -https://www.oceanexpert.org/event/615 -https://www.oceanexpert.org/expert/17144 -https://www.oceanexpert.org/expert/34853 -https://www.oceanexpert.org/event/3007 -https://www.oceanexpert.org/institution/12655 -https://www.oceanexpert.org/expert/34370 -https://www.oceanexpert.org/event/2642 -https://www.oceanexpert.org/expert/48290 -https://www.oceanexpert.org/institution/21357 -https://www.oceanexpert.org/institution/6544 -https://www.oceanexpert.org/expert/7592 -https://www.oceanexpert.org/institution/14043 -https://www.oceanexpert.org/expert/30204 -https://www.oceanexpert.org/expert/42902 -https://www.oceanexpert.org/event/1829 -https://www.oceanexpert.org/expert/16384 -https://www.oceanexpert.org/expert/36722 -https://www.oceanexpert.org/expert/24483 -https://www.oceanexpert.org/institution/6147 -https://www.oceanexpert.org/expert/24843 -https://www.oceanexpert.org/event/1670 -https://www.oceanexpert.org/institution/18525 -https://www.oceanexpert.org/institution/18380 -https://www.oceanexpert.org/expert/39470 -https://www.oceanexpert.org/institution/15720 -https://www.oceanexpert.org/expert/35456 -https://www.oceanexpert.org/event/1771 -https://www.oceanexpert.org/event/1723 -https://www.oceanexpert.org/expert/4732 -https://www.oceanexpert.org/expert/29078 -https://www.oceanexpert.org/expert/13521 -https://www.oceanexpert.org/expert/25460 -https://www.oceanexpert.org/expert/43631 -https://www.oceanexpert.org/expert/42886 -https://www.oceanexpert.org/expert/11968 -https://www.oceanexpert.org/expert/41318 -https://www.oceanexpert.org/expert/20859 -https://www.oceanexpert.org/event/2350 -https://www.oceanexpert.org/expert/45037 -https://www.oceanexpert.org/expert/43048 -https://www.oceanexpert.org/expert/33316 -https://www.oceanexpert.org/expert/39130 -https://www.oceanexpert.org/expert/38076 -https://www.oceanexpert.org/institution/14750 -https://www.oceanexpert.org/institution/16345 -https://www.oceanexpert.org/expert/21881 -https://www.oceanexpert.org/expert/34691 -https://www.oceanexpert.org/expert/26854 -https://www.oceanexpert.org/expert/43591 -https://www.oceanexpert.org/institution/11068 -https://www.oceanexpert.org/event/3277 -https://www.oceanexpert.org/institution/12692 -https://www.oceanexpert.org/expert/6284 -https://www.oceanexpert.org/expert/49017 -https://www.oceanexpert.org/event/142 -https://www.oceanexpert.org/institution/5576 -https://www.oceanexpert.org/expert/25807 -https://www.oceanexpert.org/expert/32627 -https://www.oceanexpert.org/event/919 -https://www.oceanexpert.org/expert/39828 -https://www.oceanexpert.org/expert/14899 -https://www.oceanexpert.org/institution/13539 -https://www.oceanexpert.org/expert/48293 -https://www.oceanexpert.org/expert/27239 -https://www.oceanexpert.org/expert/18716 -https://www.oceanexpert.org/institution/14492 -https://www.oceanexpert.org/expert/46549 -https://www.oceanexpert.org/expert/24071 -https://www.oceanexpert.org/expert/48928 -https://www.oceanexpert.org/expert/47893 -https://www.oceanexpert.org/expert/19033 -https://www.oceanexpert.org/institution/21521 -https://www.oceanexpert.org/expert/2454 -https://www.oceanexpert.org/institution/20349 -https://www.oceanexpert.org/expert/23351 -https://www.oceanexpert.org/expert/25420 -https://www.oceanexpert.org/event/3265 -https://www.oceanexpert.org/expert/17256 -https://www.oceanexpert.org/institution/17346 -https://www.oceanexpert.org/institution/8616 -https://www.oceanexpert.org/institution/20129 -https://www.oceanexpert.org/event/289 -https://www.oceanexpert.org/expert/14178 -https://www.oceanexpert.org/expert/13426 -https://www.oceanexpert.org/expert/47003 -https://www.oceanexpert.org/expert/44541 -https://www.oceanexpert.org/expert/37363 -https://www.oceanexpert.org/expert/23872 -https://www.oceanexpert.org/expert/13202 -https://www.oceanexpert.org/expert/42304 -https://www.oceanexpert.org/expert/22709 -https://www.oceanexpert.org/expert/12548 -https://www.oceanexpert.org/expert/43680 -https://www.oceanexpert.org/expert/2002 -https://www.oceanexpert.org/institution/11797 -https://www.oceanexpert.org/expert/31155 -https://www.oceanexpert.org/expert/29386 -https://www.oceanexpert.org/expert/43670 -https://www.oceanexpert.org/institution/13484 -https://www.oceanexpert.org/institution/15406 -https://www.oceanexpert.org/expert/18852 -https://www.oceanexpert.org/expert/16712 -https://www.oceanexpert.org/expert/28474 -https://www.oceanexpert.org/expert/18081 -https://www.oceanexpert.org/expert/23483 -https://www.oceanexpert.org/expert/46742 -https://www.oceanexpert.org/expert/38684 -https://www.oceanexpert.org/institution/11017 -https://www.oceanexpert.org/institution/21303 -https://www.oceanexpert.org/expert/23103 -https://www.oceanexpert.org/expert/45703 -https://www.oceanexpert.org/expert/45170 -https://www.oceanexpert.org/expert/30751 -https://www.oceanexpert.org/expert/38116 -https://www.oceanexpert.org/institution/15604 -https://www.oceanexpert.org/institution/13167 -https://www.oceanexpert.org/expert/35243 -https://www.oceanexpert.org/expert/16749 -https://www.oceanexpert.org/expert/32282 -https://www.oceanexpert.org/expert/16789 -https://www.oceanexpert.org/expert/32653 -https://www.oceanexpert.org/institution/15662 -https://www.oceanexpert.org/institution/13300 -https://www.oceanexpert.org/expert/24844 -https://www.oceanexpert.org/expert/27027 -https://www.oceanexpert.org/expert/44962 -https://www.oceanexpert.org/institution/21253 -https://www.oceanexpert.org/institution/18079 -https://www.oceanexpert.org/institution/18060 -https://www.oceanexpert.org/institution/20800 -https://www.oceanexpert.org/event/2823 -https://www.oceanexpert.org/expert/34922 -https://www.oceanexpert.org/event/1032 -https://www.oceanexpert.org/institution/7363 -https://www.oceanexpert.org/expert/24987 -https://www.oceanexpert.org/expert/22690 -https://www.oceanexpert.org/expert/22107 -https://www.oceanexpert.org/expert/44157 -https://www.oceanexpert.org/expert/46710 -https://www.oceanexpert.org/expert/23132 -https://www.oceanexpert.org/expert/26960 -https://www.oceanexpert.org/expert/36375 -https://www.oceanexpert.org/expert/33323 -https://www.oceanexpert.org/expert/21107 -https://www.oceanexpert.org/institution/19122 -https://www.oceanexpert.org/expert/27555 -https://www.oceanexpert.org/institution/20266 -https://www.oceanexpert.org/institution/21534 -https://www.oceanexpert.org/institution/11750 -https://www.oceanexpert.org/institution/21257 -https://www.oceanexpert.org/expert/42580 -https://www.oceanexpert.org/event/818 -https://www.oceanexpert.org/institution/18714 -https://www.oceanexpert.org/expert/14883 -https://www.oceanexpert.org/expert/14122 -https://www.oceanexpert.org/institution/17601 -https://www.oceanexpert.org/institution/5264 -https://www.oceanexpert.org/expert/20960 -https://www.oceanexpert.org/expert/9091 -https://www.oceanexpert.org/event/1131 -https://www.oceanexpert.org/institution/10613 -https://www.oceanexpert.org/expert/46181 -https://www.oceanexpert.org/expert/37002 -https://www.oceanexpert.org/institution/8296 -https://www.oceanexpert.org/expert/37457 -https://www.oceanexpert.org/expert/34502 -https://www.oceanexpert.org/expert/17213 -https://www.oceanexpert.org/expert/6736 -https://www.oceanexpert.org/expert/27521 -https://www.oceanexpert.org/event/122 -https://www.oceanexpert.org/expert/42703 -https://www.oceanexpert.org/expert/25478 -https://www.oceanexpert.org/expert/27161 -https://www.oceanexpert.org/institution/18335 -https://www.oceanexpert.org/expert/32809 -https://www.oceanexpert.org/expert/39884 -https://www.oceanexpert.org/event/1136 -https://www.oceanexpert.org/expert/47878 -https://www.oceanexpert.org/institution/19298 -https://www.oceanexpert.org/event/1413 -https://www.oceanexpert.org/event/2382 -https://www.oceanexpert.org/expert/33811 -https://www.oceanexpert.org/event/1050 -https://www.oceanexpert.org/institution/5459 -https://www.oceanexpert.org/expert/48644 -https://www.oceanexpert.org/expert/17605 -https://www.oceanexpert.org/event/960 -https://www.oceanexpert.org/expert/44973 -https://www.oceanexpert.org/expert/42873 -https://www.oceanexpert.org/expert/34348 -https://www.oceanexpert.org/expert/19911 -https://www.oceanexpert.org/event/3025 -https://www.oceanexpert.org/institution/17079 -https://www.oceanexpert.org/expert/46831 -https://www.oceanexpert.org/expert/41424 -https://www.oceanexpert.org/event/1512 -https://www.oceanexpert.org/institution/18701 -https://www.oceanexpert.org/institution/7932 -https://www.oceanexpert.org/expert/32550 -https://www.oceanexpert.org/expert/29096 -https://www.oceanexpert.org/institution/18467 -https://www.oceanexpert.org/expert/11721 -https://www.oceanexpert.org/institution/21939 -https://www.oceanexpert.org/event/2385 -https://www.oceanexpert.org/expert/30868 -https://www.oceanexpert.org/expert/47319 -https://www.oceanexpert.org/event/165 -https://www.oceanexpert.org/expert/24929 -https://www.oceanexpert.org/expert/25031 -https://www.oceanexpert.org/institution/18324 -https://www.oceanexpert.org/institution/14093 -https://www.oceanexpert.org/expert/11025 -https://www.oceanexpert.org/expert/31706 -https://www.oceanexpert.org/event/158 -https://www.oceanexpert.org/expert/28240 -https://www.oceanexpert.org/expert/37819 -https://www.oceanexpert.org/event/366 -https://www.oceanexpert.org/expert/8700 -https://www.oceanexpert.org/expert/26936 -https://www.oceanexpert.org/institution/14622 -https://www.oceanexpert.org/expert/59 -https://www.oceanexpert.org/institution/21483 -https://www.oceanexpert.org/expert/46340 -https://www.oceanexpert.org/expert/38346 -https://www.oceanexpert.org/expert/44957 -https://www.oceanexpert.org/expert/37410 -https://www.oceanexpert.org/expert/36469 -https://www.oceanexpert.org/expert/24876 -https://www.oceanexpert.org/event/695 -https://www.oceanexpert.org/expert/19482 -https://www.oceanexpert.org/expert/33746 -https://www.oceanexpert.org/expert/37491 -https://www.oceanexpert.org/expert/46834 -https://www.oceanexpert.org/institution/12383 -https://www.oceanexpert.org/expert/40670 -https://www.oceanexpert.org/institution/19651 -https://www.oceanexpert.org/expert/43985 -https://www.oceanexpert.org/expert/43597 -https://www.oceanexpert.org/expert/34936 -https://www.oceanexpert.org/expert/15376 -https://www.oceanexpert.org/expert/25335 -https://www.oceanexpert.org/expert/6785 -https://www.oceanexpert.org/expert/38925 -https://www.oceanexpert.org/expert/43587 -https://www.oceanexpert.org/expert/20236 -https://www.oceanexpert.org/expert/937 -https://www.oceanexpert.org/event/112 -https://www.oceanexpert.org/institution/12005 -https://www.oceanexpert.org/institution/14041 -https://www.oceanexpert.org/expert/37997 -https://www.oceanexpert.org/expert/1981 -https://www.oceanexpert.org/expert/45673 -https://www.oceanexpert.org/expert/29586 -https://www.oceanexpert.org/expert/19074 -https://www.oceanexpert.org/expert/37378 -https://www.oceanexpert.org/expert/38684 -https://www.oceanexpert.org/expert/36235 -https://www.oceanexpert.org/expert/19011 -https://www.oceanexpert.org/expert/45087 -https://www.oceanexpert.org/institution/21946 -https://www.oceanexpert.org/institution/19339 -https://www.oceanexpert.org/institution/19817 -https://www.oceanexpert.org/institution/21069 -https://www.oceanexpert.org/expert/25053 -https://www.oceanexpert.org/expert/42919 -https://www.oceanexpert.org/expert/29323 -https://www.oceanexpert.org/expert/24422 -https://www.oceanexpert.org/expert/20804 -https://www.oceanexpert.org/expert/48618 -https://www.oceanexpert.org/institution/19558 -https://www.oceanexpert.org/expert/27322 -https://www.oceanexpert.org/institution/11399 -https://www.oceanexpert.org/institution/15983 -https://www.oceanexpert.org/institution/13374 -https://www.oceanexpert.org/expert/39054 -https://www.oceanexpert.org/institution/17830 -https://www.oceanexpert.org/expert/32308 -https://www.oceanexpert.org/expert/48687 -https://www.oceanexpert.org/expert/16375 -https://www.oceanexpert.org/expert/48204 -https://www.oceanexpert.org/expert/32122 -https://www.oceanexpert.org/expert/19785 -https://www.oceanexpert.org/expert/34741 -https://www.oceanexpert.org/expert/43243 -https://www.oceanexpert.org/expert/31211 -https://www.oceanexpert.org/institution/19016 -https://www.oceanexpert.org/event/1125 -https://www.oceanexpert.org/expert/19514 -https://www.oceanexpert.org/expert/47595 -https://www.oceanexpert.org/expert/45795 -https://www.oceanexpert.org/expert/29583 -https://www.oceanexpert.org/expert/22711 -https://www.oceanexpert.org/expert/37114 -https://www.oceanexpert.org/expert/25041 -https://www.oceanexpert.org/expert/47229 -https://www.oceanexpert.org/expert/48920 -https://www.oceanexpert.org/expert/17150 -https://www.oceanexpert.org/expert/32847 -https://www.oceanexpert.org/institution/20688 -https://www.oceanexpert.org/institution/8203 -https://www.oceanexpert.org/event/865 -https://www.oceanexpert.org/institution/22173 -https://www.oceanexpert.org/expert/48487 -https://www.oceanexpert.org/expert/15543 -https://www.oceanexpert.org/expert/24752 -https://www.oceanexpert.org/event/2166 -https://www.oceanexpert.org/expert/20414 -https://www.oceanexpert.org/expert/30017 -https://www.oceanexpert.org/institution/14920 -https://www.oceanexpert.org/institution/12915 -https://www.oceanexpert.org/expert/18344 -https://www.oceanexpert.org/expert/16700 -https://www.oceanexpert.org/expert/6906 -https://www.oceanexpert.org/expert/4732 -https://www.oceanexpert.org/expert/48460 -https://www.oceanexpert.org/expert/26268 -https://www.oceanexpert.org/expert/105 -https://www.oceanexpert.org/expert/30742 -https://www.oceanexpert.org/expert/47502 -https://www.oceanexpert.org/expert/2295 -https://www.oceanexpert.org/expert/43564 -https://www.oceanexpert.org/expert/43129 -https://www.oceanexpert.org/institution/14903 -https://www.oceanexpert.org/institution/15384 -https://www.oceanexpert.org/event/2032 -https://www.oceanexpert.org/expert/23250 -https://www.oceanexpert.org/expert/29719 -https://www.oceanexpert.org/institution/10315 -https://www.oceanexpert.org/event/27 -https://www.oceanexpert.org/expert/19111 -https://www.oceanexpert.org/expert/20953 -https://www.oceanexpert.org/expert/10272 -https://www.oceanexpert.org/expert/13692 -https://www.oceanexpert.org/expert/33083 -https://www.oceanexpert.org/expert/20952 -https://www.oceanexpert.org/expert/30031 -https://www.oceanexpert.org/expert/13130 -https://www.oceanexpert.org/institution/21896 -https://www.oceanexpert.org/expert/19253 -https://www.oceanexpert.org/institution/21334 -https://www.oceanexpert.org/expert/47156 -https://www.oceanexpert.org/expert/48571 -https://www.oceanexpert.org/expert/46284 -https://www.oceanexpert.org/expert/47158 -https://www.oceanexpert.org/expert/24544 -https://www.oceanexpert.org/expert/44726 -https://www.oceanexpert.org/expert/27663 -https://www.oceanexpert.org/expert/36999 -https://www.oceanexpert.org/expert/4382 -https://www.oceanexpert.org/event/1187 -https://www.oceanexpert.org/expert/40348 -https://www.oceanexpert.org/institution/10794 -https://www.oceanexpert.org/expert/42921 -https://www.oceanexpert.org/expert/37194 -https://www.oceanexpert.org/expert/22213 -https://www.oceanexpert.org/expert/35495 -https://www.oceanexpert.org/expert/43987 -https://www.oceanexpert.org/expert/36918 -https://www.oceanexpert.org/expert/43757 -https://www.oceanexpert.org/expert/44199 -https://www.oceanexpert.org/expert/24309 -https://www.oceanexpert.org/event/269 -https://www.oceanexpert.org/event/1087 -https://www.oceanexpert.org/expert/26632 -https://www.oceanexpert.org/event/1686 -https://www.oceanexpert.org/institution/16487 -https://www.oceanexpert.org/event/828 -https://www.oceanexpert.org/expert/48573 -https://www.oceanexpert.org/expert/48971 -https://www.oceanexpert.org/expert/19799 -https://www.oceanexpert.org/expert/24397 -https://www.oceanexpert.org/event/32 -https://www.oceanexpert.org/expert/19992 -https://www.oceanexpert.org/institution/21325 -https://www.oceanexpert.org/expert/33084 -https://www.oceanexpert.org/expert/44199 -https://www.oceanexpert.org/expert/1251 -https://www.oceanexpert.org/expert/43417 -https://www.oceanexpert.org/institution/10237 -https://www.oceanexpert.org/expert/37995 -https://www.oceanexpert.org/event/2298 -https://www.oceanexpert.org/institution/13268 -https://www.oceanexpert.org/expert/16990 -https://www.oceanexpert.org/expert/14503 -https://www.oceanexpert.org/institution/21112 -https://www.oceanexpert.org/expert/35801 -https://www.oceanexpert.org/expert/36369 -https://www.oceanexpert.org/institution/19425 -https://www.oceanexpert.org/event/72 -https://www.oceanexpert.org/expert/45839 -https://www.oceanexpert.org/expert/13223 -https://www.oceanexpert.org/expert/26064 -https://www.oceanexpert.org/institution/21727 -https://www.oceanexpert.org/expert/46266 -https://www.oceanexpert.org/institution/7785 -https://www.oceanexpert.org/expert/20510 -https://www.oceanexpert.org/institution/21250 -https://www.oceanexpert.org/expert/46423 -https://www.oceanexpert.org/expert/42856 -https://www.oceanexpert.org/institution/16823 -https://www.oceanexpert.org/expert/30974 -https://www.oceanexpert.org/expert/22217 -https://www.oceanexpert.org/institution/11547 -https://www.oceanexpert.org/institution/8917 -https://www.oceanexpert.org/event/2816 -https://www.oceanexpert.org/event/1094 -https://www.oceanexpert.org/expert/30939 -https://www.oceanexpert.org/expert/37825 -https://www.oceanexpert.org/expert/17370 -https://www.oceanexpert.org/expert/8518 -https://www.oceanexpert.org/expert/25135 -https://www.oceanexpert.org/expert/101 -https://www.oceanexpert.org/expert/22879 -https://www.oceanexpert.org/expert/33407 -https://www.oceanexpert.org/event/176 -https://www.oceanexpert.org/expert/42895 -https://www.oceanexpert.org/expert/19754 -https://www.oceanexpert.org/event/1431 -https://www.oceanexpert.org/expert/20489 -https://www.oceanexpert.org/institution/20811 -https://www.oceanexpert.org/institution/15660 -https://www.oceanexpert.org/expert/3781 -https://www.oceanexpert.org/expert/18951 -https://www.oceanexpert.org/expert/43281 -https://www.oceanexpert.org/expert/24835 -https://www.oceanexpert.org/event/2603 -https://www.oceanexpert.org/expert/46298 -https://www.oceanexpert.org/expert/43010 -https://www.oceanexpert.org/expert/41483 -https://www.oceanexpert.org/institution/18217 -https://www.oceanexpert.org/institution/7668 -https://www.oceanexpert.org/institution/18752 -https://www.oceanexpert.org/institution/5414 -https://www.oceanexpert.org/institution/11845 -https://www.oceanexpert.org/expert/29681 -https://www.oceanexpert.org/institution/12021 -https://www.oceanexpert.org/event/3137 -https://www.oceanexpert.org/expert/46213 -https://www.oceanexpert.org/expert/23200 -https://www.oceanexpert.org/expert/21917 -https://www.oceanexpert.org/expert/13248 -https://www.oceanexpert.org/expert/46655 -https://www.oceanexpert.org/institution/18431 -https://www.oceanexpert.org/expert/44892 -https://www.oceanexpert.org/expert/21166 -https://www.oceanexpert.org/institution/12401 -https://www.oceanexpert.org/expert/34882 -https://www.oceanexpert.org/event/390 -https://www.oceanexpert.org/expert/19887 -https://www.oceanexpert.org/expert/48800 -https://www.oceanexpert.org/expert/25791 -https://www.oceanexpert.org/institution/19448 -https://www.oceanexpert.org/expert/44901 -https://www.oceanexpert.org/institution/18024 -https://www.oceanexpert.org/institution/19531 -https://www.oceanexpert.org/expert/44469 -https://www.oceanexpert.org/expert/38186 -https://www.oceanexpert.org/expert/34757 -https://www.oceanexpert.org/expert/24093 -https://www.oceanexpert.org/expert/36366 -https://www.oceanexpert.org/institution/21198 -https://www.oceanexpert.org/expert/288 -https://www.oceanexpert.org/expert/33285 -https://www.oceanexpert.org/expert/25159 -https://www.oceanexpert.org/event/3093 -https://www.oceanexpert.org/expert/48813 -https://www.oceanexpert.org/institution/16568 -https://www.oceanexpert.org/expert/25355 -https://www.oceanexpert.org/expert/3186 -https://www.oceanexpert.org/expert/32585 -https://www.oceanexpert.org/institution/19865 -https://www.oceanexpert.org/expert/34852 -https://www.oceanexpert.org/institution/20587 -https://www.oceanexpert.org/institution/10171 -https://www.oceanexpert.org/institution/21489 -https://www.oceanexpert.org/expert/9904 -https://www.oceanexpert.org/event/490 -https://www.oceanexpert.org/expert/18472 -https://www.oceanexpert.org/expert/21844 -https://www.oceanexpert.org/expert/29383 -https://www.oceanexpert.org/institution/17904 -https://www.oceanexpert.org/institution/18728 -https://www.oceanexpert.org/expert/20839 -https://www.oceanexpert.org/institution/21615 -https://www.oceanexpert.org/institution/18166 -https://www.oceanexpert.org/expert/19526 -https://www.oceanexpert.org/expert/35596 -https://www.oceanexpert.org/expert/26234 -https://www.oceanexpert.org/expert/17219 -https://www.oceanexpert.org/expert/30906 -https://www.oceanexpert.org/institution/18203 -https://www.oceanexpert.org/institution/17723 -https://www.oceanexpert.org/expert/40120 -https://www.oceanexpert.org/institution/18747 -https://www.oceanexpert.org/institution/17660 -https://www.oceanexpert.org/expert/21976 -https://www.oceanexpert.org/institution/19614 -https://www.oceanexpert.org/expert/44324 -https://www.oceanexpert.org/expert/1087 -https://www.oceanexpert.org/expert/46718 -https://www.oceanexpert.org/expert/27806 -https://www.oceanexpert.org/institution/12808 -https://www.oceanexpert.org/expert/36884 -https://www.oceanexpert.org/institution/14348 -https://www.oceanexpert.org/expert/29599 -https://www.oceanexpert.org/expert/44460 -https://www.oceanexpert.org/expert/19163 -https://www.oceanexpert.org/expert/14057 -https://www.oceanexpert.org/expert/17638 -https://www.oceanexpert.org/event/2119 -https://www.oceanexpert.org/expert/30201 -https://www.oceanexpert.org/expert/32310 -https://www.oceanexpert.org/institution/12846 -https://www.oceanexpert.org/expert/38882 -https://www.oceanexpert.org/expert/16432 -https://www.oceanexpert.org/expert/47403 -https://www.oceanexpert.org/institution/15480 -https://www.oceanexpert.org/institution/8244 -https://www.oceanexpert.org/event/2512 -https://www.oceanexpert.org/expert/23773 -https://www.oceanexpert.org/institution/12866 -https://www.oceanexpert.org/expert/13558 -https://www.oceanexpert.org/expert/44659 -https://www.oceanexpert.org/institution/21291 -https://www.oceanexpert.org/expert/27224 -https://www.oceanexpert.org/expert/48283 -https://www.oceanexpert.org/expert/26779 -https://www.oceanexpert.org/expert/39209 -https://www.oceanexpert.org/expert/29777 -https://www.oceanexpert.org/expert/11323 -https://www.oceanexpert.org/institution/14581 -https://www.oceanexpert.org/event/2842 -https://www.oceanexpert.org/expert/45331 -https://www.oceanexpert.org/expert/33095 -https://www.oceanexpert.org/expert/31037 -https://www.oceanexpert.org/expert/47855 -https://www.oceanexpert.org/expert/30668 -https://www.oceanexpert.org/expert/44326 -https://www.oceanexpert.org/expert/2710 -https://www.oceanexpert.org/expert/11693 -https://www.oceanexpert.org/institution/20681 -https://www.oceanexpert.org/expert/17844 -https://www.oceanexpert.org/institution/21201 -https://www.oceanexpert.org/institution/20325 -https://www.oceanexpert.org/expert/48047 -https://www.oceanexpert.org/institution/15420 -https://www.oceanexpert.org/expert/19357 -https://www.oceanexpert.org/expert/32304 -https://www.oceanexpert.org/expert/36545 -https://www.oceanexpert.org/expert/37986 -https://www.oceanexpert.org/expert/30408 -https://www.oceanexpert.org/expert/42582 -https://www.oceanexpert.org/expert/33525 -https://www.oceanexpert.org/expert/12032 -https://www.oceanexpert.org/event/3190 -https://www.oceanexpert.org/institution/19334 -https://www.oceanexpert.org/event/2294 -https://www.oceanexpert.org/expert/22770 -https://www.oceanexpert.org/expert/30324 -https://www.oceanexpert.org/expert/37868 -https://www.oceanexpert.org/institution/5506 -https://www.oceanexpert.org/expert/15002 -https://www.oceanexpert.org/event/2634 -https://www.oceanexpert.org/institution/21317 -https://www.oceanexpert.org/event/2349 -https://www.oceanexpert.org/expert/42990 -https://www.oceanexpert.org/institution/17493 -https://www.oceanexpert.org/expert/37278 -https://www.oceanexpert.org/expert/16427 -https://www.oceanexpert.org/institution/6639 -https://www.oceanexpert.org/expert/48449 -https://www.oceanexpert.org/expert/30171 -https://www.oceanexpert.org/expert/6379 -https://www.oceanexpert.org/expert/34556 -https://www.oceanexpert.org/institution/18378 -https://www.oceanexpert.org/institution/18371 -https://www.oceanexpert.org/expert/31677 -https://www.oceanexpert.org/expert/21022 -https://www.oceanexpert.org/expert/48947 -https://www.oceanexpert.org/expert/30105 -https://www.oceanexpert.org/expert/36515 -https://www.oceanexpert.org/event/2430 -https://www.oceanexpert.org/institution/6204 -https://www.oceanexpert.org/expert/26569 -https://www.oceanexpert.org/expert/37717 -https://www.oceanexpert.org/expert/19979 -https://www.oceanexpert.org/expert/29506 -https://www.oceanexpert.org/institution/15908 -https://www.oceanexpert.org/event/495 -https://www.oceanexpert.org/expert/12024 -https://www.oceanexpert.org/expert/39981 -https://www.oceanexpert.org/expert/31774 -https://www.oceanexpert.org/institution/21450 -https://www.oceanexpert.org/institution/18015 -https://www.oceanexpert.org/expert/24903 -https://www.oceanexpert.org/institution/20947 -https://www.oceanexpert.org/expert/30978 -https://www.oceanexpert.org/expert/45193 -https://www.oceanexpert.org/expert/33222 -https://www.oceanexpert.org/institution/6664 -https://www.oceanexpert.org/expert/46255 -https://www.oceanexpert.org/expert/46317 -https://www.oceanexpert.org/event/2152 -https://www.oceanexpert.org/expert/19024 -https://www.oceanexpert.org/expert/36531 -https://www.oceanexpert.org/expert/21537 -https://www.oceanexpert.org/institution/19444 -https://www.oceanexpert.org/expert/15361 -https://www.oceanexpert.org/institution/14048 -https://www.oceanexpert.org/expert/18132 -https://www.oceanexpert.org/expert/17457 -https://www.oceanexpert.org/event/2154 -https://www.oceanexpert.org/expert/26138 -https://www.oceanexpert.org/expert/39131 -https://www.oceanexpert.org/expert/11103 -https://www.oceanexpert.org/institution/17750 -https://www.oceanexpert.org/expert/17424 -https://www.oceanexpert.org/expert/33029 -https://www.oceanexpert.org/expert/12876 -https://www.oceanexpert.org/expert/37968 -https://www.oceanexpert.org/expert/26879 -https://www.oceanexpert.org/institution/21103 -https://www.oceanexpert.org/event/2256 -https://www.oceanexpert.org/institution/21540 -https://www.oceanexpert.org/institution/19184 -https://www.oceanexpert.org/expert/2731 -https://www.oceanexpert.org/institution/19046 -https://www.oceanexpert.org/institution/14744 -https://www.oceanexpert.org/expert/45103 -https://www.oceanexpert.org/event/2534 -https://www.oceanexpert.org/institution/11842 -https://www.oceanexpert.org/expert/18129 -https://www.oceanexpert.org/expert/45891 -https://www.oceanexpert.org/institution/14043 -https://www.oceanexpert.org/expert/7209 -https://www.oceanexpert.org/expert/12444 -https://www.oceanexpert.org/expert/26236 -https://www.oceanexpert.org/expert/47221 -https://www.oceanexpert.org/institution/18744 -https://www.oceanexpert.org/expert/45534 -https://www.oceanexpert.org/expert/19592 -https://www.oceanexpert.org/expert/26196 -https://www.oceanexpert.org/expert/8373 -https://www.oceanexpert.org/event/2641 -https://www.oceanexpert.org/institution/15885 -https://www.oceanexpert.org/expert/23046 -https://www.oceanexpert.org/expert/712 -https://www.oceanexpert.org/institution/21368 -https://www.oceanexpert.org/expert/44349 -https://www.oceanexpert.org/expert/25899 -https://www.oceanexpert.org/institution/20778 -https://www.oceanexpert.org/expert/19049 -https://www.oceanexpert.org/expert/20435 -https://www.oceanexpert.org/expert/32561 -https://www.oceanexpert.org/expert/23708 -https://www.oceanexpert.org/expert/35241 -https://www.oceanexpert.org/expert/26413 -https://www.oceanexpert.org/expert/32620 -https://www.oceanexpert.org/expert/25280 -https://www.oceanexpert.org/expert/18019 -https://www.oceanexpert.org/expert/23410 -https://www.oceanexpert.org/expert/26819 -https://www.oceanexpert.org/expert/44867 -https://www.oceanexpert.org/event/2518 -https://www.oceanexpert.org/expert/27633 -https://www.oceanexpert.org/institution/10997 -https://www.oceanexpert.org/event/1029 -https://www.oceanexpert.org/institution/10836 -https://www.oceanexpert.org/institution/18709 -https://www.oceanexpert.org/expert/43211 -https://www.oceanexpert.org/expert/19483 -https://www.oceanexpert.org/expert/40609 -https://www.oceanexpert.org/expert/47336 -https://www.oceanexpert.org/institution/16195 -https://www.oceanexpert.org/expert/18020 -https://www.oceanexpert.org/expert/23923 -https://www.oceanexpert.org/expert/4561 -https://www.oceanexpert.org/institution/16731 -https://www.oceanexpert.org/institution/17760 -https://www.oceanexpert.org/institution/19499 -https://www.oceanexpert.org/expert/15845 -https://www.oceanexpert.org/expert/28247 -https://www.oceanexpert.org/event/438 -https://www.oceanexpert.org/expert/48405 -https://www.oceanexpert.org/expert/32334 -https://www.oceanexpert.org/expert/30575 -https://www.oceanexpert.org/event/2832 -https://www.oceanexpert.org/expert/45700 -https://www.oceanexpert.org/institution/13604 -https://www.oceanexpert.org/expert/35659 -https://www.oceanexpert.org/institution/21195 -https://www.oceanexpert.org/expert/26308 -https://www.oceanexpert.org/expert/25798 -https://www.oceanexpert.org/expert/17959 -https://www.oceanexpert.org/event/1932 -https://www.oceanexpert.org/institution/11515 -https://www.oceanexpert.org/expert/36157 -https://www.oceanexpert.org/expert/39807 -https://www.oceanexpert.org/expert/36567 -https://www.oceanexpert.org/expert/14583 -https://www.oceanexpert.org/expert/27784 -https://www.oceanexpert.org/institution/15761 -https://www.oceanexpert.org/expert/8487 -https://www.oceanexpert.org/expert/27723 -https://www.oceanexpert.org/expert/36729 -https://www.oceanexpert.org/institution/8822 -https://www.oceanexpert.org/expert/37855 -https://www.oceanexpert.org/event/97 -https://www.oceanexpert.org/expert/36402 -https://www.oceanexpert.org/expert/46670 -https://www.oceanexpert.org/institution/21336 -https://www.oceanexpert.org/institution/18397 -https://www.oceanexpert.org/expert/33398 -https://www.oceanexpert.org/institution/19383 -https://www.oceanexpert.org/institution/21260 -https://www.oceanexpert.org/expert/35250 -https://www.oceanexpert.org/expert/31256 -https://www.oceanexpert.org/expert/38090 -https://www.oceanexpert.org/expert/43735 -https://www.oceanexpert.org/institution/18427 -https://www.oceanexpert.org/expert/17801 -https://www.oceanexpert.org/expert/13339 -https://www.oceanexpert.org/expert/23848 -https://www.oceanexpert.org/expert/27312 -https://www.oceanexpert.org/expert/45888 -https://www.oceanexpert.org/expert/23984 -https://www.oceanexpert.org/institution/22055 -https://www.oceanexpert.org/expert/16698 -https://www.oceanexpert.org/expert/21484 -https://www.oceanexpert.org/expert/40289 -https://www.oceanexpert.org/expert/21929 -https://www.oceanexpert.org/expert/43731 -https://www.oceanexpert.org/institution/11629 -https://www.oceanexpert.org/expert/47989 -https://www.oceanexpert.org/expert/27608 -https://www.oceanexpert.org/event/2686 -https://www.oceanexpert.org/expert/39169 -https://www.oceanexpert.org/institution/18126 -https://www.oceanexpert.org/institution/20314 -https://www.oceanexpert.org/event/506 -https://www.oceanexpert.org/institution/14958 -https://www.oceanexpert.org/institution/19754 -https://www.oceanexpert.org/expert/30889 -https://www.oceanexpert.org/expert/18434 -https://www.oceanexpert.org/expert/20331 -https://www.oceanexpert.org/institution/18776 -https://www.oceanexpert.org/expert/32071 -https://www.oceanexpert.org/expert/26273 -https://www.oceanexpert.org/expert/9222 -https://www.oceanexpert.org/event/1402 -https://www.oceanexpert.org/institution/18468 -https://www.oceanexpert.org/expert/24835 -https://www.oceanexpert.org/expert/48088 -https://www.oceanexpert.org/institution/9178 -https://www.oceanexpert.org/expert/26856 -https://www.oceanexpert.org/expert/46379 -https://www.oceanexpert.org/institution/19541 -https://www.oceanexpert.org/expert/24241 -https://www.oceanexpert.org/institution/12754 -https://www.oceanexpert.org/expert/16834 -https://www.oceanexpert.org/institution/14045 -https://www.oceanexpert.org/expert/48655 -https://www.oceanexpert.org/institution/19553 -https://www.oceanexpert.org/expert/30682 -https://www.oceanexpert.org/expert/34350 -https://www.oceanexpert.org/expert/20960 -https://www.oceanexpert.org/expert/47674 -https://www.oceanexpert.org/event/1623 -https://www.oceanexpert.org/institution/7745 -https://www.oceanexpert.org/expert/47816 -https://www.oceanexpert.org/expert/26090 -https://www.oceanexpert.org/institution/12127 -https://www.oceanexpert.org/expert/36000 -https://www.oceanexpert.org/event/1107 -https://www.oceanexpert.org/event/2943 -https://www.oceanexpert.org/institution/21928 -https://www.oceanexpert.org/expert/25109 -https://www.oceanexpert.org/expert/18743 -https://www.oceanexpert.org/expert/26051 -https://www.oceanexpert.org/expert/17791 -https://www.oceanexpert.org/expert/45704 -https://www.oceanexpert.org/institution/19370 -https://www.oceanexpert.org/expert/46270 -https://www.oceanexpert.org/expert/20212 -https://www.oceanexpert.org/institution/5636 -https://www.oceanexpert.org/expert/47248 -https://www.oceanexpert.org/event/2744 -https://www.oceanexpert.org/expert/27170 -https://www.oceanexpert.org/institution/19117 -https://www.oceanexpert.org/institution/19798 -https://www.oceanexpert.org/expert/19998 -https://www.oceanexpert.org/expert/16297 -https://www.oceanexpert.org/expert/43797 -https://www.oceanexpert.org/expert/28829 -https://www.oceanexpert.org/expert/11287 -https://www.oceanexpert.org/expert/22573 -https://www.oceanexpert.org/expert/31221 -https://www.oceanexpert.org/expert/1299 -https://www.oceanexpert.org/expert/23128 -https://www.oceanexpert.org/expert/23178 -https://www.oceanexpert.org/expert/38119 -https://www.oceanexpert.org/expert/42923 -https://www.oceanexpert.org/expert/13521 -https://www.oceanexpert.org/event/2426 -https://www.oceanexpert.org/expert/11051 -https://www.oceanexpert.org/expert/4822 -https://www.oceanexpert.org/expert/18327 -https://www.oceanexpert.org/expert/24377 -https://www.oceanexpert.org/expert/23888 -https://www.oceanexpert.org/event/508 -https://www.oceanexpert.org/institution/19983 -https://www.oceanexpert.org/expert/23140 -https://www.oceanexpert.org/expert/33856 -https://www.oceanexpert.org/institution/21688 -https://www.oceanexpert.org/expert/23963 -https://www.oceanexpert.org/expert/22205 -https://www.oceanexpert.org/institution/9998 -https://www.oceanexpert.org/expert/44872 -https://www.oceanexpert.org/expert/31697 -https://www.oceanexpert.org/institution/18798 -https://www.oceanexpert.org/expert/20873 -https://www.oceanexpert.org/expert/6248 -https://www.oceanexpert.org/expert/42684 -https://www.oceanexpert.org/institution/12837 -https://www.oceanexpert.org/expert/37010 -https://www.oceanexpert.org/expert/26897 -https://www.oceanexpert.org/institution/17862 -https://www.oceanexpert.org/expert/22746 -https://www.oceanexpert.org/expert/19769 -https://www.oceanexpert.org/expert/24343 -https://www.oceanexpert.org/expert/26089 -https://www.oceanexpert.org/institution/18518 -https://www.oceanexpert.org/expert/37226 -https://www.oceanexpert.org/expert/23227 -https://www.oceanexpert.org/institution/19728 -https://www.oceanexpert.org/event/2063 -https://www.oceanexpert.org/institution/19787 -https://www.oceanexpert.org/event/2852 -https://www.oceanexpert.org/expert/38305 -https://www.oceanexpert.org/expert/38494 -https://www.oceanexpert.org/institution/18975 -https://www.oceanexpert.org/expert/29715 -https://www.oceanexpert.org/expert/39350 -https://www.oceanexpert.org/institution/21767 -https://www.oceanexpert.org/expert/44069 -https://www.oceanexpert.org/expert/23476 -https://www.oceanexpert.org/expert/27047 -https://www.oceanexpert.org/expert/16707 -https://www.oceanexpert.org/expert/4092 -https://www.oceanexpert.org/expert/34943 -https://www.oceanexpert.org/institution/16791 -https://www.oceanexpert.org/expert/30526 -https://www.oceanexpert.org/expert/37523 -https://www.oceanexpert.org/expert/35311 -https://www.oceanexpert.org/expert/37415 -https://www.oceanexpert.org/institution/8908 -https://www.oceanexpert.org/expert/47870 -https://www.oceanexpert.org/expert/4974 -https://www.oceanexpert.org/expert/27307 -https://www.oceanexpert.org/expert/8712 -https://www.oceanexpert.org/event/3179 -https://www.oceanexpert.org/expert/46973 -https://www.oceanexpert.org/expert/46768 -https://www.oceanexpert.org/expert/14973 -https://www.oceanexpert.org/expert/25111 -https://www.oceanexpert.org/institution/8907 -https://www.oceanexpert.org/expert/33310 -https://www.oceanexpert.org/expert/19168 -https://www.oceanexpert.org/expert/38004 -https://www.oceanexpert.org/expert/23416 -https://www.oceanexpert.org/expert/37102 -https://www.oceanexpert.org/expert/39474 -https://www.oceanexpert.org/institution/10396 -https://www.oceanexpert.org/expert/17464 -https://www.oceanexpert.org/expert/12780 -https://www.oceanexpert.org/institution/21828 -https://www.oceanexpert.org/expert/11957 -https://www.oceanexpert.org/expert/27473 -https://www.oceanexpert.org/institution/18267 -https://www.oceanexpert.org/expert/40557 -https://www.oceanexpert.org/expert/25733 -https://www.oceanexpert.org/expert/29858 -https://www.oceanexpert.org/expert/46396 -https://www.oceanexpert.org/expert/42888 -https://www.oceanexpert.org/expert/34670 -https://www.oceanexpert.org/expert/31090 -https://www.oceanexpert.org/expert/22338 -https://www.oceanexpert.org/expert/36866 -https://www.oceanexpert.org/expert/18003 -https://www.oceanexpert.org/expert/46848 -https://www.oceanexpert.org/expert/16652 -https://www.oceanexpert.org/institution/6784 -https://www.oceanexpert.org/institution/8884 -https://www.oceanexpert.org/expert/28396 -https://www.oceanexpert.org/expert/47774 -https://www.oceanexpert.org/event/636 -https://www.oceanexpert.org/expert/47106 -https://www.oceanexpert.org/event/2839 -https://www.oceanexpert.org/expert/14310 -https://www.oceanexpert.org/expert/47974 -https://www.oceanexpert.org/expert/42782 -https://www.oceanexpert.org/expert/19989 -https://www.oceanexpert.org/institution/20444 -https://www.oceanexpert.org/expert/22284 -https://www.oceanexpert.org/institution/12373 -https://www.oceanexpert.org/expert/16474 -https://www.oceanexpert.org/event/864 -https://www.oceanexpert.org/expert/19132 -https://www.oceanexpert.org/expert/48453 -https://www.oceanexpert.org/institution/10833 -https://www.oceanexpert.org/expert/39179 -https://www.oceanexpert.org/institution/12536 -https://www.oceanexpert.org/expert/35135 -https://www.oceanexpert.org/expert/9556 -https://www.oceanexpert.org/event/368 -https://www.oceanexpert.org/institution/15942 -https://www.oceanexpert.org/expert/27540 -https://www.oceanexpert.org/expert/28357 -https://www.oceanexpert.org/expert/35358 -https://www.oceanexpert.org/expert/20501 -https://www.oceanexpert.org/institution/16999 -https://www.oceanexpert.org/expert/25497 -https://www.oceanexpert.org/event/2932 -https://www.oceanexpert.org/expert/23685 -https://www.oceanexpert.org/expert/23686 -https://www.oceanexpert.org/institution/14257 -https://www.oceanexpert.org/expert/25777 -https://www.oceanexpert.org/event/2991 -https://www.oceanexpert.org/institution/14138 -https://www.oceanexpert.org/expert/25446 -https://www.oceanexpert.org/institution/20417 -https://www.oceanexpert.org/expert/43228 -https://www.oceanexpert.org/expert/40655 -https://www.oceanexpert.org/event/1640 -https://www.oceanexpert.org/institution/12745 -https://www.oceanexpert.org/event/2666 -https://www.oceanexpert.org/expert/34427 -https://www.oceanexpert.org/expert/39388 -https://www.oceanexpert.org/expert/34570 -https://www.oceanexpert.org/expert/24957 -https://www.oceanexpert.org/institution/13402 -https://www.oceanexpert.org/institution/21637 -https://www.oceanexpert.org/expert/16453 -https://www.oceanexpert.org/expert/37625 -https://www.oceanexpert.org/expert/22958 -https://www.oceanexpert.org/expert/39520 -https://www.oceanexpert.org/expert/31659 -https://www.oceanexpert.org/expert/22540 -https://www.oceanexpert.org/institution/5372 -https://www.oceanexpert.org/institution/7142 -https://www.oceanexpert.org/institution/20235 -https://www.oceanexpert.org/expert/30842 -https://www.oceanexpert.org/event/2440 -https://www.oceanexpert.org/expert/17526 -https://www.oceanexpert.org/institution/11875 -https://www.oceanexpert.org/institution/22084 -https://www.oceanexpert.org/institution/11349 -https://www.oceanexpert.org/expert/37397 -https://www.oceanexpert.org/expert/20833 -https://www.oceanexpert.org/event/3178 -https://www.oceanexpert.org/expert/34632 -https://www.oceanexpert.org/expert/20543 -https://www.oceanexpert.org/institution/22053 -https://www.oceanexpert.org/expert/47019 -https://www.oceanexpert.org/institution/17107 -https://www.oceanexpert.org/expert/8578 -https://www.oceanexpert.org/expert/33746 -https://www.oceanexpert.org/expert/30258 -https://www.oceanexpert.org/institution/13210 -https://www.oceanexpert.org/expert/23430 -https://www.oceanexpert.org/event/3301 -https://www.oceanexpert.org/institution/21476 -https://www.oceanexpert.org/expert/37368 -https://www.oceanexpert.org/event/1258 -https://www.oceanexpert.org/expert/33221 -https://www.oceanexpert.org/expert/30302 -https://www.oceanexpert.org/expert/18837 -https://www.oceanexpert.org/expert/48825 -https://www.oceanexpert.org/expert/15535 -https://www.oceanexpert.org/expert/21166 -https://www.oceanexpert.org/institution/17934 -https://www.oceanexpert.org/expert/8059 -https://www.oceanexpert.org/institution/18789 -https://www.oceanexpert.org/expert/18637 -https://www.oceanexpert.org/expert/17412 -https://www.oceanexpert.org/expert/12608 -https://www.oceanexpert.org/expert/2060 -https://www.oceanexpert.org/institution/18591 -https://www.oceanexpert.org/expert/37447 -https://www.oceanexpert.org/expert/34380 -https://www.oceanexpert.org/expert/5708 -https://www.oceanexpert.org/institution/20906 -https://www.oceanexpert.org/institution/21371 -https://www.oceanexpert.org/expert/35161 -https://www.oceanexpert.org/expert/38267 -https://www.oceanexpert.org/expert/43162 -https://www.oceanexpert.org/institution/5358 -https://www.oceanexpert.org/expert/18285 -https://www.oceanexpert.org/expert/27789 -https://www.oceanexpert.org/event/732 -https://www.oceanexpert.org/institution/19584 -https://www.oceanexpert.org/expert/20607 -https://www.oceanexpert.org/institution/18316 -https://www.oceanexpert.org/expert/23362 -https://www.oceanexpert.org/expert/11466 -https://www.oceanexpert.org/institution/19675 -https://www.oceanexpert.org/event/1959 -https://www.oceanexpert.org/institution/20389 -https://www.oceanexpert.org/expert/47100 -https://www.oceanexpert.org/event/788 -https://www.oceanexpert.org/institution/8140 -https://www.oceanexpert.org/expert/18054 -https://www.oceanexpert.org/expert/12052 -https://www.oceanexpert.org/expert/45032 -https://www.oceanexpert.org/expert/18479 -https://www.oceanexpert.org/expert/26515 -https://www.oceanexpert.org/expert/26793 -https://www.oceanexpert.org/event/1566 -https://www.oceanexpert.org/expert/21163 -https://www.oceanexpert.org/institution/7429 -https://www.oceanexpert.org/expert/47747 -https://www.oceanexpert.org/expert/35267 -https://www.oceanexpert.org/expert/29898 -https://www.oceanexpert.org/expert/25573 -https://www.oceanexpert.org/event/1987 -https://www.oceanexpert.org/expert/35646 -https://www.oceanexpert.org/event/2528 -https://www.oceanexpert.org/institution/18318 -https://www.oceanexpert.org/expert/20353 -https://www.oceanexpert.org/expert/28169 -https://www.oceanexpert.org/institution/21810 -https://www.oceanexpert.org/expert/24069 -https://www.oceanexpert.org/institution/21325 -https://www.oceanexpert.org/expert/27670 -https://www.oceanexpert.org/expert/23372 -https://www.oceanexpert.org/institution/16166 -https://www.oceanexpert.org/institution/21585 -https://www.oceanexpert.org/expert/28818 -https://www.oceanexpert.org/expert/19462 -https://www.oceanexpert.org/expert/44835 -https://www.oceanexpert.org/institution/11312 -https://www.oceanexpert.org/expert/23306 -https://www.oceanexpert.org/institution/18908 -https://www.oceanexpert.org/expert/30289 -https://www.oceanexpert.org/expert/23169 -https://www.oceanexpert.org/expert/36486 -https://www.oceanexpert.org/institution/21530 -https://www.oceanexpert.org/expert/33953 -https://www.oceanexpert.org/expert/48126 -https://www.oceanexpert.org/institution/13360 -https://www.oceanexpert.org/event/3088 -https://www.oceanexpert.org/event/1474 -https://www.oceanexpert.org/expert/39551 -https://www.oceanexpert.org/event/1343 -https://www.oceanexpert.org/event/2927 -https://www.oceanexpert.org/institution/20459 -https://www.oceanexpert.org/expert/16804 -https://www.oceanexpert.org/expert/44760 -https://www.oceanexpert.org/event/1216 -https://www.oceanexpert.org/event/1675 -https://www.oceanexpert.org/expert/25700 -https://www.oceanexpert.org/expert/29574 -https://www.oceanexpert.org/expert/47762 -https://www.oceanexpert.org/event/3175 -https://www.oceanexpert.org/expert/46379 -https://www.oceanexpert.org/expert/29124 -https://www.oceanexpert.org/expert/46820 -https://www.oceanexpert.org/expert/22742 -https://www.oceanexpert.org/expert/20687 -https://www.oceanexpert.org/expert/15542 -https://www.oceanexpert.org/expert/21465 -https://www.oceanexpert.org/expert/48268 -https://www.oceanexpert.org/expert/47780 -https://www.oceanexpert.org/institution/20922 -https://www.oceanexpert.org/institution/20726 -https://www.oceanexpert.org/institution/16878 -https://www.oceanexpert.org/expert/27857 -https://www.oceanexpert.org/institution/21199 -https://www.oceanexpert.org/institution/17363 -https://www.oceanexpert.org/expert/22101 -https://www.oceanexpert.org/expert/46916 -https://www.oceanexpert.org/expert/31189 -https://www.oceanexpert.org/expert/748 -https://www.oceanexpert.org/expert/25528 -https://www.oceanexpert.org/expert/20452 -https://www.oceanexpert.org/event/1275 -https://www.oceanexpert.org/expert/47406 -https://www.oceanexpert.org/expert/32901 -https://www.oceanexpert.org/expert/44005 -https://www.oceanexpert.org/institution/12951 -https://www.oceanexpert.org/institution/5811 -https://www.oceanexpert.org/expert/1995 -https://www.oceanexpert.org/expert/22369 -https://www.oceanexpert.org/event/2346 -https://www.oceanexpert.org/institution/21447 -https://www.oceanexpert.org/expert/900 -https://www.oceanexpert.org/expert/46049 -https://www.oceanexpert.org/institution/12534 -https://www.oceanexpert.org/institution/20684 -https://www.oceanexpert.org/expert/33034 -https://www.oceanexpert.org/expert/23289 -https://www.oceanexpert.org/expert/37623 -https://www.oceanexpert.org/expert/32151 -https://www.oceanexpert.org/institution/19720 -https://www.oceanexpert.org/institution/20753 -https://www.oceanexpert.org/expert/11284 -https://www.oceanexpert.org/expert/17296 -https://www.oceanexpert.org/expert/18690 -https://www.oceanexpert.org/institution/15334 -https://www.oceanexpert.org/institution/10885 -https://www.oceanexpert.org/institution/21059 -https://www.oceanexpert.org/expert/44972 -https://www.oceanexpert.org/institution/12496 -https://www.oceanexpert.org/expert/7178 -https://www.oceanexpert.org/institution/12880 -https://www.oceanexpert.org/expert/32283 -https://www.oceanexpert.org/expert/35419 -https://www.oceanexpert.org/expert/44336 -https://www.oceanexpert.org/expert/16498 -https://www.oceanexpert.org/institution/22129 -https://www.oceanexpert.org/expert/19421 -https://www.oceanexpert.org/expert/36215 -https://www.oceanexpert.org/expert/32451 -https://www.oceanexpert.org/institution/13112 -https://www.oceanexpert.org/institution/13853 -https://www.oceanexpert.org/expert/26988 -https://www.oceanexpert.org/expert/38047 -https://www.oceanexpert.org/event/3191 -https://www.oceanexpert.org/expert/28125 -https://www.oceanexpert.org/expert/32232 -https://www.oceanexpert.org/expert/45055 -https://www.oceanexpert.org/expert/13700 -https://www.oceanexpert.org/event/2581 -https://www.oceanexpert.org/event/1577 -https://www.oceanexpert.org/institution/8319 -https://www.oceanexpert.org/institution/20397 -https://www.oceanexpert.org/expert/29498 -https://www.oceanexpert.org/institution/12230 -https://www.oceanexpert.org/institution/22048 -https://www.oceanexpert.org/expert/38456 -https://www.oceanexpert.org/expert/17854 -https://www.oceanexpert.org/expert/20480 -https://www.oceanexpert.org/expert/6548 -https://www.oceanexpert.org/expert/22157 -https://www.oceanexpert.org/expert/12248 -https://www.oceanexpert.org/institution/14904 -https://www.oceanexpert.org/expert/48818 -https://www.oceanexpert.org/expert/47504 -https://www.oceanexpert.org/event/1206 -https://www.oceanexpert.org/expert/48013 -https://www.oceanexpert.org/institution/17946 -https://www.oceanexpert.org/expert/38332 -https://www.oceanexpert.org/expert/38611 -https://www.oceanexpert.org/institution/12881 -https://www.oceanexpert.org/institution/15810 -https://www.oceanexpert.org/expert/28818 -https://www.oceanexpert.org/expert/22518 -https://www.oceanexpert.org/event/422 -https://www.oceanexpert.org/institution/10978 -https://www.oceanexpert.org/expert/34039 -https://www.oceanexpert.org/institution/18817 -https://www.oceanexpert.org/expert/21404 -https://www.oceanexpert.org/expert/46536 -https://www.oceanexpert.org/expert/42450 -https://www.oceanexpert.org/expert/47475 -https://www.oceanexpert.org/expert/26627 -https://www.oceanexpert.org/institution/9986 -https://www.oceanexpert.org/institution/13587 -https://www.oceanexpert.org/event/686 -https://www.oceanexpert.org/event/1914 -https://www.oceanexpert.org/expert/43140 -https://www.oceanexpert.org/expert/28342 -https://www.oceanexpert.org/expert/20400 -https://www.oceanexpert.org/institution/13427 -https://www.oceanexpert.org/institution/10564 -https://www.oceanexpert.org/expert/26048 -https://www.oceanexpert.org/expert/46699 -https://www.oceanexpert.org/event/1389 -https://www.oceanexpert.org/institution/18021 -https://www.oceanexpert.org/expert/43919 -https://www.oceanexpert.org/expert/19993 -https://www.oceanexpert.org/expert/19160 -https://www.oceanexpert.org/institution/18062 -https://www.oceanexpert.org/institution/20805 -https://www.oceanexpert.org/expert/23939 -https://www.oceanexpert.org/expert/24416 -https://www.oceanexpert.org/expert/20165 -https://www.oceanexpert.org/expert/40058 -https://www.oceanexpert.org/expert/29341 -https://www.oceanexpert.org/expert/22414 -https://www.oceanexpert.org/expert/32963 -https://www.oceanexpert.org/expert/17654 -https://www.oceanexpert.org/institution/11274 -https://www.oceanexpert.org/event/527 -https://www.oceanexpert.org/expert/23886 -https://www.oceanexpert.org/expert/37979 -https://www.oceanexpert.org/expert/16609 -https://www.oceanexpert.org/expert/44428 -https://www.oceanexpert.org/expert/28069 -https://www.oceanexpert.org/institution/18175 -https://www.oceanexpert.org/event/661 -https://www.oceanexpert.org/expert/3214 -https://www.oceanexpert.org/expert/37413 -https://www.oceanexpert.org/expert/44006 -https://www.oceanexpert.org/institution/15935 -https://www.oceanexpert.org/expert/30771 -https://www.oceanexpert.org/expert/5443 -https://www.oceanexpert.org/expert/29128 -https://www.oceanexpert.org/expert/32926 -https://www.oceanexpert.org/expert/44774 -https://www.oceanexpert.org/institution/12096 -https://www.oceanexpert.org/institution/20740 -https://www.oceanexpert.org/event/605 -https://www.oceanexpert.org/expert/28481 -https://www.oceanexpert.org/expert/3210 -https://www.oceanexpert.org/expert/6923 -https://www.oceanexpert.org/expert/16321 -https://www.oceanexpert.org/expert/29356 -https://www.oceanexpert.org/expert/39134 -https://www.oceanexpert.org/expert/28106 -https://www.oceanexpert.org/expert/15796 -https://www.oceanexpert.org/expert/35677 -https://www.oceanexpert.org/institution/20071 -https://www.oceanexpert.org/expert/3598 -https://www.oceanexpert.org/expert/46037 -https://www.oceanexpert.org/expert/30680 -https://www.oceanexpert.org/expert/18322 -https://www.oceanexpert.org/expert/17928 -https://www.oceanexpert.org/expert/3807 -https://www.oceanexpert.org/expert/756 -https://www.oceanexpert.org/expert/38182 -https://www.oceanexpert.org/event/1627 -https://www.oceanexpert.org/expert/42607 -https://www.oceanexpert.org/institution/11429 -https://www.oceanexpert.org/expert/17281 -https://www.oceanexpert.org/expert/6933 -https://www.oceanexpert.org/event/412 -https://www.oceanexpert.org/expert/8041 -https://www.oceanexpert.org/expert/18349 -https://www.oceanexpert.org/expert/17789 -https://www.oceanexpert.org/institution/6538 -https://www.oceanexpert.org/expert/47060 -https://www.oceanexpert.org/institution/21283 -https://www.oceanexpert.org/expert/27403 -https://www.oceanexpert.org/event/1115 -https://www.oceanexpert.org/expert/47766 -https://www.oceanexpert.org/expert/13660 -https://www.oceanexpert.org/expert/27020 -https://www.oceanexpert.org/institution/21584 -https://www.oceanexpert.org/expert/29965 -https://www.oceanexpert.org/expert/15358 -https://www.oceanexpert.org/institution/7139 -https://www.oceanexpert.org/institution/12645 -https://www.oceanexpert.org/event/3046 -https://www.oceanexpert.org/institution/12754 -https://www.oceanexpert.org/institution/20542 -https://www.oceanexpert.org/expert/43751 -https://www.oceanexpert.org/institution/5582 -https://www.oceanexpert.org/expert/19744 -https://www.oceanexpert.org/expert/42960 -https://www.oceanexpert.org/expert/30251 -https://www.oceanexpert.org/expert/14059 -https://www.oceanexpert.org/expert/43211 -https://www.oceanexpert.org/expert/27852 -https://www.oceanexpert.org/expert/47665 -https://www.oceanexpert.org/institution/12233 -https://www.oceanexpert.org/institution/18212 -https://www.oceanexpert.org/expert/48822 -https://www.oceanexpert.org/institution/11697 -https://www.oceanexpert.org/expert/44344 -https://www.oceanexpert.org/expert/22524 -https://www.oceanexpert.org/expert/32396 -https://www.oceanexpert.org/expert/24730 -https://www.oceanexpert.org/expert/22664 -https://www.oceanexpert.org/institution/18722 -https://www.oceanexpert.org/expert/13907 -https://www.oceanexpert.org/expert/22336 -https://www.oceanexpert.org/expert/42920 -https://www.oceanexpert.org/institution/14422 -https://www.oceanexpert.org/event/324 -https://www.oceanexpert.org/expert/44762 -https://www.oceanexpert.org/expert/6869 -https://www.oceanexpert.org/event/2982 -https://www.oceanexpert.org/expert/25495 -https://www.oceanexpert.org/expert/25438 -https://www.oceanexpert.org/expert/25068 -https://www.oceanexpert.org/institution/13793 -https://www.oceanexpert.org/expert/30214 -https://www.oceanexpert.org/expert/27083 -https://www.oceanexpert.org/event/942 -https://www.oceanexpert.org/expert/46141 -https://www.oceanexpert.org/expert/31510 -https://www.oceanexpert.org/institution/21655 -https://www.oceanexpert.org/expert/22366 -https://www.oceanexpert.org/institution/14489 -https://www.oceanexpert.org/institution/20425 -https://www.oceanexpert.org/institution/12908 -https://www.oceanexpert.org/institution/20999 -https://www.oceanexpert.org/expert/6778 -https://www.oceanexpert.org/expert/39331 -https://www.oceanexpert.org/expert/30384 -https://www.oceanexpert.org/institution/19559 -https://www.oceanexpert.org/expert/48880 -https://www.oceanexpert.org/expert/19846 -https://www.oceanexpert.org/expert/48866 -https://www.oceanexpert.org/expert/16783 -https://www.oceanexpert.org/expert/37194 -https://www.oceanexpert.org/institution/22045 -https://www.oceanexpert.org/expert/29894 -https://www.oceanexpert.org/expert/19927 -https://www.oceanexpert.org/institution/21948 -https://www.oceanexpert.org/expert/26130 -https://www.oceanexpert.org/institution/19353 -https://www.oceanexpert.org/institution/14199 -https://www.oceanexpert.org/expert/48836 -https://www.oceanexpert.org/institution/19272 -https://www.oceanexpert.org/expert/43191 -https://www.oceanexpert.org/expert/17721 -https://www.oceanexpert.org/event/2528 -https://www.oceanexpert.org/expert/47928 -https://www.oceanexpert.org/expert/25054 -https://www.oceanexpert.org/expert/39193 -https://www.oceanexpert.org/institution/19486 -https://www.oceanexpert.org/institution/21575 -https://www.oceanexpert.org/expert/20429 -https://www.oceanexpert.org/institution/10506 -https://www.oceanexpert.org/event/2412 -https://www.oceanexpert.org/expert/36950 -https://www.oceanexpert.org/event/616 -https://www.oceanexpert.org/expert/26768 -https://www.oceanexpert.org/expert/43611 -https://www.oceanexpert.org/expert/7186 -https://www.oceanexpert.org/expert/6623 -https://www.oceanexpert.org/expert/44045 -https://www.oceanexpert.org/expert/29919 -https://www.oceanexpert.org/expert/33249 -https://www.oceanexpert.org/event/2190 -https://www.oceanexpert.org/event/2997 -https://www.oceanexpert.org/expert/22341 -https://www.oceanexpert.org/expert/16187 -https://www.oceanexpert.org/institution/8299 -https://www.oceanexpert.org/event/2368 -https://www.oceanexpert.org/event/1098 -https://www.oceanexpert.org/expert/15471 -https://www.oceanexpert.org/expert/34218 -https://www.oceanexpert.org/expert/17347 -https://www.oceanexpert.org/expert/47548 -https://www.oceanexpert.org/expert/33168 -https://www.oceanexpert.org/institution/12940 -https://www.oceanexpert.org/expert/45383 -https://www.oceanexpert.org/expert/45481 -https://www.oceanexpert.org/institution/6514 -https://www.oceanexpert.org/expert/42769 -https://www.oceanexpert.org/expert/24884 -https://www.oceanexpert.org/expert/36769 -https://www.oceanexpert.org/expert/20607 -https://www.oceanexpert.org/expert/32545 -https://www.oceanexpert.org/expert/32602 -https://www.oceanexpert.org/event/1018 -https://www.oceanexpert.org/expert/30935 -https://www.oceanexpert.org/institution/18388 -https://www.oceanexpert.org/expert/23527 -https://www.oceanexpert.org/institution/21272 -https://www.oceanexpert.org/institution/21070 -https://www.oceanexpert.org/expert/26504 -https://www.oceanexpert.org/institution/21781 -https://www.oceanexpert.org/expert/19663 -https://www.oceanexpert.org/expert/30585 -https://www.oceanexpert.org/event/1917 -https://www.oceanexpert.org/expert/25747 -https://www.oceanexpert.org/event/1189 -https://www.oceanexpert.org/event/2276 -https://www.oceanexpert.org/institution/10664 -https://www.oceanexpert.org/expert/28260 -https://www.oceanexpert.org/expert/32146 -https://www.oceanexpert.org/expert/26915 -https://www.oceanexpert.org/expert/32228 -https://www.oceanexpert.org/expert/29957 -https://www.oceanexpert.org/expert/29883 -https://www.oceanexpert.org/expert/43312 -https://www.oceanexpert.org/institution/7263 -https://www.oceanexpert.org/expert/21737 -https://www.oceanexpert.org/expert/25187 -https://www.oceanexpert.org/event/1736 -https://www.oceanexpert.org/expert/25853 -https://www.oceanexpert.org/expert/36488 -https://www.oceanexpert.org/expert/25496 -https://www.oceanexpert.org/expert/17291 -https://www.oceanexpert.org/expert/41410 -https://www.oceanexpert.org/expert/20046 -https://www.oceanexpert.org/event/2505 -https://www.oceanexpert.org/expert/27731 -https://www.oceanexpert.org/expert/48453 -https://www.oceanexpert.org/expert/4886 -https://www.oceanexpert.org/institution/18318 -https://www.oceanexpert.org/institution/18480 -https://www.oceanexpert.org/event/2469 -https://www.oceanexpert.org/expert/44421 -https://www.oceanexpert.org/event/2871 -https://www.oceanexpert.org/expert/46647 -https://www.oceanexpert.org/expert/38906 -https://www.oceanexpert.org/expert/40611 -https://www.oceanexpert.org/event/1022 -https://www.oceanexpert.org/expert/15034 -https://www.oceanexpert.org/expert/13287 -https://www.oceanexpert.org/expert/37792 -https://www.oceanexpert.org/expert/13948 -https://www.oceanexpert.org/institution/21883 -https://www.oceanexpert.org/expert/8949 -https://www.oceanexpert.org/institution/18066 -https://www.oceanexpert.org/expert/34936 -https://www.oceanexpert.org/institution/18402 -https://www.oceanexpert.org/expert/19899 -https://www.oceanexpert.org/institution/19954 -https://www.oceanexpert.org/event/1796 -https://www.oceanexpert.org/expert/16435 -https://www.oceanexpert.org/expert/45951 -https://www.oceanexpert.org/institution/7937 -https://www.oceanexpert.org/expert/7034 -https://www.oceanexpert.org/expert/27501 -https://www.oceanexpert.org/expert/17456 -https://www.oceanexpert.org/institution/21504 -https://www.oceanexpert.org/expert/24061 -https://www.oceanexpert.org/expert/33619 -https://www.oceanexpert.org/expert/23150 -https://www.oceanexpert.org/expert/47151 -https://www.oceanexpert.org/expert/31886 -https://www.oceanexpert.org/event/554 -https://www.oceanexpert.org/expert/18452 -https://www.oceanexpert.org/expert/25693 -https://www.oceanexpert.org/institution/18921 -https://www.oceanexpert.org/institution/8718 -https://www.oceanexpert.org/expert/46316 -https://www.oceanexpert.org/expert/47526 -https://www.oceanexpert.org/expert/36027 -https://www.oceanexpert.org/expert/33364 -https://www.oceanexpert.org/institution/18364 -https://www.oceanexpert.org/institution/13912 -https://www.oceanexpert.org/expert/2559 -https://www.oceanexpert.org/institution/15152 -https://www.oceanexpert.org/event/1688 -https://www.oceanexpert.org/expert/44807 -https://www.oceanexpert.org/institution/19280 -https://www.oceanexpert.org/expert/22961 -https://www.oceanexpert.org/expert/25448 -https://www.oceanexpert.org/expert/37105 -https://www.oceanexpert.org/expert/46905 -https://www.oceanexpert.org/institution/5264 -https://www.oceanexpert.org/expert/16429 -https://www.oceanexpert.org/expert/22240 -https://www.oceanexpert.org/expert/35246 -https://www.oceanexpert.org/institution/13252 -https://www.oceanexpert.org/event/1744 -https://www.oceanexpert.org/institution/18312 -https://www.oceanexpert.org/institution/15826 -https://www.oceanexpert.org/expert/29142 -https://www.oceanexpert.org/expert/34485 -https://www.oceanexpert.org/expert/18857 -https://www.oceanexpert.org/institution/10551 -https://www.oceanexpert.org/expert/8524 -https://www.oceanexpert.org/institution/17677 -https://www.oceanexpert.org/institution/18886 -https://www.oceanexpert.org/expert/20714 -https://www.oceanexpert.org/expert/32888 -https://www.oceanexpert.org/expert/35671 -https://www.oceanexpert.org/expert/30594 -https://www.oceanexpert.org/expert/22412 -https://www.oceanexpert.org/institution/14890 -https://www.oceanexpert.org/expert/48855 -https://www.oceanexpert.org/institution/20716 -https://www.oceanexpert.org/expert/32824 -https://www.oceanexpert.org/institution/20342 -https://www.oceanexpert.org/expert/18829 -https://www.oceanexpert.org/expert/18361 -https://www.oceanexpert.org/institution/14598 -https://www.oceanexpert.org/expert/37615 -https://www.oceanexpert.org/expert/46100 -https://www.oceanexpert.org/expert/25143 -https://www.oceanexpert.org/institution/10457 -https://www.oceanexpert.org/expert/48321 -https://www.oceanexpert.org/institution/16408 -https://www.oceanexpert.org/institution/4889 -https://www.oceanexpert.org/institution/18795 -https://www.oceanexpert.org/event/2680 -https://www.oceanexpert.org/expert/24632 -https://www.oceanexpert.org/expert/27664 -https://www.oceanexpert.org/expert/38125 -https://www.oceanexpert.org/expert/19184 -https://www.oceanexpert.org/event/2527 -https://www.oceanexpert.org/institution/12031 -https://www.oceanexpert.org/expert/33692 -https://www.oceanexpert.org/expert/16244 -https://www.oceanexpert.org/institution/15842 -https://www.oceanexpert.org/expert/36894 -https://www.oceanexpert.org/institution/20152 -https://www.oceanexpert.org/institution/20241 -https://www.oceanexpert.org/expert/32203 -https://www.oceanexpert.org/institution/11376 -https://www.oceanexpert.org/expert/15301 -https://www.oceanexpert.org/expert/45824 -https://www.oceanexpert.org/expert/23566 -https://www.oceanexpert.org/expert/47320 -https://www.oceanexpert.org/expert/28098 -https://www.oceanexpert.org/institution/22029 -https://www.oceanexpert.org/expert/24768 -https://www.oceanexpert.org/institution/19617 -https://www.oceanexpert.org/expert/24674 -https://www.oceanexpert.org/expert/13306 -https://www.oceanexpert.org/expert/40337 -https://www.oceanexpert.org/expert/4190 -https://www.oceanexpert.org/expert/31001 -https://www.oceanexpert.org/expert/52 -https://www.oceanexpert.org/expert/14923 -https://www.oceanexpert.org/event/1611 -https://www.oceanexpert.org/expert/36273 -https://www.oceanexpert.org/expert/39666 -https://www.oceanexpert.org/expert/25678 -https://www.oceanexpert.org/institution/18839 -https://www.oceanexpert.org/institution/16808 -https://www.oceanexpert.org/expert/8634 -https://www.oceanexpert.org/expert/36606 -https://www.oceanexpert.org/institution/18352 -https://www.oceanexpert.org/expert/37351 -https://www.oceanexpert.org/expert/22128 -https://www.oceanexpert.org/institution/18670 -https://www.oceanexpert.org/expert/21037 -https://www.oceanexpert.org/expert/26315 -https://www.oceanexpert.org/expert/19132 -https://www.oceanexpert.org/expert/42386 -https://www.oceanexpert.org/expert/24158 -https://www.oceanexpert.org/expert/30293 -https://www.oceanexpert.org/expert/22494 -https://www.oceanexpert.org/institution/20785 -https://www.oceanexpert.org/institution/12286 -https://www.oceanexpert.org/expert/1456 -https://www.oceanexpert.org/expert/45139 -https://www.oceanexpert.org/institution/14179 -https://www.oceanexpert.org/expert/32491 -https://www.oceanexpert.org/expert/21716 -https://www.oceanexpert.org/expert/3546 -https://www.oceanexpert.org/expert/12765 -https://www.oceanexpert.org/expert/34233 -https://www.oceanexpert.org/expert/24785 -https://www.oceanexpert.org/institution/17601 -https://www.oceanexpert.org/expert/28201 -https://www.oceanexpert.org/expert/36403 -https://www.oceanexpert.org/institution/12056 -https://www.oceanexpert.org/expert/29626 -https://www.oceanexpert.org/expert/26515 -https://www.oceanexpert.org/institution/17044 -https://www.oceanexpert.org/expert/38606 -https://www.oceanexpert.org/institution/8233 -https://www.oceanexpert.org/expert/21855 -https://www.oceanexpert.org/institution/5074 -https://www.oceanexpert.org/institution/9184 -https://www.oceanexpert.org/expert/44967 -https://www.oceanexpert.org/expert/35269 -https://www.oceanexpert.org/expert/17177 -https://www.oceanexpert.org/expert/46950 -https://www.oceanexpert.org/expert/44849 -https://www.oceanexpert.org/institution/18612 -https://www.oceanexpert.org/expert/39092 -https://www.oceanexpert.org/expert/40903 -https://www.oceanexpert.org/event/1099 -https://www.oceanexpert.org/expert/35376 -https://www.oceanexpert.org/expert/20765 -https://www.oceanexpert.org/expert/27384 -https://www.oceanexpert.org/expert/46515 -https://www.oceanexpert.org/expert/22663 -https://www.oceanexpert.org/expert/29604 -https://www.oceanexpert.org/expert/21112 -https://www.oceanexpert.org/expert/13683 -https://www.oceanexpert.org/expert/46457 -https://www.oceanexpert.org/institution/15903 -https://www.oceanexpert.org/institution/7924 -https://www.oceanexpert.org/event/2587 -https://www.oceanexpert.org/expert/18685 -https://www.oceanexpert.org/expert/33469 -https://www.oceanexpert.org/institution/20671 -https://www.oceanexpert.org/expert/46111 -https://www.oceanexpert.org/institution/22143 -https://www.oceanexpert.org/event/95 -https://www.oceanexpert.org/event/1923 -https://www.oceanexpert.org/expert/17123 -https://www.oceanexpert.org/institution/19977 -https://www.oceanexpert.org/institution/12068 -https://www.oceanexpert.org/institution/21779 -https://www.oceanexpert.org/institution/18867 -https://www.oceanexpert.org/expert/21602 -https://www.oceanexpert.org/expert/726 -https://www.oceanexpert.org/event/126 -https://www.oceanexpert.org/institution/11462 -https://www.oceanexpert.org/expert/3989 -https://www.oceanexpert.org/expert/18682 -https://www.oceanexpert.org/expert/13199 -https://www.oceanexpert.org/event/2270 -https://www.oceanexpert.org/event/1036 -https://www.oceanexpert.org/institution/9358 -https://www.oceanexpert.org/expert/15311 -https://www.oceanexpert.org/event/955 -https://www.oceanexpert.org/institution/18861 -https://www.oceanexpert.org/expert/32172 -https://www.oceanexpert.org/expert/38416 -https://www.oceanexpert.org/institution/20207 -https://www.oceanexpert.org/expert/35950 -https://www.oceanexpert.org/expert/26179 -https://www.oceanexpert.org/expert/28302 -https://www.oceanexpert.org/institution/14761 -https://www.oceanexpert.org/expert/26071 -https://www.oceanexpert.org/event/341 -https://www.oceanexpert.org/institution/17528 -https://www.oceanexpert.org/expert/26825 -https://www.oceanexpert.org/expert/44961 -https://www.oceanexpert.org/event/3246 -https://www.oceanexpert.org/expert/18365 -https://www.oceanexpert.org/expert/32479 -https://www.oceanexpert.org/expert/27311 -https://www.oceanexpert.org/expert/34676 -https://www.oceanexpert.org/institution/6671 -https://www.oceanexpert.org/expert/31126 -https://www.oceanexpert.org/institution/19421 -https://www.oceanexpert.org/expert/46072 -https://www.oceanexpert.org/expert/40204 -https://www.oceanexpert.org/institution/12725 -https://www.oceanexpert.org/expert/39045 -https://www.oceanexpert.org/institution/20668 -https://www.oceanexpert.org/event/2747 -https://www.oceanexpert.org/expert/23204 -https://www.oceanexpert.org/institution/16309 -https://www.oceanexpert.org/institution/18623 -https://www.oceanexpert.org/expert/48611 -https://www.oceanexpert.org/expert/28374 -https://www.oceanexpert.org/expert/12875 -https://www.oceanexpert.org/expert/14876 -https://www.oceanexpert.org/expert/18890 -https://www.oceanexpert.org/expert/22520 -https://www.oceanexpert.org/institution/17910 -https://www.oceanexpert.org/expert/21281 -https://www.oceanexpert.org/expert/6187 -https://www.oceanexpert.org/expert/46019 -https://www.oceanexpert.org/institution/18601 -https://www.oceanexpert.org/institution/21906 -https://www.oceanexpert.org/expert/25848 -https://www.oceanexpert.org/expert/40924 -https://www.oceanexpert.org/institution/17689 -https://www.oceanexpert.org/institution/19461 -https://www.oceanexpert.org/event/1298 -https://www.oceanexpert.org/expert/36087 -https://www.oceanexpert.org/institution/13680 -https://www.oceanexpert.org/expert/19896 -https://www.oceanexpert.org/institution/18187 -https://www.oceanexpert.org/expert/29308 -https://www.oceanexpert.org/expert/26069 -https://www.oceanexpert.org/event/318 -https://www.oceanexpert.org/event/1164 -https://www.oceanexpert.org/expert/45669 -https://www.oceanexpert.org/institution/15867 -https://www.oceanexpert.org/institution/17779 -https://www.oceanexpert.org/expert/30554 -https://www.oceanexpert.org/expert/36331 -https://www.oceanexpert.org/event/537 -https://www.oceanexpert.org/expert/36862 -https://www.oceanexpert.org/event/2627 -https://www.oceanexpert.org/expert/30638 -https://www.oceanexpert.org/expert/45045 -https://www.oceanexpert.org/expert/9148 -https://www.oceanexpert.org/expert/43831 -https://www.oceanexpert.org/institution/12574 -https://www.oceanexpert.org/institution/10097 -https://www.oceanexpert.org/institution/16731 -https://www.oceanexpert.org/institution/8739 -https://www.oceanexpert.org/event/2519 -https://www.oceanexpert.org/expert/12803 -https://www.oceanexpert.org/event/2853 -https://www.oceanexpert.org/institution/18134 -https://www.oceanexpert.org/expert/27825 -https://www.oceanexpert.org/expert/45245 -https://www.oceanexpert.org/event/1576 -https://www.oceanexpert.org/expert/37819 -https://www.oceanexpert.org/institution/21454 -https://www.oceanexpert.org/expert/36517 -https://www.oceanexpert.org/institution/14388 -https://www.oceanexpert.org/event/717 -https://www.oceanexpert.org/expert/22585 -https://www.oceanexpert.org/institution/18897 -https://www.oceanexpert.org/expert/24882 -https://www.oceanexpert.org/expert/25215 -https://www.oceanexpert.org/expert/24779 -https://www.oceanexpert.org/expert/33378 -https://www.oceanexpert.org/institution/6717 -https://www.oceanexpert.org/expert/6934 -https://www.oceanexpert.org/expert/34054 -https://www.oceanexpert.org/institution/20785 -https://www.oceanexpert.org/expert/19142 -https://www.oceanexpert.org/event/3083 -https://www.oceanexpert.org/expert/7547 -https://www.oceanexpert.org/expert/22888 -https://www.oceanexpert.org/expert/35092 -https://www.oceanexpert.org/institution/10807 -https://www.oceanexpert.org/event/1879 -https://www.oceanexpert.org/expert/25084 -https://www.oceanexpert.org/institution/18016 -https://www.oceanexpert.org/expert/19306 -https://www.oceanexpert.org/expert/44971 -https://www.oceanexpert.org/expert/39304 -https://www.oceanexpert.org/expert/42502 -https://www.oceanexpert.org/expert/7200 -https://www.oceanexpert.org/institution/14054 -https://www.oceanexpert.org/institution/17774 -https://www.oceanexpert.org/event/2994 -https://www.oceanexpert.org/institution/22047 -https://www.oceanexpert.org/expert/20416 -https://www.oceanexpert.org/expert/48600 -https://www.oceanexpert.org/institution/18473 -https://www.oceanexpert.org/expert/16266 -https://www.oceanexpert.org/expert/39977 -https://www.oceanexpert.org/expert/22157 -https://www.oceanexpert.org/expert/45431 -https://www.oceanexpert.org/institution/14059 -https://www.oceanexpert.org/expert/33001 -https://www.oceanexpert.org/expert/30875 -https://www.oceanexpert.org/expert/46554 -https://www.oceanexpert.org/expert/14829 -https://www.oceanexpert.org/expert/22454 -https://www.oceanexpert.org/expert/19221 -https://www.oceanexpert.org/expert/24036 -https://www.oceanexpert.org/expert/23594 -https://www.oceanexpert.org/expert/40066 -https://www.oceanexpert.org/institution/14922 -https://www.oceanexpert.org/expert/48259 -https://www.oceanexpert.org/event/2953 -https://www.oceanexpert.org/institution/18916 -https://www.oceanexpert.org/expert/18208 -https://www.oceanexpert.org/expert/46401 -https://www.oceanexpert.org/expert/26616 -https://www.oceanexpert.org/expert/21157 -https://www.oceanexpert.org/event/2276 -https://www.oceanexpert.org/institution/12333 -https://www.oceanexpert.org/event/992 -https://www.oceanexpert.org/institution/9145 -https://www.oceanexpert.org/expert/30747 -https://www.oceanexpert.org/institution/7424 -https://www.oceanexpert.org/institution/13031 -https://www.oceanexpert.org/expert/16667 -https://www.oceanexpert.org/expert/7766 -https://www.oceanexpert.org/expert/36173 -https://www.oceanexpert.org/event/2262 -https://www.oceanexpert.org/event/222 -https://www.oceanexpert.org/expert/29874 -https://www.oceanexpert.org/event/2075 -https://www.oceanexpert.org/institution/20413 -https://www.oceanexpert.org/institution/6190 -https://www.oceanexpert.org/institution/22077 -https://www.oceanexpert.org/institution/20265 -https://www.oceanexpert.org/expert/4230 -https://www.oceanexpert.org/expert/27670 -https://www.oceanexpert.org/expert/28718 -https://www.oceanexpert.org/event/2944 -https://www.oceanexpert.org/expert/43452 -https://www.oceanexpert.org/institution/14120 -https://www.oceanexpert.org/expert/46102 -https://www.oceanexpert.org/institution/11745 -https://www.oceanexpert.org/institution/14933 -https://www.oceanexpert.org/event/2498 -https://www.oceanexpert.org/expert/42548 -https://www.oceanexpert.org/expert/16925 -https://www.oceanexpert.org/expert/25290 -https://www.oceanexpert.org/expert/43063 -https://www.oceanexpert.org/expert/23673 -https://www.oceanexpert.org/expert/25982 -https://www.oceanexpert.org/expert/42987 -https://www.oceanexpert.org/event/125 -https://www.oceanexpert.org/expert/42813 -https://www.oceanexpert.org/expert/25484 -https://www.oceanexpert.org/expert/2235 -https://www.oceanexpert.org/expert/19366 -https://www.oceanexpert.org/institution/18863 -https://www.oceanexpert.org/event/1368 -https://www.oceanexpert.org/expert/32594 -https://www.oceanexpert.org/expert/22934 -https://www.oceanexpert.org/expert/11721 -https://www.oceanexpert.org/expert/42863 -https://www.oceanexpert.org/institution/21449 -https://www.oceanexpert.org/event/2825 -https://www.oceanexpert.org/expert/22342 -https://www.oceanexpert.org/institution/17857 -https://www.oceanexpert.org/expert/19951 -https://www.oceanexpert.org/institution/11808 -https://www.oceanexpert.org/expert/9173 -https://www.oceanexpert.org/expert/33271 -https://www.oceanexpert.org/expert/35042 -https://www.oceanexpert.org/expert/27937 -https://www.oceanexpert.org/expert/13885 -https://www.oceanexpert.org/expert/42506 -https://www.oceanexpert.org/expert/19220 -https://www.oceanexpert.org/institution/21628 -https://www.oceanexpert.org/institution/15911 -https://www.oceanexpert.org/institution/19264 -https://www.oceanexpert.org/event/302 -https://www.oceanexpert.org/expert/35797 -https://www.oceanexpert.org/expert/26878 -https://www.oceanexpert.org/institution/13043 -https://www.oceanexpert.org/expert/45607 -https://www.oceanexpert.org/expert/26159 -https://www.oceanexpert.org/event/213 -https://www.oceanexpert.org/expert/18200 -https://www.oceanexpert.org/expert/46312 -https://www.oceanexpert.org/institution/22067 -https://www.oceanexpert.org/expert/45806 -https://www.oceanexpert.org/expert/26394 -https://www.oceanexpert.org/expert/30186 -https://www.oceanexpert.org/expert/26843 -https://www.oceanexpert.org/expert/43163 -https://www.oceanexpert.org/event/553 -https://www.oceanexpert.org/expert/46437 -https://www.oceanexpert.org/institution/16096 -https://www.oceanexpert.org/institution/17272 -https://www.oceanexpert.org/expert/6583 -https://www.oceanexpert.org/expert/20948 -https://www.oceanexpert.org/institution/18078 -https://www.oceanexpert.org/institution/18730 -https://www.oceanexpert.org/expert/23431 -https://www.oceanexpert.org/institution/11399 -https://www.oceanexpert.org/expert/27974 -https://www.oceanexpert.org/expert/36389 -https://www.oceanexpert.org/expert/33101 -https://www.oceanexpert.org/expert/47239 -https://www.oceanexpert.org/event/1269 -https://www.oceanexpert.org/expert/18631 -https://www.oceanexpert.org/expert/7379 -https://www.oceanexpert.org/expert/21260 -https://www.oceanexpert.org/expert/1983 -https://www.oceanexpert.org/expert/40133 -https://www.oceanexpert.org/expert/31140 -https://www.oceanexpert.org/event/684 -https://www.oceanexpert.org/expert/48181 -https://www.oceanexpert.org/event/330 -https://www.oceanexpert.org/expert/21545 -https://www.oceanexpert.org/expert/18681 -https://www.oceanexpert.org/expert/26807 -https://www.oceanexpert.org/expert/36397 -https://www.oceanexpert.org/expert/38056 -https://www.oceanexpert.org/expert/47975 -https://www.oceanexpert.org/institution/18834 -https://www.oceanexpert.org/expert/26453 -https://www.oceanexpert.org/expert/23874 -https://www.oceanexpert.org/institution/20867 -https://www.oceanexpert.org/institution/21785 -https://www.oceanexpert.org/expert/30802 -https://www.oceanexpert.org/expert/18070 -https://www.oceanexpert.org/expert/22888 -https://www.oceanexpert.org/institution/21989 -https://www.oceanexpert.org/institution/17574 -https://www.oceanexpert.org/expert/27292 -https://www.oceanexpert.org/expert/32293 -https://www.oceanexpert.org/institution/19515 -https://www.oceanexpert.org/institution/12616 -https://www.oceanexpert.org/expert/17643 -https://www.oceanexpert.org/event/1847 -https://www.oceanexpert.org/expert/34691 -https://www.oceanexpert.org/institution/18499 -https://www.oceanexpert.org/expert/24270 -https://www.oceanexpert.org/expert/2295 -https://www.oceanexpert.org/event/2228 -https://www.oceanexpert.org/expert/37155 -https://www.oceanexpert.org/event/2488 -https://www.oceanexpert.org/expert/43082 -https://www.oceanexpert.org/institution/5605 -https://www.oceanexpert.org/expert/11316 -https://www.oceanexpert.org/expert/46055 -https://www.oceanexpert.org/expert/36529 -https://www.oceanexpert.org/institution/12230 -https://www.oceanexpert.org/expert/36269 -https://www.oceanexpert.org/expert/31209 -https://www.oceanexpert.org/expert/24087 -https://www.oceanexpert.org/expert/43834 -https://www.oceanexpert.org/institution/16907 -https://www.oceanexpert.org/institution/17015 -https://www.oceanexpert.org/institution/11111 -https://www.oceanexpert.org/event/1195 -https://www.oceanexpert.org/expert/29136 -https://www.oceanexpert.org/expert/35114 -https://www.oceanexpert.org/expert/18685 -https://www.oceanexpert.org/expert/17313 -https://www.oceanexpert.org/expert/44457 -https://www.oceanexpert.org/expert/23981 -https://www.oceanexpert.org/expert/44439 -https://www.oceanexpert.org/expert/29508 -https://www.oceanexpert.org/institution/10516 -https://www.oceanexpert.org/expert/12092 -https://www.oceanexpert.org/institution/21320 -https://www.oceanexpert.org/expert/33368 -https://www.oceanexpert.org/expert/48928 -https://www.oceanexpert.org/event/3267 -https://www.oceanexpert.org/expert/1702 -https://www.oceanexpert.org/expert/42927 -https://www.oceanexpert.org/institution/21677 -https://www.oceanexpert.org/expert/20358 -https://www.oceanexpert.org/institution/11228 -https://www.oceanexpert.org/expert/24135 -https://www.oceanexpert.org/expert/26402 -https://www.oceanexpert.org/expert/28465 -https://www.oceanexpert.org/event/1544 -https://www.oceanexpert.org/expert/35836 -https://www.oceanexpert.org/expert/35751 -https://www.oceanexpert.org/institution/10149 -https://www.oceanexpert.org/expert/39519 -https://www.oceanexpert.org/expert/12728 -https://www.oceanexpert.org/expert/22044 -https://www.oceanexpert.org/institution/12496 -https://www.oceanexpert.org/expert/47417 -https://www.oceanexpert.org/expert/22641 -https://www.oceanexpert.org/institution/17923 -https://www.oceanexpert.org/event/2696 -https://www.oceanexpert.org/expert/33363 -https://www.oceanexpert.org/expert/25934 -https://www.oceanexpert.org/expert/24988 -https://www.oceanexpert.org/expert/23389 -https://www.oceanexpert.org/expert/3243 -https://www.oceanexpert.org/expert/34343 -https://www.oceanexpert.org/expert/16792 -https://www.oceanexpert.org/expert/29918 -https://www.oceanexpert.org/event/2272 -https://www.oceanexpert.org/expert/23893 -https://www.oceanexpert.org/expert/19214 -https://www.oceanexpert.org/expert/17773 -https://www.oceanexpert.org/expert/2775 -https://www.oceanexpert.org/institution/21909 -https://www.oceanexpert.org/expert/43262 -https://www.oceanexpert.org/expert/32310 -https://www.oceanexpert.org/expert/42869 -https://www.oceanexpert.org/expert/46247 -https://www.oceanexpert.org/institution/17970 -https://www.oceanexpert.org/expert/25667 -https://www.oceanexpert.org/expert/1791 -https://www.oceanexpert.org/expert/25505 -https://www.oceanexpert.org/institution/18122 -https://www.oceanexpert.org/expert/9546 -https://www.oceanexpert.org/event/2874 -https://www.oceanexpert.org/expert/15835 -https://www.oceanexpert.org/expert/26075 -https://www.oceanexpert.org/expert/8401 -https://www.oceanexpert.org/institution/22045 -https://www.oceanexpert.org/expert/33321 -https://www.oceanexpert.org/expert/44068 -https://www.oceanexpert.org/expert/18728 -https://www.oceanexpert.org/expert/26700 -https://www.oceanexpert.org/expert/17558 -https://www.oceanexpert.org/expert/30006 -https://www.oceanexpert.org/expert/19345 -https://www.oceanexpert.org/expert/22408 -https://www.oceanexpert.org/expert/30865 -https://www.oceanexpert.org/expert/12977 -https://www.oceanexpert.org/expert/22279 -https://www.oceanexpert.org/expert/28502 -https://www.oceanexpert.org/expert/37081 -https://www.oceanexpert.org/expert/43260 -https://www.oceanexpert.org/expert/27089 -https://www.oceanexpert.org/institution/10646 -https://www.oceanexpert.org/expert/22686 -https://www.oceanexpert.org/expert/31244 -https://www.oceanexpert.org/expert/44473 -https://www.oceanexpert.org/expert/27770 -https://www.oceanexpert.org/institution/10505 -https://www.oceanexpert.org/expert/8212 -https://www.oceanexpert.org/expert/43659 -https://www.oceanexpert.org/institution/5562 -https://www.oceanexpert.org/expert/29788 -https://www.oceanexpert.org/expert/44304 -https://www.oceanexpert.org/event/38 -https://www.oceanexpert.org/institution/11289 -https://www.oceanexpert.org/expert/32440 -https://www.oceanexpert.org/expert/45328 -https://www.oceanexpert.org/expert/46712 -https://www.oceanexpert.org/expert/19481 -https://www.oceanexpert.org/expert/43621 -https://www.oceanexpert.org/expert/35773 -https://www.oceanexpert.org/institution/20820 -https://www.oceanexpert.org/institution/20624 -https://www.oceanexpert.org/expert/34859 -https://www.oceanexpert.org/event/2738 -https://www.oceanexpert.org/expert/10847 -https://www.oceanexpert.org/expert/32849 -https://www.oceanexpert.org/institution/12550 -https://www.oceanexpert.org/expert/32679 -https://www.oceanexpert.org/event/1293 -https://www.oceanexpert.org/expert/44592 -https://www.oceanexpert.org/expert/27440 -https://www.oceanexpert.org/institution/12786 -https://www.oceanexpert.org/expert/48083 -https://www.oceanexpert.org/institution/19325 -https://www.oceanexpert.org/expert/34553 -https://www.oceanexpert.org/expert/3186 -https://www.oceanexpert.org/institution/21561 -https://www.oceanexpert.org/institution/21058 -https://www.oceanexpert.org/expert/25179 -https://www.oceanexpert.org/expert/45460 -https://www.oceanexpert.org/expert/12951 -https://www.oceanexpert.org/expert/19602 -https://www.oceanexpert.org/event/1433 -https://www.oceanexpert.org/expert/26730 -https://www.oceanexpert.org/expert/1294 -https://www.oceanexpert.org/expert/43928 -https://www.oceanexpert.org/institution/15778 -https://www.oceanexpert.org/institution/17222 -https://www.oceanexpert.org/expert/34110 -https://www.oceanexpert.org/expert/32860 -https://www.oceanexpert.org/event/1296 -https://www.oceanexpert.org/expert/20207 -https://www.oceanexpert.org/expert/4767 -https://www.oceanexpert.org/expert/25140 -https://www.oceanexpert.org/expert/2182 -https://www.oceanexpert.org/expert/43964 -https://www.oceanexpert.org/expert/32794 -https://www.oceanexpert.org/institution/18302 -https://www.oceanexpert.org/event/2673 -https://www.oceanexpert.org/institution/19534 -https://www.oceanexpert.org/expert/31370 -https://www.oceanexpert.org/expert/38353 -https://www.oceanexpert.org/institution/12894 -https://www.oceanexpert.org/expert/15360 -https://www.oceanexpert.org/institution/21864 -https://www.oceanexpert.org/expert/24725 -https://www.oceanexpert.org/expert/11316 -https://www.oceanexpert.org/event/2093 -https://www.oceanexpert.org/expert/39255 -https://www.oceanexpert.org/expert/43742 -https://www.oceanexpert.org/expert/43959 -https://www.oceanexpert.org/expert/16157 -https://www.oceanexpert.org/institution/16384 -https://www.oceanexpert.org/expert/20389 -https://www.oceanexpert.org/expert/46685 -https://www.oceanexpert.org/institution/18721 -https://www.oceanexpert.org/expert/738 -https://www.oceanexpert.org/expert/20346 -https://www.oceanexpert.org/expert/45194 -https://www.oceanexpert.org/event/118 -https://www.oceanexpert.org/expert/11704 -https://www.oceanexpert.org/expert/20257 -https://www.oceanexpert.org/institution/12611 -https://www.oceanexpert.org/expert/15541 -https://www.oceanexpert.org/event/420 -https://www.oceanexpert.org/expert/29205 -https://www.oceanexpert.org/expert/47866 -https://www.oceanexpert.org/institution/14492 -https://www.oceanexpert.org/expert/26681 -https://www.oceanexpert.org/expert/34115 -https://www.oceanexpert.org/event/2463 -https://www.oceanexpert.org/expert/18791 -https://www.oceanexpert.org/expert/14597 -https://www.oceanexpert.org/expert/26949 -https://www.oceanexpert.org/expert/20456 -https://www.oceanexpert.org/institution/14009 -https://www.oceanexpert.org/expert/40528 -https://www.oceanexpert.org/expert/12941 -https://www.oceanexpert.org/expert/27074 -https://www.oceanexpert.org/expert/33715 -https://www.oceanexpert.org/expert/25268 -https://www.oceanexpert.org/event/27 -https://www.oceanexpert.org/institution/10784 -https://www.oceanexpert.org/expert/18786 -https://www.oceanexpert.org/institution/20396 -https://www.oceanexpert.org/event/2707 -https://www.oceanexpert.org/expert/35035 -https://www.oceanexpert.org/event/2436 -https://www.oceanexpert.org/expert/27430 -https://www.oceanexpert.org/event/3046 -https://www.oceanexpert.org/institution/15264 -https://www.oceanexpert.org/event/945 -https://www.oceanexpert.org/institution/19713 -https://www.oceanexpert.org/expert/25478 -https://www.oceanexpert.org/institution/15819 -https://www.oceanexpert.org/expert/45143 -https://www.oceanexpert.org/expert/19970 -https://www.oceanexpert.org/expert/34751 -https://www.oceanexpert.org/expert/29538 -https://www.oceanexpert.org/expert/33626 -https://www.oceanexpert.org/expert/11748 -https://www.oceanexpert.org/expert/26289 -https://www.oceanexpert.org/event/1642 -https://www.oceanexpert.org/expert/45648 -https://www.oceanexpert.org/institution/19405 -https://www.oceanexpert.org/expert/33389 -https://www.oceanexpert.org/event/1356 -https://www.oceanexpert.org/expert/33011 -https://www.oceanexpert.org/institution/12629 -https://www.oceanexpert.org/expert/24406 -https://www.oceanexpert.org/event/2880 -https://www.oceanexpert.org/expert/44896 -https://www.oceanexpert.org/expert/46732 -https://www.oceanexpert.org/institution/21694 -https://www.oceanexpert.org/expert/38879 -https://www.oceanexpert.org/institution/18814 -https://www.oceanexpert.org/institution/16265 -https://www.oceanexpert.org/expert/14285 -https://www.oceanexpert.org/expert/20446 -https://www.oceanexpert.org/expert/26787 -https://www.oceanexpert.org/expert/43992 -https://www.oceanexpert.org/event/1138 -https://www.oceanexpert.org/institution/8034 -https://www.oceanexpert.org/expert/25461 -https://www.oceanexpert.org/institution/11518 -https://www.oceanexpert.org/institution/21021 -https://www.oceanexpert.org/event/2441 -https://www.oceanexpert.org/expert/37232 -https://www.oceanexpert.org/expert/48964 -https://www.oceanexpert.org/institution/9145 -https://www.oceanexpert.org/expert/1290 -https://www.oceanexpert.org/expert/29659 -https://www.oceanexpert.org/institution/15034 -https://www.oceanexpert.org/expert/32075 -https://www.oceanexpert.org/expert/21851 -https://www.oceanexpert.org/expert/23123 -https://www.oceanexpert.org/event/3239 -https://www.oceanexpert.org/event/270 -https://www.oceanexpert.org/expert/32560 -https://www.oceanexpert.org/expert/35352 -https://www.oceanexpert.org/institution/19454 -https://www.oceanexpert.org/expert/13131 -https://www.oceanexpert.org/expert/44308 -https://www.oceanexpert.org/institution/21612 -https://www.oceanexpert.org/expert/34563 -https://www.oceanexpert.org/expert/24092 -https://www.oceanexpert.org/institution/6315 -https://www.oceanexpert.org/expert/28843 -https://www.oceanexpert.org/expert/19131 -https://www.oceanexpert.org/event/3284 -https://www.oceanexpert.org/expert/46260 -https://www.oceanexpert.org/expert/10551 -https://www.oceanexpert.org/expert/48926 -https://www.oceanexpert.org/expert/44574 -https://www.oceanexpert.org/expert/27446 -https://www.oceanexpert.org/expert/49022 -https://www.oceanexpert.org/institution/12019 -https://www.oceanexpert.org/institution/16100 -https://www.oceanexpert.org/institution/8297 -https://www.oceanexpert.org/expert/46691 -https://www.oceanexpert.org/expert/18343 -https://www.oceanexpert.org/expert/40218 -https://www.oceanexpert.org/expert/42973 -https://www.oceanexpert.org/event/1812 -https://www.oceanexpert.org/expert/44460 -https://www.oceanexpert.org/event/3243 -https://www.oceanexpert.org/expert/6269 -https://www.oceanexpert.org/institution/21393 -https://www.oceanexpert.org/expert/16772 -https://www.oceanexpert.org/expert/45430 -https://www.oceanexpert.org/expert/25517 -https://www.oceanexpert.org/institution/18618 -https://www.oceanexpert.org/expert/44594 -https://www.oceanexpert.org/expert/8309 -https://www.oceanexpert.org/expert/46465 -https://www.oceanexpert.org/expert/17332 -https://www.oceanexpert.org/institution/17014 -https://www.oceanexpert.org/institution/14336 -https://www.oceanexpert.org/expert/33336 -https://www.oceanexpert.org/expert/44125 -https://www.oceanexpert.org/institution/11193 -https://www.oceanexpert.org/institution/17720 -https://www.oceanexpert.org/event/411 -https://www.oceanexpert.org/expert/23751 -https://www.oceanexpert.org/expert/26124 -https://www.oceanexpert.org/expert/40886 -https://www.oceanexpert.org/expert/38935 -https://www.oceanexpert.org/expert/33150 -https://www.oceanexpert.org/expert/32649 -https://www.oceanexpert.org/expert/12916 -https://www.oceanexpert.org/expert/42749 -https://www.oceanexpert.org/expert/33409 -https://www.oceanexpert.org/expert/23734 -https://www.oceanexpert.org/expert/39267 -https://www.oceanexpert.org/expert/7182 -https://www.oceanexpert.org/expert/48817 -https://www.oceanexpert.org/expert/47577 -https://www.oceanexpert.org/expert/18564 -https://www.oceanexpert.org/expert/28278 -https://www.oceanexpert.org/event/1214 -https://www.oceanexpert.org/institution/20994 -https://www.oceanexpert.org/event/1256 -https://www.oceanexpert.org/expert/20389 -https://www.oceanexpert.org/institution/11515 -https://www.oceanexpert.org/expert/310 -https://www.oceanexpert.org/institution/14731 -https://www.oceanexpert.org/expert/18317 -https://www.oceanexpert.org/institution/15662 -https://www.oceanexpert.org/expert/32119 -https://www.oceanexpert.org/expert/43896 -https://www.oceanexpert.org/expert/26240 -https://www.oceanexpert.org/institution/13428 -https://www.oceanexpert.org/event/616 -https://www.oceanexpert.org/institution/4893 -https://www.oceanexpert.org/expert/43110 -https://www.oceanexpert.org/expert/32856 -https://www.oceanexpert.org/expert/18660 -https://www.oceanexpert.org/institution/14687 -https://www.oceanexpert.org/expert/43473 -https://www.oceanexpert.org/expert/39743 -https://www.oceanexpert.org/expert/37733 -https://www.oceanexpert.org/expert/43397 -https://www.oceanexpert.org/expert/46449 -https://www.oceanexpert.org/institution/10460 -https://www.oceanexpert.org/expert/46164 -https://www.oceanexpert.org/expert/46867 -https://www.oceanexpert.org/event/2956 -https://www.oceanexpert.org/institution/22059 -https://www.oceanexpert.org/expert/14858 -https://www.oceanexpert.org/expert/16485 -https://www.oceanexpert.org/institution/16737 -https://www.oceanexpert.org/institution/21896 -https://www.oceanexpert.org/institution/17720 -https://www.oceanexpert.org/institution/9868 -https://www.oceanexpert.org/expert/44125 -https://www.oceanexpert.org/expert/34407 -https://www.oceanexpert.org/expert/46896 -https://www.oceanexpert.org/expert/39646 -https://www.oceanexpert.org/expert/36910 -https://www.oceanexpert.org/institution/5083 -https://www.oceanexpert.org/institution/12869 -https://www.oceanexpert.org/institution/18857 -https://www.oceanexpert.org/expert/24311 -https://www.oceanexpert.org/institution/67 -https://www.oceanexpert.org/expert/40604 -https://www.oceanexpert.org/expert/14286 -https://www.oceanexpert.org/institution/9732 -https://www.oceanexpert.org/expert/47652 -https://www.oceanexpert.org/expert/30853 -https://www.oceanexpert.org/expert/24648 -https://www.oceanexpert.org/institution/21026 -https://www.oceanexpert.org/event/1229 -https://www.oceanexpert.org/expert/46223 -https://www.oceanexpert.org/institution/7997 -https://www.oceanexpert.org/institution/19126 -https://www.oceanexpert.org/expert/25701 -https://www.oceanexpert.org/expert/1259 -https://www.oceanexpert.org/event/1011 -https://www.oceanexpert.org/expert/25239 -https://www.oceanexpert.org/expert/15959 -https://www.oceanexpert.org/expert/35041 -https://www.oceanexpert.org/event/687 -https://www.oceanexpert.org/event/1595 -https://www.oceanexpert.org/expert/43948 -https://www.oceanexpert.org/expert/18815 -https://www.oceanexpert.org/expert/24697 -https://www.oceanexpert.org/expert/21713 -https://www.oceanexpert.org/expert/33553 -https://www.oceanexpert.org/event/688 -https://www.oceanexpert.org/expert/44992 -https://www.oceanexpert.org/expert/25205 -https://www.oceanexpert.org/expert/1029 -https://www.oceanexpert.org/expert/43705 -https://www.oceanexpert.org/expert/30 -https://www.oceanexpert.org/expert/11191 -https://www.oceanexpert.org/institution/19014 -https://www.oceanexpert.org/expert/26739 -https://www.oceanexpert.org/expert/35116 -https://www.oceanexpert.org/expert/26356 -https://www.oceanexpert.org/event/2983 -https://www.oceanexpert.org/expert/42902 -https://www.oceanexpert.org/expert/13262 -https://www.oceanexpert.org/expert/47077 -https://www.oceanexpert.org/institution/6537 -https://www.oceanexpert.org/expert/34831 -https://www.oceanexpert.org/institution/14060 -https://www.oceanexpert.org/event/2414 -https://www.oceanexpert.org/event/2215 -https://www.oceanexpert.org/expert/37366 -https://www.oceanexpert.org/expert/7790 -https://www.oceanexpert.org/expert/25871 -https://www.oceanexpert.org/expert/38169 -https://www.oceanexpert.org/institution/13928 -https://www.oceanexpert.org/expert/35463 -https://www.oceanexpert.org/expert/16235 -https://www.oceanexpert.org/expert/8398 -https://www.oceanexpert.org/expert/45459 -https://www.oceanexpert.org/expert/16604 -https://www.oceanexpert.org/expert/22046 -https://www.oceanexpert.org/expert/23256 -https://www.oceanexpert.org/expert/14175 -https://www.oceanexpert.org/expert/41318 -https://www.oceanexpert.org/expert/2182 -https://www.oceanexpert.org/expert/36044 -https://www.oceanexpert.org/expert/18919 -https://www.oceanexpert.org/expert/11001 -https://www.oceanexpert.org/expert/16646 -https://www.oceanexpert.org/expert/42096 -https://www.oceanexpert.org/expert/23914 -https://www.oceanexpert.org/expert/43791 -https://www.oceanexpert.org/expert/32498 -https://www.oceanexpert.org/expert/43315 -https://www.oceanexpert.org/expert/14934 -https://www.oceanexpert.org/institution/10655 -https://www.oceanexpert.org/expert/33703 -https://www.oceanexpert.org/expert/37929 -https://www.oceanexpert.org/institution/20913 -https://www.oceanexpert.org/expert/44022 -https://www.oceanexpert.org/expert/19335 -https://www.oceanexpert.org/expert/18757 -https://www.oceanexpert.org/expert/20909 -https://www.oceanexpert.org/institution/12181 -https://www.oceanexpert.org/expert/38154 -https://www.oceanexpert.org/expert/30910 -https://www.oceanexpert.org/expert/44690 -https://www.oceanexpert.org/expert/26233 -https://www.oceanexpert.org/expert/37680 -https://www.oceanexpert.org/expert/39435 -https://www.oceanexpert.org/expert/26505 -https://www.oceanexpert.org/event/2355 -https://www.oceanexpert.org/expert/6931 -https://www.oceanexpert.org/event/1831 -https://www.oceanexpert.org/expert/33221 -https://www.oceanexpert.org/expert/32343 -https://www.oceanexpert.org/expert/48761 -https://www.oceanexpert.org/expert/28350 -https://www.oceanexpert.org/expert/24726 -https://www.oceanexpert.org/expert/37508 -https://www.oceanexpert.org/institution/18150 -https://www.oceanexpert.org/expert/40657 -https://www.oceanexpert.org/event/3249 -https://www.oceanexpert.org/expert/37817 -https://www.oceanexpert.org/event/630 -https://www.oceanexpert.org/expert/21063 -https://www.oceanexpert.org/expert/37564 -https://www.oceanexpert.org/expert/7315 -https://www.oceanexpert.org/institution/21444 -https://www.oceanexpert.org/expert/1917 -https://www.oceanexpert.org/event/1680 -https://www.oceanexpert.org/institution/7381 -https://www.oceanexpert.org/institution/21171 -https://www.oceanexpert.org/institution/6998 -https://www.oceanexpert.org/expert/21944 -https://www.oceanexpert.org/institution/21392 -https://www.oceanexpert.org/expert/44821 -https://www.oceanexpert.org/expert/12241 -https://www.oceanexpert.org/expert/38178 -https://www.oceanexpert.org/expert/16012 -https://www.oceanexpert.org/expert/19980 -https://www.oceanexpert.org/expert/36881 -https://www.oceanexpert.org/expert/31949 -https://www.oceanexpert.org/expert/45487 -https://www.oceanexpert.org/institution/18430 -https://www.oceanexpert.org/expert/42722 -https://www.oceanexpert.org/expert/3498 -https://www.oceanexpert.org/expert/26194 -https://www.oceanexpert.org/institution/21610 -https://www.oceanexpert.org/expert/34053 -https://www.oceanexpert.org/expert/27540 -https://www.oceanexpert.org/expert/40336 -https://www.oceanexpert.org/institution/19644 -https://www.oceanexpert.org/expert/36794 -https://www.oceanexpert.org/institution/14696 -https://www.oceanexpert.org/expert/25687 -https://www.oceanexpert.org/expert/22900 -https://www.oceanexpert.org/expert/38929 -https://www.oceanexpert.org/expert/43537 -https://www.oceanexpert.org/expert/12907 -https://www.oceanexpert.org/expert/30297 -https://www.oceanexpert.org/expert/43828 -https://www.oceanexpert.org/expert/3531 -https://www.oceanexpert.org/expert/38045 -https://www.oceanexpert.org/expert/31119 -https://www.oceanexpert.org/expert/43903 -https://www.oceanexpert.org/expert/19321 -https://www.oceanexpert.org/institution/6967 -https://www.oceanexpert.org/institution/9377 -https://www.oceanexpert.org/expert/28376 -https://www.oceanexpert.org/institution/18385 -https://www.oceanexpert.org/expert/49026 -https://www.oceanexpert.org/institution/15993 -https://www.oceanexpert.org/expert/27168 -https://www.oceanexpert.org/institution/14580 -https://www.oceanexpert.org/event/1124 -https://www.oceanexpert.org/expert/23157 -https://www.oceanexpert.org/expert/27893 -https://www.oceanexpert.org/expert/16722 -https://www.oceanexpert.org/expert/15614 -https://www.oceanexpert.org/institution/18840 -https://www.oceanexpert.org/event/1450 -https://www.oceanexpert.org/expert/35797 -https://www.oceanexpert.org/expert/37401 -https://www.oceanexpert.org/expert/2913 -https://www.oceanexpert.org/expert/31060 -https://www.oceanexpert.org/event/432 -https://www.oceanexpert.org/expert/36279 -https://www.oceanexpert.org/expert/28446 -https://www.oceanexpert.org/expert/27668 -https://www.oceanexpert.org/expert/19177 -https://www.oceanexpert.org/expert/28372 -https://www.oceanexpert.org/expert/26925 -https://www.oceanexpert.org/institution/19058 -https://www.oceanexpert.org/expert/36289 -https://www.oceanexpert.org/institution/19021 -https://www.oceanexpert.org/expert/23229 -https://www.oceanexpert.org/expert/38068 -https://www.oceanexpert.org/event/1080 -https://www.oceanexpert.org/expert/48477 -https://www.oceanexpert.org/expert/44360 -https://www.oceanexpert.org/expert/26670 -https://www.oceanexpert.org/event/2720 -https://www.oceanexpert.org/expert/25377 -https://www.oceanexpert.org/expert/44550 -https://www.oceanexpert.org/institution/18777 -https://www.oceanexpert.org/institution/17736 -https://www.oceanexpert.org/institution/18787 -https://www.oceanexpert.org/institution/14761 -https://www.oceanexpert.org/expert/49004 -https://www.oceanexpert.org/expert/48731 -https://www.oceanexpert.org/expert/24595 -https://www.oceanexpert.org/institution/22099 -https://www.oceanexpert.org/institution/12615 -https://www.oceanexpert.org/event/2925 -https://www.oceanexpert.org/institution/18259 -https://www.oceanexpert.org/expert/20364 -https://www.oceanexpert.org/event/1622 -https://www.oceanexpert.org/expert/45402 -https://www.oceanexpert.org/expert/26804 -https://www.oceanexpert.org/expert/11455 -https://www.oceanexpert.org/expert/15904 -https://www.oceanexpert.org/institution/20248 -https://www.oceanexpert.org/expert/45864 -https://www.oceanexpert.org/event/2117 -https://www.oceanexpert.org/expert/45296 -https://www.oceanexpert.org/institution/21173 -https://www.oceanexpert.org/expert/3555 -https://www.oceanexpert.org/expert/43580 -https://www.oceanexpert.org/expert/35609 -https://www.oceanexpert.org/event/95 -https://www.oceanexpert.org/expert/23616 -https://www.oceanexpert.org/event/1045 -https://www.oceanexpert.org/expert/48106 -https://www.oceanexpert.org/expert/32801 -https://www.oceanexpert.org/expert/20900 -https://www.oceanexpert.org/event/1167 -https://www.oceanexpert.org/expert/18841 -https://www.oceanexpert.org/institution/20408 -https://www.oceanexpert.org/institution/14059 -https://www.oceanexpert.org/expert/22812 -https://www.oceanexpert.org/expert/23385 -https://www.oceanexpert.org/expert/18137 -https://www.oceanexpert.org/institution/11484 -https://www.oceanexpert.org/institution/19606 -https://www.oceanexpert.org/expert/14555 -https://www.oceanexpert.org/event/1811 -https://www.oceanexpert.org/institution/11709 -https://www.oceanexpert.org/expert/38499 -https://www.oceanexpert.org/expert/18991 -https://www.oceanexpert.org/expert/31198 -https://www.oceanexpert.org/expert/25961 -https://www.oceanexpert.org/expert/37841 -https://www.oceanexpert.org/expert/31772 -https://www.oceanexpert.org/event/1993 -https://www.oceanexpert.org/expert/43376 -https://www.oceanexpert.org/institution/17838 -https://www.oceanexpert.org/expert/13992 -https://www.oceanexpert.org/event/2330 -https://www.oceanexpert.org/institution/15392 -https://www.oceanexpert.org/institution/20016 -https://www.oceanexpert.org/institution/8607 -https://www.oceanexpert.org/institution/13167 -https://www.oceanexpert.org/institution/10229 -https://www.oceanexpert.org/institution/17540 -https://www.oceanexpert.org/expert/36968 -https://www.oceanexpert.org/institution/18620 -https://www.oceanexpert.org/institution/13737 -https://www.oceanexpert.org/expert/40357 -https://www.oceanexpert.org/expert/24850 -https://www.oceanexpert.org/expert/1212 -https://www.oceanexpert.org/expert/29462 -https://www.oceanexpert.org/expert/23623 -https://www.oceanexpert.org/expert/19999 -https://www.oceanexpert.org/expert/12324 -https://www.oceanexpert.org/expert/16963 -https://www.oceanexpert.org/expert/19725 -https://www.oceanexpert.org/expert/24441 -https://www.oceanexpert.org/expert/48249 -https://www.oceanexpert.org/expert/39475 -https://www.oceanexpert.org/expert/17423 -https://www.oceanexpert.org/institution/7750 -https://www.oceanexpert.org/expert/20351 -https://www.oceanexpert.org/event/3012 -https://www.oceanexpert.org/institution/17816 -https://www.oceanexpert.org/expert/25506 -https://www.oceanexpert.org/institution/12108 -https://www.oceanexpert.org/institution/11011 -https://www.oceanexpert.org/expert/46533 -https://www.oceanexpert.org/expert/37840 -https://www.oceanexpert.org/expert/37302 -https://www.oceanexpert.org/institution/21963 -https://www.oceanexpert.org/expert/10552 -https://www.oceanexpert.org/expert/32065 -https://www.oceanexpert.org/expert/48813 -https://www.oceanexpert.org/expert/33898 -https://www.oceanexpert.org/expert/26937 -https://www.oceanexpert.org/institution/19546 -https://www.oceanexpert.org/institution/17293 -https://www.oceanexpert.org/expert/35247 -https://www.oceanexpert.org/event/1804 -https://www.oceanexpert.org/expert/27426 -https://www.oceanexpert.org/institution/21112 -https://www.oceanexpert.org/expert/34938 -https://www.oceanexpert.org/expert/22898 -https://www.oceanexpert.org/expert/36432 -https://www.oceanexpert.org/expert/44717 -https://www.oceanexpert.org/expert/48719 -https://www.oceanexpert.org/event/1109 -https://www.oceanexpert.org/expert/23029 -https://www.oceanexpert.org/expert/31370 -https://www.oceanexpert.org/event/2496 -https://www.oceanexpert.org/expert/24039 -https://www.oceanexpert.org/institution/14268 -https://www.oceanexpert.org/institution/12290 -https://www.oceanexpert.org/expert/37235 -https://www.oceanexpert.org/expert/16268 -https://www.oceanexpert.org/expert/42469 -https://www.oceanexpert.org/expert/47015 -https://www.oceanexpert.org/expert/34214 -https://www.oceanexpert.org/expert/42517 -https://www.oceanexpert.org/expert/17772 -https://www.oceanexpert.org/expert/37060 -https://www.oceanexpert.org/expert/7000 -https://www.oceanexpert.org/event/615 -https://www.oceanexpert.org/expert/24456 -https://www.oceanexpert.org/expert/47623 -https://www.oceanexpert.org/expert/37984 -https://www.oceanexpert.org/expert/8187 -https://www.oceanexpert.org/expert/45115 -https://www.oceanexpert.org/expert/24674 -https://www.oceanexpert.org/institution/21871 -https://www.oceanexpert.org/expert/46567 -https://www.oceanexpert.org/expert/33514 -https://www.oceanexpert.org/expert/23968 -https://www.oceanexpert.org/expert/24399 -https://www.oceanexpert.org/institution/21668 -https://www.oceanexpert.org/expert/12488 -https://www.oceanexpert.org/expert/16785 -https://www.oceanexpert.org/institution/20279 -https://www.oceanexpert.org/institution/17969 -https://www.oceanexpert.org/expert/4774 -https://www.oceanexpert.org/expert/18628 -https://www.oceanexpert.org/expert/29512 -https://www.oceanexpert.org/institution/18886 -https://www.oceanexpert.org/expert/46612 -https://www.oceanexpert.org/expert/24855 -https://www.oceanexpert.org/institution/13853 -https://www.oceanexpert.org/expert/35477 -https://www.oceanexpert.org/expert/22131 -https://www.oceanexpert.org/expert/48352 -https://www.oceanexpert.org/expert/20878 -https://www.oceanexpert.org/institution/11150 -https://www.oceanexpert.org/institution/13269 -https://www.oceanexpert.org/expert/36723 -https://www.oceanexpert.org/institution/19795 -https://www.oceanexpert.org/institution/12696 -https://www.oceanexpert.org/expert/8656 -https://www.oceanexpert.org/event/2905 -https://www.oceanexpert.org/institution/21771 -https://www.oceanexpert.org/expert/34579 -https://www.oceanexpert.org/expert/11484 -https://www.oceanexpert.org/expert/27301 -https://www.oceanexpert.org/event/2830 -https://www.oceanexpert.org/institution/16806 -https://www.oceanexpert.org/expert/29914 -https://www.oceanexpert.org/expert/44520 -https://www.oceanexpert.org/expert/37885 -https://www.oceanexpert.org/expert/47544 -https://www.oceanexpert.org/expert/18948 -https://www.oceanexpert.org/expert/34609 -https://www.oceanexpert.org/expert/34946 -https://www.oceanexpert.org/event/291 -https://www.oceanexpert.org/institution/19492 -https://www.oceanexpert.org/expert/43323 -https://www.oceanexpert.org/expert/30740 -https://www.oceanexpert.org/institution/5583 -https://www.oceanexpert.org/expert/25161 -https://www.oceanexpert.org/expert/22927 -https://www.oceanexpert.org/institution/21876 -https://www.oceanexpert.org/institution/21149 -https://www.oceanexpert.org/expert/40552 -https://www.oceanexpert.org/expert/45576 -https://www.oceanexpert.org/expert/46878 -https://www.oceanexpert.org/expert/7830 -https://www.oceanexpert.org/institution/21607 -https://www.oceanexpert.org/institution/18086 -https://www.oceanexpert.org/expert/23904 -https://www.oceanexpert.org/expert/21316 -https://www.oceanexpert.org/expert/19931 -https://www.oceanexpert.org/institution/18330 -https://www.oceanexpert.org/expert/21180 -https://www.oceanexpert.org/expert/40595 -https://www.oceanexpert.org/expert/25826 -https://www.oceanexpert.org/expert/35049 -https://www.oceanexpert.org/expert/25573 -https://www.oceanexpert.org/expert/14151 -https://www.oceanexpert.org/institution/8321 -https://www.oceanexpert.org/expert/17586 -https://www.oceanexpert.org/institution/10935 -https://www.oceanexpert.org/expert/18124 -https://www.oceanexpert.org/event/1270 -https://www.oceanexpert.org/expert/44752 -https://www.oceanexpert.org/expert/31420 -https://www.oceanexpert.org/institution/5467 -https://www.oceanexpert.org/institution/6552 -https://www.oceanexpert.org/expert/27285 -https://www.oceanexpert.org/expert/35609 -https://www.oceanexpert.org/institution/18023 -https://www.oceanexpert.org/expert/20155 -https://www.oceanexpert.org/institution/21027 -https://www.oceanexpert.org/expert/47210 -https://www.oceanexpert.org/expert/37078 -https://www.oceanexpert.org/expert/48091 -https://www.oceanexpert.org/expert/25651 -https://www.oceanexpert.org/event/2275 -https://www.oceanexpert.org/expert/37083 -https://www.oceanexpert.org/expert/16313 -https://www.oceanexpert.org/expert/25852 -https://www.oceanexpert.org/institution/22031 -https://www.oceanexpert.org/expert/27232 -https://www.oceanexpert.org/institution/20366 -https://www.oceanexpert.org/event/980 -https://www.oceanexpert.org/expert/20614 -https://www.oceanexpert.org/expert/34085 -https://www.oceanexpert.org/expert/34591 -https://www.oceanexpert.org/expert/42952 -https://www.oceanexpert.org/expert/48030 -https://www.oceanexpert.org/event/1311 -https://www.oceanexpert.org/expert/13311 -https://www.oceanexpert.org/institution/17267 -https://www.oceanexpert.org/event/2217 -https://www.oceanexpert.org/expert/13044 -https://www.oceanexpert.org/expert/26940 -https://www.oceanexpert.org/expert/45731 -https://www.oceanexpert.org/expert/36669 -https://www.oceanexpert.org/expert/26170 -https://www.oceanexpert.org/expert/29599 -https://www.oceanexpert.org/expert/35403 -https://www.oceanexpert.org/expert/46724 -https://www.oceanexpert.org/institution/12569 -https://www.oceanexpert.org/institution/6102 -https://www.oceanexpert.org/expert/28101 -https://www.oceanexpert.org/expert/35186 -https://www.oceanexpert.org/expert/27558 -https://www.oceanexpert.org/expert/30819 -https://www.oceanexpert.org/expert/31115 -https://www.oceanexpert.org/institution/17709 -https://www.oceanexpert.org/expert/45465 -https://www.oceanexpert.org/expert/46648 -https://www.oceanexpert.org/institution/11336 -https://www.oceanexpert.org/expert/29515 -https://www.oceanexpert.org/expert/38273 -https://www.oceanexpert.org/expert/7425 -https://www.oceanexpert.org/expert/44659 -https://www.oceanexpert.org/expert/24788 -https://www.oceanexpert.org/expert/40898 -https://www.oceanexpert.org/institution/8916 -https://www.oceanexpert.org/institution/22103 -https://www.oceanexpert.org/expert/48791 -https://www.oceanexpert.org/expert/34413 -https://www.oceanexpert.org/expert/26816 -https://www.oceanexpert.org/expert/20281 -https://www.oceanexpert.org/event/1095 -https://www.oceanexpert.org/expert/36270 -https://www.oceanexpert.org/expert/30989 -https://www.oceanexpert.org/event/675 -https://www.oceanexpert.org/expert/45820 -https://www.oceanexpert.org/institution/18485 -https://www.oceanexpert.org/expert/32751 -https://www.oceanexpert.org/event/629 -https://www.oceanexpert.org/expert/14808 -https://www.oceanexpert.org/expert/33841 -https://www.oceanexpert.org/institution/18907 -https://www.oceanexpert.org/expert/46781 -https://www.oceanexpert.org/expert/10701 -https://www.oceanexpert.org/expert/22825 -https://www.oceanexpert.org/expert/6756 -https://www.oceanexpert.org/expert/22394 -https://www.oceanexpert.org/expert/47757 -https://www.oceanexpert.org/expert/4602 -https://www.oceanexpert.org/expert/36023 -https://www.oceanexpert.org/institution/18000 -https://www.oceanexpert.org/institution/18342 -https://www.oceanexpert.org/institution/7701 -https://www.oceanexpert.org/expert/3785 -https://www.oceanexpert.org/institution/12923 -https://www.oceanexpert.org/expert/23308 -https://www.oceanexpert.org/event/2573 -https://www.oceanexpert.org/expert/47822 -https://www.oceanexpert.org/expert/19736 -https://www.oceanexpert.org/expert/22648 -https://www.oceanexpert.org/institution/15443 -https://www.oceanexpert.org/event/1260 -https://www.oceanexpert.org/expert/27529 -https://www.oceanexpert.org/expert/47524 -https://www.oceanexpert.org/institution/13188 -https://www.oceanexpert.org/expert/20951 -https://www.oceanexpert.org/expert/12621 -https://www.oceanexpert.org/expert/18738 -https://www.oceanexpert.org/expert/26798 -https://www.oceanexpert.org/expert/10699 -https://www.oceanexpert.org/expert/39421 -https://www.oceanexpert.org/expert/23387 -https://www.oceanexpert.org/expert/27577 -https://www.oceanexpert.org/expert/48181 -https://www.oceanexpert.org/expert/27868 -https://www.oceanexpert.org/expert/13086 -https://www.oceanexpert.org/event/1412 -https://www.oceanexpert.org/expert/37752 -https://www.oceanexpert.org/event/1690 -https://www.oceanexpert.org/expert/46748 -https://www.oceanexpert.org/expert/17840 -https://www.oceanexpert.org/expert/25387 -https://www.oceanexpert.org/expert/46051 -https://www.oceanexpert.org/expert/31793 -https://www.oceanexpert.org/institution/21729 -https://www.oceanexpert.org/institution/18499 -https://www.oceanexpert.org/expert/9567 -https://www.oceanexpert.org/expert/13 -https://www.oceanexpert.org/institution/10280 -https://www.oceanexpert.org/expert/44658 -https://www.oceanexpert.org/expert/36708 -https://www.oceanexpert.org/expert/38154 -https://www.oceanexpert.org/expert/48092 -https://www.oceanexpert.org/institution/19106 -https://www.oceanexpert.org/expert/39565 -https://www.oceanexpert.org/expert/1812 -https://www.oceanexpert.org/event/1832 -https://www.oceanexpert.org/institution/14259 -https://www.oceanexpert.org/institution/13023 -https://www.oceanexpert.org/expert/12173 -https://www.oceanexpert.org/institution/6725 -https://www.oceanexpert.org/institution/16240 -https://www.oceanexpert.org/expert/44265 -https://www.oceanexpert.org/expert/11098 -https://www.oceanexpert.org/expert/29426 -https://www.oceanexpert.org/event/1556 -https://www.oceanexpert.org/expert/44462 -https://www.oceanexpert.org/expert/34900 -https://www.oceanexpert.org/institution/21672 -https://www.oceanexpert.org/expert/25392 -https://www.oceanexpert.org/expert/18835 -https://www.oceanexpert.org/event/255 -https://www.oceanexpert.org/institution/21887 -https://www.oceanexpert.org/institution/7641 -https://www.oceanexpert.org/expert/20725 -https://www.oceanexpert.org/expert/28379 -https://www.oceanexpert.org/expert/15924 -https://www.oceanexpert.org/institution/10589 -https://www.oceanexpert.org/institution/18790 -https://www.oceanexpert.org/expert/23188 -https://www.oceanexpert.org/event/1651 -https://www.oceanexpert.org/expert/20792 -https://www.oceanexpert.org/expert/19223 -https://www.oceanexpert.org/institution/11470 -https://www.oceanexpert.org/event/2287 -https://www.oceanexpert.org/expert/42802 -https://www.oceanexpert.org/expert/46663 -https://www.oceanexpert.org/expert/19648 -https://www.oceanexpert.org/institution/13751 -https://www.oceanexpert.org/expert/575 -https://www.oceanexpert.org/institution/21765 -https://www.oceanexpert.org/expert/33841 -https://www.oceanexpert.org/expert/30370 -https://www.oceanexpert.org/expert/16631 -https://www.oceanexpert.org/expert/22333 -https://www.oceanexpert.org/expert/21464 -https://www.oceanexpert.org/institution/14063 -https://www.oceanexpert.org/expert/17337 -https://www.oceanexpert.org/institution/17664 -https://www.oceanexpert.org/event/660 -https://www.oceanexpert.org/expert/19716 -https://www.oceanexpert.org/institution/18689 -https://www.oceanexpert.org/expert/43278 -https://www.oceanexpert.org/institution/19502 -https://www.oceanexpert.org/institution/22147 -https://www.oceanexpert.org/expert/7021 -https://www.oceanexpert.org/expert/42522 -https://www.oceanexpert.org/expert/27994 -https://www.oceanexpert.org/institution/11216 -https://www.oceanexpert.org/expert/35463 -https://www.oceanexpert.org/expert/7930 -https://www.oceanexpert.org/expert/22639 -https://www.oceanexpert.org/expert/36805 -https://www.oceanexpert.org/event/2102 -https://www.oceanexpert.org/expert/7028 -https://www.oceanexpert.org/institution/20807 -https://www.oceanexpert.org/expert/13937 -https://www.oceanexpert.org/expert/37828 -https://www.oceanexpert.org/institution/20862 -https://www.oceanexpert.org/institution/6933 -https://www.oceanexpert.org/institution/15825 -https://www.oceanexpert.org/expert/30016 -https://www.oceanexpert.org/event/1089 -https://www.oceanexpert.org/expert/33560 -https://www.oceanexpert.org/expert/7473 -https://www.oceanexpert.org/institution/21344 -https://www.oceanexpert.org/expert/37697 -https://www.oceanexpert.org/expert/44588 -https://www.oceanexpert.org/expert/22683 -https://www.oceanexpert.org/expert/37547 -https://www.oceanexpert.org/event/2973 -https://www.oceanexpert.org/expert/26057 -https://www.oceanexpert.org/expert/27220 -https://www.oceanexpert.org/expert/43844 -https://www.oceanexpert.org/institution/13401 -https://www.oceanexpert.org/expert/26184 -https://www.oceanexpert.org/institution/19066 -https://www.oceanexpert.org/expert/17596 -https://www.oceanexpert.org/expert/48397 -https://www.oceanexpert.org/institution/11660 -https://www.oceanexpert.org/expert/7766 -https://www.oceanexpert.org/event/3290 -https://www.oceanexpert.org/event/518 -https://www.oceanexpert.org/institution/18887 -https://www.oceanexpert.org/expert/15474 -https://www.oceanexpert.org/institution/20489 -https://www.oceanexpert.org/institution/17710 -https://www.oceanexpert.org/expert/28152 -https://www.oceanexpert.org/institution/19016 -https://www.oceanexpert.org/institution/10762 -https://www.oceanexpert.org/expert/18898 -https://www.oceanexpert.org/expert/17477 -https://www.oceanexpert.org/expert/35282 -https://www.oceanexpert.org/expert/35201 -https://www.oceanexpert.org/expert/43264 -https://www.oceanexpert.org/expert/29722 -https://www.oceanexpert.org/institution/18403 -https://www.oceanexpert.org/expert/22234 -https://www.oceanexpert.org/expert/26089 -https://www.oceanexpert.org/expert/45804 -https://www.oceanexpert.org/expert/16432 -https://www.oceanexpert.org/expert/29840 -https://www.oceanexpert.org/event/2098 -https://www.oceanexpert.org/expert/30317 -https://www.oceanexpert.org/expert/26998 -https://www.oceanexpert.org/institution/16694 -https://www.oceanexpert.org/institution/21809 -https://www.oceanexpert.org/expert/22817 -https://www.oceanexpert.org/expert/37458 -https://www.oceanexpert.org/expert/22736 -https://www.oceanexpert.org/expert/37712 -https://www.oceanexpert.org/expert/26703 -https://www.oceanexpert.org/expert/17426 -https://www.oceanexpert.org/event/588 -https://www.oceanexpert.org/expert/38375 -https://www.oceanexpert.org/expert/43572 -https://www.oceanexpert.org/expert/1764 -https://www.oceanexpert.org/event/3002 -https://www.oceanexpert.org/expert/47827 -https://www.oceanexpert.org/expert/48126 -https://www.oceanexpert.org/expert/18317 -https://www.oceanexpert.org/expert/48557 -https://www.oceanexpert.org/institution/14816 -https://www.oceanexpert.org/institution/14298 -https://www.oceanexpert.org/expert/23680 -https://www.oceanexpert.org/expert/20855 -https://www.oceanexpert.org/expert/27482 -https://www.oceanexpert.org/event/2009 -https://www.oceanexpert.org/expert/24040 -https://www.oceanexpert.org/expert/44335 -https://www.oceanexpert.org/expert/23858 -https://www.oceanexpert.org/event/2949 -https://www.oceanexpert.org/expert/48726 -https://www.oceanexpert.org/expert/39470 -https://www.oceanexpert.org/expert/24240 -https://www.oceanexpert.org/expert/26587 -https://www.oceanexpert.org/institution/10329 -https://www.oceanexpert.org/expert/24895 -https://www.oceanexpert.org/institution/16698 -https://www.oceanexpert.org/event/2165 -https://www.oceanexpert.org/event/3093 -https://www.oceanexpert.org/institution/10428 -https://www.oceanexpert.org/expert/26082 -https://www.oceanexpert.org/expert/32857 -https://www.oceanexpert.org/expert/18121 -https://www.oceanexpert.org/expert/46629 -https://www.oceanexpert.org/institution/8338 -https://www.oceanexpert.org/expert/20317 -https://www.oceanexpert.org/expert/8882 -https://www.oceanexpert.org/expert/26487 -https://www.oceanexpert.org/institution/17501 -https://www.oceanexpert.org/event/3067 -https://www.oceanexpert.org/expert/19444 -https://www.oceanexpert.org/expert/20472 -https://www.oceanexpert.org/expert/25215 -https://www.oceanexpert.org/expert/29815 -https://www.oceanexpert.org/expert/37034 -https://www.oceanexpert.org/expert/28477 -https://www.oceanexpert.org/expert/7696 -https://www.oceanexpert.org/expert/44323 -https://www.oceanexpert.org/expert/25595 -https://www.oceanexpert.org/event/703 -https://www.oceanexpert.org/institution/11256 -https://www.oceanexpert.org/expert/38337 -https://www.oceanexpert.org/expert/15390 -https://www.oceanexpert.org/expert/37374 -https://www.oceanexpert.org/expert/45166 -https://www.oceanexpert.org/event/2449 -https://www.oceanexpert.org/event/1154 -https://www.oceanexpert.org/expert/34778 -https://www.oceanexpert.org/institution/18650 -https://www.oceanexpert.org/expert/38031 -https://www.oceanexpert.org/expert/27165 -https://www.oceanexpert.org/institution/13759 -https://www.oceanexpert.org/expert/24268 -https://www.oceanexpert.org/expert/24067 -https://www.oceanexpert.org/expert/25012 -https://www.oceanexpert.org/expert/43244 -https://www.oceanexpert.org/event/132 -https://www.oceanexpert.org/expert/4319 -https://www.oceanexpert.org/institution/18900 -https://www.oceanexpert.org/institution/14417 -https://www.oceanexpert.org/institution/10176 -https://www.oceanexpert.org/institution/5921 -https://www.oceanexpert.org/event/2006 -https://www.oceanexpert.org/institution/19736 -https://www.oceanexpert.org/institution/8902 -https://www.oceanexpert.org/institution/19435 -https://www.oceanexpert.org/expert/16823 -https://www.oceanexpert.org/expert/28431 -https://www.oceanexpert.org/expert/37810 -https://www.oceanexpert.org/expert/22534 -https://www.oceanexpert.org/expert/22098 -https://www.oceanexpert.org/expert/48975 -https://www.oceanexpert.org/expert/30247 -https://www.oceanexpert.org/expert/42884 -https://www.oceanexpert.org/expert/21186 -https://www.oceanexpert.org/institution/20002 -https://www.oceanexpert.org/expert/29746 -https://www.oceanexpert.org/expert/20840 -https://www.oceanexpert.org/expert/1010 -https://www.oceanexpert.org/expert/18798 -https://www.oceanexpert.org/expert/11544 -https://www.oceanexpert.org/institution/7825 -https://www.oceanexpert.org/event/1894 -https://www.oceanexpert.org/expert/21800 -https://www.oceanexpert.org/expert/5722 -https://www.oceanexpert.org/expert/45889 -https://www.oceanexpert.org/institution/6788 -https://www.oceanexpert.org/expert/16961 -https://www.oceanexpert.org/expert/46290 -https://www.oceanexpert.org/expert/44730 -https://www.oceanexpert.org/expert/37206 -https://www.oceanexpert.org/expert/37877 -https://www.oceanexpert.org/expert/7104 -https://www.oceanexpert.org/institution/22082 -https://www.oceanexpert.org/expert/42789 -https://www.oceanexpert.org/institution/19433 -https://www.oceanexpert.org/institution/11858 -https://www.oceanexpert.org/expert/43920 -https://www.oceanexpert.org/institution/20310 -https://www.oceanexpert.org/expert/29398 -https://www.oceanexpert.org/expert/47366 -https://www.oceanexpert.org/expert/2977 -https://www.oceanexpert.org/expert/46958 -https://www.oceanexpert.org/institution/6631 -https://www.oceanexpert.org/institution/17786 -https://www.oceanexpert.org/expert/22983 -https://www.oceanexpert.org/expert/23256 -https://www.oceanexpert.org/institution/19726 -https://www.oceanexpert.org/institution/20975 -https://www.oceanexpert.org/institution/12048 -https://www.oceanexpert.org/expert/20111 -https://www.oceanexpert.org/expert/35145 -https://www.oceanexpert.org/institution/21530 -https://www.oceanexpert.org/institution/17667 -https://www.oceanexpert.org/expert/23462 -https://www.oceanexpert.org/expert/45630 -https://www.oceanexpert.org/institution/12409 -https://www.oceanexpert.org/institution/19349 -https://www.oceanexpert.org/institution/16246 -https://www.oceanexpert.org/expert/37136 -https://www.oceanexpert.org/expert/36624 -https://www.oceanexpert.org/event/358 -https://www.oceanexpert.org/institution/18948 -https://www.oceanexpert.org/expert/26516 -https://www.oceanexpert.org/institution/17735 -https://www.oceanexpert.org/institution/21010 -https://www.oceanexpert.org/expert/20105 -https://www.oceanexpert.org/institution/11191 -https://www.oceanexpert.org/institution/21499 -https://www.oceanexpert.org/expert/47051 -https://www.oceanexpert.org/institution/20242 -https://www.oceanexpert.org/institution/20943 -https://www.oceanexpert.org/expert/25663 -https://www.oceanexpert.org/expert/36525 -https://www.oceanexpert.org/expert/40552 -https://www.oceanexpert.org/expert/38268 -https://www.oceanexpert.org/institution/11529 -https://www.oceanexpert.org/expert/28152 -https://www.oceanexpert.org/expert/27236 -https://www.oceanexpert.org/institution/12044 -https://www.oceanexpert.org/expert/523 -https://www.oceanexpert.org/expert/42456 -https://www.oceanexpert.org/institution/15932 -https://www.oceanexpert.org/institution/17934 -https://www.oceanexpert.org/expert/26308 -https://www.oceanexpert.org/institution/20048 -https://www.oceanexpert.org/expert/20408 -https://www.oceanexpert.org/expert/15635 -https://www.oceanexpert.org/institution/19330 -https://www.oceanexpert.org/expert/33528 -https://www.oceanexpert.org/expert/20382 -https://www.oceanexpert.org/expert/24033 -https://www.oceanexpert.org/expert/45065 -https://www.oceanexpert.org/expert/24811 -https://www.oceanexpert.org/expert/27497 -https://www.oceanexpert.org/expert/32682 -https://www.oceanexpert.org/institution/17718 -https://www.oceanexpert.org/institution/20271 -https://www.oceanexpert.org/expert/17926 -https://www.oceanexpert.org/expert/27479 -https://www.oceanexpert.org/expert/17065 -https://www.oceanexpert.org/institution/18479 -https://www.oceanexpert.org/institution/20562 -https://www.oceanexpert.org/event/1879 -https://www.oceanexpert.org/expert/27720 -https://www.oceanexpert.org/expert/25697 -https://www.oceanexpert.org/institution/15416 -https://www.oceanexpert.org/expert/34684 -https://www.oceanexpert.org/expert/7813 -https://www.oceanexpert.org/event/1088 -https://www.oceanexpert.org/expert/11159 -https://www.oceanexpert.org/expert/5166 -https://www.oceanexpert.org/institution/19560 -https://www.oceanexpert.org/expert/36623 -https://www.oceanexpert.org/expert/39265 -https://www.oceanexpert.org/expert/33798 -https://www.oceanexpert.org/expert/34956 -https://www.oceanexpert.org/expert/40599 -https://www.oceanexpert.org/expert/48804 -https://www.oceanexpert.org/expert/39569 -https://www.oceanexpert.org/expert/23811 -https://www.oceanexpert.org/expert/49010 -https://www.oceanexpert.org/expert/8887 -https://www.oceanexpert.org/event/2845 -https://www.oceanexpert.org/expert/45376 -https://www.oceanexpert.org/expert/31028 -https://www.oceanexpert.org/institution/21470 -https://www.oceanexpert.org/institution/16784 -https://www.oceanexpert.org/event/928 -https://www.oceanexpert.org/expert/43179 -https://www.oceanexpert.org/expert/47710 -https://www.oceanexpert.org/expert/40107 -https://www.oceanexpert.org/expert/34572 -https://www.oceanexpert.org/expert/18545 -https://www.oceanexpert.org/expert/42506 -https://www.oceanexpert.org/expert/32119 -https://www.oceanexpert.org/expert/23810 -https://www.oceanexpert.org/expert/32436 -https://www.oceanexpert.org/expert/25490 -https://www.oceanexpert.org/expert/762 -https://www.oceanexpert.org/expert/38616 -https://www.oceanexpert.org/expert/23050 -https://www.oceanexpert.org/expert/32219 -https://www.oceanexpert.org/institution/10909 -https://www.oceanexpert.org/expert/37312 -https://www.oceanexpert.org/expert/10790 -https://www.oceanexpert.org/expert/22928 -https://www.oceanexpert.org/expert/23342 -https://www.oceanexpert.org/expert/21145 -https://www.oceanexpert.org/expert/25532 -https://www.oceanexpert.org/expert/39578 -https://www.oceanexpert.org/expert/36583 -https://www.oceanexpert.org/expert/17526 -https://www.oceanexpert.org/expert/17214 -https://www.oceanexpert.org/expert/19583 -https://www.oceanexpert.org/institution/20665 -https://www.oceanexpert.org/expert/23410 -https://www.oceanexpert.org/expert/17093 -https://www.oceanexpert.org/event/1066 -https://www.oceanexpert.org/expert/34707 -https://www.oceanexpert.org/expert/27232 -https://www.oceanexpert.org/event/2778 -https://www.oceanexpert.org/expert/17106 -https://www.oceanexpert.org/expert/35173 -https://www.oceanexpert.org/institution/12320 -https://www.oceanexpert.org/expert/14614 -https://www.oceanexpert.org/event/2006 -https://www.oceanexpert.org/expert/47198 -https://www.oceanexpert.org/expert/1804 -https://www.oceanexpert.org/expert/28179 -https://www.oceanexpert.org/expert/11549 -https://www.oceanexpert.org/expert/22204 -https://www.oceanexpert.org/expert/44961 -https://www.oceanexpert.org/expert/37248 -https://www.oceanexpert.org/institution/18380 -https://www.oceanexpert.org/expert/46996 -https://www.oceanexpert.org/expert/35260 -https://www.oceanexpert.org/expert/1250 -https://www.oceanexpert.org/expert/19120 -https://www.oceanexpert.org/event/1849 -https://www.oceanexpert.org/institution/14821 -https://www.oceanexpert.org/institution/18022 -https://www.oceanexpert.org/expert/42528 -https://www.oceanexpert.org/expert/45937 -https://www.oceanexpert.org/expert/14049 -https://www.oceanexpert.org/event/1601 -https://www.oceanexpert.org/expert/24869 -https://www.oceanexpert.org/expert/48581 -https://www.oceanexpert.org/institution/18281 -https://www.oceanexpert.org/expert/29169 -https://www.oceanexpert.org/expert/29062 -https://www.oceanexpert.org/institution/18665 -https://www.oceanexpert.org/institution/19789 -https://www.oceanexpert.org/expert/23959 -https://www.oceanexpert.org/event/2649 -https://www.oceanexpert.org/institution/18330 -https://www.oceanexpert.org/expert/35974 -https://www.oceanexpert.org/expert/45068 -https://www.oceanexpert.org/expert/34632 -https://www.oceanexpert.org/event/2616 -https://www.oceanexpert.org/institution/13426 -https://www.oceanexpert.org/event/2422 -https://www.oceanexpert.org/event/2148 -https://www.oceanexpert.org/expert/38089 -https://www.oceanexpert.org/expert/17210 -https://www.oceanexpert.org/event/2740 -https://www.oceanexpert.org/expert/3053 -https://www.oceanexpert.org/expert/44580 -https://www.oceanexpert.org/expert/34312 -https://www.oceanexpert.org/expert/26761 -https://www.oceanexpert.org/expert/35009 -https://www.oceanexpert.org/expert/34956 -https://www.oceanexpert.org/expert/33505 -https://www.oceanexpert.org/expert/24275 -https://www.oceanexpert.org/expert/14807 -https://www.oceanexpert.org/event/3075 -https://www.oceanexpert.org/expert/28130 -https://www.oceanexpert.org/expert/43696 -https://www.oceanexpert.org/expert/26329 -https://www.oceanexpert.org/expert/6726 -https://www.oceanexpert.org/expert/46492 -https://www.oceanexpert.org/expert/26705 -https://www.oceanexpert.org/expert/42588 -https://www.oceanexpert.org/institution/18015 -https://www.oceanexpert.org/expert/37186 -https://www.oceanexpert.org/event/2277 -https://www.oceanexpert.org/expert/44413 -https://www.oceanexpert.org/expert/12757 -https://www.oceanexpert.org/expert/43631 -https://www.oceanexpert.org/expert/18355 -https://www.oceanexpert.org/expert/25878 -https://www.oceanexpert.org/institution/7775 -https://www.oceanexpert.org/institution/15259 -https://www.oceanexpert.org/event/1277 -https://www.oceanexpert.org/expert/35767 -https://www.oceanexpert.org/expert/22380 -https://www.oceanexpert.org/institution/20147 -https://www.oceanexpert.org/expert/22837 -https://www.oceanexpert.org/expert/36966 -https://www.oceanexpert.org/institution/21456 -https://www.oceanexpert.org/expert/31032 -https://www.oceanexpert.org/expert/32568 -https://www.oceanexpert.org/expert/22900 -https://www.oceanexpert.org/expert/34699 -https://www.oceanexpert.org/institution/18559 -https://www.oceanexpert.org/event/3081 -https://www.oceanexpert.org/institution/19805 -https://www.oceanexpert.org/expert/25064 -https://www.oceanexpert.org/expert/44506 -https://www.oceanexpert.org/expert/28128 -https://www.oceanexpert.org/expert/35575 -https://www.oceanexpert.org/expert/33291 -https://www.oceanexpert.org/expert/713 -https://www.oceanexpert.org/institution/21738 -https://www.oceanexpert.org/expert/31066 -https://www.oceanexpert.org/expert/38984 -https://www.oceanexpert.org/expert/48666 -https://www.oceanexpert.org/expert/39274 -https://www.oceanexpert.org/expert/16759 -https://www.oceanexpert.org/expert/10381 -https://www.oceanexpert.org/institution/22035 -https://www.oceanexpert.org/expert/27513 -https://www.oceanexpert.org/institution/19677 -https://www.oceanexpert.org/expert/42716 -https://www.oceanexpert.org/expert/20480 -https://www.oceanexpert.org/expert/38150 -https://www.oceanexpert.org/expert/47884 -https://www.oceanexpert.org/event/727 -https://www.oceanexpert.org/expert/25878 -https://www.oceanexpert.org/expert/22648 -https://www.oceanexpert.org/event/1093 -https://www.oceanexpert.org/expert/27629 -https://www.oceanexpert.org/expert/11047 -https://www.oceanexpert.org/event/1654 -https://www.oceanexpert.org/expert/17542 -https://www.oceanexpert.org/institution/11023 -https://www.oceanexpert.org/expert/37867 -https://www.oceanexpert.org/expert/40074 -https://www.oceanexpert.org/expert/26883 -https://www.oceanexpert.org/expert/48562 -https://www.oceanexpert.org/expert/37047 -https://www.oceanexpert.org/expert/25794 -https://www.oceanexpert.org/expert/4421 -https://www.oceanexpert.org/expert/24990 -https://www.oceanexpert.org/expert/48568 -https://www.oceanexpert.org/expert/25907 -https://www.oceanexpert.org/expert/17336 -https://www.oceanexpert.org/event/2154 -https://www.oceanexpert.org/institution/18531 -https://www.oceanexpert.org/event/638 -https://www.oceanexpert.org/expert/36644 -https://www.oceanexpert.org/event/1764 -https://www.oceanexpert.org/expert/38108 -https://www.oceanexpert.org/expert/30040 -https://www.oceanexpert.org/institution/21247 -https://www.oceanexpert.org/expert/32442 -https://www.oceanexpert.org/expert/37052 -https://www.oceanexpert.org/event/674 -https://www.oceanexpert.org/institution/14799 -https://www.oceanexpert.org/expert/42815 -https://www.oceanexpert.org/event/2646 -https://www.oceanexpert.org/expert/21173 -https://www.oceanexpert.org/expert/41430 -https://www.oceanexpert.org/event/198 -https://www.oceanexpert.org/expert/32240 -https://www.oceanexpert.org/expert/44501 -https://www.oceanexpert.org/expert/36258 -https://www.oceanexpert.org/expert/42465 -https://www.oceanexpert.org/expert/46029 -https://www.oceanexpert.org/expert/37027 -https://www.oceanexpert.org/expert/18807 -https://www.oceanexpert.org/expert/43033 -https://www.oceanexpert.org/expert/43376 -https://www.oceanexpert.org/expert/21984 -https://www.oceanexpert.org/event/1448 -https://www.oceanexpert.org/event/2705 -https://www.oceanexpert.org/expert/26100 -https://www.oceanexpert.org/expert/46232 -https://www.oceanexpert.org/expert/36553 -https://www.oceanexpert.org/expert/43105 -https://www.oceanexpert.org/expert/37932 -https://www.oceanexpert.org/event/2192 -https://www.oceanexpert.org/expert/26809 -https://www.oceanexpert.org/expert/46574 -https://www.oceanexpert.org/institution/14031 -https://www.oceanexpert.org/event/2615 -https://www.oceanexpert.org/expert/34287 -https://www.oceanexpert.org/expert/16091 -https://www.oceanexpert.org/expert/35269 -https://www.oceanexpert.org/institution/14940 -https://www.oceanexpert.org/event/672 -https://www.oceanexpert.org/expert/1700 -https://www.oceanexpert.org/event/3297 -https://www.oceanexpert.org/expert/34807 -https://www.oceanexpert.org/expert/43382 -https://www.oceanexpert.org/expert/35536 -https://www.oceanexpert.org/institution/22033 -https://www.oceanexpert.org/expert/46298 -https://www.oceanexpert.org/expert/20569 -https://www.oceanexpert.org/expert/38873 -https://www.oceanexpert.org/expert/36495 -https://www.oceanexpert.org/expert/37413 -https://www.oceanexpert.org/expert/48885 -https://www.oceanexpert.org/expert/35334 -https://www.oceanexpert.org/institution/5236 -https://www.oceanexpert.org/expert/19727 -https://www.oceanexpert.org/expert/47484 -https://www.oceanexpert.org/expert/23761 -https://www.oceanexpert.org/expert/18472 -https://www.oceanexpert.org/expert/44063 -https://www.oceanexpert.org/expert/27324 -https://www.oceanexpert.org/expert/21034 -https://www.oceanexpert.org/expert/46924 -https://www.oceanexpert.org/expert/24198 -https://www.oceanexpert.org/expert/18348 -https://www.oceanexpert.org/expert/19742 -https://www.oceanexpert.org/institution/7002 -https://www.oceanexpert.org/expert/851 -https://www.oceanexpert.org/expert/19982 -https://www.oceanexpert.org/expert/22662 -https://www.oceanexpert.org/expert/47572 -https://www.oceanexpert.org/institution/16842 -https://www.oceanexpert.org/expert/13694 -https://www.oceanexpert.org/institution/12942 -https://www.oceanexpert.org/expert/39260 -https://www.oceanexpert.org/expert/23435 -https://www.oceanexpert.org/expert/20407 -https://www.oceanexpert.org/expert/26967 -https://www.oceanexpert.org/institution/21261 -https://www.oceanexpert.org/expert/28501 -https://www.oceanexpert.org/expert/18133 -https://www.oceanexpert.org/institution/19093 -https://www.oceanexpert.org/expert/44543 -https://www.oceanexpert.org/expert/44238 -https://www.oceanexpert.org/expert/12202 -https://www.oceanexpert.org/expert/45921 -https://www.oceanexpert.org/institution/20376 -https://www.oceanexpert.org/expert/38915 -https://www.oceanexpert.org/expert/24524 -https://www.oceanexpert.org/expert/20744 -https://www.oceanexpert.org/expert/24304 -https://www.oceanexpert.org/expert/25781 -https://www.oceanexpert.org/expert/27958 -https://www.oceanexpert.org/institution/15999 -https://www.oceanexpert.org/expert/24238 -https://www.oceanexpert.org/expert/748 -https://www.oceanexpert.org/expert/16881 -https://www.oceanexpert.org/event/1430 -https://www.oceanexpert.org/expert/17961 -https://www.oceanexpert.org/expert/22028 -https://www.oceanexpert.org/expert/29485 -https://www.oceanexpert.org/expert/36362 -https://www.oceanexpert.org/expert/27173 -https://www.oceanexpert.org/expert/26731 -https://www.oceanexpert.org/expert/46717 -https://www.oceanexpert.org/expert/37979 -https://www.oceanexpert.org/expert/12775 -https://www.oceanexpert.org/event/964 -https://www.oceanexpert.org/expert/30575 -https://www.oceanexpert.org/expert/22021 -https://www.oceanexpert.org/institution/18610 -https://www.oceanexpert.org/event/2403 -https://www.oceanexpert.org/expert/48005 -https://www.oceanexpert.org/expert/38125 -https://www.oceanexpert.org/expert/14191 -https://www.oceanexpert.org/institution/16667 -https://www.oceanexpert.org/institution/21929 -https://www.oceanexpert.org/institution/19535 -https://www.oceanexpert.org/institution/18965 -https://www.oceanexpert.org/institution/14457 -https://www.oceanexpert.org/institution/15108 -https://www.oceanexpert.org/institution/19563 -https://www.oceanexpert.org/expert/30792 -https://www.oceanexpert.org/expert/45462 -https://www.oceanexpert.org/institution/11625 -https://www.oceanexpert.org/expert/35125 -https://www.oceanexpert.org/institution/20147 -https://www.oceanexpert.org/institution/14338 -https://www.oceanexpert.org/event/1762 -https://www.oceanexpert.org/institution/19284 -https://www.oceanexpert.org/expert/47194 -https://www.oceanexpert.org/institution/12809 -https://www.oceanexpert.org/expert/18561 -https://www.oceanexpert.org/expert/33436 -https://www.oceanexpert.org/expert/22477 -https://www.oceanexpert.org/expert/33322 -https://www.oceanexpert.org/expert/38667 -https://www.oceanexpert.org/institution/21731 -https://www.oceanexpert.org/expert/10869 -https://www.oceanexpert.org/expert/7490 -https://www.oceanexpert.org/institution/20080 -https://www.oceanexpert.org/expert/43597 -https://www.oceanexpert.org/expert/36398 -https://www.oceanexpert.org/expert/36158 -https://www.oceanexpert.org/institution/19540 -https://www.oceanexpert.org/institution/9813 -https://www.oceanexpert.org/expert/34982 -https://www.oceanexpert.org/institution/8886 -https://www.oceanexpert.org/expert/19283 -https://www.oceanexpert.org/expert/26719 -https://www.oceanexpert.org/event/1551 -https://www.oceanexpert.org/expert/39862 -https://www.oceanexpert.org/institution/5357 -https://www.oceanexpert.org/expert/40813 -https://www.oceanexpert.org/institution/8321 -https://www.oceanexpert.org/expert/42511 -https://www.oceanexpert.org/expert/17162 -https://www.oceanexpert.org/event/1901 -https://www.oceanexpert.org/expert/39046 -https://www.oceanexpert.org/institution/11761 -https://www.oceanexpert.org/institution/20633 -https://www.oceanexpert.org/expert/3187 -https://www.oceanexpert.org/expert/46164 -https://www.oceanexpert.org/expert/46647 -https://www.oceanexpert.org/expert/25334 -https://www.oceanexpert.org/expert/27252 -https://www.oceanexpert.org/expert/13169 -https://www.oceanexpert.org/institution/17959 -https://www.oceanexpert.org/expert/46513 -https://www.oceanexpert.org/expert/20624 -https://www.oceanexpert.org/institution/22106 -https://www.oceanexpert.org/institution/17733 -https://www.oceanexpert.org/expert/30697 -https://www.oceanexpert.org/institution/19652 -https://www.oceanexpert.org/institution/18931 -https://www.oceanexpert.org/expert/200 -https://www.oceanexpert.org/expert/20925 -https://www.oceanexpert.org/expert/12941 -https://www.oceanexpert.org/institution/22020 -https://www.oceanexpert.org/expert/17472 -https://www.oceanexpert.org/expert/947 -https://www.oceanexpert.org/expert/20940 -https://www.oceanexpert.org/institution/18815 -https://www.oceanexpert.org/expert/40250 -https://www.oceanexpert.org/event/1675 -https://www.oceanexpert.org/expert/21139 -https://www.oceanexpert.org/institution/22125 -https://www.oceanexpert.org/expert/18063 -https://www.oceanexpert.org/expert/16991 -https://www.oceanexpert.org/expert/8250 -https://www.oceanexpert.org/expert/35928 -https://www.oceanexpert.org/expert/47861 -https://www.oceanexpert.org/expert/777 -https://www.oceanexpert.org/institution/21179 -https://www.oceanexpert.org/expert/18907 -https://www.oceanexpert.org/expert/48749 -https://www.oceanexpert.org/expert/2056 -https://www.oceanexpert.org/event/1635 -https://www.oceanexpert.org/expert/27002 -https://www.oceanexpert.org/expert/36983 -https://www.oceanexpert.org/institution/18485 -https://www.oceanexpert.org/institution/17713 -https://www.oceanexpert.org/expert/30107 -https://www.oceanexpert.org/expert/36630 -https://www.oceanexpert.org/expert/16843 -https://www.oceanexpert.org/event/2206 -https://www.oceanexpert.org/expert/29966 -https://www.oceanexpert.org/expert/2177 -https://www.oceanexpert.org/expert/17091 -https://www.oceanexpert.org/expert/19318 -https://www.oceanexpert.org/institution/13516 -https://www.oceanexpert.org/institution/20046 -https://www.oceanexpert.org/expert/36859 -https://www.oceanexpert.org/expert/20190 -https://www.oceanexpert.org/expert/21360 -https://www.oceanexpert.org/expert/5055 -https://www.oceanexpert.org/expert/46979 -https://www.oceanexpert.org/institution/19998 -https://www.oceanexpert.org/expert/19983 -https://www.oceanexpert.org/expert/18927 -https://www.oceanexpert.org/institution/22019 -https://www.oceanexpert.org/expert/25969 -https://www.oceanexpert.org/expert/22895 -https://www.oceanexpert.org/expert/48259 -https://www.oceanexpert.org/expert/992 -https://www.oceanexpert.org/expert/42443 -https://www.oceanexpert.org/expert/32180 -https://www.oceanexpert.org/institution/20837 -https://www.oceanexpert.org/expert/48958 -https://www.oceanexpert.org/expert/25237 -https://www.oceanexpert.org/expert/22033 -https://www.oceanexpert.org/event/3169 -https://www.oceanexpert.org/expert/24278 -https://www.oceanexpert.org/institution/21411 -https://www.oceanexpert.org/expert/20311 -https://www.oceanexpert.org/institution/22179 -https://www.oceanexpert.org/expert/26137 -https://www.oceanexpert.org/expert/11631 -https://www.oceanexpert.org/institution/8960 -https://www.oceanexpert.org/expert/43140 -https://www.oceanexpert.org/expert/47272 -https://www.oceanexpert.org/expert/21533 -https://www.oceanexpert.org/institution/21633 -https://www.oceanexpert.org/expert/23322 -https://www.oceanexpert.org/institution/19756 -https://www.oceanexpert.org/institution/21395 -https://www.oceanexpert.org/institution/10633 -https://www.oceanexpert.org/institution/20956 -https://www.oceanexpert.org/event/721 -https://www.oceanexpert.org/institution/11619 -https://www.oceanexpert.org/institution/21855 -https://www.oceanexpert.org/institution/18456 -https://www.oceanexpert.org/event/1617 -https://www.oceanexpert.org/expert/45695 -https://www.oceanexpert.org/expert/43218 -https://www.oceanexpert.org/expert/28095 -https://www.oceanexpert.org/expert/36867 -https://www.oceanexpert.org/institution/11364 -https://www.oceanexpert.org/institution/17954 -https://www.oceanexpert.org/expert/37359 -https://www.oceanexpert.org/institution/19184 -https://www.oceanexpert.org/expert/44229 -https://www.oceanexpert.org/expert/18512 -https://www.oceanexpert.org/expert/47454 -https://www.oceanexpert.org/expert/24003 -https://www.oceanexpert.org/expert/43302 -https://www.oceanexpert.org/expert/27377 -https://www.oceanexpert.org/expert/7417 -https://www.oceanexpert.org/expert/29483 -https://www.oceanexpert.org/institution/21598 -https://www.oceanexpert.org/institution/19341 -https://www.oceanexpert.org/institution/8477 -https://www.oceanexpert.org/expert/47171 -https://www.oceanexpert.org/expert/536 -https://www.oceanexpert.org/institution/12121 -https://www.oceanexpert.org/institution/19974 -https://www.oceanexpert.org/expert/16328 -https://www.oceanexpert.org/expert/6813 -https://www.oceanexpert.org/institution/17830 -https://www.oceanexpert.org/expert/46620 -https://www.oceanexpert.org/expert/45926 -https://www.oceanexpert.org/institution/20297 -https://www.oceanexpert.org/institution/21757 -https://www.oceanexpert.org/institution/22152 -https://www.oceanexpert.org/expert/26148 -https://www.oceanexpert.org/institution/6509 -https://www.oceanexpert.org/event/1205 -https://www.oceanexpert.org/expert/26266 -https://www.oceanexpert.org/event/609 -https://www.oceanexpert.org/expert/35725 -https://www.oceanexpert.org/expert/1528 -https://www.oceanexpert.org/event/150 -https://www.oceanexpert.org/institution/19595 -https://www.oceanexpert.org/expert/36379 -https://www.oceanexpert.org/expert/27468 -https://www.oceanexpert.org/expert/46095 -https://www.oceanexpert.org/expert/25001 -https://www.oceanexpert.org/institution/17767 -https://www.oceanexpert.org/institution/6839 -https://www.oceanexpert.org/institution/10933 -https://www.oceanexpert.org/expert/24744 -https://www.oceanexpert.org/event/3072 -https://www.oceanexpert.org/expert/29668 -https://www.oceanexpert.org/expert/44089 -https://www.oceanexpert.org/expert/15925 -https://www.oceanexpert.org/expert/31683 -https://www.oceanexpert.org/event/2101 -https://www.oceanexpert.org/expert/38355 -https://www.oceanexpert.org/expert/28390 -https://www.oceanexpert.org/institution/4890 -https://www.oceanexpert.org/expert/26886 -https://www.oceanexpert.org/institution/18389 -https://www.oceanexpert.org/expert/22123 -https://www.oceanexpert.org/expert/39828 -https://www.oceanexpert.org/expert/27584 -https://www.oceanexpert.org/institution/21677 -https://www.oceanexpert.org/institution/10902 -https://www.oceanexpert.org/institution/18297 -https://www.oceanexpert.org/expert/43117 -https://www.oceanexpert.org/expert/17104 -https://www.oceanexpert.org/expert/25996 -https://www.oceanexpert.org/event/829 -https://www.oceanexpert.org/expert/43752 -https://www.oceanexpert.org/institution/16638 -https://www.oceanexpert.org/expert/11595 -https://www.oceanexpert.org/expert/13338 -https://www.oceanexpert.org/institution/17598 -https://www.oceanexpert.org/event/1916 -https://www.oceanexpert.org/expert/29503 -https://www.oceanexpert.org/event/1489 -https://www.oceanexpert.org/institution/12939 -https://www.oceanexpert.org/event/954 -https://www.oceanexpert.org/expert/44712 -https://www.oceanexpert.org/event/3043 -https://www.oceanexpert.org/expert/7265 -https://www.oceanexpert.org/institution/10145 -https://www.oceanexpert.org/expert/25855 -https://www.oceanexpert.org/institution/21498 -https://www.oceanexpert.org/expert/44687 -https://www.oceanexpert.org/institution/20519 -https://www.oceanexpert.org/institution/14962 -https://www.oceanexpert.org/institution/15642 -https://www.oceanexpert.org/expert/16130 -https://www.oceanexpert.org/institution/15531 -https://www.oceanexpert.org/expert/18847 -https://www.oceanexpert.org/expert/38496 -https://www.oceanexpert.org/institution/12335 -https://www.oceanexpert.org/expert/44946 -https://www.oceanexpert.org/institution/17760 -https://www.oceanexpert.org/expert/22198 -https://www.oceanexpert.org/expert/23732 -https://www.oceanexpert.org/institution/20319 -https://www.oceanexpert.org/expert/37816 -https://www.oceanexpert.org/event/1094 -https://www.oceanexpert.org/expert/46172 -https://www.oceanexpert.org/event/2940 -https://www.oceanexpert.org/expert/19646 -https://www.oceanexpert.org/institution/6587 -https://www.oceanexpert.org/event/1236 -https://www.oceanexpert.org/expert/25470 -https://www.oceanexpert.org/expert/7169 -https://www.oceanexpert.org/expert/34670 -https://www.oceanexpert.org/expert/22517 -https://www.oceanexpert.org/expert/23589 -https://www.oceanexpert.org/expert/48960 -https://www.oceanexpert.org/expert/20508 -https://www.oceanexpert.org/expert/43001 -https://www.oceanexpert.org/expert/14299 -https://www.oceanexpert.org/expert/22853 -https://www.oceanexpert.org/institution/13895 -https://www.oceanexpert.org/expert/23821 -https://www.oceanexpert.org/expert/17610 -https://www.oceanexpert.org/expert/40280 -https://www.oceanexpert.org/expert/26068 -https://www.oceanexpert.org/expert/43308 -https://www.oceanexpert.org/expert/26797 -https://www.oceanexpert.org/expert/48739 -https://www.oceanexpert.org/institution/18484 -https://www.oceanexpert.org/expert/47119 -https://www.oceanexpert.org/expert/19759 -https://www.oceanexpert.org/expert/21552 -https://www.oceanexpert.org/expert/14419 -https://www.oceanexpert.org/expert/27788 -https://www.oceanexpert.org/expert/28416 -https://www.oceanexpert.org/institution/21640 -https://www.oceanexpert.org/expert/36585 -https://www.oceanexpert.org/event/345 -https://www.oceanexpert.org/expert/8111 -https://www.oceanexpert.org/expert/26650 -https://www.oceanexpert.org/expert/25418 -https://www.oceanexpert.org/expert/38401 -https://www.oceanexpert.org/institution/13124 -https://www.oceanexpert.org/expert/7414 -https://www.oceanexpert.org/institution/17973 -https://www.oceanexpert.org/institution/21996 -https://www.oceanexpert.org/expert/33763 -https://www.oceanexpert.org/event/733 -https://www.oceanexpert.org/event/218 -https://www.oceanexpert.org/expert/33907 -https://www.oceanexpert.org/expert/33708 -https://www.oceanexpert.org/expert/22845 -https://www.oceanexpert.org/event/1294 -https://www.oceanexpert.org/expert/25660 -https://www.oceanexpert.org/expert/16861 -https://www.oceanexpert.org/expert/14803 -https://www.oceanexpert.org/institution/11644 -https://www.oceanexpert.org/expert/38299 -https://www.oceanexpert.org/institution/19620 -https://www.oceanexpert.org/expert/40056 -https://www.oceanexpert.org/expert/25670 -https://www.oceanexpert.org/expert/21093 -https://www.oceanexpert.org/event/2126 -https://www.oceanexpert.org/expert/47554 -https://www.oceanexpert.org/expert/21106 -https://www.oceanexpert.org/expert/40339 -https://www.oceanexpert.org/expert/39610 -https://www.oceanexpert.org/institution/21414 -https://www.oceanexpert.org/event/2976 -https://www.oceanexpert.org/expert/7114 -https://www.oceanexpert.org/expert/11618 -https://www.oceanexpert.org/expert/37469 -https://www.oceanexpert.org/event/2805 -https://www.oceanexpert.org/expert/28099 -https://www.oceanexpert.org/expert/46646 -https://www.oceanexpert.org/expert/11482 -https://www.oceanexpert.org/expert/14910 -https://www.oceanexpert.org/expert/48419 -https://www.oceanexpert.org/expert/47355 -https://www.oceanexpert.org/expert/22781 -https://www.oceanexpert.org/expert/32352 -https://www.oceanexpert.org/expert/25304 -https://www.oceanexpert.org/expert/1883 -https://www.oceanexpert.org/expert/29893 -https://www.oceanexpert.org/expert/37599 -https://www.oceanexpert.org/expert/13624 -https://www.oceanexpert.org/expert/44330 -https://www.oceanexpert.org/expert/47736 -https://www.oceanexpert.org/expert/29483 -https://www.oceanexpert.org/expert/27231 -https://www.oceanexpert.org/expert/14202 -https://www.oceanexpert.org/expert/45995 -https://www.oceanexpert.org/expert/20397 -https://www.oceanexpert.org/expert/46518 -https://www.oceanexpert.org/expert/26899 -https://www.oceanexpert.org/expert/21636 -https://www.oceanexpert.org/expert/10552 -https://www.oceanexpert.org/expert/44941 -https://www.oceanexpert.org/expert/24196 -https://www.oceanexpert.org/event/2910 -https://www.oceanexpert.org/event/2730 -https://www.oceanexpert.org/expert/45376 -https://www.oceanexpert.org/expert/22644 -https://www.oceanexpert.org/institution/19911 -https://www.oceanexpert.org/expert/29436 -https://www.oceanexpert.org/institution/17629 -https://www.oceanexpert.org/expert/23301 -https://www.oceanexpert.org/institution/13938 -https://www.oceanexpert.org/expert/26747 -https://www.oceanexpert.org/expert/36323 -https://www.oceanexpert.org/expert/19214 -https://www.oceanexpert.org/expert/37935 -https://www.oceanexpert.org/expert/9809 -https://www.oceanexpert.org/expert/44760 -https://www.oceanexpert.org/institution/18950 -https://www.oceanexpert.org/institution/14880 -https://www.oceanexpert.org/event/2620 -https://www.oceanexpert.org/expert/34584 -https://www.oceanexpert.org/expert/27110 -https://www.oceanexpert.org/expert/48092 -https://www.oceanexpert.org/expert/48376 -https://www.oceanexpert.org/institution/14258 -https://www.oceanexpert.org/institution/22167 -https://www.oceanexpert.org/institution/18132 -https://www.oceanexpert.org/institution/15759 -https://www.oceanexpert.org/expert/46183 -https://www.oceanexpert.org/event/503 -https://www.oceanexpert.org/expert/35596 -https://www.oceanexpert.org/expert/44083 -https://www.oceanexpert.org/institution/21095 -https://www.oceanexpert.org/expert/40295 -https://www.oceanexpert.org/institution/21546 -https://www.oceanexpert.org/expert/25956 -https://www.oceanexpert.org/expert/48806 -https://www.oceanexpert.org/expert/36957 -https://www.oceanexpert.org/expert/25374 -https://www.oceanexpert.org/institution/22145 -https://www.oceanexpert.org/institution/21617 -https://www.oceanexpert.org/expert/11104 -https://www.oceanexpert.org/event/721 -https://www.oceanexpert.org/expert/27630 -https://www.oceanexpert.org/expert/27866 -https://www.oceanexpert.org/institution/15041 -https://www.oceanexpert.org/event/163 -https://www.oceanexpert.org/expert/35841 -https://www.oceanexpert.org/expert/3819 -https://www.oceanexpert.org/institution/14259 -https://www.oceanexpert.org/expert/13064 -https://www.oceanexpert.org/expert/39884 -https://www.oceanexpert.org/expert/21651 -https://www.oceanexpert.org/expert/42641 -https://www.oceanexpert.org/expert/18758 -https://www.oceanexpert.org/institution/20951 -https://www.oceanexpert.org/institution/21916 -https://www.oceanexpert.org/expert/28129 -https://www.oceanexpert.org/expert/44593 -https://www.oceanexpert.org/institution/12742 -https://www.oceanexpert.org/expert/36637 -https://www.oceanexpert.org/event/1692 -https://www.oceanexpert.org/institution/20942 -https://www.oceanexpert.org/institution/16521 -https://www.oceanexpert.org/event/286 -https://www.oceanexpert.org/expert/14388 -https://www.oceanexpert.org/expert/19958 -https://www.oceanexpert.org/institution/21071 -https://www.oceanexpert.org/expert/48895 -https://www.oceanexpert.org/expert/34792 -https://www.oceanexpert.org/expert/48986 -https://www.oceanexpert.org/expert/32950 -https://www.oceanexpert.org/expert/25063 -https://www.oceanexpert.org/expert/17351 -https://www.oceanexpert.org/expert/19261 -https://www.oceanexpert.org/institution/15661 -https://www.oceanexpert.org/expert/21537 -https://www.oceanexpert.org/institution/9303 -https://www.oceanexpert.org/event/343 -https://www.oceanexpert.org/event/2996 -https://www.oceanexpert.org/institution/18384 -https://www.oceanexpert.org/institution/13654 -https://www.oceanexpert.org/institution/21195 -https://www.oceanexpert.org/institution/11419 -https://www.oceanexpert.org/expert/32472 -https://www.oceanexpert.org/expert/2284 -https://www.oceanexpert.org/expert/18189 -https://www.oceanexpert.org/event/3112 -https://www.oceanexpert.org/expert/37861 -https://www.oceanexpert.org/expert/13166 -https://www.oceanexpert.org/expert/30307 -https://www.oceanexpert.org/expert/12806 -https://www.oceanexpert.org/expert/27013 -https://www.oceanexpert.org/expert/44677 -https://www.oceanexpert.org/expert/46411 -https://www.oceanexpert.org/institution/14738 -https://www.oceanexpert.org/institution/19765 -https://www.oceanexpert.org/expert/13258 -https://www.oceanexpert.org/expert/40535 -https://www.oceanexpert.org/event/2864 -https://www.oceanexpert.org/expert/44886 -https://www.oceanexpert.org/event/371 -https://www.oceanexpert.org/expert/16381 -https://www.oceanexpert.org/expert/48685 -https://www.oceanexpert.org/expert/21967 -https://www.oceanexpert.org/expert/12621 -https://www.oceanexpert.org/expert/17148 -https://www.oceanexpert.org/expert/23753 -https://www.oceanexpert.org/expert/8028 -https://www.oceanexpert.org/expert/18889 -https://www.oceanexpert.org/event/1934 -https://www.oceanexpert.org/expert/24666 -https://www.oceanexpert.org/event/2887 -https://www.oceanexpert.org/expert/27156 -https://www.oceanexpert.org/expert/9114 -https://www.oceanexpert.org/expert/559 -https://www.oceanexpert.org/expert/19851 -https://www.oceanexpert.org/expert/45725 -https://www.oceanexpert.org/expert/35773 -https://www.oceanexpert.org/expert/31657 -https://www.oceanexpert.org/institution/7736 -https://www.oceanexpert.org/expert/22545 -https://www.oceanexpert.org/expert/42473 -https://www.oceanexpert.org/expert/47457 -https://www.oceanexpert.org/expert/11373 -https://www.oceanexpert.org/expert/44338 -https://www.oceanexpert.org/institution/14678 -https://www.oceanexpert.org/institution/18634 -https://www.oceanexpert.org/expert/27709 -https://www.oceanexpert.org/institution/17058 -https://www.oceanexpert.org/expert/14389 -https://www.oceanexpert.org/institution/7234 -https://www.oceanexpert.org/event/1727 -https://www.oceanexpert.org/expert/11541 -https://www.oceanexpert.org/event/608 -https://www.oceanexpert.org/expert/46788 -https://www.oceanexpert.org/institution/18399 -https://www.oceanexpert.org/expert/46306 -https://www.oceanexpert.org/event/1415 -https://www.oceanexpert.org/expert/26512 -https://www.oceanexpert.org/expert/48362 -https://www.oceanexpert.org/expert/21220 -https://www.oceanexpert.org/expert/26054 -https://www.oceanexpert.org/expert/47415 -https://www.oceanexpert.org/expert/26707 -https://www.oceanexpert.org/institution/20630 -https://www.oceanexpert.org/institution/20284 -https://www.oceanexpert.org/expert/46625 -https://www.oceanexpert.org/expert/17427 -https://www.oceanexpert.org/institution/18910 -https://www.oceanexpert.org/institution/4953 -https://www.oceanexpert.org/expert/34774 -https://www.oceanexpert.org/expert/28785 -https://www.oceanexpert.org/institution/20992 -https://www.oceanexpert.org/expert/32439 -https://www.oceanexpert.org/institution/19065 -https://www.oceanexpert.org/institution/19800 -https://www.oceanexpert.org/expert/39477 -https://www.oceanexpert.org/expert/47650 -https://www.oceanexpert.org/institution/8916 -https://www.oceanexpert.org/expert/18884 -https://www.oceanexpert.org/institution/8599 -https://www.oceanexpert.org/expert/19878 -https://www.oceanexpert.org/institution/18470 -https://www.oceanexpert.org/expert/19888 -https://www.oceanexpert.org/expert/24252 -https://www.oceanexpert.org/institution/19340 -https://www.oceanexpert.org/expert/30600 -https://www.oceanexpert.org/expert/47278 -https://www.oceanexpert.org/expert/31278 -https://www.oceanexpert.org/expert/45883 -https://www.oceanexpert.org/expert/18806 -https://www.oceanexpert.org/institution/20452 -https://www.oceanexpert.org/expert/45505 -https://www.oceanexpert.org/expert/47326 -https://www.oceanexpert.org/expert/16424 -https://www.oceanexpert.org/institution/13589 -https://www.oceanexpert.org/institution/19812 -https://www.oceanexpert.org/expert/14166 -https://www.oceanexpert.org/expert/26676 -https://www.oceanexpert.org/expert/25969 -https://www.oceanexpert.org/expert/39345 -https://www.oceanexpert.org/expert/36164 -https://www.oceanexpert.org/institution/19191 -https://www.oceanexpert.org/expert/19588 -https://www.oceanexpert.org/expert/16792 -https://www.oceanexpert.org/expert/42589 -https://www.oceanexpert.org/expert/23497 -https://www.oceanexpert.org/expert/32160 -https://www.oceanexpert.org/institution/20851 -https://www.oceanexpert.org/institution/18834 -https://www.oceanexpert.org/institution/21531 -https://www.oceanexpert.org/institution/5145 -https://www.oceanexpert.org/expert/32506 -https://www.oceanexpert.org/institution/20456 -https://www.oceanexpert.org/institution/21147 -https://www.oceanexpert.org/expert/28354 -https://www.oceanexpert.org/institution/12797 -https://www.oceanexpert.org/institution/11003 -https://www.oceanexpert.org/expert/39033 -https://www.oceanexpert.org/expert/32568 -https://www.oceanexpert.org/expert/32474 -https://www.oceanexpert.org/institution/21138 -https://www.oceanexpert.org/expert/48518 -https://www.oceanexpert.org/event/2622 -https://www.oceanexpert.org/expert/25057 -https://www.oceanexpert.org/expert/42991 -https://www.oceanexpert.org/expert/41577 -https://www.oceanexpert.org/expert/12231 -https://www.oceanexpert.org/expert/31936 -https://www.oceanexpert.org/expert/19642 -https://www.oceanexpert.org/event/2289 -https://www.oceanexpert.org/expert/23538 -https://www.oceanexpert.org/expert/38271 -https://www.oceanexpert.org/expert/39959 -https://www.oceanexpert.org/expert/37816 -https://www.oceanexpert.org/institution/21163 -https://www.oceanexpert.org/expert/48119 -https://www.oceanexpert.org/expert/20842 -https://www.oceanexpert.org/expert/17593 -https://www.oceanexpert.org/expert/43025 -https://www.oceanexpert.org/expert/39008 -https://www.oceanexpert.org/event/2578 -https://www.oceanexpert.org/expert/17195 -https://www.oceanexpert.org/expert/35553 -https://www.oceanexpert.org/expert/45514 -https://www.oceanexpert.org/institution/21156 -https://www.oceanexpert.org/institution/10345 -https://www.oceanexpert.org/event/2703 -https://www.oceanexpert.org/institution/20074 -https://www.oceanexpert.org/institution/15153 -https://www.oceanexpert.org/expert/43563 -https://www.oceanexpert.org/expert/31076 -https://www.oceanexpert.org/expert/8756 -https://www.oceanexpert.org/expert/30541 -https://www.oceanexpert.org/expert/28488 -https://www.oceanexpert.org/expert/22081 -https://www.oceanexpert.org/expert/40557 -https://www.oceanexpert.org/expert/46001 -https://www.oceanexpert.org/expert/43618 -https://www.oceanexpert.org/expert/27418 -https://www.oceanexpert.org/event/526 -https://www.oceanexpert.org/expert/28151 -https://www.oceanexpert.org/expert/23504 -https://www.oceanexpert.org/expert/37663 -https://www.oceanexpert.org/expert/29128 -https://www.oceanexpert.org/expert/46118 -https://www.oceanexpert.org/event/2560 -https://www.oceanexpert.org/expert/48704 -https://www.oceanexpert.org/institution/19316 -https://www.oceanexpert.org/institution/10357 -https://www.oceanexpert.org/expert/32866 -https://www.oceanexpert.org/expert/29717 -https://www.oceanexpert.org/institution/19185 -https://www.oceanexpert.org/expert/45488 -https://www.oceanexpert.org/expert/47204 -https://www.oceanexpert.org/expert/22601 -https://www.oceanexpert.org/expert/26333 -https://www.oceanexpert.org/event/2146 -https://www.oceanexpert.org/expert/22337 -https://www.oceanexpert.org/expert/36968 -https://www.oceanexpert.org/institution/21203 -https://www.oceanexpert.org/institution/18898 -https://www.oceanexpert.org/expert/22985 -https://www.oceanexpert.org/expert/24458 -https://www.oceanexpert.org/expert/37978 -https://www.oceanexpert.org/expert/33747 -https://www.oceanexpert.org/event/347 -https://www.oceanexpert.org/expert/14935 -https://www.oceanexpert.org/expert/7662 -https://www.oceanexpert.org/expert/19992 -https://www.oceanexpert.org/expert/22745 -https://www.oceanexpert.org/institution/20458 -https://www.oceanexpert.org/expert/45839 -https://www.oceanexpert.org/institution/11659 -https://www.oceanexpert.org/expert/33411 -https://www.oceanexpert.org/expert/17984 -https://www.oceanexpert.org/expert/45673 -https://www.oceanexpert.org/expert/38364 -https://www.oceanexpert.org/event/2040 -https://www.oceanexpert.org/expert/20121 -https://www.oceanexpert.org/expert/45538 -https://www.oceanexpert.org/expert/31727 -https://www.oceanexpert.org/institution/9878 -https://www.oceanexpert.org/institution/19648 -https://www.oceanexpert.org/institution/12764 -https://www.oceanexpert.org/institution/18286 -https://www.oceanexpert.org/expert/44167 -https://www.oceanexpert.org/expert/48724 -https://www.oceanexpert.org/institution/19474 -https://www.oceanexpert.org/institution/16397 -https://www.oceanexpert.org/expert/32749 -https://www.oceanexpert.org/expert/37331 -https://www.oceanexpert.org/event/2507 -https://www.oceanexpert.org/expert/34463 -https://www.oceanexpert.org/expert/48311 -https://www.oceanexpert.org/institution/18182 -https://www.oceanexpert.org/expert/30645 -https://www.oceanexpert.org/expert/48318 -https://www.oceanexpert.org/expert/46417 -https://www.oceanexpert.org/institution/18072 -https://www.oceanexpert.org/expert/936 -https://www.oceanexpert.org/expert/44960 -https://www.oceanexpert.org/institution/12154 -https://www.oceanexpert.org/expert/25546 -https://www.oceanexpert.org/institution/17293 -https://www.oceanexpert.org/expert/37618 -https://www.oceanexpert.org/expert/36181 -https://www.oceanexpert.org/institution/7932 -https://www.oceanexpert.org/expert/6212 -https://www.oceanexpert.org/event/2288 -https://www.oceanexpert.org/expert/43371 -https://www.oceanexpert.org/institution/22059 -https://www.oceanexpert.org/expert/26050 -https://www.oceanexpert.org/expert/43606 -https://www.oceanexpert.org/expert/29951 -https://www.oceanexpert.org/expert/1907 -https://www.oceanexpert.org/expert/18648 -https://www.oceanexpert.org/expert/26794 -https://www.oceanexpert.org/expert/46825 -https://www.oceanexpert.org/expert/32246 -https://www.oceanexpert.org/expert/33272 -https://www.oceanexpert.org/expert/43593 -https://www.oceanexpert.org/expert/47323 -https://www.oceanexpert.org/institution/13895 -https://www.oceanexpert.org/expert/17161 -https://www.oceanexpert.org/expert/21189 -https://www.oceanexpert.org/expert/19555 -https://www.oceanexpert.org/expert/37033 -https://www.oceanexpert.org/expert/44336 -https://www.oceanexpert.org/expert/31986 -https://www.oceanexpert.org/expert/22220 -https://www.oceanexpert.org/institution/15957 -https://www.oceanexpert.org/expert/37585 -https://www.oceanexpert.org/expert/23121 -https://www.oceanexpert.org/expert/31043 -https://www.oceanexpert.org/expert/22942 -https://www.oceanexpert.org/expert/17132 -https://www.oceanexpert.org/expert/27931 -https://www.oceanexpert.org/expert/25023 -https://www.oceanexpert.org/expert/18934 -https://www.oceanexpert.org/expert/24324 -https://www.oceanexpert.org/expert/37646 -https://www.oceanexpert.org/expert/18200 -https://www.oceanexpert.org/expert/30862 -https://www.oceanexpert.org/expert/37853 -https://www.oceanexpert.org/expert/25903 -https://www.oceanexpert.org/expert/37193 -https://www.oceanexpert.org/expert/24910 -https://www.oceanexpert.org/expert/35957 -https://www.oceanexpert.org/expert/28058 -https://www.oceanexpert.org/expert/42967 -https://www.oceanexpert.org/expert/26331 -https://www.oceanexpert.org/expert/19132 -https://www.oceanexpert.org/expert/46917 -https://www.oceanexpert.org/institution/17617 -https://www.oceanexpert.org/expert/29501 -https://www.oceanexpert.org/expert/15796 -https://www.oceanexpert.org/expert/43167 -https://www.oceanexpert.org/expert/24190 -https://www.oceanexpert.org/expert/46057 -https://www.oceanexpert.org/expert/313 -https://www.oceanexpert.org/expert/19607 -https://www.oceanexpert.org/institution/15026 -https://www.oceanexpert.org/expert/33280 -https://www.oceanexpert.org/expert/28150 -https://www.oceanexpert.org/expert/6905 -https://www.oceanexpert.org/expert/47739 -https://www.oceanexpert.org/expert/22516 -https://www.oceanexpert.org/expert/14050 -https://www.oceanexpert.org/expert/2657 -https://www.oceanexpert.org/expert/48328 -https://www.oceanexpert.org/expert/1696 -https://www.oceanexpert.org/expert/48251 -https://www.oceanexpert.org/expert/21193 -https://www.oceanexpert.org/expert/23395 -https://www.oceanexpert.org/expert/46660 -https://www.oceanexpert.org/expert/30366 -https://www.oceanexpert.org/institution/19370 -https://www.oceanexpert.org/institution/11818 -https://www.oceanexpert.org/expert/27566 -https://www.oceanexpert.org/expert/46247 -https://www.oceanexpert.org/event/3131 -https://www.oceanexpert.org/expert/25467 -https://www.oceanexpert.org/institution/16238 -https://www.oceanexpert.org/expert/17927 -https://www.oceanexpert.org/institution/18148 -https://www.oceanexpert.org/institution/21034 -https://www.oceanexpert.org/expert/37784 -https://www.oceanexpert.org/expert/7473 -https://www.oceanexpert.org/expert/33028 -https://www.oceanexpert.org/expert/117 -https://www.oceanexpert.org/expert/29081 -https://www.oceanexpert.org/expert/26576 -https://www.oceanexpert.org/expert/22706 -https://www.oceanexpert.org/expert/42398 -https://www.oceanexpert.org/expert/21714 -https://www.oceanexpert.org/expert/18949 -https://www.oceanexpert.org/institution/21265 -https://www.oceanexpert.org/expert/26762 -https://www.oceanexpert.org/expert/33955 -https://www.oceanexpert.org/institution/21579 -https://www.oceanexpert.org/expert/19874 -https://www.oceanexpert.org/expert/47882 -https://www.oceanexpert.org/institution/14658 -https://www.oceanexpert.org/event/2851 -https://www.oceanexpert.org/expert/47390 -https://www.oceanexpert.org/expert/43647 -https://www.oceanexpert.org/institution/13724 -https://www.oceanexpert.org/expert/47951 -https://www.oceanexpert.org/institution/20134 -https://www.oceanexpert.org/expert/13378 -https://www.oceanexpert.org/expert/35077 -https://www.oceanexpert.org/expert/30037 -https://www.oceanexpert.org/expert/26050 -https://www.oceanexpert.org/expert/25505 -https://www.oceanexpert.org/expert/45468 -https://www.oceanexpert.org/institution/21895 -https://www.oceanexpert.org/institution/21202 -https://www.oceanexpert.org/institution/8227 -https://www.oceanexpert.org/institution/13426 -https://www.oceanexpert.org/expert/19693 -https://www.oceanexpert.org/institution/14177 -https://www.oceanexpert.org/institution/18574 -https://www.oceanexpert.org/expert/35099 -https://www.oceanexpert.org/institution/21541 -https://www.oceanexpert.org/event/1475 -https://www.oceanexpert.org/expert/44383 -https://www.oceanexpert.org/expert/44645 -https://www.oceanexpert.org/expert/34552 -https://www.oceanexpert.org/institution/9276 -https://www.oceanexpert.org/expert/27602 -https://www.oceanexpert.org/expert/24321 -https://www.oceanexpert.org/expert/48725 -https://www.oceanexpert.org/expert/17540 -https://www.oceanexpert.org/expert/16394 -https://www.oceanexpert.org/event/1190 -https://www.oceanexpert.org/expert/24370 -https://www.oceanexpert.org/expert/23479 -https://www.oceanexpert.org/institution/19950 -https://www.oceanexpert.org/expert/48526 -https://www.oceanexpert.org/event/3241 -https://www.oceanexpert.org/expert/2860 -https://www.oceanexpert.org/institution/18192 -https://www.oceanexpert.org/institution/22145 -https://www.oceanexpert.org/expert/28489 -https://www.oceanexpert.org/institution/14924 -https://www.oceanexpert.org/expert/32756 -https://www.oceanexpert.org/expert/42151 -https://www.oceanexpert.org/expert/25688 -https://www.oceanexpert.org/expert/13451 -https://www.oceanexpert.org/expert/35949 -https://www.oceanexpert.org/expert/24311 -https://www.oceanexpert.org/expert/44959 -https://www.oceanexpert.org/expert/48538 -https://www.oceanexpert.org/expert/45608 -https://www.oceanexpert.org/expert/13423 -https://www.oceanexpert.org/expert/42850 -https://www.oceanexpert.org/expert/44606 -https://www.oceanexpert.org/expert/21463 -https://www.oceanexpert.org/institution/22039 -https://www.oceanexpert.org/expert/9131 -https://www.oceanexpert.org/event/316 -https://www.oceanexpert.org/expert/44376 -https://www.oceanexpert.org/expert/15123 -https://www.oceanexpert.org/expert/23260 -https://www.oceanexpert.org/expert/2283 -https://www.oceanexpert.org/institution/10761 -https://www.oceanexpert.org/expert/23673 -https://www.oceanexpert.org/expert/25360 -https://www.oceanexpert.org/expert/12525 -https://www.oceanexpert.org/expert/20984 -https://www.oceanexpert.org/expert/16713 -https://www.oceanexpert.org/expert/26216 -https://www.oceanexpert.org/expert/44065 -https://www.oceanexpert.org/expert/43635 -https://www.oceanexpert.org/expert/44461 -https://www.oceanexpert.org/institution/13116 -https://www.oceanexpert.org/event/2938 -https://www.oceanexpert.org/expert/47787 -https://www.oceanexpert.org/expert/23813 -https://www.oceanexpert.org/expert/32190 -https://www.oceanexpert.org/expert/30666 -https://www.oceanexpert.org/expert/27045 -https://www.oceanexpert.org/institution/22180 -https://www.oceanexpert.org/expert/47074 -https://www.oceanexpert.org/institution/8326 -https://www.oceanexpert.org/expert/28392 -https://www.oceanexpert.org/institution/14266 -https://www.oceanexpert.org/expert/48658 -https://www.oceanexpert.org/expert/31185 -https://www.oceanexpert.org/institution/20586 -https://www.oceanexpert.org/expert/39555 -https://www.oceanexpert.org/institution/19261 -https://www.oceanexpert.org/expert/33911 -https://www.oceanexpert.org/expert/36379 -https://www.oceanexpert.org/expert/37328 -https://www.oceanexpert.org/event/297 -https://www.oceanexpert.org/institution/18274 -https://www.oceanexpert.org/expert/48599 -https://www.oceanexpert.org/institution/14798 -https://www.oceanexpert.org/expert/1970 -https://www.oceanexpert.org/event/2121 -https://www.oceanexpert.org/expert/23778 -https://www.oceanexpert.org/expert/22643 -https://www.oceanexpert.org/event/1026 -https://www.oceanexpert.org/expert/32931 -https://www.oceanexpert.org/expert/33501 -https://www.oceanexpert.org/institution/21450 -https://www.oceanexpert.org/institution/12141 -https://www.oceanexpert.org/institution/14984 -https://www.oceanexpert.org/institution/13659 -https://www.oceanexpert.org/event/2825 -https://www.oceanexpert.org/expert/6924 -https://www.oceanexpert.org/event/1035 -https://www.oceanexpert.org/institution/16973 -https://www.oceanexpert.org/institution/15992 -https://www.oceanexpert.org/event/1629 -https://www.oceanexpert.org/expert/32187 -https://www.oceanexpert.org/expert/48780 -https://www.oceanexpert.org/institution/21626 -https://www.oceanexpert.org/event/485 -https://www.oceanexpert.org/expert/48199 -https://www.oceanexpert.org/expert/47799 -https://www.oceanexpert.org/institution/18984 -https://www.oceanexpert.org/institution/20598 -https://www.oceanexpert.org/institution/21800 -https://www.oceanexpert.org/expert/45643 -https://www.oceanexpert.org/expert/21170 -https://www.oceanexpert.org/institution/21692 -https://www.oceanexpert.org/expert/4574 -https://www.oceanexpert.org/expert/37532 -https://www.oceanexpert.org/institution/19138 -https://www.oceanexpert.org/expert/43269 -https://www.oceanexpert.org/expert/39479 -https://www.oceanexpert.org/expert/43087 -https://www.oceanexpert.org/institution/20428 -https://www.oceanexpert.org/expert/48482 -https://www.oceanexpert.org/event/2797 -https://www.oceanexpert.org/expert/43082 -https://www.oceanexpert.org/expert/29146 -https://www.oceanexpert.org/event/1716 -https://www.oceanexpert.org/expert/6942 -https://www.oceanexpert.org/expert/19782 -https://www.oceanexpert.org/expert/30711 -https://www.oceanexpert.org/expert/19040 -https://www.oceanexpert.org/institution/10052 -https://www.oceanexpert.org/institution/9974 -https://www.oceanexpert.org/expert/13262 -https://www.oceanexpert.org/expert/37104 -https://www.oceanexpert.org/expert/15289 -https://www.oceanexpert.org/institution/19776 -https://www.oceanexpert.org/expert/13378 -https://www.oceanexpert.org/expert/47948 -https://www.oceanexpert.org/expert/44339 -https://www.oceanexpert.org/expert/32700 -https://www.oceanexpert.org/expert/46240 -https://www.oceanexpert.org/institution/20726 -https://www.oceanexpert.org/expert/43229 -https://www.oceanexpert.org/expert/7185 -https://www.oceanexpert.org/expert/30016 -https://www.oceanexpert.org/expert/46268 -https://www.oceanexpert.org/institution/10719 -https://www.oceanexpert.org/institution/14039 -https://www.oceanexpert.org/expert/33715 -https://www.oceanexpert.org/expert/13398 -https://www.oceanexpert.org/expert/7140 -https://www.oceanexpert.org/institution/17668 -https://www.oceanexpert.org/institution/15219 -https://www.oceanexpert.org/expert/47656 -https://www.oceanexpert.org/expert/44539 -https://www.oceanexpert.org/institution/16884 -https://www.oceanexpert.org/expert/20440 -https://www.oceanexpert.org/institution/21529 -https://www.oceanexpert.org/institution/21076 -https://www.oceanexpert.org/institution/9486 -https://www.oceanexpert.org/institution/6709 -https://www.oceanexpert.org/institution/9870 -https://www.oceanexpert.org/expert/7749 -https://www.oceanexpert.org/expert/43112 -https://www.oceanexpert.org/expert/38222 -https://www.oceanexpert.org/institution/21743 -https://www.oceanexpert.org/expert/22960 -https://www.oceanexpert.org/expert/25537 -https://www.oceanexpert.org/expert/5281 -https://www.oceanexpert.org/institution/21967 -https://www.oceanexpert.org/expert/20581 -https://www.oceanexpert.org/expert/47826 -https://www.oceanexpert.org/expert/13124 -https://www.oceanexpert.org/expert/31691 -https://www.oceanexpert.org/event/55 -https://www.oceanexpert.org/expert/46037 -https://www.oceanexpert.org/expert/45604 -https://www.oceanexpert.org/expert/13022 -https://www.oceanexpert.org/event/1095 -https://www.oceanexpert.org/expert/43565 -https://www.oceanexpert.org/expert/6779 -https://www.oceanexpert.org/institution/12914 -https://www.oceanexpert.org/expert/18760 -https://www.oceanexpert.org/expert/24444 -https://www.oceanexpert.org/expert/33235 -https://www.oceanexpert.org/institution/5839 -https://www.oceanexpert.org/expert/46393 -https://www.oceanexpert.org/expert/46473 -https://www.oceanexpert.org/event/2247 -https://www.oceanexpert.org/event/1516 -https://www.oceanexpert.org/expert/24786 -https://www.oceanexpert.org/institution/6143 -https://www.oceanexpert.org/expert/24322 -https://www.oceanexpert.org/expert/25552 -https://www.oceanexpert.org/expert/25060 -https://www.oceanexpert.org/expert/45807 -https://www.oceanexpert.org/expert/13278 -https://www.oceanexpert.org/expert/32348 -https://www.oceanexpert.org/expert/17329 -https://www.oceanexpert.org/expert/7255 -https://www.oceanexpert.org/expert/35749 -https://www.oceanexpert.org/institution/20289 -https://www.oceanexpert.org/expert/44076 -https://www.oceanexpert.org/expert/34531 -https://www.oceanexpert.org/institution/21999 -https://www.oceanexpert.org/expert/48603 -https://www.oceanexpert.org/institution/21741 -https://www.oceanexpert.org/institution/20081 -https://www.oceanexpert.org/event/2226 -https://www.oceanexpert.org/institution/12944 -https://www.oceanexpert.org/expert/31083 -https://www.oceanexpert.org/expert/43421 -https://www.oceanexpert.org/institution/18833 -https://www.oceanexpert.org/expert/42658 -https://www.oceanexpert.org/expert/26064 -https://www.oceanexpert.org/expert/27777 -https://www.oceanexpert.org/expert/43508 -https://www.oceanexpert.org/institution/21338 -https://www.oceanexpert.org/expert/26781 -https://www.oceanexpert.org/expert/25029 -https://www.oceanexpert.org/institution/19268 -https://www.oceanexpert.org/institution/21397 -https://www.oceanexpert.org/expert/44694 -https://www.oceanexpert.org/expert/22168 -https://www.oceanexpert.org/expert/46868 -https://www.oceanexpert.org/expert/31098 -https://www.oceanexpert.org/expert/29560 -https://www.oceanexpert.org/expert/25201 -https://www.oceanexpert.org/expert/18545 -https://www.oceanexpert.org/institution/5725 -https://www.oceanexpert.org/expert/26440 -https://www.oceanexpert.org/expert/35510 -https://www.oceanexpert.org/expert/30738 -https://www.oceanexpert.org/institution/21434 -https://www.oceanexpert.org/expert/28021 -https://www.oceanexpert.org/expert/48139 -https://www.oceanexpert.org/expert/2707 -https://www.oceanexpert.org/expert/2078 -https://www.oceanexpert.org/expert/47840 -https://www.oceanexpert.org/expert/14233 -https://www.oceanexpert.org/expert/31101 -https://www.oceanexpert.org/expert/18546 -https://www.oceanexpert.org/expert/42879 -https://www.oceanexpert.org/expert/43312 -https://www.oceanexpert.org/institution/8344 -https://www.oceanexpert.org/institution/15110 -https://www.oceanexpert.org/institution/21144 -https://www.oceanexpert.org/expert/37549 -https://www.oceanexpert.org/expert/40000 -https://www.oceanexpert.org/event/1734 -https://www.oceanexpert.org/event/2672 -https://www.oceanexpert.org/expert/38537 -https://www.oceanexpert.org/institution/18297 -https://www.oceanexpert.org/expert/24342 -https://www.oceanexpert.org/expert/29055 -https://www.oceanexpert.org/expert/28259 -https://www.oceanexpert.org/expert/37028 -https://www.oceanexpert.org/expert/37822 -https://www.oceanexpert.org/institution/12507 -https://www.oceanexpert.org/expert/3103 -https://www.oceanexpert.org/expert/20160 -https://www.oceanexpert.org/expert/13030 -https://www.oceanexpert.org/expert/39163 -https://www.oceanexpert.org/expert/48329 -https://www.oceanexpert.org/expert/36381 -https://www.oceanexpert.org/institution/14641 -https://www.oceanexpert.org/event/2610 -https://www.oceanexpert.org/expert/20811 -https://www.oceanexpert.org/expert/38853 -https://www.oceanexpert.org/expert/25902 -https://www.oceanexpert.org/expert/18521 -https://www.oceanexpert.org/expert/23944 -https://www.oceanexpert.org/expert/38027 -https://www.oceanexpert.org/institution/22083 -https://www.oceanexpert.org/expert/3181 -https://www.oceanexpert.org/event/2837 -https://www.oceanexpert.org/expert/17574 -https://www.oceanexpert.org/institution/18039 -https://www.oceanexpert.org/expert/29180 -https://www.oceanexpert.org/expert/17776 -https://www.oceanexpert.org/institution/20288 -https://www.oceanexpert.org/expert/37636 -https://www.oceanexpert.org/expert/20555 -https://www.oceanexpert.org/expert/14763 -https://www.oceanexpert.org/expert/7662 -https://www.oceanexpert.org/event/1079 -https://www.oceanexpert.org/institution/21702 -https://www.oceanexpert.org/expert/31475 -https://www.oceanexpert.org/expert/27259 -https://www.oceanexpert.org/institution/22142 -https://www.oceanexpert.org/institution/21382 -https://www.oceanexpert.org/expert/9585 -https://www.oceanexpert.org/expert/10783 -https://www.oceanexpert.org/event/2129 -https://www.oceanexpert.org/institution/14385 -https://www.oceanexpert.org/expert/25406 -https://www.oceanexpert.org/expert/15550 -https://www.oceanexpert.org/expert/46659 -https://www.oceanexpert.org/expert/43638 -https://www.oceanexpert.org/expert/34620 -https://www.oceanexpert.org/expert/23620 -https://www.oceanexpert.org/expert/30289 -https://www.oceanexpert.org/institution/12880 -https://www.oceanexpert.org/expert/35458 -https://www.oceanexpert.org/institution/10655 -https://www.oceanexpert.org/institution/10454 -https://www.oceanexpert.org/event/2737 -https://www.oceanexpert.org/expert/217 -https://www.oceanexpert.org/expert/49039 -https://www.oceanexpert.org/expert/35015 -https://www.oceanexpert.org/institution/18593 -https://www.oceanexpert.org/expert/24937 -https://www.oceanexpert.org/institution/13860 -https://www.oceanexpert.org/institution/18447 -https://www.oceanexpert.org/institution/18447 -https://www.oceanexpert.org/expert/26401 -https://www.oceanexpert.org/institution/21292 -https://www.oceanexpert.org/expert/23050 -https://www.oceanexpert.org/expert/3993 -https://www.oceanexpert.org/expert/30588 -https://www.oceanexpert.org/expert/34242 -https://www.oceanexpert.org/expert/27119 -https://www.oceanexpert.org/expert/19825 -https://www.oceanexpert.org/expert/990 -https://www.oceanexpert.org/expert/27328 -https://www.oceanexpert.org/institution/6142 -https://www.oceanexpert.org/institution/21602 -https://www.oceanexpert.org/expert/12093 -https://www.oceanexpert.org/expert/20482 -https://www.oceanexpert.org/expert/12235 -https://www.oceanexpert.org/expert/22801 -https://www.oceanexpert.org/institution/16254 -https://www.oceanexpert.org/institution/21088 -https://www.oceanexpert.org/expert/21201 -https://www.oceanexpert.org/expert/9250 -https://www.oceanexpert.org/expert/23509 -https://www.oceanexpert.org/expert/18141 -https://www.oceanexpert.org/event/1948 -https://www.oceanexpert.org/expert/47167 -https://www.oceanexpert.org/expert/44841 -https://www.oceanexpert.org/expert/7375 -https://www.oceanexpert.org/expert/17201 -https://www.oceanexpert.org/expert/46963 -https://www.oceanexpert.org/institution/14641 -https://www.oceanexpert.org/event/970 -https://www.oceanexpert.org/institution/21421 -https://www.oceanexpert.org/expert/32701 -https://www.oceanexpert.org/expert/18145 -https://www.oceanexpert.org/expert/14192 -https://www.oceanexpert.org/expert/34454 -https://www.oceanexpert.org/institution/10330 -https://www.oceanexpert.org/expert/29479 -https://www.oceanexpert.org/expert/25472 -https://www.oceanexpert.org/expert/4342 -https://www.oceanexpert.org/expert/16192 -https://www.oceanexpert.org/expert/18478 -https://www.oceanexpert.org/expert/34242 -https://www.oceanexpert.org/expert/20407 -https://www.oceanexpert.org/expert/34422 -https://www.oceanexpert.org/expert/47116 -https://www.oceanexpert.org/expert/36576 -https://www.oceanexpert.org/institution/18157 -https://www.oceanexpert.org/institution/12286 -https://www.oceanexpert.org/institution/19089 -https://www.oceanexpert.org/expert/32678 -https://www.oceanexpert.org/event/16 -https://www.oceanexpert.org/expert/18929 -https://www.oceanexpert.org/expert/34282 -https://www.oceanexpert.org/expert/27751 -https://www.oceanexpert.org/expert/24862 -https://www.oceanexpert.org/institution/19256 -https://www.oceanexpert.org/expert/24250 -https://www.oceanexpert.org/expert/23337 -https://www.oceanexpert.org/expert/45060 -https://www.oceanexpert.org/expert/25670 -https://www.oceanexpert.org/institution/19280 -https://www.oceanexpert.org/expert/14507 -https://www.oceanexpert.org/event/2108 -https://www.oceanexpert.org/expert/19252 -https://www.oceanexpert.org/expert/16633 -https://www.oceanexpert.org/institution/15778 -https://www.oceanexpert.org/institution/6974 -https://www.oceanexpert.org/institution/20796 -https://www.oceanexpert.org/expert/26509 -https://www.oceanexpert.org/expert/44587 -https://www.oceanexpert.org/expert/46355 -https://www.oceanexpert.org/institution/13313 -https://www.oceanexpert.org/institution/17029 -https://www.oceanexpert.org/expert/25362 -https://www.oceanexpert.org/expert/30102 -https://www.oceanexpert.org/expert/18184 -https://www.oceanexpert.org/institution/18461 -https://www.oceanexpert.org/expert/45880 -https://www.oceanexpert.org/expert/26963 -https://www.oceanexpert.org/expert/39959 -https://www.oceanexpert.org/institution/18057 -https://www.oceanexpert.org/institution/19302 -https://www.oceanexpert.org/expert/37032 -https://www.oceanexpert.org/expert/43960 -https://www.oceanexpert.org/expert/21612 -https://www.oceanexpert.org/expert/37934 -https://www.oceanexpert.org/expert/18837 -https://www.oceanexpert.org/expert/48031 -https://www.oceanexpert.org/institution/11783 -https://www.oceanexpert.org/expert/43190 -https://www.oceanexpert.org/expert/35431 -https://www.oceanexpert.org/institution/19648 -https://www.oceanexpert.org/expert/36529 -https://www.oceanexpert.org/institution/20985 -https://www.oceanexpert.org/expert/47822 -https://www.oceanexpert.org/expert/17266 -https://www.oceanexpert.org/expert/16150 -https://www.oceanexpert.org/event/2456 -https://www.oceanexpert.org/expert/25722 -https://www.oceanexpert.org/expert/23479 -https://www.oceanexpert.org/expert/43197 -https://www.oceanexpert.org/institution/12932 -https://www.oceanexpert.org/institution/21980 -https://www.oceanexpert.org/institution/21876 -https://www.oceanexpert.org/expert/30218 -https://www.oceanexpert.org/expert/11695 -https://www.oceanexpert.org/expert/18889 -https://www.oceanexpert.org/expert/24596 -https://www.oceanexpert.org/expert/18207 -https://www.oceanexpert.org/expert/40928 -https://www.oceanexpert.org/institution/19195 -https://www.oceanexpert.org/institution/9300 -https://www.oceanexpert.org/institution/10084 -https://www.oceanexpert.org/event/2241 -https://www.oceanexpert.org/expert/40114 -https://www.oceanexpert.org/expert/37564 -https://www.oceanexpert.org/expert/26234 -https://www.oceanexpert.org/expert/27474 -https://www.oceanexpert.org/expert/27123 -https://www.oceanexpert.org/event/2169 -https://www.oceanexpert.org/expert/43295 -https://www.oceanexpert.org/expert/43729 -https://www.oceanexpert.org/institution/20995 -https://www.oceanexpert.org/institution/16394 -https://www.oceanexpert.org/institution/13519 -https://www.oceanexpert.org/expert/23757 -https://www.oceanexpert.org/expert/46852 -https://www.oceanexpert.org/expert/23223 -https://www.oceanexpert.org/expert/29509 -https://www.oceanexpert.org/institution/19381 -https://www.oceanexpert.org/expert/46465 -https://www.oceanexpert.org/expert/29635 -https://www.oceanexpert.org/expert/45452 -https://www.oceanexpert.org/expert/22449 -https://www.oceanexpert.org/expert/24653 -https://www.oceanexpert.org/institution/13525 -https://www.oceanexpert.org/institution/22132 -https://www.oceanexpert.org/event/1221 -https://www.oceanexpert.org/expert/2056 -https://www.oceanexpert.org/institution/19853 -https://www.oceanexpert.org/expert/31220 -https://www.oceanexpert.org/expert/37571 -https://www.oceanexpert.org/institution/12000 -https://www.oceanexpert.org/event/2643 -https://www.oceanexpert.org/expert/45572 -https://www.oceanexpert.org/expert/38090 -https://www.oceanexpert.org/expert/40903 -https://www.oceanexpert.org/expert/31389 -https://www.oceanexpert.org/expert/8330 -https://www.oceanexpert.org/expert/48842 -https://www.oceanexpert.org/expert/46132 -https://www.oceanexpert.org/event/1767 -https://www.oceanexpert.org/expert/36207 -https://www.oceanexpert.org/expert/46421 -https://www.oceanexpert.org/event/2309 -https://www.oceanexpert.org/expert/42010 -https://www.oceanexpert.org/institution/13714 -https://www.oceanexpert.org/event/175 -https://www.oceanexpert.org/institution/5863 -https://www.oceanexpert.org/expert/45425 -https://www.oceanexpert.org/expert/26536 -https://www.oceanexpert.org/institution/18714 -https://www.oceanexpert.org/expert/8398 -https://www.oceanexpert.org/expert/30029 -https://www.oceanexpert.org/expert/34353 -https://www.oceanexpert.org/expert/19656 -https://www.oceanexpert.org/expert/19163 -https://www.oceanexpert.org/event/1018 -https://www.oceanexpert.org/expert/46553 -https://www.oceanexpert.org/expert/34343 -https://www.oceanexpert.org/expert/33151 -https://www.oceanexpert.org/event/905 -https://www.oceanexpert.org/expert/44022 -https://www.oceanexpert.org/expert/7748 -https://www.oceanexpert.org/expert/46500 -https://www.oceanexpert.org/event/2615 -https://www.oceanexpert.org/expert/24095 -https://www.oceanexpert.org/expert/43495 -https://www.oceanexpert.org/expert/34510 -https://www.oceanexpert.org/expert/44771 -https://www.oceanexpert.org/expert/30822 -https://www.oceanexpert.org/event/977 -https://www.oceanexpert.org/expert/28298 -https://www.oceanexpert.org/institution/21411 -https://www.oceanexpert.org/expert/29311 -https://www.oceanexpert.org/expert/27149 -https://www.oceanexpert.org/institution/21224 -https://www.oceanexpert.org/expert/32804 -https://www.oceanexpert.org/institution/5070 -https://www.oceanexpert.org/institution/11828 -https://www.oceanexpert.org/expert/43890 -https://www.oceanexpert.org/expert/20630 -https://www.oceanexpert.org/expert/37314 -https://www.oceanexpert.org/expert/23286 -https://www.oceanexpert.org/institution/21393 -https://www.oceanexpert.org/event/2679 -https://www.oceanexpert.org/expert/27914 -https://www.oceanexpert.org/institution/12999 -https://www.oceanexpert.org/expert/46905 -https://www.oceanexpert.org/institution/21020 -https://www.oceanexpert.org/expert/17378 -https://www.oceanexpert.org/expert/13488 -https://www.oceanexpert.org/institution/14177 -https://www.oceanexpert.org/expert/23958 -https://www.oceanexpert.org/expert/12175 -https://www.oceanexpert.org/expert/48283 -https://www.oceanexpert.org/institution/21904 -https://www.oceanexpert.org/expert/19438 -https://www.oceanexpert.org/expert/3238 -https://www.oceanexpert.org/expert/43422 -https://www.oceanexpert.org/expert/27674 -https://www.oceanexpert.org/expert/35532 -https://www.oceanexpert.org/expert/28381 -https://www.oceanexpert.org/expert/44570 -https://www.oceanexpert.org/expert/122 -https://www.oceanexpert.org/expert/19019 -https://www.oceanexpert.org/expert/23424 -https://www.oceanexpert.org/expert/25445 -https://www.oceanexpert.org/expert/37880 -https://www.oceanexpert.org/expert/47248 -https://www.oceanexpert.org/expert/41394 -https://www.oceanexpert.org/institution/19860 -https://www.oceanexpert.org/expert/26923 -https://www.oceanexpert.org/expert/31716 -https://www.oceanexpert.org/expert/3552 -https://www.oceanexpert.org/expert/35812 -https://www.oceanexpert.org/expert/21977 -https://www.oceanexpert.org/expert/30527 -https://www.oceanexpert.org/expert/45785 -https://www.oceanexpert.org/expert/29740 -https://www.oceanexpert.org/institution/9133 -https://www.oceanexpert.org/expert/43363 -https://www.oceanexpert.org/institution/21892 -https://www.oceanexpert.org/expert/44397 -https://www.oceanexpert.org/institution/21234 -https://www.oceanexpert.org/event/2136 -https://www.oceanexpert.org/expert/34693 -https://www.oceanexpert.org/expert/25405 -https://www.oceanexpert.org/expert/36638 -https://www.oceanexpert.org/expert/5544 -https://www.oceanexpert.org/event/1195 -https://www.oceanexpert.org/institution/10555 -https://www.oceanexpert.org/institution/21786 -https://www.oceanexpert.org/institution/11609 -https://www.oceanexpert.org/institution/7921 -https://www.oceanexpert.org/expert/5166 -https://www.oceanexpert.org/institution/16058 -https://www.oceanexpert.org/institution/6185 -https://www.oceanexpert.org/expert/43717 -https://www.oceanexpert.org/institution/7120 -https://www.oceanexpert.org/expert/46202 -https://www.oceanexpert.org/expert/32651 -https://www.oceanexpert.org/expert/26251 -https://www.oceanexpert.org/expert/28382 -https://www.oceanexpert.org/institution/20648 -https://www.oceanexpert.org/institution/18553 -https://www.oceanexpert.org/institution/11455 -https://www.oceanexpert.org/event/579 -https://www.oceanexpert.org/expert/2947 -https://www.oceanexpert.org/institution/16999 -https://www.oceanexpert.org/expert/28823 -https://www.oceanexpert.org/expert/25848 -https://www.oceanexpert.org/institution/22105 -https://www.oceanexpert.org/institution/21499 -https://www.oceanexpert.org/expert/25862 -https://www.oceanexpert.org/event/1641 -https://www.oceanexpert.org/expert/7318 -https://www.oceanexpert.org/institution/5107 -https://www.oceanexpert.org/expert/35807 -https://www.oceanexpert.org/expert/47927 -https://www.oceanexpert.org/expert/5593 -https://www.oceanexpert.org/expert/25213 -https://www.oceanexpert.org/expert/23537 -https://www.oceanexpert.org/expert/40055 -https://www.oceanexpert.org/expert/26577 -https://www.oceanexpert.org/institution/21682 -https://www.oceanexpert.org/expert/21358 -https://www.oceanexpert.org/institution/21653 -https://www.oceanexpert.org/expert/37829 -https://www.oceanexpert.org/expert/38834 -https://www.oceanexpert.org/expert/24726 -https://www.oceanexpert.org/expert/28091 -https://www.oceanexpert.org/expert/44238 -https://www.oceanexpert.org/expert/14632 -https://www.oceanexpert.org/expert/34540 -https://www.oceanexpert.org/institution/15812 -https://www.oceanexpert.org/expert/47074 -https://www.oceanexpert.org/expert/36505 -https://www.oceanexpert.org/expert/43062 -https://www.oceanexpert.org/expert/22632 -https://www.oceanexpert.org/institution/5074 -https://www.oceanexpert.org/expert/27334 -https://www.oceanexpert.org/expert/12489 -https://www.oceanexpert.org/expert/21717 -https://www.oceanexpert.org/expert/22584 -https://www.oceanexpert.org/expert/38266 -https://www.oceanexpert.org/expert/30664 -https://www.oceanexpert.org/expert/45846 -https://www.oceanexpert.org/expert/48833 -https://www.oceanexpert.org/event/1668 -https://www.oceanexpert.org/institution/17967 -https://www.oceanexpert.org/expert/40024 -https://www.oceanexpert.org/institution/5247 -https://www.oceanexpert.org/institution/17480 -https://www.oceanexpert.org/expert/26171 -https://www.oceanexpert.org/expert/46482 -https://www.oceanexpert.org/expert/31771 -https://www.oceanexpert.org/institution/19413 -https://www.oceanexpert.org/institution/18566 -https://www.oceanexpert.org/institution/7078 -https://www.oceanexpert.org/expert/17514 -https://www.oceanexpert.org/expert/35741 -https://www.oceanexpert.org/institution/20263 -https://www.oceanexpert.org/expert/15510 -https://www.oceanexpert.org/event/3020 -https://www.oceanexpert.org/expert/20756 -https://www.oceanexpert.org/expert/22234 -https://www.oceanexpert.org/expert/27731 -https://www.oceanexpert.org/event/764 -https://www.oceanexpert.org/expert/37497 -https://www.oceanexpert.org/expert/36468 -https://www.oceanexpert.org/expert/21239 -https://www.oceanexpert.org/expert/44812 -https://www.oceanexpert.org/institution/16859 -https://www.oceanexpert.org/expert/46141 -https://www.oceanexpert.org/expert/19254 -https://www.oceanexpert.org/expert/11057 -https://www.oceanexpert.org/expert/32920 -https://www.oceanexpert.org/expert/12604 -https://www.oceanexpert.org/event/2987 -https://www.oceanexpert.org/institution/18544 -https://www.oceanexpert.org/expert/25497 -https://www.oceanexpert.org/expert/9888 -https://www.oceanexpert.org/expert/21904 -https://www.oceanexpert.org/event/1675 -https://www.oceanexpert.org/expert/28468 -https://www.oceanexpert.org/institution/11626 -https://www.oceanexpert.org/expert/18242 -https://www.oceanexpert.org/institution/21994 -https://www.oceanexpert.org/expert/21752 -https://www.oceanexpert.org/expert/39271 -https://www.oceanexpert.org/event/757 -https://www.oceanexpert.org/expert/29787 -https://www.oceanexpert.org/event/559 -https://www.oceanexpert.org/expert/35871 -https://www.oceanexpert.org/expert/19487 -https://www.oceanexpert.org/expert/44435 -https://www.oceanexpert.org/expert/25217 -https://www.oceanexpert.org/event/1001 -https://www.oceanexpert.org/event/270 -https://www.oceanexpert.org/expert/42579 -https://www.oceanexpert.org/expert/40299 -https://www.oceanexpert.org/expert/19648 -https://www.oceanexpert.org/institution/21072 -https://www.oceanexpert.org/event/1108 -https://www.oceanexpert.org/expert/21339 -https://www.oceanexpert.org/institution/18635 -https://www.oceanexpert.org/expert/46755 -https://www.oceanexpert.org/expert/13032 -https://www.oceanexpert.org/event/1254 -https://www.oceanexpert.org/expert/16196 -https://www.oceanexpert.org/event/1194 -https://www.oceanexpert.org/institution/14217 -https://www.oceanexpert.org/expert/38266 -https://www.oceanexpert.org/expert/15659 -https://www.oceanexpert.org/expert/27668 -https://www.oceanexpert.org/institution/9150 -https://www.oceanexpert.org/event/1957 -https://www.oceanexpert.org/institution/5153 -https://www.oceanexpert.org/institution/6717 -https://www.oceanexpert.org/expert/32857 -https://www.oceanexpert.org/expert/48556 -https://www.oceanexpert.org/expert/42446 -https://www.oceanexpert.org/institution/21303 -https://www.oceanexpert.org/institution/18908 -https://www.oceanexpert.org/expert/22797 -https://www.oceanexpert.org/institution/21050 -https://www.oceanexpert.org/expert/7263 -https://www.oceanexpert.org/expert/20842 -https://www.oceanexpert.org/expert/12698 -https://www.oceanexpert.org/expert/22657 -https://www.oceanexpert.org/expert/22736 -https://www.oceanexpert.org/expert/12238 -https://www.oceanexpert.org/expert/22231 -https://www.oceanexpert.org/institution/16324 -https://www.oceanexpert.org/event/1686 -https://www.oceanexpert.org/event/94 -https://www.oceanexpert.org/institution/15726 -https://www.oceanexpert.org/institution/13234 -https://www.oceanexpert.org/expert/48243 -https://www.oceanexpert.org/expert/18962 -https://www.oceanexpert.org/expert/32357 -https://www.oceanexpert.org/institution/21351 -https://www.oceanexpert.org/expert/25255 -https://www.oceanexpert.org/expert/34702 -https://www.oceanexpert.org/expert/11190 -https://www.oceanexpert.org/expert/37205 -https://www.oceanexpert.org/expert/28886 -https://www.oceanexpert.org/event/2966 -https://www.oceanexpert.org/expert/42623 -https://www.oceanexpert.org/expert/44769 -https://www.oceanexpert.org/expert/26459 -https://www.oceanexpert.org/expert/38442 -https://www.oceanexpert.org/institution/19208 -https://www.oceanexpert.org/event/545 -https://www.oceanexpert.org/expert/43044 -https://www.oceanexpert.org/expert/27481 -https://www.oceanexpert.org/event/2755 -https://www.oceanexpert.org/expert/37563 -https://www.oceanexpert.org/expert/34044 -https://www.oceanexpert.org/expert/46941 -https://www.oceanexpert.org/institution/18230 -https://www.oceanexpert.org/expert/43519 -https://www.oceanexpert.org/expert/30091 -https://www.oceanexpert.org/institution/4941 -https://www.oceanexpert.org/expert/45714 -https://www.oceanexpert.org/expert/34614 -https://www.oceanexpert.org/expert/47182 -https://www.oceanexpert.org/expert/34446 -https://www.oceanexpert.org/expert/46814 -https://www.oceanexpert.org/expert/22657 -https://www.oceanexpert.org/institution/16218 -https://www.oceanexpert.org/institution/11355 -https://www.oceanexpert.org/expert/46803 -https://www.oceanexpert.org/expert/49018 -https://www.oceanexpert.org/expert/11934 -https://www.oceanexpert.org/expert/46361 -https://www.oceanexpert.org/event/2887 -https://www.oceanexpert.org/expert/5492 -https://www.oceanexpert.org/expert/36533 -https://www.oceanexpert.org/expert/15610 -https://www.oceanexpert.org/expert/36862 -https://www.oceanexpert.org/expert/20270 -https://www.oceanexpert.org/institution/22056 -https://www.oceanexpert.org/expert/18844 -https://www.oceanexpert.org/expert/47937 -https://www.oceanexpert.org/expert/22804 -https://www.oceanexpert.org/expert/26122 -https://www.oceanexpert.org/expert/23568 -https://www.oceanexpert.org/expert/34441 -https://www.oceanexpert.org/expert/26484 -https://www.oceanexpert.org/expert/23777 -https://www.oceanexpert.org/expert/44138 -https://www.oceanexpert.org/expert/29332 -https://www.oceanexpert.org/expert/26972 -https://www.oceanexpert.org/event/372 -https://www.oceanexpert.org/expert/31373 -https://www.oceanexpert.org/expert/27485 -https://www.oceanexpert.org/expert/19952 -https://www.oceanexpert.org/expert/30661 -https://www.oceanexpert.org/expert/33389 -https://www.oceanexpert.org/expert/34464 -https://www.oceanexpert.org/institution/16205 -https://www.oceanexpert.org/institution/15041 -https://www.oceanexpert.org/institution/5461 -https://www.oceanexpert.org/expert/44618 -https://www.oceanexpert.org/expert/28300 -https://www.oceanexpert.org/institution/11858 -https://www.oceanexpert.org/expert/46694 -https://www.oceanexpert.org/expert/14950 -https://www.oceanexpert.org/expert/27473 -https://www.oceanexpert.org/institution/21690 -https://www.oceanexpert.org/event/2640 -https://www.oceanexpert.org/expert/26023 -https://www.oceanexpert.org/event/3110 -https://www.oceanexpert.org/expert/27341 -https://www.oceanexpert.org/expert/34768 -https://www.oceanexpert.org/expert/36277 -https://www.oceanexpert.org/expert/38464 -https://www.oceanexpert.org/expert/29238 -https://www.oceanexpert.org/event/1705 -https://www.oceanexpert.org/expert/18992 -https://www.oceanexpert.org/institution/17586 -https://www.oceanexpert.org/institution/20188 -https://www.oceanexpert.org/expert/43882 -https://www.oceanexpert.org/institution/21165 -https://www.oceanexpert.org/expert/39006 -https://www.oceanexpert.org/expert/46812 -https://www.oceanexpert.org/expert/32251 -https://www.oceanexpert.org/expert/45982 -https://www.oceanexpert.org/institution/18187 -https://www.oceanexpert.org/institution/12395 -https://www.oceanexpert.org/expert/24821 -https://www.oceanexpert.org/expert/43121 -https://www.oceanexpert.org/institution/19583 -https://www.oceanexpert.org/expert/27070 -https://www.oceanexpert.org/institution/22042 -https://www.oceanexpert.org/expert/46302 -https://www.oceanexpert.org/institution/9621 -https://www.oceanexpert.org/expert/24247 -https://www.oceanexpert.org/expert/44518 -https://www.oceanexpert.org/expert/30175 -https://www.oceanexpert.org/event/2795 -https://www.oceanexpert.org/expert/42795 -https://www.oceanexpert.org/institution/5324 -https://www.oceanexpert.org/expert/33436 -https://www.oceanexpert.org/expert/36404 -https://www.oceanexpert.org/expert/41079 -https://www.oceanexpert.org/event/625 -https://www.oceanexpert.org/institution/5572 -https://www.oceanexpert.org/institution/18362 -https://www.oceanexpert.org/institution/18012 -https://www.oceanexpert.org/event/1867 -https://www.oceanexpert.org/event/580 -https://www.oceanexpert.org/expert/32983 -https://www.oceanexpert.org/expert/37377 -https://www.oceanexpert.org/expert/18379 -https://www.oceanexpert.org/event/2682 -https://www.oceanexpert.org/institution/21642 -https://www.oceanexpert.org/expert/32123 -https://www.oceanexpert.org/institution/11585 -https://www.oceanexpert.org/expert/25389 -https://www.oceanexpert.org/institution/20359 -https://www.oceanexpert.org/expert/26899 -https://www.oceanexpert.org/expert/31578 -https://www.oceanexpert.org/institution/10461 -https://www.oceanexpert.org/institution/15039 -https://www.oceanexpert.org/expert/46767 -https://www.oceanexpert.org/expert/38468 -https://www.oceanexpert.org/institution/16308 -https://www.oceanexpert.org/institution/13597 -https://www.oceanexpert.org/event/1657 -https://www.oceanexpert.org/expert/44981 -https://www.oceanexpert.org/expert/19663 -https://www.oceanexpert.org/institution/5529 -https://www.oceanexpert.org/expert/33811 -https://www.oceanexpert.org/expert/35267 -https://www.oceanexpert.org/event/2201 -https://www.oceanexpert.org/expert/43721 -https://www.oceanexpert.org/expert/48545 -https://www.oceanexpert.org/expert/21596 -https://www.oceanexpert.org/institution/11896 -https://www.oceanexpert.org/expert/25594 -https://www.oceanexpert.org/expert/23745 -https://www.oceanexpert.org/expert/40362 -https://www.oceanexpert.org/expert/2915 -https://www.oceanexpert.org/expert/20017 -https://www.oceanexpert.org/expert/46385 -https://www.oceanexpert.org/institution/14399 -https://www.oceanexpert.org/institution/14038 -https://www.oceanexpert.org/institution/15045 -https://www.oceanexpert.org/expert/26961 -https://www.oceanexpert.org/event/2018 -https://www.oceanexpert.org/expert/43980 -https://www.oceanexpert.org/institution/12593 -https://www.oceanexpert.org/expert/45793 -https://www.oceanexpert.org/expert/28992 -https://www.oceanexpert.org/expert/44348 -https://www.oceanexpert.org/institution/13597 -https://www.oceanexpert.org/expert/25045 -https://www.oceanexpert.org/institution/19376 -https://www.oceanexpert.org/expert/42692 -https://www.oceanexpert.org/expert/36516 -https://www.oceanexpert.org/expert/28049 -https://www.oceanexpert.org/event/2925 -https://www.oceanexpert.org/institution/11647 -https://www.oceanexpert.org/expert/40160 -https://www.oceanexpert.org/expert/48538 -https://www.oceanexpert.org/institution/21772 -https://www.oceanexpert.org/event/892 -https://www.oceanexpert.org/expert/18055 -https://www.oceanexpert.org/expert/19526 -https://www.oceanexpert.org/expert/24006 -https://www.oceanexpert.org/expert/42702 -https://www.oceanexpert.org/expert/23542 -https://www.oceanexpert.org/expert/36476 -https://www.oceanexpert.org/expert/24371 -https://www.oceanexpert.org/expert/47956 -https://www.oceanexpert.org/expert/36248 -https://www.oceanexpert.org/expert/18356 -https://www.oceanexpert.org/expert/42834 -https://www.oceanexpert.org/expert/35781 -https://www.oceanexpert.org/expert/15759 -https://www.oceanexpert.org/institution/12560 -https://www.oceanexpert.org/expert/43256 -https://www.oceanexpert.org/expert/20601 -https://www.oceanexpert.org/expert/4530 -https://www.oceanexpert.org/expert/43717 -https://www.oceanexpert.org/event/2064 -https://www.oceanexpert.org/expert/32153 -https://www.oceanexpert.org/institution/19474 -https://www.oceanexpert.org/institution/18236 -https://www.oceanexpert.org/expert/38195 -https://www.oceanexpert.org/expert/24203 -https://www.oceanexpert.org/expert/28392 -https://www.oceanexpert.org/expert/6919 -https://www.oceanexpert.org/expert/8677 -https://www.oceanexpert.org/expert/34515 -https://www.oceanexpert.org/expert/38362 -https://www.oceanexpert.org/expert/23616 -https://www.oceanexpert.org/expert/24356 -https://www.oceanexpert.org/expert/24913 -https://www.oceanexpert.org/institution/18348 -https://www.oceanexpert.org/expert/36898 -https://www.oceanexpert.org/expert/46162 -https://www.oceanexpert.org/institution/14920 -https://www.oceanexpert.org/expert/7040 -https://www.oceanexpert.org/event/1281 -https://www.oceanexpert.org/expert/37412 -https://www.oceanexpert.org/institution/18883 -https://www.oceanexpert.org/expert/25504 -https://www.oceanexpert.org/expert/7267 -https://www.oceanexpert.org/event/1839 -https://www.oceanexpert.org/institution/7914 -https://www.oceanexpert.org/institution/21009 -https://www.oceanexpert.org/expert/18028 -https://www.oceanexpert.org/expert/19457 -https://www.oceanexpert.org/expert/45913 -https://www.oceanexpert.org/institution/20646 -https://www.oceanexpert.org/expert/21087 -https://www.oceanexpert.org/institution/11831 -https://www.oceanexpert.org/expert/20628 -https://www.oceanexpert.org/institution/15259 -https://www.oceanexpert.org/institution/7442 -https://www.oceanexpert.org/expert/45089 -https://www.oceanexpert.org/institution/19528 -https://www.oceanexpert.org/expert/33787 -https://www.oceanexpert.org/expert/45262 -https://www.oceanexpert.org/expert/20089 -https://www.oceanexpert.org/event/2138 -https://www.oceanexpert.org/expert/27108 -https://www.oceanexpert.org/expert/40396 -https://www.oceanexpert.org/expert/35261 -https://www.oceanexpert.org/institution/14259 -https://www.oceanexpert.org/institution/19800 -https://www.oceanexpert.org/expert/18738 -https://www.oceanexpert.org/institution/18643 -https://www.oceanexpert.org/expert/4401 -https://www.oceanexpert.org/expert/21212 -https://www.oceanexpert.org/expert/25225 -https://www.oceanexpert.org/institution/13169 -https://www.oceanexpert.org/institution/18448 -https://www.oceanexpert.org/expert/46122 -https://www.oceanexpert.org/expert/7160 -https://www.oceanexpert.org/expert/47827 -https://www.oceanexpert.org/expert/24431 -https://www.oceanexpert.org/expert/21852 -https://www.oceanexpert.org/expert/46453 -https://www.oceanexpert.org/expert/20596 -https://www.oceanexpert.org/institution/11454 -https://www.oceanexpert.org/institution/15954 -https://www.oceanexpert.org/institution/21544 -https://www.oceanexpert.org/expert/18388 -https://www.oceanexpert.org/expert/20544 -https://www.oceanexpert.org/expert/26310 -https://www.oceanexpert.org/institution/18899 -https://www.oceanexpert.org/expert/27816 -https://www.oceanexpert.org/expert/42830 -https://www.oceanexpert.org/event/538 -https://www.oceanexpert.org/expert/38525 -https://www.oceanexpert.org/institution/20931 -https://www.oceanexpert.org/expert/45334 -https://www.oceanexpert.org/expert/28199 -https://www.oceanexpert.org/expert/16142 -https://www.oceanexpert.org/institution/18544 -https://www.oceanexpert.org/expert/3182 -https://www.oceanexpert.org/institution/18633 -https://www.oceanexpert.org/institution/18766 -https://www.oceanexpert.org/expert/46576 -https://www.oceanexpert.org/expert/22205 -https://www.oceanexpert.org/expert/36956 -https://www.oceanexpert.org/expert/13944 -https://www.oceanexpert.org/expert/35005 -https://www.oceanexpert.org/expert/47201 -https://www.oceanexpert.org/event/2087 -https://www.oceanexpert.org/event/502 -https://www.oceanexpert.org/expert/38588 -https://www.oceanexpert.org/expert/16171 -https://www.oceanexpert.org/expert/37139 -https://www.oceanexpert.org/expert/47272 -https://www.oceanexpert.org/expert/46267 -https://www.oceanexpert.org/expert/47629 -https://www.oceanexpert.org/expert/38938 -https://www.oceanexpert.org/expert/29811 -https://www.oceanexpert.org/expert/26350 -https://www.oceanexpert.org/expert/47577 -https://www.oceanexpert.org/expert/34269 -https://www.oceanexpert.org/event/2043 -https://www.oceanexpert.org/expert/25010 -https://www.oceanexpert.org/institution/16193 -https://www.oceanexpert.org/expert/33519 -https://www.oceanexpert.org/expert/34974 -https://www.oceanexpert.org/expert/27331 -https://www.oceanexpert.org/expert/2411 -https://www.oceanexpert.org/institution/16327 -https://www.oceanexpert.org/expert/39350 -https://www.oceanexpert.org/expert/46585 -https://www.oceanexpert.org/expert/14968 -https://www.oceanexpert.org/expert/35506 -https://www.oceanexpert.org/expert/24821 -https://www.oceanexpert.org/expert/14395 -https://www.oceanexpert.org/expert/45296 -https://www.oceanexpert.org/institution/11471 -https://www.oceanexpert.org/expert/36572 -https://www.oceanexpert.org/institution/15763 -https://www.oceanexpert.org/expert/9148 -https://www.oceanexpert.org/expert/25995 -https://www.oceanexpert.org/expert/15874 -https://www.oceanexpert.org/institution/20734 -https://www.oceanexpert.org/event/3043 -https://www.oceanexpert.org/event/1034 -https://www.oceanexpert.org/expert/23620 -https://www.oceanexpert.org/expert/14658 -https://www.oceanexpert.org/institution/19978 -https://www.oceanexpert.org/expert/22908 -https://www.oceanexpert.org/institution/22032 -https://www.oceanexpert.org/institution/13639 -https://www.oceanexpert.org/expert/34060 -https://www.oceanexpert.org/expert/37793 -https://www.oceanexpert.org/expert/27068 -https://www.oceanexpert.org/expert/14314 -https://www.oceanexpert.org/expert/29759 -https://www.oceanexpert.org/expert/24211 -https://www.oceanexpert.org/expert/32827 -https://www.oceanexpert.org/expert/19795 -https://www.oceanexpert.org/expert/46670 -https://www.oceanexpert.org/institution/10997 -https://www.oceanexpert.org/institution/14581 -https://www.oceanexpert.org/expert/26398 -https://www.oceanexpert.org/institution/12259 -https://www.oceanexpert.org/expert/47061 -https://www.oceanexpert.org/expert/27043 -https://www.oceanexpert.org/expert/45624 -https://www.oceanexpert.org/institution/21684 -https://www.oceanexpert.org/expert/16575 -https://www.oceanexpert.org/expert/44725 -https://www.oceanexpert.org/institution/11994 -https://www.oceanexpert.org/event/2962 -https://www.oceanexpert.org/institution/19878 -https://www.oceanexpert.org/institution/12691 -https://www.oceanexpert.org/expert/40883 -https://www.oceanexpert.org/institution/15416 -https://www.oceanexpert.org/expert/47073 -https://www.oceanexpert.org/expert/25963 -https://www.oceanexpert.org/institution/19287 -https://www.oceanexpert.org/expert/31965 -https://www.oceanexpert.org/expert/21717 -https://www.oceanexpert.org/expert/22695 -https://www.oceanexpert.org/expert/27276 -https://www.oceanexpert.org/expert/47853 -https://www.oceanexpert.org/expert/36485 -https://www.oceanexpert.org/expert/19155 -https://www.oceanexpert.org/event/3264 -https://www.oceanexpert.org/expert/16341 -https://www.oceanexpert.org/institution/20003 -https://www.oceanexpert.org/expert/43181 -https://www.oceanexpert.org/expert/40035 -https://www.oceanexpert.org/event/1019 -https://www.oceanexpert.org/institution/12380 -https://www.oceanexpert.org/expert/34776 -https://www.oceanexpert.org/institution/19857 -https://www.oceanexpert.org/expert/42965 -https://www.oceanexpert.org/expert/10908 -https://www.oceanexpert.org/expert/38265 -https://www.oceanexpert.org/expert/24250 -https://www.oceanexpert.org/expert/26523 -https://www.oceanexpert.org/institution/21830 -https://www.oceanexpert.org/expert/24621 -https://www.oceanexpert.org/institution/20792 -https://www.oceanexpert.org/expert/47226 -https://www.oceanexpert.org/expert/34276 -https://www.oceanexpert.org/institution/20686 -https://www.oceanexpert.org/institution/6632 -https://www.oceanexpert.org/expert/35655 -https://www.oceanexpert.org/expert/16881 -https://www.oceanexpert.org/expert/47435 -https://www.oceanexpert.org/expert/45078 -https://www.oceanexpert.org/expert/46534 -https://www.oceanexpert.org/institution/18358 -https://www.oceanexpert.org/expert/21797 -https://www.oceanexpert.org/institution/20153 -https://www.oceanexpert.org/event/40 -https://www.oceanexpert.org/expert/20529 -https://www.oceanexpert.org/expert/32227 -https://www.oceanexpert.org/event/2684 -https://www.oceanexpert.org/expert/27255 -https://www.oceanexpert.org/expert/7035 -https://www.oceanexpert.org/institution/19024 -https://www.oceanexpert.org/expert/21997 -https://www.oceanexpert.org/expert/27837 -https://www.oceanexpert.org/expert/20881 -https://www.oceanexpert.org/expert/25684 -https://www.oceanexpert.org/expert/43353 -https://www.oceanexpert.org/event/3169 -https://www.oceanexpert.org/expert/34128 -https://www.oceanexpert.org/expert/26409 -https://www.oceanexpert.org/institution/21558 -https://www.oceanexpert.org/institution/17888 -https://www.oceanexpert.org/expert/27726 -https://www.oceanexpert.org/institution/18233 -https://www.oceanexpert.org/expert/41999 -https://www.oceanexpert.org/expert/35570 -https://www.oceanexpert.org/expert/18744 -https://www.oceanexpert.org/expert/10885 -https://www.oceanexpert.org/expert/45534 -https://www.oceanexpert.org/institution/19205 -https://www.oceanexpert.org/expert/32312 -https://www.oceanexpert.org/expert/61 -https://www.oceanexpert.org/expert/36669 -https://www.oceanexpert.org/expert/43234 -https://www.oceanexpert.org/expert/9521 -https://www.oceanexpert.org/event/3050 -https://www.oceanexpert.org/expert/42504 -https://www.oceanexpert.org/expert/665 -https://www.oceanexpert.org/institution/20030 -https://www.oceanexpert.org/expert/2326 -https://www.oceanexpert.org/expert/39982 -https://www.oceanexpert.org/expert/27483 -https://www.oceanexpert.org/expert/35894 -https://www.oceanexpert.org/expert/15983 -https://www.oceanexpert.org/institution/13007 -https://www.oceanexpert.org/institution/21315 -https://www.oceanexpert.org/expert/43060 -https://www.oceanexpert.org/expert/36579 -https://www.oceanexpert.org/expert/12488 -https://www.oceanexpert.org/expert/27598 -https://www.oceanexpert.org/institution/19168 -https://www.oceanexpert.org/expert/43596 -https://www.oceanexpert.org/expert/26232 -https://www.oceanexpert.org/institution/6023 -https://www.oceanexpert.org/expert/26602 -https://www.oceanexpert.org/expert/42654 -https://www.oceanexpert.org/expert/21287 -https://www.oceanexpert.org/expert/43122 -https://www.oceanexpert.org/expert/36768 -https://www.oceanexpert.org/expert/45678 -https://www.oceanexpert.org/expert/48842 -https://www.oceanexpert.org/event/3123 -https://www.oceanexpert.org/expert/26428 -https://www.oceanexpert.org/expert/43344 -https://www.oceanexpert.org/event/1068 -https://www.oceanexpert.org/expert/35832 -https://www.oceanexpert.org/expert/16234 -https://www.oceanexpert.org/expert/47198 -https://www.oceanexpert.org/expert/33061 -https://www.oceanexpert.org/expert/29640 -https://www.oceanexpert.org/expert/29837 -https://www.oceanexpert.org/expert/19058 -https://www.oceanexpert.org/expert/40336 -https://www.oceanexpert.org/institution/18233 -https://www.oceanexpert.org/event/2739 -https://www.oceanexpert.org/expert/18826 -https://www.oceanexpert.org/institution/5579 -https://www.oceanexpert.org/expert/18547 -https://www.oceanexpert.org/expert/27592 -https://www.oceanexpert.org/event/1817 -https://www.oceanexpert.org/institution/11783 -https://www.oceanexpert.org/expert/30861 -https://www.oceanexpert.org/expert/14807 -https://www.oceanexpert.org/expert/47745 -https://www.oceanexpert.org/expert/18862 -https://www.oceanexpert.org/institution/16481 -https://www.oceanexpert.org/expert/19748 -https://www.oceanexpert.org/institution/20865 -https://www.oceanexpert.org/expert/19075 -https://www.oceanexpert.org/expert/12908 -https://www.oceanexpert.org/expert/36368 -https://www.oceanexpert.org/event/290 -https://www.oceanexpert.org/institution/16326 -https://www.oceanexpert.org/expert/42549 -https://www.oceanexpert.org/expert/43968 -https://www.oceanexpert.org/expert/32053 -https://www.oceanexpert.org/expert/21733 -https://www.oceanexpert.org/expert/47198 -https://www.oceanexpert.org/expert/42559 -https://www.oceanexpert.org/institution/19763 -https://www.oceanexpert.org/expert/66 -https://www.oceanexpert.org/institution/11235 -https://www.oceanexpert.org/expert/25361 -https://www.oceanexpert.org/expert/12232 -https://www.oceanexpert.org/expert/27952 -https://www.oceanexpert.org/expert/45682 -https://www.oceanexpert.org/expert/19800 -https://www.oceanexpert.org/event/2655 -https://www.oceanexpert.org/expert/35446 -https://www.oceanexpert.org/institution/18757 -https://www.oceanexpert.org/expert/43834 -https://www.oceanexpert.org/expert/31502 -https://www.oceanexpert.org/expert/19600 -https://www.oceanexpert.org/institution/21958 -https://www.oceanexpert.org/expert/20260 -https://www.oceanexpert.org/expert/37195 -https://www.oceanexpert.org/expert/2020 -https://www.oceanexpert.org/expert/27316 -https://www.oceanexpert.org/expert/21225 -https://www.oceanexpert.org/expert/48154 -https://www.oceanexpert.org/institution/20691 -https://www.oceanexpert.org/expert/18214 -https://www.oceanexpert.org/institution/20717 -https://www.oceanexpert.org/institution/20580 -https://www.oceanexpert.org/expert/38483 -https://www.oceanexpert.org/expert/34044 -https://www.oceanexpert.org/expert/1752 -https://www.oceanexpert.org/event/2743 -https://www.oceanexpert.org/event/2242 -https://www.oceanexpert.org/expert/27622 -https://www.oceanexpert.org/expert/27744 -https://www.oceanexpert.org/event/1514 -https://www.oceanexpert.org/event/2552 -https://www.oceanexpert.org/institution/18035 -https://www.oceanexpert.org/expert/45163 -https://www.oceanexpert.org/expert/19753 -https://www.oceanexpert.org/institution/10160 -https://www.oceanexpert.org/expert/32127 -https://www.oceanexpert.org/institution/18563 -https://www.oceanexpert.org/expert/40868 -https://www.oceanexpert.org/event/774 -https://www.oceanexpert.org/expert/24649 -https://www.oceanexpert.org/institution/13806 -https://www.oceanexpert.org/expert/46763 -https://www.oceanexpert.org/expert/48760 -https://www.oceanexpert.org/institution/13187 -https://www.oceanexpert.org/expert/18778 -https://www.oceanexpert.org/expert/23314 -https://www.oceanexpert.org/expert/24117 -https://www.oceanexpert.org/institution/21685 -https://www.oceanexpert.org/expert/32442 -https://www.oceanexpert.org/expert/27952 -https://www.oceanexpert.org/expert/23499 -https://www.oceanexpert.org/expert/36639 -https://www.oceanexpert.org/expert/30102 -https://www.oceanexpert.org/expert/21131 -https://www.oceanexpert.org/expert/46844 -https://www.oceanexpert.org/expert/34826 -https://www.oceanexpert.org/expert/31674 -https://www.oceanexpert.org/expert/9809 -https://www.oceanexpert.org/expert/16941 -https://www.oceanexpert.org/expert/26061 -https://www.oceanexpert.org/institution/12228 -https://www.oceanexpert.org/institution/14500 -https://www.oceanexpert.org/expert/35279 -https://www.oceanexpert.org/expert/30754 -https://www.oceanexpert.org/expert/40266 -https://www.oceanexpert.org/institution/16700 -https://www.oceanexpert.org/expert/3473 -https://www.oceanexpert.org/expert/36812 -https://www.oceanexpert.org/expert/22697 -https://www.oceanexpert.org/expert/37802 -https://www.oceanexpert.org/expert/34089 -https://www.oceanexpert.org/expert/25123 -https://www.oceanexpert.org/institution/18595 -https://www.oceanexpert.org/expert/26542 -https://www.oceanexpert.org/expert/17962 -https://www.oceanexpert.org/expert/31578 -https://www.oceanexpert.org/institution/18519 -https://www.oceanexpert.org/expert/43932 -https://www.oceanexpert.org/expert/21792 -https://www.oceanexpert.org/expert/38399 -https://www.oceanexpert.org/institution/17948 -https://www.oceanexpert.org/event/2617 -https://www.oceanexpert.org/institution/15465 -https://www.oceanexpert.org/expert/42553 -https://www.oceanexpert.org/expert/22985 -https://www.oceanexpert.org/expert/39157 -https://www.oceanexpert.org/expert/19946 -https://www.oceanexpert.org/institution/5083 -https://www.oceanexpert.org/expert/48319 -https://www.oceanexpert.org/expert/42947 -https://www.oceanexpert.org/institution/21660 -https://www.oceanexpert.org/expert/29190 -https://www.oceanexpert.org/expert/24647 -https://www.oceanexpert.org/event/3171 -https://www.oceanexpert.org/expert/5019 -https://www.oceanexpert.org/expert/34140 -https://www.oceanexpert.org/institution/11661 -https://www.oceanexpert.org/expert/49038 -https://www.oceanexpert.org/institution/11494 -https://www.oceanexpert.org/expert/26508 -https://www.oceanexpert.org/institution/5799 -https://www.oceanexpert.org/institution/21485 -https://www.oceanexpert.org/expert/43710 -https://www.oceanexpert.org/expert/25242 -https://www.oceanexpert.org/institution/5166 -https://www.oceanexpert.org/expert/21807 -https://www.oceanexpert.org/expert/39802 -https://www.oceanexpert.org/expert/18797 -https://www.oceanexpert.org/expert/34590 -https://www.oceanexpert.org/expert/11934 -https://www.oceanexpert.org/expert/19255 -https://www.oceanexpert.org/event/752 -https://www.oceanexpert.org/expert/33290 -https://www.oceanexpert.org/institution/9825 -https://www.oceanexpert.org/institution/17919 -https://www.oceanexpert.org/institution/11144 -https://www.oceanexpert.org/event/1746 -https://www.oceanexpert.org/expert/32405 -https://www.oceanexpert.org/institution/19303 -https://www.oceanexpert.org/event/2685 -https://www.oceanexpert.org/expert/46500 -https://www.oceanexpert.org/expert/20234 -https://www.oceanexpert.org/institution/18294 -https://www.oceanexpert.org/expert/47795 -https://www.oceanexpert.org/expert/44130 -https://www.oceanexpert.org/expert/8814 -https://www.oceanexpert.org/expert/48727 -https://www.oceanexpert.org/expert/31733 -https://www.oceanexpert.org/expert/43350 -https://www.oceanexpert.org/expert/22131 -https://www.oceanexpert.org/expert/47985 -https://www.oceanexpert.org/expert/48737 -https://www.oceanexpert.org/expert/15924 -https://www.oceanexpert.org/expert/23550 -https://www.oceanexpert.org/expert/23972 -https://www.oceanexpert.org/expert/16774 -https://www.oceanexpert.org/institution/6704 -https://www.oceanexpert.org/expert/25318 -https://www.oceanexpert.org/expert/30451 -https://www.oceanexpert.org/institution/20218 -https://www.oceanexpert.org/expert/24447 -https://www.oceanexpert.org/expert/13684 -https://www.oceanexpert.org/event/1332 -https://www.oceanexpert.org/event/3105 -https://www.oceanexpert.org/expert/38055 -https://www.oceanexpert.org/expert/43982 -https://www.oceanexpert.org/expert/33249 -https://www.oceanexpert.org/expert/32932 -https://www.oceanexpert.org/expert/3770 -https://www.oceanexpert.org/expert/44647 -https://www.oceanexpert.org/institution/18729 -https://www.oceanexpert.org/expert/12266 -https://www.oceanexpert.org/institution/6631 -https://www.oceanexpert.org/expert/15142 -https://www.oceanexpert.org/institution/10122 -https://www.oceanexpert.org/expert/17266 -https://www.oceanexpert.org/expert/19131 -https://www.oceanexpert.org/event/1501 -https://www.oceanexpert.org/expert/48254 -https://www.oceanexpert.org/expert/26741 -https://www.oceanexpert.org/institution/20541 -https://www.oceanexpert.org/expert/47241 -https://www.oceanexpert.org/expert/16565 -https://www.oceanexpert.org/expert/34901 -https://www.oceanexpert.org/expert/23751 -https://www.oceanexpert.org/expert/26156 -https://www.oceanexpert.org/expert/43111 -https://www.oceanexpert.org/expert/39863 -https://www.oceanexpert.org/expert/1914 -https://www.oceanexpert.org/institution/5394 -https://www.oceanexpert.org/expert/46415 -https://www.oceanexpert.org/institution/17926 -https://www.oceanexpert.org/expert/13494 -https://www.oceanexpert.org/institution/21831 -https://www.oceanexpert.org/expert/24304 -https://www.oceanexpert.org/event/3117 -https://www.oceanexpert.org/expert/13926 -https://www.oceanexpert.org/expert/35443 -https://www.oceanexpert.org/event/3106 -https://www.oceanexpert.org/expert/12715 -https://www.oceanexpert.org/expert/46683 -https://www.oceanexpert.org/institution/21824 -https://www.oceanexpert.org/expert/6731 -https://www.oceanexpert.org/event/488 -https://www.oceanexpert.org/expert/18222 -https://www.oceanexpert.org/expert/23408 -https://www.oceanexpert.org/institution/13024 -https://www.oceanexpert.org/event/2641 -https://www.oceanexpert.org/institution/20781 -https://www.oceanexpert.org/event/357 -https://www.oceanexpert.org/institution/13181 -https://www.oceanexpert.org/expert/35197 -https://www.oceanexpert.org/expert/36038 -https://www.oceanexpert.org/expert/44363 -https://www.oceanexpert.org/institution/18066 -https://www.oceanexpert.org/expert/47516 -https://www.oceanexpert.org/institution/20917 -https://www.oceanexpert.org/expert/22291 -https://www.oceanexpert.org/expert/34421 -https://www.oceanexpert.org/expert/33884 -https://www.oceanexpert.org/expert/16121 -https://www.oceanexpert.org/expert/35435 -https://www.oceanexpert.org/expert/20783 -https://www.oceanexpert.org/expert/23275 -https://www.oceanexpert.org/expert/17497 -https://www.oceanexpert.org/expert/32955 -https://www.oceanexpert.org/expert/19719 -https://www.oceanexpert.org/institution/6749 -https://www.oceanexpert.org/expert/44721 -https://www.oceanexpert.org/expert/24074 -https://www.oceanexpert.org/institution/14361 -https://www.oceanexpert.org/expert/33519 -https://www.oceanexpert.org/expert/2252 -https://www.oceanexpert.org/expert/30765 -https://www.oceanexpert.org/institution/19282 -https://www.oceanexpert.org/expert/1973 -https://www.oceanexpert.org/expert/48664 -https://www.oceanexpert.org/expert/33286 -https://www.oceanexpert.org/expert/4776 -https://www.oceanexpert.org/expert/37477 -https://www.oceanexpert.org/expert/46839 -https://www.oceanexpert.org/expert/25530 -https://www.oceanexpert.org/expert/33555 -https://www.oceanexpert.org/expert/48096 -https://www.oceanexpert.org/expert/27544 -https://www.oceanexpert.org/expert/38443 -https://www.oceanexpert.org/expert/12035 -https://www.oceanexpert.org/expert/12969 -https://www.oceanexpert.org/institution/5644 -https://www.oceanexpert.org/institution/21929 -https://www.oceanexpert.org/institution/17750 -https://www.oceanexpert.org/expert/31475 -https://www.oceanexpert.org/expert/36419 -https://www.oceanexpert.org/institution/13253 -https://www.oceanexpert.org/institution/18433 -https://www.oceanexpert.org/institution/19914 -https://www.oceanexpert.org/expert/37287 -https://www.oceanexpert.org/expert/35711 -https://www.oceanexpert.org/expert/43106 -https://www.oceanexpert.org/expert/29497 -https://www.oceanexpert.org/institution/21125 -https://www.oceanexpert.org/expert/7452 -https://www.oceanexpert.org/expert/22458 -https://www.oceanexpert.org/expert/2791 -https://www.oceanexpert.org/expert/32486 -https://www.oceanexpert.org/event/583 -https://www.oceanexpert.org/institution/15687 -https://www.oceanexpert.org/expert/18977 -https://www.oceanexpert.org/expert/44138 -https://www.oceanexpert.org/expert/16546 -https://www.oceanexpert.org/expert/46305 -https://www.oceanexpert.org/expert/2218 -https://www.oceanexpert.org/institution/16987 -https://www.oceanexpert.org/institution/20111 -https://www.oceanexpert.org/expert/38268 -https://www.oceanexpert.org/institution/13283 -https://www.oceanexpert.org/expert/18838 -https://www.oceanexpert.org/expert/26067 -https://www.oceanexpert.org/expert/24984 -https://www.oceanexpert.org/expert/22415 -https://www.oceanexpert.org/event/1519 -https://www.oceanexpert.org/expert/23263 -https://www.oceanexpert.org/institution/21343 -https://www.oceanexpert.org/expert/34348 -https://www.oceanexpert.org/institution/19600 -https://www.oceanexpert.org/expert/42150 -https://www.oceanexpert.org/institution/13556 -https://www.oceanexpert.org/expert/1183 -https://www.oceanexpert.org/expert/1166 -https://www.oceanexpert.org/expert/22115 -https://www.oceanexpert.org/event/3134 -https://www.oceanexpert.org/expert/17308 -https://www.oceanexpert.org/expert/26174 -https://www.oceanexpert.org/expert/33390 -https://www.oceanexpert.org/expert/14304 -https://www.oceanexpert.org/expert/29418 -https://www.oceanexpert.org/event/1373 -https://www.oceanexpert.org/institution/15672 -https://www.oceanexpert.org/expert/28145 -https://www.oceanexpert.org/expert/47250 -https://www.oceanexpert.org/expert/47500 -https://www.oceanexpert.org/institution/14290 -https://www.oceanexpert.org/institution/15650 -https://www.oceanexpert.org/expert/36800 -https://www.oceanexpert.org/expert/33290 -https://www.oceanexpert.org/institution/12965 -https://www.oceanexpert.org/institution/19506 -https://www.oceanexpert.org/expert/33940 -https://www.oceanexpert.org/event/1640 -https://www.oceanexpert.org/institution/20006 -https://www.oceanexpert.org/institution/5904 -https://www.oceanexpert.org/expert/1831 -https://www.oceanexpert.org/institution/17721 -https://www.oceanexpert.org/expert/38387 -https://www.oceanexpert.org/institution/18045 -https://www.oceanexpert.org/expert/31164 -https://www.oceanexpert.org/expert/22553 -https://www.oceanexpert.org/expert/48204 -https://www.oceanexpert.org/institution/10656 -https://www.oceanexpert.org/institution/10280 -https://www.oceanexpert.org/institution/16683 -https://www.oceanexpert.org/expert/33297 -https://www.oceanexpert.org/expert/16797 -https://www.oceanexpert.org/expert/33244 -https://www.oceanexpert.org/expert/19469 -https://www.oceanexpert.org/institution/17923 -https://www.oceanexpert.org/expert/25203 -https://www.oceanexpert.org/expert/35337 -https://www.oceanexpert.org/institution/19883 -https://www.oceanexpert.org/expert/16646 -https://www.oceanexpert.org/institution/21946 -https://www.oceanexpert.org/expert/39119 -https://www.oceanexpert.org/expert/48544 -https://www.oceanexpert.org/event/798 -https://www.oceanexpert.org/expert/25706 -https://www.oceanexpert.org/expert/21765 -https://www.oceanexpert.org/expert/38004 -https://www.oceanexpert.org/expert/11048 -https://www.oceanexpert.org/expert/48006 -https://www.oceanexpert.org/expert/25679 -https://www.oceanexpert.org/expert/25033 -https://www.oceanexpert.org/expert/25322 -https://www.oceanexpert.org/expert/45044 -https://www.oceanexpert.org/institution/14778 -https://www.oceanexpert.org/expert/26491 -https://www.oceanexpert.org/expert/11351 -https://www.oceanexpert.org/expert/779 -https://www.oceanexpert.org/expert/46019 -https://www.oceanexpert.org/expert/35400 -https://www.oceanexpert.org/expert/29112 -https://www.oceanexpert.org/expert/14861 -https://www.oceanexpert.org/expert/37808 -https://www.oceanexpert.org/expert/46283 -https://www.oceanexpert.org/expert/18469 -https://www.oceanexpert.org/expert/46836 -https://www.oceanexpert.org/expert/26815 -https://www.oceanexpert.org/event/2277 -https://www.oceanexpert.org/event/1588 -https://www.oceanexpert.org/expert/7642 -https://www.oceanexpert.org/expert/43347 -https://www.oceanexpert.org/expert/8712 -https://www.oceanexpert.org/expert/23933 -https://www.oceanexpert.org/expert/38172 -https://www.oceanexpert.org/expert/25388 -https://www.oceanexpert.org/institution/14407 -https://www.oceanexpert.org/expert/27180 -https://www.oceanexpert.org/expert/24632 -https://www.oceanexpert.org/expert/9544 -https://www.oceanexpert.org/institution/18604 -https://www.oceanexpert.org/expert/32575 -https://www.oceanexpert.org/expert/22286 -https://www.oceanexpert.org/expert/23924 -https://www.oceanexpert.org/expert/15849 -https://www.oceanexpert.org/expert/36723 -https://www.oceanexpert.org/expert/16899 -https://www.oceanexpert.org/expert/32437 -https://www.oceanexpert.org/expert/14534 -https://www.oceanexpert.org/expert/28292 -https://www.oceanexpert.org/expert/36660 -https://www.oceanexpert.org/event/1097 -https://www.oceanexpert.org/expert/18195 -https://www.oceanexpert.org/institution/11080 -https://www.oceanexpert.org/institution/14065 -https://www.oceanexpert.org/institution/19752 -https://www.oceanexpert.org/expert/47702 -https://www.oceanexpert.org/expert/3958 -https://www.oceanexpert.org/expert/28178 -https://www.oceanexpert.org/expert/44198 -https://www.oceanexpert.org/expert/18329 -https://www.oceanexpert.org/institution/7594 -https://www.oceanexpert.org/event/2471 -https://www.oceanexpert.org/expert/20701 -https://www.oceanexpert.org/expert/36388 -https://www.oceanexpert.org/expert/34694 -https://www.oceanexpert.org/expert/17648 -https://www.oceanexpert.org/expert/29879 -https://www.oceanexpert.org/expert/7023 -https://www.oceanexpert.org/expert/17999 -https://www.oceanexpert.org/expert/26670 -https://www.oceanexpert.org/expert/12734 -https://www.oceanexpert.org/expert/24082 -https://www.oceanexpert.org/institution/19885 -https://www.oceanexpert.org/expert/35649 -https://www.oceanexpert.org/expert/17007 -https://www.oceanexpert.org/expert/26879 -https://www.oceanexpert.org/event/2676 -https://www.oceanexpert.org/institution/7168 -https://www.oceanexpert.org/expert/12878 -https://www.oceanexpert.org/expert/46443 -https://www.oceanexpert.org/institution/20850 -https://www.oceanexpert.org/expert/19086 -https://www.oceanexpert.org/expert/43245 -https://www.oceanexpert.org/expert/47017 -https://www.oceanexpert.org/expert/37030 -https://www.oceanexpert.org/expert/24329 -https://www.oceanexpert.org/expert/42424 -https://www.oceanexpert.org/expert/18649 -https://www.oceanexpert.org/expert/43957 -https://www.oceanexpert.org/institution/16816 -https://www.oceanexpert.org/expert/47680 -https://www.oceanexpert.org/expert/26857 -https://www.oceanexpert.org/expert/36515 -https://www.oceanexpert.org/expert/36262 -https://www.oceanexpert.org/expert/25114 -https://www.oceanexpert.org/institution/22158 -https://www.oceanexpert.org/expert/24125 -https://www.oceanexpert.org/expert/45655 -https://www.oceanexpert.org/event/547 -https://www.oceanexpert.org/expert/22517 -https://www.oceanexpert.org/expert/29386 -https://www.oceanexpert.org/expert/43473 -https://www.oceanexpert.org/expert/27445 -https://www.oceanexpert.org/institution/18577 -https://www.oceanexpert.org/expert/31245 -https://www.oceanexpert.org/expert/21633 -https://www.oceanexpert.org/expert/44498 -https://www.oceanexpert.org/event/1959 -https://www.oceanexpert.org/event/1840 -https://www.oceanexpert.org/institution/19795 -https://www.oceanexpert.org/expert/12179 -https://www.oceanexpert.org/expert/25678 -https://www.oceanexpert.org/event/404 -https://www.oceanexpert.org/expert/46059 -https://www.oceanexpert.org/expert/11193 -https://www.oceanexpert.org/expert/12156 -https://www.oceanexpert.org/expert/11025 -https://www.oceanexpert.org/event/332 -https://www.oceanexpert.org/institution/21658 -https://www.oceanexpert.org/event/336 -https://www.oceanexpert.org/expert/20819 -https://www.oceanexpert.org/institution/18849 -https://www.oceanexpert.org/institution/5869 -https://www.oceanexpert.org/expert/47511 -https://www.oceanexpert.org/expert/25483 -https://www.oceanexpert.org/expert/35845 -https://www.oceanexpert.org/expert/18010 -https://www.oceanexpert.org/expert/45565 -https://www.oceanexpert.org/expert/26606 -https://www.oceanexpert.org/event/2947 -https://www.oceanexpert.org/institution/20110 -https://www.oceanexpert.org/expert/12121 -https://www.oceanexpert.org/expert/21483 -https://www.oceanexpert.org/expert/37134 -https://www.oceanexpert.org/expert/47436 -https://www.oceanexpert.org/expert/47346 -https://www.oceanexpert.org/institution/14782 -https://www.oceanexpert.org/expert/31040 -https://www.oceanexpert.org/expert/34490 -https://www.oceanexpert.org/expert/25443 -https://www.oceanexpert.org/expert/43624 -https://www.oceanexpert.org/institution/21974 -https://www.oceanexpert.org/expert/42070 -https://www.oceanexpert.org/institution/20627 -https://www.oceanexpert.org/expert/14838 -https://www.oceanexpert.org/expert/35208 -https://www.oceanexpert.org/expert/22656 -https://www.oceanexpert.org/event/2446 -https://www.oceanexpert.org/event/1886 -https://www.oceanexpert.org/expert/36975 -https://www.oceanexpert.org/expert/34061 -https://www.oceanexpert.org/event/725 -https://www.oceanexpert.org/expert/24240 -https://www.oceanexpert.org/institution/19615 -https://www.oceanexpert.org/expert/33309 -https://www.oceanexpert.org/expert/30167 -https://www.oceanexpert.org/expert/14497 -https://www.oceanexpert.org/expert/21501 -https://www.oceanexpert.org/expert/29308 -https://www.oceanexpert.org/expert/48041 -https://www.oceanexpert.org/expert/44622 -https://www.oceanexpert.org/expert/18502 -https://www.oceanexpert.org/expert/27855 -https://www.oceanexpert.org/expert/14672 -https://www.oceanexpert.org/expert/25694 -https://www.oceanexpert.org/event/207 -https://www.oceanexpert.org/event/696 -https://www.oceanexpert.org/expert/46832 -https://www.oceanexpert.org/expert/30780 -https://www.oceanexpert.org/expert/19508 -https://www.oceanexpert.org/expert/38413 -https://www.oceanexpert.org/institution/18023 -https://www.oceanexpert.org/event/2335 -https://www.oceanexpert.org/expert/37565 -https://www.oceanexpert.org/expert/35135 -https://www.oceanexpert.org/expert/25516 -https://www.oceanexpert.org/expert/44326 -https://www.oceanexpert.org/expert/24200 -https://www.oceanexpert.org/institution/21459 -https://www.oceanexpert.org/institution/19230 -https://www.oceanexpert.org/expert/25067 -https://www.oceanexpert.org/expert/27034 -https://www.oceanexpert.org/expert/34615 -https://www.oceanexpert.org/expert/39465 -https://www.oceanexpert.org/expert/47680 -https://www.oceanexpert.org/institution/5277 -https://www.oceanexpert.org/expert/45435 -https://www.oceanexpert.org/institution/21061 -https://www.oceanexpert.org/expert/25251 -https://www.oceanexpert.org/event/2755 -https://www.oceanexpert.org/expert/18475 -https://www.oceanexpert.org/expert/25048 -https://www.oceanexpert.org/expert/23127 -https://www.oceanexpert.org/expert/8175 -https://www.oceanexpert.org/expert/14966 -https://www.oceanexpert.org/expert/27298 -https://www.oceanexpert.org/expert/41272 -https://www.oceanexpert.org/expert/35883 -https://www.oceanexpert.org/expert/24047 -https://www.oceanexpert.org/event/354 -https://www.oceanexpert.org/expert/27671 -https://www.oceanexpert.org/expert/36514 -https://www.oceanexpert.org/expert/25772 -https://www.oceanexpert.org/expert/29924 -https://www.oceanexpert.org/expert/14839 -https://www.oceanexpert.org/expert/35663 -https://www.oceanexpert.org/expert/19151 -https://www.oceanexpert.org/expert/44957 -https://www.oceanexpert.org/institution/7833 -https://www.oceanexpert.org/expert/45893 -https://www.oceanexpert.org/event/1634 -https://www.oceanexpert.org/expert/33294 -https://www.oceanexpert.org/event/1798 -https://www.oceanexpert.org/expert/24007 -https://www.oceanexpert.org/event/437 -https://www.oceanexpert.org/institution/9330 -https://www.oceanexpert.org/expert/31013 -https://www.oceanexpert.org/expert/23625 -https://www.oceanexpert.org/institution/14840 -https://www.oceanexpert.org/expert/37155 -https://www.oceanexpert.org/expert/40069 -https://www.oceanexpert.org/event/150 -https://www.oceanexpert.org/institution/13266 -https://www.oceanexpert.org/expert/25929 -https://www.oceanexpert.org/event/593 -https://www.oceanexpert.org/expert/17171 -https://www.oceanexpert.org/event/1704 -https://www.oceanexpert.org/expert/44846 -https://www.oceanexpert.org/expert/17604 -https://www.oceanexpert.org/institution/18489 -https://www.oceanexpert.org/institution/18160 -https://www.oceanexpert.org/expert/46911 -https://www.oceanexpert.org/expert/47090 -https://www.oceanexpert.org/event/2397 -https://www.oceanexpert.org/expert/24187 -https://www.oceanexpert.org/institution/20923 -https://www.oceanexpert.org/expert/31994 -https://www.oceanexpert.org/expert/45944 -https://www.oceanexpert.org/event/2301 -https://www.oceanexpert.org/expert/291 -https://www.oceanexpert.org/expert/22626 -https://www.oceanexpert.org/institution/20998 -https://www.oceanexpert.org/expert/47290 -https://www.oceanexpert.org/expert/22659 -https://www.oceanexpert.org/institution/16260 -https://www.oceanexpert.org/institution/19080 -https://www.oceanexpert.org/expert/29540 -https://www.oceanexpert.org/expert/13294 -https://www.oceanexpert.org/expert/6921 -https://www.oceanexpert.org/expert/45888 -https://www.oceanexpert.org/institution/21164 -https://www.oceanexpert.org/expert/4309 -https://www.oceanexpert.org/expert/20168 -https://www.oceanexpert.org/institution/10842 -https://www.oceanexpert.org/event/2694 -https://www.oceanexpert.org/institution/14049 -https://www.oceanexpert.org/expert/26563 -https://www.oceanexpert.org/expert/46477 -https://www.oceanexpert.org/event/1043 -https://www.oceanexpert.org/event/868 -https://www.oceanexpert.org/expert/47651 -https://www.oceanexpert.org/expert/25590 -https://www.oceanexpert.org/expert/2305 -https://www.oceanexpert.org/expert/17494 -https://www.oceanexpert.org/expert/46621 -https://www.oceanexpert.org/institution/12576 -https://www.oceanexpert.org/institution/20811 -https://www.oceanexpert.org/expert/31748 -https://www.oceanexpert.org/expert/15022 -https://www.oceanexpert.org/expert/17953 -https://www.oceanexpert.org/event/1644 -https://www.oceanexpert.org/expert/37106 -https://www.oceanexpert.org/expert/33959 -https://www.oceanexpert.org/expert/25971 -https://www.oceanexpert.org/expert/42623 -https://www.oceanexpert.org/institution/22117 -https://www.oceanexpert.org/expert/44403 -https://www.oceanexpert.org/expert/21211 -https://www.oceanexpert.org/institution/7442 -https://www.oceanexpert.org/expert/36132 -https://www.oceanexpert.org/event/2655 -https://www.oceanexpert.org/event/2619 -https://www.oceanexpert.org/event/2752 -https://www.oceanexpert.org/expert/44739 -https://www.oceanexpert.org/institution/11253 -https://www.oceanexpert.org/expert/23358 -https://www.oceanexpert.org/expert/19385 -https://www.oceanexpert.org/expert/21723 -https://www.oceanexpert.org/expert/20311 -https://www.oceanexpert.org/institution/21648 -https://www.oceanexpert.org/institution/19533 -https://www.oceanexpert.org/expert/44296 -https://www.oceanexpert.org/event/2264 -https://www.oceanexpert.org/institution/17673 -https://www.oceanexpert.org/expert/47061 -https://www.oceanexpert.org/institution/16123 -https://www.oceanexpert.org/expert/22156 -https://www.oceanexpert.org/expert/22460 -https://www.oceanexpert.org/expert/16977 -https://www.oceanexpert.org/expert/47623 -https://www.oceanexpert.org/institution/21190 -https://www.oceanexpert.org/expert/36498 -https://www.oceanexpert.org/expert/48573 -https://www.oceanexpert.org/expert/16623 -https://www.oceanexpert.org/expert/19213 -https://www.oceanexpert.org/expert/11524 -https://www.oceanexpert.org/event/1969 -https://www.oceanexpert.org/expert/45355 -https://www.oceanexpert.org/institution/21100 -https://www.oceanexpert.org/expert/44485 -https://www.oceanexpert.org/event/547 -https://www.oceanexpert.org/institution/7629 -https://www.oceanexpert.org/institution/17636 -https://www.oceanexpert.org/event/1974 -https://www.oceanexpert.org/expert/37495 -https://www.oceanexpert.org/expert/35111 -https://www.oceanexpert.org/institution/17263 -https://www.oceanexpert.org/event/176 -https://www.oceanexpert.org/expert/14311 -https://www.oceanexpert.org/expert/22009 -https://www.oceanexpert.org/expert/20891 -https://www.oceanexpert.org/institution/18082 -https://www.oceanexpert.org/expert/18873 -https://www.oceanexpert.org/expert/25795 -https://www.oceanexpert.org/expert/42609 -https://www.oceanexpert.org/institution/15652 -https://www.oceanexpert.org/institution/16197 -https://www.oceanexpert.org/expert/19953 -https://www.oceanexpert.org/expert/19501 -https://www.oceanexpert.org/expert/34519 -https://www.oceanexpert.org/expert/45133 -https://www.oceanexpert.org/expert/27042 -https://www.oceanexpert.org/institution/8657 -https://www.oceanexpert.org/expert/26295 -https://www.oceanexpert.org/institution/7168 -https://www.oceanexpert.org/expert/24267 -https://www.oceanexpert.org/expert/47980 -https://www.oceanexpert.org/expert/19782 -https://www.oceanexpert.org/expert/28269 -https://www.oceanexpert.org/expert/8151 -https://www.oceanexpert.org/institution/14357 -https://www.oceanexpert.org/expert/24328 -https://www.oceanexpert.org/expert/48516 -https://www.oceanexpert.org/event/1313 -https://www.oceanexpert.org/institution/21540 -https://www.oceanexpert.org/expert/11095 -https://www.oceanexpert.org/institution/21444 -https://www.oceanexpert.org/event/1785 -https://www.oceanexpert.org/institution/7833 -https://www.oceanexpert.org/institution/13397 -https://www.oceanexpert.org/expert/34026 -https://www.oceanexpert.org/expert/29574 -https://www.oceanexpert.org/expert/16066 -https://www.oceanexpert.org/expert/6179 -https://www.oceanexpert.org/institution/21133 -https://www.oceanexpert.org/expert/36049 -https://www.oceanexpert.org/expert/14799 -https://www.oceanexpert.org/expert/31093 -https://www.oceanexpert.org/event/356 -https://www.oceanexpert.org/expert/25364 -https://www.oceanexpert.org/event/256 -https://www.oceanexpert.org/institution/14875 -https://www.oceanexpert.org/institution/15113 -https://www.oceanexpert.org/expert/19386 -https://www.oceanexpert.org/expert/36706 -https://www.oceanexpert.org/expert/37453 -https://www.oceanexpert.org/institution/19016 -https://www.oceanexpert.org/expert/20024 -https://www.oceanexpert.org/expert/19868 -https://www.oceanexpert.org/institution/21125 -https://www.oceanexpert.org/institution/18983 -https://www.oceanexpert.org/institution/19513 -https://www.oceanexpert.org/expert/37895 -https://www.oceanexpert.org/expert/38043 -https://www.oceanexpert.org/expert/30893 -https://www.oceanexpert.org/institution/17298 -https://www.oceanexpert.org/expert/26178 -https://www.oceanexpert.org/expert/20969 -https://www.oceanexpert.org/expert/24480 -https://www.oceanexpert.org/expert/28074 -https://www.oceanexpert.org/institution/19610 -https://www.oceanexpert.org/expert/31831 -https://www.oceanexpert.org/expert/42644 -https://www.oceanexpert.org/expert/22026 -https://www.oceanexpert.org/expert/43612 -https://www.oceanexpert.org/expert/33751 -https://www.oceanexpert.org/institution/13130 -https://www.oceanexpert.org/institution/20480 -https://www.oceanexpert.org/expert/19711 -https://www.oceanexpert.org/expert/19516 -https://www.oceanexpert.org/institution/20627 -https://www.oceanexpert.org/institution/19361 -https://www.oceanexpert.org/institution/19783 -https://www.oceanexpert.org/expert/45963 -https://www.oceanexpert.org/institution/21402 -https://www.oceanexpert.org/expert/13362 -https://www.oceanexpert.org/expert/2543 -https://www.oceanexpert.org/institution/20677 -https://www.oceanexpert.org/expert/6165 -https://www.oceanexpert.org/expert/23266 -https://www.oceanexpert.org/expert/11162 -https://www.oceanexpert.org/expert/34660 -https://www.oceanexpert.org/expert/21844 -https://www.oceanexpert.org/expert/17512 -https://www.oceanexpert.org/event/313 -https://www.oceanexpert.org/expert/44834 -https://www.oceanexpert.org/expert/42898 -https://www.oceanexpert.org/expert/40588 -https://www.oceanexpert.org/expert/46292 -https://www.oceanexpert.org/expert/47465 -https://www.oceanexpert.org/expert/31718 -https://www.oceanexpert.org/expert/48561 -https://www.oceanexpert.org/expert/42496 -https://www.oceanexpert.org/institution/20670 -https://www.oceanexpert.org/expert/3181 -https://www.oceanexpert.org/institution/21494 -https://www.oceanexpert.org/expert/21725 -https://www.oceanexpert.org/expert/24294 -https://www.oceanexpert.org/expert/22886 -https://www.oceanexpert.org/expert/35282 -https://www.oceanexpert.org/expert/7539 -https://www.oceanexpert.org/institution/12792 -https://www.oceanexpert.org/institution/13431 -https://www.oceanexpert.org/event/2650 -https://www.oceanexpert.org/institution/13195 -https://www.oceanexpert.org/expert/40623 -https://www.oceanexpert.org/expert/38087 -https://www.oceanexpert.org/expert/25512 -https://www.oceanexpert.org/expert/13655 -https://www.oceanexpert.org/expert/17533 -https://www.oceanexpert.org/expert/44486 -https://www.oceanexpert.org/institution/18235 -https://www.oceanexpert.org/expert/44952 -https://www.oceanexpert.org/expert/46148 -https://www.oceanexpert.org/institution/10730 -https://www.oceanexpert.org/event/1199 -https://www.oceanexpert.org/institution/18801 -https://www.oceanexpert.org/expert/17367 -https://www.oceanexpert.org/expert/29802 -https://www.oceanexpert.org/expert/44609 -https://www.oceanexpert.org/expert/32560 -https://www.oceanexpert.org/expert/2392 -https://www.oceanexpert.org/institution/16258 -https://www.oceanexpert.org/expert/34274 -https://www.oceanexpert.org/expert/11525 -https://www.oceanexpert.org/expert/45475 -https://www.oceanexpert.org/event/148 -https://www.oceanexpert.org/expert/20149 -https://www.oceanexpert.org/expert/44598 -https://www.oceanexpert.org/expert/38717 -https://www.oceanexpert.org/institution/7317 -https://www.oceanexpert.org/expert/36169 -https://www.oceanexpert.org/institution/20792 -https://www.oceanexpert.org/expert/17204 -https://www.oceanexpert.org/expert/8773 -https://www.oceanexpert.org/event/2843 -https://www.oceanexpert.org/expert/44250 -https://www.oceanexpert.org/expert/44203 -https://www.oceanexpert.org/expert/30931 -https://www.oceanexpert.org/expert/24869 -https://www.oceanexpert.org/expert/35208 -https://www.oceanexpert.org/institution/18276 -https://www.oceanexpert.org/institution/19813 -https://www.oceanexpert.org/expert/25418 -https://www.oceanexpert.org/event/293 -https://www.oceanexpert.org/expert/23675 -https://www.oceanexpert.org/expert/44361 -https://www.oceanexpert.org/expert/5738 -https://www.oceanexpert.org/expert/33297 -https://www.oceanexpert.org/expert/19894 -https://www.oceanexpert.org/institution/18089 -https://www.oceanexpert.org/expert/47180 -https://www.oceanexpert.org/expert/25789 -https://www.oceanexpert.org/expert/19905 -https://www.oceanexpert.org/event/431 -https://www.oceanexpert.org/expert/22890 -https://www.oceanexpert.org/expert/37356 -https://www.oceanexpert.org/expert/30792 -https://www.oceanexpert.org/expert/44444 -https://www.oceanexpert.org/expert/29130 -https://www.oceanexpert.org/expert/18999 -https://www.oceanexpert.org/institution/13845 -https://www.oceanexpert.org/expert/32219 -https://www.oceanexpert.org/expert/731 -https://www.oceanexpert.org/expert/24234 -https://www.oceanexpert.org/expert/35656 -https://www.oceanexpert.org/institution/15042 -https://www.oceanexpert.org/institution/12122 -https://www.oceanexpert.org/expert/39469 -https://www.oceanexpert.org/expert/17010 -https://www.oceanexpert.org/expert/24372 -https://www.oceanexpert.org/expert/47110 -https://www.oceanexpert.org/expert/40295 -https://www.oceanexpert.org/institution/14377 -https://www.oceanexpert.org/event/1137 -https://www.oceanexpert.org/event/2390 -https://www.oceanexpert.org/institution/20747 -https://www.oceanexpert.org/event/495 -https://www.oceanexpert.org/institution/17910 -https://www.oceanexpert.org/expert/10936 -https://www.oceanexpert.org/institution/18288 -https://www.oceanexpert.org/expert/29683 -https://www.oceanexpert.org/expert/36223 -https://www.oceanexpert.org/expert/46659 -https://www.oceanexpert.org/institution/8732 -https://www.oceanexpert.org/expert/48553 -https://www.oceanexpert.org/expert/27725 -https://www.oceanexpert.org/expert/21004 -https://www.oceanexpert.org/event/2548 -https://www.oceanexpert.org/event/2178 -https://www.oceanexpert.org/expert/7802 -https://www.oceanexpert.org/institution/18460 -https://www.oceanexpert.org/institution/20267 -https://www.oceanexpert.org/expert/21101 -https://www.oceanexpert.org/expert/45790 -https://www.oceanexpert.org/expert/36155 -https://www.oceanexpert.org/expert/26743 -https://www.oceanexpert.org/expert/17846 -https://www.oceanexpert.org/expert/42880 -https://www.oceanexpert.org/institution/14272 -https://www.oceanexpert.org/institution/18550 -https://www.oceanexpert.org/institution/21940 -https://www.oceanexpert.org/expert/27306 -https://www.oceanexpert.org/expert/42152 -https://www.oceanexpert.org/event/1351 -https://www.oceanexpert.org/institution/20588 -https://www.oceanexpert.org/institution/18619 -https://www.oceanexpert.org/expert/27608 -https://www.oceanexpert.org/institution/18536 -https://www.oceanexpert.org/expert/27563 -https://www.oceanexpert.org/institution/11308 -https://www.oceanexpert.org/expert/16364 -https://www.oceanexpert.org/expert/44864 -https://www.oceanexpert.org/event/1278 -https://www.oceanexpert.org/expert/20455 -https://www.oceanexpert.org/expert/48996 -https://www.oceanexpert.org/expert/32587 -https://www.oceanexpert.org/institution/19385 -https://www.oceanexpert.org/expert/13682 -https://www.oceanexpert.org/expert/28396 -https://www.oceanexpert.org/expert/27184 -https://www.oceanexpert.org/institution/11631 -https://www.oceanexpert.org/expert/35257 -https://www.oceanexpert.org/expert/7271 -https://www.oceanexpert.org/expert/27176 -https://www.oceanexpert.org/expert/37407 -https://www.oceanexpert.org/expert/15196 -https://www.oceanexpert.org/expert/32213 -https://www.oceanexpert.org/expert/27420 -https://www.oceanexpert.org/institution/20620 -https://www.oceanexpert.org/expert/30765 -https://www.oceanexpert.org/expert/21216 -https://www.oceanexpert.org/expert/22379 -https://www.oceanexpert.org/expert/45506 -https://www.oceanexpert.org/event/3007 -https://www.oceanexpert.org/expert/27209 -https://www.oceanexpert.org/expert/27546 -https://www.oceanexpert.org/expert/42756 -https://www.oceanexpert.org/expert/6839 -https://www.oceanexpert.org/expert/37044 -https://www.oceanexpert.org/institution/20892 -https://www.oceanexpert.org/institution/8218 -https://www.oceanexpert.org/expert/21291 -https://www.oceanexpert.org/expert/32870 -https://www.oceanexpert.org/expert/37060 -https://www.oceanexpert.org/institution/16077 -https://www.oceanexpert.org/institution/6332 -https://www.oceanexpert.org/expert/34838 -https://www.oceanexpert.org/event/374 -https://www.oceanexpert.org/expert/33742 -https://www.oceanexpert.org/expert/13381 -https://www.oceanexpert.org/institution/11355 -https://www.oceanexpert.org/expert/25488 -https://www.oceanexpert.org/expert/23730 -https://www.oceanexpert.org/expert/44984 -https://www.oceanexpert.org/expert/21145 -https://www.oceanexpert.org/expert/35774 -https://www.oceanexpert.org/institution/21215 -https://www.oceanexpert.org/expert/30698 -https://www.oceanexpert.org/expert/28021 -https://www.oceanexpert.org/expert/59 -https://www.oceanexpert.org/expert/31203 -https://www.oceanexpert.org/expert/26013 -https://www.oceanexpert.org/event/1057 -https://www.oceanexpert.org/expert/27327 -https://www.oceanexpert.org/expert/47263 -https://www.oceanexpert.org/expert/29131 -https://www.oceanexpert.org/expert/47319 -https://www.oceanexpert.org/institution/22081 -https://www.oceanexpert.org/institution/20905 -https://www.oceanexpert.org/expert/12622 -https://www.oceanexpert.org/institution/19272 -https://www.oceanexpert.org/expert/47596 -https://www.oceanexpert.org/expert/12622 -https://www.oceanexpert.org/institution/17718 -https://www.oceanexpert.org/expert/25331 -https://www.oceanexpert.org/expert/42154 -https://www.oceanexpert.org/expert/22761 -https://www.oceanexpert.org/expert/27262 -https://www.oceanexpert.org/expert/19606 -https://www.oceanexpert.org/institution/16973 -https://www.oceanexpert.org/expert/30090 -https://www.oceanexpert.org/expert/25382 -https://www.oceanexpert.org/expert/31245 -https://www.oceanexpert.org/expert/42646 -https://www.oceanexpert.org/expert/17296 -https://www.oceanexpert.org/expert/45699 -https://www.oceanexpert.org/event/1362 -https://www.oceanexpert.org/expert/29111 -https://www.oceanexpert.org/institution/18242 -https://www.oceanexpert.org/expert/26805 -https://www.oceanexpert.org/expert/35314 -https://www.oceanexpert.org/expert/48325 -https://www.oceanexpert.org/expert/44589 -https://www.oceanexpert.org/expert/12575 -https://www.oceanexpert.org/expert/36237 -https://www.oceanexpert.org/institution/20984 -https://www.oceanexpert.org/institution/22073 -https://www.oceanexpert.org/institution/12089 -https://www.oceanexpert.org/expert/40117 -https://www.oceanexpert.org/expert/8363 -https://www.oceanexpert.org/expert/28132 -https://www.oceanexpert.org/expert/14573 -https://www.oceanexpert.org/expert/12337 -https://www.oceanexpert.org/expert/37200 -https://www.oceanexpert.org/expert/46244 -https://www.oceanexpert.org/institution/18312 -https://www.oceanexpert.org/expert/33282 -https://www.oceanexpert.org/expert/35450 -https://www.oceanexpert.org/expert/27500 -https://www.oceanexpert.org/expert/44361 -https://www.oceanexpert.org/expert/48394 -https://www.oceanexpert.org/event/2749 -https://www.oceanexpert.org/expert/12877 -https://www.oceanexpert.org/expert/21042 -https://www.oceanexpert.org/expert/36291 -https://www.oceanexpert.org/expert/23630 -https://www.oceanexpert.org/expert/23649 -https://www.oceanexpert.org/expert/37653 -https://www.oceanexpert.org/event/2907 -https://www.oceanexpert.org/expert/26074 -https://www.oceanexpert.org/institution/21192 -https://www.oceanexpert.org/expert/44353 -https://www.oceanexpert.org/expert/15606 -https://www.oceanexpert.org/expert/11742 -https://www.oceanexpert.org/expert/25789 -https://www.oceanexpert.org/institution/20606 -https://www.oceanexpert.org/expert/9222 -https://www.oceanexpert.org/expert/27205 -https://www.oceanexpert.org/institution/19359 -https://www.oceanexpert.org/institution/16100 -https://www.oceanexpert.org/institution/21115 -https://www.oceanexpert.org/expert/44002 -https://www.oceanexpert.org/institution/20203 -https://www.oceanexpert.org/expert/37234 -https://www.oceanexpert.org/expert/42794 -https://www.oceanexpert.org/expert/44342 -https://www.oceanexpert.org/expert/43908 -https://www.oceanexpert.org/expert/45281 -https://www.oceanexpert.org/expert/39579 -https://www.oceanexpert.org/institution/18421 -https://www.oceanexpert.org/expert/32313 -https://www.oceanexpert.org/institution/15264 -https://www.oceanexpert.org/expert/18870 -https://www.oceanexpert.org/expert/21962 -https://www.oceanexpert.org/expert/24033 -https://www.oceanexpert.org/expert/29535 -https://www.oceanexpert.org/institution/17291 -https://www.oceanexpert.org/expert/25671 -https://www.oceanexpert.org/institution/8866 -https://www.oceanexpert.org/institution/20374 -https://www.oceanexpert.org/institution/19371 -https://www.oceanexpert.org/expert/11843 -https://www.oceanexpert.org/institution/18334 -https://www.oceanexpert.org/expert/17931 -https://www.oceanexpert.org/expert/36168 -https://www.oceanexpert.org/expert/26643 -https://www.oceanexpert.org/expert/27473 -https://www.oceanexpert.org/expert/35079 -https://www.oceanexpert.org/event/1717 -https://www.oceanexpert.org/expert/44884 -https://www.oceanexpert.org/institution/12896 -https://www.oceanexpert.org/institution/20707 -https://www.oceanexpert.org/institution/15951 -https://www.oceanexpert.org/institution/20868 -https://www.oceanexpert.org/institution/19026 -https://www.oceanexpert.org/institution/19142 -https://www.oceanexpert.org/institution/14730 -https://www.oceanexpert.org/expert/1198 -https://www.oceanexpert.org/expert/20357 -https://www.oceanexpert.org/expert/7212 -https://www.oceanexpert.org/expert/30189 -https://www.oceanexpert.org/institution/19043 -https://www.oceanexpert.org/expert/14886 -https://www.oceanexpert.org/institution/12898 -https://www.oceanexpert.org/institution/21675 -https://www.oceanexpert.org/expert/2657 -https://www.oceanexpert.org/expert/48851 -https://www.oceanexpert.org/expert/35206 -https://www.oceanexpert.org/expert/18301 -https://www.oceanexpert.org/event/1348 -https://www.oceanexpert.org/event/765 -https://www.oceanexpert.org/expert/46278 -https://www.oceanexpert.org/institution/20173 -https://www.oceanexpert.org/expert/21478 -https://www.oceanexpert.org/event/1487 -https://www.oceanexpert.org/expert/36435 -https://www.oceanexpert.org/expert/8052 -https://www.oceanexpert.org/expert/20824 -https://www.oceanexpert.org/event/1772 -https://www.oceanexpert.org/expert/19058 -https://www.oceanexpert.org/expert/44301 -https://www.oceanexpert.org/expert/9527 -https://www.oceanexpert.org/expert/35799 -https://www.oceanexpert.org/expert/31055 -https://www.oceanexpert.org/expert/43165 -https://www.oceanexpert.org/expert/36684 -https://www.oceanexpert.org/expert/8343 -https://www.oceanexpert.org/institution/21886 -https://www.oceanexpert.org/expert/28823 -https://www.oceanexpert.org/expert/38149 -https://www.oceanexpert.org/event/1466 -https://www.oceanexpert.org/expert/3235 -https://www.oceanexpert.org/expert/46926 -https://www.oceanexpert.org/expert/19169 -https://www.oceanexpert.org/expert/30935 -https://www.oceanexpert.org/expert/38717 -https://www.oceanexpert.org/expert/43682 -https://www.oceanexpert.org/expert/35318 -https://www.oceanexpert.org/expert/36696 -https://www.oceanexpert.org/event/436 -https://www.oceanexpert.org/expert/19135 -https://www.oceanexpert.org/institution/8870 -https://www.oceanexpert.org/expert/18992 -https://www.oceanexpert.org/expert/30087 -https://www.oceanexpert.org/institution/15884 -https://www.oceanexpert.org/expert/43614 -https://www.oceanexpert.org/expert/25070 -https://www.oceanexpert.org/expert/33861 -https://www.oceanexpert.org/expert/4496 -https://www.oceanexpert.org/expert/35600 -https://www.oceanexpert.org/institution/19185 -https://www.oceanexpert.org/expert/40108 -https://www.oceanexpert.org/expert/43396 -https://www.oceanexpert.org/event/644 -https://www.oceanexpert.org/expert/48780 -https://www.oceanexpert.org/expert/19661 -https://www.oceanexpert.org/institution/20597 -https://www.oceanexpert.org/institution/21337 -https://www.oceanexpert.org/expert/21625 -https://www.oceanexpert.org/expert/36107 -https://www.oceanexpert.org/expert/16742 -https://www.oceanexpert.org/expert/23036 -https://www.oceanexpert.org/expert/24746 -https://www.oceanexpert.org/expert/47059 -https://www.oceanexpert.org/expert/30562 -https://www.oceanexpert.org/expert/47355 -https://www.oceanexpert.org/expert/21018 -https://www.oceanexpert.org/expert/8902 -https://www.oceanexpert.org/expert/20153 -https://www.oceanexpert.org/institution/21542 -https://www.oceanexpert.org/expert/47363 -https://www.oceanexpert.org/expert/28325 -https://www.oceanexpert.org/institution/8504 -https://www.oceanexpert.org/expert/20626 -https://www.oceanexpert.org/expert/42932 -https://www.oceanexpert.org/expert/24635 -https://www.oceanexpert.org/expert/26027 -https://www.oceanexpert.org/institution/5937 -https://www.oceanexpert.org/expert/7172 -https://www.oceanexpert.org/institution/13823 -https://www.oceanexpert.org/institution/12062 -https://www.oceanexpert.org/institution/19250 -https://www.oceanexpert.org/institution/11274 -https://www.oceanexpert.org/institution/18976 -https://www.oceanexpert.org/institution/15578 -https://www.oceanexpert.org/expert/16048 -https://www.oceanexpert.org/expert/6705 -https://www.oceanexpert.org/expert/43623 -https://www.oceanexpert.org/expert/34799 -https://www.oceanexpert.org/expert/19169 -https://www.oceanexpert.org/event/1955 -https://www.oceanexpert.org/institution/9733 -https://www.oceanexpert.org/expert/43407 -https://www.oceanexpert.org/expert/43204 -https://www.oceanexpert.org/event/1646 -https://www.oceanexpert.org/expert/47177 -https://www.oceanexpert.org/institution/5899 -https://www.oceanexpert.org/expert/22736 -https://www.oceanexpert.org/institution/19577 -https://www.oceanexpert.org/institution/19136 -https://www.oceanexpert.org/institution/15321 -https://www.oceanexpert.org/expert/24695 -https://www.oceanexpert.org/institution/20928 -https://www.oceanexpert.org/institution/11082 -https://www.oceanexpert.org/expert/34943 -https://www.oceanexpert.org/expert/33863 -https://www.oceanexpert.org/expert/29057 -https://www.oceanexpert.org/expert/8629 -https://www.oceanexpert.org/institution/8321 -https://www.oceanexpert.org/expert/30794 -https://www.oceanexpert.org/institution/20657 -https://www.oceanexpert.org/institution/20938 -https://www.oceanexpert.org/expert/48787 -https://www.oceanexpert.org/expert/29701 -https://www.oceanexpert.org/expert/22790 -https://www.oceanexpert.org/expert/37515 -https://www.oceanexpert.org/expert/16808 -https://www.oceanexpert.org/expert/32672 -https://www.oceanexpert.org/expert/48153 -https://www.oceanexpert.org/expert/24933 -https://www.oceanexpert.org/expert/20985 -https://www.oceanexpert.org/institution/22079 -https://www.oceanexpert.org/institution/20691 -https://www.oceanexpert.org/expert/32132 -https://www.oceanexpert.org/expert/22690 -https://www.oceanexpert.org/expert/39476 -https://www.oceanexpert.org/event/24 -https://www.oceanexpert.org/expert/19884 -https://www.oceanexpert.org/institution/14088 -https://www.oceanexpert.org/expert/25279 -https://www.oceanexpert.org/expert/20409 -https://www.oceanexpert.org/institution/20057 -https://www.oceanexpert.org/expert/35868 -https://www.oceanexpert.org/expert/25808 -https://www.oceanexpert.org/event/2513 -https://www.oceanexpert.org/expert/16396 -https://www.oceanexpert.org/expert/37883 -https://www.oceanexpert.org/expert/45769 -https://www.oceanexpert.org/expert/42961 -https://www.oceanexpert.org/expert/44968 -https://www.oceanexpert.org/institution/12939 -https://www.oceanexpert.org/expert/20456 -https://www.oceanexpert.org/expert/37134 -https://www.oceanexpert.org/institution/19714 -https://www.oceanexpert.org/expert/14121 -https://www.oceanexpert.org/institution/13120 -https://www.oceanexpert.org/institution/5582 -https://www.oceanexpert.org/expert/26907 -https://www.oceanexpert.org/expert/35048 -https://www.oceanexpert.org/event/252 -https://www.oceanexpert.org/expert/17812 -https://www.oceanexpert.org/expert/17618 -https://www.oceanexpert.org/expert/33065 -https://www.oceanexpert.org/institution/18781 -https://www.oceanexpert.org/expert/14273 -https://www.oceanexpert.org/institution/13272 -https://www.oceanexpert.org/expert/14555 -https://www.oceanexpert.org/expert/33627 -https://www.oceanexpert.org/institution/19876 -https://www.oceanexpert.org/expert/25281 -https://www.oceanexpert.org/expert/22628 -https://www.oceanexpert.org/expert/13419 -https://www.oceanexpert.org/expert/2836 -https://www.oceanexpert.org/institution/16800 -https://www.oceanexpert.org/expert/34549 -https://www.oceanexpert.org/expert/19497 -https://www.oceanexpert.org/institution/21750 -https://www.oceanexpert.org/institution/18580 -https://www.oceanexpert.org/event/549 -https://www.oceanexpert.org/expert/19213 -https://www.oceanexpert.org/expert/21872 -https://www.oceanexpert.org/institution/18765 -https://www.oceanexpert.org/institution/18955 -https://www.oceanexpert.org/expert/18915 -https://www.oceanexpert.org/expert/32061 -https://www.oceanexpert.org/expert/14573 -https://www.oceanexpert.org/event/1348 -https://www.oceanexpert.org/expert/39135 -https://www.oceanexpert.org/expert/33862 -https://www.oceanexpert.org/institution/7937 -https://www.oceanexpert.org/expert/19662 -https://www.oceanexpert.org/expert/47446 -https://www.oceanexpert.org/institution/21127 -https://www.oceanexpert.org/institution/21944 -https://www.oceanexpert.org/institution/12679 -https://www.oceanexpert.org/institution/20580 -https://www.oceanexpert.org/expert/28336 -https://www.oceanexpert.org/expert/20918 -https://www.oceanexpert.org/expert/46778 -https://www.oceanexpert.org/expert/31334 -https://www.oceanexpert.org/event/2196 -https://www.oceanexpert.org/institution/11666 -https://www.oceanexpert.org/expert/20779 -https://www.oceanexpert.org/expert/1366 -https://www.oceanexpert.org/institution/20676 -https://www.oceanexpert.org/institution/20817 -https://www.oceanexpert.org/expert/44644 -https://www.oceanexpert.org/event/872 -https://www.oceanexpert.org/institution/21680 -https://www.oceanexpert.org/expert/47332 -https://www.oceanexpert.org/expert/13689 -https://www.oceanexpert.org/expert/22428 -https://www.oceanexpert.org/expert/5625 -https://www.oceanexpert.org/expert/44771 -https://www.oceanexpert.org/institution/18786 -https://www.oceanexpert.org/institution/14428 -https://www.oceanexpert.org/expert/15922 -https://www.oceanexpert.org/expert/45302 -https://www.oceanexpert.org/expert/48950 -https://www.oceanexpert.org/event/3094 -https://www.oceanexpert.org/expert/24568 -https://www.oceanexpert.org/expert/49032 -https://www.oceanexpert.org/expert/21286 -https://www.oceanexpert.org/expert/16861 -https://www.oceanexpert.org/event/2335 -https://www.oceanexpert.org/expert/43815 -https://www.oceanexpert.org/institution/5307 -https://www.oceanexpert.org/institution/15292 -https://www.oceanexpert.org/institution/15092 -https://www.oceanexpert.org/expert/20062 -https://www.oceanexpert.org/institution/7410 -https://www.oceanexpert.org/expert/48061 -https://www.oceanexpert.org/expert/47376 -https://www.oceanexpert.org/expert/31938 -https://www.oceanexpert.org/expert/24792 -https://www.oceanexpert.org/expert/43391 -https://www.oceanexpert.org/expert/25579 -https://www.oceanexpert.org/event/2506 -https://www.oceanexpert.org/event/2575 -https://www.oceanexpert.org/institution/5244 -https://www.oceanexpert.org/expert/17006 -https://www.oceanexpert.org/institution/19757 -https://www.oceanexpert.org/expert/22080 -https://www.oceanexpert.org/institution/11878 -https://www.oceanexpert.org/event/2497 -https://www.oceanexpert.org/expert/27595 -https://www.oceanexpert.org/institution/14929 -https://www.oceanexpert.org/expert/13362 -https://www.oceanexpert.org/expert/35868 -https://www.oceanexpert.org/expert/28310 -https://www.oceanexpert.org/expert/47916 -https://www.oceanexpert.org/institution/11119 -https://www.oceanexpert.org/expert/29059 -https://www.oceanexpert.org/event/2459 -https://www.oceanexpert.org/institution/13102 -https://www.oceanexpert.org/expert/48814 -https://www.oceanexpert.org/expert/45348 -https://www.oceanexpert.org/institution/17865 -https://www.oceanexpert.org/event/2294 -https://www.oceanexpert.org/expert/12973 -https://www.oceanexpert.org/expert/27729 -https://www.oceanexpert.org/expert/44615 -https://www.oceanexpert.org/expert/48478 -https://www.oceanexpert.org/expert/26348 -https://www.oceanexpert.org/institution/9170 -https://www.oceanexpert.org/institution/11623 -https://www.oceanexpert.org/expert/6548 -https://www.oceanexpert.org/expert/22627 -https://www.oceanexpert.org/expert/18063 -https://www.oceanexpert.org/expert/48374 -https://www.oceanexpert.org/institution/22138 -https://www.oceanexpert.org/expert/45885 -https://www.oceanexpert.org/expert/49037 -https://www.oceanexpert.org/expert/47166 -https://www.oceanexpert.org/institution/14620 -https://www.oceanexpert.org/expert/18613 -https://www.oceanexpert.org/expert/18161 -https://www.oceanexpert.org/event/2638 -https://www.oceanexpert.org/event/203 -https://www.oceanexpert.org/expert/34975 -https://www.oceanexpert.org/expert/19449 -https://www.oceanexpert.org/expert/13612 -https://www.oceanexpert.org/expert/25323 -https://www.oceanexpert.org/expert/33883 -https://www.oceanexpert.org/institution/13015 -https://www.oceanexpert.org/event/2742 -https://www.oceanexpert.org/expert/26674 -https://www.oceanexpert.org/expert/23361 -https://www.oceanexpert.org/event/177 -https://www.oceanexpert.org/expert/48560 -https://www.oceanexpert.org/expert/8048 -https://www.oceanexpert.org/event/3292 -https://www.oceanexpert.org/expert/30045 -https://www.oceanexpert.org/event/333 -https://www.oceanexpert.org/expert/19335 -https://www.oceanexpert.org/event/722 -https://www.oceanexpert.org/expert/23300 -https://www.oceanexpert.org/expert/11206 -https://www.oceanexpert.org/expert/17801 -https://www.oceanexpert.org/expert/22087 -https://www.oceanexpert.org/expert/22137 -https://www.oceanexpert.org/institution/19955 -https://www.oceanexpert.org/expert/48955 -https://www.oceanexpert.org/expert/26150 -https://www.oceanexpert.org/institution/10644 -https://www.oceanexpert.org/expert/25529 -https://www.oceanexpert.org/expert/30910 -https://www.oceanexpert.org/expert/25211 -https://www.oceanexpert.org/expert/8711 -https://www.oceanexpert.org/expert/44060 -https://www.oceanexpert.org/expert/17032 -https://www.oceanexpert.org/expert/3174 -https://www.oceanexpert.org/expert/42010 -https://www.oceanexpert.org/expert/37004 -https://www.oceanexpert.org/expert/27430 -https://www.oceanexpert.org/institution/21310 -https://www.oceanexpert.org/institution/15217 -https://www.oceanexpert.org/expert/1673 -https://www.oceanexpert.org/expert/6548 -https://www.oceanexpert.org/expert/8148 -https://www.oceanexpert.org/expert/31193 -https://www.oceanexpert.org/expert/43228 -https://www.oceanexpert.org/event/2929 -https://www.oceanexpert.org/expert/27828 -https://www.oceanexpert.org/expert/36771 -https://www.oceanexpert.org/expert/37576 -https://www.oceanexpert.org/expert/34140 -https://www.oceanexpert.org/expert/37531 -https://www.oceanexpert.org/institution/10650 -https://www.oceanexpert.org/institution/16162 -https://www.oceanexpert.org/institution/18687 -https://www.oceanexpert.org/event/965 -https://www.oceanexpert.org/expert/15321 -https://www.oceanexpert.org/expert/38406 -https://www.oceanexpert.org/expert/32774 -https://www.oceanexpert.org/institution/16841 -https://www.oceanexpert.org/institution/5053 -https://www.oceanexpert.org/expert/26969 -https://www.oceanexpert.org/institution/21325 -https://www.oceanexpert.org/event/3189 -https://www.oceanexpert.org/expert/21495 -https://www.oceanexpert.org/expert/34812 -https://www.oceanexpert.org/institution/20045 -https://www.oceanexpert.org/expert/20841 -https://www.oceanexpert.org/expert/17359 -https://www.oceanexpert.org/institution/21921 -https://www.oceanexpert.org/event/2569 -https://www.oceanexpert.org/expert/47621 -https://www.oceanexpert.org/institution/14399 -https://www.oceanexpert.org/expert/11323 -https://www.oceanexpert.org/event/1887 -https://www.oceanexpert.org/institution/9757 -https://www.oceanexpert.org/expert/32188 -https://www.oceanexpert.org/expert/20581 -https://www.oceanexpert.org/expert/18708 -https://www.oceanexpert.org/expert/33878 -https://www.oceanexpert.org/event/2622 -https://www.oceanexpert.org/event/2244 -https://www.oceanexpert.org/expert/21679 -https://www.oceanexpert.org/expert/45456 -https://www.oceanexpert.org/expert/2736 -https://www.oceanexpert.org/expert/23482 -https://www.oceanexpert.org/expert/38164 -https://www.oceanexpert.org/institution/12294 -https://www.oceanexpert.org/expert/29538 -https://www.oceanexpert.org/expert/32593 -https://www.oceanexpert.org/expert/37106 -https://www.oceanexpert.org/institution/13416 -https://www.oceanexpert.org/expert/26414 -https://www.oceanexpert.org/expert/26493 -https://www.oceanexpert.org/institution/10131 -https://www.oceanexpert.org/institution/18836 -https://www.oceanexpert.org/event/197 -https://www.oceanexpert.org/expert/48720 -https://www.oceanexpert.org/expert/37008 -https://www.oceanexpert.org/expert/47993 -https://www.oceanexpert.org/expert/46529 -https://www.oceanexpert.org/institution/19361 -https://www.oceanexpert.org/expert/21595 -https://www.oceanexpert.org/institution/6149 -https://www.oceanexpert.org/expert/15034 -https://www.oceanexpert.org/expert/23818 -https://www.oceanexpert.org/expert/21328 -https://www.oceanexpert.org/institution/6250 -https://www.oceanexpert.org/institution/19992 -https://www.oceanexpert.org/expert/26663 -https://www.oceanexpert.org/expert/48459 -https://www.oceanexpert.org/institution/10762 -https://www.oceanexpert.org/expert/44165 -https://www.oceanexpert.org/expert/6379 -https://www.oceanexpert.org/expert/32299 -https://www.oceanexpert.org/expert/44475 -https://www.oceanexpert.org/expert/37474 -https://www.oceanexpert.org/expert/46973 -https://www.oceanexpert.org/expert/43248 -https://www.oceanexpert.org/expert/45509 -https://www.oceanexpert.org/expert/20780 -https://www.oceanexpert.org/expert/46572 -https://www.oceanexpert.org/expert/37626 -https://www.oceanexpert.org/expert/32492 -https://www.oceanexpert.org/expert/29560 -https://www.oceanexpert.org/expert/47505 -https://www.oceanexpert.org/expert/27102 -https://www.oceanexpert.org/expert/16480 -https://www.oceanexpert.org/expert/39179 -https://www.oceanexpert.org/expert/16772 -https://www.oceanexpert.org/expert/1198 -https://www.oceanexpert.org/expert/18117 -https://www.oceanexpert.org/expert/45571 -https://www.oceanexpert.org/expert/6269 -https://www.oceanexpert.org/expert/24204 -https://www.oceanexpert.org/expert/45577 -https://www.oceanexpert.org/institution/18996 -https://www.oceanexpert.org/expert/18964 -https://www.oceanexpert.org/expert/45620 -https://www.oceanexpert.org/expert/47502 -https://www.oceanexpert.org/event/2813 -https://www.oceanexpert.org/expert/39393 -https://www.oceanexpert.org/institution/19124 -https://www.oceanexpert.org/institution/18751 -https://www.oceanexpert.org/institution/21621 -https://www.oceanexpert.org/expert/36405 -https://www.oceanexpert.org/expert/48521 -https://www.oceanexpert.org/expert/36605 -https://www.oceanexpert.org/institution/20885 -https://www.oceanexpert.org/institution/5028 -https://www.oceanexpert.org/expert/48688 -https://www.oceanexpert.org/expert/15278 -https://www.oceanexpert.org/expert/43864 -https://www.oceanexpert.org/expert/39518 -https://www.oceanexpert.org/expert/34885 -https://www.oceanexpert.org/expert/32282 -https://www.oceanexpert.org/expert/37303 -https://www.oceanexpert.org/expert/13064 -https://www.oceanexpert.org/expert/45423 -https://www.oceanexpert.org/institution/22083 -https://www.oceanexpert.org/expert/33555 -https://www.oceanexpert.org/institution/17432 -https://www.oceanexpert.org/expert/22668 -https://www.oceanexpert.org/expert/36058 -https://www.oceanexpert.org/institution/19994 -https://www.oceanexpert.org/expert/31662 -https://www.oceanexpert.org/institution/21924 -https://www.oceanexpert.org/institution/20453 -https://www.oceanexpert.org/expert/27604 -https://www.oceanexpert.org/expert/48258 -https://www.oceanexpert.org/expert/19123 -https://www.oceanexpert.org/expert/37047 -https://www.oceanexpert.org/expert/29779 -https://www.oceanexpert.org/event/2513 -https://www.oceanexpert.org/expert/48059 -https://www.oceanexpert.org/expert/20703 -https://www.oceanexpert.org/expert/27522 -https://www.oceanexpert.org/institution/15442 -https://www.oceanexpert.org/expert/35592 -https://www.oceanexpert.org/expert/26692 -https://www.oceanexpert.org/institution/14723 -https://www.oceanexpert.org/expert/1867 -https://www.oceanexpert.org/expert/27214 -https://www.oceanexpert.org/event/2579 -https://www.oceanexpert.org/institution/19008 -https://www.oceanexpert.org/institution/17633 -https://www.oceanexpert.org/institution/8493 -https://www.oceanexpert.org/expert/37303 -https://www.oceanexpert.org/expert/46878 -https://www.oceanexpert.org/expert/25317 -https://www.oceanexpert.org/expert/32907 -https://www.oceanexpert.org/institution/18639 -https://www.oceanexpert.org/expert/34882 -https://www.oceanexpert.org/institution/22124 -https://www.oceanexpert.org/expert/7528 -https://www.oceanexpert.org/expert/44123 -https://www.oceanexpert.org/expert/27308 -https://www.oceanexpert.org/expert/36524 -https://www.oceanexpert.org/expert/6523 -https://www.oceanexpert.org/expert/43612 -https://www.oceanexpert.org/institution/10803 -https://www.oceanexpert.org/event/3253 -https://www.oceanexpert.org/expert/44602 -https://www.oceanexpert.org/institution/18886 -https://www.oceanexpert.org/institution/18943 -https://www.oceanexpert.org/expert/37332 -https://www.oceanexpert.org/expert/4864 -https://www.oceanexpert.org/expert/48884 -https://www.oceanexpert.org/expert/32508 -https://www.oceanexpert.org/institution/19432 -https://www.oceanexpert.org/expert/32859 -https://www.oceanexpert.org/event/1957 -https://www.oceanexpert.org/expert/7035 -https://www.oceanexpert.org/expert/6917 -https://www.oceanexpert.org/event/596 -https://www.oceanexpert.org/institution/11218 -https://www.oceanexpert.org/expert/18024 -https://www.oceanexpert.org/event/561 -https://www.oceanexpert.org/institution/21136 -https://www.oceanexpert.org/institution/9550 -https://www.oceanexpert.org/expert/46850 -https://www.oceanexpert.org/expert/21915 -https://www.oceanexpert.org/event/1135 -https://www.oceanexpert.org/institution/8695 -https://www.oceanexpert.org/expert/19057 -https://www.oceanexpert.org/institution/20668 -https://www.oceanexpert.org/expert/30048 -https://www.oceanexpert.org/expert/34672 -https://www.oceanexpert.org/expert/36540 -https://www.oceanexpert.org/expert/24124 -https://www.oceanexpert.org/institution/19632 -https://www.oceanexpert.org/expert/27210 -https://www.oceanexpert.org/expert/25937 -https://www.oceanexpert.org/expert/43418 -https://www.oceanexpert.org/institution/22013 -https://www.oceanexpert.org/expert/38191 -https://www.oceanexpert.org/expert/34648 -https://www.oceanexpert.org/institution/18236 -https://www.oceanexpert.org/expert/44613 -https://www.oceanexpert.org/institution/19614 -https://www.oceanexpert.org/expert/40524 -https://www.oceanexpert.org/expert/46409 -https://www.oceanexpert.org/expert/46955 -https://www.oceanexpert.org/event/3123 -https://www.oceanexpert.org/institution/12045 -https://www.oceanexpert.org/institution/17734 -https://www.oceanexpert.org/institution/19247 -https://www.oceanexpert.org/expert/3428 -https://www.oceanexpert.org/expert/33535 -https://www.oceanexpert.org/institution/14960 -https://www.oceanexpert.org/expert/27116 -https://www.oceanexpert.org/event/1731 -https://www.oceanexpert.org/institution/17712 -https://www.oceanexpert.org/institution/20933 -https://www.oceanexpert.org/expert/37480 -https://www.oceanexpert.org/expert/16929 -https://www.oceanexpert.org/institution/19764 -https://www.oceanexpert.org/expert/30445 -https://www.oceanexpert.org/expert/36979 -https://www.oceanexpert.org/expert/29690 -https://www.oceanexpert.org/expert/26399 -https://www.oceanexpert.org/expert/26876 -https://www.oceanexpert.org/institution/15248 -https://www.oceanexpert.org/institution/20376 -https://www.oceanexpert.org/expert/24632 -https://www.oceanexpert.org/expert/34136 -https://www.oceanexpert.org/institution/11141 -https://www.oceanexpert.org/expert/18782 -https://www.oceanexpert.org/expert/44975 -https://www.oceanexpert.org/expert/35953 -https://www.oceanexpert.org/institution/11080 -https://www.oceanexpert.org/expert/23198 -https://www.oceanexpert.org/expert/46286 -https://www.oceanexpert.org/expert/48466 -https://www.oceanexpert.org/event/442 -https://www.oceanexpert.org/expert/26317 -https://www.oceanexpert.org/institution/5196 -https://www.oceanexpert.org/expert/33528 -https://www.oceanexpert.org/expert/1341 -https://www.oceanexpert.org/expert/27456 -https://www.oceanexpert.org/institution/21316 -https://www.oceanexpert.org/expert/22475 -https://www.oceanexpert.org/institution/10087 -https://www.oceanexpert.org/institution/20564 -https://www.oceanexpert.org/expert/28964 -https://www.oceanexpert.org/institution/18061 -https://www.oceanexpert.org/expert/46977 -https://www.oceanexpert.org/expert/17631 -https://www.oceanexpert.org/expert/22078 -https://www.oceanexpert.org/institution/19569 -https://www.oceanexpert.org/expert/31115 -https://www.oceanexpert.org/expert/25555 -https://www.oceanexpert.org/expert/46058 -https://www.oceanexpert.org/expert/48787 -https://www.oceanexpert.org/expert/44129 -https://www.oceanexpert.org/institution/7169 -https://www.oceanexpert.org/expert/36742 -https://www.oceanexpert.org/expert/43658 -https://www.oceanexpert.org/expert/35854 -https://www.oceanexpert.org/expert/38911 -https://www.oceanexpert.org/expert/45302 -https://www.oceanexpert.org/expert/17809 -https://www.oceanexpert.org/institution/21416 -https://www.oceanexpert.org/institution/20093 -https://www.oceanexpert.org/expert/12264 -https://www.oceanexpert.org/event/404 -https://www.oceanexpert.org/expert/8652 -https://www.oceanexpert.org/expert/26913 -https://www.oceanexpert.org/institution/18616 -https://www.oceanexpert.org/expert/47543 -https://www.oceanexpert.org/event/1288 -https://www.oceanexpert.org/expert/32506 -https://www.oceanexpert.org/event/1978 -https://www.oceanexpert.org/expert/47846 -https://www.oceanexpert.org/expert/25499 -https://www.oceanexpert.org/institution/13678 -https://www.oceanexpert.org/institution/8143 -https://www.oceanexpert.org/institution/18185 -https://www.oceanexpert.org/expert/46829 -https://www.oceanexpert.org/institution/12951 -https://www.oceanexpert.org/expert/34088 -https://www.oceanexpert.org/expert/27291 -https://www.oceanexpert.org/expert/44282 -https://www.oceanexpert.org/expert/26860 -https://www.oceanexpert.org/expert/16776 -https://www.oceanexpert.org/expert/21728 -https://www.oceanexpert.org/expert/19884 -https://www.oceanexpert.org/event/2763 -https://www.oceanexpert.org/event/304 -https://www.oceanexpert.org/institution/16327 -https://www.oceanexpert.org/expert/24708 -https://www.oceanexpert.org/event/1940 -https://www.oceanexpert.org/expert/20829 -https://www.oceanexpert.org/institution/17199 -https://www.oceanexpert.org/expert/48049 -https://www.oceanexpert.org/event/165 -https://www.oceanexpert.org/institution/20617 -https://www.oceanexpert.org/expert/44504 -https://www.oceanexpert.org/institution/6990 -https://www.oceanexpert.org/expert/44059 -https://www.oceanexpert.org/expert/24568 -https://www.oceanexpert.org/expert/13223 -https://www.oceanexpert.org/expert/47546 -https://www.oceanexpert.org/expert/5708 -https://www.oceanexpert.org/event/1471 -https://www.oceanexpert.org/expert/49014 -https://www.oceanexpert.org/expert/46825 -https://www.oceanexpert.org/expert/39135 -https://www.oceanexpert.org/expert/43364 -https://www.oceanexpert.org/expert/22283 -https://www.oceanexpert.org/event/1396 -https://www.oceanexpert.org/expert/20055 -https://www.oceanexpert.org/event/544 -https://www.oceanexpert.org/expert/7375 -https://www.oceanexpert.org/institution/6836 -https://www.oceanexpert.org/institution/18851 -https://www.oceanexpert.org/expert/44978 -https://www.oceanexpert.org/expert/21194 -https://www.oceanexpert.org/expert/27393 -https://www.oceanexpert.org/expert/36593 -https://www.oceanexpert.org/institution/18666 -https://www.oceanexpert.org/expert/36493 -https://www.oceanexpert.org/expert/46944 -https://www.oceanexpert.org/expert/44958 -https://www.oceanexpert.org/event/624 -https://www.oceanexpert.org/institution/19478 -https://www.oceanexpert.org/expert/16716 -https://www.oceanexpert.org/expert/26067 -https://www.oceanexpert.org/institution/21649 -https://www.oceanexpert.org/expert/26524 -https://www.oceanexpert.org/expert/18743 -https://www.oceanexpert.org/expert/33389 -https://www.oceanexpert.org/expert/11924 -https://www.oceanexpert.org/expert/45956 -https://www.oceanexpert.org/event/816 -https://www.oceanexpert.org/institution/19244 -https://www.oceanexpert.org/expert/43647 -https://www.oceanexpert.org/expert/37895 -https://www.oceanexpert.org/event/2143 -https://www.oceanexpert.org/expert/36183 -https://www.oceanexpert.org/expert/48534 -https://www.oceanexpert.org/expert/44475 -https://www.oceanexpert.org/institution/21824 -https://www.oceanexpert.org/expert/23746 -https://www.oceanexpert.org/expert/29623 -https://www.oceanexpert.org/expert/27226 -https://www.oceanexpert.org/institution/13773 -https://www.oceanexpert.org/institution/20290 -https://www.oceanexpert.org/institution/5805 -https://www.oceanexpert.org/expert/25000 -https://www.oceanexpert.org/expert/36846 -https://www.oceanexpert.org/institution/9330 -https://www.oceanexpert.org/institution/14306 -https://www.oceanexpert.org/expert/21899 -https://www.oceanexpert.org/expert/44810 -https://www.oceanexpert.org/expert/22940 -https://www.oceanexpert.org/expert/25950 -https://www.oceanexpert.org/expert/43624 -https://www.oceanexpert.org/expert/21832 -https://www.oceanexpert.org/expert/24451 -https://www.oceanexpert.org/expert/45923 -https://www.oceanexpert.org/expert/36977 -https://www.oceanexpert.org/expert/45713 -https://www.oceanexpert.org/expert/24414 -https://www.oceanexpert.org/institution/9774 -https://www.oceanexpert.org/expert/34381 -https://www.oceanexpert.org/expert/23818 -https://www.oceanexpert.org/expert/36746 -https://www.oceanexpert.org/event/3132 -https://www.oceanexpert.org/expert/44822 -https://www.oceanexpert.org/expert/48625 -https://www.oceanexpert.org/expert/48291 -https://www.oceanexpert.org/expert/32276 -https://www.oceanexpert.org/expert/26991 -https://www.oceanexpert.org/expert/34906 -https://www.oceanexpert.org/expert/13141 -https://www.oceanexpert.org/expert/35272 -https://www.oceanexpert.org/expert/45964 -https://www.oceanexpert.org/expert/25319 -https://www.oceanexpert.org/institution/8809 -https://www.oceanexpert.org/institution/12314 -https://www.oceanexpert.org/expert/21057 -https://www.oceanexpert.org/expert/19633 -https://www.oceanexpert.org/expert/46149 -https://www.oceanexpert.org/event/538 -https://www.oceanexpert.org/expert/18251 -https://www.oceanexpert.org/expert/21033 -https://www.oceanexpert.org/institution/19486 -https://www.oceanexpert.org/expert/26246 -https://www.oceanexpert.org/expert/37165 -https://www.oceanexpert.org/expert/14829 -https://www.oceanexpert.org/expert/22371 -https://www.oceanexpert.org/expert/37512 -https://www.oceanexpert.org/institution/21748 -https://www.oceanexpert.org/expert/23473 -https://www.oceanexpert.org/expert/44465 -https://www.oceanexpert.org/expert/46604 -https://www.oceanexpert.org/expert/25982 -https://www.oceanexpert.org/expert/19496 -https://www.oceanexpert.org/expert/44110 -https://www.oceanexpert.org/institution/18599 -https://www.oceanexpert.org/institution/19778 -https://www.oceanexpert.org/institution/11419 -https://www.oceanexpert.org/expert/31182 -https://www.oceanexpert.org/institution/12558 -https://www.oceanexpert.org/expert/22485 -https://www.oceanexpert.org/expert/45074 -https://www.oceanexpert.org/expert/4095 -https://www.oceanexpert.org/expert/47412 -https://www.oceanexpert.org/expert/37476 -https://www.oceanexpert.org/expert/6779 -https://www.oceanexpert.org/expert/17212 -https://www.oceanexpert.org/institution/20941 -https://www.oceanexpert.org/institution/20399 -https://www.oceanexpert.org/event/718 -https://www.oceanexpert.org/expert/21772 -https://www.oceanexpert.org/institution/14005 -https://www.oceanexpert.org/expert/13110 -https://www.oceanexpert.org/expert/36707 -https://www.oceanexpert.org/institution/10717 -https://www.oceanexpert.org/expert/43871 -https://www.oceanexpert.org/expert/39097 -https://www.oceanexpert.org/institution/20230 -https://www.oceanexpert.org/expert/25942 -https://www.oceanexpert.org/institution/13276 -https://www.oceanexpert.org/expert/22497 -https://www.oceanexpert.org/expert/21799 -https://www.oceanexpert.org/expert/9521 -https://www.oceanexpert.org/institution/20670 -https://www.oceanexpert.org/expert/15742 -https://www.oceanexpert.org/institution/20382 -https://www.oceanexpert.org/expert/43682 -https://www.oceanexpert.org/expert/22687 -https://www.oceanexpert.org/expert/14514 -https://www.oceanexpert.org/expert/19459 -https://www.oceanexpert.org/expert/45038 -https://www.oceanexpert.org/expert/35841 -https://www.oceanexpert.org/expert/23657 -https://www.oceanexpert.org/expert/12385 -https://www.oceanexpert.org/expert/17042 -https://www.oceanexpert.org/expert/48285 -https://www.oceanexpert.org/institution/18872 -https://www.oceanexpert.org/event/1470 -https://www.oceanexpert.org/institution/6954 -https://www.oceanexpert.org/expert/20131 -https://www.oceanexpert.org/expert/47199 -https://www.oceanexpert.org/expert/46255 -https://www.oceanexpert.org/expert/25976 -https://www.oceanexpert.org/institution/15259 -https://www.oceanexpert.org/institution/20381 -https://www.oceanexpert.org/expert/36112 -https://www.oceanexpert.org/expert/45184 -https://www.oceanexpert.org/institution/18674 -https://www.oceanexpert.org/expert/33391 -https://www.oceanexpert.org/expert/25076 -https://www.oceanexpert.org/expert/12035 -https://www.oceanexpert.org/expert/8226 -https://www.oceanexpert.org/expert/25585 -https://www.oceanexpert.org/expert/19416 -https://www.oceanexpert.org/expert/24673 -https://www.oceanexpert.org/expert/13119 -https://www.oceanexpert.org/institution/19875 -https://www.oceanexpert.org/institution/21228 -https://www.oceanexpert.org/expert/23499 -https://www.oceanexpert.org/institution/19024 -https://www.oceanexpert.org/expert/48796 -https://www.oceanexpert.org/expert/6218 -https://www.oceanexpert.org/institution/18942 -https://www.oceanexpert.org/institution/11146 -https://www.oceanexpert.org/expert/19665 -https://www.oceanexpert.org/institution/10514 -https://www.oceanexpert.org/institution/21525 -https://www.oceanexpert.org/event/3022 -https://www.oceanexpert.org/institution/20434 -https://www.oceanexpert.org/expert/46976 -https://www.oceanexpert.org/expert/35366 -https://www.oceanexpert.org/event/48 -https://www.oceanexpert.org/expert/30978 -https://www.oceanexpert.org/institution/18446 -https://www.oceanexpert.org/expert/39314 -https://www.oceanexpert.org/event/651 -https://www.oceanexpert.org/expert/19422 -https://www.oceanexpert.org/expert/34726 -https://www.oceanexpert.org/expert/18276 -https://www.oceanexpert.org/expert/18081 -https://www.oceanexpert.org/event/746 -https://www.oceanexpert.org/expert/47207 -https://www.oceanexpert.org/expert/20010 -https://www.oceanexpert.org/expert/14901 -https://www.oceanexpert.org/institution/5277 -https://www.oceanexpert.org/expert/20689 -https://www.oceanexpert.org/institution/13075 -https://www.oceanexpert.org/expert/32202 -https://www.oceanexpert.org/institution/18934 -https://www.oceanexpert.org/expert/45372 -https://www.oceanexpert.org/expert/27253 -https://www.oceanexpert.org/institution/15955 -https://www.oceanexpert.org/institution/20035 -https://www.oceanexpert.org/expert/24562 -https://www.oceanexpert.org/expert/48932 -https://www.oceanexpert.org/expert/34026 -https://www.oceanexpert.org/expert/44100 -https://www.oceanexpert.org/institution/14650 -https://www.oceanexpert.org/event/362 -https://www.oceanexpert.org/expert/32313 -https://www.oceanexpert.org/institution/21659 -https://www.oceanexpert.org/institution/15604 -https://www.oceanexpert.org/expert/48358 -https://www.oceanexpert.org/event/1925 -https://www.oceanexpert.org/expert/35110 -https://www.oceanexpert.org/institution/18334 -https://www.oceanexpert.org/expert/43677 -https://www.oceanexpert.org/expert/34395 -https://www.oceanexpert.org/expert/25172 -https://www.oceanexpert.org/expert/35059 -https://www.oceanexpert.org/expert/22948 -https://www.oceanexpert.org/expert/22735 -https://www.oceanexpert.org/event/2640 -https://www.oceanexpert.org/expert/14052 -https://www.oceanexpert.org/institution/14916 -https://www.oceanexpert.org/institution/19987 -https://www.oceanexpert.org/institution/22161 -https://www.oceanexpert.org/event/2439 -https://www.oceanexpert.org/expert/37964 -https://www.oceanexpert.org/institution/18746 -https://www.oceanexpert.org/expert/47263 -https://www.oceanexpert.org/expert/16361 -https://www.oceanexpert.org/expert/20012 -https://www.oceanexpert.org/expert/11020 -https://www.oceanexpert.org/expert/7787 -https://www.oceanexpert.org/institution/20763 -https://www.oceanexpert.org/expert/29566 -https://www.oceanexpert.org/event/2147 -https://www.oceanexpert.org/expert/31628 -https://www.oceanexpert.org/institution/16154 -https://www.oceanexpert.org/expert/26319 -https://www.oceanexpert.org/expert/23744 -https://www.oceanexpert.org/expert/17653 -https://www.oceanexpert.org/expert/19813 -https://www.oceanexpert.org/expert/22203 -https://www.oceanexpert.org/institution/15061 -https://www.oceanexpert.org/institution/22042 -https://www.oceanexpert.org/event/1480 -https://www.oceanexpert.org/event/41 -https://www.oceanexpert.org/expert/36901 -https://www.oceanexpert.org/institution/5097 -https://www.oceanexpert.org/expert/39721 -https://www.oceanexpert.org/institution/20484 -https://www.oceanexpert.org/expert/6595 -https://www.oceanexpert.org/expert/21445 -https://www.oceanexpert.org/expert/30683 -https://www.oceanexpert.org/institution/21703 -https://www.oceanexpert.org/institution/15121 -https://www.oceanexpert.org/expert/45337 -https://www.oceanexpert.org/institution/17502 -https://www.oceanexpert.org/expert/44624 -https://www.oceanexpert.org/event/3294 -https://www.oceanexpert.org/expert/42657 -https://www.oceanexpert.org/institution/18802 -https://www.oceanexpert.org/expert/43013 -https://www.oceanexpert.org/institution/21186 -https://www.oceanexpert.org/expert/22874 -https://www.oceanexpert.org/institution/11839 -https://www.oceanexpert.org/expert/16064 -https://www.oceanexpert.org/institution/20213 -https://www.oceanexpert.org/institution/16026 -https://www.oceanexpert.org/event/1332 -https://www.oceanexpert.org/institution/12494 -https://www.oceanexpert.org/expert/47962 -https://www.oceanexpert.org/institution/18856 -https://www.oceanexpert.org/expert/19720 -https://www.oceanexpert.org/expert/34474 -https://www.oceanexpert.org/institution/18550 -https://www.oceanexpert.org/expert/29137 -https://www.oceanexpert.org/expert/35449 -https://www.oceanexpert.org/expert/14330 -https://www.oceanexpert.org/institution/19848 -https://www.oceanexpert.org/expert/15754 -https://www.oceanexpert.org/expert/13734 -https://www.oceanexpert.org/expert/21971 -https://www.oceanexpert.org/institution/12624 -https://www.oceanexpert.org/institution/21875 -https://www.oceanexpert.org/expert/25278 -https://www.oceanexpert.org/expert/19836 -https://www.oceanexpert.org/expert/48310 -https://www.oceanexpert.org/expert/17226 -https://www.oceanexpert.org/expert/11379 -https://www.oceanexpert.org/event/54 -https://www.oceanexpert.org/institution/20820 -https://www.oceanexpert.org/institution/17109 -https://www.oceanexpert.org/event/1925 -https://www.oceanexpert.org/expert/27636 -https://www.oceanexpert.org/institution/21305 -https://www.oceanexpert.org/institution/19735 -https://www.oceanexpert.org/expert/26167 -https://www.oceanexpert.org/expert/37009 -https://www.oceanexpert.org/expert/43345 -https://www.oceanexpert.org/expert/11298 -https://www.oceanexpert.org/institution/12370 -https://www.oceanexpert.org/expert/23781 -https://www.oceanexpert.org/expert/19043 -https://www.oceanexpert.org/expert/44378 -https://www.oceanexpert.org/expert/39444 -https://www.oceanexpert.org/expert/25747 -https://www.oceanexpert.org/expert/32185 -https://www.oceanexpert.org/institution/18240 -https://www.oceanexpert.org/expert/27551 -https://www.oceanexpert.org/institution/12429 -https://www.oceanexpert.org/institution/20651 -https://www.oceanexpert.org/expert/48883 -https://www.oceanexpert.org/expert/12785 -https://www.oceanexpert.org/expert/37356 -https://www.oceanexpert.org/institution/12624 -https://www.oceanexpert.org/institution/18600 -https://www.oceanexpert.org/institution/8761 -https://www.oceanexpert.org/institution/19830 -https://www.oceanexpert.org/expert/13926 -https://www.oceanexpert.org/event/53 -https://www.oceanexpert.org/expert/32216 -https://www.oceanexpert.org/expert/22927 -https://www.oceanexpert.org/expert/47249 -https://www.oceanexpert.org/institution/13834 -https://www.oceanexpert.org/institution/20754 -https://www.oceanexpert.org/expert/46672 -https://www.oceanexpert.org/expert/48631 -https://www.oceanexpert.org/expert/18744 -https://www.oceanexpert.org/event/2230 -https://www.oceanexpert.org/expert/23776 -https://www.oceanexpert.org/expert/15570 -https://www.oceanexpert.org/expert/38873 -https://www.oceanexpert.org/expert/36289 -https://www.oceanexpert.org/institution/13425 -https://www.oceanexpert.org/expert/42588 -https://www.oceanexpert.org/expert/37916 -https://www.oceanexpert.org/institution/17940 -https://www.oceanexpert.org/expert/27594 -https://www.oceanexpert.org/expert/22677 -https://www.oceanexpert.org/institution/21161 -https://www.oceanexpert.org/expert/25427 -https://www.oceanexpert.org/institution/17808 -https://www.oceanexpert.org/expert/33226 -https://www.oceanexpert.org/expert/24253 -https://www.oceanexpert.org/expert/23257 -https://www.oceanexpert.org/event/488 -https://www.oceanexpert.org/expert/27186 -https://www.oceanexpert.org/institution/19057 -https://www.oceanexpert.org/institution/11329 -https://www.oceanexpert.org/expert/28365 -https://www.oceanexpert.org/expert/37373 -https://www.oceanexpert.org/institution/20798 -https://www.oceanexpert.org/institution/15893 -https://www.oceanexpert.org/institution/14382 -https://www.oceanexpert.org/event/2410 -https://www.oceanexpert.org/expert/42424 -https://www.oceanexpert.org/institution/19323 -https://www.oceanexpert.org/expert/37837 -https://www.oceanexpert.org/institution/7964 -https://www.oceanexpert.org/event/2532 -https://www.oceanexpert.org/expert/30885 -https://www.oceanexpert.org/expert/48494 -https://www.oceanexpert.org/expert/24139 -https://www.oceanexpert.org/expert/27224 -https://www.oceanexpert.org/expert/26781 -https://www.oceanexpert.org/event/42 -https://www.oceanexpert.org/expert/25725 -https://www.oceanexpert.org/expert/4869 -https://www.oceanexpert.org/expert/36561 -https://www.oceanexpert.org/institution/21350 -https://www.oceanexpert.org/expert/47846 -https://www.oceanexpert.org/expert/43064 -https://www.oceanexpert.org/expert/35041 -https://www.oceanexpert.org/expert/12791 -https://www.oceanexpert.org/expert/22399 -https://www.oceanexpert.org/institution/19365 -https://www.oceanexpert.org/expert/6007 -https://www.oceanexpert.org/institution/18542 -https://www.oceanexpert.org/expert/48786 -https://www.oceanexpert.org/expert/34419 -https://www.oceanexpert.org/expert/26239 -https://www.oceanexpert.org/event/1127 -https://www.oceanexpert.org/expert/38047 -https://www.oceanexpert.org/expert/36955 -https://www.oceanexpert.org/institution/14724 -https://www.oceanexpert.org/expert/28979 -https://www.oceanexpert.org/expert/17091 -https://www.oceanexpert.org/expert/19111 -https://www.oceanexpert.org/institution/13830 -https://www.oceanexpert.org/event/2910 -https://www.oceanexpert.org/expert/27370 -https://www.oceanexpert.org/expert/7212 -https://www.oceanexpert.org/institution/8463 -https://www.oceanexpert.org/event/2562 -https://www.oceanexpert.org/institution/11491 -https://www.oceanexpert.org/expert/44772 -https://www.oceanexpert.org/expert/29008 -https://www.oceanexpert.org/expert/45100 -https://www.oceanexpert.org/expert/31735 -https://www.oceanexpert.org/expert/32279 -https://www.oceanexpert.org/expert/48169 -https://www.oceanexpert.org/expert/46046 -https://www.oceanexpert.org/expert/35342 -https://www.oceanexpert.org/institution/21133 -https://www.oceanexpert.org/expert/8761 -https://www.oceanexpert.org/expert/37224 -https://www.oceanexpert.org/event/1231 -https://www.oceanexpert.org/institution/8214 -https://www.oceanexpert.org/expert/34552 -https://www.oceanexpert.org/expert/38261 -https://www.oceanexpert.org/expert/16562 -https://www.oceanexpert.org/expert/8041 -https://www.oceanexpert.org/expert/19646 -https://www.oceanexpert.org/institution/8795 -https://www.oceanexpert.org/expert/37618 -https://www.oceanexpert.org/expert/26888 -https://www.oceanexpert.org/event/567 -https://www.oceanexpert.org/expert/21144 -https://www.oceanexpert.org/expert/42479 -https://www.oceanexpert.org/expert/17104 -https://www.oceanexpert.org/event/2444 -https://www.oceanexpert.org/expert/22765 -https://www.oceanexpert.org/expert/29793 -https://www.oceanexpert.org/expert/40050 -https://www.oceanexpert.org/institution/11580 -https://www.oceanexpert.org/expert/17492 -https://www.oceanexpert.org/expert/23790 -https://www.oceanexpert.org/expert/26624 -https://www.oceanexpert.org/expert/30580 -https://www.oceanexpert.org/expert/985 -https://www.oceanexpert.org/expert/43986 -https://www.oceanexpert.org/event/3110 -https://www.oceanexpert.org/institution/21232 -https://www.oceanexpert.org/event/672 -https://www.oceanexpert.org/expert/20714 -https://www.oceanexpert.org/expert/7180 -https://www.oceanexpert.org/expert/43665 -https://www.oceanexpert.org/expert/22895 -https://www.oceanexpert.org/expert/35594 -https://www.oceanexpert.org/expert/14304 -https://www.oceanexpert.org/expert/47735 -https://www.oceanexpert.org/expert/46323 -https://www.oceanexpert.org/expert/46859 -https://www.oceanexpert.org/expert/19869 -https://www.oceanexpert.org/expert/30110 -https://www.oceanexpert.org/expert/11117 -https://www.oceanexpert.org/expert/6837 -https://www.oceanexpert.org/expert/27794 -https://www.oceanexpert.org/expert/46028 -https://www.oceanexpert.org/institution/14249 -https://www.oceanexpert.org/expert/35534 -https://www.oceanexpert.org/expert/42773 -https://www.oceanexpert.org/expert/27377 -https://www.oceanexpert.org/expert/21262 -https://www.oceanexpert.org/expert/43136 -https://www.oceanexpert.org/institution/20100 -https://www.oceanexpert.org/institution/18922 -https://www.oceanexpert.org/expert/27495 -https://www.oceanexpert.org/institution/18231 -https://www.oceanexpert.org/institution/21309 -https://www.oceanexpert.org/expert/27479 -https://www.oceanexpert.org/institution/18420 -https://www.oceanexpert.org/event/3003 -https://www.oceanexpert.org/expert/31592 -https://www.oceanexpert.org/expert/36638 -https://www.oceanexpert.org/expert/44782 -https://www.oceanexpert.org/expert/18389 -https://www.oceanexpert.org/expert/35489 -https://www.oceanexpert.org/institution/20809 -https://www.oceanexpert.org/expert/30324 -https://www.oceanexpert.org/event/394 -https://www.oceanexpert.org/expert/37602 -https://www.oceanexpert.org/institution/20830 -https://www.oceanexpert.org/expert/8653 -https://www.oceanexpert.org/institution/19598 -https://www.oceanexpert.org/expert/44388 -https://www.oceanexpert.org/institution/18268 -https://www.oceanexpert.org/expert/39824 -https://www.oceanexpert.org/expert/3155 -https://www.oceanexpert.org/expert/25036 -https://www.oceanexpert.org/expert/47114 -https://www.oceanexpert.org/institution/20441 -https://www.oceanexpert.org/expert/19768 -https://www.oceanexpert.org/expert/37136 -https://www.oceanexpert.org/institution/12378 -https://www.oceanexpert.org/expert/2002 -https://www.oceanexpert.org/expert/23853 -https://www.oceanexpert.org/expert/38325 -https://www.oceanexpert.org/expert/22405 -https://www.oceanexpert.org/expert/25871 -https://www.oceanexpert.org/expert/31126 -https://www.oceanexpert.org/expert/25864 -https://www.oceanexpert.org/institution/20524 -https://www.oceanexpert.org/institution/22118 -https://www.oceanexpert.org/institution/18199 -https://www.oceanexpert.org/expert/30417 -https://www.oceanexpert.org/expert/30276 -https://www.oceanexpert.org/event/716 -https://www.oceanexpert.org/expert/17090 -https://www.oceanexpert.org/expert/19342 -https://www.oceanexpert.org/expert/35586 -https://www.oceanexpert.org/expert/34893 -https://www.oceanexpert.org/expert/21689 -https://www.oceanexpert.org/institution/21351 -https://www.oceanexpert.org/expert/43865 -https://www.oceanexpert.org/expert/26080 -https://www.oceanexpert.org/institution/9647 -https://www.oceanexpert.org/expert/35482 -https://www.oceanexpert.org/institution/10189 -https://www.oceanexpert.org/institution/19931 -https://www.oceanexpert.org/expert/46820 -https://www.oceanexpert.org/institution/21337 -https://www.oceanexpert.org/institution/6907 -https://www.oceanexpert.org/expert/18794 -https://www.oceanexpert.org/event/2491 -https://www.oceanexpert.org/institution/20863 -https://www.oceanexpert.org/expert/43160 -https://www.oceanexpert.org/expert/19508 -https://www.oceanexpert.org/institution/21223 -https://www.oceanexpert.org/expert/37686 -https://www.oceanexpert.org/event/1467 -https://www.oceanexpert.org/event/1108 -https://www.oceanexpert.org/institution/21719 -https://www.oceanexpert.org/expert/44899 -https://www.oceanexpert.org/expert/44720 -https://www.oceanexpert.org/expert/19007 -https://www.oceanexpert.org/expert/30293 -https://www.oceanexpert.org/expert/11742 -https://www.oceanexpert.org/expert/39646 -https://www.oceanexpert.org/expert/48159 -https://www.oceanexpert.org/expert/40035 -https://www.oceanexpert.org/expert/45965 -https://www.oceanexpert.org/expert/32923 -https://www.oceanexpert.org/institution/10119 -https://www.oceanexpert.org/expert/23835 -https://www.oceanexpert.org/event/1025 -https://www.oceanexpert.org/expert/20496 -https://www.oceanexpert.org/institution/19662 -https://www.oceanexpert.org/institution/19304 -https://www.oceanexpert.org/expert/34384 -https://www.oceanexpert.org/expert/29129 -https://www.oceanexpert.org/expert/14404 -https://www.oceanexpert.org/institution/7429 -https://www.oceanexpert.org/expert/28959 -https://www.oceanexpert.org/expert/29127 -https://www.oceanexpert.org/expert/36509 -https://www.oceanexpert.org/expert/28872 -https://www.oceanexpert.org/institution/21090 -https://www.oceanexpert.org/expert/21908 -https://www.oceanexpert.org/expert/48140 -https://www.oceanexpert.org/expert/1412 -https://www.oceanexpert.org/expert/19942 -https://www.oceanexpert.org/expert/27250 -https://www.oceanexpert.org/expert/888 -https://www.oceanexpert.org/expert/17562 -https://www.oceanexpert.org/institution/18653 -https://www.oceanexpert.org/institution/14040 -https://www.oceanexpert.org/institution/16139 -https://www.oceanexpert.org/institution/9445 -https://www.oceanexpert.org/expert/11790 -https://www.oceanexpert.org/expert/38229 -https://www.oceanexpert.org/event/862 -https://www.oceanexpert.org/institution/21224 -https://www.oceanexpert.org/expert/39352 -https://www.oceanexpert.org/expert/43618 -https://www.oceanexpert.org/expert/46484 -https://www.oceanexpert.org/expert/17837 -https://www.oceanexpert.org/expert/48083 -https://www.oceanexpert.org/expert/34062 -https://www.oceanexpert.org/institution/20587 -https://www.oceanexpert.org/expert/19983 -https://www.oceanexpert.org/institution/5413 -https://www.oceanexpert.org/expert/43452 -https://www.oceanexpert.org/institution/19936 -https://www.oceanexpert.org/expert/23787 -https://www.oceanexpert.org/institution/15929 -https://www.oceanexpert.org/expert/25567 -https://www.oceanexpert.org/expert/45652 -https://www.oceanexpert.org/expert/44540 -https://www.oceanexpert.org/expert/38561 -https://www.oceanexpert.org/event/1888 -https://www.oceanexpert.org/expert/25277 -https://www.oceanexpert.org/expert/38525 -https://www.oceanexpert.org/expert/22715 -https://www.oceanexpert.org/institution/7692 -https://www.oceanexpert.org/expert/27312 -https://www.oceanexpert.org/expert/24783 -https://www.oceanexpert.org/institution/7964 -https://www.oceanexpert.org/expert/29133 -https://www.oceanexpert.org/institution/5583 -https://www.oceanexpert.org/expert/33205 -https://www.oceanexpert.org/institution/14630 -https://www.oceanexpert.org/institution/21536 -https://www.oceanexpert.org/expert/23680 -https://www.oceanexpert.org/expert/20371 -https://www.oceanexpert.org/expert/42872 -https://www.oceanexpert.org/institution/21865 -https://www.oceanexpert.org/institution/21665 -https://www.oceanexpert.org/institution/10818 -https://www.oceanexpert.org/institution/16032 -https://www.oceanexpert.org/expert/38248 -https://www.oceanexpert.org/expert/33078 -https://www.oceanexpert.org/institution/9989 -https://www.oceanexpert.org/expert/20856 -https://www.oceanexpert.org/expert/26196 -https://www.oceanexpert.org/expert/28270 -https://www.oceanexpert.org/expert/27828 -https://www.oceanexpert.org/institution/15953 -https://www.oceanexpert.org/expert/40629 -https://www.oceanexpert.org/expert/23826 -https://www.oceanexpert.org/expert/6940 -https://www.oceanexpert.org/event/1599 -https://www.oceanexpert.org/expert/39977 -https://www.oceanexpert.org/expert/37059 -https://www.oceanexpert.org/expert/16393 -https://www.oceanexpert.org/expert/43738 -https://www.oceanexpert.org/event/128 -https://www.oceanexpert.org/event/1041 -https://www.oceanexpert.org/expert/14243 -https://www.oceanexpert.org/institution/19482 -https://www.oceanexpert.org/expert/24607 -https://www.oceanexpert.org/expert/48017 -https://www.oceanexpert.org/expert/25411 -https://www.oceanexpert.org/expert/3450 -https://www.oceanexpert.org/institution/18644 -https://www.oceanexpert.org/event/2 -https://www.oceanexpert.org/expert/32164 -https://www.oceanexpert.org/expert/15030 -https://www.oceanexpert.org/expert/23941 -https://www.oceanexpert.org/event/149 -https://www.oceanexpert.org/event/287 -https://www.oceanexpert.org/expert/43726 -https://www.oceanexpert.org/event/816 -https://www.oceanexpert.org/expert/34504 -https://www.oceanexpert.org/expert/291 -https://www.oceanexpert.org/expert/30856 -https://www.oceanexpert.org/expert/19022 -https://www.oceanexpert.org/institution/6102 -https://www.oceanexpert.org/expert/28294 -https://www.oceanexpert.org/expert/44343 -https://www.oceanexpert.org/expert/34014 -https://www.oceanexpert.org/institution/21234 -https://www.oceanexpert.org/expert/38402 -https://www.oceanexpert.org/expert/46270 -https://www.oceanexpert.org/expert/46369 -https://www.oceanexpert.org/expert/44587 -https://www.oceanexpert.org/expert/37900 -https://www.oceanexpert.org/expert/25477 -https://www.oceanexpert.org/institution/18794 -https://www.oceanexpert.org/event/268 -https://www.oceanexpert.org/expert/45155 -https://www.oceanexpert.org/expert/48697 -https://www.oceanexpert.org/expert/38630 -https://www.oceanexpert.org/expert/46662 -https://www.oceanexpert.org/institution/10569 -https://www.oceanexpert.org/expert/20064 -https://www.oceanexpert.org/expert/29779 -https://www.oceanexpert.org/expert/28363 -https://www.oceanexpert.org/expert/18905 -https://www.oceanexpert.org/expert/45769 -https://www.oceanexpert.org/expert/27969 -https://www.oceanexpert.org/event/643 -https://www.oceanexpert.org/institution/15273 -https://www.oceanexpert.org/expert/43128 -https://www.oceanexpert.org/expert/37265 -https://www.oceanexpert.org/expert/10224 -https://www.oceanexpert.org/expert/2249 -https://www.oceanexpert.org/expert/44048 -https://www.oceanexpert.org/expert/29311 -https://www.oceanexpert.org/institution/19560 -https://www.oceanexpert.org/expert/22407 -https://www.oceanexpert.org/institution/21824 -https://www.oceanexpert.org/expert/20129 -https://www.oceanexpert.org/expert/37880 -https://www.oceanexpert.org/expert/28325 -https://www.oceanexpert.org/expert/32246 -https://www.oceanexpert.org/expert/33356 -https://www.oceanexpert.org/expert/33857 -https://www.oceanexpert.org/expert/19047 -https://www.oceanexpert.org/expert/2827 -https://www.oceanexpert.org/expert/12962 -https://www.oceanexpert.org/expert/43547 -https://www.oceanexpert.org/institution/11294 -https://www.oceanexpert.org/institution/19625 -https://www.oceanexpert.org/expert/43435 -https://www.oceanexpert.org/expert/44378 -https://www.oceanexpert.org/expert/34055 -https://www.oceanexpert.org/institution/15691 -https://www.oceanexpert.org/expert/44687 -https://www.oceanexpert.org/expert/30560 -https://www.oceanexpert.org/expert/27610 -https://www.oceanexpert.org/expert/44973 -https://www.oceanexpert.org/expert/25966 -https://www.oceanexpert.org/expert/37071 -https://www.oceanexpert.org/institution/9757 -https://www.oceanexpert.org/event/2244 -https://www.oceanexpert.org/event/2924 -https://www.oceanexpert.org/expert/42581 -https://www.oceanexpert.org/event/2015 -https://www.oceanexpert.org/expert/48200 -https://www.oceanexpert.org/expert/23966 -https://www.oceanexpert.org/expert/22815 -https://www.oceanexpert.org/institution/13905 -https://www.oceanexpert.org/institution/20169 -https://www.oceanexpert.org/expert/26245 -https://www.oceanexpert.org/expert/21291 -https://www.oceanexpert.org/expert/27499 -https://www.oceanexpert.org/event/1342 -https://www.oceanexpert.org/expert/27182 -https://www.oceanexpert.org/expert/43769 -https://www.oceanexpert.org/institution/21639 -https://www.oceanexpert.org/expert/29518 -https://www.oceanexpert.org/expert/44207 -https://www.oceanexpert.org/expert/25758 -https://www.oceanexpert.org/institution/6196 -https://www.oceanexpert.org/expert/27488 -https://www.oceanexpert.org/expert/16815 -https://www.oceanexpert.org/institution/20050 -https://www.oceanexpert.org/expert/11583 -https://www.oceanexpert.org/expert/24242 -https://www.oceanexpert.org/expert/24945 -https://www.oceanexpert.org/institution/5577 -https://www.oceanexpert.org/expert/24197 -https://www.oceanexpert.org/event/2627 -https://www.oceanexpert.org/expert/3497 -https://www.oceanexpert.org/expert/13382 -https://www.oceanexpert.org/expert/43819 -https://www.oceanexpert.org/expert/15853 -https://www.oceanexpert.org/expert/48982 -https://www.oceanexpert.org/expert/21733 -https://www.oceanexpert.org/institution/20961 -https://www.oceanexpert.org/event/2827 -https://www.oceanexpert.org/expert/16560 -https://www.oceanexpert.org/institution/17486 -https://www.oceanexpert.org/expert/44357 -https://www.oceanexpert.org/expert/30063 -https://www.oceanexpert.org/expert/43475 -https://www.oceanexpert.org/institution/15674 -https://www.oceanexpert.org/expert/23414 -https://www.oceanexpert.org/institution/11890 -https://www.oceanexpert.org/expert/47591 -https://www.oceanexpert.org/expert/32577 -https://www.oceanexpert.org/expert/20250 -https://www.oceanexpert.org/expert/22837 -https://www.oceanexpert.org/institution/22018 -https://www.oceanexpert.org/expert/38213 -https://www.oceanexpert.org/expert/26841 -https://www.oceanexpert.org/institution/11585 -https://www.oceanexpert.org/institution/21434 -https://www.oceanexpert.org/institution/11513 -https://www.oceanexpert.org/expert/9306 -https://www.oceanexpert.org/expert/26870 -https://www.oceanexpert.org/expert/21902 -https://www.oceanexpert.org/expert/44353 -https://www.oceanexpert.org/event/2290 -https://www.oceanexpert.org/expert/45624 -https://www.oceanexpert.org/expert/7104 -https://www.oceanexpert.org/institution/18707 -https://www.oceanexpert.org/expert/22068 -https://www.oceanexpert.org/expert/32053 -https://www.oceanexpert.org/expert/33283 -https://www.oceanexpert.org/expert/46944 -https://www.oceanexpert.org/institution/17300 -https://www.oceanexpert.org/expert/7368 -https://www.oceanexpert.org/expert/16937 -https://www.oceanexpert.org/expert/16713 -https://www.oceanexpert.org/expert/713 -https://www.oceanexpert.org/institution/19014 -https://www.oceanexpert.org/institution/21231 -https://www.oceanexpert.org/expert/7195 -https://www.oceanexpert.org/expert/11325 -https://www.oceanexpert.org/expert/35482 -https://www.oceanexpert.org/expert/26365 -https://www.oceanexpert.org/institution/18532 -https://www.oceanexpert.org/expert/46603 -https://www.oceanexpert.org/expert/46456 -https://www.oceanexpert.org/expert/46090 -https://www.oceanexpert.org/expert/27503 -https://www.oceanexpert.org/expert/21851 -https://www.oceanexpert.org/event/2460 -https://www.oceanexpert.org/event/2567 -https://www.oceanexpert.org/institution/10490 -https://www.oceanexpert.org/institution/19747 -https://www.oceanexpert.org/expert/24460 -https://www.oceanexpert.org/institution/7213 -https://www.oceanexpert.org/expert/38021 -https://www.oceanexpert.org/event/78 -https://www.oceanexpert.org/expert/20205 -https://www.oceanexpert.org/institution/21854 -https://www.oceanexpert.org/expert/46700 -https://www.oceanexpert.org/institution/12259 -https://www.oceanexpert.org/expert/29058 -https://www.oceanexpert.org/expert/28146 -https://www.oceanexpert.org/institution/21122 -https://www.oceanexpert.org/expert/29175 -https://www.oceanexpert.org/expert/14405 -https://www.oceanexpert.org/institution/12749 -https://www.oceanexpert.org/institution/7087 -https://www.oceanexpert.org/event/1972 -https://www.oceanexpert.org/expert/46059 -https://www.oceanexpert.org/institution/18936 -https://www.oceanexpert.org/expert/24447 -https://www.oceanexpert.org/expert/40604 -https://www.oceanexpert.org/expert/25394 -https://www.oceanexpert.org/institution/18008 -https://www.oceanexpert.org/institution/10291 -https://www.oceanexpert.org/institution/5671 -https://www.oceanexpert.org/institution/18707 -https://www.oceanexpert.org/expert/20476 -https://www.oceanexpert.org/expert/42517 -https://www.oceanexpert.org/expert/42642 -https://www.oceanexpert.org/expert/38938 -https://www.oceanexpert.org/event/813 -https://www.oceanexpert.org/expert/43027 -https://www.oceanexpert.org/expert/19181 -https://www.oceanexpert.org/expert/12117 -https://www.oceanexpert.org/event/2111 -https://www.oceanexpert.org/expert/817 -https://www.oceanexpert.org/expert/35093 -https://www.oceanexpert.org/expert/21120 -https://www.oceanexpert.org/expert/18020 -https://www.oceanexpert.org/expert/4284 -https://www.oceanexpert.org/expert/28097 -https://www.oceanexpert.org/expert/36872 -https://www.oceanexpert.org/expert/2664 -https://www.oceanexpert.org/expert/18475 -https://www.oceanexpert.org/event/2193 -https://www.oceanexpert.org/expert/17824 -https://www.oceanexpert.org/institution/17220 -https://www.oceanexpert.org/expert/18806 -https://www.oceanexpert.org/expert/21739 -https://www.oceanexpert.org/expert/26495 -https://www.oceanexpert.org/event/1122 -https://www.oceanexpert.org/event/1242 -https://www.oceanexpert.org/institution/19248 -https://www.oceanexpert.org/expert/20467 -https://www.oceanexpert.org/expert/21217 -https://www.oceanexpert.org/expert/44079 -https://www.oceanexpert.org/event/1275 -https://www.oceanexpert.org/institution/17141 -https://www.oceanexpert.org/expert/21196 -https://www.oceanexpert.org/expert/15565 -https://www.oceanexpert.org/expert/32155 -https://www.oceanexpert.org/expert/38063 -https://www.oceanexpert.org/expert/18633 -https://www.oceanexpert.org/expert/20046 -https://www.oceanexpert.org/expert/37125 -https://www.oceanexpert.org/expert/25933 -https://www.oceanexpert.org/institution/15960 -https://www.oceanexpert.org/expert/27070 -https://www.oceanexpert.org/expert/31811 -https://www.oceanexpert.org/institution/14255 -https://www.oceanexpert.org/expert/22231 -https://www.oceanexpert.org/expert/29756 -https://www.oceanexpert.org/expert/31879 -https://www.oceanexpert.org/expert/21253 -https://www.oceanexpert.org/institution/10332 -https://www.oceanexpert.org/expert/45032 -https://www.oceanexpert.org/expert/26697 -https://www.oceanexpert.org/institution/12232 -https://www.oceanexpert.org/institution/12097 -https://www.oceanexpert.org/expert/34312 -https://www.oceanexpert.org/expert/21478 -https://www.oceanexpert.org/event/1994 -https://www.oceanexpert.org/expert/11907 -https://www.oceanexpert.org/expert/14479 -https://www.oceanexpert.org/expert/43890 -https://www.oceanexpert.org/institution/7171 -https://www.oceanexpert.org/expert/8329 -https://www.oceanexpert.org/expert/15954 -https://www.oceanexpert.org/event/272 -https://www.oceanexpert.org/institution/19930 -https://www.oceanexpert.org/institution/18907 -https://www.oceanexpert.org/expert/17126 -https://www.oceanexpert.org/expert/19825 -https://www.oceanexpert.org/institution/21705 -https://www.oceanexpert.org/expert/31753 -https://www.oceanexpert.org/expert/30030 -https://www.oceanexpert.org/expert/6914 -https://www.oceanexpert.org/expert/47972 -https://www.oceanexpert.org/expert/200 -https://www.oceanexpert.org/expert/35111 -https://www.oceanexpert.org/expert/38367 -https://www.oceanexpert.org/expert/31438 -https://www.oceanexpert.org/expert/18132 -https://www.oceanexpert.org/expert/28108 -https://www.oceanexpert.org/event/2934 -https://www.oceanexpert.org/expert/19428 -https://www.oceanexpert.org/event/979 -https://www.oceanexpert.org/expert/48713 -https://www.oceanexpert.org/expert/37405 -https://www.oceanexpert.org/expert/34426 -https://www.oceanexpert.org/institution/18183 -https://www.oceanexpert.org/expert/21470 -https://www.oceanexpert.org/expert/25988 -https://www.oceanexpert.org/institution/17680 -https://www.oceanexpert.org/expert/25679 -https://www.oceanexpert.org/expert/45473 -https://www.oceanexpert.org/institution/19572 -https://www.oceanexpert.org/expert/17611 -https://www.oceanexpert.org/event/2301 -https://www.oceanexpert.org/institution/17761 -https://www.oceanexpert.org/expert/19786 -https://www.oceanexpert.org/expert/47547 -https://www.oceanexpert.org/expert/47954 -https://www.oceanexpert.org/expert/36983 -https://www.oceanexpert.org/expert/16632 -https://www.oceanexpert.org/expert/20010 -https://www.oceanexpert.org/expert/19603 -https://www.oceanexpert.org/event/1395 -https://www.oceanexpert.org/expert/31340 -https://www.oceanexpert.org/institution/18178 -https://www.oceanexpert.org/expert/1831 -https://www.oceanexpert.org/institution/18173 -https://www.oceanexpert.org/expert/25580 -https://www.oceanexpert.org/expert/49031 -https://www.oceanexpert.org/expert/7761 -https://www.oceanexpert.org/expert/33804 -https://www.oceanexpert.org/expert/13663 -https://www.oceanexpert.org/expert/29589 -https://www.oceanexpert.org/expert/22201 -https://www.oceanexpert.org/expert/36901 -https://www.oceanexpert.org/expert/32695 -https://www.oceanexpert.org/expert/45407 -https://www.oceanexpert.org/expert/36456 -https://www.oceanexpert.org/expert/19725 -https://www.oceanexpert.org/expert/16429 -https://www.oceanexpert.org/institution/18370 -https://www.oceanexpert.org/expert/35304 -https://www.oceanexpert.org/expert/26744 -https://www.oceanexpert.org/expert/35923 -https://www.oceanexpert.org/expert/32640 -https://www.oceanexpert.org/expert/37192 -https://www.oceanexpert.org/expert/14393 -https://www.oceanexpert.org/expert/44834 -https://www.oceanexpert.org/expert/38456 -https://www.oceanexpert.org/expert/44403 -https://www.oceanexpert.org/institution/10738 -https://www.oceanexpert.org/institution/22112 -https://www.oceanexpert.org/expert/21672 -https://www.oceanexpert.org/event/337 -https://www.oceanexpert.org/expert/1917 -https://www.oceanexpert.org/expert/25217 -https://www.oceanexpert.org/expert/44805 -https://www.oceanexpert.org/expert/17972 -https://www.oceanexpert.org/expert/6348 -https://www.oceanexpert.org/expert/24859 -https://www.oceanexpert.org/expert/37501 -https://www.oceanexpert.org/institution/14516 -https://www.oceanexpert.org/expert/34104 -https://www.oceanexpert.org/institution/11358 -https://www.oceanexpert.org/expert/23308 -https://www.oceanexpert.org/expert/20088 -https://www.oceanexpert.org/expert/15190 -https://www.oceanexpert.org/expert/47902 -https://www.oceanexpert.org/expert/18013 -https://www.oceanexpert.org/institution/19299 -https://www.oceanexpert.org/event/444 -https://www.oceanexpert.org/event/811 -https://www.oceanexpert.org/institution/20078 -https://www.oceanexpert.org/institution/22148 -https://www.oceanexpert.org/institution/10214 -https://www.oceanexpert.org/institution/9863 -https://www.oceanexpert.org/expert/44525 -https://www.oceanexpert.org/institution/22061 -https://www.oceanexpert.org/expert/44758 -https://www.oceanexpert.org/expert/39994 -https://www.oceanexpert.org/expert/34826 -https://www.oceanexpert.org/expert/25884 -https://www.oceanexpert.org/institution/19893 -https://www.oceanexpert.org/expert/15545 -https://www.oceanexpert.org/institution/5531 -https://www.oceanexpert.org/institution/17806 -https://www.oceanexpert.org/expert/32627 -https://www.oceanexpert.org/expert/26815 -https://www.oceanexpert.org/event/220 -https://www.oceanexpert.org/expert/24300 -https://www.oceanexpert.org/institution/18768 -https://www.oceanexpert.org/expert/25975 -https://www.oceanexpert.org/expert/26021 -https://www.oceanexpert.org/expert/40321 -https://www.oceanexpert.org/expert/48307 -https://www.oceanexpert.org/expert/19364 -https://www.oceanexpert.org/institution/18924 -https://www.oceanexpert.org/expert/24646 -https://www.oceanexpert.org/expert/1142 -https://www.oceanexpert.org/expert/2924 -https://www.oceanexpert.org/institution/21143 -https://www.oceanexpert.org/expert/21404 -https://www.oceanexpert.org/expert/15619 -https://www.oceanexpert.org/expert/18497 -https://www.oceanexpert.org/expert/25138 -https://www.oceanexpert.org/expert/20950 -https://www.oceanexpert.org/institution/19187 -https://www.oceanexpert.org/event/2092 -https://www.oceanexpert.org/expert/25084 -https://www.oceanexpert.org/expert/41045 -https://www.oceanexpert.org/expert/36520 -https://www.oceanexpert.org/institution/19882 -https://www.oceanexpert.org/event/48 -https://www.oceanexpert.org/institution/22126 -https://www.oceanexpert.org/expert/31163 -https://www.oceanexpert.org/expert/31844 -https://www.oceanexpert.org/expert/30039 -https://www.oceanexpert.org/expert/23769 -https://www.oceanexpert.org/institution/5427 -https://www.oceanexpert.org/expert/22297 -https://www.oceanexpert.org/expert/43863 -https://www.oceanexpert.org/expert/22770 -https://www.oceanexpert.org/expert/43971 -https://www.oceanexpert.org/expert/4108 -https://www.oceanexpert.org/event/493 -https://www.oceanexpert.org/expert/45099 -https://www.oceanexpert.org/expert/20304 -https://www.oceanexpert.org/expert/48486 -https://www.oceanexpert.org/institution/10621 -https://www.oceanexpert.org/expert/27222 -https://www.oceanexpert.org/expert/31480 -https://www.oceanexpert.org/expert/10976 -https://www.oceanexpert.org/expert/47601 -https://www.oceanexpert.org/institution/8299 -https://www.oceanexpert.org/expert/28077 -https://www.oceanexpert.org/expert/20297 -https://www.oceanexpert.org/expert/48468 -https://www.oceanexpert.org/event/642 -https://www.oceanexpert.org/expert/45373 -https://www.oceanexpert.org/institution/12576 -https://www.oceanexpert.org/expert/27477 -https://www.oceanexpert.org/expert/43159 -https://www.oceanexpert.org/expert/48777 -https://www.oceanexpert.org/expert/35474 -https://www.oceanexpert.org/expert/28245 -https://www.oceanexpert.org/institution/21199 -https://www.oceanexpert.org/institution/18023 -https://www.oceanexpert.org/expert/45371 -https://www.oceanexpert.org/institution/16208 -https://www.oceanexpert.org/expert/43574 -https://www.oceanexpert.org/expert/18123 -https://www.oceanexpert.org/expert/43202 -https://www.oceanexpert.org/expert/22821 -https://www.oceanexpert.org/expert/27496 -https://www.oceanexpert.org/expert/37280 -https://www.oceanexpert.org/institution/14371 -https://www.oceanexpert.org/expert/44082 -https://www.oceanexpert.org/expert/17975 -https://www.oceanexpert.org/expert/22455 -https://www.oceanexpert.org/event/3102 -https://www.oceanexpert.org/expert/43457 -https://www.oceanexpert.org/institution/21005 -https://www.oceanexpert.org/institution/13233 -https://www.oceanexpert.org/institution/20349 -https://www.oceanexpert.org/institution/12930 -https://www.oceanexpert.org/expert/23960 -https://www.oceanexpert.org/expert/43269 -https://www.oceanexpert.org/expert/25223 -https://www.oceanexpert.org/expert/46593 -https://www.oceanexpert.org/expert/39258 -https://www.oceanexpert.org/institution/12990 -https://www.oceanexpert.org/event/1101 -https://www.oceanexpert.org/institution/22170 -https://www.oceanexpert.org/expert/47190 -https://www.oceanexpert.org/expert/26733 -https://www.oceanexpert.org/expert/44987 -https://www.oceanexpert.org/event/1650 -https://www.oceanexpert.org/expert/34028 -https://www.oceanexpert.org/institution/20176 -https://www.oceanexpert.org/expert/14770 -https://www.oceanexpert.org/expert/33316 -https://www.oceanexpert.org/institution/6706 -https://www.oceanexpert.org/institution/19283 -https://www.oceanexpert.org/event/410 -https://www.oceanexpert.org/expert/22384 -https://www.oceanexpert.org/institution/10939 -https://www.oceanexpert.org/expert/24531 -https://www.oceanexpert.org/event/725 -https://www.oceanexpert.org/expert/12117 -https://www.oceanexpert.org/expert/46784 -https://www.oceanexpert.org/institution/20589 -https://www.oceanexpert.org/institution/18015 -https://www.oceanexpert.org/expert/6344 -https://www.oceanexpert.org/event/124 -https://www.oceanexpert.org/expert/14317 -https://www.oceanexpert.org/expert/42771 -https://www.oceanexpert.org/institution/13220 -https://www.oceanexpert.org/event/1668 -https://www.oceanexpert.org/event/1372 -https://www.oceanexpert.org/expert/22609 -https://www.oceanexpert.org/expert/27942 -https://www.oceanexpert.org/expert/25014 -https://www.oceanexpert.org/expert/30105 -https://www.oceanexpert.org/expert/18443 -https://www.oceanexpert.org/expert/38302 -https://www.oceanexpert.org/event/2586 -https://www.oceanexpert.org/expert/19956 -https://www.oceanexpert.org/institution/21788 -https://www.oceanexpert.org/institution/20864 -https://www.oceanexpert.org/expert/23888 -https://www.oceanexpert.org/expert/27687 -https://www.oceanexpert.org/expert/36380 -https://www.oceanexpert.org/expert/25042 -https://www.oceanexpert.org/expert/49013 -https://www.oceanexpert.org/expert/47756 -https://www.oceanexpert.org/expert/44489 -https://www.oceanexpert.org/expert/24109 -https://www.oceanexpert.org/expert/48559 -https://www.oceanexpert.org/institution/18904 -https://www.oceanexpert.org/expert/1084 -https://www.oceanexpert.org/institution/7317 -https://www.oceanexpert.org/institution/12915 -https://www.oceanexpert.org/expert/21284 -https://www.oceanexpert.org/expert/39078 -https://www.oceanexpert.org/expert/32669 -https://www.oceanexpert.org/expert/24629 -https://www.oceanexpert.org/event/275 -https://www.oceanexpert.org/expert/25686 -https://www.oceanexpert.org/expert/25025 -https://www.oceanexpert.org/expert/42566 -https://www.oceanexpert.org/expert/46117 -https://www.oceanexpert.org/expert/5872 -https://www.oceanexpert.org/expert/13392 -https://www.oceanexpert.org/event/2877 -https://www.oceanexpert.org/expert/7268 -https://www.oceanexpert.org/expert/47491 -https://www.oceanexpert.org/institution/12942 -https://www.oceanexpert.org/expert/33856 -https://www.oceanexpert.org/institution/7262 -https://www.oceanexpert.org/institution/21522 -https://www.oceanexpert.org/expert/34769 -https://www.oceanexpert.org/expert/21329 -https://www.oceanexpert.org/expert/19389 -https://www.oceanexpert.org/expert/45934 -https://www.oceanexpert.org/expert/6485 -https://www.oceanexpert.org/expert/33568 -https://www.oceanexpert.org/expert/20887 -https://www.oceanexpert.org/expert/30823 -https://www.oceanexpert.org/expert/44100 -https://www.oceanexpert.org/event/2860 -https://www.oceanexpert.org/event/372 -https://www.oceanexpert.org/expert/24618 -https://www.oceanexpert.org/expert/37800 -https://www.oceanexpert.org/institution/19391 -https://www.oceanexpert.org/expert/45501 -https://www.oceanexpert.org/expert/24617 -https://www.oceanexpert.org/expert/45556 -https://www.oceanexpert.org/expert/25860 -https://www.oceanexpert.org/expert/37425 -https://www.oceanexpert.org/expert/46462 -https://www.oceanexpert.org/institution/18220 -https://www.oceanexpert.org/expert/48454 -https://www.oceanexpert.org/institution/12808 -https://www.oceanexpert.org/expert/47467 -https://www.oceanexpert.org/expert/47667 -https://www.oceanexpert.org/expert/20140 -https://www.oceanexpert.org/institution/6664 -https://www.oceanexpert.org/expert/31870 -https://www.oceanexpert.org/event/2538 -https://www.oceanexpert.org/expert/47495 -https://www.oceanexpert.org/event/61 -https://www.oceanexpert.org/expert/36320 -https://www.oceanexpert.org/institution/14777 -https://www.oceanexpert.org/expert/34089 -https://www.oceanexpert.org/expert/14811 -https://www.oceanexpert.org/event/2832 -https://www.oceanexpert.org/expert/46824 -https://www.oceanexpert.org/expert/23990 -https://www.oceanexpert.org/expert/36441 -https://www.oceanexpert.org/institution/13642 -https://www.oceanexpert.org/institution/12984 -https://www.oceanexpert.org/event/1601 -https://www.oceanexpert.org/expert/43287 -https://www.oceanexpert.org/institution/14815 -https://www.oceanexpert.org/expert/20692 -https://www.oceanexpert.org/expert/32464 -https://www.oceanexpert.org/event/1720 -https://www.oceanexpert.org/expert/45631 -https://www.oceanexpert.org/expert/32558 -https://www.oceanexpert.org/institution/18797 -https://www.oceanexpert.org/expert/279 -https://www.oceanexpert.org/expert/43725 -https://www.oceanexpert.org/expert/15612 -https://www.oceanexpert.org/institution/5762 -https://www.oceanexpert.org/expert/42967 -https://www.oceanexpert.org/expert/46417 -https://www.oceanexpert.org/expert/18346 -https://www.oceanexpert.org/event/1984 -https://www.oceanexpert.org/expert/28814 -https://www.oceanexpert.org/institution/8289 -https://www.oceanexpert.org/expert/14286 -https://www.oceanexpert.org/expert/31519 -https://www.oceanexpert.org/expert/37012 -https://www.oceanexpert.org/institution/19097 -https://www.oceanexpert.org/event/2694 -https://www.oceanexpert.org/expert/7489 -https://www.oceanexpert.org/institution/11101 -https://www.oceanexpert.org/expert/18626 -https://www.oceanexpert.org/institution/13002 -https://www.oceanexpert.org/expert/16584 -https://www.oceanexpert.org/institution/18721 -https://www.oceanexpert.org/expert/44279 -https://www.oceanexpert.org/institution/22113 -https://www.oceanexpert.org/institution/19657 -https://www.oceanexpert.org/event/1017 -https://www.oceanexpert.org/expert/24480 -https://www.oceanexpert.org/institution/8475 -https://www.oceanexpert.org/event/2204 -https://www.oceanexpert.org/expert/23751 -https://www.oceanexpert.org/expert/16978 -https://www.oceanexpert.org/institution/21310 -https://www.oceanexpert.org/expert/42514 -https://www.oceanexpert.org/expert/49035 -https://www.oceanexpert.org/expert/27394 -https://www.oceanexpert.org/institution/17142 -https://www.oceanexpert.org/expert/24395 -https://www.oceanexpert.org/institution/22030 -https://www.oceanexpert.org/expert/18159 -https://www.oceanexpert.org/institution/10726 -https://www.oceanexpert.org/expert/49018 -https://www.oceanexpert.org/expert/37715 -https://www.oceanexpert.org/expert/24421 -https://www.oceanexpert.org/expert/45577 -https://www.oceanexpert.org/institution/21641 -https://www.oceanexpert.org/expert/26883 -https://www.oceanexpert.org/event/539 -https://www.oceanexpert.org/expert/49026 -https://www.oceanexpert.org/expert/22057 -https://www.oceanexpert.org/expert/7592 -https://www.oceanexpert.org/expert/13548 -https://www.oceanexpert.org/expert/36164 -https://www.oceanexpert.org/institution/17804 -https://www.oceanexpert.org/expert/18085 -https://www.oceanexpert.org/expert/19489 -https://www.oceanexpert.org/expert/44370 -https://www.oceanexpert.org/institution/21475 -https://www.oceanexpert.org/event/860 -https://www.oceanexpert.org/expert/21041 -https://www.oceanexpert.org/expert/45670 -https://www.oceanexpert.org/expert/44227 -https://www.oceanexpert.org/institution/14036 -https://www.oceanexpert.org/expert/30149 -https://www.oceanexpert.org/event/1319 -https://www.oceanexpert.org/expert/47529 -https://www.oceanexpert.org/institution/19318 -https://www.oceanexpert.org/event/942 -https://www.oceanexpert.org/institution/15539 -https://www.oceanexpert.org/expert/46384 -https://www.oceanexpert.org/expert/44563 -https://www.oceanexpert.org/institution/7537 -https://www.oceanexpert.org/expert/26552 -https://www.oceanexpert.org/expert/26097 -https://www.oceanexpert.org/expert/36884 -https://www.oceanexpert.org/expert/46381 -https://www.oceanexpert.org/event/2412 -https://www.oceanexpert.org/expert/18393 -https://www.oceanexpert.org/expert/18713 -https://www.oceanexpert.org/institution/5778 -https://www.oceanexpert.org/expert/30467 -https://www.oceanexpert.org/expert/25872 -https://www.oceanexpert.org/expert/25667 -https://www.oceanexpert.org/expert/44327 -https://www.oceanexpert.org/event/1653 -https://www.oceanexpert.org/institution/8877 -https://www.oceanexpert.org/event/2113 -https://www.oceanexpert.org/expert/24540 -https://www.oceanexpert.org/expert/31220 -https://www.oceanexpert.org/expert/20053 -https://www.oceanexpert.org/expert/30276 -https://www.oceanexpert.org/event/2610 -https://www.oceanexpert.org/expert/23269 -https://www.oceanexpert.org/event/247 -https://www.oceanexpert.org/institution/11629 -https://www.oceanexpert.org/expert/21189 -https://www.oceanexpert.org/institution/13092 -https://www.oceanexpert.org/institution/5976 -https://www.oceanexpert.org/expert/32444 -https://www.oceanexpert.org/expert/39419 -https://www.oceanexpert.org/expert/34259 -https://www.oceanexpert.org/institution/13881 -https://www.oceanexpert.org/expert/43118 -https://www.oceanexpert.org/institution/14006 -https://www.oceanexpert.org/expert/40585 -https://www.oceanexpert.org/expert/531 -https://www.oceanexpert.org/event/2684 -https://www.oceanexpert.org/expert/44606 -https://www.oceanexpert.org/institution/15212 -https://www.oceanexpert.org/event/2414 -https://www.oceanexpert.org/expert/13486 -https://www.oceanexpert.org/expert/22399 -https://www.oceanexpert.org/expert/47543 -https://www.oceanexpert.org/expert/34537 -https://www.oceanexpert.org/institution/7892 -https://www.oceanexpert.org/institution/14006 -https://www.oceanexpert.org/expert/20212 -https://www.oceanexpert.org/institution/18455 -https://www.oceanexpert.org/expert/168 -https://www.oceanexpert.org/institution/19851 -https://www.oceanexpert.org/expert/9236 -https://www.oceanexpert.org/expert/47660 -https://www.oceanexpert.org/institution/6190 -https://www.oceanexpert.org/event/1951 -https://www.oceanexpert.org/expert/44601 -https://www.oceanexpert.org/institution/6720 -https://www.oceanexpert.org/expert/24270 -https://www.oceanexpert.org/expert/24800 -https://www.oceanexpert.org/expert/43765 -https://www.oceanexpert.org/expert/31246 -https://www.oceanexpert.org/institution/15056 -https://www.oceanexpert.org/expert/5957 -https://www.oceanexpert.org/institution/12136 -https://www.oceanexpert.org/institution/18911 -https://www.oceanexpert.org/expert/33292 -https://www.oceanexpert.org/expert/12876 -https://www.oceanexpert.org/institution/17938 -https://www.oceanexpert.org/expert/47046 -https://www.oceanexpert.org/institution/17753 -https://www.oceanexpert.org/expert/40002 -https://www.oceanexpert.org/event/2246 -https://www.oceanexpert.org/expert/23484 -https://www.oceanexpert.org/expert/44196 -https://www.oceanexpert.org/expert/24998 -https://www.oceanexpert.org/expert/38375 -https://www.oceanexpert.org/expert/36501 -https://www.oceanexpert.org/institution/5953 -https://www.oceanexpert.org/expert/46984 -https://www.oceanexpert.org/expert/47822 -https://www.oceanexpert.org/expert/34000 -https://www.oceanexpert.org/expert/44622 -https://www.oceanexpert.org/expert/14173 -https://www.oceanexpert.org/institution/19252 -https://www.oceanexpert.org/event/659 -https://www.oceanexpert.org/expert/26692 -https://www.oceanexpert.org/expert/33076 -https://www.oceanexpert.org/institution/19580 -https://www.oceanexpert.org/expert/23603 -https://www.oceanexpert.org/expert/25990 -https://www.oceanexpert.org/institution/18204 -https://www.oceanexpert.org/institution/19203 -https://www.oceanexpert.org/event/1529 -https://www.oceanexpert.org/institution/11013 -https://www.oceanexpert.org/institution/16439 -https://www.oceanexpert.org/expert/25727 -https://www.oceanexpert.org/event/2753 -https://www.oceanexpert.org/institution/18604 -https://www.oceanexpert.org/expert/34443 -https://www.oceanexpert.org/expert/24641 -https://www.oceanexpert.org/institution/15724 -https://www.oceanexpert.org/expert/24633 -https://www.oceanexpert.org/expert/43959 -https://www.oceanexpert.org/expert/47213 -https://www.oceanexpert.org/institution/21037 -https://www.oceanexpert.org/expert/43080 -https://www.oceanexpert.org/institution/12632 -https://www.oceanexpert.org/expert/43818 -https://www.oceanexpert.org/expert/16624 -https://www.oceanexpert.org/expert/37817 -https://www.oceanexpert.org/institution/20956 -https://www.oceanexpert.org/institution/15264 -https://www.oceanexpert.org/expert/31678 -https://www.oceanexpert.org/expert/26483 -https://www.oceanexpert.org/expert/23895 -https://www.oceanexpert.org/institution/18518 -https://www.oceanexpert.org/expert/25572 -https://www.oceanexpert.org/expert/34864 -https://www.oceanexpert.org/expert/37096 -https://www.oceanexpert.org/institution/14300 -https://www.oceanexpert.org/expert/35203 -https://www.oceanexpert.org/expert/44531 -https://www.oceanexpert.org/event/2409 -https://www.oceanexpert.org/expert/4659 -https://www.oceanexpert.org/expert/32263 -https://www.oceanexpert.org/expert/46940 -https://www.oceanexpert.org/institution/19281 -https://www.oceanexpert.org/expert/26113 -https://www.oceanexpert.org/institution/21795 -https://www.oceanexpert.org/expert/18257 -https://www.oceanexpert.org/expert/26765 -https://www.oceanexpert.org/institution/21406 -https://www.oceanexpert.org/event/2840 -https://www.oceanexpert.org/expert/21081 -https://www.oceanexpert.org/expert/36791 -https://www.oceanexpert.org/event/1324 -https://www.oceanexpert.org/expert/35630 -https://www.oceanexpert.org/institution/14731 -https://www.oceanexpert.org/event/154 -https://www.oceanexpert.org/institution/19818 -https://www.oceanexpert.org/institution/13777 -https://www.oceanexpert.org/expert/20904 -https://www.oceanexpert.org/expert/44298 -https://www.oceanexpert.org/expert/26854 -https://www.oceanexpert.org/expert/45687 -https://www.oceanexpert.org/expert/46648 -https://www.oceanexpert.org/expert/16094 -https://www.oceanexpert.org/expert/44227 -https://www.oceanexpert.org/expert/46832 -https://www.oceanexpert.org/expert/27558 -https://www.oceanexpert.org/expert/44010 -https://www.oceanexpert.org/expert/11741 -https://www.oceanexpert.org/expert/44931 -https://www.oceanexpert.org/expert/30109 -https://www.oceanexpert.org/expert/44043 -https://www.oceanexpert.org/event/2499 -https://www.oceanexpert.org/expert/5926 -https://www.oceanexpert.org/expert/43899 -https://www.oceanexpert.org/expert/46298 -https://www.oceanexpert.org/expert/39362 -https://www.oceanexpert.org/expert/46474 -https://www.oceanexpert.org/expert/44895 -https://www.oceanexpert.org/expert/30974 -https://www.oceanexpert.org/expert/21339 -https://www.oceanexpert.org/institution/19336 -https://www.oceanexpert.org/expert/37314 -https://www.oceanexpert.org/institution/13149 -https://www.oceanexpert.org/expert/2311 -https://www.oceanexpert.org/institution/20996 -https://www.oceanexpert.org/institution/16002 -https://www.oceanexpert.org/expert/26265 -https://www.oceanexpert.org/expert/42606 -https://www.oceanexpert.org/expert/25731 -https://www.oceanexpert.org/expert/27539 -https://www.oceanexpert.org/expert/18262 -https://www.oceanexpert.org/event/2647 -https://www.oceanexpert.org/expert/38101 -https://www.oceanexpert.org/institution/18971 -https://www.oceanexpert.org/institution/16361 -https://www.oceanexpert.org/event/1987 -https://www.oceanexpert.org/expert/20499 -https://www.oceanexpert.org/institution/16351 -https://www.oceanexpert.org/expert/1845 -https://www.oceanexpert.org/expert/3508 -https://www.oceanexpert.org/expert/35391 -https://www.oceanexpert.org/expert/32232 -https://www.oceanexpert.org/event/1710 -https://www.oceanexpert.org/expert/47640 -https://www.oceanexpert.org/expert/46145 -https://www.oceanexpert.org/expert/37622 -https://www.oceanexpert.org/expert/16393 -https://www.oceanexpert.org/expert/24211 -https://www.oceanexpert.org/institution/20549 -https://www.oceanexpert.org/institution/15044 -https://www.oceanexpert.org/expert/23734 -https://www.oceanexpert.org/institution/18571 -https://www.oceanexpert.org/event/340 -https://www.oceanexpert.org/expert/14837 -https://www.oceanexpert.org/institution/15791 -https://www.oceanexpert.org/event/1017 -https://www.oceanexpert.org/expert/10200 -https://www.oceanexpert.org/expert/25977 -https://www.oceanexpert.org/expert/23484 -https://www.oceanexpert.org/institution/21638 -https://www.oceanexpert.org/institution/19847 -https://www.oceanexpert.org/expert/21173 -https://www.oceanexpert.org/expert/15258 -https://www.oceanexpert.org/expert/35089 -https://www.oceanexpert.org/expert/37687 -https://www.oceanexpert.org/expert/24652 -https://www.oceanexpert.org/expert/19469 -https://www.oceanexpert.org/expert/28348 -https://www.oceanexpert.org/expert/37628 -https://www.oceanexpert.org/expert/42911 -https://www.oceanexpert.org/expert/29494 -https://www.oceanexpert.org/expert/37881 -https://www.oceanexpert.org/institution/16816 -https://www.oceanexpert.org/event/2052 -https://www.oceanexpert.org/institution/12997 -https://www.oceanexpert.org/expert/23788 -https://www.oceanexpert.org/expert/26513 -https://www.oceanexpert.org/expert/48445 -https://www.oceanexpert.org/expert/17427 -https://www.oceanexpert.org/expert/27390 -https://www.oceanexpert.org/institution/21789 -https://www.oceanexpert.org/institution/13582 -https://www.oceanexpert.org/expert/32050 -https://www.oceanexpert.org/institution/12942 -https://www.oceanexpert.org/expert/18880 -https://www.oceanexpert.org/institution/18421 -https://www.oceanexpert.org/expert/2020 -https://www.oceanexpert.org/expert/24650 -https://www.oceanexpert.org/event/2005 -https://www.oceanexpert.org/expert/38604 -https://www.oceanexpert.org/expert/34520 -https://www.oceanexpert.org/expert/9660 -https://www.oceanexpert.org/event/2395 -https://www.oceanexpert.org/expert/29536 -https://www.oceanexpert.org/expert/46427 -https://www.oceanexpert.org/expert/44015 -https://www.oceanexpert.org/expert/35437 -https://www.oceanexpert.org/event/3093 -https://www.oceanexpert.org/institution/20307 -https://www.oceanexpert.org/expert/7768 -https://www.oceanexpert.org/institution/18834 -https://www.oceanexpert.org/institution/18736 -https://www.oceanexpert.org/event/2580 -https://www.oceanexpert.org/expert/48717 -https://www.oceanexpert.org/event/2510 -https://www.oceanexpert.org/event/278 -https://www.oceanexpert.org/expert/44755 -https://www.oceanexpert.org/expert/20861 -https://www.oceanexpert.org/expert/44549 -https://www.oceanexpert.org/expert/6199 -https://www.oceanexpert.org/expert/22455 -https://www.oceanexpert.org/expert/24010 -https://www.oceanexpert.org/institution/6178 -https://www.oceanexpert.org/institution/11219 -https://www.oceanexpert.org/expert/46639 -https://www.oceanexpert.org/expert/30248 -https://www.oceanexpert.org/institution/18489 -https://www.oceanexpert.org/institution/13096 -https://www.oceanexpert.org/institution/21579 -https://www.oceanexpert.org/expert/20702 -https://www.oceanexpert.org/expert/45133 -https://www.oceanexpert.org/expert/32176 -https://www.oceanexpert.org/expert/29806 -https://www.oceanexpert.org/institution/19137 -https://www.oceanexpert.org/event/1426 -https://www.oceanexpert.org/expert/23326 -https://www.oceanexpert.org/expert/37235 -https://www.oceanexpert.org/expert/36764 -https://www.oceanexpert.org/institution/10319 -https://www.oceanexpert.org/expert/33327 -https://www.oceanexpert.org/expert/23469 -https://www.oceanexpert.org/institution/21356 -https://www.oceanexpert.org/expert/8156 -https://www.oceanexpert.org/expert/4933 -https://www.oceanexpert.org/expert/34596 -https://www.oceanexpert.org/institution/12914 -https://www.oceanexpert.org/expert/19751 -https://www.oceanexpert.org/expert/18028 -https://www.oceanexpert.org/expert/36555 -https://www.oceanexpert.org/expert/21029 -https://www.oceanexpert.org/expert/20310 -https://www.oceanexpert.org/institution/19782 -https://www.oceanexpert.org/institution/21820 -https://www.oceanexpert.org/institution/12548 -https://www.oceanexpert.org/expert/24673 -https://www.oceanexpert.org/expert/46847 -https://www.oceanexpert.org/expert/48480 -https://www.oceanexpert.org/expert/34881 -https://www.oceanexpert.org/institution/19948 -https://www.oceanexpert.org/event/1877 -https://www.oceanexpert.org/expert/48907 -https://www.oceanexpert.org/institution/20788 -https://www.oceanexpert.org/expert/31615 -https://www.oceanexpert.org/expert/20700 -https://www.oceanexpert.org/expert/19872 -https://www.oceanexpert.org/expert/756 -https://www.oceanexpert.org/expert/7175 -https://www.oceanexpert.org/expert/36681 -https://www.oceanexpert.org/event/340 -https://www.oceanexpert.org/expert/26559 -https://www.oceanexpert.org/expert/11001 -https://www.oceanexpert.org/expert/47785 -https://www.oceanexpert.org/institution/18255 -https://www.oceanexpert.org/expert/865 -https://www.oceanexpert.org/expert/29394 -https://www.oceanexpert.org/expert/38207 -https://www.oceanexpert.org/event/2803 -https://www.oceanexpert.org/expert/22672 -https://www.oceanexpert.org/expert/24398 -https://www.oceanexpert.org/expert/14388 -https://www.oceanexpert.org/expert/36095 -https://www.oceanexpert.org/expert/18637 -https://www.oceanexpert.org/institution/5169 -https://www.oceanexpert.org/expert/36850 -https://www.oceanexpert.org/institution/21980 -https://www.oceanexpert.org/event/2940 -https://www.oceanexpert.org/expert/21929 -https://www.oceanexpert.org/expert/29509 -https://www.oceanexpert.org/institution/20296 -https://www.oceanexpert.org/event/1770 -https://www.oceanexpert.org/expert/35644 -https://www.oceanexpert.org/expert/32714 -https://www.oceanexpert.org/expert/25873 -https://www.oceanexpert.org/expert/24687 -https://www.oceanexpert.org/event/481 -https://www.oceanexpert.org/institution/18083 -https://www.oceanexpert.org/expert/32440 -https://www.oceanexpert.org/expert/19550 -https://www.oceanexpert.org/expert/24900 -https://www.oceanexpert.org/expert/18593 -https://www.oceanexpert.org/expert/16306 -https://www.oceanexpert.org/event/1231 -https://www.oceanexpert.org/expert/35050 -https://www.oceanexpert.org/expert/17584 -https://www.oceanexpert.org/expert/28180 -https://www.oceanexpert.org/institution/20183 -https://www.oceanexpert.org/event/1134 -https://www.oceanexpert.org/expert/44414 -https://www.oceanexpert.org/institution/13539 -https://www.oceanexpert.org/expert/37963 -https://www.oceanexpert.org/expert/20944 -https://www.oceanexpert.org/expert/9038 -https://www.oceanexpert.org/expert/32701 -https://www.oceanexpert.org/expert/7118 -https://www.oceanexpert.org/institution/14095 -https://www.oceanexpert.org/expert/48020 -https://www.oceanexpert.org/institution/21348 -https://www.oceanexpert.org/expert/39598 -https://www.oceanexpert.org/expert/24936 -https://www.oceanexpert.org/expert/21463 -https://www.oceanexpert.org/expert/15529 -https://www.oceanexpert.org/expert/39776 -https://www.oceanexpert.org/expert/47331 -https://www.oceanexpert.org/expert/10521 -https://www.oceanexpert.org/expert/8333 -https://www.oceanexpert.org/expert/33757 -https://www.oceanexpert.org/expert/48066 -https://www.oceanexpert.org/expert/817 -https://www.oceanexpert.org/expert/6993 -https://www.oceanexpert.org/institution/21331 -https://www.oceanexpert.org/expert/21923 -https://www.oceanexpert.org/institution/15763 -https://www.oceanexpert.org/institution/15891 -https://www.oceanexpert.org/event/1793 -https://www.oceanexpert.org/institution/12191 -https://www.oceanexpert.org/expert/20262 -https://www.oceanexpert.org/expert/11873 -https://www.oceanexpert.org/expert/24578 -https://www.oceanexpert.org/event/2515 -https://www.oceanexpert.org/expert/32209 -https://www.oceanexpert.org/expert/30407 -https://www.oceanexpert.org/expert/6994 -https://www.oceanexpert.org/expert/47500 -https://www.oceanexpert.org/expert/19697 -https://www.oceanexpert.org/expert/28402 -https://www.oceanexpert.org/expert/5210 -https://www.oceanexpert.org/event/73 -https://www.oceanexpert.org/institution/15976 -https://www.oceanexpert.org/institution/10373 -https://www.oceanexpert.org/event/732 -https://www.oceanexpert.org/institution/20739 -https://www.oceanexpert.org/expert/44261 -https://www.oceanexpert.org/expert/22029 -https://www.oceanexpert.org/expert/23770 -https://www.oceanexpert.org/institution/19153 -https://www.oceanexpert.org/expert/20774 -https://www.oceanexpert.org/event/1721 -https://www.oceanexpert.org/institution/19628 -https://www.oceanexpert.org/expert/37821 -https://www.oceanexpert.org/expert/42775 -https://www.oceanexpert.org/institution/19704 -https://www.oceanexpert.org/institution/19499 -https://www.oceanexpert.org/institution/17446 -https://www.oceanexpert.org/expert/16989 -https://www.oceanexpert.org/expert/26769 -https://www.oceanexpert.org/expert/17218 -https://www.oceanexpert.org/expert/4471 -https://www.oceanexpert.org/institution/14614 -https://www.oceanexpert.org/expert/47696 -https://www.oceanexpert.org/institution/12158 -https://www.oceanexpert.org/expert/41239 -https://www.oceanexpert.org/expert/32046 -https://www.oceanexpert.org/expert/8487 -https://www.oceanexpert.org/expert/27306 -https://www.oceanexpert.org/expert/23862 -https://www.oceanexpert.org/event/3191 -https://www.oceanexpert.org/expert/22673 -https://www.oceanexpert.org/expert/37922 -https://www.oceanexpert.org/institution/10599 -https://www.oceanexpert.org/institution/21629 -https://www.oceanexpert.org/expert/1083 -https://www.oceanexpert.org/expert/45093 -https://www.oceanexpert.org/institution/19401 -https://www.oceanexpert.org/expert/44545 -https://www.oceanexpert.org/expert/34672 -https://www.oceanexpert.org/event/1811 -https://www.oceanexpert.org/expert/22530 -https://www.oceanexpert.org/institution/10838 -https://www.oceanexpert.org/expert/38322 -https://www.oceanexpert.org/institution/21418 -https://www.oceanexpert.org/event/2772 -https://www.oceanexpert.org/expert/22762 -https://www.oceanexpert.org/expert/48581 -https://www.oceanexpert.org/expert/29960 -https://www.oceanexpert.org/expert/30780 -https://www.oceanexpert.org/expert/28002 -https://www.oceanexpert.org/expert/20681 -https://www.oceanexpert.org/expert/14297 -https://www.oceanexpert.org/institution/6552 -https://www.oceanexpert.org/institution/19025 -https://www.oceanexpert.org/event/2235 -https://www.oceanexpert.org/event/1752 -https://www.oceanexpert.org/expert/35765 -https://www.oceanexpert.org/expert/20700 -https://www.oceanexpert.org/expert/35586 -https://www.oceanexpert.org/expert/43123 -https://www.oceanexpert.org/institution/12576 -https://www.oceanexpert.org/expert/45846 -https://www.oceanexpert.org/institution/13651 -https://www.oceanexpert.org/expert/43693 -https://www.oceanexpert.org/expert/12035 -https://www.oceanexpert.org/institution/20212 -https://www.oceanexpert.org/expert/8062 -https://www.oceanexpert.org/institution/18226 -https://www.oceanexpert.org/event/977 -https://www.oceanexpert.org/expert/43892 -https://www.oceanexpert.org/institution/12083 -https://www.oceanexpert.org/institution/19976 -https://www.oceanexpert.org/expert/34881 -https://www.oceanexpert.org/expert/25139 -https://www.oceanexpert.org/institution/19178 -https://www.oceanexpert.org/institution/11016 -https://www.oceanexpert.org/expert/18784 -https://www.oceanexpert.org/institution/16146 -https://www.oceanexpert.org/expert/26718 -https://www.oceanexpert.org/institution/6445 -https://www.oceanexpert.org/expert/27116 -https://www.oceanexpert.org/institution/7879 -https://www.oceanexpert.org/expert/36313 -https://www.oceanexpert.org/expert/18991 -https://www.oceanexpert.org/institution/21808 -https://www.oceanexpert.org/expert/26795 -https://www.oceanexpert.org/expert/20942 -https://www.oceanexpert.org/event/218 -https://www.oceanexpert.org/institution/14497 -https://www.oceanexpert.org/expert/46446 -https://www.oceanexpert.org/expert/757 -https://www.oceanexpert.org/expert/20485 -https://www.oceanexpert.org/institution/10671 -https://www.oceanexpert.org/expert/14982 -https://www.oceanexpert.org/expert/22814 -https://www.oceanexpert.org/institution/22066 -https://www.oceanexpert.org/expert/6376 -https://www.oceanexpert.org/event/530 -https://www.oceanexpert.org/expert/33910 -https://www.oceanexpert.org/expert/13885 -https://www.oceanexpert.org/institution/13278 -https://www.oceanexpert.org/expert/37294 -https://www.oceanexpert.org/expert/17194 -https://www.oceanexpert.org/event/406 -https://www.oceanexpert.org/expert/29055 -https://www.oceanexpert.org/expert/34713 -https://www.oceanexpert.org/institution/18327 -https://www.oceanexpert.org/institution/18042 -https://www.oceanexpert.org/expert/32230 -https://www.oceanexpert.org/expert/21123 -https://www.oceanexpert.org/expert/36545 -https://www.oceanexpert.org/expert/18689 -https://www.oceanexpert.org/expert/44658 -https://www.oceanexpert.org/expert/46553 -https://www.oceanexpert.org/expert/36793 -https://www.oceanexpert.org/expert/45122 -https://www.oceanexpert.org/expert/34353 -https://www.oceanexpert.org/institution/18458 -https://www.oceanexpert.org/event/703 -https://www.oceanexpert.org/expert/22538 -https://www.oceanexpert.org/event/1338 -https://www.oceanexpert.org/expert/25974 -https://www.oceanexpert.org/expert/35450 -https://www.oceanexpert.org/expert/44229 -https://www.oceanexpert.org/expert/23661 -https://www.oceanexpert.org/expert/5394 -https://www.oceanexpert.org/expert/36052 -https://www.oceanexpert.org/institution/8990 -https://www.oceanexpert.org/expert/25929 -https://www.oceanexpert.org/institution/20581 -https://www.oceanexpert.org/expert/45095 -https://www.oceanexpert.org/expert/20347 -https://www.oceanexpert.org/expert/24479 -https://www.oceanexpert.org/expert/24464 -https://www.oceanexpert.org/expert/17347 -https://www.oceanexpert.org/expert/32188 -https://www.oceanexpert.org/expert/22245 -https://www.oceanexpert.org/expert/32519 -https://www.oceanexpert.org/expert/19230 -https://www.oceanexpert.org/expert/8629 -https://www.oceanexpert.org/expert/29176 -https://www.oceanexpert.org/expert/46373 -https://www.oceanexpert.org/expert/12258 -https://www.oceanexpert.org/event/2934 -https://www.oceanexpert.org/expert/16978 -https://www.oceanexpert.org/institution/13666 -https://www.oceanexpert.org/event/368 -https://www.oceanexpert.org/expert/26820 -https://www.oceanexpert.org/expert/6446 -https://www.oceanexpert.org/expert/18669 -https://www.oceanexpert.org/expert/27391 -https://www.oceanexpert.org/institution/21881 -https://www.oceanexpert.org/expert/44409 -https://www.oceanexpert.org/event/2150 -https://www.oceanexpert.org/expert/858 -https://www.oceanexpert.org/expert/39059 -https://www.oceanexpert.org/expert/46996 -https://www.oceanexpert.org/expert/45159 -https://www.oceanexpert.org/expert/27254 -https://www.oceanexpert.org/expert/44671 -https://www.oceanexpert.org/institution/12191 -https://www.oceanexpert.org/expert/541 -https://www.oceanexpert.org/institution/14838 -https://www.oceanexpert.org/event/810 -https://www.oceanexpert.org/expert/17847 -https://www.oceanexpert.org/expert/18766 -https://www.oceanexpert.org/institution/6939 -https://www.oceanexpert.org/event/870 -https://www.oceanexpert.org/expert/26247 -https://www.oceanexpert.org/expert/43522 -https://www.oceanexpert.org/expert/14444 -https://www.oceanexpert.org/expert/14408 -https://www.oceanexpert.org/expert/33980 -https://www.oceanexpert.org/expert/47384 -https://www.oceanexpert.org/expert/34160 -https://www.oceanexpert.org/institution/10357 -https://www.oceanexpert.org/expert/28921 -https://www.oceanexpert.org/expert/27166 -https://www.oceanexpert.org/institution/17031 -https://www.oceanexpert.org/expert/24334 -https://www.oceanexpert.org/expert/35299 -https://www.oceanexpert.org/expert/45865 -https://www.oceanexpert.org/expert/12193 -https://www.oceanexpert.org/event/133 -https://www.oceanexpert.org/event/2164 -https://www.oceanexpert.org/expert/30991 -https://www.oceanexpert.org/event/2711 -https://www.oceanexpert.org/expert/39308 -https://www.oceanexpert.org/expert/20052 -https://www.oceanexpert.org/expert/13197 -https://www.oceanexpert.org/institution/14751 -https://www.oceanexpert.org/expert/19181 -https://www.oceanexpert.org/institution/18933 -https://www.oceanexpert.org/expert/178 -https://www.oceanexpert.org/expert/34551 -https://www.oceanexpert.org/expert/44773 -https://www.oceanexpert.org/expert/19084 -https://www.oceanexpert.org/institution/21614 -https://www.oceanexpert.org/expert/37868 -https://www.oceanexpert.org/expert/17019 -https://www.oceanexpert.org/event/2194 -https://www.oceanexpert.org/institution/22074 -https://www.oceanexpert.org/institution/13957 -https://www.oceanexpert.org/event/2872 -https://www.oceanexpert.org/expert/40030 -https://www.oceanexpert.org/expert/28240 -https://www.oceanexpert.org/expert/34807 -https://www.oceanexpert.org/expert/48535 -https://www.oceanexpert.org/expert/27031 -https://www.oceanexpert.org/institution/19614 -https://www.oceanexpert.org/expert/32999 -https://www.oceanexpert.org/institution/18578 -https://www.oceanexpert.org/expert/28126 -https://www.oceanexpert.org/expert/22300 -https://www.oceanexpert.org/event/2939 -https://www.oceanexpert.org/expert/17201 -https://www.oceanexpert.org/institution/13338 -https://www.oceanexpert.org/event/2983 -https://www.oceanexpert.org/expert/43465 -https://www.oceanexpert.org/expert/10701 -https://www.oceanexpert.org/institution/10558 -https://www.oceanexpert.org/expert/38537 -https://www.oceanexpert.org/expert/24315 -https://www.oceanexpert.org/institution/19410 -https://www.oceanexpert.org/expert/17633 -https://www.oceanexpert.org/expert/2947 -https://www.oceanexpert.org/event/1585 -https://www.oceanexpert.org/expert/46912 -https://www.oceanexpert.org/expert/22068 -https://www.oceanexpert.org/expert/20653 -https://www.oceanexpert.org/event/1259 -https://www.oceanexpert.org/institution/21836 -https://www.oceanexpert.org/expert/27511 -https://www.oceanexpert.org/expert/18861 -https://www.oceanexpert.org/institution/10468 -https://www.oceanexpert.org/event/1191 -https://www.oceanexpert.org/institution/21247 -https://www.oceanexpert.org/expert/46590 -https://www.oceanexpert.org/expert/24000 -https://www.oceanexpert.org/event/2146 -https://www.oceanexpert.org/expert/37225 -https://www.oceanexpert.org/expert/45552 -https://www.oceanexpert.org/expert/24329 -https://www.oceanexpert.org/institution/4930 -https://www.oceanexpert.org/expert/44300 -https://www.oceanexpert.org/event/1401 -https://www.oceanexpert.org/expert/27077 -https://www.oceanexpert.org/expert/31414 -https://www.oceanexpert.org/expert/31305 -https://www.oceanexpert.org/expert/15289 -https://www.oceanexpert.org/expert/20360 -https://www.oceanexpert.org/expert/32207 -https://www.oceanexpert.org/expert/19978 -https://www.oceanexpert.org/institution/21785 -https://www.oceanexpert.org/event/845 -https://www.oceanexpert.org/expert/33267 -https://www.oceanexpert.org/expert/33253 -https://www.oceanexpert.org/expert/20394 -https://www.oceanexpert.org/expert/31120 -https://www.oceanexpert.org/expert/26724 -https://www.oceanexpert.org/expert/48636 -https://www.oceanexpert.org/expert/32951 -https://www.oceanexpert.org/institution/21440 -https://www.oceanexpert.org/expert/35295 -https://www.oceanexpert.org/expert/36966 -https://www.oceanexpert.org/expert/19205 -https://www.oceanexpert.org/expert/44359 -https://www.oceanexpert.org/expert/46767 -https://www.oceanexpert.org/event/432 -https://www.oceanexpert.org/expert/30971 -https://www.oceanexpert.org/expert/47238 -https://www.oceanexpert.org/expert/29690 -https://www.oceanexpert.org/expert/6727 -https://www.oceanexpert.org/expert/42568 -https://www.oceanexpert.org/expert/25221 -https://www.oceanexpert.org/expert/1209 -https://www.oceanexpert.org/expert/28341 -https://www.oceanexpert.org/expert/4855 -https://www.oceanexpert.org/expert/46376 -https://www.oceanexpert.org/expert/29270 -https://www.oceanexpert.org/expert/28468 -https://www.oceanexpert.org/institution/20151 -https://www.oceanexpert.org/institution/12259 -https://www.oceanexpert.org/expert/28292 -https://www.oceanexpert.org/expert/29838 -https://www.oceanexpert.org/expert/23603 -https://www.oceanexpert.org/expert/39087 -https://www.oceanexpert.org/expert/34034 -https://www.oceanexpert.org/expert/39045 -https://www.oceanexpert.org/institution/13905 -https://www.oceanexpert.org/expert/16755 -https://www.oceanexpert.org/institution/18912 -https://www.oceanexpert.org/expert/39538 -https://www.oceanexpert.org/expert/30866 -https://www.oceanexpert.org/expert/22628 -https://www.oceanexpert.org/expert/30037 -https://www.oceanexpert.org/expert/45933 -https://www.oceanexpert.org/expert/30548 -https://www.oceanexpert.org/institution/19313 -https://www.oceanexpert.org/expert/40134 -https://www.oceanexpert.org/expert/22534 -https://www.oceanexpert.org/institution/14159 -https://www.oceanexpert.org/institution/14199 -https://www.oceanexpert.org/expert/24540 -https://www.oceanexpert.org/expert/22211 -https://www.oceanexpert.org/institution/17298 -https://www.oceanexpert.org/institution/18274 -https://www.oceanexpert.org/institution/7668 -https://www.oceanexpert.org/expert/19564 -https://www.oceanexpert.org/event/1751 -https://www.oceanexpert.org/expert/17255 -https://www.oceanexpert.org/event/180 -https://www.oceanexpert.org/event/2556 -https://www.oceanexpert.org/expert/35523 -https://www.oceanexpert.org/expert/32151 -https://www.oceanexpert.org/expert/11386 -https://www.oceanexpert.org/expert/27807 -https://www.oceanexpert.org/expert/48229 -https://www.oceanexpert.org/expert/24262 -https://www.oceanexpert.org/expert/16503 -https://www.oceanexpert.org/institution/13125 -https://www.oceanexpert.org/expert/42401 -https://www.oceanexpert.org/expert/21095 -https://www.oceanexpert.org/expert/40553 -https://www.oceanexpert.org/expert/44804 -https://www.oceanexpert.org/expert/3199 -https://www.oceanexpert.org/institution/14120 -https://www.oceanexpert.org/institution/19867 -https://www.oceanexpert.org/institution/21906 -https://www.oceanexpert.org/institution/18563 -https://www.oceanexpert.org/expert/13086 -https://www.oceanexpert.org/event/1429 -https://www.oceanexpert.org/expert/14095 -https://www.oceanexpert.org/event/230 -https://www.oceanexpert.org/event/1819 -https://www.oceanexpert.org/institution/10626 -https://www.oceanexpert.org/expert/37545 -https://www.oceanexpert.org/institution/5852 -https://www.oceanexpert.org/expert/27323 -https://www.oceanexpert.org/expert/17967 -https://www.oceanexpert.org/institution/22098 -https://www.oceanexpert.org/expert/17165 -https://www.oceanexpert.org/expert/32408 -https://www.oceanexpert.org/institution/9229 -https://www.oceanexpert.org/expert/20198 -https://www.oceanexpert.org/expert/35449 -https://www.oceanexpert.org/expert/19198 -https://www.oceanexpert.org/institution/4996 -https://www.oceanexpert.org/expert/48420 -https://www.oceanexpert.org/expert/22464 -https://www.oceanexpert.org/expert/23947 -https://www.oceanexpert.org/institution/11009 -https://www.oceanexpert.org/institution/7363 -https://www.oceanexpert.org/institution/10689 -https://www.oceanexpert.org/expert/35116 -https://www.oceanexpert.org/expert/28379 -https://www.oceanexpert.org/expert/46185 -https://www.oceanexpert.org/institution/18364 -https://www.oceanexpert.org/expert/46534 -https://www.oceanexpert.org/institution/16519 -https://www.oceanexpert.org/expert/48514 -https://www.oceanexpert.org/event/1455 -https://www.oceanexpert.org/institution/21444 -https://www.oceanexpert.org/expert/31970 -https://www.oceanexpert.org/expert/21552 -https://www.oceanexpert.org/expert/28002 -https://www.oceanexpert.org/expert/47191 -https://www.oceanexpert.org/expert/47693 -https://www.oceanexpert.org/expert/45491 -https://www.oceanexpert.org/expert/21972 -https://www.oceanexpert.org/expert/37853 -https://www.oceanexpert.org/institution/10084 -https://www.oceanexpert.org/expert/17164 -https://www.oceanexpert.org/expert/38627 -https://www.oceanexpert.org/event/2092 -https://www.oceanexpert.org/expert/24199 -https://www.oceanexpert.org/expert/37934 -https://www.oceanexpert.org/expert/21167 -https://www.oceanexpert.org/institution/11182 -https://www.oceanexpert.org/expert/35887 -https://www.oceanexpert.org/expert/16912 -https://www.oceanexpert.org/expert/46791 -https://www.oceanexpert.org/expert/43718 -https://www.oceanexpert.org/event/82 -https://www.oceanexpert.org/expert/31145 -https://www.oceanexpert.org/expert/34474 -https://www.oceanexpert.org/expert/47164 -https://www.oceanexpert.org/event/2967 -https://www.oceanexpert.org/institution/21253 -https://www.oceanexpert.org/expert/14319 -https://www.oceanexpert.org/institution/11285 -https://www.oceanexpert.org/expert/47863 -https://www.oceanexpert.org/institution/21439 -https://www.oceanexpert.org/expert/11173 -https://www.oceanexpert.org/expert/21055 -https://www.oceanexpert.org/expert/44183 -https://www.oceanexpert.org/event/2882 -https://www.oceanexpert.org/institution/20622 -https://www.oceanexpert.org/expert/37397 -https://www.oceanexpert.org/expert/43815 -https://www.oceanexpert.org/event/2714 -https://www.oceanexpert.org/institution/15531 -https://www.oceanexpert.org/expert/36503 -https://www.oceanexpert.org/expert/37566 -https://www.oceanexpert.org/expert/5625 -https://www.oceanexpert.org/expert/46760 -https://www.oceanexpert.org/institution/21959 -https://www.oceanexpert.org/expert/39337 -https://www.oceanexpert.org/institution/16403 -https://www.oceanexpert.org/expert/44363 -https://www.oceanexpert.org/expert/25740 -https://www.oceanexpert.org/institution/18164 -https://www.oceanexpert.org/expert/48177 -https://www.oceanexpert.org/expert/48677 -https://www.oceanexpert.org/institution/14699 -https://www.oceanexpert.org/expert/32392 -https://www.oceanexpert.org/expert/28132 -https://www.oceanexpert.org/expert/37621 -https://www.oceanexpert.org/institution/11772 -https://www.oceanexpert.org/event/653 -https://www.oceanexpert.org/institution/16353 -https://www.oceanexpert.org/expert/23239 -https://www.oceanexpert.org/expert/23037 -https://www.oceanexpert.org/expert/42650 -https://www.oceanexpert.org/expert/26558 -https://www.oceanexpert.org/expert/11945 -https://www.oceanexpert.org/institution/9854 -https://www.oceanexpert.org/event/2309 -https://www.oceanexpert.org/expert/33612 -https://www.oceanexpert.org/expert/14343 -https://www.oceanexpert.org/expert/4517 -https://www.oceanexpert.org/expert/17211 -https://www.oceanexpert.org/expert/31693 -https://www.oceanexpert.org/expert/38635 -https://www.oceanexpert.org/expert/17540 -https://www.oceanexpert.org/expert/19748 -https://www.oceanexpert.org/expert/45658 -https://www.oceanexpert.org/expert/19805 -https://www.oceanexpert.org/institution/17382 -https://www.oceanexpert.org/event/279 -https://www.oceanexpert.org/expert/30748 -https://www.oceanexpert.org/expert/40661 -https://www.oceanexpert.org/institution/22084 -https://www.oceanexpert.org/expert/40571 -https://www.oceanexpert.org/institution/5558 -https://www.oceanexpert.org/expert/28082 -https://www.oceanexpert.org/expert/243 -https://www.oceanexpert.org/institution/19025 -https://www.oceanexpert.org/expert/38190 -https://www.oceanexpert.org/institution/10579 -https://www.oceanexpert.org/expert/38547 -https://www.oceanexpert.org/expert/27248 -https://www.oceanexpert.org/expert/24675 -https://www.oceanexpert.org/institution/21834 -https://www.oceanexpert.org/expert/20802 -https://www.oceanexpert.org/institution/11486 -https://www.oceanexpert.org/expert/36550 -https://www.oceanexpert.org/institution/21138 -https://www.oceanexpert.org/expert/22942 -https://www.oceanexpert.org/expert/44838 -https://www.oceanexpert.org/institution/10976 -https://www.oceanexpert.org/institution/5423 -https://www.oceanexpert.org/expert/48485 -https://www.oceanexpert.org/expert/32369 -https://www.oceanexpert.org/institution/8028 -https://www.oceanexpert.org/expert/21704 -https://www.oceanexpert.org/expert/45488 -https://www.oceanexpert.org/expert/45375 -https://www.oceanexpert.org/expert/26375 -https://www.oceanexpert.org/expert/46429 -https://www.oceanexpert.org/institution/21021 -https://www.oceanexpert.org/expert/32322 -https://www.oceanexpert.org/expert/20601 -https://www.oceanexpert.org/event/611 -https://www.oceanexpert.org/institution/12260 -https://www.oceanexpert.org/institution/14257 -https://www.oceanexpert.org/expert/44865 -https://www.oceanexpert.org/expert/46952 -https://www.oceanexpert.org/expert/24684 -https://www.oceanexpert.org/event/1835 -https://www.oceanexpert.org/expert/4194 -https://www.oceanexpert.org/institution/21799 -https://www.oceanexpert.org/expert/30562 -https://www.oceanexpert.org/expert/36454 -https://www.oceanexpert.org/expert/15383 -https://www.oceanexpert.org/expert/47057 -https://www.oceanexpert.org/expert/10052 -https://www.oceanexpert.org/expert/18878 -https://www.oceanexpert.org/expert/24050 -https://www.oceanexpert.org/institution/21936 -https://www.oceanexpert.org/expert/49044 -https://www.oceanexpert.org/expert/35861 -https://www.oceanexpert.org/expert/35349 -https://www.oceanexpert.org/expert/43888 -https://www.oceanexpert.org/expert/37803 -https://www.oceanexpert.org/institution/14217 -https://www.oceanexpert.org/expert/30323 -https://www.oceanexpert.org/institution/17573 -https://www.oceanexpert.org/event/157 -https://www.oceanexpert.org/expert/48168 -https://www.oceanexpert.org/expert/32524 -https://www.oceanexpert.org/expert/33447 -https://www.oceanexpert.org/expert/20539 -https://www.oceanexpert.org/event/2594 -https://www.oceanexpert.org/expert/14146 -https://www.oceanexpert.org/expert/25825 -https://www.oceanexpert.org/expert/43250 -https://www.oceanexpert.org/expert/33069 -https://www.oceanexpert.org/expert/25070 -https://www.oceanexpert.org/expert/4061 -https://www.oceanexpert.org/expert/45132 -https://www.oceanexpert.org/expert/27636 -https://www.oceanexpert.org/expert/30407 -https://www.oceanexpert.org/expert/16345 -https://www.oceanexpert.org/expert/42832 -https://www.oceanexpert.org/institution/19403 -https://www.oceanexpert.org/expert/27111 -https://www.oceanexpert.org/expert/44726 -https://www.oceanexpert.org/expert/22747 -https://www.oceanexpert.org/expert/662 -https://www.oceanexpert.org/institution/12169 -https://www.oceanexpert.org/expert/31869 -https://www.oceanexpert.org/expert/40573 -https://www.oceanexpert.org/expert/26679 -https://www.oceanexpert.org/expert/39577 -https://www.oceanexpert.org/expert/34515 -https://www.oceanexpert.org/event/393 -https://www.oceanexpert.org/expert/47000 -https://www.oceanexpert.org/institution/16791 -https://www.oceanexpert.org/expert/13678 -https://www.oceanexpert.org/event/2955 -https://www.oceanexpert.org/expert/48160 -https://www.oceanexpert.org/institution/11872 -https://www.oceanexpert.org/event/1970 -https://www.oceanexpert.org/expert/16718 -https://www.oceanexpert.org/expert/19523 -https://www.oceanexpert.org/expert/14155 -https://www.oceanexpert.org/institution/22117 -https://www.oceanexpert.org/event/1110 -https://www.oceanexpert.org/expert/29885 -https://www.oceanexpert.org/expert/26499 -https://www.oceanexpert.org/expert/34102 -https://www.oceanexpert.org/institution/20419 -https://www.oceanexpert.org/expert/20648 -https://www.oceanexpert.org/event/2777 -https://www.oceanexpert.org/expert/33757 -https://www.oceanexpert.org/event/3187 -https://www.oceanexpert.org/expert/24978 -https://www.oceanexpert.org/expert/19697 -https://www.oceanexpert.org/expert/34788 -https://www.oceanexpert.org/expert/6688 -https://www.oceanexpert.org/expert/5182 -https://www.oceanexpert.org/expert/45809 -https://www.oceanexpert.org/institution/16618 -https://www.oceanexpert.org/expert/24293 -https://www.oceanexpert.org/institution/15294 -https://www.oceanexpert.org/expert/36853 -https://www.oceanexpert.org/expert/22284 -https://www.oceanexpert.org/expert/27365 -https://www.oceanexpert.org/event/2441 -https://www.oceanexpert.org/expert/19344 -https://www.oceanexpert.org/institution/19805 -https://www.oceanexpert.org/event/2401 -https://www.oceanexpert.org/expert/17122 -https://www.oceanexpert.org/institution/16849 -https://www.oceanexpert.org/institution/15503 -https://www.oceanexpert.org/institution/21073 -https://www.oceanexpert.org/expert/14903 -https://www.oceanexpert.org/expert/19550 -https://www.oceanexpert.org/expert/46847 -https://www.oceanexpert.org/expert/26455 -https://www.oceanexpert.org/expert/48252 -https://www.oceanexpert.org/expert/19930 -https://www.oceanexpert.org/institution/17789 -https://www.oceanexpert.org/expert/27034 -https://www.oceanexpert.org/expert/33898 -https://www.oceanexpert.org/event/1716 -https://www.oceanexpert.org/institution/20136 -https://www.oceanexpert.org/institution/13419 -https://www.oceanexpert.org/expert/48563 -https://www.oceanexpert.org/institution/19112 -https://www.oceanexpert.org/institution/20863 -https://www.oceanexpert.org/expert/37593 -https://www.oceanexpert.org/expert/25309 -https://www.oceanexpert.org/expert/43563 -https://www.oceanexpert.org/expert/21358 -https://www.oceanexpert.org/expert/41570 -https://www.oceanexpert.org/expert/19566 -https://www.oceanexpert.org/institution/20171 -https://www.oceanexpert.org/expert/47260 -https://www.oceanexpert.org/institution/20874 -https://www.oceanexpert.org/institution/11792 -https://www.oceanexpert.org/institution/20839 -https://www.oceanexpert.org/expert/47352 -https://www.oceanexpert.org/expert/27103 -https://www.oceanexpert.org/expert/38474 -https://www.oceanexpert.org/expert/39981 -https://www.oceanexpert.org/expert/45695 -https://www.oceanexpert.org/institution/12691 -https://www.oceanexpert.org/expert/19282 -https://www.oceanexpert.org/expert/14433 -https://www.oceanexpert.org/institution/17076 -https://www.oceanexpert.org/expert/48058 -https://www.oceanexpert.org/institution/22069 -https://www.oceanexpert.org/expert/8066 -https://www.oceanexpert.org/institution/16060 -https://www.oceanexpert.org/expert/18623 -https://www.oceanexpert.org/expert/27163 -https://www.oceanexpert.org/expert/35537 -https://www.oceanexpert.org/expert/16722 -https://www.oceanexpert.org/institution/8994 -https://www.oceanexpert.org/event/464 -https://www.oceanexpert.org/expert/25331 -https://www.oceanexpert.org/expert/24418 -https://www.oceanexpert.org/expert/28119 -https://www.oceanexpert.org/expert/44575 -https://www.oceanexpert.org/expert/43267 -https://www.oceanexpert.org/institution/11220 -https://www.oceanexpert.org/expert/25393 -https://www.oceanexpert.org/expert/18215 -https://www.oceanexpert.org/expert/22535 -https://www.oceanexpert.org/expert/27158 -https://www.oceanexpert.org/expert/836 -https://www.oceanexpert.org/event/469 -https://www.oceanexpert.org/expert/43528 -https://www.oceanexpert.org/institution/16487 -https://www.oceanexpert.org/institution/19001 -https://www.oceanexpert.org/event/1799 -https://www.oceanexpert.org/institution/13519 -https://www.oceanexpert.org/expert/43250 -https://www.oceanexpert.org/expert/3969 -https://www.oceanexpert.org/expert/46102 -https://www.oceanexpert.org/expert/20074 -https://www.oceanexpert.org/expert/48618 -https://www.oceanexpert.org/event/199 -https://www.oceanexpert.org/expert/24430 -https://www.oceanexpert.org/expert/14780 -https://www.oceanexpert.org/expert/25428 -https://www.oceanexpert.org/expert/44419 -https://www.oceanexpert.org/expert/18569 -https://www.oceanexpert.org/expert/18614 -https://www.oceanexpert.org/institution/11674 -https://www.oceanexpert.org/event/394 -https://www.oceanexpert.org/expert/30278 -https://www.oceanexpert.org/expert/33250 -https://www.oceanexpert.org/expert/47226 -https://www.oceanexpert.org/institution/10186 -https://www.oceanexpert.org/institution/12468 -https://www.oceanexpert.org/expert/38200 -https://www.oceanexpert.org/expert/11746 -https://www.oceanexpert.org/expert/47400 -https://www.oceanexpert.org/expert/38034 -https://www.oceanexpert.org/expert/14090 -https://www.oceanexpert.org/expert/18021 -https://www.oceanexpert.org/expert/34591 -https://www.oceanexpert.org/event/1118 -https://www.oceanexpert.org/expert/27344 -https://www.oceanexpert.org/event/2115 -https://www.oceanexpert.org/expert/36856 -https://www.oceanexpert.org/institution/18007 -https://www.oceanexpert.org/expert/25085 -https://www.oceanexpert.org/institution/20640 -https://www.oceanexpert.org/institution/21223 -https://www.oceanexpert.org/expert/28316 -https://www.oceanexpert.org/institution/8113 -https://www.oceanexpert.org/event/2859 -https://www.oceanexpert.org/expert/47414 -https://www.oceanexpert.org/expert/39287 -https://www.oceanexpert.org/expert/42830 -https://www.oceanexpert.org/expert/26616 -https://www.oceanexpert.org/expert/45378 -https://www.oceanexpert.org/institution/21317 -https://www.oceanexpert.org/event/1406 -https://www.oceanexpert.org/event/2387 -https://www.oceanexpert.org/expert/37877 -https://www.oceanexpert.org/institution/11997 -https://www.oceanexpert.org/institution/18932 -https://www.oceanexpert.org/event/1784 -https://www.oceanexpert.org/expert/9580 -https://www.oceanexpert.org/expert/21046 -https://www.oceanexpert.org/institution/10097 -https://www.oceanexpert.org/institution/16885 -https://www.oceanexpert.org/institution/18897 -https://www.oceanexpert.org/expert/408 -https://www.oceanexpert.org/expert/44772 -https://www.oceanexpert.org/institution/15829 -https://www.oceanexpert.org/expert/42798 -https://www.oceanexpert.org/expert/17199 -https://www.oceanexpert.org/institution/11199 -https://www.oceanexpert.org/event/2862 -https://www.oceanexpert.org/expert/47484 -https://www.oceanexpert.org/expert/34944 -https://www.oceanexpert.org/event/2778 -https://www.oceanexpert.org/expert/20251 -https://www.oceanexpert.org/expert/28179 -https://www.oceanexpert.org/expert/23679 -https://www.oceanexpert.org/expert/34623 -https://www.oceanexpert.org/expert/35558 -https://www.oceanexpert.org/institution/19055 -https://www.oceanexpert.org/expert/12246 -https://www.oceanexpert.org/expert/21888 -https://www.oceanexpert.org/institution/21243 -https://www.oceanexpert.org/event/2928 -https://www.oceanexpert.org/expert/29383 -https://www.oceanexpert.org/expert/35957 -https://www.oceanexpert.org/event/667 -https://www.oceanexpert.org/expert/28488 -https://www.oceanexpert.org/expert/1189 -https://www.oceanexpert.org/expert/19595 -https://www.oceanexpert.org/institution/19740 -https://www.oceanexpert.org/expert/40338 -https://www.oceanexpert.org/institution/14703 -https://www.oceanexpert.org/expert/2150 -https://www.oceanexpert.org/institution/12914 -https://www.oceanexpert.org/institution/15676 -https://www.oceanexpert.org/expert/46865 -https://www.oceanexpert.org/expert/16863 -https://www.oceanexpert.org/expert/20469 -https://www.oceanexpert.org/institution/11215 -https://www.oceanexpert.org/institution/21166 -https://www.oceanexpert.org/expert/28075 -https://www.oceanexpert.org/expert/10046 -https://www.oceanexpert.org/expert/28816 -https://www.oceanexpert.org/institution/7860 -https://www.oceanexpert.org/expert/32513 -https://www.oceanexpert.org/expert/37018 -https://www.oceanexpert.org/expert/48352 -https://www.oceanexpert.org/expert/18693 -https://www.oceanexpert.org/expert/24840 -https://www.oceanexpert.org/expert/26096 -https://www.oceanexpert.org/expert/33373 -https://www.oceanexpert.org/institution/11352 -https://www.oceanexpert.org/expert/26170 -https://www.oceanexpert.org/event/2761 -https://www.oceanexpert.org/expert/6800 -https://www.oceanexpert.org/institution/15061 -https://www.oceanexpert.org/expert/22251 -https://www.oceanexpert.org/institution/21504 -https://www.oceanexpert.org/expert/35533 -https://www.oceanexpert.org/expert/26610 -https://www.oceanexpert.org/expert/16823 -https://www.oceanexpert.org/event/1515 -https://www.oceanexpert.org/expert/35721 -https://www.oceanexpert.org/expert/43542 -https://www.oceanexpert.org/expert/20893 -https://www.oceanexpert.org/institution/19326 -https://www.oceanexpert.org/expert/47773 -https://www.oceanexpert.org/expert/4452 -https://www.oceanexpert.org/expert/39367 -https://www.oceanexpert.org/institution/12307 -https://www.oceanexpert.org/expert/33771 -https://www.oceanexpert.org/expert/19939 -https://www.oceanexpert.org/expert/48724 -https://www.oceanexpert.org/expert/19579 -https://www.oceanexpert.org/expert/22409 -https://www.oceanexpert.org/expert/29381 -https://www.oceanexpert.org/institution/7562 -https://www.oceanexpert.org/expert/12535 -https://www.oceanexpert.org/expert/24216 -https://www.oceanexpert.org/expert/24617 -https://www.oceanexpert.org/expert/28755 -https://www.oceanexpert.org/institution/18962 -https://www.oceanexpert.org/institution/21901 -https://www.oceanexpert.org/event/1517 -https://www.oceanexpert.org/expert/45027 -https://www.oceanexpert.org/event/877 -https://www.oceanexpert.org/institution/11518 -https://www.oceanexpert.org/institution/20518 -https://www.oceanexpert.org/expert/18912 -https://www.oceanexpert.org/institution/18585 -https://www.oceanexpert.org/expert/46008 -https://www.oceanexpert.org/expert/23191 -https://www.oceanexpert.org/expert/23860 -https://www.oceanexpert.org/institution/19880 -https://www.oceanexpert.org/expert/23197 -https://www.oceanexpert.org/expert/21213 -https://www.oceanexpert.org/institution/21568 -https://www.oceanexpert.org/event/1259 -https://www.oceanexpert.org/expert/28394 -https://www.oceanexpert.org/event/2379 -https://www.oceanexpert.org/event/254 -https://www.oceanexpert.org/expert/29370 -https://www.oceanexpert.org/institution/5349 -https://www.oceanexpert.org/expert/13137 -https://www.oceanexpert.org/institution/20623 -https://www.oceanexpert.org/institution/10331 -https://www.oceanexpert.org/institution/14392 -https://www.oceanexpert.org/expert/44984 -https://www.oceanexpert.org/institution/21007 -https://www.oceanexpert.org/expert/20993 -https://www.oceanexpert.org/expert/26147 -https://www.oceanexpert.org/expert/47762 -https://www.oceanexpert.org/expert/16955 -https://www.oceanexpert.org/institution/12561 -https://www.oceanexpert.org/expert/25294 -https://www.oceanexpert.org/institution/12435 -https://www.oceanexpert.org/institution/5838 -https://www.oceanexpert.org/event/2914 -https://www.oceanexpert.org/expert/43380 -https://www.oceanexpert.org/expert/43754 -https://www.oceanexpert.org/event/2082 -https://www.oceanexpert.org/institution/20345 -https://www.oceanexpert.org/expert/22902 -https://www.oceanexpert.org/expert/35750 -https://www.oceanexpert.org/institution/21908 -https://www.oceanexpert.org/expert/1076 -https://www.oceanexpert.org/expert/30446 -https://www.oceanexpert.org/expert/24532 -https://www.oceanexpert.org/expert/32779 -https://www.oceanexpert.org/expert/35000 -https://www.oceanexpert.org/expert/21446 -https://www.oceanexpert.org/institution/7610 -https://www.oceanexpert.org/expert/37896 -https://www.oceanexpert.org/expert/15418 -https://www.oceanexpert.org/event/1716 -https://www.oceanexpert.org/institution/14637 -https://www.oceanexpert.org/institution/13940 -https://www.oceanexpert.org/institution/11157 -https://www.oceanexpert.org/expert/33399 -https://www.oceanexpert.org/expert/30527 -https://www.oceanexpert.org/expert/35853 -https://www.oceanexpert.org/expert/43249 -https://www.oceanexpert.org/expert/16304 -https://www.oceanexpert.org/expert/47671 -https://www.oceanexpert.org/institution/10525 -https://www.oceanexpert.org/expert/33995 -https://www.oceanexpert.org/institution/20308 -https://www.oceanexpert.org/institution/21538 -https://www.oceanexpert.org/institution/18512 -https://www.oceanexpert.org/expert/25015 -https://www.oceanexpert.org/expert/46856 -https://www.oceanexpert.org/expert/23782 -https://www.oceanexpert.org/institution/21695 -https://www.oceanexpert.org/expert/21864 -https://www.oceanexpert.org/expert/17195 -https://www.oceanexpert.org/institution/13433 -https://www.oceanexpert.org/expert/15092 -https://www.oceanexpert.org/expert/43352 -https://www.oceanexpert.org/institution/21378 -https://www.oceanexpert.org/institution/21081 -https://www.oceanexpert.org/expert/23216 -https://www.oceanexpert.org/institution/18838 -https://www.oceanexpert.org/expert/43018 -https://www.oceanexpert.org/institution/9776 -https://www.oceanexpert.org/expert/24301 -https://www.oceanexpert.org/event/812 -https://www.oceanexpert.org/institution/17913 -https://www.oceanexpert.org/institution/20332 -https://www.oceanexpert.org/expert/46760 -https://www.oceanexpert.org/expert/22853 -https://www.oceanexpert.org/expert/20371 -https://www.oceanexpert.org/expert/12934 -https://www.oceanexpert.org/institution/10836 -https://www.oceanexpert.org/expert/34891 -https://www.oceanexpert.org/expert/34376 -https://www.oceanexpert.org/expert/21854 -https://www.oceanexpert.org/institution/19710 -https://www.oceanexpert.org/expert/47095 -https://www.oceanexpert.org/institution/18926 -https://www.oceanexpert.org/expert/42809 -https://www.oceanexpert.org/expert/43132 -https://www.oceanexpert.org/expert/48978 -https://www.oceanexpert.org/expert/40257 -https://www.oceanexpert.org/expert/22108 -https://www.oceanexpert.org/institution/19686 -https://www.oceanexpert.org/expert/23121 -https://www.oceanexpert.org/expert/37453 -https://www.oceanexpert.org/institution/8770 -https://www.oceanexpert.org/event/2904 -https://www.oceanexpert.org/expert/39261 -https://www.oceanexpert.org/expert/37191 -https://www.oceanexpert.org/expert/19697 -https://www.oceanexpert.org/expert/23062 -https://www.oceanexpert.org/expert/45827 -https://www.oceanexpert.org/expert/279 -https://www.oceanexpert.org/expert/26273 -https://www.oceanexpert.org/expert/10070 -https://www.oceanexpert.org/institution/8413 -https://www.oceanexpert.org/expert/21872 -https://www.oceanexpert.org/institution/21953 -https://www.oceanexpert.org/expert/605 -https://www.oceanexpert.org/expert/43363 -https://www.oceanexpert.org/institution/8173 -https://www.oceanexpert.org/expert/19950 -https://www.oceanexpert.org/expert/865 -https://www.oceanexpert.org/expert/47855 -https://www.oceanexpert.org/event/1146 -https://www.oceanexpert.org/expert/16291 -https://www.oceanexpert.org/expert/36084 -https://www.oceanexpert.org/expert/37143 -https://www.oceanexpert.org/expert/47118 -https://www.oceanexpert.org/institution/15827 -https://www.oceanexpert.org/event/2347 -https://www.oceanexpert.org/institution/18480 -https://www.oceanexpert.org/expert/43674 -https://www.oceanexpert.org/expert/45347 -https://www.oceanexpert.org/expert/46662 -https://www.oceanexpert.org/expert/26053 -https://www.oceanexpert.org/expert/25210 -https://www.oceanexpert.org/expert/16575 -https://www.oceanexpert.org/institution/9870 -https://www.oceanexpert.org/expert/44096 -https://www.oceanexpert.org/expert/43236 -https://www.oceanexpert.org/expert/45737 -https://www.oceanexpert.org/expert/35429 -https://www.oceanexpert.org/expert/39276 -https://www.oceanexpert.org/institution/21322 -https://www.oceanexpert.org/expert/33548 -https://www.oceanexpert.org/event/255 -https://www.oceanexpert.org/expert/21401 -https://www.oceanexpert.org/expert/24475 -https://www.oceanexpert.org/institution/18379 -https://www.oceanexpert.org/expert/27544 -https://www.oceanexpert.org/expert/31697 -https://www.oceanexpert.org/institution/13402 -https://www.oceanexpert.org/institution/17611 -https://www.oceanexpert.org/expert/44223 -https://www.oceanexpert.org/event/926 -https://www.oceanexpert.org/expert/35007 -https://www.oceanexpert.org/expert/19953 -https://www.oceanexpert.org/expert/34241 -https://www.oceanexpert.org/institution/19751 -https://www.oceanexpert.org/expert/36489 -https://www.oceanexpert.org/expert/36905 -https://www.oceanexpert.org/institution/21019 -https://www.oceanexpert.org/expert/35592 -https://www.oceanexpert.org/expert/31115 -https://www.oceanexpert.org/expert/40262 -https://www.oceanexpert.org/institution/13951 -https://www.oceanexpert.org/expert/34236 -https://www.oceanexpert.org/institution/18689 -https://www.oceanexpert.org/event/2203 -https://www.oceanexpert.org/expert/37260 -https://www.oceanexpert.org/institution/20183 -https://www.oceanexpert.org/event/1039 -https://www.oceanexpert.org/institution/19599 -https://www.oceanexpert.org/expert/37064 -https://www.oceanexpert.org/institution/14082 -https://www.oceanexpert.org/institution/18325 -https://www.oceanexpert.org/expert/19230 -https://www.oceanexpert.org/institution/8034 -https://www.oceanexpert.org/event/3280 -https://www.oceanexpert.org/expert/15012 -https://www.oceanexpert.org/expert/13050 -https://www.oceanexpert.org/event/124 -https://www.oceanexpert.org/expert/20114 -https://www.oceanexpert.org/institution/21964 -https://www.oceanexpert.org/expert/19768 -https://www.oceanexpert.org/expert/16763 -https://www.oceanexpert.org/expert/22788 -https://www.oceanexpert.org/expert/35358 -https://www.oceanexpert.org/expert/20053 -https://www.oceanexpert.org/institution/18618 -https://www.oceanexpert.org/expert/27476 -https://www.oceanexpert.org/event/1445 -https://www.oceanexpert.org/institution/15270 -https://www.oceanexpert.org/institution/21281 -https://www.oceanexpert.org/expert/20797 -https://www.oceanexpert.org/institution/15806 -https://www.oceanexpert.org/expert/31124 -https://www.oceanexpert.org/institution/11377 -https://www.oceanexpert.org/institution/10992 -https://www.oceanexpert.org/expert/18632 -https://www.oceanexpert.org/event/863 -https://www.oceanexpert.org/expert/39455 -https://www.oceanexpert.org/institution/6161 -https://www.oceanexpert.org/event/3078 -https://www.oceanexpert.org/institution/15675 -https://www.oceanexpert.org/expert/11507 -https://www.oceanexpert.org/expert/48289 -https://www.oceanexpert.org/expert/37009 -https://www.oceanexpert.org/expert/28398 -https://www.oceanexpert.org/expert/19746 -https://www.oceanexpert.org/institution/6638 -https://www.oceanexpert.org/expert/32468 -https://www.oceanexpert.org/event/1669 -https://www.oceanexpert.org/event/1213 -https://www.oceanexpert.org/institution/22157 -https://www.oceanexpert.org/institution/20617 -https://www.oceanexpert.org/expert/45067 -https://www.oceanexpert.org/expert/37198 -https://www.oceanexpert.org/expert/35661 -https://www.oceanexpert.org/expert/49006 -https://www.oceanexpert.org/expert/37064 -https://www.oceanexpert.org/institution/11362 -https://www.oceanexpert.org/expert/2830 -https://www.oceanexpert.org/expert/48878 -https://www.oceanexpert.org/institution/9530 -https://www.oceanexpert.org/expert/26135 -https://www.oceanexpert.org/institution/15727 -https://www.oceanexpert.org/expert/30288 -https://www.oceanexpert.org/institution/21971 -https://www.oceanexpert.org/expert/34816 -https://www.oceanexpert.org/expert/30560 -https://www.oceanexpert.org/expert/25721 -https://www.oceanexpert.org/expert/24799 -https://www.oceanexpert.org/expert/43053 -https://www.oceanexpert.org/expert/48356 -https://www.oceanexpert.org/event/1214 -https://www.oceanexpert.org/expert/28488 -https://www.oceanexpert.org/expert/32146 -https://www.oceanexpert.org/expert/48860 -https://www.oceanexpert.org/expert/26823 -https://www.oceanexpert.org/institution/21699 -https://www.oceanexpert.org/expert/47033 -https://www.oceanexpert.org/expert/43189 -https://www.oceanexpert.org/institution/20122 -https://www.oceanexpert.org/expert/45573 -https://www.oceanexpert.org/expert/40874 -https://www.oceanexpert.org/expert/22060 -https://www.oceanexpert.org/institution/21771 -https://www.oceanexpert.org/expert/20054 -https://www.oceanexpert.org/institution/21299 -https://www.oceanexpert.org/expert/785 -https://www.oceanexpert.org/institution/16317 -https://www.oceanexpert.org/expert/25736 -https://www.oceanexpert.org/institution/19004 -https://www.oceanexpert.org/institution/14808 -https://www.oceanexpert.org/institution/20801 -https://www.oceanexpert.org/institution/21830 -https://www.oceanexpert.org/expert/16646 -https://www.oceanexpert.org/institution/6149 -https://www.oceanexpert.org/expert/26870 -https://www.oceanexpert.org/expert/30463 -https://www.oceanexpert.org/expert/16915 -https://www.oceanexpert.org/expert/24070 -https://www.oceanexpert.org/expert/36229 -https://www.oceanexpert.org/institution/13829 -https://www.oceanexpert.org/expert/36170 -https://www.oceanexpert.org/expert/27661 -https://www.oceanexpert.org/expert/33280 -https://www.oceanexpert.org/institution/21745 -https://www.oceanexpert.org/event/922 -https://www.oceanexpert.org/institution/13667 -https://www.oceanexpert.org/expert/16012 -https://www.oceanexpert.org/institution/13026 -https://www.oceanexpert.org/expert/27836 -https://www.oceanexpert.org/expert/35062 -https://www.oceanexpert.org/expert/28193 -https://www.oceanexpert.org/expert/25579 -https://www.oceanexpert.org/institution/14150 -https://www.oceanexpert.org/expert/38052 -https://www.oceanexpert.org/expert/44126 -https://www.oceanexpert.org/expert/17035 -https://www.oceanexpert.org/expert/32921 -https://www.oceanexpert.org/expert/45889 -https://www.oceanexpert.org/expert/43999 -https://www.oceanexpert.org/expert/25776 -https://www.oceanexpert.org/expert/12901 -https://www.oceanexpert.org/institution/18594 -https://www.oceanexpert.org/expert/35998 -https://www.oceanexpert.org/expert/48155 -https://www.oceanexpert.org/expert/36893 -https://www.oceanexpert.org/institution/14553 -https://www.oceanexpert.org/institution/18261 -https://www.oceanexpert.org/expert/6634 -https://www.oceanexpert.org/institution/21244 -https://www.oceanexpert.org/expert/24452 -https://www.oceanexpert.org/expert/30072 -https://www.oceanexpert.org/expert/14991 -https://www.oceanexpert.org/expert/45574 -https://www.oceanexpert.org/event/632 -https://www.oceanexpert.org/expert/38240 -https://www.oceanexpert.org/expert/23664 -https://www.oceanexpert.org/expert/46915 -https://www.oceanexpert.org/event/2794 -https://www.oceanexpert.org/expert/43888 -https://www.oceanexpert.org/institution/18994 -https://www.oceanexpert.org/event/1904 -https://www.oceanexpert.org/expert/26216 -https://www.oceanexpert.org/expert/32445 -https://www.oceanexpert.org/event/2135 -https://www.oceanexpert.org/institution/18544 -https://www.oceanexpert.org/expert/18917 -https://www.oceanexpert.org/institution/18911 -https://www.oceanexpert.org/institution/17769 -https://www.oceanexpert.org/expert/18821 -https://www.oceanexpert.org/expert/30247 -https://www.oceanexpert.org/event/2859 -https://www.oceanexpert.org/expert/31457 -https://www.oceanexpert.org/expert/38362 -https://www.oceanexpert.org/expert/39257 -https://www.oceanexpert.org/expert/46748 -https://www.oceanexpert.org/institution/20849 -https://www.oceanexpert.org/institution/7676 -https://www.oceanexpert.org/expert/11949 -https://www.oceanexpert.org/institution/20159 -https://www.oceanexpert.org/institution/21426 -https://www.oceanexpert.org/expert/30589 -https://www.oceanexpert.org/event/2059 -https://www.oceanexpert.org/expert/24885 -https://www.oceanexpert.org/institution/9853 -https://www.oceanexpert.org/expert/23954 -https://www.oceanexpert.org/expert/46423 -https://www.oceanexpert.org/expert/44966 -https://www.oceanexpert.org/expert/24700 -https://www.oceanexpert.org/institution/14641 -https://www.oceanexpert.org/institution/22051 -https://www.oceanexpert.org/expert/26832 -https://www.oceanexpert.org/expert/43027 -https://www.oceanexpert.org/expert/42782 -https://www.oceanexpert.org/institution/4915 -https://www.oceanexpert.org/event/318 -https://www.oceanexpert.org/institution/20301 -https://www.oceanexpert.org/expert/37920 -https://www.oceanexpert.org/expert/23739 -https://www.oceanexpert.org/expert/42493 -https://www.oceanexpert.org/expert/21620 -https://www.oceanexpert.org/event/805 -https://www.oceanexpert.org/expert/36132 -https://www.oceanexpert.org/expert/23993 -https://www.oceanexpert.org/event/86 -https://www.oceanexpert.org/institution/18397 -https://www.oceanexpert.org/institution/19893 -https://www.oceanexpert.org/expert/29376 -https://www.oceanexpert.org/expert/529 -https://www.oceanexpert.org/expert/47918 -https://www.oceanexpert.org/expert/17945 -https://www.oceanexpert.org/expert/32961 -https://www.oceanexpert.org/expert/42923 -https://www.oceanexpert.org/event/2202 -https://www.oceanexpert.org/expert/37310 -https://www.oceanexpert.org/institution/13278 -https://www.oceanexpert.org/expert/18242 -https://www.oceanexpert.org/expert/47191 -https://www.oceanexpert.org/institution/14722 -https://www.oceanexpert.org/expert/26630 -https://www.oceanexpert.org/expert/47065 -https://www.oceanexpert.org/institution/11329 -https://www.oceanexpert.org/expert/30480 -https://www.oceanexpert.org/expert/20486 -https://www.oceanexpert.org/event/2891 -https://www.oceanexpert.org/expert/7460 -https://www.oceanexpert.org/expert/40707 -https://www.oceanexpert.org/expert/224 -https://www.oceanexpert.org/institution/18847 -https://www.oceanexpert.org/expert/3818 -https://www.oceanexpert.org/expert/16635 -https://www.oceanexpert.org/expert/39965 -https://www.oceanexpert.org/expert/46349 -https://www.oceanexpert.org/institution/13208 -https://www.oceanexpert.org/institution/20051 -https://www.oceanexpert.org/expert/21674 -https://www.oceanexpert.org/institution/19165 -https://www.oceanexpert.org/institution/19152 -https://www.oceanexpert.org/expert/19862 -https://www.oceanexpert.org/expert/24671 -https://www.oceanexpert.org/expert/47302 -https://www.oceanexpert.org/expert/8153 -https://www.oceanexpert.org/institution/5851 -https://www.oceanexpert.org/event/2202 -https://www.oceanexpert.org/expert/20071 -https://www.oceanexpert.org/expert/47037 -https://www.oceanexpert.org/expert/15862 -https://www.oceanexpert.org/event/1200 -https://www.oceanexpert.org/expert/26907 -https://www.oceanexpert.org/institution/11171 -https://www.oceanexpert.org/expert/37096 -https://www.oceanexpert.org/institution/21735 -https://www.oceanexpert.org/expert/36372 -https://www.oceanexpert.org/expert/29755 -https://www.oceanexpert.org/expert/31209 -https://www.oceanexpert.org/institution/21173 -https://www.oceanexpert.org/expert/19340 -https://www.oceanexpert.org/expert/44103 -https://www.oceanexpert.org/expert/34210 -https://www.oceanexpert.org/expert/44026 -https://www.oceanexpert.org/institution/5503 -https://www.oceanexpert.org/expert/36257 -https://www.oceanexpert.org/event/2614 -https://www.oceanexpert.org/expert/19897 -https://www.oceanexpert.org/institution/18189 -https://www.oceanexpert.org/institution/19159 -https://www.oceanexpert.org/expert/23259 -https://www.oceanexpert.org/expert/25005 -https://www.oceanexpert.org/expert/26834 -https://www.oceanexpert.org/event/2936 -https://www.oceanexpert.org/expert/19092 -https://www.oceanexpert.org/institution/19768 -https://www.oceanexpert.org/expert/12551 -https://www.oceanexpert.org/expert/35394 -https://www.oceanexpert.org/expert/39668 -https://www.oceanexpert.org/expert/34957 -https://www.oceanexpert.org/event/2089 -https://www.oceanexpert.org/event/1504 -https://www.oceanexpert.org/institution/21322 -https://www.oceanexpert.org/expert/36804 -https://www.oceanexpert.org/expert/48842 -https://www.oceanexpert.org/expert/39994 -https://www.oceanexpert.org/expert/2664 -https://www.oceanexpert.org/institution/6094 -https://www.oceanexpert.org/expert/36935 -https://www.oceanexpert.org/expert/40643 -https://www.oceanexpert.org/expert/33476 -https://www.oceanexpert.org/expert/24930 -https://www.oceanexpert.org/expert/32815 -https://www.oceanexpert.org/institution/18352 -https://www.oceanexpert.org/expert/44921 -https://www.oceanexpert.org/expert/49032 -https://www.oceanexpert.org/institution/18392 -https://www.oceanexpert.org/institution/19496 -https://www.oceanexpert.org/institution/5788 -https://www.oceanexpert.org/expert/45552 -https://www.oceanexpert.org/expert/32486 -https://www.oceanexpert.org/expert/45707 -https://www.oceanexpert.org/expert/34745 -https://www.oceanexpert.org/expert/26285 -https://www.oceanexpert.org/institution/14907 -https://www.oceanexpert.org/expert/34797 -https://www.oceanexpert.org/institution/21250 -https://www.oceanexpert.org/expert/36996 -https://www.oceanexpert.org/expert/19230 -https://www.oceanexpert.org/expert/36770 -https://www.oceanexpert.org/expert/45793 -https://www.oceanexpert.org/institution/18325 -https://www.oceanexpert.org/expert/28825 -https://www.oceanexpert.org/institution/17803 -https://www.oceanexpert.org/expert/17717 -https://www.oceanexpert.org/expert/35566 -https://www.oceanexpert.org/event/214 -https://www.oceanexpert.org/institution/18473 -https://www.oceanexpert.org/expert/24866 -https://www.oceanexpert.org/institution/22034 -https://www.oceanexpert.org/expert/19865 -https://www.oceanexpert.org/expert/48622 -https://www.oceanexpert.org/expert/45905 -https://www.oceanexpert.org/expert/24455 -https://www.oceanexpert.org/institution/16968 -https://www.oceanexpert.org/expert/126 -https://www.oceanexpert.org/expert/45769 -https://www.oceanexpert.org/event/1228 -https://www.oceanexpert.org/expert/10070 -https://www.oceanexpert.org/institution/18548 -https://www.oceanexpert.org/expert/17394 -https://www.oceanexpert.org/expert/35817 -https://www.oceanexpert.org/expert/25027 -https://www.oceanexpert.org/expert/29813 -https://www.oceanexpert.org/expert/6010 -https://www.oceanexpert.org/expert/23638 -https://www.oceanexpert.org/institution/18220 -https://www.oceanexpert.org/expert/24986 -https://www.oceanexpert.org/expert/36450 -https://www.oceanexpert.org/expert/23627 -https://www.oceanexpert.org/expert/20325 -https://www.oceanexpert.org/expert/27101 -https://www.oceanexpert.org/expert/9592 -https://www.oceanexpert.org/expert/13259 -https://www.oceanexpert.org/expert/18387 -https://www.oceanexpert.org/expert/29622 -https://www.oceanexpert.org/expert/45810 -https://www.oceanexpert.org/institution/20630 -https://www.oceanexpert.org/expert/26321 -https://www.oceanexpert.org/institution/13149 -https://www.oceanexpert.org/institution/21604 -https://www.oceanexpert.org/expert/36105 -https://www.oceanexpert.org/institution/15128 -https://www.oceanexpert.org/expert/19283 -https://www.oceanexpert.org/expert/48385 -https://www.oceanexpert.org/expert/13552 -https://www.oceanexpert.org/expert/11424 -https://www.oceanexpert.org/expert/22185 -https://www.oceanexpert.org/expert/47422 -https://www.oceanexpert.org/institution/14414 -https://www.oceanexpert.org/expert/43278 -https://www.oceanexpert.org/institution/19611 -https://www.oceanexpert.org/expert/28571 -https://www.oceanexpert.org/expert/12442 -https://www.oceanexpert.org/expert/25852 -https://www.oceanexpert.org/institution/13534 -https://www.oceanexpert.org/expert/22585 -https://www.oceanexpert.org/expert/14181 -https://www.oceanexpert.org/expert/35925 -https://www.oceanexpert.org/expert/26484 -https://www.oceanexpert.org/expert/36494 -https://www.oceanexpert.org/institution/15389 -https://www.oceanexpert.org/institution/17433 -https://www.oceanexpert.org/expert/25057 -https://www.oceanexpert.org/institution/9994 -https://www.oceanexpert.org/expert/44847 -https://www.oceanexpert.org/institution/5627 -https://www.oceanexpert.org/expert/20443 -https://www.oceanexpert.org/expert/24621 -https://www.oceanexpert.org/expert/26174 -https://www.oceanexpert.org/expert/22374 -https://www.oceanexpert.org/expert/44294 -https://www.oceanexpert.org/institution/17055 -https://www.oceanexpert.org/institution/19525 -https://www.oceanexpert.org/event/2550 -https://www.oceanexpert.org/institution/20763 -https://www.oceanexpert.org/event/1780 -https://www.oceanexpert.org/expert/15507 -https://www.oceanexpert.org/institution/17016 -https://www.oceanexpert.org/expert/37660 -https://www.oceanexpert.org/institution/19243 -https://www.oceanexpert.org/expert/46206 -https://www.oceanexpert.org/expert/34540 -https://www.oceanexpert.org/expert/36522 -https://www.oceanexpert.org/expert/48735 -https://www.oceanexpert.org/expert/18565 -https://www.oceanexpert.org/expert/19454 -https://www.oceanexpert.org/institution/19783 -https://www.oceanexpert.org/expert/48978 -https://www.oceanexpert.org/expert/16968 -https://www.oceanexpert.org/expert/47161 -https://www.oceanexpert.org/institution/12941 -https://www.oceanexpert.org/expert/43266 -https://www.oceanexpert.org/expert/25480 -https://www.oceanexpert.org/expert/13996 -https://www.oceanexpert.org/institution/21755 -https://www.oceanexpert.org/institution/21958 -https://www.oceanexpert.org/event/1063 -https://www.oceanexpert.org/expert/24601 -https://www.oceanexpert.org/institution/21451 -https://www.oceanexpert.org/expert/34922 -https://www.oceanexpert.org/expert/24506 -https://www.oceanexpert.org/expert/36823 -https://www.oceanexpert.org/expert/33688 -https://www.oceanexpert.org/expert/21779 -https://www.oceanexpert.org/expert/13426 -https://www.oceanexpert.org/expert/29099 -https://www.oceanexpert.org/expert/29176 -https://www.oceanexpert.org/institution/20170 -https://www.oceanexpert.org/expert/36649 -https://www.oceanexpert.org/institution/14099 -https://www.oceanexpert.org/expert/17329 -https://www.oceanexpert.org/event/1541 -https://www.oceanexpert.org/expert/43254 -https://www.oceanexpert.org/institution/18971 -https://www.oceanexpert.org/expert/36697 -https://www.oceanexpert.org/expert/19114 -https://www.oceanexpert.org/expert/27290 -https://www.oceanexpert.org/institution/13509 -https://www.oceanexpert.org/expert/15176 -https://www.oceanexpert.org/expert/31621 -https://www.oceanexpert.org/event/3114 -https://www.oceanexpert.org/institution/19405 -https://www.oceanexpert.org/expert/47132 -https://www.oceanexpert.org/expert/24522 -https://www.oceanexpert.org/expert/22275 -https://www.oceanexpert.org/expert/47783 -https://www.oceanexpert.org/expert/25008 -https://www.oceanexpert.org/expert/48796 -https://www.oceanexpert.org/institution/18843 -https://www.oceanexpert.org/event/1825 -https://www.oceanexpert.org/expert/36468 -https://www.oceanexpert.org/expert/8744 -https://www.oceanexpert.org/expert/46822 -https://www.oceanexpert.org/institution/14515 -https://www.oceanexpert.org/institution/19434 -https://www.oceanexpert.org/event/1950 -https://www.oceanexpert.org/expert/24240 -https://www.oceanexpert.org/expert/18331 -https://www.oceanexpert.org/institution/18991 -https://www.oceanexpert.org/expert/27243 -https://www.oceanexpert.org/expert/21068 -https://www.oceanexpert.org/expert/26190 -https://www.oceanexpert.org/expert/27486 -https://www.oceanexpert.org/expert/19915 -https://www.oceanexpert.org/institution/19006 -https://www.oceanexpert.org/expert/23020 -https://www.oceanexpert.org/institution/7963 -https://www.oceanexpert.org/expert/46904 -https://www.oceanexpert.org/expert/28360 -https://www.oceanexpert.org/expert/47166 -https://www.oceanexpert.org/expert/42597 -https://www.oceanexpert.org/expert/20145 -https://www.oceanexpert.org/event/633 -https://www.oceanexpert.org/expert/39999 -https://www.oceanexpert.org/event/3106 -https://www.oceanexpert.org/expert/48578 -https://www.oceanexpert.org/expert/38091 -https://www.oceanexpert.org/expert/23194 -https://www.oceanexpert.org/expert/18036 -https://www.oceanexpert.org/expert/35311 -https://www.oceanexpert.org/expert/26840 -https://www.oceanexpert.org/expert/27578 -https://www.oceanexpert.org/expert/38142 -https://www.oceanexpert.org/event/1053 -https://www.oceanexpert.org/expert/2206 -https://www.oceanexpert.org/expert/27662 -https://www.oceanexpert.org/institution/11172 -https://www.oceanexpert.org/expert/25134 -https://www.oceanexpert.org/expert/35807 -https://www.oceanexpert.org/expert/38288 -https://www.oceanexpert.org/expert/23475 -https://www.oceanexpert.org/expert/46235 -https://www.oceanexpert.org/expert/16389 -https://www.oceanexpert.org/expert/27234 -https://www.oceanexpert.org/expert/78 -https://www.oceanexpert.org/institution/13418 -https://www.oceanexpert.org/expert/47202 -https://www.oceanexpert.org/expert/11840 -https://www.oceanexpert.org/institution/16706 -https://www.oceanexpert.org/expert/36302 -https://www.oceanexpert.org/institution/19295 -https://www.oceanexpert.org/institution/18521 -https://www.oceanexpert.org/expert/18718 -https://www.oceanexpert.org/institution/18967 -https://www.oceanexpert.org/expert/44328 -https://www.oceanexpert.org/expert/18149 -https://www.oceanexpert.org/expert/38072 -https://www.oceanexpert.org/expert/20811 -https://www.oceanexpert.org/expert/35586 -https://www.oceanexpert.org/expert/32123 -https://www.oceanexpert.org/institution/19840 -https://www.oceanexpert.org/expert/39252 -https://www.oceanexpert.org/expert/23608 -https://www.oceanexpert.org/expert/16805 -https://www.oceanexpert.org/institution/13489 -https://www.oceanexpert.org/expert/33637 -https://www.oceanexpert.org/expert/47139 -https://www.oceanexpert.org/expert/24949 -https://www.oceanexpert.org/expert/11623 -https://www.oceanexpert.org/expert/39619 -https://www.oceanexpert.org/expert/47299 -https://www.oceanexpert.org/expert/23014 -https://www.oceanexpert.org/expert/39270 -https://www.oceanexpert.org/expert/33024 -https://www.oceanexpert.org/expert/36998 -https://www.oceanexpert.org/expert/25297 -https://www.oceanexpert.org/expert/27341 -https://www.oceanexpert.org/institution/19576 -https://www.oceanexpert.org/institution/13234 -https://www.oceanexpert.org/event/1633 -https://www.oceanexpert.org/expert/37436 -https://www.oceanexpert.org/expert/2090 -https://www.oceanexpert.org/expert/30108 -https://www.oceanexpert.org/expert/42559 -https://www.oceanexpert.org/expert/38966 -https://www.oceanexpert.org/institution/17021 -https://www.oceanexpert.org/institution/18040 -https://www.oceanexpert.org/expert/12201 -https://www.oceanexpert.org/institution/14232 -https://www.oceanexpert.org/expert/25114 -https://www.oceanexpert.org/event/2749 -https://www.oceanexpert.org/event/829 -https://www.oceanexpert.org/expert/22881 -https://www.oceanexpert.org/event/306 -https://www.oceanexpert.org/expert/42845 -https://www.oceanexpert.org/expert/39654 -https://www.oceanexpert.org/expert/16990 -https://www.oceanexpert.org/expert/47185 -https://www.oceanexpert.org/expert/36347 -https://www.oceanexpert.org/expert/28368 -https://www.oceanexpert.org/expert/35420 -https://www.oceanexpert.org/institution/17852 -https://www.oceanexpert.org/institution/21446 -https://www.oceanexpert.org/institution/10589 -https://www.oceanexpert.org/expert/27672 -https://www.oceanexpert.org/expert/27873 -https://www.oceanexpert.org/expert/37649 -https://www.oceanexpert.org/expert/8241 -https://www.oceanexpert.org/expert/22213 -https://www.oceanexpert.org/expert/40649 -https://www.oceanexpert.org/expert/44376 -https://www.oceanexpert.org/expert/7024 -https://www.oceanexpert.org/expert/29774 -https://www.oceanexpert.org/institution/19085 -https://www.oceanexpert.org/institution/13861 -https://www.oceanexpert.org/institution/18429 -https://www.oceanexpert.org/event/2255 -https://www.oceanexpert.org/expert/32664 -https://www.oceanexpert.org/expert/21651 -https://www.oceanexpert.org/expert/2817 -https://www.oceanexpert.org/expert/42988 -https://www.oceanexpert.org/institution/16260 -https://www.oceanexpert.org/expert/15924 -https://www.oceanexpert.org/expert/30597 -https://www.oceanexpert.org/expert/46842 -https://www.oceanexpert.org/expert/46686 -https://www.oceanexpert.org/event/1321 -https://www.oceanexpert.org/expert/41407 -https://www.oceanexpert.org/expert/28214 -https://www.oceanexpert.org/expert/32249 -https://www.oceanexpert.org/event/2886 -https://www.oceanexpert.org/expert/45807 -https://www.oceanexpert.org/expert/36828 -https://www.oceanexpert.org/expert/30700 -https://www.oceanexpert.org/expert/13079 -https://www.oceanexpert.org/expert/43046 -https://www.oceanexpert.org/institution/17227 -https://www.oceanexpert.org/expert/12215 -https://www.oceanexpert.org/institution/13018 -https://www.oceanexpert.org/expert/45945 -https://www.oceanexpert.org/expert/21069 -https://www.oceanexpert.org/expert/44855 -https://www.oceanexpert.org/expert/22404 -https://www.oceanexpert.org/expert/31416 -https://www.oceanexpert.org/expert/45473 -https://www.oceanexpert.org/expert/42429 -https://www.oceanexpert.org/expert/42548 -https://www.oceanexpert.org/expert/28465 -https://www.oceanexpert.org/event/1242 -https://www.oceanexpert.org/institution/21950 -https://www.oceanexpert.org/expert/23934 -https://www.oceanexpert.org/expert/45999 -https://www.oceanexpert.org/expert/48384 -https://www.oceanexpert.org/expert/36275 -https://www.oceanexpert.org/institution/19256 -https://www.oceanexpert.org/institution/21336 -https://www.oceanexpert.org/expert/2128 -https://www.oceanexpert.org/event/639 -https://www.oceanexpert.org/expert/36159 -https://www.oceanexpert.org/expert/26798 -https://www.oceanexpert.org/expert/38766 -https://www.oceanexpert.org/expert/19201 -https://www.oceanexpert.org/expert/3644 -https://www.oceanexpert.org/expert/46813 -https://www.oceanexpert.org/expert/30251 -https://www.oceanexpert.org/event/2581 -https://www.oceanexpert.org/expert/22016 -https://www.oceanexpert.org/event/1926 -https://www.oceanexpert.org/expert/42886 -https://www.oceanexpert.org/expert/46515 -https://www.oceanexpert.org/event/966 -https://www.oceanexpert.org/expert/36641 -https://www.oceanexpert.org/expert/29813 -https://www.oceanexpert.org/expert/36662 -https://www.oceanexpert.org/expert/16092 -https://www.oceanexpert.org/event/990 -https://www.oceanexpert.org/institution/19242 -https://www.oceanexpert.org/institution/18968 -https://www.oceanexpert.org/expert/9730 -https://www.oceanexpert.org/institution/12394 -https://www.oceanexpert.org/event/2728 -https://www.oceanexpert.org/expert/44979 -https://www.oceanexpert.org/expert/33679 -https://www.oceanexpert.org/expert/38167 -https://www.oceanexpert.org/institution/10748 -https://www.oceanexpert.org/expert/28390 -https://www.oceanexpert.org/expert/36030 -https://www.oceanexpert.org/expert/36449 -https://www.oceanexpert.org/institution/18451 -https://www.oceanexpert.org/event/1479 -https://www.oceanexpert.org/institution/21997 -https://www.oceanexpert.org/expert/31083 -https://www.oceanexpert.org/institution/13237 -https://www.oceanexpert.org/expert/35420 -https://www.oceanexpert.org/expert/20269 -https://www.oceanexpert.org/expert/35079 -https://www.oceanexpert.org/expert/18392 -https://www.oceanexpert.org/institution/9417 -https://www.oceanexpert.org/expert/25334 -https://www.oceanexpert.org/expert/5146 -https://www.oceanexpert.org/expert/43743 -https://www.oceanexpert.org/expert/40605 -https://www.oceanexpert.org/expert/33479 -https://www.oceanexpert.org/event/889 -https://www.oceanexpert.org/expert/25651 -https://www.oceanexpert.org/expert/22548 -https://www.oceanexpert.org/expert/44786 -https://www.oceanexpert.org/expert/44972 -https://www.oceanexpert.org/expert/42750 -https://www.oceanexpert.org/event/1488 -https://www.oceanexpert.org/expert/20418 -https://www.oceanexpert.org/institution/11316 -https://www.oceanexpert.org/institution/21179 -https://www.oceanexpert.org/expert/42660 -https://www.oceanexpert.org/event/426 -https://www.oceanexpert.org/institution/21188 -https://www.oceanexpert.org/expert/25400 -https://www.oceanexpert.org/expert/44801 -https://www.oceanexpert.org/expert/24553 -https://www.oceanexpert.org/expert/25295 -https://www.oceanexpert.org/event/557 -https://www.oceanexpert.org/institution/11723 -https://www.oceanexpert.org/expert/29793 -https://www.oceanexpert.org/expert/44582 -https://www.oceanexpert.org/institution/21764 -https://www.oceanexpert.org/event/891 -https://www.oceanexpert.org/expert/32817 -https://www.oceanexpert.org/event/1122 -https://www.oceanexpert.org/expert/14850 -https://www.oceanexpert.org/expert/48581 -https://www.oceanexpert.org/expert/22671 -https://www.oceanexpert.org/institution/21940 -https://www.oceanexpert.org/event/284 -https://www.oceanexpert.org/expert/35049 -https://www.oceanexpert.org/institution/19926 -https://www.oceanexpert.org/expert/36757 -https://www.oceanexpert.org/expert/21819 -https://www.oceanexpert.org/expert/46005 -https://www.oceanexpert.org/expert/27664 -https://www.oceanexpert.org/expert/4317 -https://www.oceanexpert.org/expert/33543 -https://www.oceanexpert.org/expert/26900 -https://www.oceanexpert.org/expert/36822 -https://www.oceanexpert.org/expert/21451 -https://www.oceanexpert.org/institution/19403 -https://www.oceanexpert.org/expert/25598 -https://www.oceanexpert.org/expert/46584 -https://www.oceanexpert.org/expert/34219 -https://www.oceanexpert.org/event/2431 -https://www.oceanexpert.org/institution/17825 -https://www.oceanexpert.org/expert/20347 -https://www.oceanexpert.org/institution/5576 -https://www.oceanexpert.org/institution/20953 -https://www.oceanexpert.org/expert/32648 -https://www.oceanexpert.org/event/826 -https://www.oceanexpert.org/expert/44763 -https://www.oceanexpert.org/expert/19126 -https://www.oceanexpert.org/expert/39453 -https://www.oceanexpert.org/expert/43037 -https://www.oceanexpert.org/expert/46237 -https://www.oceanexpert.org/expert/20783 -https://www.oceanexpert.org/institution/11195 -https://www.oceanexpert.org/expert/30472 -https://www.oceanexpert.org/institution/19291 -https://www.oceanexpert.org/institution/19967 -https://www.oceanexpert.org/expert/16687 -https://www.oceanexpert.org/expert/18556 -https://www.oceanexpert.org/expert/12211 -https://www.oceanexpert.org/expert/34236 -https://www.oceanexpert.org/expert/20450 -https://www.oceanexpert.org/expert/37472 -https://www.oceanexpert.org/expert/16835 -https://www.oceanexpert.org/expert/7743 -https://www.oceanexpert.org/expert/14139 -https://www.oceanexpert.org/expert/45884 -https://www.oceanexpert.org/event/1425 -https://www.oceanexpert.org/expert/22977 -https://www.oceanexpert.org/expert/25062 -https://www.oceanexpert.org/expert/47461 -https://www.oceanexpert.org/institution/18619 -https://www.oceanexpert.org/expert/8889 -https://www.oceanexpert.org/institution/19518 -https://www.oceanexpert.org/event/840 -https://www.oceanexpert.org/expert/36030 -https://www.oceanexpert.org/expert/46646 -https://www.oceanexpert.org/expert/27281 -https://www.oceanexpert.org/expert/23908 -https://www.oceanexpert.org/institution/21156 -https://www.oceanexpert.org/expert/42512 -https://www.oceanexpert.org/expert/18682 -https://www.oceanexpert.org/expert/33336 -https://www.oceanexpert.org/event/1105 -https://www.oceanexpert.org/institution/19114 -https://www.oceanexpert.org/institution/18536 -https://www.oceanexpert.org/expert/43169 -https://www.oceanexpert.org/expert/43673 -https://www.oceanexpert.org/expert/31706 -https://www.oceanexpert.org/institution/18100 -https://www.oceanexpert.org/expert/18143 -https://www.oceanexpert.org/expert/25694 -https://www.oceanexpert.org/event/1158 -https://www.oceanexpert.org/institution/21711 -https://www.oceanexpert.org/expert/26431 -https://www.oceanexpert.org/institution/6634 -https://www.oceanexpert.org/expert/27165 -https://www.oceanexpert.org/event/2551 -https://www.oceanexpert.org/expert/46612 -https://www.oceanexpert.org/expert/25011 -https://www.oceanexpert.org/expert/36500 -https://www.oceanexpert.org/expert/29143 -https://www.oceanexpert.org/event/3048 -https://www.oceanexpert.org/expert/30127 -https://www.oceanexpert.org/expert/31628 -https://www.oceanexpert.org/expert/28175 -https://www.oceanexpert.org/expert/28092 -https://www.oceanexpert.org/expert/40584 -https://www.oceanexpert.org/expert/27304 -https://www.oceanexpert.org/expert/29762 -https://www.oceanexpert.org/expert/34858 -https://www.oceanexpert.org/expert/21032 -https://www.oceanexpert.org/expert/3860 -https://www.oceanexpert.org/expert/35869 -https://www.oceanexpert.org/institution/19340 -https://www.oceanexpert.org/expert/15947 -https://www.oceanexpert.org/expert/32520 -https://www.oceanexpert.org/expert/31005 -https://www.oceanexpert.org/expert/23603 -https://www.oceanexpert.org/institution/14367 -https://www.oceanexpert.org/institution/11286 -https://www.oceanexpert.org/expert/19975 -https://www.oceanexpert.org/expert/14420 -https://www.oceanexpert.org/expert/43112 -https://www.oceanexpert.org/institution/18990 -https://www.oceanexpert.org/expert/32362 -https://www.oceanexpert.org/institution/21858 -https://www.oceanexpert.org/expert/21787 -https://www.oceanexpert.org/event/580 -https://www.oceanexpert.org/institution/18497 -https://www.oceanexpert.org/expert/29387 -https://www.oceanexpert.org/expert/22418 -https://www.oceanexpert.org/institution/20077 -https://www.oceanexpert.org/expert/36244 -https://www.oceanexpert.org/institution/21322 -https://www.oceanexpert.org/expert/46596 -https://www.oceanexpert.org/expert/29700 -https://www.oceanexpert.org/expert/24340 -https://www.oceanexpert.org/event/2520 -https://www.oceanexpert.org/expert/23582 -https://www.oceanexpert.org/institution/21583 -https://www.oceanexpert.org/expert/3187 -https://www.oceanexpert.org/expert/37523 -https://www.oceanexpert.org/event/1120 -https://www.oceanexpert.org/institution/15049 -https://www.oceanexpert.org/expert/32777 -https://www.oceanexpert.org/expert/11693 -https://www.oceanexpert.org/expert/23197 -https://www.oceanexpert.org/expert/18321 -https://www.oceanexpert.org/expert/44005 -https://www.oceanexpert.org/expert/46866 -https://www.oceanexpert.org/expert/30033 -https://www.oceanexpert.org/expert/13316 -https://www.oceanexpert.org/event/1610 -https://www.oceanexpert.org/institution/20323 -https://www.oceanexpert.org/event/1353 -https://www.oceanexpert.org/expert/36747 -https://www.oceanexpert.org/institution/16408 -https://www.oceanexpert.org/expert/20818 -https://www.oceanexpert.org/expert/4579 -https://www.oceanexpert.org/event/2345 -https://www.oceanexpert.org/expert/15786 -https://www.oceanexpert.org/institution/20572 -https://www.oceanexpert.org/institution/8994 -https://www.oceanexpert.org/event/2799 -https://www.oceanexpert.org/institution/18037 -https://www.oceanexpert.org/expert/24669 -https://www.oceanexpert.org/expert/36181 -https://www.oceanexpert.org/expert/27427 -https://www.oceanexpert.org/institution/21706 -https://www.oceanexpert.org/expert/27761 -https://www.oceanexpert.org/expert/46369 -https://www.oceanexpert.org/expert/18728 -https://www.oceanexpert.org/expert/29536 -https://www.oceanexpert.org/expert/40514 -https://www.oceanexpert.org/institution/9725 -https://www.oceanexpert.org/expert/36341 -https://www.oceanexpert.org/institution/18267 -https://www.oceanexpert.org/expert/18406 -https://www.oceanexpert.org/expert/33327 -https://www.oceanexpert.org/institution/20401 -https://www.oceanexpert.org/event/1665 -https://www.oceanexpert.org/expert/26779 -https://www.oceanexpert.org/expert/47305 -https://www.oceanexpert.org/institution/13421 -https://www.oceanexpert.org/institution/16797 -https://www.oceanexpert.org/expert/5593 -https://www.oceanexpert.org/institution/13292 -https://www.oceanexpert.org/expert/48125 -https://www.oceanexpert.org/expert/36116 -https://www.oceanexpert.org/expert/24372 -https://www.oceanexpert.org/expert/19405 -https://www.oceanexpert.org/expert/20090 -https://www.oceanexpert.org/expert/26731 -https://www.oceanexpert.org/expert/37127 -https://www.oceanexpert.org/expert/24041 -https://www.oceanexpert.org/expert/26607 -https://www.oceanexpert.org/event/2701 -https://www.oceanexpert.org/expert/4097 -https://www.oceanexpert.org/expert/27019 -https://www.oceanexpert.org/event/774 -https://www.oceanexpert.org/event/1861 -https://www.oceanexpert.org/expert/47589 -https://www.oceanexpert.org/expert/22864 -https://www.oceanexpert.org/expert/33235 -https://www.oceanexpert.org/expert/42904 -https://www.oceanexpert.org/expert/593 -https://www.oceanexpert.org/event/1802 -https://www.oceanexpert.org/expert/46936 -https://www.oceanexpert.org/institution/18733 -https://www.oceanexpert.org/event/782 -https://www.oceanexpert.org/expert/24324 -https://www.oceanexpert.org/expert/3175 -https://www.oceanexpert.org/expert/408 -https://www.oceanexpert.org/expert/26046 -https://www.oceanexpert.org/expert/22868 -https://www.oceanexpert.org/institution/11691 -https://www.oceanexpert.org/expert/31039 -https://www.oceanexpert.org/expert/37287 -https://www.oceanexpert.org/expert/34386 -https://www.oceanexpert.org/institution/14049 -https://www.oceanexpert.org/expert/26509 -https://www.oceanexpert.org/expert/15142 -https://www.oceanexpert.org/institution/19232 -https://www.oceanexpert.org/event/2070 -https://www.oceanexpert.org/expert/243 -https://www.oceanexpert.org/expert/16134 -https://www.oceanexpert.org/expert/14622 -https://www.oceanexpert.org/event/1249 -https://www.oceanexpert.org/expert/29277 -https://www.oceanexpert.org/expert/39369 -https://www.oceanexpert.org/institution/8907 -https://www.oceanexpert.org/expert/48574 -https://www.oceanexpert.org/expert/3201 -https://www.oceanexpert.org/expert/22580 -https://www.oceanexpert.org/expert/30797 -https://www.oceanexpert.org/expert/32140 -https://www.oceanexpert.org/institution/10717 -https://www.oceanexpert.org/expert/39774 -https://www.oceanexpert.org/expert/18803 -https://www.oceanexpert.org/event/2434 -https://www.oceanexpert.org/expert/23061 -https://www.oceanexpert.org/expert/37462 -https://www.oceanexpert.org/expert/27517 -https://www.oceanexpert.org/expert/26420 -https://www.oceanexpert.org/institution/16063 -https://www.oceanexpert.org/expert/24898 -https://www.oceanexpert.org/institution/70 -https://www.oceanexpert.org/institution/7026 -https://www.oceanexpert.org/expert/42808 -https://www.oceanexpert.org/expert/1561 -https://www.oceanexpert.org/expert/44725 -https://www.oceanexpert.org/expert/40555 -https://www.oceanexpert.org/institution/18353 -https://www.oceanexpert.org/expert/20393 -https://www.oceanexpert.org/institution/21674 -https://www.oceanexpert.org/expert/37085 -https://www.oceanexpert.org/expert/27290 -https://www.oceanexpert.org/expert/36235 -https://www.oceanexpert.org/expert/45382 -https://www.oceanexpert.org/expert/19428 -https://www.oceanexpert.org/institution/19222 -https://www.oceanexpert.org/expert/32226 -https://www.oceanexpert.org/event/1397 -https://www.oceanexpert.org/expert/34903 -https://www.oceanexpert.org/expert/28467 -https://www.oceanexpert.org/institution/16077 -https://www.oceanexpert.org/expert/44791 -https://www.oceanexpert.org/institution/20916 -https://www.oceanexpert.org/expert/39980 -https://www.oceanexpert.org/expert/37826 -https://www.oceanexpert.org/expert/19796 -https://www.oceanexpert.org/expert/7574 -https://www.oceanexpert.org/expert/47550 -https://www.oceanexpert.org/institution/6147 -https://www.oceanexpert.org/expert/33612 -https://www.oceanexpert.org/institution/6638 -https://www.oceanexpert.org/expert/24848 -https://www.oceanexpert.org/expert/44101 -https://www.oceanexpert.org/expert/38766 -https://www.oceanexpert.org/institution/6759 -https://www.oceanexpert.org/expert/16986 -https://www.oceanexpert.org/expert/22451 -https://www.oceanexpert.org/event/2321 -https://www.oceanexpert.org/expert/26355 -https://www.oceanexpert.org/expert/7186 -https://www.oceanexpert.org/expert/16239 -https://www.oceanexpert.org/institution/14741 -https://www.oceanexpert.org/event/234 -https://www.oceanexpert.org/event/1406 -https://www.oceanexpert.org/expert/18897 -https://www.oceanexpert.org/institution/14627 -https://www.oceanexpert.org/expert/43682 -https://www.oceanexpert.org/expert/34243 -https://www.oceanexpert.org/expert/34016 -https://www.oceanexpert.org/institution/12501 -https://www.oceanexpert.org/institution/19927 -https://www.oceanexpert.org/institution/14869 -https://www.oceanexpert.org/institution/22144 -https://www.oceanexpert.org/expert/19384 -https://www.oceanexpert.org/expert/18636 -https://www.oceanexpert.org/institution/11358 -https://www.oceanexpert.org/expert/14585 -https://www.oceanexpert.org/expert/27567 -https://www.oceanexpert.org/expert/21253 -https://www.oceanexpert.org/expert/45628 -https://www.oceanexpert.org/expert/20537 -https://www.oceanexpert.org/expert/45492 -https://www.oceanexpert.org/expert/24557 -https://www.oceanexpert.org/expert/45185 -https://www.oceanexpert.org/institution/15476 -https://www.oceanexpert.org/institution/20202 -https://www.oceanexpert.org/expert/14973 -https://www.oceanexpert.org/institution/13518 -https://www.oceanexpert.org/expert/24167 -https://www.oceanexpert.org/expert/40066 -https://www.oceanexpert.org/expert/33753 -https://www.oceanexpert.org/expert/36618 -https://www.oceanexpert.org/expert/12999 -https://www.oceanexpert.org/event/2697 -https://www.oceanexpert.org/expert/43234 -https://www.oceanexpert.org/expert/32907 -https://www.oceanexpert.org/event/442 -https://www.oceanexpert.org/expert/18717 -https://www.oceanexpert.org/event/2312 -https://www.oceanexpert.org/expert/29754 -https://www.oceanexpert.org/expert/46957 -https://www.oceanexpert.org/expert/28368 -https://www.oceanexpert.org/expert/44995 -https://www.oceanexpert.org/expert/45404 -https://www.oceanexpert.org/expert/35188 -https://www.oceanexpert.org/expert/27581 -https://www.oceanexpert.org/expert/27586 -https://www.oceanexpert.org/expert/45255 -https://www.oceanexpert.org/expert/24020 -https://www.oceanexpert.org/expert/34270 -https://www.oceanexpert.org/institution/5909 -https://www.oceanexpert.org/expert/20351 -https://www.oceanexpert.org/expert/47503 -https://www.oceanexpert.org/expert/43925 -https://www.oceanexpert.org/expert/24449 -https://www.oceanexpert.org/institution/20610 -https://www.oceanexpert.org/expert/18826 -https://www.oceanexpert.org/expert/43555 -https://www.oceanexpert.org/institution/12220 -https://www.oceanexpert.org/institution/12188 -https://www.oceanexpert.org/event/472 -https://www.oceanexpert.org/expert/43614 -https://www.oceanexpert.org/institution/20198 -https://www.oceanexpert.org/expert/16317 -https://www.oceanexpert.org/institution/19415 -https://www.oceanexpert.org/event/850 -https://www.oceanexpert.org/expert/37976 -https://www.oceanexpert.org/expert/21519 -https://www.oceanexpert.org/expert/43734 -https://www.oceanexpert.org/expert/13071 -https://www.oceanexpert.org/institution/13503 -https://www.oceanexpert.org/institution/21178 -https://www.oceanexpert.org/expert/9319 -https://www.oceanexpert.org/event/1266 -https://www.oceanexpert.org/expert/11682 -https://www.oceanexpert.org/event/2086 -https://www.oceanexpert.org/expert/2846 -https://www.oceanexpert.org/institution/19612 -https://www.oceanexpert.org/expert/43339 -https://www.oceanexpert.org/expert/36855 -https://www.oceanexpert.org/expert/23421 -https://www.oceanexpert.org/expert/44610 -https://www.oceanexpert.org/institution/13087 -https://www.oceanexpert.org/expert/29317 -https://www.oceanexpert.org/expert/20421 -https://www.oceanexpert.org/expert/37923 -https://www.oceanexpert.org/expert/48876 -https://www.oceanexpert.org/expert/24012 -https://www.oceanexpert.org/institution/18508 -https://www.oceanexpert.org/expert/25520 -https://www.oceanexpert.org/institution/20288 -https://www.oceanexpert.org/expert/11731 -https://www.oceanexpert.org/institution/21045 -https://www.oceanexpert.org/expert/44142 -https://www.oceanexpert.org/expert/9207 -https://www.oceanexpert.org/institution/10650 -https://www.oceanexpert.org/institution/5921 -https://www.oceanexpert.org/expert/24172 -https://www.oceanexpert.org/expert/20002 -https://www.oceanexpert.org/expert/44895 -https://www.oceanexpert.org/expert/30244 -https://www.oceanexpert.org/expert/43842 -https://www.oceanexpert.org/expert/45481 -https://www.oceanexpert.org/expert/40271 -https://www.oceanexpert.org/expert/20447 -https://www.oceanexpert.org/expert/22531 -https://www.oceanexpert.org/expert/3187 -https://www.oceanexpert.org/expert/34377 -https://www.oceanexpert.org/event/1636 -https://www.oceanexpert.org/event/423 -https://www.oceanexpert.org/expert/39300 -https://www.oceanexpert.org/expert/35842 -https://www.oceanexpert.org/institution/21169 -https://www.oceanexpert.org/expert/20616 -https://www.oceanexpert.org/institution/21025 -https://www.oceanexpert.org/institution/21148 -https://www.oceanexpert.org/expert/23296 -https://www.oceanexpert.org/expert/20253 -https://www.oceanexpert.org/expert/36625 -https://www.oceanexpert.org/expert/44082 -https://www.oceanexpert.org/institution/16690 -https://www.oceanexpert.org/institution/14373 -https://www.oceanexpert.org/expert/15298 -https://www.oceanexpert.org/expert/44442 -https://www.oceanexpert.org/expert/7770 -https://www.oceanexpert.org/institution/5620 -https://www.oceanexpert.org/expert/8451 -https://www.oceanexpert.org/expert/17243 -https://www.oceanexpert.org/expert/44662 -https://www.oceanexpert.org/expert/22282 -https://www.oceanexpert.org/expert/20863 -https://www.oceanexpert.org/expert/28397 -https://www.oceanexpert.org/expert/38226 -https://www.oceanexpert.org/expert/30117 -https://www.oceanexpert.org/expert/37799 -https://www.oceanexpert.org/expert/47160 -https://www.oceanexpert.org/institution/19326 -https://www.oceanexpert.org/expert/44680 -https://www.oceanexpert.org/expert/45407 -https://www.oceanexpert.org/institution/9045 -https://www.oceanexpert.org/institution/20069 -https://www.oceanexpert.org/expert/30298 -https://www.oceanexpert.org/expert/12121 -https://www.oceanexpert.org/expert/45508 -https://www.oceanexpert.org/expert/30795 -https://www.oceanexpert.org/expert/32744 -https://www.oceanexpert.org/institution/7634 -https://www.oceanexpert.org/expert/36744 -https://www.oceanexpert.org/institution/20732 -https://www.oceanexpert.org/event/1496 -https://www.oceanexpert.org/expert/43259 -https://www.oceanexpert.org/event/906 -https://www.oceanexpert.org/expert/34458 -https://www.oceanexpert.org/expert/34899 -https://www.oceanexpert.org/institution/7766 -https://www.oceanexpert.org/institution/13392 -https://www.oceanexpert.org/institution/21906 -https://www.oceanexpert.org/expert/36551 -https://www.oceanexpert.org/expert/36165 -https://www.oceanexpert.org/expert/20196 -https://www.oceanexpert.org/expert/19790 -https://www.oceanexpert.org/expert/44980 -https://www.oceanexpert.org/expert/21707 -https://www.oceanexpert.org/expert/29519 -https://www.oceanexpert.org/expert/10735 -https://www.oceanexpert.org/expert/47284 -https://www.oceanexpert.org/institution/14733 -https://www.oceanexpert.org/expert/22639 -https://www.oceanexpert.org/expert/22103 -https://www.oceanexpert.org/expert/45911 -https://www.oceanexpert.org/expert/25873 -https://www.oceanexpert.org/expert/27099 -https://www.oceanexpert.org/expert/29809 -https://www.oceanexpert.org/institution/21626 -https://www.oceanexpert.org/event/2573 -https://www.oceanexpert.org/expert/20015 -https://www.oceanexpert.org/expert/13743 -https://www.oceanexpert.org/expert/23675 -https://www.oceanexpert.org/expert/26689 -https://www.oceanexpert.org/expert/3084 -https://www.oceanexpert.org/institution/6903 -https://www.oceanexpert.org/expert/15545 -https://www.oceanexpert.org/expert/18926 -https://www.oceanexpert.org/expert/19346 -https://www.oceanexpert.org/expert/37862 -https://www.oceanexpert.org/expert/29808 -https://www.oceanexpert.org/expert/2219 -https://www.oceanexpert.org/expert/45320 -https://www.oceanexpert.org/expert/25547 -https://www.oceanexpert.org/expert/27480 -https://www.oceanexpert.org/institution/16122 -https://www.oceanexpert.org/institution/18690 -https://www.oceanexpert.org/event/1034 -https://www.oceanexpert.org/expert/7296 -https://www.oceanexpert.org/institution/17863 -https://www.oceanexpert.org/expert/25076 -https://www.oceanexpert.org/institution/17361 -https://www.oceanexpert.org/expert/29202 -https://www.oceanexpert.org/expert/29728 -https://www.oceanexpert.org/institution/18814 -https://www.oceanexpert.org/institution/19567 -https://www.oceanexpert.org/expert/5317 -https://www.oceanexpert.org/expert/27118 -https://www.oceanexpert.org/expert/42421 -https://www.oceanexpert.org/expert/19252 -https://www.oceanexpert.org/institution/10291 -https://www.oceanexpert.org/expert/16887 -https://www.oceanexpert.org/expert/23665 -https://www.oceanexpert.org/expert/33240 -https://www.oceanexpert.org/expert/30406 -https://www.oceanexpert.org/expert/48560 -https://www.oceanexpert.org/expert/22015 -https://www.oceanexpert.org/event/1698 -https://www.oceanexpert.org/institution/22030 -https://www.oceanexpert.org/institution/19194 -https://www.oceanexpert.org/expert/33556 -https://www.oceanexpert.org/expert/23210 -https://www.oceanexpert.org/expert/47011 -https://www.oceanexpert.org/institution/14382 -https://www.oceanexpert.org/institution/11980 -https://www.oceanexpert.org/expert/33324 -https://www.oceanexpert.org/institution/14747 -https://www.oceanexpert.org/event/2293 -https://www.oceanexpert.org/institution/15710 -https://www.oceanexpert.org/expert/27399 -https://www.oceanexpert.org/institution/20164 -https://www.oceanexpert.org/institution/19015 -https://www.oceanexpert.org/institution/13964 -https://www.oceanexpert.org/expert/3697 -https://www.oceanexpert.org/expert/36993 -https://www.oceanexpert.org/expert/29913 -https://www.oceanexpert.org/expert/18736 -https://www.oceanexpert.org/expert/42754 -https://www.oceanexpert.org/expert/21820 -https://www.oceanexpert.org/expert/37002 -https://www.oceanexpert.org/expert/45084 -https://www.oceanexpert.org/expert/39170 -https://www.oceanexpert.org/event/1632 -https://www.oceanexpert.org/institution/10295 -https://www.oceanexpert.org/expert/37876 -https://www.oceanexpert.org/expert/34398 -https://www.oceanexpert.org/expert/40891 -https://www.oceanexpert.org/expert/23862 -https://www.oceanexpert.org/expert/15854 -https://www.oceanexpert.org/event/1761 -https://www.oceanexpert.org/expert/43765 -https://www.oceanexpert.org/expert/13035 -https://www.oceanexpert.org/expert/43556 -https://www.oceanexpert.org/institution/19026 -https://www.oceanexpert.org/expert/48165 -https://www.oceanexpert.org/expert/33861 -https://www.oceanexpert.org/expert/35666 -https://www.oceanexpert.org/expert/37559 -https://www.oceanexpert.org/institution/12550 -https://www.oceanexpert.org/expert/22081 -https://www.oceanexpert.org/expert/12877 -https://www.oceanexpert.org/expert/8145 -https://www.oceanexpert.org/expert/25041 -https://www.oceanexpert.org/expert/35520 -https://www.oceanexpert.org/expert/13522 -https://www.oceanexpert.org/expert/47500 -https://www.oceanexpert.org/event/588 -https://www.oceanexpert.org/expert/26372 -https://www.oceanexpert.org/event/708 -https://www.oceanexpert.org/expert/25358 -https://www.oceanexpert.org/institution/19494 -https://www.oceanexpert.org/expert/46676 -https://www.oceanexpert.org/institution/7790 -https://www.oceanexpert.org/expert/16220 -https://www.oceanexpert.org/expert/21690 -https://www.oceanexpert.org/expert/16234 -https://www.oceanexpert.org/institution/15162 -https://www.oceanexpert.org/institution/18939 -https://www.oceanexpert.org/event/535 -https://www.oceanexpert.org/institution/18559 -https://www.oceanexpert.org/expert/35410 -https://www.oceanexpert.org/institution/16751 -https://www.oceanexpert.org/expert/30800 -https://www.oceanexpert.org/institution/21668 -https://www.oceanexpert.org/expert/13281 -https://www.oceanexpert.org/expert/36117 -https://www.oceanexpert.org/expert/25374 -https://www.oceanexpert.org/institution/10957 -https://www.oceanexpert.org/expert/46923 -https://www.oceanexpert.org/expert/19516 -https://www.oceanexpert.org/expert/47071 -https://www.oceanexpert.org/expert/8059 -https://www.oceanexpert.org/expert/46221 -https://www.oceanexpert.org/institution/20540 -https://www.oceanexpert.org/expert/47165 -https://www.oceanexpert.org/expert/19785 -https://www.oceanexpert.org/institution/18106 -https://www.oceanexpert.org/institution/19236 -https://www.oceanexpert.org/institution/11437 -https://www.oceanexpert.org/event/1187 -https://www.oceanexpert.org/expert/27511 -https://www.oceanexpert.org/institution/20786 -https://www.oceanexpert.org/expert/21784 -https://www.oceanexpert.org/expert/28616 -https://www.oceanexpert.org/expert/31335 -https://www.oceanexpert.org/expert/31819 -https://www.oceanexpert.org/expert/14790 -https://www.oceanexpert.org/expert/22454 -https://www.oceanexpert.org/expert/45658 -https://www.oceanexpert.org/expert/20929 -https://www.oceanexpert.org/expert/21069 -https://www.oceanexpert.org/expert/26861 -https://www.oceanexpert.org/expert/20587 -https://www.oceanexpert.org/expert/26558 -https://www.oceanexpert.org/event/2444 -https://www.oceanexpert.org/expert/45491 -https://www.oceanexpert.org/expert/31898 -https://www.oceanexpert.org/expert/24502 -https://www.oceanexpert.org/expert/46329 -https://www.oceanexpert.org/expert/38401 -https://www.oceanexpert.org/institution/15236 -https://www.oceanexpert.org/expert/22750 -https://www.oceanexpert.org/event/2667 -https://www.oceanexpert.org/expert/22586 -https://www.oceanexpert.org/expert/25872 -https://www.oceanexpert.org/institution/21832 -https://www.oceanexpert.org/expert/40901 -https://www.oceanexpert.org/expert/36334 -https://www.oceanexpert.org/institution/19589 -https://www.oceanexpert.org/expert/19222 -https://www.oceanexpert.org/expert/36192 -https://www.oceanexpert.org/event/2162 -https://www.oceanexpert.org/expert/48280 -https://www.oceanexpert.org/expert/42918 -https://www.oceanexpert.org/expert/11507 -https://www.oceanexpert.org/expert/33625 -https://www.oceanexpert.org/expert/26400 -https://www.oceanexpert.org/event/154 -https://www.oceanexpert.org/expert/11540 -https://www.oceanexpert.org/expert/23246 -https://www.oceanexpert.org/expert/38139 -https://www.oceanexpert.org/expert/42151 -https://www.oceanexpert.org/institution/19439 -https://www.oceanexpert.org/event/1997 -https://www.oceanexpert.org/institution/11874 -https://www.oceanexpert.org/institution/14031 -https://www.oceanexpert.org/event/2290 -https://www.oceanexpert.org/expert/13261 -https://www.oceanexpert.org/expert/47973 -https://www.oceanexpert.org/expert/43835 -https://www.oceanexpert.org/institution/21745 -https://www.oceanexpert.org/expert/39605 -https://www.oceanexpert.org/expert/46727 -https://www.oceanexpert.org/expert/42716 -https://www.oceanexpert.org/institution/5562 -https://www.oceanexpert.org/expert/40482 -https://www.oceanexpert.org/expert/18370 -https://www.oceanexpert.org/expert/10162 -https://www.oceanexpert.org/expert/25426 -https://www.oceanexpert.org/expert/19399 -https://www.oceanexpert.org/institution/19852 -https://www.oceanexpert.org/institution/17036 -https://www.oceanexpert.org/expert/30546 -https://www.oceanexpert.org/expert/25052 -https://www.oceanexpert.org/expert/37683 -https://www.oceanexpert.org/event/346 -https://www.oceanexpert.org/expert/25015 -https://www.oceanexpert.org/event/2208 -https://www.oceanexpert.org/institution/15896 -https://www.oceanexpert.org/expert/6470 -https://www.oceanexpert.org/expert/43996 -https://www.oceanexpert.org/expert/13791 -https://www.oceanexpert.org/expert/29741 -https://www.oceanexpert.org/expert/13277 -https://www.oceanexpert.org/institution/21469 -https://www.oceanexpert.org/expert/36267 -https://www.oceanexpert.org/institution/6251 -https://www.oceanexpert.org/expert/19939 -https://www.oceanexpert.org/expert/27533 -https://www.oceanexpert.org/event/1046 -https://www.oceanexpert.org/expert/46943 -https://www.oceanexpert.org/expert/30799 -https://www.oceanexpert.org/expert/40981 -https://www.oceanexpert.org/expert/26873 -https://www.oceanexpert.org/expert/30667 -https://www.oceanexpert.org/institution/18781 -https://www.oceanexpert.org/expert/26574 -https://www.oceanexpert.org/institution/16848 -https://www.oceanexpert.org/expert/23296 -https://www.oceanexpert.org/expert/46419 -https://www.oceanexpert.org/expert/43869 -https://www.oceanexpert.org/event/1887 -https://www.oceanexpert.org/institution/14290 -https://www.oceanexpert.org/institution/5995 -https://www.oceanexpert.org/expert/6691 -https://www.oceanexpert.org/expert/22024 -https://www.oceanexpert.org/expert/34717 -https://www.oceanexpert.org/expert/44662 -https://www.oceanexpert.org/event/1780 -https://www.oceanexpert.org/expert/13749 -https://www.oceanexpert.org/event/971 -https://www.oceanexpert.org/institution/14875 -https://www.oceanexpert.org/expert/16941 -https://www.oceanexpert.org/institution/7594 -https://www.oceanexpert.org/institution/12569 -https://www.oceanexpert.org/expert/43794 -https://www.oceanexpert.org/institution/18179 -https://www.oceanexpert.org/expert/29570 -https://www.oceanexpert.org/expert/43399 -https://www.oceanexpert.org/expert/31244 -https://www.oceanexpert.org/event/712 -https://www.oceanexpert.org/institution/17467 -https://www.oceanexpert.org/expert/34866 -https://www.oceanexpert.org/event/30 -https://www.oceanexpert.org/expert/34534 -https://www.oceanexpert.org/expert/8106 -https://www.oceanexpert.org/expert/14981 -https://www.oceanexpert.org/institution/17913 -https://www.oceanexpert.org/expert/31519 -https://www.oceanexpert.org/expert/4128 -https://www.oceanexpert.org/expert/22253 -https://www.oceanexpert.org/expert/22398 -https://www.oceanexpert.org/institution/15976 -https://www.oceanexpert.org/expert/317 -https://www.oceanexpert.org/institution/6969 -https://www.oceanexpert.org/event/1803 -https://www.oceanexpert.org/institution/16043 -https://www.oceanexpert.org/event/964 -https://www.oceanexpert.org/expert/41999 -https://www.oceanexpert.org/expert/18870 -https://www.oceanexpert.org/expert/46436 -https://www.oceanexpert.org/institution/13398 -https://www.oceanexpert.org/expert/34902 -https://www.oceanexpert.org/expert/46215 -https://www.oceanexpert.org/expert/20488 -https://www.oceanexpert.org/expert/24247 -https://www.oceanexpert.org/institution/14088 -https://www.oceanexpert.org/expert/43869 -https://www.oceanexpert.org/expert/30261 -https://www.oceanexpert.org/expert/26964 -https://www.oceanexpert.org/expert/25038 -https://www.oceanexpert.org/expert/27392 -https://www.oceanexpert.org/institution/18764 -https://www.oceanexpert.org/institution/20517 -https://www.oceanexpert.org/expert/35395 -https://www.oceanexpert.org/event/1221 -https://www.oceanexpert.org/expert/36202 -https://www.oceanexpert.org/expert/47757 -https://www.oceanexpert.org/expert/24074 -https://www.oceanexpert.org/institution/6351 -https://www.oceanexpert.org/event/3059 -https://www.oceanexpert.org/expert/11744 -https://www.oceanexpert.org/expert/48864 -https://www.oceanexpert.org/expert/14906 -https://www.oceanexpert.org/expert/44877 -https://www.oceanexpert.org/expert/35436 -https://www.oceanexpert.org/expert/34562 -https://www.oceanexpert.org/expert/29466 -https://www.oceanexpert.org/institution/7668 -https://www.oceanexpert.org/expert/34676 -https://www.oceanexpert.org/expert/35797 -https://www.oceanexpert.org/expert/25546 -https://www.oceanexpert.org/expert/16961 -https://www.oceanexpert.org/expert/46259 -https://www.oceanexpert.org/institution/18534 -https://www.oceanexpert.org/event/1805 -https://www.oceanexpert.org/expert/19291 -https://www.oceanexpert.org/institution/17969 -https://www.oceanexpert.org/expert/31583 -https://www.oceanexpert.org/expert/47440 -https://www.oceanexpert.org/expert/30541 -https://www.oceanexpert.org/institution/13619 -https://www.oceanexpert.org/event/3100 -https://www.oceanexpert.org/expert/16966 -https://www.oceanexpert.org/expert/47916 -https://www.oceanexpert.org/expert/28347 -https://www.oceanexpert.org/expert/37306 -https://www.oceanexpert.org/expert/11026 -https://www.oceanexpert.org/event/2669 -https://www.oceanexpert.org/institution/20772 -https://www.oceanexpert.org/expert/29666 -https://www.oceanexpert.org/expert/2257 -https://www.oceanexpert.org/expert/46833 -https://www.oceanexpert.org/event/2089 -https://www.oceanexpert.org/expert/35197 -https://www.oceanexpert.org/expert/42843 -https://www.oceanexpert.org/expert/45704 -https://www.oceanexpert.org/institution/12927 -https://www.oceanexpert.org/expert/22128 -https://www.oceanexpert.org/expert/34562 -https://www.oceanexpert.org/expert/46455 -https://www.oceanexpert.org/expert/9320 -https://www.oceanexpert.org/event/2348 -https://www.oceanexpert.org/expert/18219 -https://www.oceanexpert.org/event/864 -https://www.oceanexpert.org/expert/184 -https://www.oceanexpert.org/institution/14761 -https://www.oceanexpert.org/institution/20781 -https://www.oceanexpert.org/institution/14629 -https://www.oceanexpert.org/expert/43862 -https://www.oceanexpert.org/institution/20916 -https://www.oceanexpert.org/expert/34378 -https://www.oceanexpert.org/expert/16352 -https://www.oceanexpert.org/expert/20252 -https://www.oceanexpert.org/expert/31120 -https://www.oceanexpert.org/expert/44053 -https://www.oceanexpert.org/expert/45355 -https://www.oceanexpert.org/institution/19426 -https://www.oceanexpert.org/institution/5934 -https://www.oceanexpert.org/expert/25677 -https://www.oceanexpert.org/expert/46872 -https://www.oceanexpert.org/expert/26316 -https://www.oceanexpert.org/institution/17966 -https://www.oceanexpert.org/institution/19888 -https://www.oceanexpert.org/expert/14380 -https://www.oceanexpert.org/event/2998 -https://www.oceanexpert.org/expert/20421 -https://www.oceanexpert.org/event/2287 -https://www.oceanexpert.org/expert/17831 -https://www.oceanexpert.org/expert/19394 -https://www.oceanexpert.org/institution/12984 -https://www.oceanexpert.org/expert/16610 -https://www.oceanexpert.org/expert/33301 -https://www.oceanexpert.org/expert/47421 -https://www.oceanexpert.org/expert/7155 -https://www.oceanexpert.org/expert/20170 -https://www.oceanexpert.org/expert/38114 -https://www.oceanexpert.org/expert/32069 -https://www.oceanexpert.org/expert/41098 -https://www.oceanexpert.org/event/233 -https://www.oceanexpert.org/event/951 -https://www.oceanexpert.org/expert/43945 -https://www.oceanexpert.org/event/715 -https://www.oceanexpert.org/institution/14700 -https://www.oceanexpert.org/institution/4942 -https://www.oceanexpert.org/institution/11008 -https://www.oceanexpert.org/expert/44818 -https://www.oceanexpert.org/expert/25277 -https://www.oceanexpert.org/expert/25811 -https://www.oceanexpert.org/expert/14231 -https://www.oceanexpert.org/event/395 -https://www.oceanexpert.org/event/2174 -https://www.oceanexpert.org/expert/16506 -https://www.oceanexpert.org/expert/25195 -https://www.oceanexpert.org/institution/21209 -https://www.oceanexpert.org/expert/29833 -https://www.oceanexpert.org/expert/19959 -https://www.oceanexpert.org/expert/32494 -https://www.oceanexpert.org/expert/4618 -https://www.oceanexpert.org/expert/29485 -https://www.oceanexpert.org/expert/18021 -https://www.oceanexpert.org/expert/39284 -https://www.oceanexpert.org/expert/42701 -https://www.oceanexpert.org/expert/20431 -https://www.oceanexpert.org/expert/17813 -https://www.oceanexpert.org/expert/37472 -https://www.oceanexpert.org/expert/13319 -https://www.oceanexpert.org/expert/46275 -https://www.oceanexpert.org/expert/40525 -https://www.oceanexpert.org/institution/20280 -https://www.oceanexpert.org/institution/19271 -https://www.oceanexpert.org/expert/43308 -https://www.oceanexpert.org/expert/46283 -https://www.oceanexpert.org/expert/45656 -https://www.oceanexpert.org/expert/14432 -https://www.oceanexpert.org/expert/31875 -https://www.oceanexpert.org/expert/24071 -https://www.oceanexpert.org/expert/35095 -https://www.oceanexpert.org/expert/37035 -https://www.oceanexpert.org/expert/33307 -https://www.oceanexpert.org/expert/17144 -https://www.oceanexpert.org/expert/19499 -https://www.oceanexpert.org/institution/18943 -https://www.oceanexpert.org/institution/15631 -https://www.oceanexpert.org/institution/6587 -https://www.oceanexpert.org/expert/23087 -https://www.oceanexpert.org/expert/34059 -https://www.oceanexpert.org/expert/43696 -https://www.oceanexpert.org/expert/37440 -https://www.oceanexpert.org/expert/34588 -https://www.oceanexpert.org/expert/28693 -https://www.oceanexpert.org/expert/27326 -https://www.oceanexpert.org/institution/19032 -https://www.oceanexpert.org/event/900 -https://www.oceanexpert.org/institution/14661 -https://www.oceanexpert.org/institution/20903 -https://www.oceanexpert.org/expert/17091 -https://www.oceanexpert.org/institution/17700 -https://www.oceanexpert.org/institution/10542 -https://www.oceanexpert.org/expert/44088 -https://www.oceanexpert.org/expert/15887 -https://www.oceanexpert.org/institution/19352 -https://www.oceanexpert.org/expert/4191 -https://www.oceanexpert.org/expert/44737 -https://www.oceanexpert.org/institution/15321 -https://www.oceanexpert.org/expert/24588 -https://www.oceanexpert.org/expert/44000 -https://www.oceanexpert.org/event/1301 -https://www.oceanexpert.org/expert/46661 -https://www.oceanexpert.org/expert/17504 -https://www.oceanexpert.org/expert/32616 -https://www.oceanexpert.org/expert/4525 -https://www.oceanexpert.org/institution/11568 -https://www.oceanexpert.org/expert/25156 -https://www.oceanexpert.org/expert/19096 -https://www.oceanexpert.org/expert/40285 -https://www.oceanexpert.org/expert/30877 -https://www.oceanexpert.org/expert/46268 -https://www.oceanexpert.org/expert/2291 -https://www.oceanexpert.org/expert/33299 -https://www.oceanexpert.org/institution/17977 -https://www.oceanexpert.org/institution/19083 -https://www.oceanexpert.org/event/613 -https://www.oceanexpert.org/expert/18723 -https://www.oceanexpert.org/expert/31726 -https://www.oceanexpert.org/expert/25788 -https://www.oceanexpert.org/expert/48736 -https://www.oceanexpert.org/institution/20838 -https://www.oceanexpert.org/expert/38873 -https://www.oceanexpert.org/expert/44083 -https://www.oceanexpert.org/institution/15231 -https://www.oceanexpert.org/institution/17127 -https://www.oceanexpert.org/expert/19244 -https://www.oceanexpert.org/expert/45042 -https://www.oceanexpert.org/expert/24211 -https://www.oceanexpert.org/expert/47130 -https://www.oceanexpert.org/institution/15332 -https://www.oceanexpert.org/expert/48582 -https://www.oceanexpert.org/expert/45548 -https://www.oceanexpert.org/institution/21750 -https://www.oceanexpert.org/institution/12769 -https://www.oceanexpert.org/expert/1844 -https://www.oceanexpert.org/expert/36172 -https://www.oceanexpert.org/expert/42904 -https://www.oceanexpert.org/event/1955 -https://www.oceanexpert.org/expert/26240 -https://www.oceanexpert.org/institution/18950 -https://www.oceanexpert.org/institution/5132 -https://www.oceanexpert.org/expert/47465 -https://www.oceanexpert.org/expert/34103 -https://www.oceanexpert.org/expert/28482 -https://www.oceanexpert.org/expert/7925 -https://www.oceanexpert.org/expert/19788 -https://www.oceanexpert.org/institution/22063 -https://www.oceanexpert.org/expert/27231 -https://www.oceanexpert.org/institution/16460 -https://www.oceanexpert.org/expert/44397 -https://www.oceanexpert.org/expert/34845 -https://www.oceanexpert.org/institution/13033 -https://www.oceanexpert.org/expert/30200 -https://www.oceanexpert.org/institution/11209 -https://www.oceanexpert.org/institution/17986 -https://www.oceanexpert.org/expert/37851 -https://www.oceanexpert.org/expert/21144 -https://www.oceanexpert.org/expert/30006 -https://www.oceanexpert.org/institution/20790 -https://www.oceanexpert.org/expert/26271 -https://www.oceanexpert.org/expert/20492 -https://www.oceanexpert.org/expert/35845 -https://www.oceanexpert.org/expert/14639 -https://www.oceanexpert.org/expert/19961 -https://www.oceanexpert.org/expert/43639 -https://www.oceanexpert.org/expert/19014 -https://www.oceanexpert.org/institution/19890 -https://www.oceanexpert.org/event/2877 -https://www.oceanexpert.org/expert/20170 -https://www.oceanexpert.org/expert/4315 -https://www.oceanexpert.org/expert/24820 -https://www.oceanexpert.org/expert/9217 -https://www.oceanexpert.org/event/2213 -https://www.oceanexpert.org/expert/46675 -https://www.oceanexpert.org/institution/17542 -https://www.oceanexpert.org/institution/19874 -https://www.oceanexpert.org/expert/19068 -https://www.oceanexpert.org/expert/11652 -https://www.oceanexpert.org/expert/14274 -https://www.oceanexpert.org/expert/21793 -https://www.oceanexpert.org/expert/26459 -https://www.oceanexpert.org/institution/15903 -https://www.oceanexpert.org/expert/44229 -https://www.oceanexpert.org/expert/14772 -https://www.oceanexpert.org/expert/29718 -https://www.oceanexpert.org/expert/42692 -https://www.oceanexpert.org/expert/36168 -https://www.oceanexpert.org/institution/20026 -https://www.oceanexpert.org/expert/24653 -https://www.oceanexpert.org/institution/16269 -https://www.oceanexpert.org/expert/22619 -https://www.oceanexpert.org/institution/20869 -https://www.oceanexpert.org/expert/33378 -https://www.oceanexpert.org/expert/27359 -https://www.oceanexpert.org/institution/20851 -https://www.oceanexpert.org/expert/42664 -https://www.oceanexpert.org/expert/31523 -https://www.oceanexpert.org/expert/31610 -https://www.oceanexpert.org/expert/23821 -https://www.oceanexpert.org/expert/178 -https://www.oceanexpert.org/institution/21373 -https://www.oceanexpert.org/expert/25928 -https://www.oceanexpert.org/institution/21355 -https://www.oceanexpert.org/event/2738 -https://www.oceanexpert.org/expert/18431 -https://www.oceanexpert.org/expert/39237 -https://www.oceanexpert.org/institution/5414 -https://www.oceanexpert.org/expert/48359 -https://www.oceanexpert.org/expert/31432 -https://www.oceanexpert.org/expert/31967 -https://www.oceanexpert.org/institution/21704 -https://www.oceanexpert.org/event/1273 -https://www.oceanexpert.org/event/2114 -https://www.oceanexpert.org/expert/22638 -https://www.oceanexpert.org/expert/34664 -https://www.oceanexpert.org/institution/21360 -https://www.oceanexpert.org/expert/35483 -https://www.oceanexpert.org/expert/20587 -https://www.oceanexpert.org/institution/17469 -https://www.oceanexpert.org/expert/22393 -https://www.oceanexpert.org/event/2090 -https://www.oceanexpert.org/expert/25042 -https://www.oceanexpert.org/event/1518 -https://www.oceanexpert.org/expert/47615 -https://www.oceanexpert.org/event/1510 -https://www.oceanexpert.org/expert/46366 -https://www.oceanexpert.org/expert/45121 -https://www.oceanexpert.org/expert/32475 -https://www.oceanexpert.org/institution/18065 -https://www.oceanexpert.org/expert/43685 -https://www.oceanexpert.org/expert/28492 -https://www.oceanexpert.org/expert/37749 -https://www.oceanexpert.org/expert/48541 -https://www.oceanexpert.org/institution/7429 -https://www.oceanexpert.org/expert/26361 -https://www.oceanexpert.org/institution/20071 -https://www.oceanexpert.org/expert/42930 -https://www.oceanexpert.org/institution/19345 -https://www.oceanexpert.org/expert/48557 -https://www.oceanexpert.org/expert/48669 -https://www.oceanexpert.org/expert/23531 -https://www.oceanexpert.org/institution/17787 -https://www.oceanexpert.org/expert/47730 -https://www.oceanexpert.org/expert/9059 -https://www.oceanexpert.org/expert/39578 -https://www.oceanexpert.org/expert/36609 -https://www.oceanexpert.org/institution/17180 -https://www.oceanexpert.org/expert/13594 -https://www.oceanexpert.org/expert/20420 -https://www.oceanexpert.org/expert/4232 -https://www.oceanexpert.org/expert/16600 -https://www.oceanexpert.org/expert/45579 -https://www.oceanexpert.org/expert/27383 -https://www.oceanexpert.org/expert/26103 -https://www.oceanexpert.org/expert/45516 -https://www.oceanexpert.org/event/2952 -https://www.oceanexpert.org/expert/25815 -https://www.oceanexpert.org/expert/15441 -https://www.oceanexpert.org/expert/48738 -https://www.oceanexpert.org/event/2207 -https://www.oceanexpert.org/expert/43602 -https://www.oceanexpert.org/expert/34827 -https://www.oceanexpert.org/expert/29120 -https://www.oceanexpert.org/expert/22215 -https://www.oceanexpert.org/expert/43985 -https://www.oceanexpert.org/expert/31586 -https://www.oceanexpert.org/institution/13153 -https://www.oceanexpert.org/event/1198 -https://www.oceanexpert.org/institution/18601 -https://www.oceanexpert.org/expert/44997 -https://www.oceanexpert.org/expert/35532 -https://www.oceanexpert.org/institution/15745 -https://www.oceanexpert.org/event/761 -https://www.oceanexpert.org/expert/45165 -https://www.oceanexpert.org/expert/42725 -https://www.oceanexpert.org/expert/39278 -https://www.oceanexpert.org/expert/37929 -https://www.oceanexpert.org/event/2136 -https://www.oceanexpert.org/expert/42908 -https://www.oceanexpert.org/expert/43751 -https://www.oceanexpert.org/institution/13920 -https://www.oceanexpert.org/expert/41980 -https://www.oceanexpert.org/institution/11182 -https://www.oceanexpert.org/expert/20672 -https://www.oceanexpert.org/expert/37410 -https://www.oceanexpert.org/expert/46984 -https://www.oceanexpert.org/expert/27837 -https://www.oceanexpert.org/expert/36352 -https://www.oceanexpert.org/expert/26541 -https://www.oceanexpert.org/expert/46688 -https://www.oceanexpert.org/event/132 -https://www.oceanexpert.org/expert/46368 -https://www.oceanexpert.org/expert/27056 -https://www.oceanexpert.org/event/1958 -https://www.oceanexpert.org/expert/40588 -https://www.oceanexpert.org/expert/44257 -https://www.oceanexpert.org/expert/48664 -https://www.oceanexpert.org/expert/7929 -https://www.oceanexpert.org/expert/6664 -https://www.oceanexpert.org/institution/9440 -https://www.oceanexpert.org/expert/44975 -https://www.oceanexpert.org/expert/32464 -https://www.oceanexpert.org/expert/18987 -https://www.oceanexpert.org/event/2630 -https://www.oceanexpert.org/expert/16624 -https://www.oceanexpert.org/expert/21984 -https://www.oceanexpert.org/institution/19084 -https://www.oceanexpert.org/event/371 -https://www.oceanexpert.org/event/1728 -https://www.oceanexpert.org/expert/25969 -https://www.oceanexpert.org/institution/19550 -https://www.oceanexpert.org/institution/19778 -https://www.oceanexpert.org/event/2827 -https://www.oceanexpert.org/institution/12796 -https://www.oceanexpert.org/expert/13104 -https://www.oceanexpert.org/institution/19749 -https://www.oceanexpert.org/expert/14803 -https://www.oceanexpert.org/event/2600 -https://www.oceanexpert.org/expert/45035 -https://www.oceanexpert.org/expert/38517 -https://www.oceanexpert.org/expert/45045 -https://www.oceanexpert.org/expert/22543 -https://www.oceanexpert.org/expert/22839 -https://www.oceanexpert.org/expert/37265 -https://www.oceanexpert.org/expert/39326 -https://www.oceanexpert.org/expert/7590 -https://www.oceanexpert.org/institution/9303 -https://www.oceanexpert.org/expert/30089 -https://www.oceanexpert.org/expert/24345 -https://www.oceanexpert.org/expert/32344 -https://www.oceanexpert.org/event/15 -https://www.oceanexpert.org/institution/21606 -https://www.oceanexpert.org/expert/45926 -https://www.oceanexpert.org/expert/7201 -https://www.oceanexpert.org/expert/235 -https://www.oceanexpert.org/expert/30800 -https://www.oceanexpert.org/expert/49009 -https://www.oceanexpert.org/expert/40672 -https://www.oceanexpert.org/institution/12067 -https://www.oceanexpert.org/expert/45600 -https://www.oceanexpert.org/expert/34283 -https://www.oceanexpert.org/expert/21256 -https://www.oceanexpert.org/expert/48150 -https://www.oceanexpert.org/expert/985 -https://www.oceanexpert.org/expert/25279 -https://www.oceanexpert.org/expert/36196 -https://www.oceanexpert.org/expert/37427 -https://www.oceanexpert.org/institution/22057 -https://www.oceanexpert.org/institution/11379 -https://www.oceanexpert.org/expert/23026 -https://www.oceanexpert.org/expert/15546 -https://www.oceanexpert.org/event/2765 -https://www.oceanexpert.org/expert/30782 -https://www.oceanexpert.org/event/2762 -https://www.oceanexpert.org/institution/7663 -https://www.oceanexpert.org/expert/7748 -https://www.oceanexpert.org/institution/20347 -https://www.oceanexpert.org/institution/17805 -https://www.oceanexpert.org/institution/17321 -https://www.oceanexpert.org/expert/29937 -https://www.oceanexpert.org/expert/19376 -https://www.oceanexpert.org/expert/43757 -https://www.oceanexpert.org/expert/20739 -https://www.oceanexpert.org/expert/48959 -https://www.oceanexpert.org/institution/13530 -https://www.oceanexpert.org/expert/15615 -https://www.oceanexpert.org/institution/10492 -https://www.oceanexpert.org/expert/17363 -https://www.oceanexpert.org/expert/18149 -https://www.oceanexpert.org/expert/32498 -https://www.oceanexpert.org/event/1884 -https://www.oceanexpert.org/expert/27279 -https://www.oceanexpert.org/expert/28018 -https://www.oceanexpert.org/institution/18782 -https://www.oceanexpert.org/institution/10197 -https://www.oceanexpert.org/expert/29156 -https://www.oceanexpert.org/expert/18178 -https://www.oceanexpert.org/institution/21634 -https://www.oceanexpert.org/expert/44092 -https://www.oceanexpert.org/expert/25695 -https://www.oceanexpert.org/expert/14679 -https://www.oceanexpert.org/expert/19778 -https://www.oceanexpert.org/expert/23131 -https://www.oceanexpert.org/expert/22506 -https://www.oceanexpert.org/institution/20638 -https://www.oceanexpert.org/event/1960 -https://www.oceanexpert.org/expert/35399 -https://www.oceanexpert.org/institution/19632 -https://www.oceanexpert.org/expert/43036 -https://www.oceanexpert.org/institution/16161 -https://www.oceanexpert.org/expert/11411 -https://www.oceanexpert.org/expert/35154 -https://www.oceanexpert.org/expert/26819 -https://www.oceanexpert.org/institution/20649 -https://www.oceanexpert.org/institution/7242 -https://www.oceanexpert.org/expert/42663 -https://www.oceanexpert.org/institution/19854 -https://www.oceanexpert.org/expert/35920 -https://www.oceanexpert.org/expert/46526 -https://www.oceanexpert.org/expert/24706 -https://www.oceanexpert.org/expert/18150 -https://www.oceanexpert.org/expert/35401 -https://www.oceanexpert.org/institution/8369 -https://www.oceanexpert.org/event/1292 -https://www.oceanexpert.org/expert/14287 -https://www.oceanexpert.org/expert/21594 -https://www.oceanexpert.org/institution/15815 -https://www.oceanexpert.org/expert/16427 -https://www.oceanexpert.org/institution/10640 -https://www.oceanexpert.org/expert/4097 -https://www.oceanexpert.org/expert/34678 -https://www.oceanexpert.org/expert/38703 -https://www.oceanexpert.org/expert/34237 -https://www.oceanexpert.org/institution/18238 -https://www.oceanexpert.org/institution/14252 -https://www.oceanexpert.org/expert/4482 -https://www.oceanexpert.org/expert/20120 -https://www.oceanexpert.org/expert/43677 -https://www.oceanexpert.org/expert/44075 -https://www.oceanexpert.org/expert/35462 -https://www.oceanexpert.org/institution/18664 -https://www.oceanexpert.org/institution/19756 -https://www.oceanexpert.org/expert/29243 -https://www.oceanexpert.org/expert/36823 -https://www.oceanexpert.org/expert/43353 -https://www.oceanexpert.org/expert/23255 -https://www.oceanexpert.org/expert/27316 -https://www.oceanexpert.org/institution/15046 -https://www.oceanexpert.org/expert/28479 -https://www.oceanexpert.org/expert/30369 -https://www.oceanexpert.org/expert/24315 -https://www.oceanexpert.org/expert/44057 -https://www.oceanexpert.org/event/628 -https://www.oceanexpert.org/expert/26594 -https://www.oceanexpert.org/expert/8028 -https://www.oceanexpert.org/institution/10268 -https://www.oceanexpert.org/expert/45070 -https://www.oceanexpert.org/institution/12468 -https://www.oceanexpert.org/expert/24321 -https://www.oceanexpert.org/expert/3480 -https://www.oceanexpert.org/institution/21919 -https://www.oceanexpert.org/expert/43763 -https://www.oceanexpert.org/expert/39226 -https://www.oceanexpert.org/expert/46896 -https://www.oceanexpert.org/expert/48287 -https://www.oceanexpert.org/institution/18515 -https://www.oceanexpert.org/expert/14098 -https://www.oceanexpert.org/expert/39569 -https://www.oceanexpert.org/expert/22968 -https://www.oceanexpert.org/expert/30050 -https://www.oceanexpert.org/institution/21637 -https://www.oceanexpert.org/institution/20822 -https://www.oceanexpert.org/expert/37899 -https://www.oceanexpert.org/expert/44159 -https://www.oceanexpert.org/expert/24830 -https://www.oceanexpert.org/expert/46689 -https://www.oceanexpert.org/institution/9625 -https://www.oceanexpert.org/institution/21849 -https://www.oceanexpert.org/event/1068 -https://www.oceanexpert.org/expert/35832 -https://www.oceanexpert.org/institution/13652 -https://www.oceanexpert.org/institution/16488 -https://www.oceanexpert.org/expert/45115 -https://www.oceanexpert.org/event/2903 -https://www.oceanexpert.org/expert/11088 -https://www.oceanexpert.org/expert/43272 -https://www.oceanexpert.org/expert/24897 -https://www.oceanexpert.org/expert/39371 -https://www.oceanexpert.org/expert/42669 -https://www.oceanexpert.org/expert/46682 -https://www.oceanexpert.org/expert/23931 -https://www.oceanexpert.org/institution/11095 -https://www.oceanexpert.org/expert/17148 -https://www.oceanexpert.org/institution/11216 -https://www.oceanexpert.org/expert/42987 -https://www.oceanexpert.org/expert/35354 -https://www.oceanexpert.org/event/355 -https://www.oceanexpert.org/expert/19965 -https://www.oceanexpert.org/expert/45678 -https://www.oceanexpert.org/institution/8032 -https://www.oceanexpert.org/expert/43194 -https://www.oceanexpert.org/institution/18933 -https://www.oceanexpert.org/expert/25000 -https://www.oceanexpert.org/expert/45047 -https://www.oceanexpert.org/event/2535 -https://www.oceanexpert.org/expert/16640 -https://www.oceanexpert.org/expert/30914 -https://www.oceanexpert.org/expert/26701 -https://www.oceanexpert.org/institution/20000 -https://www.oceanexpert.org/expert/45399 -https://www.oceanexpert.org/expert/7185 -https://www.oceanexpert.org/institution/5091 -https://www.oceanexpert.org/expert/35898 -https://www.oceanexpert.org/expert/19227 -https://www.oceanexpert.org/expert/48028 -https://www.oceanexpert.org/expert/20425 -https://www.oceanexpert.org/expert/25788 -https://www.oceanexpert.org/expert/48487 -https://www.oceanexpert.org/expert/32276 -https://www.oceanexpert.org/institution/17646 -https://www.oceanexpert.org/institution/19106 -https://www.oceanexpert.org/institution/22050 -https://www.oceanexpert.org/expert/31619 -https://www.oceanexpert.org/expert/45177 -https://www.oceanexpert.org/expert/26048 -https://www.oceanexpert.org/event/1198 -https://www.oceanexpert.org/expert/33212 -https://www.oceanexpert.org/event/2999 -https://www.oceanexpert.org/expert/32560 -https://www.oceanexpert.org/institution/11061 -https://www.oceanexpert.org/event/2888 -https://www.oceanexpert.org/expert/21856 -https://www.oceanexpert.org/expert/42614 -https://www.oceanexpert.org/expert/6654 -https://www.oceanexpert.org/expert/47481 -https://www.oceanexpert.org/institution/18367 -https://www.oceanexpert.org/expert/14772 -https://www.oceanexpert.org/expert/20837 -https://www.oceanexpert.org/institution/18612 -https://www.oceanexpert.org/expert/36695 -https://www.oceanexpert.org/institution/22129 -https://www.oceanexpert.org/expert/38105 -https://www.oceanexpert.org/expert/17227 -https://www.oceanexpert.org/event/1661 -https://www.oceanexpert.org/institution/4975 -https://www.oceanexpert.org/expert/1412 -https://www.oceanexpert.org/expert/42843 -https://www.oceanexpert.org/event/1941 -https://www.oceanexpert.org/expert/9619 -https://www.oceanexpert.org/expert/17880 -https://www.oceanexpert.org/expert/24940 -https://www.oceanexpert.org/expert/25835 -https://www.oceanexpert.org/institution/17430 -https://www.oceanexpert.org/institution/10510 -https://www.oceanexpert.org/expert/6194 -https://www.oceanexpert.org/institution/11280 -https://www.oceanexpert.org/expert/13592 -https://www.oceanexpert.org/expert/10696 -https://www.oceanexpert.org/expert/19025 -https://www.oceanexpert.org/expert/32755 -https://www.oceanexpert.org/institution/21943 -https://www.oceanexpert.org/expert/26624 -https://www.oceanexpert.org/expert/47328 -https://www.oceanexpert.org/expert/24241 -https://www.oceanexpert.org/expert/13390 -https://www.oceanexpert.org/institution/18841 -https://www.oceanexpert.org/expert/16604 -https://www.oceanexpert.org/expert/19458 -https://www.oceanexpert.org/expert/15968 -https://www.oceanexpert.org/expert/26385 -https://www.oceanexpert.org/expert/46886 -https://www.oceanexpert.org/event/2842 -https://www.oceanexpert.org/expert/44939 -https://www.oceanexpert.org/event/477 -https://www.oceanexpert.org/expert/24089 -https://www.oceanexpert.org/expert/15933 -https://www.oceanexpert.org/expert/32371 -https://www.oceanexpert.org/expert/28253 -https://www.oceanexpert.org/expert/4270 -https://www.oceanexpert.org/institution/10533 -https://www.oceanexpert.org/institution/9526 -https://www.oceanexpert.org/expert/29138 -https://www.oceanexpert.org/event/410 -https://www.oceanexpert.org/institution/13532 -https://www.oceanexpert.org/expert/27140 -https://www.oceanexpert.org/expert/45151 -https://www.oceanexpert.org/expert/23242 -https://www.oceanexpert.org/expert/24988 -https://www.oceanexpert.org/expert/38558 -https://www.oceanexpert.org/institution/7227 -https://www.oceanexpert.org/expert/42425 -https://www.oceanexpert.org/expert/47270 -https://www.oceanexpert.org/expert/43829 -https://www.oceanexpert.org/expert/12010 -https://www.oceanexpert.org/expert/11641 -https://www.oceanexpert.org/expert/12190 -https://www.oceanexpert.org/institution/21209 -https://www.oceanexpert.org/institution/5153 -https://www.oceanexpert.org/expert/28124 -https://www.oceanexpert.org/expert/27207 -https://www.oceanexpert.org/institution/16643 -https://www.oceanexpert.org/institution/18660 -https://www.oceanexpert.org/expert/13156 -https://www.oceanexpert.org/event/1459 -https://www.oceanexpert.org/institution/15392 -https://www.oceanexpert.org/institution/11193 -https://www.oceanexpert.org/expert/5316 -https://www.oceanexpert.org/expert/33423 -https://www.oceanexpert.org/institution/20240 -https://www.oceanexpert.org/institution/14881 -https://www.oceanexpert.org/expert/25364 -https://www.oceanexpert.org/expert/20537 -https://www.oceanexpert.org/expert/78 -https://www.oceanexpert.org/expert/47109 -https://www.oceanexpert.org/expert/26505 -https://www.oceanexpert.org/event/985 -https://www.oceanexpert.org/expert/14131 -https://www.oceanexpert.org/institution/20986 -https://www.oceanexpert.org/institution/14227 -https://www.oceanexpert.org/expert/2015 -https://www.oceanexpert.org/event/2893 -https://www.oceanexpert.org/institution/11172 -https://www.oceanexpert.org/institution/12118 -https://www.oceanexpert.org/expert/28002 -https://www.oceanexpert.org/institution/12185 -https://www.oceanexpert.org/expert/29989 -https://www.oceanexpert.org/expert/13035 -https://www.oceanexpert.org/expert/35509 -https://www.oceanexpert.org/expert/23467 -https://www.oceanexpert.org/expert/6991 -https://www.oceanexpert.org/expert/18288 -https://www.oceanexpert.org/expert/578 -https://www.oceanexpert.org/expert/30302 -https://www.oceanexpert.org/institution/19293 -https://www.oceanexpert.org/expert/24846 -https://www.oceanexpert.org/expert/29584 -https://www.oceanexpert.org/expert/18288 -https://www.oceanexpert.org/institution/12881 -https://www.oceanexpert.org/institution/14301 -https://www.oceanexpert.org/expert/27946 -https://www.oceanexpert.org/expert/30884 -https://www.oceanexpert.org/expert/27339 -https://www.oceanexpert.org/expert/33372 -https://www.oceanexpert.org/institution/19977 -https://www.oceanexpert.org/expert/19731 -https://www.oceanexpert.org/expert/48272 -https://www.oceanexpert.org/institution/19033 -https://www.oceanexpert.org/expert/20383 -https://www.oceanexpert.org/institution/19141 -https://www.oceanexpert.org/institution/17661 -https://www.oceanexpert.org/expert/33466 -https://www.oceanexpert.org/expert/34965 -https://www.oceanexpert.org/expert/42811 -https://www.oceanexpert.org/expert/25892 -https://www.oceanexpert.org/expert/23659 -https://www.oceanexpert.org/expert/48545 -https://www.oceanexpert.org/event/3186 -https://www.oceanexpert.org/institution/15387 -https://www.oceanexpert.org/expert/39388 -https://www.oceanexpert.org/expert/39567 -https://www.oceanexpert.org/expert/2013 -https://www.oceanexpert.org/institution/19811 -https://www.oceanexpert.org/expert/29900 -https://www.oceanexpert.org/expert/32094 -https://www.oceanexpert.org/expert/5503 -https://www.oceanexpert.org/expert/21036 -https://www.oceanexpert.org/expert/1038 -https://www.oceanexpert.org/expert/22029 -https://www.oceanexpert.org/institution/19722 -https://www.oceanexpert.org/expert/35406 -https://www.oceanexpert.org/expert/32896 -https://www.oceanexpert.org/institution/10278 -https://www.oceanexpert.org/expert/26939 -https://www.oceanexpert.org/expert/11213 -https://www.oceanexpert.org/expert/22314 -https://www.oceanexpert.org/expert/46602 -https://www.oceanexpert.org/expert/16769 -https://www.oceanexpert.org/expert/39338 -https://www.oceanexpert.org/expert/27027 -https://www.oceanexpert.org/institution/13138 -https://www.oceanexpert.org/institution/11144 -https://www.oceanexpert.org/expert/3643 -https://www.oceanexpert.org/expert/29508 -https://www.oceanexpert.org/institution/17098 -https://www.oceanexpert.org/expert/2646 -https://www.oceanexpert.org/expert/39555 -https://www.oceanexpert.org/expert/26868 -https://www.oceanexpert.org/institution/17922 -https://www.oceanexpert.org/expert/11265 -https://www.oceanexpert.org/expert/18926 -https://www.oceanexpert.org/institution/21224 -https://www.oceanexpert.org/expert/45862 -https://www.oceanexpert.org/expert/11903 -https://www.oceanexpert.org/institution/9310 -https://www.oceanexpert.org/expert/44586 -https://www.oceanexpert.org/expert/19579 -https://www.oceanexpert.org/expert/22184 -https://www.oceanexpert.org/expert/34887 -https://www.oceanexpert.org/institution/12562 -https://www.oceanexpert.org/expert/16175 -https://www.oceanexpert.org/institution/21205 -https://www.oceanexpert.org/expert/42486 -https://www.oceanexpert.org/expert/37035 -https://www.oceanexpert.org/institution/10418 -https://www.oceanexpert.org/expert/13360 -https://www.oceanexpert.org/institution/19616 -https://www.oceanexpert.org/expert/28127 -https://www.oceanexpert.org/expert/25140 -https://www.oceanexpert.org/institution/19932 -https://www.oceanexpert.org/expert/24209 -https://www.oceanexpert.org/institution/10838 -https://www.oceanexpert.org/expert/45899 -https://www.oceanexpert.org/expert/8181 -https://www.oceanexpert.org/expert/31527 -https://www.oceanexpert.org/institution/19629 -https://www.oceanexpert.org/expert/24844 -https://www.oceanexpert.org/expert/30954 -https://www.oceanexpert.org/expert/47606 -https://www.oceanexpert.org/institution/7269 -https://www.oceanexpert.org/expert/47202 -https://www.oceanexpert.org/expert/47402 -https://www.oceanexpert.org/expert/33576 -https://www.oceanexpert.org/expert/43216 -https://www.oceanexpert.org/expert/21088 -https://www.oceanexpert.org/expert/39362 -https://www.oceanexpert.org/expert/16713 -https://www.oceanexpert.org/expert/26613 -https://www.oceanexpert.org/institution/19079 -https://www.oceanexpert.org/institution/21587 -https://www.oceanexpert.org/institution/8145 -https://www.oceanexpert.org/expert/44661 -https://www.oceanexpert.org/institution/13530 -https://www.oceanexpert.org/institution/17776 -https://www.oceanexpert.org/institution/9338 -https://www.oceanexpert.org/expert/28143 -https://www.oceanexpert.org/expert/26870 -https://www.oceanexpert.org/event/2666 -https://www.oceanexpert.org/institution/19260 -https://www.oceanexpert.org/expert/43772 -https://www.oceanexpert.org/expert/36437 -https://www.oceanexpert.org/expert/31157 -https://www.oceanexpert.org/expert/28313 -https://www.oceanexpert.org/institution/21741 -https://www.oceanexpert.org/expert/42146 -https://www.oceanexpert.org/expert/47524 -https://www.oceanexpert.org/institution/11661 -https://www.oceanexpert.org/event/641 -https://www.oceanexpert.org/institution/20539 -https://www.oceanexpert.org/expert/25485 -https://www.oceanexpert.org/expert/25809 -https://www.oceanexpert.org/institution/14441 -https://www.oceanexpert.org/expert/30326 -https://www.oceanexpert.org/expert/24188 -https://www.oceanexpert.org/expert/25431 -https://www.oceanexpert.org/expert/48522 -https://www.oceanexpert.org/expert/27225 -https://www.oceanexpert.org/expert/20103 -https://www.oceanexpert.org/expert/23061 -https://www.oceanexpert.org/institution/20210 -https://www.oceanexpert.org/institution/10734 -https://www.oceanexpert.org/expert/41913 -https://www.oceanexpert.org/expert/27853 -https://www.oceanexpert.org/expert/45836 -https://www.oceanexpert.org/expert/37907 -https://www.oceanexpert.org/expert/46366 -https://www.oceanexpert.org/expert/9510 -https://www.oceanexpert.org/expert/33849 -https://www.oceanexpert.org/institution/12169 -https://www.oceanexpert.org/institution/8739 -https://www.oceanexpert.org/institution/16801 -https://www.oceanexpert.org/institution/21679 -https://www.oceanexpert.org/institution/8297 -https://www.oceanexpert.org/expert/18617 -https://www.oceanexpert.org/event/1124 -https://www.oceanexpert.org/institution/17902 -https://www.oceanexpert.org/expert/24049 -https://www.oceanexpert.org/expert/39347 -https://www.oceanexpert.org/institution/15759 -https://www.oceanexpert.org/institution/21044 -https://www.oceanexpert.org/expert/26802 -https://www.oceanexpert.org/event/1585 -https://www.oceanexpert.org/expert/25984 -https://www.oceanexpert.org/expert/33741 -https://www.oceanexpert.org/expert/36547 -https://www.oceanexpert.org/event/2639 -https://www.oceanexpert.org/expert/26661 -https://www.oceanexpert.org/expert/33197 -https://www.oceanexpert.org/expert/22013 -https://www.oceanexpert.org/expert/47962 -https://www.oceanexpert.org/institution/14932 -https://www.oceanexpert.org/expert/24536 -https://www.oceanexpert.org/event/2594 -https://www.oceanexpert.org/institution/21973 -https://www.oceanexpert.org/expert/22866 -https://www.oceanexpert.org/expert/23506 -https://www.oceanexpert.org/expert/27532 -https://www.oceanexpert.org/expert/20156 -https://www.oceanexpert.org/event/1941 -https://www.oceanexpert.org/event/1993 -https://www.oceanexpert.org/institution/19312 -https://www.oceanexpert.org/expert/14166 -https://www.oceanexpert.org/institution/15253 -https://www.oceanexpert.org/event/1989 -https://www.oceanexpert.org/expert/13982 -https://www.oceanexpert.org/event/2148 -https://www.oceanexpert.org/expert/20604 -https://www.oceanexpert.org/expert/11529 -https://www.oceanexpert.org/expert/30958 -https://www.oceanexpert.org/institution/21020 -https://www.oceanexpert.org/expert/47278 -https://www.oceanexpert.org/institution/19021 -https://www.oceanexpert.org/expert/23960 -https://www.oceanexpert.org/expert/36740 -https://www.oceanexpert.org/expert/16847 -https://www.oceanexpert.org/institution/21086 -https://www.oceanexpert.org/expert/6512 -https://www.oceanexpert.org/expert/16883 -https://www.oceanexpert.org/expert/48061 -https://www.oceanexpert.org/expert/45504 -https://www.oceanexpert.org/expert/11383 -https://www.oceanexpert.org/institution/17347 -https://www.oceanexpert.org/expert/26004 -https://www.oceanexpert.org/expert/20579 -https://www.oceanexpert.org/expert/47213 -https://www.oceanexpert.org/expert/48552 -https://www.oceanexpert.org/expert/25200 -https://www.oceanexpert.org/expert/46001 -https://www.oceanexpert.org/institution/12515 -https://www.oceanexpert.org/event/868 -https://www.oceanexpert.org/expert/2164 -https://www.oceanexpert.org/expert/44885 -https://www.oceanexpert.org/expert/43571 -https://www.oceanexpert.org/expert/20872 -https://www.oceanexpert.org/expert/18435 -https://www.oceanexpert.org/expert/20807 -https://www.oceanexpert.org/institution/19693 -https://www.oceanexpert.org/institution/16322 -https://www.oceanexpert.org/expert/26371 -https://www.oceanexpert.org/expert/19318 -https://www.oceanexpert.org/expert/13092 -https://www.oceanexpert.org/expert/36768 -https://www.oceanexpert.org/expert/6037 -https://www.oceanexpert.org/expert/45982 -https://www.oceanexpert.org/expert/24465 -https://www.oceanexpert.org/institution/16691 -https://www.oceanexpert.org/institution/14905 -https://www.oceanexpert.org/institution/18631 -https://www.oceanexpert.org/event/2818 -https://www.oceanexpert.org/expert/31054 -https://www.oceanexpert.org/expert/7171 -https://www.oceanexpert.org/expert/21454 -https://www.oceanexpert.org/expert/21749 -https://www.oceanexpert.org/event/872 -https://www.oceanexpert.org/expert/243 -https://www.oceanexpert.org/expert/30587 -https://www.oceanexpert.org/event/1312 -https://www.oceanexpert.org/expert/38094 -https://www.oceanexpert.org/expert/33463 -https://www.oceanexpert.org/expert/36726 -https://www.oceanexpert.org/expert/29785 -https://www.oceanexpert.org/expert/35711 -https://www.oceanexpert.org/institution/11996 -https://www.oceanexpert.org/institution/15681 -https://www.oceanexpert.org/institution/19414 -https://www.oceanexpert.org/institution/20456 -https://www.oceanexpert.org/expert/35375 -https://www.oceanexpert.org/institution/18356 -https://www.oceanexpert.org/institution/14058 -https://www.oceanexpert.org/expert/44173 -https://www.oceanexpert.org/institution/13239 -https://www.oceanexpert.org/expert/33755 -https://www.oceanexpert.org/expert/24449 -https://www.oceanexpert.org/institution/20257 -https://www.oceanexpert.org/expert/34255 -https://www.oceanexpert.org/expert/35420 -https://www.oceanexpert.org/expert/40599 -https://www.oceanexpert.org/institution/18130 -https://www.oceanexpert.org/expert/16677 -https://www.oceanexpert.org/institution/13342 -https://www.oceanexpert.org/institution/16145 -https://www.oceanexpert.org/expert/27369 -https://www.oceanexpert.org/expert/48473 -https://www.oceanexpert.org/expert/10904 -https://www.oceanexpert.org/expert/32639 -https://www.oceanexpert.org/expert/25933 -https://www.oceanexpert.org/expert/24169 -https://www.oceanexpert.org/event/3089 -https://www.oceanexpert.org/expert/38447 -https://www.oceanexpert.org/institution/16139 -https://www.oceanexpert.org/expert/25995 -https://www.oceanexpert.org/expert/49039 -https://www.oceanexpert.org/expert/23588 -https://www.oceanexpert.org/event/2811 -https://www.oceanexpert.org/expert/26386 -https://www.oceanexpert.org/expert/37913 -https://www.oceanexpert.org/expert/3508 -https://www.oceanexpert.org/institution/21885 -https://www.oceanexpert.org/expert/30234 -https://www.oceanexpert.org/expert/7528 -https://www.oceanexpert.org/expert/34512 -https://www.oceanexpert.org/institution/18555 -https://www.oceanexpert.org/institution/18660 -https://www.oceanexpert.org/expert/14233 -https://www.oceanexpert.org/institution/17228 -https://www.oceanexpert.org/expert/22504 -https://www.oceanexpert.org/institution/21388 -https://www.oceanexpert.org/expert/973 -https://www.oceanexpert.org/institution/8433 -https://www.oceanexpert.org/institution/21691 -https://www.oceanexpert.org/expert/19139 -https://www.oceanexpert.org/expert/34869 -https://www.oceanexpert.org/institution/15410 -https://www.oceanexpert.org/institution/13371 -https://www.oceanexpert.org/expert/32892 -https://www.oceanexpert.org/expert/30948 -https://www.oceanexpert.org/expert/47159 -https://www.oceanexpert.org/institution/13279 -https://www.oceanexpert.org/event/1967 -https://www.oceanexpert.org/expert/38075 -https://www.oceanexpert.org/expert/15786 -https://www.oceanexpert.org/expert/18273 -https://www.oceanexpert.org/expert/47066 -https://www.oceanexpert.org/expert/35575 -https://www.oceanexpert.org/expert/1253 -https://www.oceanexpert.org/expert/24586 -https://www.oceanexpert.org/expert/11530 -https://www.oceanexpert.org/expert/44289 -https://www.oceanexpert.org/event/327 -https://www.oceanexpert.org/event/1550 -https://www.oceanexpert.org/institution/10172 -https://www.oceanexpert.org/expert/22493 -https://www.oceanexpert.org/expert/21644 -https://www.oceanexpert.org/expert/47864 -https://www.oceanexpert.org/expert/20507 -https://www.oceanexpert.org/expert/34749 -https://www.oceanexpert.org/expert/40312 -https://www.oceanexpert.org/expert/44890 -https://www.oceanexpert.org/event/2061 -https://www.oceanexpert.org/event/1595 -https://www.oceanexpert.org/institution/14228 -https://www.oceanexpert.org/expert/31738 -https://www.oceanexpert.org/expert/43249 -https://www.oceanexpert.org/expert/11641 -https://www.oceanexpert.org/event/2556 -https://www.oceanexpert.org/expert/8119 -https://www.oceanexpert.org/expert/25691 -https://www.oceanexpert.org/expert/27133 -https://www.oceanexpert.org/institution/13630 -https://www.oceanexpert.org/expert/26393 -https://www.oceanexpert.org/expert/45644 -https://www.oceanexpert.org/institution/21284 -https://www.oceanexpert.org/expert/8696 -https://www.oceanexpert.org/institution/11101 -https://www.oceanexpert.org/expert/20708 -https://www.oceanexpert.org/expert/48206 -https://www.oceanexpert.org/expert/30307 -https://www.oceanexpert.org/expert/31017 -https://www.oceanexpert.org/institution/21187 -https://www.oceanexpert.org/expert/25889 -https://www.oceanexpert.org/institution/21774 -https://www.oceanexpert.org/event/940 -https://www.oceanexpert.org/expert/33110 -https://www.oceanexpert.org/event/2644 -https://www.oceanexpert.org/expert/15992 -https://www.oceanexpert.org/institution/20828 -https://www.oceanexpert.org/event/2432 -https://www.oceanexpert.org/expert/44329 -https://www.oceanexpert.org/expert/38419 -https://www.oceanexpert.org/expert/33883 -https://www.oceanexpert.org/institution/15041 -https://www.oceanexpert.org/expert/37820 -https://www.oceanexpert.org/institution/14960 -https://www.oceanexpert.org/event/1842 -https://www.oceanexpert.org/expert/26856 -https://www.oceanexpert.org/expert/25146 -https://www.oceanexpert.org/institution/18843 -https://www.oceanexpert.org/institution/11843 -https://www.oceanexpert.org/expert/25443 -https://www.oceanexpert.org/expert/31204 -https://www.oceanexpert.org/institution/9131 -https://www.oceanexpert.org/institution/21792 -https://www.oceanexpert.org/institution/19779 -https://www.oceanexpert.org/expert/23953 -https://www.oceanexpert.org/expert/43750 -https://www.oceanexpert.org/expert/11295 -https://www.oceanexpert.org/event/697 -https://www.oceanexpert.org/expert/44157 -https://www.oceanexpert.org/expert/17010 -https://www.oceanexpert.org/expert/21094 -https://www.oceanexpert.org/expert/45874 -https://www.oceanexpert.org/institution/21226 -https://www.oceanexpert.org/institution/21678 -https://www.oceanexpert.org/institution/6971 -https://www.oceanexpert.org/expert/23130 -https://www.oceanexpert.org/expert/19955 -https://www.oceanexpert.org/expert/32173 -https://www.oceanexpert.org/expert/26688 -https://www.oceanexpert.org/institution/21821 -https://www.oceanexpert.org/expert/24922 -https://www.oceanexpert.org/event/76 -https://www.oceanexpert.org/expert/40560 -https://www.oceanexpert.org/expert/34936 -https://www.oceanexpert.org/institution/11835 -https://www.oceanexpert.org/expert/7199 -https://www.oceanexpert.org/expert/11204 -https://www.oceanexpert.org/institution/12765 -https://www.oceanexpert.org/institution/19943 -https://www.oceanexpert.org/expert/20309 -https://www.oceanexpert.org/expert/30750 -https://www.oceanexpert.org/expert/13581 -https://www.oceanexpert.org/expert/44221 -https://www.oceanexpert.org/institution/20160 -https://www.oceanexpert.org/expert/39565 -https://www.oceanexpert.org/expert/48183 -https://www.oceanexpert.org/institution/19056 -https://www.oceanexpert.org/expert/21271 -https://www.oceanexpert.org/expert/11213 -https://www.oceanexpert.org/institution/19366 -https://www.oceanexpert.org/institution/15172 -https://www.oceanexpert.org/expert/19915 -https://www.oceanexpert.org/institution/21128 -https://www.oceanexpert.org/institution/17722 -https://www.oceanexpert.org/expert/37996 -https://www.oceanexpert.org/institution/21092 -https://www.oceanexpert.org/expert/17786 -https://www.oceanexpert.org/event/683 -https://www.oceanexpert.org/expert/26267 -https://www.oceanexpert.org/expert/23967 -https://www.oceanexpert.org/expert/46872 -https://www.oceanexpert.org/expert/33827 -https://www.oceanexpert.org/expert/46503 -https://www.oceanexpert.org/expert/35225 -https://www.oceanexpert.org/institution/18236 -https://www.oceanexpert.org/expert/42947 -https://www.oceanexpert.org/expert/36214 -https://www.oceanexpert.org/expert/25158 -https://www.oceanexpert.org/expert/25808 -https://www.oceanexpert.org/institution/16834 -https://www.oceanexpert.org/institution/5414 -https://www.oceanexpert.org/expert/35717 -https://www.oceanexpert.org/expert/33626 -https://www.oceanexpert.org/expert/12360 -https://www.oceanexpert.org/event/1578 -https://www.oceanexpert.org/expert/11592 -https://www.oceanexpert.org/expert/26771 -https://www.oceanexpert.org/expert/37939 -https://www.oceanexpert.org/expert/32240 -https://www.oceanexpert.org/expert/17306 -https://www.oceanexpert.org/expert/12868 -https://www.oceanexpert.org/expert/16002 -https://www.oceanexpert.org/expert/13944 -https://www.oceanexpert.org/institution/9930 -https://www.oceanexpert.org/expert/45042 -https://www.oceanexpert.org/expert/24281 -https://www.oceanexpert.org/expert/35525 -https://www.oceanexpert.org/expert/26651 -https://www.oceanexpert.org/expert/26783 -https://www.oceanexpert.org/institution/5893 -https://www.oceanexpert.org/expert/44881 -https://www.oceanexpert.org/expert/39282 -https://www.oceanexpert.org/expert/22140 -https://www.oceanexpert.org/institution/13928 -https://www.oceanexpert.org/expert/29815 -https://www.oceanexpert.org/institution/16459 -https://www.oceanexpert.org/expert/18396 -https://www.oceanexpert.org/institution/12171 -https://www.oceanexpert.org/institution/19088 -https://www.oceanexpert.org/expert/1142 -https://www.oceanexpert.org/expert/15511 -https://www.oceanexpert.org/expert/20682 -https://www.oceanexpert.org/institution/13143 -https://www.oceanexpert.org/expert/21803 -https://www.oceanexpert.org/expert/37406 -https://www.oceanexpert.org/institution/19699 -https://www.oceanexpert.org/expert/29785 -https://www.oceanexpert.org/expert/34902 -https://www.oceanexpert.org/expert/27568 -https://www.oceanexpert.org/expert/3697 -https://www.oceanexpert.org/expert/30198 -https://www.oceanexpert.org/expert/1341 -https://www.oceanexpert.org/expert/28485 -https://www.oceanexpert.org/institution/21884 -https://www.oceanexpert.org/expert/7766 -https://www.oceanexpert.org/institution/6225 -https://www.oceanexpert.org/expert/46740 -https://www.oceanexpert.org/expert/39635 -https://www.oceanexpert.org/expert/26584 -https://www.oceanexpert.org/expert/24551 -https://www.oceanexpert.org/expert/45596 -https://www.oceanexpert.org/expert/25063 -https://www.oceanexpert.org/expert/26837 -https://www.oceanexpert.org/expert/18042 -https://www.oceanexpert.org/institution/14099 -https://www.oceanexpert.org/institution/22046 -https://www.oceanexpert.org/institution/7039 -https://www.oceanexpert.org/expert/49027 -https://www.oceanexpert.org/expert/47683 -https://www.oceanexpert.org/event/2446 -https://www.oceanexpert.org/expert/20529 -https://www.oceanexpert.org/event/2363 -https://www.oceanexpert.org/expert/46635 -https://www.oceanexpert.org/institution/15314 -https://www.oceanexpert.org/expert/25226 -https://www.oceanexpert.org/expert/25088 -https://www.oceanexpert.org/institution/20724 -https://www.oceanexpert.org/expert/32532 -https://www.oceanexpert.org/expert/48084 -https://www.oceanexpert.org/expert/32750 -https://www.oceanexpert.org/event/274 -https://www.oceanexpert.org/expert/42907 -https://www.oceanexpert.org/expert/23893 -https://www.oceanexpert.org/event/2350 -https://www.oceanexpert.org/expert/44743 -https://www.oceanexpert.org/event/1915 -https://www.oceanexpert.org/expert/15353 -https://www.oceanexpert.org/expert/22827 -https://www.oceanexpert.org/expert/23482 -https://www.oceanexpert.org/expert/32464 -https://www.oceanexpert.org/expert/47083 -https://www.oceanexpert.org/expert/20359 -https://www.oceanexpert.org/expert/39054 -https://www.oceanexpert.org/expert/21938 -https://www.oceanexpert.org/expert/46429 -https://www.oceanexpert.org/expert/31516 -https://www.oceanexpert.org/expert/15528 -https://www.oceanexpert.org/institution/19746 -https://www.oceanexpert.org/expert/9592 -https://www.oceanexpert.org/institution/17314 -https://www.oceanexpert.org/expert/23481 -https://www.oceanexpert.org/expert/35707 -https://www.oceanexpert.org/expert/33363 -https://www.oceanexpert.org/expert/25864 -https://www.oceanexpert.org/event/71 -https://www.oceanexpert.org/institution/19299 -https://www.oceanexpert.org/expert/12180 -https://www.oceanexpert.org/expert/26997 -https://www.oceanexpert.org/expert/37097 -https://www.oceanexpert.org/event/1025 -https://www.oceanexpert.org/expert/22149 -https://www.oceanexpert.org/institution/15666 -https://www.oceanexpert.org/expert/37861 -https://www.oceanexpert.org/expert/46954 -https://www.oceanexpert.org/institution/19067 -https://www.oceanexpert.org/expert/34806 -https://www.oceanexpert.org/event/1917 -https://www.oceanexpert.org/expert/18251 -https://www.oceanexpert.org/expert/46540 -https://www.oceanexpert.org/expert/17635 -https://www.oceanexpert.org/event/2943 -https://www.oceanexpert.org/expert/47144 -https://www.oceanexpert.org/expert/48176 -https://www.oceanexpert.org/expert/25855 -https://www.oceanexpert.org/expert/30948 -https://www.oceanexpert.org/expert/40631 -https://www.oceanexpert.org/expert/17235 -https://www.oceanexpert.org/expert/36739 -https://www.oceanexpert.org/institution/20086 -https://www.oceanexpert.org/expert/18173 -https://www.oceanexpert.org/expert/17492 -https://www.oceanexpert.org/expert/18966 -https://www.oceanexpert.org/expert/29830 -https://www.oceanexpert.org/institution/13957 -https://www.oceanexpert.org/event/3250 -https://www.oceanexpert.org/event/298 -https://www.oceanexpert.org/expert/21958 -https://www.oceanexpert.org/institution/20944 -https://www.oceanexpert.org/expert/36603 -https://www.oceanexpert.org/expert/6284 -https://www.oceanexpert.org/expert/21937 -https://www.oceanexpert.org/institution/9078 -https://www.oceanexpert.org/expert/36319 -https://www.oceanexpert.org/expert/32422 -https://www.oceanexpert.org/expert/32708 -https://www.oceanexpert.org/expert/23037 -https://www.oceanexpert.org/institution/15643 -https://www.oceanexpert.org/expert/28449 -https://www.oceanexpert.org/expert/46245 -https://www.oceanexpert.org/expert/17957 -https://www.oceanexpert.org/expert/47391 -https://www.oceanexpert.org/institution/21439 -https://www.oceanexpert.org/event/2708 -https://www.oceanexpert.org/expert/38260 -https://www.oceanexpert.org/institution/12480 -https://www.oceanexpert.org/expert/26793 -https://www.oceanexpert.org/institution/12804 -https://www.oceanexpert.org/institution/9270 -https://www.oceanexpert.org/expert/11424 -https://www.oceanexpert.org/institution/13652 -https://www.oceanexpert.org/expert/28118 -https://www.oceanexpert.org/expert/27450 -https://www.oceanexpert.org/institution/11294 -https://www.oceanexpert.org/expert/47528 -https://www.oceanexpert.org/expert/47663 -https://www.oceanexpert.org/expert/43621 -https://www.oceanexpert.org/expert/22013 -https://www.oceanexpert.org/expert/25943 -https://www.oceanexpert.org/expert/26688 -https://www.oceanexpert.org/institution/8706 -https://www.oceanexpert.org/expert/22075 -https://www.oceanexpert.org/expert/47251 -https://www.oceanexpert.org/expert/7255 -https://www.oceanexpert.org/institution/5021 -https://www.oceanexpert.org/expert/48463 -https://www.oceanexpert.org/institution/13627 -https://www.oceanexpert.org/institution/22062 -https://www.oceanexpert.org/expert/38302 -https://www.oceanexpert.org/expert/27014 -https://www.oceanexpert.org/expert/23363 -https://www.oceanexpert.org/expert/35052 -https://www.oceanexpert.org/expert/10613 -https://www.oceanexpert.org/expert/30143 -https://www.oceanexpert.org/institution/20609 -https://www.oceanexpert.org/event/2578 -https://www.oceanexpert.org/institution/21907 -https://www.oceanexpert.org/expert/18116 -https://www.oceanexpert.org/expert/39341 -https://www.oceanexpert.org/expert/32754 -https://www.oceanexpert.org/expert/43016 -https://www.oceanexpert.org/expert/15847 -https://www.oceanexpert.org/expert/18372 -https://www.oceanexpert.org/expert/20431 -https://www.oceanexpert.org/expert/7211 -https://www.oceanexpert.org/expert/35281 -https://www.oceanexpert.org/expert/15008 -https://www.oceanexpert.org/expert/7357 -https://www.oceanexpert.org/expert/37464 -https://www.oceanexpert.org/expert/6907 -https://www.oceanexpert.org/expert/10150 -https://www.oceanexpert.org/expert/29506 -https://www.oceanexpert.org/institution/21073 -https://www.oceanexpert.org/institution/21829 -https://www.oceanexpert.org/expert/27450 -https://www.oceanexpert.org/expert/29557 -https://www.oceanexpert.org/expert/45200 -https://www.oceanexpert.org/institution/19362 -https://www.oceanexpert.org/expert/17918 -https://www.oceanexpert.org/expert/34980 -https://www.oceanexpert.org/institution/16392 -https://www.oceanexpert.org/event/609 -https://www.oceanexpert.org/expert/29278 -https://www.oceanexpert.org/event/1920 -https://www.oceanexpert.org/expert/47399 -https://www.oceanexpert.org/institution/22147 -https://www.oceanexpert.org/expert/21401 -https://www.oceanexpert.org/expert/28156 -https://www.oceanexpert.org/expert/18890 -https://www.oceanexpert.org/institution/20594 -https://www.oceanexpert.org/institution/8852 -https://www.oceanexpert.org/expert/48994 -https://www.oceanexpert.org/expert/18556 -https://www.oceanexpert.org/expert/30406 -https://www.oceanexpert.org/expert/46475 -https://www.oceanexpert.org/expert/27423 -https://www.oceanexpert.org/expert/28139 -https://www.oceanexpert.org/institution/11384 -https://www.oceanexpert.org/expert/40124 -https://www.oceanexpert.org/expert/18344 -https://www.oceanexpert.org/event/941 -https://www.oceanexpert.org/expert/25309 -https://www.oceanexpert.org/institution/21018 -https://www.oceanexpert.org/expert/29916 -https://www.oceanexpert.org/event/1989 -https://www.oceanexpert.org/expert/19397 -https://www.oceanexpert.org/expert/11185 -https://www.oceanexpert.org/expert/23185 -https://www.oceanexpert.org/expert/13158 -https://www.oceanexpert.org/expert/25880 -https://www.oceanexpert.org/expert/36650 -https://www.oceanexpert.org/institution/17929 -https://www.oceanexpert.org/institution/13627 -https://www.oceanexpert.org/expert/39975 -https://www.oceanexpert.org/expert/28330 -https://www.oceanexpert.org/expert/30740 -https://www.oceanexpert.org/institution/12298 -https://www.oceanexpert.org/expert/40124 -https://www.oceanexpert.org/institution/19605 -https://www.oceanexpert.org/expert/29802 -https://www.oceanexpert.org/expert/1725 -https://www.oceanexpert.org/expert/19231 -https://www.oceanexpert.org/event/2947 -https://www.oceanexpert.org/institution/15293 -https://www.oceanexpert.org/expert/19570 -https://www.oceanexpert.org/expert/13351 -https://www.oceanexpert.org/expert/37177 -https://www.oceanexpert.org/expert/46744 -https://www.oceanexpert.org/expert/39069 -https://www.oceanexpert.org/expert/33187 -https://www.oceanexpert.org/expert/26849 -https://www.oceanexpert.org/expert/6724 -https://www.oceanexpert.org/expert/23332 -https://www.oceanexpert.org/expert/35812 -https://www.oceanexpert.org/expert/28052 -https://www.oceanexpert.org/expert/25918 -https://www.oceanexpert.org/expert/2341 -https://www.oceanexpert.org/expert/34536 -https://www.oceanexpert.org/expert/42116 -https://www.oceanexpert.org/expert/35984 -https://www.oceanexpert.org/expert/18552 -https://www.oceanexpert.org/expert/14384 -https://www.oceanexpert.org/event/1696 -https://www.oceanexpert.org/expert/46902 -https://www.oceanexpert.org/expert/48776 -https://www.oceanexpert.org/expert/18004 -https://www.oceanexpert.org/expert/19473 -https://www.oceanexpert.org/expert/27025 -https://www.oceanexpert.org/expert/42698 -https://www.oceanexpert.org/expert/34753 -https://www.oceanexpert.org/expert/35533 -https://www.oceanexpert.org/expert/23666 -https://www.oceanexpert.org/expert/20757 -https://www.oceanexpert.org/expert/43521 -https://www.oceanexpert.org/expert/47878 -https://www.oceanexpert.org/expert/31246 -https://www.oceanexpert.org/event/1326 -https://www.oceanexpert.org/institution/18821 -https://www.oceanexpert.org/institution/19699 -https://www.oceanexpert.org/expert/31553 -https://www.oceanexpert.org/expert/21356 -https://www.oceanexpert.org/expert/45621 -https://www.oceanexpert.org/event/205 -https://www.oceanexpert.org/institution/14030 -https://www.oceanexpert.org/event/688 -https://www.oceanexpert.org/expert/35448 -https://www.oceanexpert.org/expert/35822 -https://www.oceanexpert.org/expert/11830 -https://www.oceanexpert.org/event/1863 -https://www.oceanexpert.org/expert/34702 -https://www.oceanexpert.org/event/1076 -https://www.oceanexpert.org/expert/36938 -https://www.oceanexpert.org/expert/43296 -https://www.oceanexpert.org/event/1591 -https://www.oceanexpert.org/expert/39435 -https://www.oceanexpert.org/institution/10461 -https://www.oceanexpert.org/expert/16157 -https://www.oceanexpert.org/expert/29899 -https://www.oceanexpert.org/institution/70 -https://www.oceanexpert.org/expert/34454 -https://www.oceanexpert.org/expert/29786 -https://www.oceanexpert.org/institution/20857 -https://www.oceanexpert.org/event/415 -https://www.oceanexpert.org/institution/12556 -https://www.oceanexpert.org/expert/44286 -https://www.oceanexpert.org/expert/35600 -https://www.oceanexpert.org/event/1836 -https://www.oceanexpert.org/expert/21799 -https://www.oceanexpert.org/expert/36061 -https://www.oceanexpert.org/expert/23631 -https://www.oceanexpert.org/institution/12092 -https://www.oceanexpert.org/expert/18266 -https://www.oceanexpert.org/expert/27332 -https://www.oceanexpert.org/event/3260 -https://www.oceanexpert.org/expert/23722 -https://www.oceanexpert.org/expert/46347 -https://www.oceanexpert.org/institution/21804 -https://www.oceanexpert.org/expert/28941 -https://www.oceanexpert.org/event/1332 -https://www.oceanexpert.org/expert/24514 -https://www.oceanexpert.org/institution/19139 -https://www.oceanexpert.org/expert/39392 -https://www.oceanexpert.org/expert/45723 -https://www.oceanexpert.org/expert/46764 -https://www.oceanexpert.org/expert/27140 -https://www.oceanexpert.org/expert/43171 -https://www.oceanexpert.org/institution/5591 -https://www.oceanexpert.org/event/1803 -https://www.oceanexpert.org/expert/36854 -https://www.oceanexpert.org/expert/44804 -https://www.oceanexpert.org/institution/18646 -https://www.oceanexpert.org/expert/48499 -https://www.oceanexpert.org/expert/46480 -https://www.oceanexpert.org/expert/36283 -https://www.oceanexpert.org/expert/18289 -https://www.oceanexpert.org/institution/8349 -https://www.oceanexpert.org/expert/5966 -https://www.oceanexpert.org/institution/22065 -https://www.oceanexpert.org/expert/26367 -https://www.oceanexpert.org/event/1973 -https://www.oceanexpert.org/expert/30259 -https://www.oceanexpert.org/expert/20047 -https://www.oceanexpert.org/institution/18740 -https://www.oceanexpert.org/expert/38118 -https://www.oceanexpert.org/expert/24353 -https://www.oceanexpert.org/institution/14276 -https://www.oceanexpert.org/expert/25753 -https://www.oceanexpert.org/expert/26620 -https://www.oceanexpert.org/expert/27305 -https://www.oceanexpert.org/institution/19790 -https://www.oceanexpert.org/expert/39620 -https://www.oceanexpert.org/expert/45507 -https://www.oceanexpert.org/expert/32136 -https://www.oceanexpert.org/institution/11867 -https://www.oceanexpert.org/expert/18705 -https://www.oceanexpert.org/expert/6129 -https://www.oceanexpert.org/expert/44810 -https://www.oceanexpert.org/event/1026 -https://www.oceanexpert.org/institution/12787 -https://www.oceanexpert.org/institution/17937 -https://www.oceanexpert.org/expert/47583 -https://www.oceanexpert.org/expert/43560 -https://www.oceanexpert.org/institution/18221 -https://www.oceanexpert.org/expert/3819 -https://www.oceanexpert.org/expert/20558 -https://www.oceanexpert.org/expert/35458 -https://www.oceanexpert.org/event/2899 -https://www.oceanexpert.org/expert/42118 -https://www.oceanexpert.org/expert/43545 -https://www.oceanexpert.org/institution/11691 -https://www.oceanexpert.org/institution/22038 -https://www.oceanexpert.org/expert/27198 -https://www.oceanexpert.org/expert/37244 -https://www.oceanexpert.org/institution/18576 -https://www.oceanexpert.org/expert/45715 -https://www.oceanexpert.org/institution/12186 -https://www.oceanexpert.org/expert/20369 -https://www.oceanexpert.org/expert/33355 -https://www.oceanexpert.org/institution/19658 -https://www.oceanexpert.org/institution/14042 -https://www.oceanexpert.org/expert/1970 -https://www.oceanexpert.org/expert/22310 -https://www.oceanexpert.org/expert/37139 -https://www.oceanexpert.org/expert/44523 -https://www.oceanexpert.org/expert/39532 -https://www.oceanexpert.org/expert/23041 -https://www.oceanexpert.org/event/850 -https://www.oceanexpert.org/expert/16883 -https://www.oceanexpert.org/expert/44300 -https://www.oceanexpert.org/event/294 -https://www.oceanexpert.org/institution/15676 -https://www.oceanexpert.org/expert/27425 -https://www.oceanexpert.org/institution/21543 -https://www.oceanexpert.org/institution/18771 -https://www.oceanexpert.org/expert/37232 -https://www.oceanexpert.org/institution/19596 -https://www.oceanexpert.org/expert/43615 -https://www.oceanexpert.org/expert/22663 -https://www.oceanexpert.org/expert/45592 -https://www.oceanexpert.org/institution/10819 -https://www.oceanexpert.org/expert/14421 -https://www.oceanexpert.org/expert/40584 -https://www.oceanexpert.org/expert/36586 -https://www.oceanexpert.org/expert/28145 -https://www.oceanexpert.org/expert/34080 -https://www.oceanexpert.org/event/1767 -https://www.oceanexpert.org/event/1517 -https://www.oceanexpert.org/expert/39132 -https://www.oceanexpert.org/institution/20954 -https://www.oceanexpert.org/expert/2128 -https://www.oceanexpert.org/expert/21536 -https://www.oceanexpert.org/expert/37853 -https://www.oceanexpert.org/expert/14881 -https://www.oceanexpert.org/expert/44801 -https://www.oceanexpert.org/expert/42923 -https://www.oceanexpert.org/expert/27017 -https://www.oceanexpert.org/expert/33789 -https://www.oceanexpert.org/expert/18995 -https://www.oceanexpert.org/institution/20655 -https://www.oceanexpert.org/expert/45911 -https://www.oceanexpert.org/institution/18431 -https://www.oceanexpert.org/event/2000 -https://www.oceanexpert.org/expert/17953 -https://www.oceanexpert.org/expert/23852 -https://www.oceanexpert.org/institution/5725 -https://www.oceanexpert.org/institution/8967 -https://www.oceanexpert.org/institution/18576 -https://www.oceanexpert.org/event/1023 -https://www.oceanexpert.org/institution/17467 -https://www.oceanexpert.org/expert/28829 -https://www.oceanexpert.org/institution/12891 -https://www.oceanexpert.org/expert/40657 -https://www.oceanexpert.org/event/2978 -https://www.oceanexpert.org/expert/44468 -https://www.oceanexpert.org/expert/37969 -https://www.oceanexpert.org/expert/45054 -https://www.oceanexpert.org/institution/19549 -https://www.oceanexpert.org/expert/31056 -https://www.oceanexpert.org/expert/33435 -https://www.oceanexpert.org/institution/18175 -https://www.oceanexpert.org/institution/20880 -https://www.oceanexpert.org/expert/28272 -https://www.oceanexpert.org/institution/21621 -https://www.oceanexpert.org/institution/19444 -https://www.oceanexpert.org/expert/27315 -https://www.oceanexpert.org/expert/27156 -https://www.oceanexpert.org/institution/21827 -https://www.oceanexpert.org/expert/31105 -https://www.oceanexpert.org/expert/36337 -https://www.oceanexpert.org/expert/48999 -https://www.oceanexpert.org/expert/18871 -https://www.oceanexpert.org/expert/46308 -https://www.oceanexpert.org/expert/32228 -https://www.oceanexpert.org/expert/35776 -https://www.oceanexpert.org/institution/9813 -https://www.oceanexpert.org/institution/10644 -https://www.oceanexpert.org/expert/36356 -https://www.oceanexpert.org/institution/15548 -https://www.oceanexpert.org/expert/28304 -https://www.oceanexpert.org/expert/43350 -https://www.oceanexpert.org/event/98 -https://www.oceanexpert.org/expert/23549 -https://www.oceanexpert.org/expert/46735 -https://www.oceanexpert.org/institution/6213 -https://www.oceanexpert.org/expert/34567 -https://www.oceanexpert.org/institution/11849 -https://www.oceanexpert.org/expert/28455 -https://www.oceanexpert.org/institution/11802 -https://www.oceanexpert.org/institution/21794 -https://www.oceanexpert.org/expert/6906 -https://www.oceanexpert.org/expert/1332 -https://www.oceanexpert.org/expert/22566 -https://www.oceanexpert.org/expert/44055 -https://www.oceanexpert.org/institution/13143 -https://www.oceanexpert.org/institution/20762 -https://www.oceanexpert.org/expert/21273 -https://www.oceanexpert.org/institution/21935 -https://www.oceanexpert.org/institution/16231 -https://www.oceanexpert.org/institution/22178 -https://www.oceanexpert.org/expert/36403 -https://www.oceanexpert.org/expert/25931 -https://www.oceanexpert.org/institution/18244 -https://www.oceanexpert.org/expert/44835 -https://www.oceanexpert.org/institution/11626 -https://www.oceanexpert.org/institution/19042 -https://www.oceanexpert.org/expert/38343 -https://www.oceanexpert.org/expert/19451 -https://www.oceanexpert.org/expert/19761 -https://www.oceanexpert.org/institution/18849 -https://www.oceanexpert.org/expert/17141 -https://www.oceanexpert.org/institution/12755 -https://www.oceanexpert.org/expert/23381 -https://www.oceanexpert.org/expert/21416 -https://www.oceanexpert.org/expert/25168 -https://www.oceanexpert.org/expert/40883 -https://www.oceanexpert.org/expert/34284 -https://www.oceanexpert.org/expert/34493 -https://www.oceanexpert.org/expert/37896 -https://www.oceanexpert.org/expert/46768 -https://www.oceanexpert.org/institution/11217 -https://www.oceanexpert.org/expert/23450 -https://www.oceanexpert.org/event/1414 -https://www.oceanexpert.org/institution/10369 -https://www.oceanexpert.org/expert/27261 -https://www.oceanexpert.org/expert/22587 -https://www.oceanexpert.org/institution/21454 -https://www.oceanexpert.org/expert/48442 -https://www.oceanexpert.org/event/769 -https://www.oceanexpert.org/event/1636 -https://www.oceanexpert.org/institution/10026 -https://www.oceanexpert.org/institution/13425 -https://www.oceanexpert.org/institution/5374 -https://www.oceanexpert.org/institution/12179 -https://www.oceanexpert.org/institution/19821 -https://www.oceanexpert.org/institution/14444 -https://www.oceanexpert.org/institution/21528 -https://www.oceanexpert.org/institution/17975 -https://www.oceanexpert.org/institution/19664 -https://www.oceanexpert.org/institution/21494 -https://www.oceanexpert.org/expert/16865 -https://www.oceanexpert.org/expert/45600 -https://www.oceanexpert.org/expert/44953 -https://www.oceanexpert.org/expert/46242 -https://www.oceanexpert.org/expert/33864 -https://www.oceanexpert.org/expert/44275 -https://www.oceanexpert.org/expert/11204 -https://www.oceanexpert.org/expert/45952 -https://www.oceanexpert.org/expert/11020 -https://www.oceanexpert.org/expert/39507 -https://www.oceanexpert.org/institution/12671 -https://www.oceanexpert.org/expert/43123 -https://www.oceanexpert.org/expert/44503 -https://www.oceanexpert.org/expert/49009 -https://www.oceanexpert.org/expert/17053 -https://www.oceanexpert.org/event/1393 -https://www.oceanexpert.org/institution/20978 -https://www.oceanexpert.org/institution/21011 -https://www.oceanexpert.org/expert/24839 -https://www.oceanexpert.org/expert/35473 -https://www.oceanexpert.org/institution/10941 -https://www.oceanexpert.org/institution/15453 -https://www.oceanexpert.org/expert/24964 -https://www.oceanexpert.org/expert/14070 -https://www.oceanexpert.org/institution/12218 -https://www.oceanexpert.org/expert/46101 -https://www.oceanexpert.org/expert/665 -https://www.oceanexpert.org/institution/19512 -https://www.oceanexpert.org/event/1724 -https://www.oceanexpert.org/expert/36549 -https://www.oceanexpert.org/expert/47537 -https://www.oceanexpert.org/institution/18452 -https://www.oceanexpert.org/institution/18642 -https://www.oceanexpert.org/expert/16180 -https://www.oceanexpert.org/institution/12671 -https://www.oceanexpert.org/expert/26445 -https://www.oceanexpert.org/expert/24598 -https://www.oceanexpert.org/expert/12489 -https://www.oceanexpert.org/expert/46453 -https://www.oceanexpert.org/expert/30698 -https://www.oceanexpert.org/expert/12180 -https://www.oceanexpert.org/institution/18843 -https://www.oceanexpert.org/expert/33692 -https://www.oceanexpert.org/expert/47696 -https://www.oceanexpert.org/expert/36329 -https://www.oceanexpert.org/institution/20680 -https://www.oceanexpert.org/institution/10981 -https://www.oceanexpert.org/expert/22828 -https://www.oceanexpert.org/institution/20445 -https://www.oceanexpert.org/expert/17518 -https://www.oceanexpert.org/institution/21295 -https://www.oceanexpert.org/expert/34461 -https://www.oceanexpert.org/expert/24656 -https://www.oceanexpert.org/expert/11192 -https://www.oceanexpert.org/expert/43047 -https://www.oceanexpert.org/expert/28347 -https://www.oceanexpert.org/expert/5843 -https://www.oceanexpert.org/event/1793 -https://www.oceanexpert.org/expert/28820 -https://www.oceanexpert.org/event/1795 -https://www.oceanexpert.org/institution/9651 -https://www.oceanexpert.org/event/2028 -https://www.oceanexpert.org/expert/36715 -https://www.oceanexpert.org/expert/37533 -https://www.oceanexpert.org/expert/38626 -https://www.oceanexpert.org/expert/48555 -https://www.oceanexpert.org/expert/47585 -https://www.oceanexpert.org/institution/10974 -https://www.oceanexpert.org/event/2037 -https://www.oceanexpert.org/event/234 -https://www.oceanexpert.org/event/1278 -https://www.oceanexpert.org/expert/14861 -https://www.oceanexpert.org/expert/31000 -https://www.oceanexpert.org/institution/20510 -https://www.oceanexpert.org/expert/44555 -https://www.oceanexpert.org/expert/24679 -https://www.oceanexpert.org/expert/38561 -https://www.oceanexpert.org/expert/48768 -https://www.oceanexpert.org/expert/38104 -https://www.oceanexpert.org/expert/42891 -https://www.oceanexpert.org/expert/19493 -https://www.oceanexpert.org/institution/21749 -https://www.oceanexpert.org/expert/16067 -https://www.oceanexpert.org/expert/26640 -https://www.oceanexpert.org/institution/21547 -https://www.oceanexpert.org/expert/28121 -https://www.oceanexpert.org/expert/18557 -https://www.oceanexpert.org/expert/22404 -https://www.oceanexpert.org/expert/43160 -https://www.oceanexpert.org/institution/14658 -https://www.oceanexpert.org/expert/23950 -https://www.oceanexpert.org/expert/18419 -https://www.oceanexpert.org/institution/12036 -https://www.oceanexpert.org/expert/22515 -https://www.oceanexpert.org/expert/18207 -https://www.oceanexpert.org/institution/15533 -https://www.oceanexpert.org/expert/1662 -https://www.oceanexpert.org/institution/19623 -https://www.oceanexpert.org/expert/5302 -https://www.oceanexpert.org/expert/5055 -https://www.oceanexpert.org/expert/22224 -https://www.oceanexpert.org/expert/31655 -https://www.oceanexpert.org/institution/15680 -https://www.oceanexpert.org/expert/26448 -https://www.oceanexpert.org/expert/27494 -https://www.oceanexpert.org/expert/20878 -https://www.oceanexpert.org/institution/7304 -https://www.oceanexpert.org/expert/44852 -https://www.oceanexpert.org/expert/45281 -https://www.oceanexpert.org/expert/18160 -https://www.oceanexpert.org/institution/20961 -https://www.oceanexpert.org/institution/11608 -https://www.oceanexpert.org/expert/32542 -https://www.oceanexpert.org/expert/18244 -https://www.oceanexpert.org/expert/20149 -https://www.oceanexpert.org/expert/36357 -https://www.oceanexpert.org/institution/9440 -https://www.oceanexpert.org/expert/34562 -https://www.oceanexpert.org/expert/47492 -https://www.oceanexpert.org/expert/39166 -https://www.oceanexpert.org/institution/21518 -https://www.oceanexpert.org/expert/15389 -https://www.oceanexpert.org/expert/11155 -https://www.oceanexpert.org/expert/48961 -https://www.oceanexpert.org/expert/43491 -https://www.oceanexpert.org/expert/27077 -https://www.oceanexpert.org/expert/19046 -https://www.oceanexpert.org/institution/11809 -https://www.oceanexpert.org/expert/14790 -https://www.oceanexpert.org/event/2928 -https://www.oceanexpert.org/institution/20614 -https://www.oceanexpert.org/expert/35115 -https://www.oceanexpert.org/institution/11016 -https://www.oceanexpert.org/expert/48304 -https://www.oceanexpert.org/expert/39551 -https://www.oceanexpert.org/expert/78 -https://www.oceanexpert.org/institution/20141 -https://www.oceanexpert.org/expert/32586 -https://www.oceanexpert.org/expert/45025 -https://www.oceanexpert.org/expert/17205 -https://www.oceanexpert.org/expert/47343 -https://www.oceanexpert.org/expert/46537 -https://www.oceanexpert.org/expert/19059 -https://www.oceanexpert.org/institution/19917 -https://www.oceanexpert.org/expert/24756 -https://www.oceanexpert.org/institution/14171 -https://www.oceanexpert.org/expert/27779 -https://www.oceanexpert.org/expert/35128 -https://www.oceanexpert.org/institution/12308 -https://www.oceanexpert.org/expert/30937 -https://www.oceanexpert.org/expert/24940 -https://www.oceanexpert.org/expert/18869 -https://www.oceanexpert.org/expert/36013 -https://www.oceanexpert.org/expert/23371 -https://www.oceanexpert.org/expert/47305 -https://www.oceanexpert.org/event/1526 -https://www.oceanexpert.org/expert/21351 -https://www.oceanexpert.org/event/3183 -https://www.oceanexpert.org/expert/30911 -https://www.oceanexpert.org/expert/21133 -https://www.oceanexpert.org/expert/27979 -https://www.oceanexpert.org/expert/43764 -https://www.oceanexpert.org/expert/42620 -https://www.oceanexpert.org/event/3078 -https://www.oceanexpert.org/institution/16841 -https://www.oceanexpert.org/institution/17186 -https://www.oceanexpert.org/institution/19517 -https://www.oceanexpert.org/expert/20382 -https://www.oceanexpert.org/expert/7428 -https://www.oceanexpert.org/expert/44598 -https://www.oceanexpert.org/expert/44841 -https://www.oceanexpert.org/expert/30887 -https://www.oceanexpert.org/expert/35384 -https://www.oceanexpert.org/expert/43394 -https://www.oceanexpert.org/expert/42994 -https://www.oceanexpert.org/expert/24530 -https://www.oceanexpert.org/expert/23015 -https://www.oceanexpert.org/expert/30103 -https://www.oceanexpert.org/institution/5170 -https://www.oceanexpert.org/expert/32225 -https://www.oceanexpert.org/expert/46210 -https://www.oceanexpert.org/expert/17245 -https://www.oceanexpert.org/institution/14030 -https://www.oceanexpert.org/institution/18143 -https://www.oceanexpert.org/institution/17035 -https://www.oceanexpert.org/expert/16144 -https://www.oceanexpert.org/expert/36490 -https://www.oceanexpert.org/institution/17629 -https://www.oceanexpert.org/institution/18392 -https://www.oceanexpert.org/expert/43047 -https://www.oceanexpert.org/expert/21747 -https://www.oceanexpert.org/expert/10839 -https://www.oceanexpert.org/expert/26828 -https://www.oceanexpert.org/expert/13585 -https://www.oceanexpert.org/event/3057 -https://www.oceanexpert.org/institution/10139 -https://www.oceanexpert.org/institution/14457 -https://www.oceanexpert.org/event/2881 -https://www.oceanexpert.org/institution/17090 -https://www.oceanexpert.org/expert/2204 -https://www.oceanexpert.org/expert/23372 -https://www.oceanexpert.org/institution/10902 -https://www.oceanexpert.org/expert/47027 -https://www.oceanexpert.org/expert/29948 -https://www.oceanexpert.org/expert/47062 -https://www.oceanexpert.org/expert/41630 -https://www.oceanexpert.org/expert/12111 -https://www.oceanexpert.org/expert/29180 -https://www.oceanexpert.org/expert/27324 -https://www.oceanexpert.org/expert/31397 -https://www.oceanexpert.org/expert/37486 -https://www.oceanexpert.org/expert/4278 -https://www.oceanexpert.org/expert/23775 -https://www.oceanexpert.org/expert/47007 -https://www.oceanexpert.org/event/1681 -https://www.oceanexpert.org/institution/19345 -https://www.oceanexpert.org/expert/43879 -https://www.oceanexpert.org/event/773 -https://www.oceanexpert.org/expert/28402 -https://www.oceanexpert.org/institution/11426 -https://www.oceanexpert.org/institution/8971 -https://www.oceanexpert.org/expert/20481 -https://www.oceanexpert.org/expert/539 -https://www.oceanexpert.org/expert/37392 -https://www.oceanexpert.org/institution/18301 -https://www.oceanexpert.org/expert/18616 -https://www.oceanexpert.org/expert/12976 -https://www.oceanexpert.org/institution/13727 -https://www.oceanexpert.org/expert/26010 -https://www.oceanexpert.org/institution/15210 -https://www.oceanexpert.org/expert/46883 -https://www.oceanexpert.org/expert/48187 -https://www.oceanexpert.org/institution/15311 -https://www.oceanexpert.org/expert/33230 -https://www.oceanexpert.org/expert/30374 -https://www.oceanexpert.org/expert/21461 -https://www.oceanexpert.org/expert/46500 -https://www.oceanexpert.org/expert/20335 -https://www.oceanexpert.org/institution/21424 -https://www.oceanexpert.org/expert/39234 -https://www.oceanexpert.org/expert/17840 -https://www.oceanexpert.org/expert/6267 -https://www.oceanexpert.org/institution/6824 -https://www.oceanexpert.org/expert/15565 -https://www.oceanexpert.org/expert/20364 -https://www.oceanexpert.org/expert/24935 -https://www.oceanexpert.org/institution/14352 -https://www.oceanexpert.org/expert/8756 -https://www.oceanexpert.org/expert/23086 -https://www.oceanexpert.org/expert/47123 -https://www.oceanexpert.org/expert/36317 -https://www.oceanexpert.org/expert/31079 -https://www.oceanexpert.org/expert/35584 -https://www.oceanexpert.org/expert/26511 -https://www.oceanexpert.org/institution/16002 -https://www.oceanexpert.org/expert/29565 -https://www.oceanexpert.org/expert/8496 -https://www.oceanexpert.org/expert/38716 -https://www.oceanexpert.org/institution/18468 -https://www.oceanexpert.org/institution/20061 -https://www.oceanexpert.org/expert/8523 -https://www.oceanexpert.org/institution/19098 -https://www.oceanexpert.org/expert/31156 -https://www.oceanexpert.org/event/1117 -https://www.oceanexpert.org/expert/21679 -https://www.oceanexpert.org/expert/23051 -https://www.oceanexpert.org/expert/24331 -https://www.oceanexpert.org/institution/13991 -https://www.oceanexpert.org/expert/11832 -https://www.oceanexpert.org/expert/26554 -https://www.oceanexpert.org/expert/22771 -https://www.oceanexpert.org/expert/38175 -https://www.oceanexpert.org/institution/13087 -https://www.oceanexpert.org/expert/17910 -https://www.oceanexpert.org/expert/23324 -https://www.oceanexpert.org/expert/46742 -https://www.oceanexpert.org/expert/21738 -https://www.oceanexpert.org/institution/17945 -https://www.oceanexpert.org/expert/3182 -https://www.oceanexpert.org/expert/21829 -https://www.oceanexpert.org/institution/15853 -https://www.oceanexpert.org/expert/40276 -https://www.oceanexpert.org/expert/19961 -https://www.oceanexpert.org/expert/22196 -https://www.oceanexpert.org/expert/27632 -https://www.oceanexpert.org/expert/27779 -https://www.oceanexpert.org/institution/7432 -https://www.oceanexpert.org/expert/33223 -https://www.oceanexpert.org/expert/12360 -https://www.oceanexpert.org/expert/7860 -https://www.oceanexpert.org/expert/25228 -https://www.oceanexpert.org/expert/18929 -https://www.oceanexpert.org/institution/11364 -https://www.oceanexpert.org/event/2018 -https://www.oceanexpert.org/expert/17906 -https://www.oceanexpert.org/expert/33307 -https://www.oceanexpert.org/expert/35348 -https://www.oceanexpert.org/institution/10841 -https://www.oceanexpert.org/expert/48229 -https://www.oceanexpert.org/expert/36551 -https://www.oceanexpert.org/event/1349 -https://www.oceanexpert.org/expert/19421 -https://www.oceanexpert.org/expert/7183 -https://www.oceanexpert.org/institution/13142 -https://www.oceanexpert.org/expert/38079 -https://www.oceanexpert.org/expert/26441 -https://www.oceanexpert.org/event/1294 -https://www.oceanexpert.org/event/2916 -https://www.oceanexpert.org/expert/40119 -https://www.oceanexpert.org/institution/19102 -https://www.oceanexpert.org/expert/14848 -https://www.oceanexpert.org/expert/19126 -https://www.oceanexpert.org/expert/25685 -https://www.oceanexpert.org/expert/38056 -https://www.oceanexpert.org/institution/6973 -https://www.oceanexpert.org/expert/33568 -https://www.oceanexpert.org/expert/26817 -https://www.oceanexpert.org/expert/23319 -https://www.oceanexpert.org/expert/34045 -https://www.oceanexpert.org/event/347 -https://www.oceanexpert.org/event/277 -https://www.oceanexpert.org/expert/42503 -https://www.oceanexpert.org/expert/32312 -https://www.oceanexpert.org/expert/38641 -https://www.oceanexpert.org/expert/38381 -https://www.oceanexpert.org/expert/17434 -https://www.oceanexpert.org/expert/21815 -https://www.oceanexpert.org/institution/12776 -https://www.oceanexpert.org/institution/16992 -https://www.oceanexpert.org/expert/45043 -https://www.oceanexpert.org/expert/12076 -https://www.oceanexpert.org/institution/13550 -https://www.oceanexpert.org/institution/10770 -https://www.oceanexpert.org/expert/45312 -https://www.oceanexpert.org/expert/32576 -https://www.oceanexpert.org/expert/36722 -https://www.oceanexpert.org/expert/45701 -https://www.oceanexpert.org/expert/8401 -https://www.oceanexpert.org/institution/21986 -https://www.oceanexpert.org/institution/21915 -https://www.oceanexpert.org/event/397 -https://www.oceanexpert.org/expert/32717 -https://www.oceanexpert.org/institution/21022 -https://www.oceanexpert.org/expert/25390 -https://www.oceanexpert.org/event/2355 -https://www.oceanexpert.org/institution/10171 -https://www.oceanexpert.org/institution/21523 -https://www.oceanexpert.org/expert/23655 -https://www.oceanexpert.org/event/2229 -https://www.oceanexpert.org/expert/36943 -https://www.oceanexpert.org/expert/3475 -https://www.oceanexpert.org/event/257 -https://www.oceanexpert.org/expert/48822 -https://www.oceanexpert.org/expert/36493 -https://www.oceanexpert.org/expert/25751 -https://www.oceanexpert.org/expert/8688 -https://www.oceanexpert.org/expert/38380 -https://www.oceanexpert.org/expert/18209 -https://www.oceanexpert.org/institution/11252 -https://www.oceanexpert.org/event/1357 -https://www.oceanexpert.org/event/1417 -https://www.oceanexpert.org/institution/5427 -https://www.oceanexpert.org/expert/9250 -https://www.oceanexpert.org/expert/593 -https://www.oceanexpert.org/expert/6778 -https://www.oceanexpert.org/expert/30180 -https://www.oceanexpert.org/expert/32575 -https://www.oceanexpert.org/expert/43513 -https://www.oceanexpert.org/expert/21468 -https://www.oceanexpert.org/expert/44769 -https://www.oceanexpert.org/expert/34999 -https://www.oceanexpert.org/expert/38346 -https://www.oceanexpert.org/expert/36464 -https://www.oceanexpert.org/expert/26519 -https://www.oceanexpert.org/institution/18167 -https://www.oceanexpert.org/institution/11777 -https://www.oceanexpert.org/event/1071 -https://www.oceanexpert.org/expert/29924 -https://www.oceanexpert.org/expert/6688 -https://www.oceanexpert.org/expert/25062 -https://www.oceanexpert.org/expert/43570 -https://www.oceanexpert.org/institution/21211 -https://www.oceanexpert.org/institution/18011 -https://www.oceanexpert.org/expert/20009 -https://www.oceanexpert.org/expert/46864 -https://www.oceanexpert.org/expert/19092 -https://www.oceanexpert.org/expert/36785 -https://www.oceanexpert.org/expert/5519 -https://www.oceanexpert.org/expert/2236 -https://www.oceanexpert.org/expert/39998 -https://www.oceanexpert.org/expert/21768 -https://www.oceanexpert.org/institution/18448 -https://www.oceanexpert.org/expert/40379 -https://www.oceanexpert.org/event/1409 -https://www.oceanexpert.org/expert/17802 -https://www.oceanexpert.org/expert/406 -https://www.oceanexpert.org/institution/16174 -https://www.oceanexpert.org/expert/44534 -https://www.oceanexpert.org/institution/14163 -https://www.oceanexpert.org/expert/34398 -https://www.oceanexpert.org/institution/6445 -https://www.oceanexpert.org/expert/34838 -https://www.oceanexpert.org/institution/15994 -https://www.oceanexpert.org/expert/48736 -https://www.oceanexpert.org/expert/39482 -https://www.oceanexpert.org/institution/17635 -https://www.oceanexpert.org/expert/21669 -https://www.oceanexpert.org/institution/21840 -https://www.oceanexpert.org/institution/14684 -https://www.oceanexpert.org/institution/7788 -https://www.oceanexpert.org/expert/29986 -https://www.oceanexpert.org/institution/12331 -https://www.oceanexpert.org/expert/24788 -https://www.oceanexpert.org/institution/10227 -https://www.oceanexpert.org/expert/18196 -https://www.oceanexpert.org/event/1756 -https://www.oceanexpert.org/institution/20902 -https://www.oceanexpert.org/expert/23724 -https://www.oceanexpert.org/expert/29638 -https://www.oceanexpert.org/expert/27969 -https://www.oceanexpert.org/expert/15306 -https://www.oceanexpert.org/event/181 -https://www.oceanexpert.org/expert/17219 -https://www.oceanexpert.org/event/1093 -https://www.oceanexpert.org/expert/28097 -https://www.oceanexpert.org/event/2815 -https://www.oceanexpert.org/expert/47787 -https://www.oceanexpert.org/expert/14380 -https://www.oceanexpert.org/expert/23405 -https://www.oceanexpert.org/expert/20348 -https://www.oceanexpert.org/institution/11688 -https://www.oceanexpert.org/expert/44665 -https://www.oceanexpert.org/expert/16996 -https://www.oceanexpert.org/expert/24387 -https://www.oceanexpert.org/expert/44439 -https://www.oceanexpert.org/expert/12211 -https://www.oceanexpert.org/expert/46953 -https://www.oceanexpert.org/institution/15670 -https://www.oceanexpert.org/institution/12941 -https://www.oceanexpert.org/institution/9930 -https://www.oceanexpert.org/expert/39442 -https://www.oceanexpert.org/expert/22754 -https://www.oceanexpert.org/expert/16158 -https://www.oceanexpert.org/expert/33627 -https://www.oceanexpert.org/event/1194 -https://www.oceanexpert.org/expert/39566 -https://www.oceanexpert.org/institution/14348 -https://www.oceanexpert.org/expert/26076 -https://www.oceanexpert.org/institution/21138 -https://www.oceanexpert.org/expert/48845 -https://www.oceanexpert.org/institution/17426 -https://www.oceanexpert.org/expert/18361 -https://www.oceanexpert.org/expert/17837 -https://www.oceanexpert.org/expert/22028 -https://www.oceanexpert.org/event/502 -https://www.oceanexpert.org/expert/20921 -https://www.oceanexpert.org/expert/34548 -https://www.oceanexpert.org/expert/23826 -https://www.oceanexpert.org/expert/30235 -https://www.oceanexpert.org/expert/19504 -https://www.oceanexpert.org/expert/35409 -https://www.oceanexpert.org/institution/17919 -https://www.oceanexpert.org/expert/33860 -https://www.oceanexpert.org/institution/17534 -https://www.oceanexpert.org/institution/6786 -https://www.oceanexpert.org/expert/9131 -https://www.oceanexpert.org/expert/11785 -https://www.oceanexpert.org/expert/37852 -https://www.oceanexpert.org/institution/9429 -https://www.oceanexpert.org/event/2866 -https://www.oceanexpert.org/expert/24705 -https://www.oceanexpert.org/expert/36781 -https://www.oceanexpert.org/expert/18283 -https://www.oceanexpert.org/expert/18280 -https://www.oceanexpert.org/expert/45172 -https://www.oceanexpert.org/institution/21062 -https://www.oceanexpert.org/expert/24444 -https://www.oceanexpert.org/expert/27650 -https://www.oceanexpert.org/expert/39281 -https://www.oceanexpert.org/institution/9338 -https://www.oceanexpert.org/institution/20432 -https://www.oceanexpert.org/expert/20079 -https://www.oceanexpert.org/expert/19205 -https://www.oceanexpert.org/expert/47665 -https://www.oceanexpert.org/institution/6788 -https://www.oceanexpert.org/expert/25769 -https://www.oceanexpert.org/expert/23467 -https://www.oceanexpert.org/expert/43331 -https://www.oceanexpert.org/institution/11613 -https://www.oceanexpert.org/expert/44906 -https://www.oceanexpert.org/institution/11025 -https://www.oceanexpert.org/event/647 -https://www.oceanexpert.org/expert/13320 -https://www.oceanexpert.org/institution/17460 -https://www.oceanexpert.org/institution/15246 -https://www.oceanexpert.org/expert/25979 -https://www.oceanexpert.org/expert/39209 -https://www.oceanexpert.org/expert/35786 -https://www.oceanexpert.org/expert/11168 -https://www.oceanexpert.org/institution/6675 -https://www.oceanexpert.org/expert/22302 -https://www.oceanexpert.org/institution/12927 -https://www.oceanexpert.org/expert/37234 -https://www.oceanexpert.org/expert/25829 -https://www.oceanexpert.org/expert/23112 -https://www.oceanexpert.org/expert/44962 -https://www.oceanexpert.org/expert/20435 -https://www.oceanexpert.org/event/691 -https://www.oceanexpert.org/expert/36120 -https://www.oceanexpert.org/institution/17783 -https://www.oceanexpert.org/institution/20341 -https://www.oceanexpert.org/expert/33320 -https://www.oceanexpert.org/institution/5091 -https://www.oceanexpert.org/institution/18327 -https://www.oceanexpert.org/institution/19538 -https://www.oceanexpert.org/expert/20133 -https://www.oceanexpert.org/event/32 -https://www.oceanexpert.org/institution/20954 -https://www.oceanexpert.org/expert/37927 -https://www.oceanexpert.org/expert/30525 -https://www.oceanexpert.org/institution/19332 -https://www.oceanexpert.org/institution/17318 -https://www.oceanexpert.org/expert/45549 -https://www.oceanexpert.org/expert/17191 -https://www.oceanexpert.org/event/122 -https://www.oceanexpert.org/expert/36241 -https://www.oceanexpert.org/institution/16269 -https://www.oceanexpert.org/expert/37520 -https://www.oceanexpert.org/expert/31831 -https://www.oceanexpert.org/expert/37431 -https://www.oceanexpert.org/expert/23677 -https://www.oceanexpert.org/expert/17205 -https://www.oceanexpert.org/expert/29241 -https://www.oceanexpert.org/institution/16807 -https://www.oceanexpert.org/expert/25466 -https://www.oceanexpert.org/expert/2225 -https://www.oceanexpert.org/expert/46849 -https://www.oceanexpert.org/expert/43269 -https://www.oceanexpert.org/expert/48343 -https://www.oceanexpert.org/institution/15661 -https://www.oceanexpert.org/expert/44359 -https://www.oceanexpert.org/expert/20507 -https://www.oceanexpert.org/institution/12801 -https://www.oceanexpert.org/expert/20881 -https://www.oceanexpert.org/expert/30940 -https://www.oceanexpert.org/expert/22440 -https://www.oceanexpert.org/expert/44791 -https://www.oceanexpert.org/institution/21472 -https://www.oceanexpert.org/expert/7445 -https://www.oceanexpert.org/expert/33848 -https://www.oceanexpert.org/expert/44505 -https://www.oceanexpert.org/expert/15976 -https://www.oceanexpert.org/expert/37364 -https://www.oceanexpert.org/expert/16051 -https://www.oceanexpert.org/event/1495 -https://www.oceanexpert.org/expert/48556 -https://www.oceanexpert.org/event/1972 -https://www.oceanexpert.org/expert/23835 -https://www.oceanexpert.org/expert/38624 -https://www.oceanexpert.org/institution/7723 -https://www.oceanexpert.org/expert/9217 -https://www.oceanexpert.org/expert/27108 -https://www.oceanexpert.org/expert/42515 -https://www.oceanexpert.org/expert/24657 -https://www.oceanexpert.org/expert/47066 -https://www.oceanexpert.org/institution/21681 -https://www.oceanexpert.org/expert/27342 -https://www.oceanexpert.org/expert/20531 -https://www.oceanexpert.org/expert/22574 -https://www.oceanexpert.org/institution/20723 -https://www.oceanexpert.org/expert/46733 -https://www.oceanexpert.org/expert/47205 -https://www.oceanexpert.org/expert/36628 -https://www.oceanexpert.org/institution/20894 -https://www.oceanexpert.org/expert/2939 -https://www.oceanexpert.org/expert/24037 -https://www.oceanexpert.org/expert/20474 -https://www.oceanexpert.org/expert/35581 -https://www.oceanexpert.org/expert/24203 -https://www.oceanexpert.org/institution/8326 -https://www.oceanexpert.org/event/2228 -https://www.oceanexpert.org/expert/23141 -https://www.oceanexpert.org/institution/20344 -https://www.oceanexpert.org/expert/24454 -https://www.oceanexpert.org/expert/42384 -https://www.oceanexpert.org/expert/16560 -https://www.oceanexpert.org/expert/15286 -https://www.oceanexpert.org/expert/19656 -https://www.oceanexpert.org/expert/21653 -https://www.oceanexpert.org/expert/4765 -https://www.oceanexpert.org/event/1695 -https://www.oceanexpert.org/expert/23117 -https://www.oceanexpert.org/expert/4918 -https://www.oceanexpert.org/event/1362 -https://www.oceanexpert.org/institution/11444 -https://www.oceanexpert.org/expert/46694 -https://www.oceanexpert.org/event/2945 -https://www.oceanexpert.org/expert/38496 -https://www.oceanexpert.org/institution/12596 -https://www.oceanexpert.org/expert/28180 -https://www.oceanexpert.org/expert/26731 -https://www.oceanexpert.org/expert/26855 -https://www.oceanexpert.org/event/2598 -https://www.oceanexpert.org/expert/16619 -https://www.oceanexpert.org/expert/19770 -https://www.oceanexpert.org/expert/27600 -https://www.oceanexpert.org/institution/8641 -https://www.oceanexpert.org/expert/35227 -https://www.oceanexpert.org/expert/3210 -https://www.oceanexpert.org/event/3170 -https://www.oceanexpert.org/expert/20146 -https://www.oceanexpert.org/expert/13119 -https://www.oceanexpert.org/expert/39281 -https://www.oceanexpert.org/expert/108 -https://www.oceanexpert.org/expert/24049 -https://www.oceanexpert.org/expert/45887 -https://www.oceanexpert.org/expert/34939 -https://www.oceanexpert.org/institution/13079 -https://www.oceanexpert.org/event/1047 -https://www.oceanexpert.org/institution/18429 -https://www.oceanexpert.org/expert/33464 -https://www.oceanexpert.org/expert/23469 -https://www.oceanexpert.org/institution/21028 -https://www.oceanexpert.org/expert/25812 -https://www.oceanexpert.org/institution/18921 -https://www.oceanexpert.org/expert/24483 -https://www.oceanexpert.org/institution/11858 -https://www.oceanexpert.org/institution/16251 -https://www.oceanexpert.org/expert/44236 -https://www.oceanexpert.org/institution/19459 -https://www.oceanexpert.org/expert/18302 -https://www.oceanexpert.org/expert/24401 -https://www.oceanexpert.org/expert/34376 -https://www.oceanexpert.org/expert/25554 -https://www.oceanexpert.org/expert/18790 -https://www.oceanexpert.org/event/1702 -https://www.oceanexpert.org/expert/23221 -https://www.oceanexpert.org/expert/44473 -https://www.oceanexpert.org/institution/15953 -https://www.oceanexpert.org/expert/21167 -https://www.oceanexpert.org/expert/6911 -https://www.oceanexpert.org/institution/12956 -https://www.oceanexpert.org/event/1785 -https://www.oceanexpert.org/expert/46730 -https://www.oceanexpert.org/expert/34460 -https://www.oceanexpert.org/expert/45351 -https://www.oceanexpert.org/expert/11265 -https://www.oceanexpert.org/institution/16234 -https://www.oceanexpert.org/expert/19228 -https://www.oceanexpert.org/institution/20565 -https://www.oceanexpert.org/expert/23651 -https://www.oceanexpert.org/expert/29513 -https://www.oceanexpert.org/institution/18694 -https://www.oceanexpert.org/expert/21761 -https://www.oceanexpert.org/expert/43598 -https://www.oceanexpert.org/event/377 -https://www.oceanexpert.org/expert/43098 -https://www.oceanexpert.org/expert/29928 -https://www.oceanexpert.org/expert/20030 -https://www.oceanexpert.org/expert/26180 -https://www.oceanexpert.org/institution/19746 -https://www.oceanexpert.org/expert/7860 -https://www.oceanexpert.org/institution/10719 -https://www.oceanexpert.org/expert/4579 -https://www.oceanexpert.org/expert/32241 -https://www.oceanexpert.org/expert/18552 -https://www.oceanexpert.org/expert/1520 -https://www.oceanexpert.org/expert/45130 -https://www.oceanexpert.org/expert/19067 -https://www.oceanexpert.org/expert/25761 -https://www.oceanexpert.org/expert/47609 -https://www.oceanexpert.org/expert/37050 -https://www.oceanexpert.org/institution/19395 -https://www.oceanexpert.org/expert/30369 -https://www.oceanexpert.org/expert/17927 -https://www.oceanexpert.org/event/1426 -https://www.oceanexpert.org/expert/38903 -https://www.oceanexpert.org/expert/20841 -https://www.oceanexpert.org/expert/26480 -https://www.oceanexpert.org/expert/33808 -https://www.oceanexpert.org/expert/30326 -https://www.oceanexpert.org/expert/21715 -https://www.oceanexpert.org/expert/22920 -https://www.oceanexpert.org/event/1273 -https://www.oceanexpert.org/institution/11187 -https://www.oceanexpert.org/expert/45156 -https://www.oceanexpert.org/expert/19725 -https://www.oceanexpert.org/institution/21034 -https://www.oceanexpert.org/expert/16647 -https://www.oceanexpert.org/institution/16692 -https://www.oceanexpert.org/institution/17365 -https://www.oceanexpert.org/expert/14187 -https://www.oceanexpert.org/expert/45102 -https://www.oceanexpert.org/expert/17487 -https://www.oceanexpert.org/expert/26192 -https://www.oceanexpert.org/institution/20100 -https://www.oceanexpert.org/expert/14825 -https://www.oceanexpert.org/expert/32521 -https://www.oceanexpert.org/expert/47064 -https://www.oceanexpert.org/institution/20125 -https://www.oceanexpert.org/expert/18047 -https://www.oceanexpert.org/expert/9091 -https://www.oceanexpert.org/expert/24353 -https://www.oceanexpert.org/expert/45928 -https://www.oceanexpert.org/expert/32210 -https://www.oceanexpert.org/expert/26490 -https://www.oceanexpert.org/expert/13154 -https://www.oceanexpert.org/event/1697 -https://www.oceanexpert.org/institution/18240 -https://www.oceanexpert.org/expert/22538 -https://www.oceanexpert.org/institution/14958 -https://www.oceanexpert.org/institution/8163 -https://www.oceanexpert.org/institution/11621 -https://www.oceanexpert.org/institution/13570 -https://www.oceanexpert.org/expert/21137 -https://www.oceanexpert.org/institution/11183 -https://www.oceanexpert.org/institution/13138 -https://www.oceanexpert.org/expert/43997 -https://www.oceanexpert.org/expert/44485 -https://www.oceanexpert.org/event/3177 -https://www.oceanexpert.org/institution/18761 -https://www.oceanexpert.org/expert/40653 -https://www.oceanexpert.org/expert/26360 -https://www.oceanexpert.org/expert/40089 -https://www.oceanexpert.org/expert/43113 -https://www.oceanexpert.org/event/1915 -https://www.oceanexpert.org/event/1331 -https://www.oceanexpert.org/expert/12126 -https://www.oceanexpert.org/expert/4788 -https://www.oceanexpert.org/expert/48879 -https://www.oceanexpert.org/expert/46685 -https://www.oceanexpert.org/expert/41915 -https://www.oceanexpert.org/expert/30861 -https://www.oceanexpert.org/expert/29268 -https://www.oceanexpert.org/expert/21125 -https://www.oceanexpert.org/institution/10167 -https://www.oceanexpert.org/expert/17772 -https://www.oceanexpert.org/expert/23762 -https://www.oceanexpert.org/institution/17231 -https://www.oceanexpert.org/expert/28959 -https://www.oceanexpert.org/expert/32282 -https://www.oceanexpert.org/event/2571 -https://www.oceanexpert.org/institution/18893 -https://www.oceanexpert.org/institution/14026 -https://www.oceanexpert.org/expert/15710 -https://www.oceanexpert.org/expert/36792 -https://www.oceanexpert.org/institution/16884 -https://www.oceanexpert.org/expert/4410 -https://www.oceanexpert.org/expert/28206 -https://www.oceanexpert.org/institution/22175 -https://www.oceanexpert.org/expert/45100 -https://www.oceanexpert.org/expert/45042 -https://www.oceanexpert.org/expert/5866 -https://www.oceanexpert.org/institution/5198 -https://www.oceanexpert.org/institution/10864 -https://www.oceanexpert.org/expert/27052 -https://www.oceanexpert.org/expert/24189 -https://www.oceanexpert.org/expert/23779 -https://www.oceanexpert.org/expert/31479 -https://www.oceanexpert.org/event/1335 -https://www.oceanexpert.org/expert/28277 -https://www.oceanexpert.org/event/1960 -https://www.oceanexpert.org/expert/6831 -https://www.oceanexpert.org/event/1346 -https://www.oceanexpert.org/expert/44557 -https://www.oceanexpert.org/institution/17645 -https://www.oceanexpert.org/expert/45253 -https://www.oceanexpert.org/expert/8009 -https://www.oceanexpert.org/expert/26820 -https://www.oceanexpert.org/expert/19818 -https://www.oceanexpert.org/expert/39156 -https://www.oceanexpert.org/expert/6997 -https://www.oceanexpert.org/expert/39034 -https://www.oceanexpert.org/expert/24552 -https://www.oceanexpert.org/expert/16221 -https://www.oceanexpert.org/expert/30539 -https://www.oceanexpert.org/institution/10413 -https://www.oceanexpert.org/expert/18231 -https://www.oceanexpert.org/expert/16571 -https://www.oceanexpert.org/expert/47723 -https://www.oceanexpert.org/expert/24093 -https://www.oceanexpert.org/expert/39079 -https://www.oceanexpert.org/institution/11124 -https://www.oceanexpert.org/event/1504 -https://www.oceanexpert.org/expert/21723 -https://www.oceanexpert.org/expert/31097 -https://www.oceanexpert.org/expert/37442 -https://www.oceanexpert.org/expert/11301 -https://www.oceanexpert.org/expert/15883 -https://www.oceanexpert.org/institution/22038 -https://www.oceanexpert.org/expert/40092 -https://www.oceanexpert.org/expert/22850 -https://www.oceanexpert.org/expert/27575 -https://www.oceanexpert.org/expert/35267 -https://www.oceanexpert.org/expert/33445 -https://www.oceanexpert.org/expert/47729 -https://www.oceanexpert.org/event/1506 -https://www.oceanexpert.org/expert/30597 -https://www.oceanexpert.org/expert/40529 -https://www.oceanexpert.org/expert/13612 -https://www.oceanexpert.org/expert/18915 -https://www.oceanexpert.org/institution/19365 -https://www.oceanexpert.org/expert/37356 -https://www.oceanexpert.org/expert/36168 -https://www.oceanexpert.org/event/1099 -https://www.oceanexpert.org/expert/23013 -https://www.oceanexpert.org/expert/20160 -https://www.oceanexpert.org/expert/45523 -https://www.oceanexpert.org/expert/35707 -https://www.oceanexpert.org/event/2369 -https://www.oceanexpert.org/expert/21682 -https://www.oceanexpert.org/institution/16392 -https://www.oceanexpert.org/institution/19586 -https://www.oceanexpert.org/expert/25645 -https://www.oceanexpert.org/expert/29773 -https://www.oceanexpert.org/institution/11818 -https://www.oceanexpert.org/expert/44360 -https://www.oceanexpert.org/expert/17464 -https://www.oceanexpert.org/expert/45289 -https://www.oceanexpert.org/event/2518 -https://www.oceanexpert.org/expert/46303 -https://www.oceanexpert.org/expert/34838 -https://www.oceanexpert.org/expert/22601 -https://www.oceanexpert.org/institution/22025 -https://www.oceanexpert.org/expert/26345 -https://www.oceanexpert.org/expert/22422 -https://www.oceanexpert.org/expert/45667 -https://www.oceanexpert.org/institution/8792 -https://www.oceanexpert.org/expert/17541 -https://www.oceanexpert.org/institution/19877 -https://www.oceanexpert.org/expert/7745 -https://www.oceanexpert.org/expert/14343 -https://www.oceanexpert.org/event/756 -https://www.oceanexpert.org/expert/4602 -https://www.oceanexpert.org/institution/6304 -https://www.oceanexpert.org/expert/46639 -https://www.oceanexpert.org/expert/38218 -https://www.oceanexpert.org/expert/30294 -https://www.oceanexpert.org/expert/20930 -https://www.oceanexpert.org/expert/48478 -https://www.oceanexpert.org/expert/37441 -https://www.oceanexpert.org/expert/23781 -https://www.oceanexpert.org/institution/11176 -https://www.oceanexpert.org/institution/18561 -https://www.oceanexpert.org/event/248 -https://www.oceanexpert.org/expert/24596 -https://www.oceanexpert.org/expert/23934 -https://www.oceanexpert.org/expert/6680 -https://www.oceanexpert.org/expert/37799 -https://www.oceanexpert.org/expert/34984 -https://www.oceanexpert.org/expert/38616 -https://www.oceanexpert.org/institution/17272 -https://www.oceanexpert.org/expert/38024 -https://www.oceanexpert.org/event/1290 -https://www.oceanexpert.org/expert/28093 -https://www.oceanexpert.org/expert/19178 -https://www.oceanexpert.org/expert/19787 -https://www.oceanexpert.org/expert/43397 -https://www.oceanexpert.org/institution/21465 -https://www.oceanexpert.org/event/1566 -https://www.oceanexpert.org/institution/21569 -https://www.oceanexpert.org/expert/31879 -https://www.oceanexpert.org/expert/45877 -https://www.oceanexpert.org/event/1790 -https://www.oceanexpert.org/institution/19136 -https://www.oceanexpert.org/expert/16048 -https://www.oceanexpert.org/institution/5620 -https://www.oceanexpert.org/expert/39997 -https://www.oceanexpert.org/expert/40271 -https://www.oceanexpert.org/expert/23528 -https://www.oceanexpert.org/expert/30609 -https://www.oceanexpert.org/expert/26919 -https://www.oceanexpert.org/expert/11956 -https://www.oceanexpert.org/event/1245 -https://www.oceanexpert.org/expert/20586 -https://www.oceanexpert.org/expert/18957 -https://www.oceanexpert.org/expert/24521 -https://www.oceanexpert.org/institution/21301 -https://www.oceanexpert.org/institution/17596 -https://www.oceanexpert.org/expert/20741 -https://www.oceanexpert.org/expert/18719 -https://www.oceanexpert.org/institution/11837 -https://www.oceanexpert.org/expert/25378 -https://www.oceanexpert.org/expert/17001 -https://www.oceanexpert.org/event/133 -https://www.oceanexpert.org/expert/21214 -https://www.oceanexpert.org/expert/27788 -https://www.oceanexpert.org/expert/42580 -https://www.oceanexpert.org/institution/17973 -https://www.oceanexpert.org/expert/27515 -https://www.oceanexpert.org/event/1233 -https://www.oceanexpert.org/expert/43617 -https://www.oceanexpert.org/expert/43175 -https://www.oceanexpert.org/expert/3145 -https://www.oceanexpert.org/expert/2219 -https://www.oceanexpert.org/expert/243 -https://www.oceanexpert.org/expert/22323 -https://www.oceanexpert.org/expert/33771 -https://www.oceanexpert.org/event/344 -https://www.oceanexpert.org/institution/21506 -https://www.oceanexpert.org/institution/12154 -https://www.oceanexpert.org/expert/36878 -https://www.oceanexpert.org/event/1470 -https://www.oceanexpert.org/institution/19578 -https://www.oceanexpert.org/expert/34393 -https://www.oceanexpert.org/institution/18928 -https://www.oceanexpert.org/expert/46353 -https://www.oceanexpert.org/institution/19998 -https://www.oceanexpert.org/expert/38782 -https://www.oceanexpert.org/event/1982 -https://www.oceanexpert.org/expert/37800 -https://www.oceanexpert.org/event/316 -https://www.oceanexpert.org/expert/14799 -https://www.oceanexpert.org/event/2359 -https://www.oceanexpert.org/event/840 -https://www.oceanexpert.org/institution/18133 -https://www.oceanexpert.org/expert/25679 -https://www.oceanexpert.org/expert/19307 -https://www.oceanexpert.org/expert/7589 -https://www.oceanexpert.org/expert/17767 -https://www.oceanexpert.org/institution/6143 -https://www.oceanexpert.org/institution/8909 -https://www.oceanexpert.org/expert/32394 -https://www.oceanexpert.org/event/1028 -https://www.oceanexpert.org/institution/19169 -https://www.oceanexpert.org/institution/18189 -https://www.oceanexpert.org/institution/18343 -https://www.oceanexpert.org/expert/45074 -https://www.oceanexpert.org/institution/18900 -https://www.oceanexpert.org/expert/44889 -https://www.oceanexpert.org/expert/26695 -https://www.oceanexpert.org/expert/24205 -https://www.oceanexpert.org/expert/22031 -https://www.oceanexpert.org/expert/45505 -https://www.oceanexpert.org/expert/6801 -https://www.oceanexpert.org/expert/2897 -https://www.oceanexpert.org/expert/34736 -https://www.oceanexpert.org/expert/23259 -https://www.oceanexpert.org/expert/25003 -https://www.oceanexpert.org/institution/21222 -https://www.oceanexpert.org/expert/19026 -https://www.oceanexpert.org/institution/19951 -https://www.oceanexpert.org/institution/18599 -https://www.oceanexpert.org/institution/21201 -https://www.oceanexpert.org/event/2601 -https://www.oceanexpert.org/expert/25882 -https://www.oceanexpert.org/expert/11048 -https://www.oceanexpert.org/expert/34854 -https://www.oceanexpert.org/expert/35248 -https://www.oceanexpert.org/institution/20750 -https://www.oceanexpert.org/expert/29832 -https://www.oceanexpert.org/institution/8093 -https://www.oceanexpert.org/institution/20809 -https://www.oceanexpert.org/expert/29085 -https://www.oceanexpert.org/institution/20739 -https://www.oceanexpert.org/expert/35800 -https://www.oceanexpert.org/expert/20946 -https://www.oceanexpert.org/institution/21027 -https://www.oceanexpert.org/institution/19499 -https://www.oceanexpert.org/expert/47159 -https://www.oceanexpert.org/expert/19171 -https://www.oceanexpert.org/institution/5821 -https://www.oceanexpert.org/expert/19950 -https://www.oceanexpert.org/expert/24913 -https://www.oceanexpert.org/expert/26044 -https://www.oceanexpert.org/expert/32240 -https://www.oceanexpert.org/expert/4863 -https://www.oceanexpert.org/expert/29957 -https://www.oceanexpert.org/event/178 -https://www.oceanexpert.org/institution/17044 -https://www.oceanexpert.org/event/1086 -https://www.oceanexpert.org/expert/18509 -https://www.oceanexpert.org/event/2984 -https://www.oceanexpert.org/institution/16364 -https://www.oceanexpert.org/expert/32923 -https://www.oceanexpert.org/expert/29752 -https://www.oceanexpert.org/expert/21546 -https://www.oceanexpert.org/expert/44745 -https://www.oceanexpert.org/expert/45206 -https://www.oceanexpert.org/expert/27873 -https://www.oceanexpert.org/expert/16517 -https://www.oceanexpert.org/expert/37434 -https://www.oceanexpert.org/expert/33864 -https://www.oceanexpert.org/expert/49041 -https://www.oceanexpert.org/institution/11197 -https://www.oceanexpert.org/expert/28354 -https://www.oceanexpert.org/event/1842 -https://www.oceanexpert.org/institution/18135 -https://www.oceanexpert.org/expert/23128 -https://www.oceanexpert.org/institution/15588 -https://www.oceanexpert.org/event/1618 -https://www.oceanexpert.org/expert/36075 -https://www.oceanexpert.org/institution/10838 -https://www.oceanexpert.org/expert/12536 -https://www.oceanexpert.org/expert/37901 -https://www.oceanexpert.org/institution/15827 -https://www.oceanexpert.org/expert/48788 -https://www.oceanexpert.org/event/2577 -https://www.oceanexpert.org/expert/29469 -https://www.oceanexpert.org/institution/13487 -https://www.oceanexpert.org/institution/9069 -https://www.oceanexpert.org/expert/35880 -https://www.oceanexpert.org/institution/18567 -https://www.oceanexpert.org/expert/44980 -https://www.oceanexpert.org/institution/13891 -https://www.oceanexpert.org/expert/45197 -https://www.oceanexpert.org/institution/18461 -https://www.oceanexpert.org/expert/14230 -https://www.oceanexpert.org/expert/44735 -https://www.oceanexpert.org/expert/46389 -https://www.oceanexpert.org/institution/14695 -https://www.oceanexpert.org/expert/11171 -https://www.oceanexpert.org/event/1883 -https://www.oceanexpert.org/institution/8590 -https://www.oceanexpert.org/expert/20784 -https://www.oceanexpert.org/expert/20407 -https://www.oceanexpert.org/institution/19981 -https://www.oceanexpert.org/expert/23820 -https://www.oceanexpert.org/expert/19677 -https://www.oceanexpert.org/institution/13168 -https://www.oceanexpert.org/expert/47638 -https://www.oceanexpert.org/expert/20197 -https://www.oceanexpert.org/expert/23655 -https://www.oceanexpert.org/institution/20545 -https://www.oceanexpert.org/institution/12045 -https://www.oceanexpert.org/expert/36672 -https://www.oceanexpert.org/institution/5156 -https://www.oceanexpert.org/expert/1544 -https://www.oceanexpert.org/expert/3772 -https://www.oceanexpert.org/expert/48479 -https://www.oceanexpert.org/institution/20293 -https://www.oceanexpert.org/expert/33766 -https://www.oceanexpert.org/expert/20234 -https://www.oceanexpert.org/expert/46800 -https://www.oceanexpert.org/expert/1607 -https://www.oceanexpert.org/expert/48241 -https://www.oceanexpert.org/expert/23436 -https://www.oceanexpert.org/event/2970 -https://www.oceanexpert.org/expert/31569 -https://www.oceanexpert.org/expert/23261 -https://www.oceanexpert.org/expert/39918 -https://www.oceanexpert.org/expert/25001 -https://www.oceanexpert.org/expert/26666 -https://www.oceanexpert.org/institution/7284 -https://www.oceanexpert.org/institution/10337 -https://www.oceanexpert.org/expert/23510 -https://www.oceanexpert.org/event/2755 -https://www.oceanexpert.org/institution/22143 -https://www.oceanexpert.org/institution/19704 -https://www.oceanexpert.org/expert/35309 -https://www.oceanexpert.org/event/2929 -https://www.oceanexpert.org/expert/19402 -https://www.oceanexpert.org/expert/36156 -https://www.oceanexpert.org/expert/34139 -https://www.oceanexpert.org/institution/20141 -https://www.oceanexpert.org/expert/12444 -https://www.oceanexpert.org/expert/47367 -https://www.oceanexpert.org/expert/18965 -https://www.oceanexpert.org/expert/42426 -https://www.oceanexpert.org/expert/21659 -https://www.oceanexpert.org/expert/40623 -https://www.oceanexpert.org/expert/23073 -https://www.oceanexpert.org/expert/34460 -https://www.oceanexpert.org/expert/40866 -https://www.oceanexpert.org/institution/22090 -https://www.oceanexpert.org/expert/26517 -https://www.oceanexpert.org/expert/48319 -https://www.oceanexpert.org/institution/12175 -https://www.oceanexpert.org/institution/14335 -https://www.oceanexpert.org/event/1961 -https://www.oceanexpert.org/expert/36183 -https://www.oceanexpert.org/institution/21426 -https://www.oceanexpert.org/expert/37598 -https://www.oceanexpert.org/institution/19081 -https://www.oceanexpert.org/event/1645 -https://www.oceanexpert.org/event/2529 -https://www.oceanexpert.org/expert/21888 -https://www.oceanexpert.org/institution/18347 -https://www.oceanexpert.org/expert/27364 -https://www.oceanexpert.org/expert/23292 -https://www.oceanexpert.org/expert/29375 -https://www.oceanexpert.org/expert/25946 -https://www.oceanexpert.org/expert/37442 -https://www.oceanexpert.org/institution/21618 -https://www.oceanexpert.org/expert/25033 -https://www.oceanexpert.org/expert/34638 -https://www.oceanexpert.org/expert/45560 -https://www.oceanexpert.org/institution/20904 -https://www.oceanexpert.org/expert/37301 -https://www.oceanexpert.org/expert/33390 -https://www.oceanexpert.org/event/2523 -https://www.oceanexpert.org/expert/4602 -https://www.oceanexpert.org/expert/46205 -https://www.oceanexpert.org/expert/42448 -https://www.oceanexpert.org/event/49 -https://www.oceanexpert.org/event/3297 -https://www.oceanexpert.org/expert/38906 -https://www.oceanexpert.org/institution/15185 -https://www.oceanexpert.org/institution/13015 -https://www.oceanexpert.org/expert/40883 -https://www.oceanexpert.org/expert/39997 -https://www.oceanexpert.org/expert/15042 -https://www.oceanexpert.org/expert/30108 -https://www.oceanexpert.org/expert/44029 -https://www.oceanexpert.org/expert/19913 -https://www.oceanexpert.org/event/731 -https://www.oceanexpert.org/expert/34072 -https://www.oceanexpert.org/expert/18500 -https://www.oceanexpert.org/expert/14425 -https://www.oceanexpert.org/expert/36339 -https://www.oceanexpert.org/expert/22336 -https://www.oceanexpert.org/expert/22026 -https://www.oceanexpert.org/expert/35817 -https://www.oceanexpert.org/expert/26445 -https://www.oceanexpert.org/expert/38884 -https://www.oceanexpert.org/expert/25564 -https://www.oceanexpert.org/event/1882 -https://www.oceanexpert.org/expert/21602 -https://www.oceanexpert.org/institution/20164 -https://www.oceanexpert.org/expert/25556 -https://www.oceanexpert.org/expert/30548 -https://www.oceanexpert.org/expert/24525 -https://www.oceanexpert.org/expert/37496 -https://www.oceanexpert.org/expert/31340 -https://www.oceanexpert.org/institution/17805 -https://www.oceanexpert.org/expert/36186 -https://www.oceanexpert.org/expert/3746 -https://www.oceanexpert.org/expert/17643 -https://www.oceanexpert.org/institution/12716 -https://www.oceanexpert.org/institution/6535 -https://www.oceanexpert.org/event/1392 -https://www.oceanexpert.org/institution/16429 -https://www.oceanexpert.org/institution/12314 -https://www.oceanexpert.org/event/1580 -https://www.oceanexpert.org/institution/18821 -https://www.oceanexpert.org/expert/26537 -https://www.oceanexpert.org/expert/26560 -https://www.oceanexpert.org/event/2555 -https://www.oceanexpert.org/expert/27107 -https://www.oceanexpert.org/expert/48296 -https://www.oceanexpert.org/institution/12736 -https://www.oceanexpert.org/expert/23067 -https://www.oceanexpert.org/institution/16452 -https://www.oceanexpert.org/institution/14707 -https://www.oceanexpert.org/institution/21763 -https://www.oceanexpert.org/institution/21449 -https://www.oceanexpert.org/expert/23733 -https://www.oceanexpert.org/expert/21018 -https://www.oceanexpert.org/expert/21638 -https://www.oceanexpert.org/institution/15380 -https://www.oceanexpert.org/expert/20706 -https://www.oceanexpert.org/institution/20392 -https://www.oceanexpert.org/event/1645 -https://www.oceanexpert.org/expert/36013 -https://www.oceanexpert.org/expert/46051 -https://www.oceanexpert.org/expert/20874 -https://www.oceanexpert.org/institution/19829 -https://www.oceanexpert.org/institution/18148 -https://www.oceanexpert.org/expert/20521 -https://www.oceanexpert.org/expert/30528 -https://www.oceanexpert.org/expert/13058 -https://www.oceanexpert.org/event/2840 -https://www.oceanexpert.org/expert/25217 -https://www.oceanexpert.org/expert/6727 -https://www.oceanexpert.org/expert/27205 -https://www.oceanexpert.org/event/2922 -https://www.oceanexpert.org/expert/25886 -https://www.oceanexpert.org/expert/34615 -https://www.oceanexpert.org/event/1837 -https://www.oceanexpert.org/expert/34992 -https://www.oceanexpert.org/expert/30149 -https://www.oceanexpert.org/expert/18006 -https://www.oceanexpert.org/expert/30946 -https://www.oceanexpert.org/expert/45690 -https://www.oceanexpert.org/expert/4393 -https://www.oceanexpert.org/institution/19151 -https://www.oceanexpert.org/expert/38150 -https://www.oceanexpert.org/institution/7308 -https://www.oceanexpert.org/expert/22481 -https://www.oceanexpert.org/expert/16560 -https://www.oceanexpert.org/expert/7777 -https://www.oceanexpert.org/institution/19171 -https://www.oceanexpert.org/event/665 -https://www.oceanexpert.org/event/118 -https://www.oceanexpert.org/expert/24142 -https://www.oceanexpert.org/institution/13723 -https://www.oceanexpert.org/expert/3080 -https://www.oceanexpert.org/institution/12917 -https://www.oceanexpert.org/expert/21069 -https://www.oceanexpert.org/expert/22569 -https://www.oceanexpert.org/expert/42557 -https://www.oceanexpert.org/event/1428 -https://www.oceanexpert.org/institution/6931 -https://www.oceanexpert.org/institution/19308 -https://www.oceanexpert.org/expert/47829 -https://www.oceanexpert.org/event/1632 -https://www.oceanexpert.org/expert/16899 -https://www.oceanexpert.org/institution/15509 -https://www.oceanexpert.org/institution/8908 -https://www.oceanexpert.org/expert/6917 -https://www.oceanexpert.org/expert/18491 -https://www.oceanexpert.org/expert/8363 -https://www.oceanexpert.org/expert/34490 -https://www.oceanexpert.org/expert/23282 -https://www.oceanexpert.org/expert/3861 -https://www.oceanexpert.org/expert/27392 -https://www.oceanexpert.org/expert/40058 -https://www.oceanexpert.org/expert/38115 -https://www.oceanexpert.org/institution/19424 -https://www.oceanexpert.org/institution/13906 -https://www.oceanexpert.org/expert/43279 -https://www.oceanexpert.org/expert/21756 -https://www.oceanexpert.org/expert/23980 -https://www.oceanexpert.org/expert/26528 -https://www.oceanexpert.org/expert/38323 -https://www.oceanexpert.org/expert/16379 -https://www.oceanexpert.org/expert/44714 -https://www.oceanexpert.org/event/2461 -https://www.oceanexpert.org/expert/28979 -https://www.oceanexpert.org/event/2320 -https://www.oceanexpert.org/expert/23367 -https://www.oceanexpert.org/institution/20566 -https://www.oceanexpert.org/expert/26577 -https://www.oceanexpert.org/expert/44608 -https://www.oceanexpert.org/expert/47356 -https://www.oceanexpert.org/expert/18085 -https://www.oceanexpert.org/expert/44353 -https://www.oceanexpert.org/expert/45918 -https://www.oceanexpert.org/expert/33083 -https://www.oceanexpert.org/expert/11301 -https://www.oceanexpert.org/event/2892 -https://www.oceanexpert.org/expert/37880 -https://www.oceanexpert.org/expert/11711 -https://www.oceanexpert.org/expert/19000 -https://www.oceanexpert.org/expert/32357 -https://www.oceanexpert.org/event/1918 -https://www.oceanexpert.org/expert/17751 -https://www.oceanexpert.org/expert/24288 -https://www.oceanexpert.org/expert/720 -https://www.oceanexpert.org/institution/21504 -https://www.oceanexpert.org/institution/15880 -https://www.oceanexpert.org/institution/19625 -https://www.oceanexpert.org/institution/11707 -https://www.oceanexpert.org/expert/32516 -https://www.oceanexpert.org/institution/22121 -https://www.oceanexpert.org/expert/43015 -https://www.oceanexpert.org/expert/47966 -https://www.oceanexpert.org/expert/37383 -https://www.oceanexpert.org/expert/30288 -https://www.oceanexpert.org/institution/8774 -https://www.oceanexpert.org/expert/21850 -https://www.oceanexpert.org/institution/15602 -https://www.oceanexpert.org/expert/33345 -https://www.oceanexpert.org/expert/47133 -https://www.oceanexpert.org/institution/20634 -https://www.oceanexpert.org/expert/33243 -https://www.oceanexpert.org/event/1919 -https://www.oceanexpert.org/event/2911 -https://www.oceanexpert.org/expert/5019 -https://www.oceanexpert.org/event/2820 -https://www.oceanexpert.org/expert/21661 -https://www.oceanexpert.org/expert/20872 -https://www.oceanexpert.org/institution/18323 -https://www.oceanexpert.org/expert/37477 -https://www.oceanexpert.org/expert/36388 -https://www.oceanexpert.org/expert/17214 -https://www.oceanexpert.org/expert/40305 -https://www.oceanexpert.org/expert/43718 -https://www.oceanexpert.org/expert/7200 -https://www.oceanexpert.org/expert/32483 -https://www.oceanexpert.org/expert/23578 -https://www.oceanexpert.org/institution/20518 -https://www.oceanexpert.org/expert/21213 -https://www.oceanexpert.org/event/2455 -https://www.oceanexpert.org/expert/27142 -https://www.oceanexpert.org/event/158 -https://www.oceanexpert.org/expert/43313 -https://www.oceanexpert.org/expert/47518 -https://www.oceanexpert.org/event/2977 -https://www.oceanexpert.org/event/1448 -https://www.oceanexpert.org/expert/40758 -https://www.oceanexpert.org/expert/43246 -https://www.oceanexpert.org/institution/17449 -https://www.oceanexpert.org/expert/25760 -https://www.oceanexpert.org/event/698 -https://www.oceanexpert.org/event/2203 -https://www.oceanexpert.org/expert/12412 -https://www.oceanexpert.org/institution/11533 -https://www.oceanexpert.org/expert/11739 -https://www.oceanexpert.org/event/2384 -https://www.oceanexpert.org/expert/43381 -https://www.oceanexpert.org/expert/43472 -https://www.oceanexpert.org/expert/18823 -https://www.oceanexpert.org/institution/18149 -https://www.oceanexpert.org/expert/15950 -https://www.oceanexpert.org/expert/42787 -https://www.oceanexpert.org/expert/13748 -https://www.oceanexpert.org/institution/11926 -https://www.oceanexpert.org/expert/42799 -https://www.oceanexpert.org/institution/5577 -https://www.oceanexpert.org/institution/5895 -https://www.oceanexpert.org/expert/17610 -https://www.oceanexpert.org/event/1557 -https://www.oceanexpert.org/institution/14908 -https://www.oceanexpert.org/expert/21055 -https://www.oceanexpert.org/expert/21059 -https://www.oceanexpert.org/institution/19862 -https://www.oceanexpert.org/expert/16883 -https://www.oceanexpert.org/expert/47717 -https://www.oceanexpert.org/expert/33276 -https://www.oceanexpert.org/expert/18390 -https://www.oceanexpert.org/expert/7414 -https://www.oceanexpert.org/expert/22930 -https://www.oceanexpert.org/expert/44053 -https://www.oceanexpert.org/expert/13624 -https://www.oceanexpert.org/event/1368 -https://www.oceanexpert.org/expert/32176 -https://www.oceanexpert.org/event/1883 -https://www.oceanexpert.org/expert/36483 -https://www.oceanexpert.org/expert/38779 -https://www.oceanexpert.org/institution/20366 -https://www.oceanexpert.org/expert/8696 -https://www.oceanexpert.org/expert/37242 -https://www.oceanexpert.org/expert/11843 -https://www.oceanexpert.org/institution/15688 -https://www.oceanexpert.org/institution/17494 -https://www.oceanexpert.org/institution/5501 -https://www.oceanexpert.org/expert/30784 -https://www.oceanexpert.org/expert/45368 -https://www.oceanexpert.org/institution/19607 -https://www.oceanexpert.org/expert/21672 -https://www.oceanexpert.org/event/2385 -https://www.oceanexpert.org/expert/35762 -https://www.oceanexpert.org/institution/21280 -https://www.oceanexpert.org/expert/17327 -https://www.oceanexpert.org/institution/5662 -https://www.oceanexpert.org/expert/34214 -https://www.oceanexpert.org/institution/9783 -https://www.oceanexpert.org/expert/17413 -https://www.oceanexpert.org/institution/14574 -https://www.oceanexpert.org/event/1880 -https://www.oceanexpert.org/expert/33826 -https://www.oceanexpert.org/expert/44469 -https://www.oceanexpert.org/expert/4191 -https://www.oceanexpert.org/expert/47348 -https://www.oceanexpert.org/expert/37917 -https://www.oceanexpert.org/expert/27777 -https://www.oceanexpert.org/expert/6745 -https://www.oceanexpert.org/expert/38112 -https://www.oceanexpert.org/institution/11384 -https://www.oceanexpert.org/expert/43752 -https://www.oceanexpert.org/expert/21596 -https://www.oceanexpert.org/expert/30801 -https://www.oceanexpert.org/institution/10237 -https://www.oceanexpert.org/expert/34837 -https://www.oceanexpert.org/expert/37553 -https://www.oceanexpert.org/expert/15299 -https://www.oceanexpert.org/expert/6921 -https://www.oceanexpert.org/expert/48701 -https://www.oceanexpert.org/expert/23656 -https://www.oceanexpert.org/institution/6685 -https://www.oceanexpert.org/institution/6766 -https://www.oceanexpert.org/expert/47156 -https://www.oceanexpert.org/expert/17422 -https://www.oceanexpert.org/expert/20380 -https://www.oceanexpert.org/expert/44034 -https://www.oceanexpert.org/institution/17768 -https://www.oceanexpert.org/expert/24638 -https://www.oceanexpert.org/expert/43604 -https://www.oceanexpert.org/expert/36261 -https://www.oceanexpert.org/expert/43294 -https://www.oceanexpert.org/institution/18594 -https://www.oceanexpert.org/event/1270 -https://www.oceanexpert.org/expert/25703 -https://www.oceanexpert.org/expert/13574 -https://www.oceanexpert.org/event/2493 -https://www.oceanexpert.org/expert/12232 -https://www.oceanexpert.org/expert/37936 -https://www.oceanexpert.org/expert/25918 -https://www.oceanexpert.org/expert/47777 -https://www.oceanexpert.org/expert/36562 -https://www.oceanexpert.org/expert/7275 -https://www.oceanexpert.org/expert/44784 -https://www.oceanexpert.org/institution/21602 -https://www.oceanexpert.org/expert/16655 -https://www.oceanexpert.org/expert/34370 -https://www.oceanexpert.org/expert/45462 -https://www.oceanexpert.org/institution/19902 -https://www.oceanexpert.org/institution/12772 -https://www.oceanexpert.org/expert/36994 -https://www.oceanexpert.org/event/2414 -https://www.oceanexpert.org/institution/16705 -https://www.oceanexpert.org/expert/29670 -https://www.oceanexpert.org/expert/46060 -https://www.oceanexpert.org/expert/32470 -https://www.oceanexpert.org/expert/17554 -https://www.oceanexpert.org/expert/42538 -https://www.oceanexpert.org/expert/23219 -https://www.oceanexpert.org/expert/19003 -https://www.oceanexpert.org/expert/48338 -https://www.oceanexpert.org/institution/9202 -https://www.oceanexpert.org/institution/11678 -https://www.oceanexpert.org/expert/16317 -https://www.oceanexpert.org/expert/31859 -https://www.oceanexpert.org/institution/6194 -https://www.oceanexpert.org/expert/32744 -https://www.oceanexpert.org/expert/13178 -https://www.oceanexpert.org/expert/19422 -https://www.oceanexpert.org/expert/22078 -https://www.oceanexpert.org/expert/26583 -https://www.oceanexpert.org/expert/38067 -https://www.oceanexpert.org/expert/25963 -https://www.oceanexpert.org/expert/19093 -https://www.oceanexpert.org/expert/25323 -https://www.oceanexpert.org/expert/26623 -https://www.oceanexpert.org/institution/19260 -https://www.oceanexpert.org/expert/38380 -https://www.oceanexpert.org/expert/33859 -https://www.oceanexpert.org/expert/19787 -https://www.oceanexpert.org/expert/5546 -https://www.oceanexpert.org/expert/30275 -https://www.oceanexpert.org/expert/31028 -https://www.oceanexpert.org/event/336 -https://www.oceanexpert.org/expert/34086 -https://www.oceanexpert.org/expert/43936 -https://www.oceanexpert.org/expert/16067 -https://www.oceanexpert.org/expert/14487 -https://www.oceanexpert.org/expert/44818 -https://www.oceanexpert.org/expert/43632 -https://www.oceanexpert.org/expert/43632 -https://www.oceanexpert.org/institution/10751 -https://www.oceanexpert.org/institution/19903 -https://www.oceanexpert.org/institution/12363 -https://www.oceanexpert.org/expert/19417 -https://www.oceanexpert.org/expert/33310 -https://www.oceanexpert.org/expert/33262 -https://www.oceanexpert.org/institution/18216 -https://www.oceanexpert.org/event/2473 -https://www.oceanexpert.org/expert/30170 -https://www.oceanexpert.org/expert/48999 -https://www.oceanexpert.org/institution/5122 -https://www.oceanexpert.org/expert/32228 -https://www.oceanexpert.org/expert/43732 -https://www.oceanexpert.org/expert/33523 -https://www.oceanexpert.org/expert/24014 -https://www.oceanexpert.org/institution/20615 -https://www.oceanexpert.org/expert/32463 -https://www.oceanexpert.org/expert/46617 -https://www.oceanexpert.org/institution/19294 -https://www.oceanexpert.org/expert/38611 -https://www.oceanexpert.org/expert/38473 -https://www.oceanexpert.org/expert/20093 -https://www.oceanexpert.org/expert/26285 -https://www.oceanexpert.org/expert/13816 -https://www.oceanexpert.org/expert/43633 -https://www.oceanexpert.org/expert/31239 -https://www.oceanexpert.org/expert/33011 -https://www.oceanexpert.org/expert/22940 -https://www.oceanexpert.org/expert/8662 -https://www.oceanexpert.org/institution/17343 -https://www.oceanexpert.org/event/1364 -https://www.oceanexpert.org/expert/13749 -https://www.oceanexpert.org/expert/44044 -https://www.oceanexpert.org/expert/10646 -https://www.oceanexpert.org/expert/45806 -https://www.oceanexpert.org/expert/14668 -https://www.oceanexpert.org/expert/43204 -https://www.oceanexpert.org/institution/19790 -https://www.oceanexpert.org/expert/36662 -https://www.oceanexpert.org/institution/10878 -https://www.oceanexpert.org/institution/20216 -https://www.oceanexpert.org/expert/48200 -https://www.oceanexpert.org/expert/35691 -https://www.oceanexpert.org/expert/40321 -https://www.oceanexpert.org/expert/33458 -https://www.oceanexpert.org/event/1801 -https://www.oceanexpert.org/expert/26977 -https://www.oceanexpert.org/expert/11507 -https://www.oceanexpert.org/expert/33441 -https://www.oceanexpert.org/expert/26503 -https://www.oceanexpert.org/expert/17697 -https://www.oceanexpert.org/expert/19616 -https://www.oceanexpert.org/institution/19412 -https://www.oceanexpert.org/expert/31724 -https://www.oceanexpert.org/institution/14835 -https://www.oceanexpert.org/expert/43319 -https://www.oceanexpert.org/institution/11008 -https://www.oceanexpert.org/expert/1437 -https://www.oceanexpert.org/expert/16773 -https://www.oceanexpert.org/expert/8048 -https://www.oceanexpert.org/institution/7462 -https://www.oceanexpert.org/expert/13033 -https://www.oceanexpert.org/expert/43333 -https://www.oceanexpert.org/expert/25108 -https://www.oceanexpert.org/expert/9162 -https://www.oceanexpert.org/expert/31318 -https://www.oceanexpert.org/expert/1291 -https://www.oceanexpert.org/institution/9752 -https://www.oceanexpert.org/expert/31438 -https://www.oceanexpert.org/expert/45912 -https://www.oceanexpert.org/event/1205 -https://www.oceanexpert.org/expert/26285 -https://www.oceanexpert.org/expert/21220 -https://www.oceanexpert.org/institution/11009 -https://www.oceanexpert.org/expert/38528 -https://www.oceanexpert.org/institution/20138 -https://www.oceanexpert.org/institution/17502 -https://www.oceanexpert.org/institution/10554 -https://www.oceanexpert.org/expert/34437 -https://www.oceanexpert.org/expert/34220 -https://www.oceanexpert.org/institution/19385 -https://www.oceanexpert.org/expert/22792 -https://www.oceanexpert.org/expert/32663 -https://www.oceanexpert.org/expert/48301 -https://www.oceanexpert.org/institution/21160 -https://www.oceanexpert.org/expert/12243 -https://www.oceanexpert.org/expert/21506 -https://www.oceanexpert.org/expert/35256 -https://www.oceanexpert.org/institution/18712 -https://www.oceanexpert.org/institution/21158 -https://www.oceanexpert.org/expert/42824 -https://www.oceanexpert.org/expert/19307 -https://www.oceanexpert.org/expert/37105 -https://www.oceanexpert.org/institution/18350 -https://www.oceanexpert.org/expert/29538 -https://www.oceanexpert.org/institution/13926 -https://www.oceanexpert.org/institution/13268 -https://www.oceanexpert.org/expert/22596 -https://www.oceanexpert.org/expert/30588 -https://www.oceanexpert.org/expert/33857 -https://www.oceanexpert.org/institution/11365 -https://www.oceanexpert.org/institution/21628 -https://www.oceanexpert.org/expert/23637 -https://www.oceanexpert.org/expert/42605 -https://www.oceanexpert.org/expert/46683 -https://www.oceanexpert.org/expert/48366 -https://www.oceanexpert.org/institution/18589 -https://www.oceanexpert.org/institution/12845 -https://www.oceanexpert.org/institution/13803 -https://www.oceanexpert.org/expert/43548 -https://www.oceanexpert.org/institution/9648 -https://www.oceanexpert.org/expert/42151 -https://www.oceanexpert.org/expert/38491 -https://www.oceanexpert.org/institution/21603 -https://www.oceanexpert.org/expert/11320 -https://www.oceanexpert.org/institution/20995 -https://www.oceanexpert.org/expert/27016 -https://www.oceanexpert.org/expert/30030 -https://www.oceanexpert.org/institution/15056 -https://www.oceanexpert.org/expert/20867 -https://www.oceanexpert.org/expert/21802 -https://www.oceanexpert.org/institution/12135 -https://www.oceanexpert.org/event/353 -https://www.oceanexpert.org/expert/8709 -https://www.oceanexpert.org/expert/29521 -https://www.oceanexpert.org/expert/38933 -https://www.oceanexpert.org/expert/44574 -https://www.oceanexpert.org/expert/38382 -https://www.oceanexpert.org/expert/32818 -https://www.oceanexpert.org/institution/20223 -https://www.oceanexpert.org/expert/18600 -https://www.oceanexpert.org/expert/24436 -https://www.oceanexpert.org/event/2196 -https://www.oceanexpert.org/institution/17136 -https://www.oceanexpert.org/expert/29909 -https://www.oceanexpert.org/expert/30104 -https://www.oceanexpert.org/expert/46675 -https://www.oceanexpert.org/expert/48498 -https://www.oceanexpert.org/expert/40019 -https://www.oceanexpert.org/expert/24614 -https://www.oceanexpert.org/institution/22124 -https://www.oceanexpert.org/expert/41458 -https://www.oceanexpert.org/event/65 -https://www.oceanexpert.org/expert/15570 -https://www.oceanexpert.org/expert/36041 -https://www.oceanexpert.org/expert/48920 -https://www.oceanexpert.org/institution/18356 -https://www.oceanexpert.org/expert/31818 -https://www.oceanexpert.org/expert/47973 -https://www.oceanexpert.org/expert/46187 -https://www.oceanexpert.org/expert/17617 -https://www.oceanexpert.org/expert/24799 -https://www.oceanexpert.org/expert/11326 -https://www.oceanexpert.org/expert/45628 -https://www.oceanexpert.org/expert/45429 -https://www.oceanexpert.org/event/2408 -https://www.oceanexpert.org/institution/16924 -https://www.oceanexpert.org/expert/23403 -https://www.oceanexpert.org/institution/19287 -https://www.oceanexpert.org/expert/36283 -https://www.oceanexpert.org/expert/29098 -https://www.oceanexpert.org/expert/17461 -https://www.oceanexpert.org/expert/34792 -https://www.oceanexpert.org/expert/2938 -https://www.oceanexpert.org/expert/25122 -https://www.oceanexpert.org/expert/37479 -https://www.oceanexpert.org/event/494 -https://www.oceanexpert.org/institution/18019 -https://www.oceanexpert.org/expert/6720 -https://www.oceanexpert.org/expert/32562 -https://www.oceanexpert.org/expert/12337 -https://www.oceanexpert.org/expert/33386 -https://www.oceanexpert.org/event/1800 -https://www.oceanexpert.org/expert/5592 -https://www.oceanexpert.org/expert/38580 -https://www.oceanexpert.org/expert/4194 -https://www.oceanexpert.org/expert/28309 -https://www.oceanexpert.org/expert/16058 -https://www.oceanexpert.org/expert/16137 -https://www.oceanexpert.org/expert/42534 -https://www.oceanexpert.org/expert/35309 -https://www.oceanexpert.org/expert/37721 -https://www.oceanexpert.org/expert/25823 -https://www.oceanexpert.org/expert/32496 -https://www.oceanexpert.org/expert/13747 -https://www.oceanexpert.org/expert/4218 -https://www.oceanexpert.org/event/1874 -https://www.oceanexpert.org/expert/19331 -https://www.oceanexpert.org/event/1948 -https://www.oceanexpert.org/expert/27961 -https://www.oceanexpert.org/expert/43773 -https://www.oceanexpert.org/event/2817 -https://www.oceanexpert.org/expert/40357 -https://www.oceanexpert.org/expert/44391 -https://www.oceanexpert.org/expert/40379 -https://www.oceanexpert.org/institution/19246 -https://www.oceanexpert.org/event/2056 -https://www.oceanexpert.org/expert/42623 -https://www.oceanexpert.org/expert/18842 -https://www.oceanexpert.org/expert/36546 -https://www.oceanexpert.org/expert/19600 -https://www.oceanexpert.org/expert/37697 -https://www.oceanexpert.org/expert/22947 -https://www.oceanexpert.org/expert/3777 -https://www.oceanexpert.org/expert/34222 -https://www.oceanexpert.org/expert/18189 -https://www.oceanexpert.org/expert/13593 -https://www.oceanexpert.org/institution/18338 -https://www.oceanexpert.org/expert/15892 -https://www.oceanexpert.org/institution/19091 -https://www.oceanexpert.org/expert/42637 -https://www.oceanexpert.org/expert/31898 -https://www.oceanexpert.org/expert/8175 -https://www.oceanexpert.org/expert/26786 -https://www.oceanexpert.org/expert/8275 -https://www.oceanexpert.org/event/694 -https://www.oceanexpert.org/expert/22290 -https://www.oceanexpert.org/expert/17056 -https://www.oceanexpert.org/institution/19619 -https://www.oceanexpert.org/expert/11249 -https://www.oceanexpert.org/expert/19832 -https://www.oceanexpert.org/expert/25605 -https://www.oceanexpert.org/expert/33297 -https://www.oceanexpert.org/expert/34958 -https://www.oceanexpert.org/expert/34736 -https://www.oceanexpert.org/expert/23292 -https://www.oceanexpert.org/expert/19175 -https://www.oceanexpert.org/expert/38925 -https://www.oceanexpert.org/event/1522 -https://www.oceanexpert.org/expert/43182 -https://www.oceanexpert.org/expert/45784 -https://www.oceanexpert.org/expert/42647 -https://www.oceanexpert.org/institution/20060 -https://www.oceanexpert.org/institution/7304 -https://www.oceanexpert.org/expert/22208 -https://www.oceanexpert.org/institution/21874 -https://www.oceanexpert.org/expert/23257 -https://www.oceanexpert.org/expert/11223 -https://www.oceanexpert.org/expert/40256 -https://www.oceanexpert.org/expert/31539 -https://www.oceanexpert.org/expert/35579 -https://www.oceanexpert.org/institution/21856 -https://www.oceanexpert.org/expert/6022 -https://www.oceanexpert.org/institution/17522 -https://www.oceanexpert.org/expert/37831 -https://www.oceanexpert.org/expert/41672 -https://www.oceanexpert.org/institution/12340 -https://www.oceanexpert.org/expert/34347 -https://www.oceanexpert.org/expert/27659 -https://www.oceanexpert.org/institution/19329 -https://www.oceanexpert.org/expert/41409 -https://www.oceanexpert.org/institution/21899 -https://www.oceanexpert.org/expert/25430 -https://www.oceanexpert.org/expert/27025 -https://www.oceanexpert.org/expert/38240 -https://www.oceanexpert.org/expert/44653 -https://www.oceanexpert.org/expert/36612 -https://www.oceanexpert.org/expert/15662 -https://www.oceanexpert.org/expert/43945 -https://www.oceanexpert.org/expert/38482 -https://www.oceanexpert.org/expert/16546 -https://www.oceanexpert.org/expert/39235 -https://www.oceanexpert.org/expert/29853 -https://www.oceanexpert.org/event/1313 -https://www.oceanexpert.org/expert/35875 -https://www.oceanexpert.org/expert/22544 -https://www.oceanexpert.org/institution/19034 -https://www.oceanexpert.org/expert/39351 -https://www.oceanexpert.org/expert/30132 -https://www.oceanexpert.org/institution/7921 -https://www.oceanexpert.org/event/1538 -https://www.oceanexpert.org/expert/8123 -https://www.oceanexpert.org/event/1282 -https://www.oceanexpert.org/expert/13552 -https://www.oceanexpert.org/expert/44978 -https://www.oceanexpert.org/expert/43501 -https://www.oceanexpert.org/expert/27648 -https://www.oceanexpert.org/expert/47603 -https://www.oceanexpert.org/expert/39292 -https://www.oceanexpert.org/expert/6516 -https://www.oceanexpert.org/expert/24872 -https://www.oceanexpert.org/expert/33433 -https://www.oceanexpert.org/event/2201 -https://www.oceanexpert.org/institution/20871 -https://www.oceanexpert.org/institution/19672 -https://www.oceanexpert.org/expert/11276 -https://www.oceanexpert.org/expert/46114 -https://www.oceanexpert.org/institution/17545 -https://www.oceanexpert.org/expert/8496 -https://www.oceanexpert.org/institution/16456 -https://www.oceanexpert.org/expert/23527 -https://www.oceanexpert.org/expert/23148 -https://www.oceanexpert.org/expert/12494 -https://www.oceanexpert.org/expert/15295 -https://www.oceanexpert.org/expert/20111 -https://www.oceanexpert.org/expert/23923 -https://www.oceanexpert.org/expert/16160 -https://www.oceanexpert.org/expert/44069 -https://www.oceanexpert.org/expert/32663 -https://www.oceanexpert.org/expert/216 -https://www.oceanexpert.org/expert/13854 -https://www.oceanexpert.org/expert/19030 -https://www.oceanexpert.org/expert/23724 -https://www.oceanexpert.org/institution/14623 -https://www.oceanexpert.org/event/1659 -https://www.oceanexpert.org/expert/23039 -https://www.oceanexpert.org/expert/32793 -https://www.oceanexpert.org/event/2727 -https://www.oceanexpert.org/expert/16656 -https://www.oceanexpert.org/expert/27367 -https://www.oceanexpert.org/event/1424 -https://www.oceanexpert.org/expert/19786 -https://www.oceanexpert.org/event/2524 -https://www.oceanexpert.org/institution/18218 -https://www.oceanexpert.org/institution/15490 -https://www.oceanexpert.org/institution/20839 -https://www.oceanexpert.org/institution/8868 -https://www.oceanexpert.org/expert/47686 -https://www.oceanexpert.org/expert/42003 -https://www.oceanexpert.org/institution/19758 -https://www.oceanexpert.org/institution/18885 -https://www.oceanexpert.org/expert/29759 -https://www.oceanexpert.org/institution/8371 -https://www.oceanexpert.org/expert/24535 -https://www.oceanexpert.org/institution/18345 -https://www.oceanexpert.org/expert/37374 -https://www.oceanexpert.org/institution/18202 -https://www.oceanexpert.org/expert/27743 -https://www.oceanexpert.org/institution/19628 -https://www.oceanexpert.org/expert/47397 -https://www.oceanexpert.org/institution/18792 -https://www.oceanexpert.org/expert/20660 -https://www.oceanexpert.org/expert/16594 -https://www.oceanexpert.org/institution/14372 -https://www.oceanexpert.org/expert/21908 -https://www.oceanexpert.org/expert/20304 -https://www.oceanexpert.org/institution/21198 -https://www.oceanexpert.org/expert/20761 -https://www.oceanexpert.org/expert/27431 -https://www.oceanexpert.org/event/1316 -https://www.oceanexpert.org/expert/2798 -https://www.oceanexpert.org/expert/21250 -https://www.oceanexpert.org/institution/5396 -https://www.oceanexpert.org/expert/46317 -https://www.oceanexpert.org/event/1396 -https://www.oceanexpert.org/expert/34579 -https://www.oceanexpert.org/institution/20508 -https://www.oceanexpert.org/expert/45055 -https://www.oceanexpert.org/expert/22734 -https://www.oceanexpert.org/expert/18345 -https://www.oceanexpert.org/expert/17301 -https://www.oceanexpert.org/institution/19171 -https://www.oceanexpert.org/expert/14277 -https://www.oceanexpert.org/expert/46509 -https://www.oceanexpert.org/expert/42956 -https://www.oceanexpert.org/expert/20065 -https://www.oceanexpert.org/institution/17614 -https://www.oceanexpert.org/expert/24049 -https://www.oceanexpert.org/expert/42639 -https://www.oceanexpert.org/expert/24585 -https://www.oceanexpert.org/institution/18272 -https://www.oceanexpert.org/expert/44839 -https://www.oceanexpert.org/expert/48176 -https://www.oceanexpert.org/expert/48694 -https://www.oceanexpert.org/expert/14059 -https://www.oceanexpert.org/expert/31319 -https://www.oceanexpert.org/event/2898 -https://www.oceanexpert.org/institution/18391 -https://www.oceanexpert.org/expert/23047 -https://www.oceanexpert.org/expert/42473 -https://www.oceanexpert.org/expert/18566 -https://www.oceanexpert.org/expert/25260 -https://www.oceanexpert.org/institution/19996 -https://www.oceanexpert.org/expert/48018 -https://www.oceanexpert.org/institution/19324 -https://www.oceanexpert.org/institution/21995 -https://www.oceanexpert.org/expert/32672 -https://www.oceanexpert.org/expert/47094 -https://www.oceanexpert.org/expert/28278 -https://www.oceanexpert.org/expert/21095 -https://www.oceanexpert.org/expert/45812 -https://www.oceanexpert.org/institution/15896 -https://www.oceanexpert.org/expert/27414 -https://www.oceanexpert.org/expert/47163 -https://www.oceanexpert.org/expert/44797 -https://www.oceanexpert.org/expert/23372 -https://www.oceanexpert.org/expert/23901 -https://www.oceanexpert.org/institution/17661 -https://www.oceanexpert.org/expert/22056 -https://www.oceanexpert.org/institution/17198 -https://www.oceanexpert.org/expert/4487 -https://www.oceanexpert.org/expert/28095 -https://www.oceanexpert.org/event/90 -https://www.oceanexpert.org/expert/43684 -https://www.oceanexpert.org/expert/20800 -https://www.oceanexpert.org/institution/8236 -https://www.oceanexpert.org/expert/37393 -https://www.oceanexpert.org/expert/37514 -https://www.oceanexpert.org/expert/38269 -https://www.oceanexpert.org/expert/36519 -https://www.oceanexpert.org/event/473 -https://www.oceanexpert.org/institution/20884 -https://www.oceanexpert.org/expert/24492 -https://www.oceanexpert.org/expert/38473 -https://www.oceanexpert.org/expert/23452 -https://www.oceanexpert.org/expert/45770 -https://www.oceanexpert.org/expert/35779 -https://www.oceanexpert.org/expert/31131 -https://www.oceanexpert.org/expert/26687 -https://www.oceanexpert.org/expert/14148 -https://www.oceanexpert.org/institution/5377 -https://www.oceanexpert.org/institution/21678 -https://www.oceanexpert.org/expert/20748 -https://www.oceanexpert.org/institution/21750 -https://www.oceanexpert.org/institution/16739 -https://www.oceanexpert.org/expert/46603 -https://www.oceanexpert.org/institution/20116 -https://www.oceanexpert.org/expert/31802 -https://www.oceanexpert.org/event/1634 -https://www.oceanexpert.org/expert/48855 -https://www.oceanexpert.org/institution/21365 -https://www.oceanexpert.org/expert/47140 -https://www.oceanexpert.org/expert/33243 -https://www.oceanexpert.org/event/2169 -https://www.oceanexpert.org/expert/35401 -https://www.oceanexpert.org/expert/869 -https://www.oceanexpert.org/institution/20874 -https://www.oceanexpert.org/institution/15466 -https://www.oceanexpert.org/expert/37129 -https://www.oceanexpert.org/expert/26730 -https://www.oceanexpert.org/expert/33320 -https://www.oceanexpert.org/institution/21403 -https://www.oceanexpert.org/expert/18462 -https://www.oceanexpert.org/expert/6356 -https://www.oceanexpert.org/expert/25802 -https://www.oceanexpert.org/expert/35841 -https://www.oceanexpert.org/event/2436 -https://www.oceanexpert.org/expert/15992 -https://www.oceanexpert.org/expert/44983 -https://www.oceanexpert.org/expert/44074 -https://www.oceanexpert.org/expert/33272 -https://www.oceanexpert.org/institution/21268 -https://www.oceanexpert.org/expert/36563 -https://www.oceanexpert.org/expert/21792 -https://www.oceanexpert.org/expert/17802 -https://www.oceanexpert.org/institution/19646 -https://www.oceanexpert.org/expert/29121 -https://www.oceanexpert.org/institution/20121 -https://www.oceanexpert.org/expert/35823 -https://www.oceanexpert.org/expert/19436 -https://www.oceanexpert.org/institution/18579 -https://www.oceanexpert.org/expert/20304 -https://www.oceanexpert.org/event/578 -https://www.oceanexpert.org/expert/22850 -https://www.oceanexpert.org/expert/18159 -https://www.oceanexpert.org/expert/14853 -https://www.oceanexpert.org/expert/48850 -https://www.oceanexpert.org/event/1473 -https://www.oceanexpert.org/expert/8047 -https://www.oceanexpert.org/expert/17511 -https://www.oceanexpert.org/expert/32538 -https://www.oceanexpert.org/expert/29527 -https://www.oceanexpert.org/event/455 -https://www.oceanexpert.org/expert/26110 -https://www.oceanexpert.org/expert/38095 -https://www.oceanexpert.org/expert/15668 -https://www.oceanexpert.org/expert/19082 -https://www.oceanexpert.org/institution/19389 -https://www.oceanexpert.org/expert/21962 -https://www.oceanexpert.org/expert/16591 -https://www.oceanexpert.org/institution/21417 -https://www.oceanexpert.org/expert/23391 -https://www.oceanexpert.org/expert/37898 -https://www.oceanexpert.org/expert/32877 -https://www.oceanexpert.org/expert/38808 -https://www.oceanexpert.org/expert/47192 -https://www.oceanexpert.org/expert/24027 -https://www.oceanexpert.org/institution/7355 -https://www.oceanexpert.org/expert/27402 -https://www.oceanexpert.org/expert/47890 -https://www.oceanexpert.org/expert/25843 -https://www.oceanexpert.org/expert/44212 -https://www.oceanexpert.org/expert/35303 -https://www.oceanexpert.org/institution/19266 -https://www.oceanexpert.org/event/652 -https://www.oceanexpert.org/event/1171 -https://www.oceanexpert.org/expert/47601 -https://www.oceanexpert.org/expert/34764 -https://www.oceanexpert.org/expert/47081 -https://www.oceanexpert.org/expert/29177 -https://www.oceanexpert.org/expert/32405 -https://www.oceanexpert.org/expert/45394 -https://www.oceanexpert.org/expert/26738 -https://www.oceanexpert.org/expert/43864 -https://www.oceanexpert.org/expert/15973 -https://www.oceanexpert.org/institution/18102 -https://www.oceanexpert.org/expert/20990 -https://www.oceanexpert.org/expert/40329 -https://www.oceanexpert.org/expert/32786 -https://www.oceanexpert.org/expert/20777 -https://www.oceanexpert.org/expert/35767 -https://www.oceanexpert.org/expert/20933 -https://www.oceanexpert.org/institution/10626 -https://www.oceanexpert.org/expert/38315 -https://www.oceanexpert.org/expert/45706 -https://www.oceanexpert.org/expert/48025 -https://www.oceanexpert.org/institution/18572 -https://www.oceanexpert.org/institution/18660 -https://www.oceanexpert.org/expert/26751 -https://www.oceanexpert.org/event/1520 -https://www.oceanexpert.org/expert/24000 -https://www.oceanexpert.org/expert/20747 -https://www.oceanexpert.org/expert/43862 -https://www.oceanexpert.org/expert/33548 -https://www.oceanexpert.org/expert/2284 -https://www.oceanexpert.org/expert/16959 -https://www.oceanexpert.org/expert/46816 -https://www.oceanexpert.org/expert/29318 -https://www.oceanexpert.org/expert/40561 -https://www.oceanexpert.org/expert/19519 -https://www.oceanexpert.org/expert/33537 -https://www.oceanexpert.org/institution/20096 -https://www.oceanexpert.org/expert/32230 -https://www.oceanexpert.org/expert/44441 -https://www.oceanexpert.org/institution/18917 -https://www.oceanexpert.org/expert/16517 -https://www.oceanexpert.org/expert/48607 -https://www.oceanexpert.org/event/558 -https://www.oceanexpert.org/expert/25065 -https://www.oceanexpert.org/event/2016 -https://www.oceanexpert.org/expert/18224 -https://www.oceanexpert.org/expert/14273 -https://www.oceanexpert.org/expert/20949 -https://www.oceanexpert.org/institution/9426 -https://www.oceanexpert.org/expert/37124 -https://www.oceanexpert.org/expert/44228 -https://www.oceanexpert.org/event/2809 -https://www.oceanexpert.org/expert/5152 -https://www.oceanexpert.org/event/3004 -https://www.oceanexpert.org/event/2371 -https://www.oceanexpert.org/expert/21495 -https://www.oceanexpert.org/event/799 -https://www.oceanexpert.org/expert/46886 -https://www.oceanexpert.org/expert/34141 -https://www.oceanexpert.org/expert/43877 -https://www.oceanexpert.org/expert/34210 -https://www.oceanexpert.org/expert/24189 -https://www.oceanexpert.org/expert/45575 -https://www.oceanexpert.org/expert/18022 -https://www.oceanexpert.org/expert/19497 -https://www.oceanexpert.org/expert/25141 -https://www.oceanexpert.org/expert/27013 -https://www.oceanexpert.org/institution/14276 -https://www.oceanexpert.org/expert/36492 -https://www.oceanexpert.org/expert/37576 -https://www.oceanexpert.org/expert/30206 -https://www.oceanexpert.org/expert/46653 -https://www.oceanexpert.org/expert/26163 -https://www.oceanexpert.org/expert/35242 -https://www.oceanexpert.org/institution/22131 -https://www.oceanexpert.org/expert/40326 -https://www.oceanexpert.org/expert/39841 -https://www.oceanexpert.org/expert/23480 -https://www.oceanexpert.org/expert/19880 -https://www.oceanexpert.org/expert/27175 -https://www.oceanexpert.org/expert/45148 -https://www.oceanexpert.org/expert/39295 -https://www.oceanexpert.org/expert/12126 -https://www.oceanexpert.org/expert/22080 -https://www.oceanexpert.org/expert/6933 -https://www.oceanexpert.org/expert/19957 -https://www.oceanexpert.org/expert/32750 -https://www.oceanexpert.org/expert/46880 -https://www.oceanexpert.org/expert/46652 -https://www.oceanexpert.org/expert/38094 -https://www.oceanexpert.org/expert/31462 -https://www.oceanexpert.org/institution/19796 -https://www.oceanexpert.org/institution/6622 -https://www.oceanexpert.org/expert/35079 -https://www.oceanexpert.org/expert/19978 -https://www.oceanexpert.org/expert/33653 -https://www.oceanexpert.org/expert/39937 -https://www.oceanexpert.org/expert/29600 -https://www.oceanexpert.org/expert/22911 -https://www.oceanexpert.org/expert/33207 -https://www.oceanexpert.org/expert/7212 -https://www.oceanexpert.org/expert/26894 -https://www.oceanexpert.org/expert/34391 -https://www.oceanexpert.org/expert/21044 -https://www.oceanexpert.org/expert/34722 -https://www.oceanexpert.org/expert/47797 -https://www.oceanexpert.org/expert/20692 -https://www.oceanexpert.org/institution/22031 -https://www.oceanexpert.org/expert/35400 -https://www.oceanexpert.org/expert/43267 -https://www.oceanexpert.org/expert/24190 -https://www.oceanexpert.org/institution/14962 -https://www.oceanexpert.org/expert/37154 -https://www.oceanexpert.org/expert/38986 -https://www.oceanexpert.org/expert/24476 -https://www.oceanexpert.org/expert/46989 -https://www.oceanexpert.org/institution/19779 -https://www.oceanexpert.org/institution/18334 -https://www.oceanexpert.org/expert/47537 -https://www.oceanexpert.org/event/2004 -https://www.oceanexpert.org/expert/712 -https://www.oceanexpert.org/expert/30223 -https://www.oceanexpert.org/expert/33298 -https://www.oceanexpert.org/expert/26480 -https://www.oceanexpert.org/institution/10646 -https://www.oceanexpert.org/expert/42946 -https://www.oceanexpert.org/expert/37258 -https://www.oceanexpert.org/expert/21023 -https://www.oceanexpert.org/expert/22543 -https://www.oceanexpert.org/expert/37136 -https://www.oceanexpert.org/expert/19036 -https://www.oceanexpert.org/institution/13112 -https://www.oceanexpert.org/institution/11609 -https://www.oceanexpert.org/expert/45528 -https://www.oceanexpert.org/expert/44528 -https://www.oceanexpert.org/expert/650 -https://www.oceanexpert.org/event/1500 -https://www.oceanexpert.org/expert/21482 -https://www.oceanexpert.org/expert/32808 -https://www.oceanexpert.org/event/1405 -https://www.oceanexpert.org/expert/20898 -https://www.oceanexpert.org/expert/21885 -https://www.oceanexpert.org/expert/46464 -https://www.oceanexpert.org/expert/47701 -https://www.oceanexpert.org/expert/44863 -https://www.oceanexpert.org/institution/17086 -https://www.oceanexpert.org/expert/48118 -https://www.oceanexpert.org/expert/20923 -https://www.oceanexpert.org/institution/19225 -https://www.oceanexpert.org/expert/25717 -https://www.oceanexpert.org/expert/28351 -https://www.oceanexpert.org/institution/22119 -https://www.oceanexpert.org/institution/10274 -https://www.oceanexpert.org/expert/23520 -https://www.oceanexpert.org/expert/18672 -https://www.oceanexpert.org/event/1932 -https://www.oceanexpert.org/institution/12108 -https://www.oceanexpert.org/expert/14566 -https://www.oceanexpert.org/institution/18083 -https://www.oceanexpert.org/expert/46032 -https://www.oceanexpert.org/expert/24001 -https://www.oceanexpert.org/expert/45946 -https://www.oceanexpert.org/expert/44766 -https://www.oceanexpert.org/expert/23507 -https://www.oceanexpert.org/expert/25077 -https://www.oceanexpert.org/expert/36274 -https://www.oceanexpert.org/expert/26732 -https://www.oceanexpert.org/institution/19282 -https://www.oceanexpert.org/institution/15932 -https://www.oceanexpert.org/expert/27049 -https://www.oceanexpert.org/expert/26843 -https://www.oceanexpert.org/expert/45762 -https://www.oceanexpert.org/expert/23386 -https://www.oceanexpert.org/expert/43835 -https://www.oceanexpert.org/expert/26871 -https://www.oceanexpert.org/expert/27295 -https://www.oceanexpert.org/expert/18382 -https://www.oceanexpert.org/expert/27899 -https://www.oceanexpert.org/expert/45013 -https://www.oceanexpert.org/expert/23962 -https://www.oceanexpert.org/expert/48998 -https://www.oceanexpert.org/expert/17336 -https://www.oceanexpert.org/expert/34779 -https://www.oceanexpert.org/expert/37382 -https://www.oceanexpert.org/expert/30452 -https://www.oceanexpert.org/expert/24859 -https://www.oceanexpert.org/institution/14298 -https://www.oceanexpert.org/expert/48329 -https://www.oceanexpert.org/expert/24684 -https://www.oceanexpert.org/expert/20584 -https://www.oceanexpert.org/expert/5055 -https://www.oceanexpert.org/institution/18132 -https://www.oceanexpert.org/expert/32343 -https://www.oceanexpert.org/expert/18395 -https://www.oceanexpert.org/expert/30297 -https://www.oceanexpert.org/expert/25702 -https://www.oceanexpert.org/expert/27164 -https://www.oceanexpert.org/expert/25211 -https://www.oceanexpert.org/expert/32872 -https://www.oceanexpert.org/expert/48179 -https://www.oceanexpert.org/expert/48951 -https://www.oceanexpert.org/expert/25271 -https://www.oceanexpert.org/expert/17483 -https://www.oceanexpert.org/expert/27525 -https://www.oceanexpert.org/expert/43647 -https://www.oceanexpert.org/expert/26738 -https://www.oceanexpert.org/institution/21404 -https://www.oceanexpert.org/expert/22371 -https://www.oceanexpert.org/expert/12907 -https://www.oceanexpert.org/expert/37846 -https://www.oceanexpert.org/expert/31272 -https://www.oceanexpert.org/expert/21773 -https://www.oceanexpert.org/expert/38092 -https://www.oceanexpert.org/expert/25297 -https://www.oceanexpert.org/expert/13522 -https://www.oceanexpert.org/expert/16584 -https://www.oceanexpert.org/expert/23311 -https://www.oceanexpert.org/institution/21923 -https://www.oceanexpert.org/institution/20171 -https://www.oceanexpert.org/expert/42628 -https://www.oceanexpert.org/expert/34697 -https://www.oceanexpert.org/expert/22108 -https://www.oceanexpert.org/expert/33501 -https://www.oceanexpert.org/expert/47327 -https://www.oceanexpert.org/expert/25722 -https://www.oceanexpert.org/expert/48254 -https://www.oceanexpert.org/expert/14344 -https://www.oceanexpert.org/institution/10968 -https://www.oceanexpert.org/expert/21450 -https://www.oceanexpert.org/expert/18372 -https://www.oceanexpert.org/expert/44752 -https://www.oceanexpert.org/event/1111 -https://www.oceanexpert.org/expert/44794 -https://www.oceanexpert.org/expert/43247 -https://www.oceanexpert.org/expert/10847 -https://www.oceanexpert.org/institution/16825 -https://www.oceanexpert.org/expert/17447 -https://www.oceanexpert.org/institution/18266 -https://www.oceanexpert.org/institution/8214 -https://www.oceanexpert.org/expert/19252 -https://www.oceanexpert.org/expert/17542 -https://www.oceanexpert.org/expert/37568 -https://www.oceanexpert.org/expert/46413 -https://www.oceanexpert.org/expert/25231 -https://www.oceanexpert.org/expert/43833 -https://www.oceanexpert.org/institution/9121 -https://www.oceanexpert.org/expert/27527 -https://www.oceanexpert.org/institution/16417 -https://www.oceanexpert.org/expert/24713 -https://www.oceanexpert.org/expert/18691 -https://www.oceanexpert.org/expert/18340 -https://www.oceanexpert.org/expert/35506 -https://www.oceanexpert.org/expert/21791 -https://www.oceanexpert.org/expert/27516 -https://www.oceanexpert.org/expert/26951 -https://www.oceanexpert.org/institution/22115 -https://www.oceanexpert.org/expert/17590 -https://www.oceanexpert.org/institution/14295 -https://www.oceanexpert.org/expert/19278 -https://www.oceanexpert.org/expert/17953 -https://www.oceanexpert.org/institution/8895 -https://www.oceanexpert.org/expert/36831 -https://www.oceanexpert.org/expert/38678 -https://www.oceanexpert.org/expert/23358 -https://www.oceanexpert.org/expert/37908 -https://www.oceanexpert.org/expert/32665 -https://www.oceanexpert.org/expert/18186 -https://www.oceanexpert.org/event/699 -https://www.oceanexpert.org/expert/34829 -https://www.oceanexpert.org/expert/18926 -https://www.oceanexpert.org/institution/18413 -https://www.oceanexpert.org/expert/36139 -https://www.oceanexpert.org/expert/44610 -https://www.oceanexpert.org/expert/36473 -https://www.oceanexpert.org/institution/18167 -https://www.oceanexpert.org/event/1400 -https://www.oceanexpert.org/expert/44632 -https://www.oceanexpert.org/event/300 -https://www.oceanexpert.org/expert/26593 -https://www.oceanexpert.org/expert/44489 -https://www.oceanexpert.org/expert/36503 -https://www.oceanexpert.org/expert/17474 -https://www.oceanexpert.org/expert/24617 -https://www.oceanexpert.org/expert/19618 -https://www.oceanexpert.org/expert/20116 -https://www.oceanexpert.org/institution/19906 -https://www.oceanexpert.org/institution/16322 -https://www.oceanexpert.org/expert/39977 -https://www.oceanexpert.org/expert/15978 -https://www.oceanexpert.org/expert/40057 -https://www.oceanexpert.org/expert/19403 -https://www.oceanexpert.org/expert/36107 -https://www.oceanexpert.org/expert/18620 -https://www.oceanexpert.org/event/492 -https://www.oceanexpert.org/expert/40885 -https://www.oceanexpert.org/expert/44786 -https://www.oceanexpert.org/expert/36186 -https://www.oceanexpert.org/expert/21897 -https://www.oceanexpert.org/institution/15092 -https://www.oceanexpert.org/event/866 -https://www.oceanexpert.org/institution/16715 -https://www.oceanexpert.org/expert/36804 -https://www.oceanexpert.org/event/2997 -https://www.oceanexpert.org/expert/28013 -https://www.oceanexpert.org/institution/17631 -https://www.oceanexpert.org/expert/15528 -https://www.oceanexpert.org/expert/7777 -https://www.oceanexpert.org/expert/27536 -https://www.oceanexpert.org/institution/18772 -https://www.oceanexpert.org/expert/9545 -https://www.oceanexpert.org/institution/17943 -https://www.oceanexpert.org/expert/46176 -https://www.oceanexpert.org/expert/48002 -https://www.oceanexpert.org/institution/9738 -https://www.oceanexpert.org/expert/33221 -https://www.oceanexpert.org/expert/29753 -https://www.oceanexpert.org/expert/46565 -https://www.oceanexpert.org/event/2363 -https://www.oceanexpert.org/expert/18004 -https://www.oceanexpert.org/institution/10551 -https://www.oceanexpert.org/expert/22756 -https://www.oceanexpert.org/expert/27302 -https://www.oceanexpert.org/expert/16924 -https://www.oceanexpert.org/expert/24246 -https://www.oceanexpert.org/expert/22618 -https://www.oceanexpert.org/institution/17686 -https://www.oceanexpert.org/institution/19202 -https://www.oceanexpert.org/expert/38234 -https://www.oceanexpert.org/expert/31565 -https://www.oceanexpert.org/institution/14080 -https://www.oceanexpert.org/expert/46970 -https://www.oceanexpert.org/expert/26961 -https://www.oceanexpert.org/event/2349 -https://www.oceanexpert.org/expert/38858 -https://www.oceanexpert.org/expert/44983 -https://www.oceanexpert.org/expert/25954 -https://www.oceanexpert.org/expert/41921 -https://www.oceanexpert.org/expert/32262 -https://www.oceanexpert.org/expert/43649 -https://www.oceanexpert.org/institution/18744 -https://www.oceanexpert.org/expert/26356 -https://www.oceanexpert.org/expert/13144 -https://www.oceanexpert.org/expert/25213 -https://www.oceanexpert.org/expert/23161 -https://www.oceanexpert.org/expert/26442 -https://www.oceanexpert.org/expert/42946 -https://www.oceanexpert.org/institution/17460 -https://www.oceanexpert.org/institution/17142 -https://www.oceanexpert.org/expert/46803 -https://www.oceanexpert.org/expert/25915 -https://www.oceanexpert.org/expert/27256 -https://www.oceanexpert.org/institution/12188 -https://www.oceanexpert.org/expert/14437 -https://www.oceanexpert.org/expert/7196 -https://www.oceanexpert.org/expert/26643 -https://www.oceanexpert.org/institution/10047 -https://www.oceanexpert.org/expert/48250 -https://www.oceanexpert.org/institution/22155 -https://www.oceanexpert.org/event/2999 -https://www.oceanexpert.org/event/1699 -https://www.oceanexpert.org/expert/20138 -https://www.oceanexpert.org/expert/44935 -https://www.oceanexpert.org/expert/3870 -https://www.oceanexpert.org/expert/29267 -https://www.oceanexpert.org/institution/19208 -https://www.oceanexpert.org/expert/17035 -https://www.oceanexpert.org/institution/17330 -https://www.oceanexpert.org/expert/39280 -https://www.oceanexpert.org/expert/40636 -https://www.oceanexpert.org/institution/10124 -https://www.oceanexpert.org/expert/43816 -https://www.oceanexpert.org/event/3049 -https://www.oceanexpert.org/expert/29075 -https://www.oceanexpert.org/institution/21418 -https://www.oceanexpert.org/event/85 -https://www.oceanexpert.org/expert/22375 -https://www.oceanexpert.org/expert/42759 -https://www.oceanexpert.org/institution/18587 -https://www.oceanexpert.org/expert/26223 -https://www.oceanexpert.org/expert/23987 -https://www.oceanexpert.org/expert/39295 -https://www.oceanexpert.org/institution/5049 -https://www.oceanexpert.org/expert/16127 -https://www.oceanexpert.org/expert/27843 -https://www.oceanexpert.org/expert/30033 -https://www.oceanexpert.org/expert/23951 -https://www.oceanexpert.org/institution/14050 -https://www.oceanexpert.org/expert/38387 -https://www.oceanexpert.org/expert/25159 -https://www.oceanexpert.org/institution/17106 -https://www.oceanexpert.org/expert/40134 -https://www.oceanexpert.org/expert/37971 -https://www.oceanexpert.org/institution/13926 -https://www.oceanexpert.org/expert/36835 -https://www.oceanexpert.org/institution/15313 -https://www.oceanexpert.org/institution/18285 -https://www.oceanexpert.org/expert/22243 -https://www.oceanexpert.org/expert/16759 -https://www.oceanexpert.org/expert/44438 -https://www.oceanexpert.org/institution/12345 -https://www.oceanexpert.org/expert/27535 -https://www.oceanexpert.org/expert/38757 -https://www.oceanexpert.org/expert/43294 -https://www.oceanexpert.org/expert/36957 -https://www.oceanexpert.org/expert/24526 -https://www.oceanexpert.org/expert/41731 -https://www.oceanexpert.org/expert/17373 -https://www.oceanexpert.org/expert/44453 -https://www.oceanexpert.org/institution/20283 -https://www.oceanexpert.org/expert/699 -https://www.oceanexpert.org/expert/26664 -https://www.oceanexpert.org/event/2985 -https://www.oceanexpert.org/event/1871 -https://www.oceanexpert.org/expert/32717 -https://www.oceanexpert.org/institution/21047 -https://www.oceanexpert.org/expert/39383 -https://www.oceanexpert.org/expert/21331 -https://www.oceanexpert.org/institution/19809 -https://www.oceanexpert.org/expert/29853 -https://www.oceanexpert.org/institution/22088 -https://www.oceanexpert.org/expert/37429 -https://www.oceanexpert.org/institution/19684 -https://www.oceanexpert.org/expert/39308 -https://www.oceanexpert.org/expert/47571 -https://www.oceanexpert.org/expert/381 -https://www.oceanexpert.org/institution/16241 -https://www.oceanexpert.org/expert/21827 -https://www.oceanexpert.org/institution/6216 -https://www.oceanexpert.org/expert/5501 -https://www.oceanexpert.org/institution/19309 -https://www.oceanexpert.org/expert/15658 -https://www.oceanexpert.org/expert/27375 -https://www.oceanexpert.org/expert/16424 -https://www.oceanexpert.org/expert/36493 -https://www.oceanexpert.org/expert/29683 -https://www.oceanexpert.org/event/1593 -https://www.oceanexpert.org/expert/24685 -https://www.oceanexpert.org/expert/35466 -https://www.oceanexpert.org/institution/21470 -https://www.oceanexpert.org/expert/29487 -https://www.oceanexpert.org/event/2090 -https://www.oceanexpert.org/expert/26319 -https://www.oceanexpert.org/expert/8625 -https://www.oceanexpert.org/institution/18583 -https://www.oceanexpert.org/expert/31705 -https://www.oceanexpert.org/event/164 -https://www.oceanexpert.org/expert/17053 -https://www.oceanexpert.org/event/2117 -https://www.oceanexpert.org/expert/13539 -https://www.oceanexpert.org/institution/12556 -https://www.oceanexpert.org/expert/47743 -https://www.oceanexpert.org/expert/35585 -https://www.oceanexpert.org/event/3091 -https://www.oceanexpert.org/event/490 -https://www.oceanexpert.org/expert/23574 -https://www.oceanexpert.org/event/2117 -https://www.oceanexpert.org/expert/12747 -https://www.oceanexpert.org/expert/11741 -https://www.oceanexpert.org/institution/20313 -https://www.oceanexpert.org/event/1170 -https://www.oceanexpert.org/expert/30189 -https://www.oceanexpert.org/expert/46527 -https://www.oceanexpert.org/institution/18755 -https://www.oceanexpert.org/event/2797 -https://www.oceanexpert.org/institution/11758 -https://www.oceanexpert.org/expert/19168 -https://www.oceanexpert.org/expert/7315 -https://www.oceanexpert.org/expert/26323 -https://www.oceanexpert.org/expert/13176 -https://www.oceanexpert.org/institution/21633 -https://www.oceanexpert.org/institution/18156 -https://www.oceanexpert.org/expert/19154 -https://www.oceanexpert.org/expert/20225 -https://www.oceanexpert.org/expert/39242 -https://www.oceanexpert.org/expert/26949 -https://www.oceanexpert.org/expert/34970 -https://www.oceanexpert.org/institution/13025 -https://www.oceanexpert.org/institution/18620 -https://www.oceanexpert.org/event/490 -https://www.oceanexpert.org/expert/19745 -https://www.oceanexpert.org/expert/30747 -https://www.oceanexpert.org/expert/33288 -https://www.oceanexpert.org/event/2745 -https://www.oceanexpert.org/expert/33766 -https://www.oceanexpert.org/expert/42702 -https://www.oceanexpert.org/expert/47295 -https://www.oceanexpert.org/expert/44235 -https://www.oceanexpert.org/institution/12004 -https://www.oceanexpert.org/expert/28094 -https://www.oceanexpert.org/expert/47269 -https://www.oceanexpert.org/institution/9596 -https://www.oceanexpert.org/institution/9733 -https://www.oceanexpert.org/event/2153 -https://www.oceanexpert.org/institution/13007 -https://www.oceanexpert.org/expert/42752 -https://www.oceanexpert.org/expert/48812 -https://www.oceanexpert.org/institution/18712 -https://www.oceanexpert.org/expert/36225 -https://www.oceanexpert.org/expert/33203 -https://www.oceanexpert.org/expert/35243 -https://www.oceanexpert.org/expert/36495 -https://www.oceanexpert.org/expert/25047 -https://www.oceanexpert.org/event/1030 -https://www.oceanexpert.org/institution/12118 -https://www.oceanexpert.org/expert/24691 -https://www.oceanexpert.org/expert/15012 -https://www.oceanexpert.org/expert/27018 -https://www.oceanexpert.org/event/104 -https://www.oceanexpert.org/expert/38098 -https://www.oceanexpert.org/expert/36472 -https://www.oceanexpert.org/expert/46061 -https://www.oceanexpert.org/expert/47528 -https://www.oceanexpert.org/expert/15837 -https://www.oceanexpert.org/event/140 -https://www.oceanexpert.org/event/1070 -https://www.oceanexpert.org/expert/37961 -https://www.oceanexpert.org/expert/47710 -https://www.oceanexpert.org/expert/18561 -https://www.oceanexpert.org/expert/48394 -https://www.oceanexpert.org/expert/32585 -https://www.oceanexpert.org/expert/38070 -https://www.oceanexpert.org/institution/11029 -https://www.oceanexpert.org/institution/20967 -https://www.oceanexpert.org/event/2637 -https://www.oceanexpert.org/expert/38212 -https://www.oceanexpert.org/expert/18719 -https://www.oceanexpert.org/institution/20450 -https://www.oceanexpert.org/expert/23588 -https://www.oceanexpert.org/institution/14782 -https://www.oceanexpert.org/expert/46176 -https://www.oceanexpert.org/expert/29099 -https://www.oceanexpert.org/event/173 -https://www.oceanexpert.org/event/2500 -https://www.oceanexpert.org/event/2296 -https://www.oceanexpert.org/expert/26491 -https://www.oceanexpert.org/institution/21762 -https://www.oceanexpert.org/expert/24439 -https://www.oceanexpert.org/expert/27452 -https://www.oceanexpert.org/expert/25158 -https://www.oceanexpert.org/expert/20589 -https://www.oceanexpert.org/expert/34024 -https://www.oceanexpert.org/expert/34065 -https://www.oceanexpert.org/expert/20596 -https://www.oceanexpert.org/event/2733 -https://www.oceanexpert.org/expert/23325 -https://www.oceanexpert.org/institution/11999 -https://www.oceanexpert.org/expert/44000 -https://www.oceanexpert.org/expert/18798 -https://www.oceanexpert.org/institution/20893 -https://www.oceanexpert.org/expert/21729 -https://www.oceanexpert.org/expert/44789 -https://www.oceanexpert.org/expert/25178 -https://www.oceanexpert.org/expert/37090 -https://www.oceanexpert.org/expert/47927 -https://www.oceanexpert.org/expert/38072 -https://www.oceanexpert.org/expert/31239 -https://www.oceanexpert.org/expert/22077 -https://www.oceanexpert.org/expert/26164 -https://www.oceanexpert.org/expert/26515 -https://www.oceanexpert.org/expert/25955 -https://www.oceanexpert.org/expert/45726 -https://www.oceanexpert.org/expert/30837 -https://www.oceanexpert.org/event/2780 -https://www.oceanexpert.org/expert/16502 -https://www.oceanexpert.org/expert/33519 -https://www.oceanexpert.org/expert/25824 -https://www.oceanexpert.org/institution/17959 -https://www.oceanexpert.org/institution/17204 -https://www.oceanexpert.org/institution/18598 -https://www.oceanexpert.org/institution/20791 -https://www.oceanexpert.org/expert/11957 -https://www.oceanexpert.org/expert/30991 -https://www.oceanexpert.org/expert/48688 -https://www.oceanexpert.org/expert/46300 -https://www.oceanexpert.org/expert/46892 -https://www.oceanexpert.org/institution/6505 -https://www.oceanexpert.org/expert/32251 -https://www.oceanexpert.org/expert/49038 -https://www.oceanexpert.org/event/2504 -https://www.oceanexpert.org/institution/17985 -https://www.oceanexpert.org/institution/21419 -https://www.oceanexpert.org/expert/42911 -https://www.oceanexpert.org/expert/24197 -https://www.oceanexpert.org/expert/42880 -https://www.oceanexpert.org/expert/44580 -https://www.oceanexpert.org/expert/3186 -https://www.oceanexpert.org/expert/48659 -https://www.oceanexpert.org/institution/18133 -https://www.oceanexpert.org/expert/41407 -https://www.oceanexpert.org/expert/19918 -https://www.oceanexpert.org/expert/43819 -https://www.oceanexpert.org/expert/15759 -https://www.oceanexpert.org/expert/47957 -https://www.oceanexpert.org/institution/19015 -https://www.oceanexpert.org/institution/9238 -https://www.oceanexpert.org/event/1407 -https://www.oceanexpert.org/expert/40707 -https://www.oceanexpert.org/institution/16851 -https://www.oceanexpert.org/institution/5461 -https://www.oceanexpert.org/institution/16372 -https://www.oceanexpert.org/institution/19186 -https://www.oceanexpert.org/event/703 -https://www.oceanexpert.org/expert/37224 -https://www.oceanexpert.org/expert/21101 -https://www.oceanexpert.org/institution/14356 -https://www.oceanexpert.org/expert/22796 -https://www.oceanexpert.org/expert/25607 -https://www.oceanexpert.org/expert/23422 -https://www.oceanexpert.org/expert/11857 -https://www.oceanexpert.org/expert/23120 -https://www.oceanexpert.org/expert/547 -https://www.oceanexpert.org/expert/25951 -https://www.oceanexpert.org/institution/5091 -https://www.oceanexpert.org/expert/42775 -https://www.oceanexpert.org/expert/42786 -https://www.oceanexpert.org/expert/11040 -https://www.oceanexpert.org/expert/36560 -https://www.oceanexpert.org/expert/47848 -https://www.oceanexpert.org/expert/18180 -https://www.oceanexpert.org/expert/38332 -https://www.oceanexpert.org/institution/22157 -https://www.oceanexpert.org/expert/44881 -https://www.oceanexpert.org/expert/23975 -https://www.oceanexpert.org/expert/21818 -https://www.oceanexpert.org/event/883 -https://www.oceanexpert.org/expert/46633 -https://www.oceanexpert.org/expert/18396 -https://www.oceanexpert.org/expert/40338 -https://www.oceanexpert.org/institution/20598 -https://www.oceanexpert.org/event/3186 -https://www.oceanexpert.org/institution/21739 -https://www.oceanexpert.org/expert/19561 -https://www.oceanexpert.org/expert/34524 -https://www.oceanexpert.org/expert/28399 -https://www.oceanexpert.org/expert/11761 -https://www.oceanexpert.org/institution/22065 -https://www.oceanexpert.org/institution/18735 -https://www.oceanexpert.org/expert/48764 -https://www.oceanexpert.org/expert/23820 -https://www.oceanexpert.org/expert/39284 -https://www.oceanexpert.org/expert/36843 -https://www.oceanexpert.org/expert/25602 -https://www.oceanexpert.org/expert/6913 -https://www.oceanexpert.org/institution/19785 -https://www.oceanexpert.org/institution/15406 -https://www.oceanexpert.org/expert/27011 -https://www.oceanexpert.org/event/873 -https://www.oceanexpert.org/expert/45170 -https://www.oceanexpert.org/expert/42898 -https://www.oceanexpert.org/event/2495 -https://www.oceanexpert.org/expert/20697 -https://www.oceanexpert.org/institution/13810 -https://www.oceanexpert.org/expert/24254 -https://www.oceanexpert.org/institution/17956 -https://www.oceanexpert.org/expert/16858 -https://www.oceanexpert.org/institution/7488 -https://www.oceanexpert.org/expert/45951 -https://www.oceanexpert.org/institution/17883 -https://www.oceanexpert.org/institution/10331 -https://www.oceanexpert.org/expert/21903 -https://www.oceanexpert.org/expert/19892 -https://www.oceanexpert.org/expert/36759 -https://www.oceanexpert.org/expert/11163 -https://www.oceanexpert.org/institution/12278 -https://www.oceanexpert.org/expert/24674 -https://www.oceanexpert.org/expert/23574 -https://www.oceanexpert.org/institution/17311 -https://www.oceanexpert.org/expert/21497 -https://www.oceanexpert.org/expert/40204 -https://www.oceanexpert.org/institution/20453 -https://www.oceanexpert.org/institution/12483 -https://www.oceanexpert.org/expert/37326 -https://www.oceanexpert.org/expert/3680 -https://www.oceanexpert.org/event/204 -https://www.oceanexpert.org/expert/33002 -https://www.oceanexpert.org/expert/17985 -https://www.oceanexpert.org/event/2514 -https://www.oceanexpert.org/institution/14292 -https://www.oceanexpert.org/expert/27108 -https://www.oceanexpert.org/institution/19142 -https://www.oceanexpert.org/institution/7287 -https://www.oceanexpert.org/institution/21071 -https://www.oceanexpert.org/expert/21711 -https://www.oceanexpert.org/expert/673 -https://www.oceanexpert.org/expert/27671 -https://www.oceanexpert.org/expert/26210 -https://www.oceanexpert.org/expert/44478 -https://www.oceanexpert.org/expert/37224 -https://www.oceanexpert.org/expert/8757 -https://www.oceanexpert.org/expert/3160 -https://www.oceanexpert.org/expert/26930 -https://www.oceanexpert.org/expert/44865 -https://www.oceanexpert.org/expert/33017 -https://www.oceanexpert.org/expert/33783 -https://www.oceanexpert.org/expert/4535 -https://www.oceanexpert.org/event/1039 -https://www.oceanexpert.org/expert/38287 -https://www.oceanexpert.org/expert/43833 -https://www.oceanexpert.org/expert/34491 -https://www.oceanexpert.org/institution/16927 -https://www.oceanexpert.org/expert/18191 -https://www.oceanexpert.org/expert/37107 -https://www.oceanexpert.org/expert/4765 -https://www.oceanexpert.org/expert/47064 -https://www.oceanexpert.org/expert/22904 -https://www.oceanexpert.org/expert/24035 -https://www.oceanexpert.org/expert/34380 -https://www.oceanexpert.org/expert/18860 -https://www.oceanexpert.org/expert/40643 -https://www.oceanexpert.org/expert/46055 -https://www.oceanexpert.org/event/496 -https://www.oceanexpert.org/expert/25865 -https://www.oceanexpert.org/expert/46032 -https://www.oceanexpert.org/expert/37554 -https://www.oceanexpert.org/event/1373 -https://www.oceanexpert.org/expert/22682 -https://www.oceanexpert.org/event/1711 -https://www.oceanexpert.org/expert/26075 -https://www.oceanexpert.org/expert/24158 -https://www.oceanexpert.org/expert/31568 -https://www.oceanexpert.org/event/1028 -https://www.oceanexpert.org/expert/20898 -https://www.oceanexpert.org/institution/21395 -https://www.oceanexpert.org/event/661 -https://www.oceanexpert.org/expert/35047 -https://www.oceanexpert.org/institution/19491 -https://www.oceanexpert.org/institution/9162 -https://www.oceanexpert.org/institution/22130 -https://www.oceanexpert.org/event/1049 -https://www.oceanexpert.org/expert/42571 -https://www.oceanexpert.org/expert/31956 -https://www.oceanexpert.org/expert/15930 -https://www.oceanexpert.org/expert/13594 -https://www.oceanexpert.org/expert/27980 -https://www.oceanexpert.org/institution/21769 -https://www.oceanexpert.org/expert/46044 -https://www.oceanexpert.org/expert/29317 -https://www.oceanexpert.org/institution/18022 -https://www.oceanexpert.org/institution/12048 -https://www.oceanexpert.org/event/299 -https://www.oceanexpert.org/expert/46100 -https://www.oceanexpert.org/institution/19460 -https://www.oceanexpert.org/institution/5153 -https://www.oceanexpert.org/expert/36175 -https://www.oceanexpert.org/institution/20066 -https://www.oceanexpert.org/expert/17092 -https://www.oceanexpert.org/expert/44678 -https://www.oceanexpert.org/expert/48438 -https://www.oceanexpert.org/institution/10957 -https://www.oceanexpert.org/institution/17811 -https://www.oceanexpert.org/expert/25117 -https://www.oceanexpert.org/institution/15720 -https://www.oceanexpert.org/expert/35214 -https://www.oceanexpert.org/institution/13001 -https://www.oceanexpert.org/expert/24271 -https://www.oceanexpert.org/institution/8296 -https://www.oceanexpert.org/expert/48033 -https://www.oceanexpert.org/expert/46800 -https://www.oceanexpert.org/expert/27723 -https://www.oceanexpert.org/institution/15240 -https://www.oceanexpert.org/expert/22012 -https://www.oceanexpert.org/expert/27261 -https://www.oceanexpert.org/expert/17244 -https://www.oceanexpert.org/expert/34233 -https://www.oceanexpert.org/institution/15952 -https://www.oceanexpert.org/expert/20441 -https://www.oceanexpert.org/expert/35374 -https://www.oceanexpert.org/expert/33441 -https://www.oceanexpert.org/event/2278 -https://www.oceanexpert.org/expert/16046 -https://www.oceanexpert.org/expert/36469 -https://www.oceanexpert.org/event/2787 -https://www.oceanexpert.org/expert/46576 -https://www.oceanexpert.org/expert/26726 -https://www.oceanexpert.org/expert/15390 -https://www.oceanexpert.org/expert/15999 -https://www.oceanexpert.org/expert/19461 -https://www.oceanexpert.org/expert/13 -https://www.oceanexpert.org/expert/34858 -https://www.oceanexpert.org/expert/8768 -https://www.oceanexpert.org/event/2704 -https://www.oceanexpert.org/event/551 -https://www.oceanexpert.org/expert/19026 -https://www.oceanexpert.org/institution/21961 -https://www.oceanexpert.org/institution/19539 -https://www.oceanexpert.org/expert/29885 -https://www.oceanexpert.org/expert/45070 -https://www.oceanexpert.org/expert/35493 -https://www.oceanexpert.org/institution/16031 -https://www.oceanexpert.org/expert/45670 -https://www.oceanexpert.org/institution/18899 -https://www.oceanexpert.org/institution/21386 -https://www.oceanexpert.org/expert/16756 -https://www.oceanexpert.org/institution/18009 -https://www.oceanexpert.org/expert/20056 -https://www.oceanexpert.org/expert/7651 -https://www.oceanexpert.org/expert/33307 -https://www.oceanexpert.org/institution/7759 -https://www.oceanexpert.org/institution/8292 -https://www.oceanexpert.org/institution/12559 -https://www.oceanexpert.org/expert/23263 -https://www.oceanexpert.org/expert/19895 -https://www.oceanexpert.org/expert/24987 -https://www.oceanexpert.org/institution/13484 -https://www.oceanexpert.org/event/443 -https://www.oceanexpert.org/expert/23930 -https://www.oceanexpert.org/institution/21124 -https://www.oceanexpert.org/expert/26251 -https://www.oceanexpert.org/event/235 -https://www.oceanexpert.org/expert/23563 -https://www.oceanexpert.org/institution/21120 -https://www.oceanexpert.org/expert/12929 -https://www.oceanexpert.org/institution/17457 -https://www.oceanexpert.org/institution/20112 -https://www.oceanexpert.org/expert/21666 -https://www.oceanexpert.org/expert/45291 -https://www.oceanexpert.org/expert/19956 -https://www.oceanexpert.org/expert/20327 -https://www.oceanexpert.org/expert/48525 -https://www.oceanexpert.org/institution/13602 -https://www.oceanexpert.org/expert/21505 -https://www.oceanexpert.org/expert/28009 -https://www.oceanexpert.org/institution/13209 -https://www.oceanexpert.org/expert/47126 -https://www.oceanexpert.org/expert/24915 -https://www.oceanexpert.org/expert/45880 -https://www.oceanexpert.org/event/1946 -https://www.oceanexpert.org/expert/34733 -https://www.oceanexpert.org/expert/19280 -https://www.oceanexpert.org/expert/10748 -https://www.oceanexpert.org/expert/45694 -https://www.oceanexpert.org/expert/45639 -https://www.oceanexpert.org/expert/18502 -https://www.oceanexpert.org/event/1906 -https://www.oceanexpert.org/institution/16338 -https://www.oceanexpert.org/expert/17148 -https://www.oceanexpert.org/expert/11157 -https://www.oceanexpert.org/expert/24874 -https://www.oceanexpert.org/expert/25943 -https://www.oceanexpert.org/expert/983 -https://www.oceanexpert.org/institution/8607 -https://www.oceanexpert.org/expert/11728 -https://www.oceanexpert.org/expert/36516 -https://www.oceanexpert.org/event/1732 -https://www.oceanexpert.org/expert/24503 -https://www.oceanexpert.org/event/3254 -https://www.oceanexpert.org/event/709 -https://www.oceanexpert.org/expert/27806 -https://www.oceanexpert.org/event/315 -https://www.oceanexpert.org/expert/20967 -https://www.oceanexpert.org/institution/14722 -https://www.oceanexpert.org/expert/33747 -https://www.oceanexpert.org/expert/46924 -https://www.oceanexpert.org/expert/46397 -https://www.oceanexpert.org/expert/32713 -https://www.oceanexpert.org/expert/48230 -https://www.oceanexpert.org/expert/20702 -https://www.oceanexpert.org/event/667 -https://www.oceanexpert.org/expert/43977 -https://www.oceanexpert.org/expert/22327 -https://www.oceanexpert.org/expert/36369 -https://www.oceanexpert.org/expert/26762 -https://www.oceanexpert.org/institution/11759 -https://www.oceanexpert.org/expert/30907 -https://www.oceanexpert.org/expert/34725 -https://www.oceanexpert.org/expert/46303 -https://www.oceanexpert.org/expert/28887 -https://www.oceanexpert.org/expert/47174 -https://www.oceanexpert.org/expert/42575 -https://www.oceanexpert.org/expert/40079 -https://www.oceanexpert.org/expert/34168 -https://www.oceanexpert.org/institution/22057 -https://www.oceanexpert.org/expert/47361 -https://www.oceanexpert.org/expert/20299 -https://www.oceanexpert.org/expert/37903 -https://www.oceanexpert.org/expert/25566 -https://www.oceanexpert.org/expert/48684 -https://www.oceanexpert.org/expert/25189 -https://www.oceanexpert.org/expert/36224 -https://www.oceanexpert.org/institution/20977 -https://www.oceanexpert.org/expert/18007 -https://www.oceanexpert.org/expert/40576 -https://www.oceanexpert.org/institution/7462 -https://www.oceanexpert.org/expert/39958 -https://www.oceanexpert.org/institution/15158 -https://www.oceanexpert.org/expert/36086 -https://www.oceanexpert.org/expert/31320 -https://www.oceanexpert.org/institution/21432 -https://www.oceanexpert.org/expert/38287 -https://www.oceanexpert.org/institution/22144 -https://www.oceanexpert.org/expert/34551 -https://www.oceanexpert.org/expert/32250 -https://www.oceanexpert.org/event/187 -https://www.oceanexpert.org/event/2275 -https://www.oceanexpert.org/event/1353 -https://www.oceanexpert.org/institution/5605 -https://www.oceanexpert.org/expert/29966 -https://www.oceanexpert.org/expert/47705 -https://www.oceanexpert.org/institution/18874 -https://www.oceanexpert.org/event/2055 -https://www.oceanexpert.org/expert/22508 -https://www.oceanexpert.org/expert/24873 -https://www.oceanexpert.org/institution/18075 -https://www.oceanexpert.org/expert/18782 -https://www.oceanexpert.org/expert/17056 -https://www.oceanexpert.org/expert/25687 -https://www.oceanexpert.org/expert/38123 -https://www.oceanexpert.org/event/405 -https://www.oceanexpert.org/institution/7078 -https://www.oceanexpert.org/institution/20904 -https://www.oceanexpert.org/expert/40068 -https://www.oceanexpert.org/institution/13096 -https://www.oceanexpert.org/expert/43750 -https://www.oceanexpert.org/event/1527 -https://www.oceanexpert.org/expert/46310 -https://www.oceanexpert.org/expert/14203 -https://www.oceanexpert.org/expert/36566 -https://www.oceanexpert.org/expert/38286 -https://www.oceanexpert.org/expert/27364 -https://www.oceanexpert.org/institution/20097 -https://www.oceanexpert.org/expert/1149 -https://www.oceanexpert.org/expert/23709 -https://www.oceanexpert.org/event/3055 -https://www.oceanexpert.org/expert/11749 -https://www.oceanexpert.org/expert/10223 -https://www.oceanexpert.org/expert/38465 -https://www.oceanexpert.org/expert/536 -https://www.oceanexpert.org/expert/28373 -https://www.oceanexpert.org/institution/21644 -https://www.oceanexpert.org/expert/48719 -https://www.oceanexpert.org/institution/14060 -https://www.oceanexpert.org/institution/18533 -https://www.oceanexpert.org/expert/26492 -https://www.oceanexpert.org/event/1985 -https://www.oceanexpert.org/institution/12260 -https://www.oceanexpert.org/expert/19460 -https://www.oceanexpert.org/expert/26634 -https://www.oceanexpert.org/expert/23814 -https://www.oceanexpert.org/expert/20516 -https://www.oceanexpert.org/expert/46473 -https://www.oceanexpert.org/expert/37735 -https://www.oceanexpert.org/institution/21445 -https://www.oceanexpert.org/expert/26479 -https://www.oceanexpert.org/event/2761 -https://www.oceanexpert.org/expert/31943 -https://www.oceanexpert.org/expert/43236 -https://www.oceanexpert.org/expert/29341 -https://www.oceanexpert.org/expert/16042 -https://www.oceanexpert.org/expert/25587 -https://www.oceanexpert.org/institution/12683 -https://www.oceanexpert.org/expert/24481 -https://www.oceanexpert.org/expert/35983 -https://www.oceanexpert.org/expert/11876 -https://www.oceanexpert.org/institution/12106 -https://www.oceanexpert.org/expert/48481 -https://www.oceanexpert.org/expert/33372 -https://www.oceanexpert.org/expert/19560 -https://www.oceanexpert.org/expert/33612 -https://www.oceanexpert.org/expert/21482 -https://www.oceanexpert.org/expert/23028 -https://www.oceanexpert.org/institution/21761 -https://www.oceanexpert.org/event/1820 -https://www.oceanexpert.org/expert/34266 -https://www.oceanexpert.org/expert/17494 -https://www.oceanexpert.org/expert/26571 -https://www.oceanexpert.org/event/1451 -https://www.oceanexpert.org/event/3259 -https://www.oceanexpert.org/institution/14496 -https://www.oceanexpert.org/expert/37542 -https://www.oceanexpert.org/institution/21820 -https://www.oceanexpert.org/expert/33748 -https://www.oceanexpert.org/expert/17377 -https://www.oceanexpert.org/expert/20402 -https://www.oceanexpert.org/expert/48027 -https://www.oceanexpert.org/institution/19536 -https://www.oceanexpert.org/expert/38654 -https://www.oceanexpert.org/expert/26059 -https://www.oceanexpert.org/expert/21751 -https://www.oceanexpert.org/expert/6329 -https://www.oceanexpert.org/expert/14244 -https://www.oceanexpert.org/expert/26820 -https://www.oceanexpert.org/expert/21289 -https://www.oceanexpert.org/institution/17280 -https://www.oceanexpert.org/event/2356 -https://www.oceanexpert.org/expert/46138 -https://www.oceanexpert.org/expert/36874 -https://www.oceanexpert.org/expert/45321 -https://www.oceanexpert.org/institution/13096 -https://www.oceanexpert.org/expert/48679 -https://www.oceanexpert.org/institution/19448 -https://www.oceanexpert.org/expert/47211 -https://www.oceanexpert.org/event/170 -https://www.oceanexpert.org/expert/20310 -https://www.oceanexpert.org/expert/42534 -https://www.oceanexpert.org/expert/23393 -https://www.oceanexpert.org/expert/26411 -https://www.oceanexpert.org/expert/30200 -https://www.oceanexpert.org/event/1044 -https://www.oceanexpert.org/expert/14877 -https://www.oceanexpert.org/institution/17291 -https://www.oceanexpert.org/expert/10828 -https://www.oceanexpert.org/expert/35337 -https://www.oceanexpert.org/expert/45467 -https://www.oceanexpert.org/expert/45048 -https://www.oceanexpert.org/expert/41683 -https://www.oceanexpert.org/expert/27186 -https://www.oceanexpert.org/expert/37451 -https://www.oceanexpert.org/expert/23089 -https://www.oceanexpert.org/expert/26621 -https://www.oceanexpert.org/expert/30861 -https://www.oceanexpert.org/expert/3206 -https://www.oceanexpert.org/event/2629 -https://www.oceanexpert.org/expert/30726 -https://www.oceanexpert.org/expert/3504 -https://www.oceanexpert.org/expert/23918 -https://www.oceanexpert.org/expert/25884 -https://www.oceanexpert.org/expert/19809 -https://www.oceanexpert.org/expert/35699 -https://www.oceanexpert.org/expert/33187 -https://www.oceanexpert.org/expert/20283 -https://www.oceanexpert.org/institution/21233 -https://www.oceanexpert.org/expert/27162 -https://www.oceanexpert.org/institution/7825 -https://www.oceanexpert.org/expert/26531 -https://www.oceanexpert.org/institution/14093 -https://www.oceanexpert.org/expert/41100 -https://www.oceanexpert.org/expert/17236 -https://www.oceanexpert.org/institution/21210 -https://www.oceanexpert.org/expert/46906 -https://www.oceanexpert.org/institution/19418 -https://www.oceanexpert.org/institution/18290 -https://www.oceanexpert.org/expert/46492 -https://www.oceanexpert.org/institution/12660 -https://www.oceanexpert.org/expert/22976 -https://www.oceanexpert.org/expert/35529 -https://www.oceanexpert.org/expert/22060 -https://www.oceanexpert.org/event/2724 -https://www.oceanexpert.org/expert/3546 -https://www.oceanexpert.org/expert/19409 -https://www.oceanexpert.org/institution/18918 -https://www.oceanexpert.org/expert/34433 -https://www.oceanexpert.org/event/665 -https://www.oceanexpert.org/expert/47779 -https://www.oceanexpert.org/institution/18761 -https://www.oceanexpert.org/institution/15853 -https://www.oceanexpert.org/expert/44734 -https://www.oceanexpert.org/institution/5562 -https://www.oceanexpert.org/expert/35634 -https://www.oceanexpert.org/expert/31320 -https://www.oceanexpert.org/expert/42917 -https://www.oceanexpert.org/institution/16878 -https://www.oceanexpert.org/institution/17803 -https://www.oceanexpert.org/event/2235 -https://www.oceanexpert.org/expert/32863 -https://www.oceanexpert.org/expert/31580 -https://www.oceanexpert.org/expert/38920 -https://www.oceanexpert.org/expert/36762 -https://www.oceanexpert.org/expert/24688 -https://www.oceanexpert.org/expert/31935 -https://www.oceanexpert.org/expert/24591 -https://www.oceanexpert.org/institution/17615 -https://www.oceanexpert.org/event/568 -https://www.oceanexpert.org/expert/26032 -https://www.oceanexpert.org/expert/30939 -https://www.oceanexpert.org/expert/21909 -https://www.oceanexpert.org/expert/32174 -https://www.oceanexpert.org/expert/33630 -https://www.oceanexpert.org/expert/47874 -https://www.oceanexpert.org/event/1017 -https://www.oceanexpert.org/institution/17806 -https://www.oceanexpert.org/expert/21253 -https://www.oceanexpert.org/expert/16974 -https://www.oceanexpert.org/expert/7192 -https://www.oceanexpert.org/event/2273 -https://www.oceanexpert.org/expert/23439 -https://www.oceanexpert.org/expert/23698 -https://www.oceanexpert.org/event/2971 -https://www.oceanexpert.org/expert/4855 -https://www.oceanexpert.org/expert/35258 -https://www.oceanexpert.org/expert/36719 -https://www.oceanexpert.org/expert/37491 -https://www.oceanexpert.org/expert/23657 -https://www.oceanexpert.org/institution/13922 -https://www.oceanexpert.org/expert/12010 -https://www.oceanexpert.org/event/2223 -https://www.oceanexpert.org/expert/38154 -https://www.oceanexpert.org/expert/25850 -https://www.oceanexpert.org/institution/20883 -https://www.oceanexpert.org/expert/32364 -https://www.oceanexpert.org/expert/16297 -https://www.oceanexpert.org/expert/21537 -https://www.oceanexpert.org/institution/15080 -https://www.oceanexpert.org/expert/31397 -https://www.oceanexpert.org/institution/18270 -https://www.oceanexpert.org/expert/36683 -https://www.oceanexpert.org/institution/6195 -https://www.oceanexpert.org/expert/26078 -https://www.oceanexpert.org/expert/47102 -https://www.oceanexpert.org/event/1630 -https://www.oceanexpert.org/expert/23613 -https://www.oceanexpert.org/expert/38494 -https://www.oceanexpert.org/event/701 -https://www.oceanexpert.org/expert/904 -https://www.oceanexpert.org/institution/11050 -https://www.oceanexpert.org/expert/7109 -https://www.oceanexpert.org/expert/40630 -https://www.oceanexpert.org/expert/24264 -https://www.oceanexpert.org/expert/30819 -https://www.oceanexpert.org/expert/22942 -https://www.oceanexpert.org/expert/47692 -https://www.oceanexpert.org/expert/26808 -https://www.oceanexpert.org/event/2291 -https://www.oceanexpert.org/expert/22632 -https://www.oceanexpert.org/expert/3865 -https://www.oceanexpert.org/expert/48883 -https://www.oceanexpert.org/institution/20464 -https://www.oceanexpert.org/expert/37106 -https://www.oceanexpert.org/institution/7692 -https://www.oceanexpert.org/expert/11479 -https://www.oceanexpert.org/expert/19142 -https://www.oceanexpert.org/expert/16129 -https://www.oceanexpert.org/expert/25354 -https://www.oceanexpert.org/expert/44388 -https://www.oceanexpert.org/expert/43379 -https://www.oceanexpert.org/expert/48258 -https://www.oceanexpert.org/expert/19706 -https://www.oceanexpert.org/expert/20774 -https://www.oceanexpert.org/expert/29582 -https://www.oceanexpert.org/expert/39465 -https://www.oceanexpert.org/expert/29400 -https://www.oceanexpert.org/institution/19544 -https://www.oceanexpert.org/institution/20374 -https://www.oceanexpert.org/expert/35559 -https://www.oceanexpert.org/event/232 -https://www.oceanexpert.org/expert/15278 -https://www.oceanexpert.org/institution/14256 -https://www.oceanexpert.org/expert/17591 -https://www.oceanexpert.org/event/1561 -https://www.oceanexpert.org/expert/30045 -https://www.oceanexpert.org/institution/10711 -https://www.oceanexpert.org/expert/11638 -https://www.oceanexpert.org/institution/21777 -https://www.oceanexpert.org/expert/35057 -https://www.oceanexpert.org/expert/43152 -https://www.oceanexpert.org/expert/28032 -https://www.oceanexpert.org/institution/14379 -https://www.oceanexpert.org/institution/18044 -https://www.oceanexpert.org/institution/19275 -https://www.oceanexpert.org/expert/19007 -https://www.oceanexpert.org/institution/22023 -https://www.oceanexpert.org/expert/16375 -https://www.oceanexpert.org/expert/6801 -https://www.oceanexpert.org/institution/10097 -https://www.oceanexpert.org/expert/46694 -https://www.oceanexpert.org/expert/25486 -https://www.oceanexpert.org/expert/46003 -https://www.oceanexpert.org/event/879 -https://www.oceanexpert.org/expert/17594 -https://www.oceanexpert.org/institution/19172 -https://www.oceanexpert.org/expert/47998 -https://www.oceanexpert.org/event/606 -https://www.oceanexpert.org/institution/19882 -https://www.oceanexpert.org/expert/39618 -https://www.oceanexpert.org/expert/21903 -https://www.oceanexpert.org/expert/30959 -https://www.oceanexpert.org/expert/42502 -https://www.oceanexpert.org/institution/18883 -https://www.oceanexpert.org/event/1133 -https://www.oceanexpert.org/institution/13031 -https://www.oceanexpert.org/expert/37032 -https://www.oceanexpert.org/institution/15128 -https://www.oceanexpert.org/expert/18684 -https://www.oceanexpert.org/expert/42581 -https://www.oceanexpert.org/expert/39158 -https://www.oceanexpert.org/expert/20613 -https://www.oceanexpert.org/expert/12943 -https://www.oceanexpert.org/expert/36831 -https://www.oceanexpert.org/expert/17220 -https://www.oceanexpert.org/expert/36196 -https://www.oceanexpert.org/institution/20945 -https://www.oceanexpert.org/institution/7983 -https://www.oceanexpert.org/expert/44340 -https://www.oceanexpert.org/expert/24939 -https://www.oceanexpert.org/institution/17936 -https://www.oceanexpert.org/expert/24810 -https://www.oceanexpert.org/expert/28414 -https://www.oceanexpert.org/institution/6238 -https://www.oceanexpert.org/expert/44315 -https://www.oceanexpert.org/expert/19295 -https://www.oceanexpert.org/expert/44357 -https://www.oceanexpert.org/event/2085 -https://www.oceanexpert.org/expert/7109 -https://www.oceanexpert.org/expert/20695 -https://www.oceanexpert.org/expert/7147 -https://www.oceanexpert.org/institution/18495 -https://www.oceanexpert.org/expert/35438 -https://www.oceanexpert.org/event/1720 -https://www.oceanexpert.org/expert/42581 -https://www.oceanexpert.org/expert/44778 -https://www.oceanexpert.org/expert/20369 -https://www.oceanexpert.org/expert/48159 -https://www.oceanexpert.org/institution/18749 -https://www.oceanexpert.org/expert/12012 -https://www.oceanexpert.org/expert/19402 -https://www.oceanexpert.org/institution/11376 -https://www.oceanexpert.org/expert/24165 -https://www.oceanexpert.org/expert/28492 -https://www.oceanexpert.org/event/1307 -https://www.oceanexpert.org/expert/34531 -https://www.oceanexpert.org/expert/29710 -https://www.oceanexpert.org/expert/8008 -https://www.oceanexpert.org/institution/20258 -https://www.oceanexpert.org/institution/20495 -https://www.oceanexpert.org/institution/15064 -https://www.oceanexpert.org/expert/22439 -https://www.oceanexpert.org/institution/18650 -https://www.oceanexpert.org/expert/19765 -https://www.oceanexpert.org/institution/14495 -https://www.oceanexpert.org/institution/10362 -https://www.oceanexpert.org/expert/21478 -https://www.oceanexpert.org/institution/9813 -https://www.oceanexpert.org/expert/36705 -https://www.oceanexpert.org/expert/24655 -https://www.oceanexpert.org/expert/8062 -https://www.oceanexpert.org/institution/5163 -https://www.oceanexpert.org/institution/18693 -https://www.oceanexpert.org/expert/33744 -https://www.oceanexpert.org/expert/27702 -https://www.oceanexpert.org/expert/45169 -https://www.oceanexpert.org/event/1888 -https://www.oceanexpert.org/expert/30771 -https://www.oceanexpert.org/expert/23391 -https://www.oceanexpert.org/expert/24959 -https://www.oceanexpert.org/expert/26735 -https://www.oceanexpert.org/expert/20071 -https://www.oceanexpert.org/expert/49071 -https://www.oceanexpert.org/expert/25287 -https://www.oceanexpert.org/expert/18810 -https://www.oceanexpert.org/expert/21053 -https://www.oceanexpert.org/expert/25400 -https://www.oceanexpert.org/expert/32509 -https://www.oceanexpert.org/expert/14672 -https://www.oceanexpert.org/institution/17669 -https://www.oceanexpert.org/institution/11994 -https://www.oceanexpert.org/event/716 -https://www.oceanexpert.org/institution/18989 -https://www.oceanexpert.org/institution/9737 -https://www.oceanexpert.org/expert/36802 -https://www.oceanexpert.org/expert/10908 -https://www.oceanexpert.org/expert/35755 -https://www.oceanexpert.org/expert/18322 -https://www.oceanexpert.org/expert/25513 -https://www.oceanexpert.org/institution/19430 -https://www.oceanexpert.org/expert/29527 -https://www.oceanexpert.org/expert/9574 -https://www.oceanexpert.org/expert/11572 -https://www.oceanexpert.org/expert/31716 -https://www.oceanexpert.org/expert/23999 -https://www.oceanexpert.org/institution/11310 -https://www.oceanexpert.org/institution/11242 -https://www.oceanexpert.org/expert/16496 -https://www.oceanexpert.org/expert/14722 -https://www.oceanexpert.org/expert/27135 -https://www.oceanexpert.org/event/237 -https://www.oceanexpert.org/expert/34133 -https://www.oceanexpert.org/expert/26773 -https://www.oceanexpert.org/expert/30179 -https://www.oceanexpert.org/expert/44626 -https://www.oceanexpert.org/expert/44733 -https://www.oceanexpert.org/expert/11506 -https://www.oceanexpert.org/expert/43992 -https://www.oceanexpert.org/expert/40655 -https://www.oceanexpert.org/expert/47904 -https://www.oceanexpert.org/institution/19366 -https://www.oceanexpert.org/expert/29801 -https://www.oceanexpert.org/institution/12036 -https://www.oceanexpert.org/event/1946 -https://www.oceanexpert.org/institution/22139 -https://www.oceanexpert.org/institution/19095 -https://www.oceanexpert.org/expert/37661 -https://www.oceanexpert.org/institution/11293 -https://www.oceanexpert.org/expert/7193 -https://www.oceanexpert.org/institution/11012 -https://www.oceanexpert.org/expert/18578 -https://www.oceanexpert.org/expert/26571 -https://www.oceanexpert.org/event/3102 -https://www.oceanexpert.org/institution/15282 -https://www.oceanexpert.org/expert/37556 -https://www.oceanexpert.org/institution/20749 -https://www.oceanexpert.org/expert/48307 -https://www.oceanexpert.org/expert/24409 -https://www.oceanexpert.org/event/821 -https://www.oceanexpert.org/expert/41652 -https://www.oceanexpert.org/institution/10454 -https://www.oceanexpert.org/expert/34337 -https://www.oceanexpert.org/expert/35923 -https://www.oceanexpert.org/expert/32766 -https://www.oceanexpert.org/expert/11542 -https://www.oceanexpert.org/institution/19980 -https://www.oceanexpert.org/institution/12722 -https://www.oceanexpert.org/expert/13093 -https://www.oceanexpert.org/expert/47773 -https://www.oceanexpert.org/expert/43836 -https://www.oceanexpert.org/event/2916 -https://www.oceanexpert.org/expert/18535 -https://www.oceanexpert.org/expert/36814 -https://www.oceanexpert.org/expert/42671 -https://www.oceanexpert.org/expert/17604 -https://www.oceanexpert.org/expert/19591 -https://www.oceanexpert.org/event/3257 -https://www.oceanexpert.org/expert/46571 -https://www.oceanexpert.org/expert/40573 -https://www.oceanexpert.org/expert/31279 -https://www.oceanexpert.org/institution/9131 -https://www.oceanexpert.org/event/1458 -https://www.oceanexpert.org/expert/15387 -https://www.oceanexpert.org/expert/15402 -https://www.oceanexpert.org/expert/20051 -https://www.oceanexpert.org/expert/19916 -https://www.oceanexpert.org/expert/46862 -https://www.oceanexpert.org/expert/33452 -https://www.oceanexpert.org/expert/44016 -https://www.oceanexpert.org/institution/9135 -https://www.oceanexpert.org/expert/37323 -https://www.oceanexpert.org/institution/10784 -https://www.oceanexpert.org/expert/27029 -https://www.oceanexpert.org/expert/17902 -https://www.oceanexpert.org/institution/13845 -https://www.oceanexpert.org/institution/21922 -https://www.oceanexpert.org/expert/34375 -https://www.oceanexpert.org/institution/10280 -https://www.oceanexpert.org/expert/31980 -https://www.oceanexpert.org/expert/12548 -https://www.oceanexpert.org/institution/21452 -https://www.oceanexpert.org/institution/10731 -https://www.oceanexpert.org/institution/21424 -https://www.oceanexpert.org/expert/30938 -https://www.oceanexpert.org/institution/5049 -https://www.oceanexpert.org/expert/30771 -https://www.oceanexpert.org/institution/14037 -https://www.oceanexpert.org/event/2636 -https://www.oceanexpert.org/expert/12729 -https://www.oceanexpert.org/expert/39341 -https://www.oceanexpert.org/expert/20313 -https://www.oceanexpert.org/expert/35497 -https://www.oceanexpert.org/expert/48930 -https://www.oceanexpert.org/expert/19957 -https://www.oceanexpert.org/expert/34421 -https://www.oceanexpert.org/institution/21090 -https://www.oceanexpert.org/expert/20664 -https://www.oceanexpert.org/expert/47089 -https://www.oceanexpert.org/expert/13515 -https://www.oceanexpert.org/expert/10325 -https://www.oceanexpert.org/institution/12061 -https://www.oceanexpert.org/expert/25054 -https://www.oceanexpert.org/institution/5649 -https://www.oceanexpert.org/expert/22673 -https://www.oceanexpert.org/expert/47363 -https://www.oceanexpert.org/expert/35762 -https://www.oceanexpert.org/expert/24969 -https://www.oceanexpert.org/institution/11471 -https://www.oceanexpert.org/expert/11544 -https://www.oceanexpert.org/institution/15222 -https://www.oceanexpert.org/expert/37574 -https://www.oceanexpert.org/expert/16353 -https://www.oceanexpert.org/expert/26155 -https://www.oceanexpert.org/expert/24280 -https://www.oceanexpert.org/institution/17567 -https://www.oceanexpert.org/expert/25017 -https://www.oceanexpert.org/expert/36747 -https://www.oceanexpert.org/expert/23604 -https://www.oceanexpert.org/expert/12884 -https://www.oceanexpert.org/expert/47246 -https://www.oceanexpert.org/expert/20893 -https://www.oceanexpert.org/expert/48243 -https://www.oceanexpert.org/institution/21615 -https://www.oceanexpert.org/expert/34660 -https://www.oceanexpert.org/expert/27142 -https://www.oceanexpert.org/institution/17195 -https://www.oceanexpert.org/institution/14055 -https://www.oceanexpert.org/expert/36428 -https://www.oceanexpert.org/expert/27209 -https://www.oceanexpert.org/expert/26280 -https://www.oceanexpert.org/institution/19762 -https://www.oceanexpert.org/event/25 -https://www.oceanexpert.org/expert/11494 -https://www.oceanexpert.org/institution/20281 -https://www.oceanexpert.org/institution/16003 -https://www.oceanexpert.org/expert/34087 -https://www.oceanexpert.org/institution/21930 -https://www.oceanexpert.org/expert/37476 -https://www.oceanexpert.org/expert/8825 -https://www.oceanexpert.org/institution/18020 -https://www.oceanexpert.org/expert/47575 -https://www.oceanexpert.org/expert/24852 -https://www.oceanexpert.org/institution/18194 -https://www.oceanexpert.org/expert/23429 -https://www.oceanexpert.org/institution/16395 -https://www.oceanexpert.org/expert/43311 -https://www.oceanexpert.org/expert/575 -https://www.oceanexpert.org/expert/37013 -https://www.oceanexpert.org/expert/44115 -https://www.oceanexpert.org/event/1711 -https://www.oceanexpert.org/expert/16142 -https://www.oceanexpert.org/expert/45880 -https://www.oceanexpert.org/expert/31738 -https://www.oceanexpert.org/expert/13500 -https://www.oceanexpert.org/expert/27081 -https://www.oceanexpert.org/event/2110 -https://www.oceanexpert.org/expert/30579 -https://www.oceanexpert.org/expert/24129 -https://www.oceanexpert.org/expert/26428 -https://www.oceanexpert.org/institution/22061 -https://www.oceanexpert.org/expert/19528 -https://www.oceanexpert.org/institution/16016 -https://www.oceanexpert.org/event/1153 -https://www.oceanexpert.org/expert/36716 -https://www.oceanexpert.org/institution/16403 -https://www.oceanexpert.org/event/3264 -https://www.oceanexpert.org/expert/18966 -https://www.oceanexpert.org/event/2732 -https://www.oceanexpert.org/expert/39225 -https://www.oceanexpert.org/expert/22784 -https://www.oceanexpert.org/event/1138 -https://www.oceanexpert.org/expert/19936 -https://www.oceanexpert.org/event/696 -https://www.oceanexpert.org/expert/9477 -https://www.oceanexpert.org/expert/24413 -https://www.oceanexpert.org/institution/19034 -https://www.oceanexpert.org/institution/19161 -https://www.oceanexpert.org/expert/45660 -https://www.oceanexpert.org/event/1673 -https://www.oceanexpert.org/expert/25554 -https://www.oceanexpert.org/expert/19856 -https://www.oceanexpert.org/expert/1512 -https://www.oceanexpert.org/institution/6077 -https://www.oceanexpert.org/expert/23589 -https://www.oceanexpert.org/expert/19985 -https://www.oceanexpert.org/expert/42631 -https://www.oceanexpert.org/expert/26632 -https://www.oceanexpert.org/expert/23414 -https://www.oceanexpert.org/expert/44354 -https://www.oceanexpert.org/expert/3677 -https://www.oceanexpert.org/institution/16788 -https://www.oceanexpert.org/expert/16600 -https://www.oceanexpert.org/expert/27526 -https://www.oceanexpert.org/expert/45597 -https://www.oceanexpert.org/expert/19435 -https://www.oceanexpert.org/institution/18164 -https://www.oceanexpert.org/institution/18677 -https://www.oceanexpert.org/expert/19944 -https://www.oceanexpert.org/expert/29368 -https://www.oceanexpert.org/expert/38325 -https://www.oceanexpert.org/expert/36586 -https://www.oceanexpert.org/expert/21553 -https://www.oceanexpert.org/event/1809 -https://www.oceanexpert.org/expert/36356 -https://www.oceanexpert.org/expert/20024 -https://www.oceanexpert.org/institution/14085 -https://www.oceanexpert.org/expert/19654 -https://www.oceanexpert.org/expert/45447 -https://www.oceanexpert.org/expert/18899 -https://www.oceanexpert.org/institution/13367 -https://www.oceanexpert.org/expert/29431 -https://www.oceanexpert.org/expert/23952 -https://www.oceanexpert.org/institution/10285 -https://www.oceanexpert.org/expert/24304 -https://www.oceanexpert.org/institution/14932 -https://www.oceanexpert.org/expert/42649 -https://www.oceanexpert.org/expert/24706 -https://www.oceanexpert.org/institution/13707 -https://www.oceanexpert.org/institution/10850 -https://www.oceanexpert.org/expert/6918 -https://www.oceanexpert.org/event/2011 -https://www.oceanexpert.org/event/3250 -https://www.oceanexpert.org/event/245 -https://www.oceanexpert.org/expert/12332 -https://www.oceanexpert.org/expert/26063 -https://www.oceanexpert.org/expert/43788 -https://www.oceanexpert.org/expert/26132 -https://www.oceanexpert.org/expert/40070 -https://www.oceanexpert.org/expert/34906 -https://www.oceanexpert.org/expert/47320 -https://www.oceanexpert.org/expert/26426 -https://www.oceanexpert.org/expert/20137 -https://www.oceanexpert.org/expert/22375 -https://www.oceanexpert.org/expert/8451 -https://www.oceanexpert.org/expert/1831 -https://www.oceanexpert.org/institution/18926 -https://www.oceanexpert.org/event/610 -https://www.oceanexpert.org/expert/32879 -https://www.oceanexpert.org/expert/13297 -https://www.oceanexpert.org/expert/44407 -https://www.oceanexpert.org/expert/45650 -https://www.oceanexpert.org/institution/8607 -https://www.oceanexpert.org/expert/25488 -https://www.oceanexpert.org/expert/37605 -https://www.oceanexpert.org/expert/27560 -https://www.oceanexpert.org/expert/38193 -https://www.oceanexpert.org/institution/19133 -https://www.oceanexpert.org/expert/267 -https://www.oceanexpert.org/expert/46937 -https://www.oceanexpert.org/expert/43194 -https://www.oceanexpert.org/expert/40577 -https://www.oceanexpert.org/expert/26054 -https://www.oceanexpert.org/event/243 -https://www.oceanexpert.org/event/1123 -https://www.oceanexpert.org/event/2685 -https://www.oceanexpert.org/expert/47072 -https://www.oceanexpert.org/institution/21711 -https://www.oceanexpert.org/expert/35542 -https://www.oceanexpert.org/event/1499 -https://www.oceanexpert.org/expert/16055 -https://www.oceanexpert.org/expert/26355 -https://www.oceanexpert.org/expert/37486 -https://www.oceanexpert.org/expert/34969 -https://www.oceanexpert.org/event/1441 -https://www.oceanexpert.org/expert/46957 -https://www.oceanexpert.org/expert/19184 -https://www.oceanexpert.org/institution/11698 -https://www.oceanexpert.org/expert/22558 -https://www.oceanexpert.org/expert/4517 -https://www.oceanexpert.org/institution/17898 -https://www.oceanexpert.org/expert/1328 -https://www.oceanexpert.org/expert/19760 -https://www.oceanexpert.org/expert/42069 -https://www.oceanexpert.org/expert/20836 -https://www.oceanexpert.org/expert/25552 -https://www.oceanexpert.org/expert/26177 -https://www.oceanexpert.org/expert/35650 -https://www.oceanexpert.org/expert/17016 -https://www.oceanexpert.org/event/1461 -https://www.oceanexpert.org/expert/46308 -https://www.oceanexpert.org/expert/28843 -https://www.oceanexpert.org/institution/18214 -https://www.oceanexpert.org/expert/39478 -https://www.oceanexpert.org/expert/27836 -https://www.oceanexpert.org/expert/11873 -https://www.oceanexpert.org/institution/7002 -https://www.oceanexpert.org/expert/24880 -https://www.oceanexpert.org/expert/43955 -https://www.oceanexpert.org/expert/20896 -https://www.oceanexpert.org/expert/32605 -https://www.oceanexpert.org/expert/18533 -https://www.oceanexpert.org/expert/16776 -https://www.oceanexpert.org/expert/49026 -https://www.oceanexpert.org/expert/34378 -https://www.oceanexpert.org/expert/21735 -https://www.oceanexpert.org/expert/11193 -https://www.oceanexpert.org/expert/24502 -https://www.oceanexpert.org/institution/20912 -https://www.oceanexpert.org/expert/31319 -https://www.oceanexpert.org/expert/36944 -https://www.oceanexpert.org/expert/32101 -https://www.oceanexpert.org/expert/31677 -https://www.oceanexpert.org/event/1748 -https://www.oceanexpert.org/expert/43887 -https://www.oceanexpert.org/institution/12721 -https://www.oceanexpert.org/expert/43809 -https://www.oceanexpert.org/expert/44486 -https://www.oceanexpert.org/expert/36264 -https://www.oceanexpert.org/expert/10706 -https://www.oceanexpert.org/expert/23218 -https://www.oceanexpert.org/expert/6624 -https://www.oceanexpert.org/expert/42146 -https://www.oceanexpert.org/institution/22015 -https://www.oceanexpert.org/expert/48864 -https://www.oceanexpert.org/event/1857 -https://www.oceanexpert.org/institution/10312 -https://www.oceanexpert.org/expert/22507 -https://www.oceanexpert.org/institution/19668 -https://www.oceanexpert.org/event/1775 -https://www.oceanexpert.org/expert/25176 -https://www.oceanexpert.org/event/2740 -https://www.oceanexpert.org/expert/26497 -https://www.oceanexpert.org/expert/18877 -https://www.oceanexpert.org/expert/41970 -https://www.oceanexpert.org/expert/46933 -https://www.oceanexpert.org/event/299 -https://www.oceanexpert.org/expert/35583 -https://www.oceanexpert.org/expert/37556 -https://www.oceanexpert.org/expert/14959 -https://www.oceanexpert.org/expert/12551 -https://www.oceanexpert.org/expert/14858 -https://www.oceanexpert.org/expert/19404 -https://www.oceanexpert.org/expert/22576 -https://www.oceanexpert.org/expert/39860 -https://www.oceanexpert.org/expert/32279 -https://www.oceanexpert.org/expert/23117 -https://www.oceanexpert.org/expert/5534 -https://www.oceanexpert.org/expert/34455 -https://www.oceanexpert.org/institution/20299 -https://www.oceanexpert.org/expert/20114 -https://www.oceanexpert.org/expert/7425 -https://www.oceanexpert.org/expert/49017 -https://www.oceanexpert.org/expert/37712 -https://www.oceanexpert.org/institution/20946 -https://www.oceanexpert.org/institution/10908 -https://www.oceanexpert.org/expert/2078 -https://www.oceanexpert.org/expert/25363 -https://www.oceanexpert.org/expert/24489 -https://www.oceanexpert.org/institution/12380 -https://www.oceanexpert.org/expert/36897 -https://www.oceanexpert.org/expert/18861 -https://www.oceanexpert.org/expert/30128 -https://www.oceanexpert.org/expert/19500 -https://www.oceanexpert.org/institution/10428 -https://www.oceanexpert.org/expert/23729 -https://www.oceanexpert.org/institution/16280 -https://www.oceanexpert.org/expert/43871 -https://www.oceanexpert.org/institution/11368 -https://www.oceanexpert.org/expert/21002 -https://www.oceanexpert.org/expert/38116 -https://www.oceanexpert.org/expert/29896 -https://www.oceanexpert.org/institution/17881 -https://www.oceanexpert.org/expert/12215 -https://www.oceanexpert.org/institution/10507 -https://www.oceanexpert.org/expert/44746 -https://www.oceanexpert.org/expert/533 -https://www.oceanexpert.org/expert/13686 -https://www.oceanexpert.org/expert/46301 -https://www.oceanexpert.org/expert/34826 -https://www.oceanexpert.org/expert/10904 -https://www.oceanexpert.org/event/463 -https://www.oceanexpert.org/institution/17118 -https://www.oceanexpert.org/expert/27058 -https://www.oceanexpert.org/expert/35755 -https://www.oceanexpert.org/expert/4309 -https://www.oceanexpert.org/event/2294 -https://www.oceanexpert.org/expert/18869 -https://www.oceanexpert.org/expert/46822 -https://www.oceanexpert.org/event/3262 -https://www.oceanexpert.org/expert/29035 -https://www.oceanexpert.org/institution/19435 -https://www.oceanexpert.org/institution/13707 -https://www.oceanexpert.org/institution/6685 -https://www.oceanexpert.org/expert/20699 -https://www.oceanexpert.org/expert/26805 -https://www.oceanexpert.org/expert/37350 -https://www.oceanexpert.org/expert/44333 -https://www.oceanexpert.org/expert/7154 -https://www.oceanexpert.org/event/2318 -https://www.oceanexpert.org/expert/31201 -https://www.oceanexpert.org/institution/10324 -https://www.oceanexpert.org/expert/14323 -https://www.oceanexpert.org/expert/36811 -https://www.oceanexpert.org/expert/28139 -https://www.oceanexpert.org/expert/48485 -https://www.oceanexpert.org/institution/20519 -https://www.oceanexpert.org/expert/22588 -https://www.oceanexpert.org/expert/37553 -https://www.oceanexpert.org/expert/24739 -https://www.oceanexpert.org/institution/20451 -https://www.oceanexpert.org/expert/46841 -https://www.oceanexpert.org/institution/21708 -https://www.oceanexpert.org/event/1147 -https://www.oceanexpert.org/expert/34558 -https://www.oceanexpert.org/institution/21716 -https://www.oceanexpert.org/expert/48161 -https://www.oceanexpert.org/expert/36079 -https://www.oceanexpert.org/institution/11187 -https://www.oceanexpert.org/event/2627 -https://www.oceanexpert.org/event/2617 -https://www.oceanexpert.org/expert/45975 -https://www.oceanexpert.org/expert/7790 -https://www.oceanexpert.org/expert/22740 -https://www.oceanexpert.org/expert/38752 -https://www.oceanexpert.org/expert/18231 -https://www.oceanexpert.org/expert/43602 -https://www.oceanexpert.org/event/3176 -https://www.oceanexpert.org/expert/29397 -https://www.oceanexpert.org/expert/47964 -https://www.oceanexpert.org/expert/27595 -https://www.oceanexpert.org/expert/40074 -https://www.oceanexpert.org/expert/37123 -https://www.oceanexpert.org/institution/20622 -https://www.oceanexpert.org/expert/39395 -https://www.oceanexpert.org/expert/45170 -https://www.oceanexpert.org/institution/22004 -https://www.oceanexpert.org/event/1410 -https://www.oceanexpert.org/event/3021 -https://www.oceanexpert.org/expert/47536 -https://www.oceanexpert.org/institution/8657 -https://www.oceanexpert.org/expert/18842 -https://www.oceanexpert.org/expert/36475 -https://www.oceanexpert.org/expert/34846 -https://www.oceanexpert.org/expert/24568 -https://www.oceanexpert.org/expert/8807 -https://www.oceanexpert.org/expert/17202 -https://www.oceanexpert.org/event/245 -https://www.oceanexpert.org/expert/25655 -https://www.oceanexpert.org/expert/18196 -https://www.oceanexpert.org/expert/33434 -https://www.oceanexpert.org/expert/33112 -https://www.oceanexpert.org/expert/20560 -https://www.oceanexpert.org/expert/23892 -https://www.oceanexpert.org/institution/19762 -https://www.oceanexpert.org/expert/2201 -https://www.oceanexpert.org/expert/1567 -https://www.oceanexpert.org/expert/25486 -https://www.oceanexpert.org/expert/30188 -https://www.oceanexpert.org/expert/31194 -https://www.oceanexpert.org/expert/46786 -https://www.oceanexpert.org/expert/21648 -https://www.oceanexpert.org/expert/46100 -https://www.oceanexpert.org/expert/14722 -https://www.oceanexpert.org/institution/6839 -https://www.oceanexpert.org/institution/13963 -https://www.oceanexpert.org/institution/17416 -https://www.oceanexpert.org/expert/23711 -https://www.oceanexpert.org/expert/46449 -https://www.oceanexpert.org/expert/37523 -https://www.oceanexpert.org/expert/35128 -https://www.oceanexpert.org/expert/11444 -https://www.oceanexpert.org/institution/19288 -https://www.oceanexpert.org/institution/18468 -https://www.oceanexpert.org/expert/41980 -https://www.oceanexpert.org/event/530 -https://www.oceanexpert.org/expert/2627 -https://www.oceanexpert.org/expert/44153 -https://www.oceanexpert.org/expert/34187 -https://www.oceanexpert.org/expert/36705 -https://www.oceanexpert.org/institution/7197 -https://www.oceanexpert.org/expert/6913 -https://www.oceanexpert.org/event/2906 -https://www.oceanexpert.org/institution/12776 -https://www.oceanexpert.org/expert/35655 -https://www.oceanexpert.org/expert/19094 -https://www.oceanexpert.org/expert/22545 -https://www.oceanexpert.org/expert/47749 -https://www.oceanexpert.org/expert/45891 -https://www.oceanexpert.org/institution/20880 -https://www.oceanexpert.org/institution/18611 -https://www.oceanexpert.org/expert/34224 -https://www.oceanexpert.org/expert/46162 -https://www.oceanexpert.org/expert/16094 -https://www.oceanexpert.org/institution/19074 -https://www.oceanexpert.org/expert/37825 -https://www.oceanexpert.org/event/768 -https://www.oceanexpert.org/institution/12129 -https://www.oceanexpert.org/expert/24548 -https://www.oceanexpert.org/expert/31291 -https://www.oceanexpert.org/institution/10506 -https://www.oceanexpert.org/expert/24157 -https://www.oceanexpert.org/expert/42919 -https://www.oceanexpert.org/expert/35962 -https://www.oceanexpert.org/expert/5548 -https://www.oceanexpert.org/event/1268 -https://www.oceanexpert.org/expert/36983 -https://www.oceanexpert.org/institution/18656 -https://www.oceanexpert.org/institution/5731 -https://www.oceanexpert.org/expert/45321 -https://www.oceanexpert.org/expert/16885 -https://www.oceanexpert.org/expert/42858 -https://www.oceanexpert.org/institution/12617 -https://www.oceanexpert.org/event/2182 -https://www.oceanexpert.org/expert/6523 -https://www.oceanexpert.org/expert/47435 -https://www.oceanexpert.org/expert/44543 -https://www.oceanexpert.org/expert/38557 -https://www.oceanexpert.org/institution/17573 -https://www.oceanexpert.org/event/627 -https://www.oceanexpert.org/expert/46414 -https://www.oceanexpert.org/expert/2791 -https://www.oceanexpert.org/expert/20741 -https://www.oceanexpert.org/expert/17527 -https://www.oceanexpert.org/expert/27952 -https://www.oceanexpert.org/expert/29756 -https://www.oceanexpert.org/expert/48296 -https://www.oceanexpert.org/expert/43043 -https://www.oceanexpert.org/expert/16151 -https://www.oceanexpert.org/institution/19400 -https://www.oceanexpert.org/expert/6906 -https://www.oceanexpert.org/institution/16292 -https://www.oceanexpert.org/expert/25820 -https://www.oceanexpert.org/expert/37927 -https://www.oceanexpert.org/expert/36284 -https://www.oceanexpert.org/institution/8230 -https://www.oceanexpert.org/institution/21578 -https://www.oceanexpert.org/expert/40977 -https://www.oceanexpert.org/expert/18584 -https://www.oceanexpert.org/event/473 -https://www.oceanexpert.org/expert/44785 -https://www.oceanexpert.org/expert/34058 -https://www.oceanexpert.org/expert/44552 -https://www.oceanexpert.org/expert/43503 -https://www.oceanexpert.org/expert/32179 -https://www.oceanexpert.org/expert/14863 -https://www.oceanexpert.org/expert/20314 -https://www.oceanexpert.org/expert/34817 -https://www.oceanexpert.org/expert/36412 -https://www.oceanexpert.org/expert/43617 -https://www.oceanexpert.org/institution/6077 -https://www.oceanexpert.org/expert/6897 -https://www.oceanexpert.org/institution/6196 -https://www.oceanexpert.org/event/264 -https://www.oceanexpert.org/expert/29017 -https://www.oceanexpert.org/institution/19290 -https://www.oceanexpert.org/expert/22630 -https://www.oceanexpert.org/institution/18205 -https://www.oceanexpert.org/expert/39791 -https://www.oceanexpert.org/institution/19331 -https://www.oceanexpert.org/expert/18498 -https://www.oceanexpert.org/institution/18877 -https://www.oceanexpert.org/institution/9991 -https://www.oceanexpert.org/expert/45171 -https://www.oceanexpert.org/expert/36631 -https://www.oceanexpert.org/expert/29822 -https://www.oceanexpert.org/expert/36796 -https://www.oceanexpert.org/expert/22372 -https://www.oceanexpert.org/event/2453 -https://www.oceanexpert.org/expert/45928 -https://www.oceanexpert.org/expert/2587 -https://www.oceanexpert.org/expert/25202 -https://www.oceanexpert.org/expert/37833 -https://www.oceanexpert.org/institution/21493 -https://www.oceanexpert.org/institution/21545 -https://www.oceanexpert.org/expert/29669 -https://www.oceanexpert.org/expert/17255 -https://www.oceanexpert.org/expert/44723 -https://www.oceanexpert.org/event/1660 -https://www.oceanexpert.org/event/1327 -https://www.oceanexpert.org/expert/48049 -https://www.oceanexpert.org/institution/21152 -https://www.oceanexpert.org/expert/35712 -https://www.oceanexpert.org/expert/18697 -https://www.oceanexpert.org/expert/47055 -https://www.oceanexpert.org/expert/21289 -https://www.oceanexpert.org/expert/19960 -https://www.oceanexpert.org/expert/48458 -https://www.oceanexpert.org/expert/44517 -https://www.oceanexpert.org/expert/19515 -https://www.oceanexpert.org/institution/8349 -https://www.oceanexpert.org/expert/46567 -https://www.oceanexpert.org/expert/47425 -https://www.oceanexpert.org/expert/38001 -https://www.oceanexpert.org/event/2700 -https://www.oceanexpert.org/institution/20926 -https://www.oceanexpert.org/institution/18462 -https://www.oceanexpert.org/expert/15878 -https://www.oceanexpert.org/expert/45570 -https://www.oceanexpert.org/expert/1928 -https://www.oceanexpert.org/expert/43262 -https://www.oceanexpert.org/institution/13698 -https://www.oceanexpert.org/event/495 -https://www.oceanexpert.org/expert/17560 -https://www.oceanexpert.org/event/1677 -https://www.oceanexpert.org/expert/17302 -https://www.oceanexpert.org/institution/11515 -https://www.oceanexpert.org/institution/18783 -https://www.oceanexpert.org/institution/17883 -https://www.oceanexpert.org/institution/16733 -https://www.oceanexpert.org/institution/20722 -https://www.oceanexpert.org/expert/47349 -https://www.oceanexpert.org/expert/44330 -https://www.oceanexpert.org/expert/33692 -https://www.oceanexpert.org/expert/29808 -https://www.oceanexpert.org/event/2825 -https://www.oceanexpert.org/expert/45591 -https://www.oceanexpert.org/expert/43416 -https://www.oceanexpert.org/expert/17472 -https://www.oceanexpert.org/institution/16379 -https://www.oceanexpert.org/expert/44352 -https://www.oceanexpert.org/expert/36404 -https://www.oceanexpert.org/expert/44151 -https://www.oceanexpert.org/expert/43066 -https://www.oceanexpert.org/expert/15008 -https://www.oceanexpert.org/institution/17947 -https://www.oceanexpert.org/expert/23592 -https://www.oceanexpert.org/expert/14663 -https://www.oceanexpert.org/institution/19107 -https://www.oceanexpert.org/expert/42399 -https://www.oceanexpert.org/institution/14810 -https://www.oceanexpert.org/event/2366 -https://www.oceanexpert.org/expert/19764 -https://www.oceanexpert.org/expert/26287 -https://www.oceanexpert.org/expert/23817 -https://www.oceanexpert.org/expert/13362 -https://www.oceanexpert.org/expert/11549 -https://www.oceanexpert.org/expert/34883 -https://www.oceanexpert.org/event/2743 -https://www.oceanexpert.org/event/1052 -https://www.oceanexpert.org/institution/15642 -https://www.oceanexpert.org/expert/25260 -https://www.oceanexpert.org/expert/33637 -https://www.oceanexpert.org/expert/31170 -https://www.oceanexpert.org/institution/20240 -https://www.oceanexpert.org/institution/9124 -https://www.oceanexpert.org/expert/17015 -https://www.oceanexpert.org/expert/37208 -https://www.oceanexpert.org/expert/30215 -https://www.oceanexpert.org/expert/23069 -https://www.oceanexpert.org/institution/18451 -https://www.oceanexpert.org/expert/37735 -https://www.oceanexpert.org/expert/47006 -https://www.oceanexpert.org/expert/46676 -https://www.oceanexpert.org/expert/26447 -https://www.oceanexpert.org/institution/11837 -https://www.oceanexpert.org/expert/30742 -https://www.oceanexpert.org/expert/35230 -https://www.oceanexpert.org/expert/45979 -https://www.oceanexpert.org/expert/18939 -https://www.oceanexpert.org/expert/35367 -https://www.oceanexpert.org/expert/31750 -https://www.oceanexpert.org/expert/26620 -https://www.oceanexpert.org/institution/16395 -https://www.oceanexpert.org/expert/37306 -https://www.oceanexpert.org/expert/47126 -https://www.oceanexpert.org/expert/23601 -https://www.oceanexpert.org/institution/20581 -https://www.oceanexpert.org/institution/18944 -https://www.oceanexpert.org/expert/20801 -https://www.oceanexpert.org/event/1241 -https://www.oceanexpert.org/event/2873 -https://www.oceanexpert.org/institution/20592 -https://www.oceanexpert.org/expert/34812 -https://www.oceanexpert.org/expert/22425 -https://www.oceanexpert.org/expert/29406 -https://www.oceanexpert.org/institution/21881 -https://www.oceanexpert.org/institution/18709 -https://www.oceanexpert.org/expert/20144 -https://www.oceanexpert.org/institution/8423 -https://www.oceanexpert.org/institution/9824 -https://www.oceanexpert.org/institution/12865 -https://www.oceanexpert.org/expert/44533 -https://www.oceanexpert.org/expert/16318 -https://www.oceanexpert.org/expert/18600 -https://www.oceanexpert.org/institution/20070 -https://www.oceanexpert.org/institution/13290 -https://www.oceanexpert.org/event/1680 -https://www.oceanexpert.org/expert/29360 -https://www.oceanexpert.org/expert/21798 -https://www.oceanexpert.org/event/2264 -https://www.oceanexpert.org/expert/19134 -https://www.oceanexpert.org/institution/13358 -https://www.oceanexpert.org/expert/28422 -https://www.oceanexpert.org/institution/16429 -https://www.oceanexpert.org/institution/13524 -https://www.oceanexpert.org/institution/9566 -https://www.oceanexpert.org/expert/28491 -https://www.oceanexpert.org/expert/4258 -https://www.oceanexpert.org/institution/5485 -https://www.oceanexpert.org/expert/18994 -https://www.oceanexpert.org/expert/30065 -https://www.oceanexpert.org/institution/19657 -https://www.oceanexpert.org/expert/21451 -https://www.oceanexpert.org/expert/39862 -https://www.oceanexpert.org/institution/8762 -https://www.oceanexpert.org/expert/3644 -https://www.oceanexpert.org/event/856 -https://www.oceanexpert.org/expert/39549 -https://www.oceanexpert.org/expert/21788 -https://www.oceanexpert.org/expert/37607 -https://www.oceanexpert.org/institution/18831 -https://www.oceanexpert.org/expert/18990 -https://www.oceanexpert.org/institution/16357 -https://www.oceanexpert.org/expert/36685 -https://www.oceanexpert.org/institution/21035 -https://www.oceanexpert.org/expert/36320 -https://www.oceanexpert.org/expert/44028 -https://www.oceanexpert.org/event/3159 -https://www.oceanexpert.org/institution/20888 -https://www.oceanexpert.org/event/2325 -https://www.oceanexpert.org/institution/20932 -https://www.oceanexpert.org/event/376 -https://www.oceanexpert.org/institution/19048 -https://www.oceanexpert.org/expert/32926 -https://www.oceanexpert.org/expert/25516 -https://www.oceanexpert.org/institution/17786 -https://www.oceanexpert.org/expert/18975 -https://www.oceanexpert.org/institution/18280 -https://www.oceanexpert.org/expert/23400 -https://www.oceanexpert.org/expert/44151 -https://www.oceanexpert.org/expert/25807 -https://www.oceanexpert.org/expert/30541 -https://www.oceanexpert.org/institution/21581 -https://www.oceanexpert.org/expert/7529 -https://www.oceanexpert.org/expert/31961 -https://www.oceanexpert.org/expert/37205 -https://www.oceanexpert.org/institution/14408 -https://www.oceanexpert.org/expert/46166 -https://www.oceanexpert.org/expert/6777 -https://www.oceanexpert.org/institution/19551 -https://www.oceanexpert.org/expert/29112 -https://www.oceanexpert.org/expert/42639 -https://www.oceanexpert.org/expert/25463 -https://www.oceanexpert.org/institution/20517 -https://www.oceanexpert.org/expert/25260 -https://www.oceanexpert.org/expert/31819 -https://www.oceanexpert.org/expert/20031 -https://www.oceanexpert.org/expert/23897 -https://www.oceanexpert.org/expert/43179 -https://www.oceanexpert.org/expert/43858 -https://www.oceanexpert.org/expert/1199 -https://www.oceanexpert.org/expert/32455 -https://www.oceanexpert.org/expert/19094 -https://www.oceanexpert.org/institution/17777 -https://www.oceanexpert.org/expert/42689 -https://www.oceanexpert.org/expert/37842 -https://www.oceanexpert.org/institution/9164 -https://www.oceanexpert.org/expert/26210 -https://www.oceanexpert.org/expert/20933 -https://www.oceanexpert.org/expert/34230 -https://www.oceanexpert.org/expert/48479 -https://www.oceanexpert.org/institution/21608 -https://www.oceanexpert.org/event/228 -https://www.oceanexpert.org/expert/11206 -https://www.oceanexpert.org/expert/43265 -https://www.oceanexpert.org/institution/14363 -https://www.oceanexpert.org/expert/29098 -https://www.oceanexpert.org/expert/20198 -https://www.oceanexpert.org/institution/21174 -https://www.oceanexpert.org/expert/27436 -https://www.oceanexpert.org/expert/23105 -https://www.oceanexpert.org/expert/25006 -https://www.oceanexpert.org/institution/20801 -https://www.oceanexpert.org/expert/34078 -https://www.oceanexpert.org/expert/27051 -https://www.oceanexpert.org/expert/23405 -https://www.oceanexpert.org/expert/43046 -https://www.oceanexpert.org/expert/37864 -https://www.oceanexpert.org/institution/21386 -https://www.oceanexpert.org/expert/44226 -https://www.oceanexpert.org/expert/14897 -https://www.oceanexpert.org/expert/7593 -https://www.oceanexpert.org/expert/21746 -https://www.oceanexpert.org/expert/19856 -https://www.oceanexpert.org/expert/36066 -https://www.oceanexpert.org/expert/22944 -https://www.oceanexpert.org/institution/18592 -https://www.oceanexpert.org/expert/22962 -https://www.oceanexpert.org/institution/14907 -https://www.oceanexpert.org/institution/14383 -https://www.oceanexpert.org/expert/25898 -https://www.oceanexpert.org/institution/18819 -https://www.oceanexpert.org/institution/8305 -https://www.oceanexpert.org/event/632 -https://www.oceanexpert.org/expert/20059 -https://www.oceanexpert.org/expert/18995 -https://www.oceanexpert.org/institution/8917 -https://www.oceanexpert.org/institution/18961 -https://www.oceanexpert.org/institution/7527 -https://www.oceanexpert.org/expert/43372 -https://www.oceanexpert.org/expert/39002 -https://www.oceanexpert.org/institution/15109 -https://www.oceanexpert.org/institution/12023 -https://www.oceanexpert.org/institution/18375 -https://www.oceanexpert.org/expert/25425 -https://www.oceanexpert.org/expert/24310 -https://www.oceanexpert.org/expert/31370 -https://www.oceanexpert.org/expert/43501 -https://www.oceanexpert.org/expert/24051 -https://www.oceanexpert.org/expert/17192 -https://www.oceanexpert.org/institution/20195 -https://www.oceanexpert.org/expert/45113 -https://www.oceanexpert.org/expert/26761 -https://www.oceanexpert.org/expert/43048 -https://www.oceanexpert.org/institution/19094 -https://www.oceanexpert.org/expert/20940 -https://www.oceanexpert.org/expert/96 -https://www.oceanexpert.org/expert/900 -https://www.oceanexpert.org/institution/10131 -https://www.oceanexpert.org/expert/23696 -https://www.oceanexpert.org/institution/20429 -https://www.oceanexpert.org/event/1970 -https://www.oceanexpert.org/expert/47790 -https://www.oceanexpert.org/expert/33496 -https://www.oceanexpert.org/institution/22165 -https://www.oceanexpert.org/institution/17503 -https://www.oceanexpert.org/expert/22263 -https://www.oceanexpert.org/expert/28966 -https://www.oceanexpert.org/event/780 -https://www.oceanexpert.org/institution/21709 -https://www.oceanexpert.org/expert/26188 -https://www.oceanexpert.org/expert/32514 -https://www.oceanexpert.org/institution/11640 -https://www.oceanexpert.org/expert/41274 -https://www.oceanexpert.org/expert/47369 -https://www.oceanexpert.org/expert/21868 -https://www.oceanexpert.org/expert/22606 -https://www.oceanexpert.org/expert/36606 -https://www.oceanexpert.org/expert/27607 -https://www.oceanexpert.org/expert/40570 -https://www.oceanexpert.org/institution/10506 -https://www.oceanexpert.org/expert/7395 -https://www.oceanexpert.org/institution/17547 -https://www.oceanexpert.org/expert/33296 -https://www.oceanexpert.org/expert/11003 -https://www.oceanexpert.org/expert/44658 -https://www.oceanexpert.org/expert/7611 -https://www.oceanexpert.org/expert/47509 -https://www.oceanexpert.org/institution/11654 -https://www.oceanexpert.org/expert/47870 -https://www.oceanexpert.org/institution/18860 -https://www.oceanexpert.org/expert/32997 -https://www.oceanexpert.org/institution/21833 -https://www.oceanexpert.org/expert/6656 -https://www.oceanexpert.org/expert/24413 -https://www.oceanexpert.org/expert/17121 -https://www.oceanexpert.org/expert/34462 -https://www.oceanexpert.org/expert/39271 -https://www.oceanexpert.org/expert/48679 -https://www.oceanexpert.org/expert/29810 -https://www.oceanexpert.org/institution/6026 -https://www.oceanexpert.org/expert/22378 -https://www.oceanexpert.org/expert/38532 -https://www.oceanexpert.org/expert/30760 -https://www.oceanexpert.org/expert/22537 -https://www.oceanexpert.org/expert/44661 -https://www.oceanexpert.org/expert/33535 -https://www.oceanexpert.org/institution/13332 -https://www.oceanexpert.org/expert/22771 -https://www.oceanexpert.org/expert/43212 -https://www.oceanexpert.org/institution/17046 -https://www.oceanexpert.org/institution/11191 -https://www.oceanexpert.org/expert/27339 -https://www.oceanexpert.org/institution/19909 -https://www.oceanexpert.org/expert/42924 -https://www.oceanexpert.org/expert/30589 -https://www.oceanexpert.org/expert/12254 -https://www.oceanexpert.org/institution/12395 -https://www.oceanexpert.org/expert/29557 -https://www.oceanexpert.org/expert/46369 -https://www.oceanexpert.org/expert/35107 -https://www.oceanexpert.org/institution/8921 -https://www.oceanexpert.org/institution/21000 -https://www.oceanexpert.org/institution/13564 -https://www.oceanexpert.org/expert/25444 -https://www.oceanexpert.org/institution/20998 -https://www.oceanexpert.org/expert/45932 -https://www.oceanexpert.org/expert/30900 -https://www.oceanexpert.org/expert/25273 -https://www.oceanexpert.org/expert/38290 -https://www.oceanexpert.org/expert/37511 -https://www.oceanexpert.org/institution/18906 -https://www.oceanexpert.org/institution/14011 -https://www.oceanexpert.org/event/1753 -https://www.oceanexpert.org/expert/47488 -https://www.oceanexpert.org/institution/17232 -https://www.oceanexpert.org/expert/46195 -https://www.oceanexpert.org/expert/7018 -https://www.oceanexpert.org/expert/21296 -https://www.oceanexpert.org/expert/28105 -https://www.oceanexpert.org/expert/45752 -https://www.oceanexpert.org/expert/44862 -https://www.oceanexpert.org/expert/18214 -https://www.oceanexpert.org/institution/20950 -https://www.oceanexpert.org/expert/31186 -https://www.oceanexpert.org/expert/37598 -https://www.oceanexpert.org/expert/20816 -https://www.oceanexpert.org/expert/12412 -https://www.oceanexpert.org/expert/31125 -https://www.oceanexpert.org/event/2797 -https://www.oceanexpert.org/institution/14392 -https://www.oceanexpert.org/institution/8158 -https://www.oceanexpert.org/expert/31641 -https://www.oceanexpert.org/expert/26860 -https://www.oceanexpert.org/expert/34246 -https://www.oceanexpert.org/institution/10287 -https://www.oceanexpert.org/expert/34926 -https://www.oceanexpert.org/expert/23244 -https://www.oceanexpert.org/expert/15695 -https://www.oceanexpert.org/expert/30918 -https://www.oceanexpert.org/institution/20862 -https://www.oceanexpert.org/expert/25074 -https://www.oceanexpert.org/expert/3562 -https://www.oceanexpert.org/expert/17514 -https://www.oceanexpert.org/event/2900 -https://www.oceanexpert.org/expert/18017 -https://www.oceanexpert.org/expert/43709 -https://www.oceanexpert.org/event/858 -https://www.oceanexpert.org/event/2127 -https://www.oceanexpert.org/expert/17145 -https://www.oceanexpert.org/event/2444 -https://www.oceanexpert.org/expert/20747 -https://www.oceanexpert.org/expert/11027 -https://www.oceanexpert.org/expert/45876 -https://www.oceanexpert.org/expert/34282 -https://www.oceanexpert.org/institution/18034 -https://www.oceanexpert.org/expert/28151 -https://www.oceanexpert.org/institution/10274 -https://www.oceanexpert.org/expert/34671 -https://www.oceanexpert.org/expert/15518 -https://www.oceanexpert.org/expert/21850 -https://www.oceanexpert.org/expert/16269 -https://www.oceanexpert.org/expert/38939 -https://www.oceanexpert.org/institution/14086 -https://www.oceanexpert.org/event/2771 -https://www.oceanexpert.org/expert/36251 -https://www.oceanexpert.org/expert/42496 -https://www.oceanexpert.org/expert/27173 -https://www.oceanexpert.org/expert/46551 -https://www.oceanexpert.org/expert/38881 -https://www.oceanexpert.org/institution/15884 -https://www.oceanexpert.org/expert/37626 -https://www.oceanexpert.org/institution/11391 -https://www.oceanexpert.org/expert/20989 -https://www.oceanexpert.org/expert/37379 -https://www.oceanexpert.org/event/556 -https://www.oceanexpert.org/expert/17050 -https://www.oceanexpert.org/expert/46353 -https://www.oceanexpert.org/event/2150 -https://www.oceanexpert.org/institution/16709 -https://www.oceanexpert.org/expert/21662 -https://www.oceanexpert.org/institution/20856 -https://www.oceanexpert.org/event/3174 -https://www.oceanexpert.org/event/806 -https://www.oceanexpert.org/institution/6297 -https://www.oceanexpert.org/expert/43272 -https://www.oceanexpert.org/expert/42157 -https://www.oceanexpert.org/expert/39860 -https://www.oceanexpert.org/expert/46936 -https://www.oceanexpert.org/expert/34928 -https://www.oceanexpert.org/expert/39615 -https://www.oceanexpert.org/expert/48818 -https://www.oceanexpert.org/institution/19991 -https://www.oceanexpert.org/institution/20345 -https://www.oceanexpert.org/institution/17986 -https://www.oceanexpert.org/expert/47343 -https://www.oceanexpert.org/institution/20866 -https://www.oceanexpert.org/institution/20034 -https://www.oceanexpert.org/expert/17980 -https://www.oceanexpert.org/institution/12005 -https://www.oceanexpert.org/expert/33241 -https://www.oceanexpert.org/expert/19037 -https://www.oceanexpert.org/expert/35657 -https://www.oceanexpert.org/expert/26469 -https://www.oceanexpert.org/expert/20930 -https://www.oceanexpert.org/expert/46108 -https://www.oceanexpert.org/expert/45779 -https://www.oceanexpert.org/institution/20765 -https://www.oceanexpert.org/institution/20914 -https://www.oceanexpert.org/institution/16838 -https://www.oceanexpert.org/expert/17398 -https://www.oceanexpert.org/expert/46740 -https://www.oceanexpert.org/event/1351 -https://www.oceanexpert.org/expert/46358 -https://www.oceanexpert.org/event/720 -https://www.oceanexpert.org/expert/15346 -https://www.oceanexpert.org/expert/44964 -https://www.oceanexpert.org/expert/29788 -https://www.oceanexpert.org/expert/37038 -https://www.oceanexpert.org/expert/48517 -https://www.oceanexpert.org/institution/5145 -https://www.oceanexpert.org/expert/23288 -https://www.oceanexpert.org/event/322 -https://www.oceanexpert.org/expert/27572 -https://www.oceanexpert.org/institution/9853 -https://www.oceanexpert.org/expert/22680 -https://www.oceanexpert.org/institution/20510 -https://www.oceanexpert.org/expert/26553 -https://www.oceanexpert.org/expert/13802 -https://www.oceanexpert.org/expert/27129 -https://www.oceanexpert.org/expert/33223 -https://www.oceanexpert.org/expert/47660 -https://www.oceanexpert.org/expert/17528 -https://www.oceanexpert.org/expert/48500 -https://www.oceanexpert.org/institution/21298 -https://www.oceanexpert.org/expert/45058 -https://www.oceanexpert.org/expert/26211 -https://www.oceanexpert.org/event/999 -https://www.oceanexpert.org/expert/37013 -https://www.oceanexpert.org/expert/46517 -https://www.oceanexpert.org/institution/13268 -https://www.oceanexpert.org/expert/37923 -https://www.oceanexpert.org/expert/36431 -https://www.oceanexpert.org/institution/9635 -https://www.oceanexpert.org/expert/30480 -https://www.oceanexpert.org/expert/19074 -https://www.oceanexpert.org/event/351 -https://www.oceanexpert.org/expert/31378 -https://www.oceanexpert.org/expert/40625 -https://www.oceanexpert.org/expert/8441 -https://www.oceanexpert.org/expert/32759 -https://www.oceanexpert.org/expert/37485 -https://www.oceanexpert.org/expert/31082 -https://www.oceanexpert.org/institution/19950 -https://www.oceanexpert.org/expert/25378 -https://www.oceanexpert.org/expert/4424 -https://www.oceanexpert.org/expert/48496 -https://www.oceanexpert.org/event/2219 -https://www.oceanexpert.org/event/971 -https://www.oceanexpert.org/expert/42552 -https://www.oceanexpert.org/expert/38019 -https://www.oceanexpert.org/expert/38604 -https://www.oceanexpert.org/expert/17401 -https://www.oceanexpert.org/event/765 -https://www.oceanexpert.org/expert/25779 -https://www.oceanexpert.org/expert/42835 -https://www.oceanexpert.org/expert/1538 -https://www.oceanexpert.org/event/448 -https://www.oceanexpert.org/expert/48936 -https://www.oceanexpert.org/expert/36857 -https://www.oceanexpert.org/expert/22189 -https://www.oceanexpert.org/expert/35093 -https://www.oceanexpert.org/expert/25590 -https://www.oceanexpert.org/event/1344 -https://www.oceanexpert.org/institution/4997 -https://www.oceanexpert.org/expert/33817 -https://www.oceanexpert.org/event/2644 -https://www.oceanexpert.org/expert/37832 -https://www.oceanexpert.org/expert/34220 -https://www.oceanexpert.org/institution/14630 -https://www.oceanexpert.org/event/1506 -https://www.oceanexpert.org/expert/21692 -https://www.oceanexpert.org/expert/13611 -https://www.oceanexpert.org/expert/5980 -https://www.oceanexpert.org/expert/47764 -https://www.oceanexpert.org/institution/18939 -https://www.oceanexpert.org/event/1781 -https://www.oceanexpert.org/expert/37486 -https://www.oceanexpert.org/institution/19053 -https://www.oceanexpert.org/expert/32555 -https://www.oceanexpert.org/expert/22982 -https://www.oceanexpert.org/event/914 -https://www.oceanexpert.org/expert/34738 -https://www.oceanexpert.org/expert/35481 -https://www.oceanexpert.org/expert/34116 -https://www.oceanexpert.org/expert/19591 -https://www.oceanexpert.org/institution/11686 -https://www.oceanexpert.org/expert/47334 -https://www.oceanexpert.org/expert/38413 -https://www.oceanexpert.org/expert/30668 -https://www.oceanexpert.org/expert/21680 -https://www.oceanexpert.org/expert/13014 -https://www.oceanexpert.org/institution/17777 -https://www.oceanexpert.org/institution/22152 -https://www.oceanexpert.org/expert/14798 -https://www.oceanexpert.org/expert/15942 -https://www.oceanexpert.org/expert/27276 -https://www.oceanexpert.org/institution/19910 -https://www.oceanexpert.org/expert/35591 -https://www.oceanexpert.org/event/1974 -https://www.oceanexpert.org/expert/35108 -https://www.oceanexpert.org/expert/4776 -https://www.oceanexpert.org/expert/25190 -https://www.oceanexpert.org/institution/20521 -https://www.oceanexpert.org/expert/14910 -https://www.oceanexpert.org/expert/45281 -https://www.oceanexpert.org/expert/43818 -https://www.oceanexpert.org/expert/22740 -https://www.oceanexpert.org/expert/48212 -https://www.oceanexpert.org/expert/43402 -https://www.oceanexpert.org/expert/17007 -https://www.oceanexpert.org/expert/7041 -https://www.oceanexpert.org/event/581 -https://www.oceanexpert.org/expert/44761 -https://www.oceanexpert.org/expert/25832 -https://www.oceanexpert.org/institution/21301 -https://www.oceanexpert.org/expert/29735 -https://www.oceanexpert.org/expert/19754 -https://www.oceanexpert.org/institution/19766 -https://www.oceanexpert.org/institution/18295 -https://www.oceanexpert.org/expert/15549 -https://www.oceanexpert.org/expert/14131 -https://www.oceanexpert.org/expert/17111 -https://www.oceanexpert.org/event/532 -https://www.oceanexpert.org/expert/30 -https://www.oceanexpert.org/expert/48857 -https://www.oceanexpert.org/expert/44897 -https://www.oceanexpert.org/expert/30208 -https://www.oceanexpert.org/institution/19337 -https://www.oceanexpert.org/expert/42993 -https://www.oceanexpert.org/expert/38461 -https://www.oceanexpert.org/event/587 -https://www.oceanexpert.org/expert/47786 -https://www.oceanexpert.org/institution/21950 -https://www.oceanexpert.org/expert/16306 -https://www.oceanexpert.org/expert/47595 -https://www.oceanexpert.org/institution/16838 -https://www.oceanexpert.org/institution/21641 -https://www.oceanexpert.org/expert/39443 -https://www.oceanexpert.org/expert/20205 -https://www.oceanexpert.org/event/678 -https://www.oceanexpert.org/institution/19507 -https://www.oceanexpert.org/expert/37206 -https://www.oceanexpert.org/expert/19368 -https://www.oceanexpert.org/event/1299 -https://www.oceanexpert.org/expert/27787 -https://www.oceanexpert.org/expert/46688 -https://www.oceanexpert.org/expert/29826 -https://www.oceanexpert.org/expert/20580 -https://www.oceanexpert.org/expert/26024 -https://www.oceanexpert.org/expert/48038 -https://www.oceanexpert.org/expert/20565 -https://www.oceanexpert.org/event/1109 -https://www.oceanexpert.org/expert/46808 -https://www.oceanexpert.org/event/1645 -https://www.oceanexpert.org/expert/39411 -https://www.oceanexpert.org/expert/18097 -https://www.oceanexpert.org/expert/35989 -https://www.oceanexpert.org/expert/19215 -https://www.oceanexpert.org/event/630 -https://www.oceanexpert.org/institution/15197 -https://www.oceanexpert.org/expert/34940 -https://www.oceanexpert.org/institution/16779 -https://www.oceanexpert.org/expert/22836 -https://www.oceanexpert.org/expert/20712 -https://www.oceanexpert.org/event/963 -https://www.oceanexpert.org/expert/42633 -https://www.oceanexpert.org/expert/37537 -https://www.oceanexpert.org/expert/39070 -https://www.oceanexpert.org/expert/22584 -https://www.oceanexpert.org/expert/26946 -https://www.oceanexpert.org/expert/32395 -https://www.oceanexpert.org/institution/7958 -https://www.oceanexpert.org/expert/14315 -https://www.oceanexpert.org/expert/23021 -https://www.oceanexpert.org/expert/22406 -https://www.oceanexpert.org/expert/25502 -https://www.oceanexpert.org/institution/20100 -https://www.oceanexpert.org/expert/32525 -https://www.oceanexpert.org/expert/35534 -https://www.oceanexpert.org/expert/20290 -https://www.oceanexpert.org/event/2828 -https://www.oceanexpert.org/institution/12540 -https://www.oceanexpert.org/expert/22017 -https://www.oceanexpert.org/expert/33099 -https://www.oceanexpert.org/expert/25795 -https://www.oceanexpert.org/expert/36404 -https://www.oceanexpert.org/expert/539 -https://www.oceanexpert.org/expert/32206 -https://www.oceanexpert.org/expert/48624 -https://www.oceanexpert.org/event/2884 -https://www.oceanexpert.org/institution/21577 -https://www.oceanexpert.org/expert/42448 -https://www.oceanexpert.org/expert/24284 -https://www.oceanexpert.org/expert/26837 -https://www.oceanexpert.org/expert/35201 -https://www.oceanexpert.org/event/1631 -https://www.oceanexpert.org/expert/19980 -https://www.oceanexpert.org/expert/45817 -https://www.oceanexpert.org/expert/35473 -https://www.oceanexpert.org/expert/28193 -https://www.oceanexpert.org/expert/47646 -https://www.oceanexpert.org/expert/19888 -https://www.oceanexpert.org/expert/37541 -https://www.oceanexpert.org/event/749 -https://www.oceanexpert.org/expert/10941 -https://www.oceanexpert.org/expert/45394 -https://www.oceanexpert.org/expert/45429 -https://www.oceanexpert.org/expert/12045 -https://www.oceanexpert.org/expert/43019 -https://www.oceanexpert.org/institution/19592 -https://www.oceanexpert.org/expert/44823 -https://www.oceanexpert.org/expert/48971 -https://www.oceanexpert.org/expert/20580 -https://www.oceanexpert.org/institution/12615 -https://www.oceanexpert.org/institution/20637 -https://www.oceanexpert.org/expert/19952 -https://www.oceanexpert.org/expert/30019 -https://www.oceanexpert.org/expert/22662 -https://www.oceanexpert.org/expert/47830 -https://www.oceanexpert.org/expert/45546 -https://www.oceanexpert.org/expert/18891 -https://www.oceanexpert.org/expert/43655 -https://www.oceanexpert.org/expert/26527 -https://www.oceanexpert.org/expert/38257 -https://www.oceanexpert.org/institution/16917 -https://www.oceanexpert.org/event/2936 -https://www.oceanexpert.org/event/1822 -https://www.oceanexpert.org/event/2565 -https://www.oceanexpert.org/event/3087 -https://www.oceanexpert.org/expert/43529 -https://www.oceanexpert.org/event/125 -https://www.oceanexpert.org/event/1497 -https://www.oceanexpert.org/expert/21810 -https://www.oceanexpert.org/expert/33015 -https://www.oceanexpert.org/expert/16683 -https://www.oceanexpert.org/institution/15162 -https://www.oceanexpert.org/expert/18876 -https://www.oceanexpert.org/expert/23947 -https://www.oceanexpert.org/expert/44964 -https://www.oceanexpert.org/institution/11687 -https://www.oceanexpert.org/expert/23439 -https://www.oceanexpert.org/expert/23207 -https://www.oceanexpert.org/expert/11835 -https://www.oceanexpert.org/expert/21344 -https://www.oceanexpert.org/institution/11481 -https://www.oceanexpert.org/expert/22765 -https://www.oceanexpert.org/expert/23169 -https://www.oceanexpert.org/expert/29158 -https://www.oceanexpert.org/event/379 -https://www.oceanexpert.org/expert/43323 -https://www.oceanexpert.org/expert/31140 -https://www.oceanexpert.org/institution/18765 -https://www.oceanexpert.org/institution/21525 -https://www.oceanexpert.org/expert/19416 -https://www.oceanexpert.org/expert/26326 -https://www.oceanexpert.org/institution/21773 -https://www.oceanexpert.org/institution/16751 -https://www.oceanexpert.org/expert/13318 -https://www.oceanexpert.org/expert/27866 -https://www.oceanexpert.org/event/2139 -https://www.oceanexpert.org/expert/23935 -https://www.oceanexpert.org/expert/31324 -https://www.oceanexpert.org/expert/48438 -https://www.oceanexpert.org/expert/7102 -https://www.oceanexpert.org/institution/18119 -https://www.oceanexpert.org/expert/37607 -https://www.oceanexpert.org/expert/44563 -https://www.oceanexpert.org/expert/43233 -https://www.oceanexpert.org/expert/27446 -https://www.oceanexpert.org/event/3069 -https://www.oceanexpert.org/expert/35999 -https://www.oceanexpert.org/expert/20606 -https://www.oceanexpert.org/expert/16158 -https://www.oceanexpert.org/expert/38071 -https://www.oceanexpert.org/expert/36105 -https://www.oceanexpert.org/expert/34662 -https://www.oceanexpert.org/expert/29605 -https://www.oceanexpert.org/expert/7529 -https://www.oceanexpert.org/expert/22685 -https://www.oceanexpert.org/institution/20406 -https://www.oceanexpert.org/institution/21157 -https://www.oceanexpert.org/expert/48564 -https://www.oceanexpert.org/expert/46479 -https://www.oceanexpert.org/institution/21986 -https://www.oceanexpert.org/institution/20166 -https://www.oceanexpert.org/event/1400 -https://www.oceanexpert.org/expert/27832 -https://www.oceanexpert.org/expert/23933 -https://www.oceanexpert.org/institution/11280 -https://www.oceanexpert.org/expert/7592 -https://www.oceanexpert.org/expert/43933 -https://www.oceanexpert.org/expert/45199 -https://www.oceanexpert.org/expert/38142 -https://www.oceanexpert.org/expert/28447 -https://www.oceanexpert.org/expert/2310 -https://www.oceanexpert.org/expert/44515 -https://www.oceanexpert.org/expert/19907 -https://www.oceanexpert.org/institution/17723 -https://www.oceanexpert.org/expert/33352 -https://www.oceanexpert.org/expert/43983 -https://www.oceanexpert.org/event/1991 -https://www.oceanexpert.org/expert/20806 -https://www.oceanexpert.org/expert/48016 -https://www.oceanexpert.org/institution/20437 -https://www.oceanexpert.org/expert/25250 -https://www.oceanexpert.org/expert/45854 -https://www.oceanexpert.org/expert/26915 -https://www.oceanexpert.org/expert/757 -https://www.oceanexpert.org/expert/39858 -https://www.oceanexpert.org/expert/47556 -https://www.oceanexpert.org/expert/46488 -https://www.oceanexpert.org/expert/37580 -https://www.oceanexpert.org/event/2896 -https://www.oceanexpert.org/expert/30539 -https://www.oceanexpert.org/expert/17041 -https://www.oceanexpert.org/expert/24230 -https://www.oceanexpert.org/expert/11490 -https://www.oceanexpert.org/institution/17012 -https://www.oceanexpert.org/institution/21764 -https://www.oceanexpert.org/institution/7143 -https://www.oceanexpert.org/expert/3190 -https://www.oceanexpert.org/institution/19747 -https://www.oceanexpert.org/expert/16471 -https://www.oceanexpert.org/institution/16251 -https://www.oceanexpert.org/expert/37065 -https://www.oceanexpert.org/expert/25423 -https://www.oceanexpert.org/expert/27533 -https://www.oceanexpert.org/expert/27266 -https://www.oceanexpert.org/expert/23666 -https://www.oceanexpert.org/expert/27055 -https://www.oceanexpert.org/expert/42656 -https://www.oceanexpert.org/expert/20123 -https://www.oceanexpert.org/expert/15430 -https://www.oceanexpert.org/institution/17923 -https://www.oceanexpert.org/institution/8917 -https://www.oceanexpert.org/institution/21559 -https://www.oceanexpert.org/institution/9361 -https://www.oceanexpert.org/institution/19428 -https://www.oceanexpert.org/expert/46699 -https://www.oceanexpert.org/expert/38456 -https://www.oceanexpert.org/institution/21547 -https://www.oceanexpert.org/expert/44778 -https://www.oceanexpert.org/expert/48682 -https://www.oceanexpert.org/institution/18946 -https://www.oceanexpert.org/institution/11456 -https://www.oceanexpert.org/expert/44325 -https://www.oceanexpert.org/institution/12340 -https://www.oceanexpert.org/expert/13365 -https://www.oceanexpert.org/institution/21330 -https://www.oceanexpert.org/expert/48491 -https://www.oceanexpert.org/expert/20992 -https://www.oceanexpert.org/expert/31502 -https://www.oceanexpert.org/expert/12997 -https://www.oceanexpert.org/expert/27158 -https://www.oceanexpert.org/institution/7410 -https://www.oceanexpert.org/expert/604 -https://www.oceanexpert.org/event/1982 -https://www.oceanexpert.org/expert/2923 -https://www.oceanexpert.org/institution/21292 -https://www.oceanexpert.org/expert/21802 -https://www.oceanexpert.org/institution/19984 -https://www.oceanexpert.org/institution/18063 -https://www.oceanexpert.org/event/3055 -https://www.oceanexpert.org/institution/21663 -https://www.oceanexpert.org/expert/11453 -https://www.oceanexpert.org/expert/19979 -https://www.oceanexpert.org/institution/13674 -https://www.oceanexpert.org/expert/19027 -https://www.oceanexpert.org/expert/30463 -https://www.oceanexpert.org/expert/28403 -https://www.oceanexpert.org/expert/36935 -https://www.oceanexpert.org/expert/34990 -https://www.oceanexpert.org/expert/23898 -https://www.oceanexpert.org/expert/16412 -https://www.oceanexpert.org/expert/36850 -https://www.oceanexpert.org/expert/11095 -https://www.oceanexpert.org/expert/8671 -https://www.oceanexpert.org/expert/34791 -https://www.oceanexpert.org/institution/6657 -https://www.oceanexpert.org/expert/46569 -https://www.oceanexpert.org/expert/16653 -https://www.oceanexpert.org/institution/12090 -https://www.oceanexpert.org/expert/20704 -https://www.oceanexpert.org/expert/4886 -https://www.oceanexpert.org/expert/18954 -https://www.oceanexpert.org/event/10 -https://www.oceanexpert.org/institution/5223 -https://www.oceanexpert.org/expert/26175 -https://www.oceanexpert.org/expert/22598 -https://www.oceanexpert.org/expert/42782 -https://www.oceanexpert.org/expert/30823 -https://www.oceanexpert.org/event/2147 -https://www.oceanexpert.org/expert/35190 -https://www.oceanexpert.org/expert/43819 -https://www.oceanexpert.org/expert/47236 -https://www.oceanexpert.org/expert/29279 -https://www.oceanexpert.org/expert/20715 -https://www.oceanexpert.org/expert/27230 -https://www.oceanexpert.org/expert/31225 -https://www.oceanexpert.org/expert/13087 -https://www.oceanexpert.org/institution/18037 -https://www.oceanexpert.org/expert/19897 -https://www.oceanexpert.org/expert/40090 -https://www.oceanexpert.org/expert/25859 -https://www.oceanexpert.org/institution/10706 -https://www.oceanexpert.org/institution/19679 -https://www.oceanexpert.org/institution/6364 -https://www.oceanexpert.org/institution/11155 -https://www.oceanexpert.org/expert/34363 -https://www.oceanexpert.org/expert/29555 -https://www.oceanexpert.org/expert/23910 -https://www.oceanexpert.org/expert/26990 -https://www.oceanexpert.org/event/548 -https://www.oceanexpert.org/expert/19788 -https://www.oceanexpert.org/expert/31037 -https://www.oceanexpert.org/expert/31087 -https://www.oceanexpert.org/expert/12572 -https://www.oceanexpert.org/expert/42816 -https://www.oceanexpert.org/expert/14437 -https://www.oceanexpert.org/expert/17909 -https://www.oceanexpert.org/expert/43495 -https://www.oceanexpert.org/expert/43315 -https://www.oceanexpert.org/event/289 -https://www.oceanexpert.org/event/1867 -https://www.oceanexpert.org/institution/19835 -https://www.oceanexpert.org/institution/19055 -https://www.oceanexpert.org/institution/19542 -https://www.oceanexpert.org/expert/38345 -https://www.oceanexpert.org/expert/44377 -https://www.oceanexpert.org/expert/6624 -https://www.oceanexpert.org/expert/29370 -https://www.oceanexpert.org/institution/19086 -https://www.oceanexpert.org/expert/34712 -https://www.oceanexpert.org/expert/11770 -https://www.oceanexpert.org/event/2835 -https://www.oceanexpert.org/institution/21165 -https://www.oceanexpert.org/institution/19267 -https://www.oceanexpert.org/expert/32715 -https://www.oceanexpert.org/institution/18145 -https://www.oceanexpert.org/institution/19194 -https://www.oceanexpert.org/expert/299 -https://www.oceanexpert.org/expert/26837 -https://www.oceanexpert.org/expert/42881 -https://www.oceanexpert.org/expert/22688 -https://www.oceanexpert.org/expert/19083 -https://www.oceanexpert.org/expert/17751 -https://www.oceanexpert.org/expert/13590 -https://www.oceanexpert.org/institution/18096 -https://www.oceanexpert.org/event/243 -https://www.oceanexpert.org/expert/18408 -https://www.oceanexpert.org/expert/26912 -https://www.oceanexpert.org/expert/17398 -https://www.oceanexpert.org/event/2100 -https://www.oceanexpert.org/event/1428 -https://www.oceanexpert.org/expert/23726 -https://www.oceanexpert.org/institution/20169 -https://www.oceanexpert.org/expert/45307 -https://www.oceanexpert.org/institution/19501 -https://www.oceanexpert.org/expert/20942 -https://www.oceanexpert.org/institution/13565 -https://www.oceanexpert.org/expert/34469 -https://www.oceanexpert.org/expert/26561 -https://www.oceanexpert.org/expert/31583 -https://www.oceanexpert.org/expert/34712 -https://www.oceanexpert.org/expert/17548 -https://www.oceanexpert.org/expert/16293 -https://www.oceanexpert.org/institution/21781 -https://www.oceanexpert.org/event/447 -https://www.oceanexpert.org/event/88 -https://www.oceanexpert.org/institution/19113 -https://www.oceanexpert.org/institution/17912 -https://www.oceanexpert.org/institution/9214 -https://www.oceanexpert.org/institution/19618 -https://www.oceanexpert.org/institution/20971 -https://www.oceanexpert.org/expert/16805 -https://www.oceanexpert.org/expert/38407 -https://www.oceanexpert.org/institution/18 -https://www.oceanexpert.org/expert/24885 -https://www.oceanexpert.org/expert/17128 -https://www.oceanexpert.org/expert/26728 -https://www.oceanexpert.org/expert/18909 -https://www.oceanexpert.org/expert/13092 -https://www.oceanexpert.org/expert/34733 -https://www.oceanexpert.org/expert/33985 -https://www.oceanexpert.org/expert/24597 -https://www.oceanexpert.org/expert/22232 -https://www.oceanexpert.org/expert/10959 -https://www.oceanexpert.org/expert/41911 -https://www.oceanexpert.org/institution/21918 -https://www.oceanexpert.org/event/1181 -https://www.oceanexpert.org/event/2851 -https://www.oceanexpert.org/expert/17941 -https://www.oceanexpert.org/expert/27328 -https://www.oceanexpert.org/event/2158 -https://www.oceanexpert.org/institution/18850 -https://www.oceanexpert.org/institution/12444 -https://www.oceanexpert.org/expert/4774 -https://www.oceanexpert.org/expert/12956 -https://www.oceanexpert.org/expert/26633 -https://www.oceanexpert.org/expert/36076 -https://www.oceanexpert.org/expert/44845 -https://www.oceanexpert.org/expert/26162 -https://www.oceanexpert.org/expert/41647 -https://www.oceanexpert.org/institution/20390 -https://www.oceanexpert.org/expert/26663 -https://www.oceanexpert.org/expert/11623 -https://www.oceanexpert.org/expert/18547 -https://www.oceanexpert.org/expert/8671 -https://www.oceanexpert.org/expert/28477 -https://www.oceanexpert.org/expert/46764 -https://www.oceanexpert.org/expert/48554 -https://www.oceanexpert.org/expert/31729 -https://www.oceanexpert.org/event/2682 -https://www.oceanexpert.org/expert/59 -https://www.oceanexpert.org/expert/45634 -https://www.oceanexpert.org/expert/16483 -https://www.oceanexpert.org/expert/27147 -https://www.oceanexpert.org/expert/23746 -https://www.oceanexpert.org/expert/19411 -https://www.oceanexpert.org/expert/32000 -https://www.oceanexpert.org/expert/18846 -https://www.oceanexpert.org/institution/9192 -https://www.oceanexpert.org/expert/22906 -https://www.oceanexpert.org/expert/21934 -https://www.oceanexpert.org/institution/8668 -https://www.oceanexpert.org/institution/12940 -https://www.oceanexpert.org/expert/20333 -https://www.oceanexpert.org/expert/20865 -https://www.oceanexpert.org/expert/46625 -https://www.oceanexpert.org/event/1190 -https://www.oceanexpert.org/institution/20958 -https://www.oceanexpert.org/expert/16533 -https://www.oceanexpert.org/expert/17303 -https://www.oceanexpert.org/expert/38357 -https://www.oceanexpert.org/institution/20603 -https://www.oceanexpert.org/event/3038 -https://www.oceanexpert.org/expert/31977 -https://www.oceanexpert.org/expert/43515 -https://www.oceanexpert.org/expert/21814 -https://www.oceanexpert.org/expert/19583 -https://www.oceanexpert.org/event/2725 -https://www.oceanexpert.org/expert/5394 -https://www.oceanexpert.org/expert/36343 -https://www.oceanexpert.org/event/1052 -https://www.oceanexpert.org/expert/17782 -https://www.oceanexpert.org/expert/5957 -https://www.oceanexpert.org/expert/22575 -https://www.oceanexpert.org/institution/17926 -https://www.oceanexpert.org/event/1263 -https://www.oceanexpert.org/expert/21713 -https://www.oceanexpert.org/expert/21114 -https://www.oceanexpert.org/institution/18590 -https://www.oceanexpert.org/expert/32538 -https://www.oceanexpert.org/institution/20660 -https://www.oceanexpert.org/expert/15295 -https://www.oceanexpert.org/expert/545 -https://www.oceanexpert.org/expert/3788 -https://www.oceanexpert.org/expert/27129 -https://www.oceanexpert.org/expert/3990 -https://www.oceanexpert.org/expert/3644 -https://www.oceanexpert.org/event/3013 -https://www.oceanexpert.org/expert/33315 -https://www.oceanexpert.org/expert/19464 -https://www.oceanexpert.org/expert/25565 -https://www.oceanexpert.org/event/467 -https://www.oceanexpert.org/institution/17593 -https://www.oceanexpert.org/expert/42787 -https://www.oceanexpert.org/expert/49022 -https://www.oceanexpert.org/expert/18847 -https://www.oceanexpert.org/expert/21012 -https://www.oceanexpert.org/expert/38605 -https://www.oceanexpert.org/expert/27868 -https://www.oceanexpert.org/expert/43491 -https://www.oceanexpert.org/institution/21229 -https://www.oceanexpert.org/expert/17824 -https://www.oceanexpert.org/expert/48613 -https://www.oceanexpert.org/event/206 -https://www.oceanexpert.org/expert/27373 -https://www.oceanexpert.org/expert/47578 -https://www.oceanexpert.org/institution/16268 -https://www.oceanexpert.org/event/542 -https://www.oceanexpert.org/expert/11785 -https://www.oceanexpert.org/expert/47055 -https://www.oceanexpert.org/expert/24427 -https://www.oceanexpert.org/institution/13184 -https://www.oceanexpert.org/institution/20949 -https://www.oceanexpert.org/expert/43229 -https://www.oceanexpert.org/institution/18857 -https://www.oceanexpert.org/expert/43015 -https://www.oceanexpert.org/expert/35451 -https://www.oceanexpert.org/institution/17635 -https://www.oceanexpert.org/institution/17802 -https://www.oceanexpert.org/expert/32488 -https://www.oceanexpert.org/expert/48303 -https://www.oceanexpert.org/expert/46778 -https://www.oceanexpert.org/expert/36175 -https://www.oceanexpert.org/expert/36626 -https://www.oceanexpert.org/institution/17950 -https://www.oceanexpert.org/institution/8648 -https://www.oceanexpert.org/institution/13863 -https://www.oceanexpert.org/institution/16797 -https://www.oceanexpert.org/expert/31221 -https://www.oceanexpert.org/expert/45180 -https://www.oceanexpert.org/institution/5747 -https://www.oceanexpert.org/expert/18552 -https://www.oceanexpert.org/expert/27077 -https://www.oceanexpert.org/expert/26328 -https://www.oceanexpert.org/expert/24733 -https://www.oceanexpert.org/expert/19705 -https://www.oceanexpert.org/expert/33304 -https://www.oceanexpert.org/institution/19348 -https://www.oceanexpert.org/expert/47663 -https://www.oceanexpert.org/expert/42150 -https://www.oceanexpert.org/expert/16425 -https://www.oceanexpert.org/expert/31803 -https://www.oceanexpert.org/expert/21036 -https://www.oceanexpert.org/expert/27257 -https://www.oceanexpert.org/expert/23591 -https://www.oceanexpert.org/expert/20520 -https://www.oceanexpert.org/expert/20173 -https://www.oceanexpert.org/event/3035 -https://www.oceanexpert.org/expert/32092 -https://www.oceanexpert.org/expert/40563 -https://www.oceanexpert.org/expert/37711 -https://www.oceanexpert.org/expert/35350 -https://www.oceanexpert.org/expert/27451 -https://www.oceanexpert.org/expert/32891 -https://www.oceanexpert.org/institution/21721 -https://www.oceanexpert.org/expert/40351 -https://www.oceanexpert.org/expert/37288 -https://www.oceanexpert.org/expert/7011 -https://www.oceanexpert.org/expert/17017 -https://www.oceanexpert.org/expert/47752 -https://www.oceanexpert.org/expert/28127 -https://www.oceanexpert.org/institution/20245 -https://www.oceanexpert.org/expert/36270 -https://www.oceanexpert.org/expert/27979 -https://www.oceanexpert.org/institution/17640 -https://www.oceanexpert.org/expert/26041 -https://www.oceanexpert.org/expert/36083 -https://www.oceanexpert.org/event/2238 -https://www.oceanexpert.org/expert/18686 -https://www.oceanexpert.org/expert/39566 -https://www.oceanexpert.org/institution/10344 -https://www.oceanexpert.org/expert/45557 -https://www.oceanexpert.org/expert/31464 -https://www.oceanexpert.org/expert/44732 -https://www.oceanexpert.org/institution/21665 -https://www.oceanexpert.org/institution/18371 -https://www.oceanexpert.org/institution/21829 -https://www.oceanexpert.org/expert/25989 -https://www.oceanexpert.org/institution/21028 -https://www.oceanexpert.org/expert/29371 -https://www.oceanexpert.org/expert/27280 -https://www.oceanexpert.org/expert/15862 -https://www.oceanexpert.org/expert/36732 -https://www.oceanexpert.org/institution/20248 -https://www.oceanexpert.org/expert/19035 -https://www.oceanexpert.org/institution/20162 -https://www.oceanexpert.org/expert/20824 -https://www.oceanexpert.org/institution/21439 -https://www.oceanexpert.org/expert/12167 -https://www.oceanexpert.org/expert/29858 -https://www.oceanexpert.org/expert/14423 -https://www.oceanexpert.org/institution/13707 -https://www.oceanexpert.org/expert/33881 -https://www.oceanexpert.org/institution/21716 -https://www.oceanexpert.org/event/146 -https://www.oceanexpert.org/institution/11835 -https://www.oceanexpert.org/event/1143 -https://www.oceanexpert.org/institution/20378 -https://www.oceanexpert.org/institution/10124 -https://www.oceanexpert.org/expert/35800 -https://www.oceanexpert.org/expert/30099 -https://www.oceanexpert.org/expert/44969 -https://www.oceanexpert.org/event/794 -https://www.oceanexpert.org/expert/25558 -https://www.oceanexpert.org/event/3040 -https://www.oceanexpert.org/expert/17076 -https://www.oceanexpert.org/expert/21734 -https://www.oceanexpert.org/expert/45711 -https://www.oceanexpert.org/event/1621 -https://www.oceanexpert.org/expert/26176 -https://www.oceanexpert.org/institution/5821 -https://www.oceanexpert.org/event/1401 -https://www.oceanexpert.org/expert/19178 -https://www.oceanexpert.org/expert/17596 -https://www.oceanexpert.org/expert/8756 -https://www.oceanexpert.org/institution/21239 -https://www.oceanexpert.org/institution/19321 -https://www.oceanexpert.org/expert/26374 -https://www.oceanexpert.org/expert/35238 -https://www.oceanexpert.org/expert/19642 -https://www.oceanexpert.org/expert/39176 -https://www.oceanexpert.org/expert/46741 -https://www.oceanexpert.org/expert/22372 -https://www.oceanexpert.org/institution/18319 -https://www.oceanexpert.org/event/1279 -https://www.oceanexpert.org/expert/46421 -https://www.oceanexpert.org/expert/12011 -https://www.oceanexpert.org/event/101 -https://www.oceanexpert.org/expert/37466 -https://www.oceanexpert.org/institution/19677 -https://www.oceanexpert.org/expert/22033 -https://www.oceanexpert.org/expert/15739 -https://www.oceanexpert.org/expert/21938 -https://www.oceanexpert.org/expert/15315 -https://www.oceanexpert.org/expert/29755 -https://www.oceanexpert.org/expert/25815 -https://www.oceanexpert.org/event/1848 -https://www.oceanexpert.org/expert/32458 -https://www.oceanexpert.org/institution/7684 -https://www.oceanexpert.org/institution/18602 -https://www.oceanexpert.org/expert/20814 -https://www.oceanexpert.org/expert/31054 -https://www.oceanexpert.org/expert/11534 -https://www.oceanexpert.org/expert/21471 -https://www.oceanexpert.org/event/3107 -https://www.oceanexpert.org/expert/27777 -https://www.oceanexpert.org/expert/4471 -https://www.oceanexpert.org/expert/19014 -https://www.oceanexpert.org/event/2669 -https://www.oceanexpert.org/expert/7112 -https://www.oceanexpert.org/expert/25450 -https://www.oceanexpert.org/institution/10413 -https://www.oceanexpert.org/expert/37464 -https://www.oceanexpert.org/expert/27091 -https://www.oceanexpert.org/expert/39346 -https://www.oceanexpert.org/expert/47072 -https://www.oceanexpert.org/expert/30763 -https://www.oceanexpert.org/expert/44453 -https://www.oceanexpert.org/expert/16154 -https://www.oceanexpert.org/event/2804 -https://www.oceanexpert.org/expert/27802 -https://www.oceanexpert.org/institution/22088 -https://www.oceanexpert.org/institution/12553 -https://www.oceanexpert.org/expert/25862 -https://www.oceanexpert.org/event/389 -https://www.oceanexpert.org/expert/38186 -https://www.oceanexpert.org/expert/22537 -https://www.oceanexpert.org/expert/1575 -https://www.oceanexpert.org/expert/47437 -https://www.oceanexpert.org/event/128 -https://www.oceanexpert.org/institution/12536 -https://www.oceanexpert.org/institution/20928 -https://www.oceanexpert.org/expert/46211 -https://www.oceanexpert.org/institution/13025 -https://www.oceanexpert.org/event/3103 -https://www.oceanexpert.org/expert/38026 -https://www.oceanexpert.org/institution/19910 -https://www.oceanexpert.org/expert/34548 -https://www.oceanexpert.org/institution/18631 -https://www.oceanexpert.org/expert/32801 -https://www.oceanexpert.org/event/320 -https://www.oceanexpert.org/institution/11809 -https://www.oceanexpert.org/expert/48200 -https://www.oceanexpert.org/institution/22140 -https://www.oceanexpert.org/expert/48536 -https://www.oceanexpert.org/expert/25216 -https://www.oceanexpert.org/expert/47517 -https://www.oceanexpert.org/institution/12545 -https://www.oceanexpert.org/expert/24463 -https://www.oceanexpert.org/institution/19541 -https://www.oceanexpert.org/expert/17208 -https://www.oceanexpert.org/expert/38171 -https://www.oceanexpert.org/expert/28126 -https://www.oceanexpert.org/expert/48481 -https://www.oceanexpert.org/expert/22443 -https://www.oceanexpert.org/institution/21812 -https://www.oceanexpert.org/institution/12799 -https://www.oceanexpert.org/expert/21749 -https://www.oceanexpert.org/expert/40644 -https://www.oceanexpert.org/expert/38903 -https://www.oceanexpert.org/expert/22545 -https://www.oceanexpert.org/expert/4316 -https://www.oceanexpert.org/expert/14838 -https://www.oceanexpert.org/expert/19359 -https://www.oceanexpert.org/expert/48349 -https://www.oceanexpert.org/expert/22035 -https://www.oceanexpert.org/institution/13283 -https://www.oceanexpert.org/expert/42674 -https://www.oceanexpert.org/event/1377 -https://www.oceanexpert.org/institution/8099 -https://www.oceanexpert.org/expert/21667 -https://www.oceanexpert.org/expert/37026 -https://www.oceanexpert.org/expert/25671 -https://www.oceanexpert.org/expert/11508 -https://www.oceanexpert.org/expert/19886 -https://www.oceanexpert.org/expert/120 -https://www.oceanexpert.org/expert/31586 -https://www.oceanexpert.org/expert/20335 -https://www.oceanexpert.org/expert/27358 -https://www.oceanexpert.org/expert/18449 -https://www.oceanexpert.org/expert/2613 -https://www.oceanexpert.org/expert/44311 -https://www.oceanexpert.org/expert/25886 -https://www.oceanexpert.org/expert/34710 -https://www.oceanexpert.org/expert/23308 -https://www.oceanexpert.org/expert/33929 -https://www.oceanexpert.org/expert/48295 -https://www.oceanexpert.org/event/542 -https://www.oceanexpert.org/institution/18681 -https://www.oceanexpert.org/institution/6720 -https://www.oceanexpert.org/expert/23491 -https://www.oceanexpert.org/expert/28257 -https://www.oceanexpert.org/expert/27711 -https://www.oceanexpert.org/institution/18086 -https://www.oceanexpert.org/expert/28427 -https://www.oceanexpert.org/institution/19185 -https://www.oceanexpert.org/expert/44972 -https://www.oceanexpert.org/expert/31353 -https://www.oceanexpert.org/expert/48468 -https://www.oceanexpert.org/expert/35235 -https://www.oceanexpert.org/expert/36334 -https://www.oceanexpert.org/expert/18592 -https://www.oceanexpert.org/expert/24748 -https://www.oceanexpert.org/institution/16372 -https://www.oceanexpert.org/expert/630 -https://www.oceanexpert.org/expert/47076 -https://www.oceanexpert.org/expert/31907 -https://www.oceanexpert.org/expert/18916 -https://www.oceanexpert.org/expert/38299 -https://www.oceanexpert.org/institution/20976 -https://www.oceanexpert.org/expert/29653 -https://www.oceanexpert.org/event/2981 -https://www.oceanexpert.org/expert/12500 -https://www.oceanexpert.org/expert/38912 -https://www.oceanexpert.org/event/2477 -https://www.oceanexpert.org/event/807 -https://www.oceanexpert.org/expert/24559 -https://www.oceanexpert.org/institution/5632 -https://www.oceanexpert.org/expert/630 -https://www.oceanexpert.org/event/2656 -https://www.oceanexpert.org/event/304 -https://www.oceanexpert.org/expert/35576 -https://www.oceanexpert.org/institution/21638 -https://www.oceanexpert.org/expert/36834 -https://www.oceanexpert.org/institution/9039 -https://www.oceanexpert.org/expert/24423 -https://www.oceanexpert.org/institution/21310 -https://www.oceanexpert.org/institution/19769 -https://www.oceanexpert.org/expert/29141 -https://www.oceanexpert.org/institution/13516 -https://www.oceanexpert.org/event/1149 -https://www.oceanexpert.org/expert/22775 -https://www.oceanexpert.org/expert/12999 -https://www.oceanexpert.org/expert/48616 -https://www.oceanexpert.org/expert/23833 -https://www.oceanexpert.org/institution/21282 -https://www.oceanexpert.org/event/1384 -https://www.oceanexpert.org/expert/25656 -https://www.oceanexpert.org/institution/10267 -https://www.oceanexpert.org/expert/818 -https://www.oceanexpert.org/expert/44766 -https://www.oceanexpert.org/expert/46149 -https://www.oceanexpert.org/expert/29738 -https://www.oceanexpert.org/expert/27456 -https://www.oceanexpert.org/expert/34147 -https://www.oceanexpert.org/expert/43093 -https://www.oceanexpert.org/expert/35578 -https://www.oceanexpert.org/expert/25607 -https://www.oceanexpert.org/expert/37941 -https://www.oceanexpert.org/institution/11548 -https://www.oceanexpert.org/expert/44457 -https://www.oceanexpert.org/expert/20211 -https://www.oceanexpert.org/institution/20610 -https://www.oceanexpert.org/expert/24702 -https://www.oceanexpert.org/expert/35769 -https://www.oceanexpert.org/expert/47581 -https://www.oceanexpert.org/expert/39994 -https://www.oceanexpert.org/expert/23114 -https://www.oceanexpert.org/expert/14201 -https://www.oceanexpert.org/expert/32791 -https://www.oceanexpert.org/institution/21124 -https://www.oceanexpert.org/expert/18865 -https://www.oceanexpert.org/expert/29751 -https://www.oceanexpert.org/institution/8212 -https://www.oceanexpert.org/event/2501 -https://www.oceanexpert.org/expert/17351 -https://www.oceanexpert.org/expert/8786 -https://www.oceanexpert.org/expert/22393 -https://www.oceanexpert.org/institution/18069 -https://www.oceanexpert.org/expert/25721 -https://www.oceanexpert.org/event/70 -https://www.oceanexpert.org/event/1229 -https://www.oceanexpert.org/expert/15960 -https://www.oceanexpert.org/institution/7540 -https://www.oceanexpert.org/expert/29495 -https://www.oceanexpert.org/expert/37155 -https://www.oceanexpert.org/expert/47585 -https://www.oceanexpert.org/expert/28124 -https://www.oceanexpert.org/expert/34099 -https://www.oceanexpert.org/expert/31375 -https://www.oceanexpert.org/institution/20707 -https://www.oceanexpert.org/institution/18853 -https://www.oceanexpert.org/expert/12785 -https://www.oceanexpert.org/expert/29215 -https://www.oceanexpert.org/expert/47784 -https://www.oceanexpert.org/expert/24833 -https://www.oceanexpert.org/expert/22929 -https://www.oceanexpert.org/event/2850 -https://www.oceanexpert.org/institution/19077 -https://www.oceanexpert.org/institution/15043 -https://www.oceanexpert.org/event/1391 -https://www.oceanexpert.org/expert/16679 -https://www.oceanexpert.org/expert/19084 -https://www.oceanexpert.org/expert/33930 -https://www.oceanexpert.org/institution/17700 -https://www.oceanexpert.org/institution/21162 -https://www.oceanexpert.org/expert/20330 -https://www.oceanexpert.org/expert/45923 -https://www.oceanexpert.org/event/434 -https://www.oceanexpert.org/expert/33708 -https://www.oceanexpert.org/event/1569 -https://www.oceanexpert.org/expert/47731 -https://www.oceanexpert.org/expert/30904 -https://www.oceanexpert.org/expert/27378 -https://www.oceanexpert.org/institution/21314 -https://www.oceanexpert.org/expert/23215 -https://www.oceanexpert.org/expert/38182 -https://www.oceanexpert.org/expert/24023 -https://www.oceanexpert.org/expert/12313 -https://www.oceanexpert.org/expert/25732 -https://www.oceanexpert.org/event/1579 -https://www.oceanexpert.org/institution/9024 -https://www.oceanexpert.org/expert/21602 -https://www.oceanexpert.org/expert/30589 -https://www.oceanexpert.org/institution/20635 -https://www.oceanexpert.org/expert/48758 -https://www.oceanexpert.org/institution/17896 -https://www.oceanexpert.org/expert/25427 -https://www.oceanexpert.org/expert/25447 -https://www.oceanexpert.org/expert/18332 -https://www.oceanexpert.org/expert/17145 -https://www.oceanexpert.org/institution/18112 -https://www.oceanexpert.org/event/1511 -https://www.oceanexpert.org/expert/42836 -https://www.oceanexpert.org/institution/12932 -https://www.oceanexpert.org/expert/19530 -https://www.oceanexpert.org/expert/12193 -https://www.oceanexpert.org/expert/25490 -https://www.oceanexpert.org/expert/36849 -https://www.oceanexpert.org/institution/21182 -https://www.oceanexpert.org/expert/25977 -https://www.oceanexpert.org/expert/46289 -https://www.oceanexpert.org/expert/35431 -https://www.oceanexpert.org/expert/26248 -https://www.oceanexpert.org/expert/32242 -https://www.oceanexpert.org/expert/48110 -https://www.oceanexpert.org/expert/23525 -https://www.oceanexpert.org/expert/48035 -https://www.oceanexpert.org/expert/28474 -https://www.oceanexpert.org/event/553 -https://www.oceanexpert.org/expert/20450 -https://www.oceanexpert.org/expert/32584 -https://www.oceanexpert.org/institution/22150 -https://www.oceanexpert.org/institution/18498 -https://www.oceanexpert.org/event/1983 -https://www.oceanexpert.org/expert/47302 -https://www.oceanexpert.org/expert/27531 -https://www.oceanexpert.org/institution/18059 -https://www.oceanexpert.org/expert/9163 -https://www.oceanexpert.org/expert/21551 -https://www.oceanexpert.org/institution/19087 -https://www.oceanexpert.org/expert/18148 -https://www.oceanexpert.org/expert/18001 -https://www.oceanexpert.org/expert/18793 -https://www.oceanexpert.org/expert/38851 -https://www.oceanexpert.org/expert/31257 -https://www.oceanexpert.org/expert/11638 -https://www.oceanexpert.org/expert/13963 -https://www.oceanexpert.org/expert/43373 -https://www.oceanexpert.org/event/591 -https://www.oceanexpert.org/expert/36104 -https://www.oceanexpert.org/expert/43900 -https://www.oceanexpert.org/institution/12283 -https://www.oceanexpert.org/expert/47761 -https://www.oceanexpert.org/institution/21625 -https://www.oceanexpert.org/expert/25370 -https://www.oceanexpert.org/institution/15219 -https://www.oceanexpert.org/institution/18770 -https://www.oceanexpert.org/expert/26771 -https://www.oceanexpert.org/institution/21342 -https://www.oceanexpert.org/event/1947 -https://www.oceanexpert.org/expert/13030 -https://www.oceanexpert.org/expert/33459 -https://www.oceanexpert.org/institution/18343 -https://www.oceanexpert.org/event/2656 -https://www.oceanexpert.org/expert/23376 -https://www.oceanexpert.org/expert/45684 -https://www.oceanexpert.org/institution/13772 -https://www.oceanexpert.org/expert/33220 -https://www.oceanexpert.org/institution/12633 -https://www.oceanexpert.org/expert/18002 -https://www.oceanexpert.org/institution/12978 -https://www.oceanexpert.org/expert/12417 -https://www.oceanexpert.org/institution/12823 -https://www.oceanexpert.org/institution/21611 -https://www.oceanexpert.org/institution/10307 -https://www.oceanexpert.org/expert/38241 -https://www.oceanexpert.org/institution/18593 -https://www.oceanexpert.org/expert/47613 -https://www.oceanexpert.org/expert/21454 -https://www.oceanexpert.org/expert/32474 -https://www.oceanexpert.org/expert/26739 -https://www.oceanexpert.org/event/45 -https://www.oceanexpert.org/expert/16865 -https://www.oceanexpert.org/expert/46785 -https://www.oceanexpert.org/expert/47682 -https://www.oceanexpert.org/expert/39985 -https://www.oceanexpert.org/institution/21989 -https://www.oceanexpert.org/expert/14072 -https://www.oceanexpert.org/expert/26974 -https://www.oceanexpert.org/expert/33763 -https://www.oceanexpert.org/expert/48152 -https://www.oceanexpert.org/expert/46999 -https://www.oceanexpert.org/expert/48492 -https://www.oceanexpert.org/expert/28132 -https://www.oceanexpert.org/expert/28303 -https://www.oceanexpert.org/expert/23112 -https://www.oceanexpert.org/expert/36809 -https://www.oceanexpert.org/expert/37668 -https://www.oceanexpert.org/expert/36700 -https://www.oceanexpert.org/event/269 -https://www.oceanexpert.org/expert/45902 -https://www.oceanexpert.org/expert/46904 -https://www.oceanexpert.org/expert/12938 -https://www.oceanexpert.org/expert/16138 -https://www.oceanexpert.org/expert/44545 -https://www.oceanexpert.org/expert/43156 -https://www.oceanexpert.org/institution/10328 -https://www.oceanexpert.org/expert/27830 -https://www.oceanexpert.org/expert/26415 -https://www.oceanexpert.org/expert/39313 -https://www.oceanexpert.org/expert/27617 -https://www.oceanexpert.org/event/180 -https://www.oceanexpert.org/institution/18835 -https://www.oceanexpert.org/expert/19866 -https://www.oceanexpert.org/expert/44852 -https://www.oceanexpert.org/expert/575 -https://www.oceanexpert.org/expert/6924 -https://www.oceanexpert.org/institution/19011 -https://www.oceanexpert.org/institution/10330 -https://www.oceanexpert.org/institution/20262 -https://www.oceanexpert.org/institution/12716 -https://www.oceanexpert.org/expert/23815 -https://www.oceanexpert.org/institution/11050 -https://www.oceanexpert.org/expert/44251 -https://www.oceanexpert.org/institution/15813 -https://www.oceanexpert.org/expert/17841 -https://www.oceanexpert.org/expert/23360 -https://www.oceanexpert.org/expert/2114 -https://www.oceanexpert.org/institution/19591 -https://www.oceanexpert.org/expert/25851 -https://www.oceanexpert.org/expert/34363 -https://www.oceanexpert.org/expert/12029 -https://www.oceanexpert.org/expert/38195 -https://www.oceanexpert.org/event/1809 -https://www.oceanexpert.org/expert/45990 -https://www.oceanexpert.org/expert/39460 -https://www.oceanexpert.org/institution/20815 -https://www.oceanexpert.org/institution/20821 -https://www.oceanexpert.org/institution/15796 -https://www.oceanexpert.org/institution/16865 -https://www.oceanexpert.org/expert/17250 -https://www.oceanexpert.org/expert/21157 -https://www.oceanexpert.org/expert/33859 -https://www.oceanexpert.org/expert/23536 -https://www.oceanexpert.org/expert/19933 -https://www.oceanexpert.org/institution/12771 -https://www.oceanexpert.org/expert/12400 -https://www.oceanexpert.org/expert/25065 -https://www.oceanexpert.org/institution/6396 -https://www.oceanexpert.org/expert/44411 -https://www.oceanexpert.org/expert/20253 -https://www.oceanexpert.org/event/222 -https://www.oceanexpert.org/expert/21183 -https://www.oceanexpert.org/expert/18382 -https://www.oceanexpert.org/institution/19137 -https://www.oceanexpert.org/event/1941 -https://www.oceanexpert.org/expert/16051 -https://www.oceanexpert.org/institution/14388 -https://www.oceanexpert.org/expert/24271 -https://www.oceanexpert.org/event/247 -https://www.oceanexpert.org/expert/39347 -https://www.oceanexpert.org/institution/5206 -https://www.oceanexpert.org/institution/20622 -https://www.oceanexpert.org/institution/6375 -https://www.oceanexpert.org/expert/28411 -https://www.oceanexpert.org/expert/45412 -https://www.oceanexpert.org/expert/16664 -https://www.oceanexpert.org/event/1812 -https://www.oceanexpert.org/expert/28491 -https://www.oceanexpert.org/expert/27455 -https://www.oceanexpert.org/institution/20720 -https://www.oceanexpert.org/expert/39472 -https://www.oceanexpert.org/expert/24062 -https://www.oceanexpert.org/institution/18168 -https://www.oceanexpert.org/expert/13082 -https://www.oceanexpert.org/institution/18420 -https://www.oceanexpert.org/expert/45139 -https://www.oceanexpert.org/expert/22926 -https://www.oceanexpert.org/expert/22875 -https://www.oceanexpert.org/event/3123 -https://www.oceanexpert.org/expert/20493 -https://www.oceanexpert.org/expert/19338 -https://www.oceanexpert.org/expert/46561 -https://www.oceanexpert.org/expert/11343 -https://www.oceanexpert.org/expert/35910 -https://www.oceanexpert.org/institution/20799 -https://www.oceanexpert.org/expert/11035 -https://www.oceanexpert.org/expert/25953 -https://www.oceanexpert.org/expert/29705 -https://www.oceanexpert.org/institution/17833 -https://www.oceanexpert.org/expert/30064 -https://www.oceanexpert.org/expert/44319 -https://www.oceanexpert.org/expert/22977 -https://www.oceanexpert.org/expert/22442 -https://www.oceanexpert.org/expert/36900 -https://www.oceanexpert.org/institution/17039 -https://www.oceanexpert.org/institution/14273 -https://www.oceanexpert.org/institution/18196 -https://www.oceanexpert.org/expert/27333 -https://www.oceanexpert.org/expert/313 -https://www.oceanexpert.org/expert/34309 -https://www.oceanexpert.org/institution/18218 -https://www.oceanexpert.org/event/832 -https://www.oceanexpert.org/expert/19588 -https://www.oceanexpert.org/expert/35313 -https://www.oceanexpert.org/expert/48594 -https://www.oceanexpert.org/institution/8236 -https://www.oceanexpert.org/expert/37363 -https://www.oceanexpert.org/expert/22209 -https://www.oceanexpert.org/institution/21494 -https://www.oceanexpert.org/institution/21134 -https://www.oceanexpert.org/expert/23310 -https://www.oceanexpert.org/institution/20038 -https://www.oceanexpert.org/expert/36480 -https://www.oceanexpert.org/expert/8455 -https://www.oceanexpert.org/expert/37462 -https://www.oceanexpert.org/expert/4098 -https://www.oceanexpert.org/expert/26753 -https://www.oceanexpert.org/institution/19782 -https://www.oceanexpert.org/institution/19600 -https://www.oceanexpert.org/expert/20418 -https://www.oceanexpert.org/expert/21060 -https://www.oceanexpert.org/expert/26871 -https://www.oceanexpert.org/event/2157 -https://www.oceanexpert.org/expert/48753 -https://www.oceanexpert.org/event/1092 -https://www.oceanexpert.org/expert/16101 -https://www.oceanexpert.org/expert/42957 -https://www.oceanexpert.org/institution/18025 -https://www.oceanexpert.org/institution/21872 -https://www.oceanexpert.org/expert/44236 -https://www.oceanexpert.org/expert/12578 -https://www.oceanexpert.org/expert/48303 -https://www.oceanexpert.org/expert/43729 -https://www.oceanexpert.org/expert/44938 -https://www.oceanexpert.org/expert/44636 -https://www.oceanexpert.org/expert/12817 -https://www.oceanexpert.org/expert/32778 -https://www.oceanexpert.org/expert/25857 -https://www.oceanexpert.org/expert/31122 -https://www.oceanexpert.org/expert/40218 -https://www.oceanexpert.org/event/2527 -https://www.oceanexpert.org/institution/18397 -https://www.oceanexpert.org/expert/36023 -https://www.oceanexpert.org/expert/13954 -https://www.oceanexpert.org/institution/10971 -https://www.oceanexpert.org/institution/18248 -https://www.oceanexpert.org/institution/7618 -https://www.oceanexpert.org/expert/22442 -https://www.oceanexpert.org/institution/17813 -https://www.oceanexpert.org/expert/30882 -https://www.oceanexpert.org/expert/25043 -https://www.oceanexpert.org/expert/21786 -https://www.oceanexpert.org/expert/17128 -https://www.oceanexpert.org/institution/14840 -https://www.oceanexpert.org/expert/18317 -https://www.oceanexpert.org/expert/38059 -https://www.oceanexpert.org/expert/20868 -https://www.oceanexpert.org/expert/44748 -https://www.oceanexpert.org/expert/25360 -https://www.oceanexpert.org/institution/7642 -https://www.oceanexpert.org/institution/20941 -https://www.oceanexpert.org/institution/18287 -https://www.oceanexpert.org/institution/18588 -https://www.oceanexpert.org/expert/27199 -https://www.oceanexpert.org/expert/18709 -https://www.oceanexpert.org/expert/23753 -https://www.oceanexpert.org/event/1203 -https://www.oceanexpert.org/expert/1845 -https://www.oceanexpert.org/institution/18818 -https://www.oceanexpert.org/expert/48494 -https://www.oceanexpert.org/institution/20784 -https://www.oceanexpert.org/event/640 -https://www.oceanexpert.org/institution/18802 -https://www.oceanexpert.org/institution/18441 -https://www.oceanexpert.org/expert/33024 -https://www.oceanexpert.org/expert/39217 -https://www.oceanexpert.org/institution/18396 -https://www.oceanexpert.org/institution/9838 -https://www.oceanexpert.org/expert/30064 -https://www.oceanexpert.org/expert/26049 -https://www.oceanexpert.org/expert/29880 -https://www.oceanexpert.org/event/1723 -https://www.oceanexpert.org/expert/4470 -https://www.oceanexpert.org/expert/6053 -https://www.oceanexpert.org/expert/23551 -https://www.oceanexpert.org/expert/23384 -https://www.oceanexpert.org/expert/27750 -https://www.oceanexpert.org/event/232 -https://www.oceanexpert.org/expert/23559 -https://www.oceanexpert.org/expert/44795 -https://www.oceanexpert.org/expert/34658 -https://www.oceanexpert.org/institution/14425 -https://www.oceanexpert.org/expert/23037 -https://www.oceanexpert.org/institution/14838 -https://www.oceanexpert.org/expert/45374 -https://www.oceanexpert.org/expert/21644 -https://www.oceanexpert.org/expert/47077 -https://www.oceanexpert.org/expert/20358 -https://www.oceanexpert.org/expert/21142 -https://www.oceanexpert.org/expert/31372 -https://www.oceanexpert.org/expert/22500 -https://www.oceanexpert.org/expert/25699 -https://www.oceanexpert.org/expert/19567 -https://www.oceanexpert.org/event/2280 -https://www.oceanexpert.org/institution/8613 -https://www.oceanexpert.org/expert/34750 -https://www.oceanexpert.org/institution/21233 -https://www.oceanexpert.org/expert/25274 -https://www.oceanexpert.org/expert/38872 -https://www.oceanexpert.org/event/2078 -https://www.oceanexpert.org/event/251 -https://www.oceanexpert.org/institution/16385 -https://www.oceanexpert.org/expert/17941 -https://www.oceanexpert.org/institution/17979 -https://www.oceanexpert.org/expert/34519 -https://www.oceanexpert.org/expert/23181 -https://www.oceanexpert.org/expert/22623 -https://www.oceanexpert.org/expert/15460 -https://www.oceanexpert.org/institution/12382 -https://www.oceanexpert.org/institution/19928 -https://www.oceanexpert.org/expert/20540 -https://www.oceanexpert.org/expert/27181 -https://www.oceanexpert.org/expert/19908 -https://www.oceanexpert.org/expert/30179 -https://www.oceanexpert.org/expert/2212 -https://www.oceanexpert.org/expert/21539 -https://www.oceanexpert.org/expert/1312 -https://www.oceanexpert.org/expert/8298 -https://www.oceanexpert.org/institution/21487 -https://www.oceanexpert.org/institution/6842 -https://www.oceanexpert.org/event/1041 -https://www.oceanexpert.org/expert/24502 -https://www.oceanexpert.org/expert/25811 -https://www.oceanexpert.org/expert/7175 -https://www.oceanexpert.org/expert/26137 -https://www.oceanexpert.org/expert/45944 -https://www.oceanexpert.org/expert/34643 -https://www.oceanexpert.org/event/1985 -https://www.oceanexpert.org/institution/21264 -https://www.oceanexpert.org/institution/11578 -https://www.oceanexpert.org/expert/37295 -https://www.oceanexpert.org/expert/21024 -https://www.oceanexpert.org/institution/20524 -https://www.oceanexpert.org/expert/45728 -https://www.oceanexpert.org/expert/39119 -https://www.oceanexpert.org/expert/27602 -https://www.oceanexpert.org/expert/217 -https://www.oceanexpert.org/expert/31164 -https://www.oceanexpert.org/expert/48298 -https://www.oceanexpert.org/expert/47766 -https://www.oceanexpert.org/expert/20062 -https://www.oceanexpert.org/expert/27014 -https://www.oceanexpert.org/event/2099 -https://www.oceanexpert.org/expert/15030 -https://www.oceanexpert.org/event/508 -https://www.oceanexpert.org/expert/35944 -https://www.oceanexpert.org/institution/19977 -https://www.oceanexpert.org/expert/28476 -https://www.oceanexpert.org/expert/31331 -https://www.oceanexpert.org/institution/21448 -https://www.oceanexpert.org/expert/38470 -https://www.oceanexpert.org/institution/19450 -https://www.oceanexpert.org/expert/23390 -https://www.oceanexpert.org/expert/19113 -https://www.oceanexpert.org/expert/37347 -https://www.oceanexpert.org/institution/21578 -https://www.oceanexpert.org/expert/24667 -https://www.oceanexpert.org/expert/7515 -https://www.oceanexpert.org/expert/1961 -https://www.oceanexpert.org/institution/16296 -https://www.oceanexpert.org/expert/21826 -https://www.oceanexpert.org/expert/31690 -https://www.oceanexpert.org/institution/22020 -https://www.oceanexpert.org/expert/17048 -https://www.oceanexpert.org/institution/19381 -https://www.oceanexpert.org/expert/47794 -https://www.oceanexpert.org/expert/13689 -https://www.oceanexpert.org/expert/19967 -https://www.oceanexpert.org/expert/43968 -https://www.oceanexpert.org/institution/19559 -https://www.oceanexpert.org/expert/38482 -https://www.oceanexpert.org/expert/45571 -https://www.oceanexpert.org/institution/7559 -https://www.oceanexpert.org/institution/19155 -https://www.oceanexpert.org/expert/37279 -https://www.oceanexpert.org/expert/18052 -https://www.oceanexpert.org/expert/42635 -https://www.oceanexpert.org/expert/26159 -https://www.oceanexpert.org/expert/45876 -https://www.oceanexpert.org/institution/21519 -https://www.oceanexpert.org/expert/34638 -https://www.oceanexpert.org/institution/13445 -https://www.oceanexpert.org/event/2359 -https://www.oceanexpert.org/expert/30487 -https://www.oceanexpert.org/institution/13266 -https://www.oceanexpert.org/expert/36366 -https://www.oceanexpert.org/institution/13539 -https://www.oceanexpert.org/expert/36718 -https://www.oceanexpert.org/event/2333 -https://www.oceanexpert.org/institution/18442 -https://www.oceanexpert.org/expert/31937 -https://www.oceanexpert.org/expert/34634 -https://www.oceanexpert.org/expert/16878 -https://www.oceanexpert.org/expert/32521 -https://www.oceanexpert.org/expert/8695 -https://www.oceanexpert.org/event/3080 -https://www.oceanexpert.org/expert/25118 -https://www.oceanexpert.org/expert/19501 -https://www.oceanexpert.org/expert/21758 -https://www.oceanexpert.org/institution/17904 -https://www.oceanexpert.org/expert/40607 -https://www.oceanexpert.org/expert/7137 -https://www.oceanexpert.org/expert/16127 -https://www.oceanexpert.org/institution/15024 -https://www.oceanexpert.org/expert/23572 -https://www.oceanexpert.org/expert/26328 -https://www.oceanexpert.org/event/1130 -https://www.oceanexpert.org/expert/19550 -https://www.oceanexpert.org/expert/16151 -https://www.oceanexpert.org/expert/47048 -https://www.oceanexpert.org/expert/25411 -https://www.oceanexpert.org/event/1511 -https://www.oceanexpert.org/expert/3827 -https://www.oceanexpert.org/institution/9308 -https://www.oceanexpert.org/event/2724 -https://www.oceanexpert.org/institution/16484 -https://www.oceanexpert.org/expert/48926 -https://www.oceanexpert.org/expert/48571 -https://www.oceanexpert.org/institution/10640 -https://www.oceanexpert.org/institution/18080 -https://www.oceanexpert.org/expert/48950 -https://www.oceanexpert.org/event/2747 -https://www.oceanexpert.org/institution/21074 -https://www.oceanexpert.org/expert/38974 -https://www.oceanexpert.org/expert/39978 -https://www.oceanexpert.org/institution/19550 -https://www.oceanexpert.org/expert/4902 -https://www.oceanexpert.org/expert/30882 -https://www.oceanexpert.org/institution/19626 -https://www.oceanexpert.org/event/2491 -https://www.oceanexpert.org/expert/35174 -https://www.oceanexpert.org/institution/13580 -https://www.oceanexpert.org/event/675 -https://www.oceanexpert.org/institution/15653 -https://www.oceanexpert.org/expert/18901 -https://www.oceanexpert.org/institution/10491 -https://www.oceanexpert.org/expert/19275 -https://www.oceanexpert.org/expert/16622 -https://www.oceanexpert.org/expert/17518 -https://www.oceanexpert.org/expert/37249 -https://www.oceanexpert.org/expert/20184 -https://www.oceanexpert.org/institution/20809 -https://www.oceanexpert.org/institution/21306 -https://www.oceanexpert.org/institution/9197 -https://www.oceanexpert.org/expert/19354 -https://www.oceanexpert.org/expert/45356 -https://www.oceanexpert.org/expert/29340 -https://www.oceanexpert.org/institution/11021 -https://www.oceanexpert.org/institution/10053 -https://www.oceanexpert.org/expert/25954 -https://www.oceanexpert.org/institution/21971 -https://www.oceanexpert.org/institution/19565 -https://www.oceanexpert.org/expert/32652 -https://www.oceanexpert.org/expert/21441 -https://www.oceanexpert.org/expert/38136 -https://www.oceanexpert.org/institution/19528 -https://www.oceanexpert.org/institution/18390 -https://www.oceanexpert.org/expert/20020 -https://www.oceanexpert.org/institution/12858 -https://www.oceanexpert.org/institution/14003 -https://www.oceanexpert.org/expert/36244 -https://www.oceanexpert.org/expert/11071 -https://www.oceanexpert.org/expert/42716 -https://www.oceanexpert.org/institution/11625 -https://www.oceanexpert.org/expert/37162 -https://www.oceanexpert.org/institution/16884 -https://www.oceanexpert.org/expert/24871 -https://www.oceanexpert.org/expert/20380 -https://www.oceanexpert.org/expert/43105 -https://www.oceanexpert.org/expert/46058 -https://www.oceanexpert.org/expert/8819 -https://www.oceanexpert.org/institution/13519 -https://www.oceanexpert.org/institution/17871 -https://www.oceanexpert.org/institution/16132 -https://www.oceanexpert.org/expert/48168 -https://www.oceanexpert.org/expert/19672 -https://www.oceanexpert.org/expert/46537 -https://www.oceanexpert.org/expert/17983 -https://www.oceanexpert.org/event/1080 -https://www.oceanexpert.org/institution/21483 -https://www.oceanexpert.org/expert/43024 -https://www.oceanexpert.org/expert/45199 -https://www.oceanexpert.org/expert/35380 -https://www.oceanexpert.org/expert/38174 -https://www.oceanexpert.org/institution/15577 -https://www.oceanexpert.org/event/2868 -https://www.oceanexpert.org/event/2674 -https://www.oceanexpert.org/expert/44033 -https://www.oceanexpert.org/institution/21175 -https://www.oceanexpert.org/expert/26941 -https://www.oceanexpert.org/expert/42746 -https://www.oceanexpert.org/institution/16461 -https://www.oceanexpert.org/expert/48518 -https://www.oceanexpert.org/institution/8154 -https://www.oceanexpert.org/expert/25788 -https://www.oceanexpert.org/expert/20742 -https://www.oceanexpert.org/expert/35056 -https://www.oceanexpert.org/expert/27017 -https://www.oceanexpert.org/expert/41259 -https://www.oceanexpert.org/expert/47185 -https://www.oceanexpert.org/institution/11571 -https://www.oceanexpert.org/expert/23804 -https://www.oceanexpert.org/expert/44604 -https://www.oceanexpert.org/institution/19295 -https://www.oceanexpert.org/expert/11559 -https://www.oceanexpert.org/expert/47780 -https://www.oceanexpert.org/expert/45950 -https://www.oceanexpert.org/expert/22909 -https://www.oceanexpert.org/expert/47366 -https://www.oceanexpert.org/expert/39982 -https://www.oceanexpert.org/expert/47676 -https://www.oceanexpert.org/institution/15420 -https://www.oceanexpert.org/expert/23900 -https://www.oceanexpert.org/expert/15680 -https://www.oceanexpert.org/expert/35862 -https://www.oceanexpert.org/institution/5477 -https://www.oceanexpert.org/expert/17754 -https://www.oceanexpert.org/expert/32325 -https://www.oceanexpert.org/expert/46888 -https://www.oceanexpert.org/expert/45416 -https://www.oceanexpert.org/expert/29801 -https://www.oceanexpert.org/event/1966 -https://www.oceanexpert.org/expert/35471 -https://www.oceanexpert.org/expert/14391 -https://www.oceanexpert.org/event/1896 -https://www.oceanexpert.org/event/151 -https://www.oceanexpert.org/expert/27265 -https://www.oceanexpert.org/expert/32526 -https://www.oceanexpert.org/expert/16834 -https://www.oceanexpert.org/expert/37818 -https://www.oceanexpert.org/expert/19525 -https://www.oceanexpert.org/expert/36817 -https://www.oceanexpert.org/institution/19574 -https://www.oceanexpert.org/expert/47482 -https://www.oceanexpert.org/expert/6500 -https://www.oceanexpert.org/expert/5843 -https://www.oceanexpert.org/expert/18389 -https://www.oceanexpert.org/expert/21866 -https://www.oceanexpert.org/expert/36276 -https://www.oceanexpert.org/expert/27259 -https://www.oceanexpert.org/expert/46648 -https://www.oceanexpert.org/institution/12756 -https://www.oceanexpert.org/expert/12984 -https://www.oceanexpert.org/expert/37047 -https://www.oceanexpert.org/expert/27375 -https://www.oceanexpert.org/institution/7958 -https://www.oceanexpert.org/expert/40557 -https://www.oceanexpert.org/institution/21429 -https://www.oceanexpert.org/expert/48909 -https://www.oceanexpert.org/expert/25242 -https://www.oceanexpert.org/expert/35184 -https://www.oceanexpert.org/expert/34600 -https://www.oceanexpert.org/expert/42879 -https://www.oceanexpert.org/expert/8773 -https://www.oceanexpert.org/expert/36845 -https://www.oceanexpert.org/institution/7284 -https://www.oceanexpert.org/institution/18748 -https://www.oceanexpert.org/expert/45954 -https://www.oceanexpert.org/expert/23272 -https://www.oceanexpert.org/expert/33060 -https://www.oceanexpert.org/event/2132 -https://www.oceanexpert.org/expert/15559 -https://www.oceanexpert.org/institution/18415 -https://www.oceanexpert.org/event/343 -https://www.oceanexpert.org/institution/9417 -https://www.oceanexpert.org/expert/37142 -https://www.oceanexpert.org/institution/5027 -https://www.oceanexpert.org/expert/27992 -https://www.oceanexpert.org/expert/18965 -https://www.oceanexpert.org/event/1895 -https://www.oceanexpert.org/expert/21829 -https://www.oceanexpert.org/expert/6577 -https://www.oceanexpert.org/expert/28018 -https://www.oceanexpert.org/expert/34391 -https://www.oceanexpert.org/event/601 -https://www.oceanexpert.org/expert/13980 -https://www.oceanexpert.org/expert/43678 -https://www.oceanexpert.org/expert/19967 -https://www.oceanexpert.org/expert/17580 -https://www.oceanexpert.org/institution/8822 -https://www.oceanexpert.org/expert/25161 -https://www.oceanexpert.org/expert/18579 -https://www.oceanexpert.org/expert/21509 -https://www.oceanexpert.org/expert/14865 -https://www.oceanexpert.org/institution/18547 -https://www.oceanexpert.org/expert/48100 -https://www.oceanexpert.org/expert/45063 -https://www.oceanexpert.org/expert/37376 -https://www.oceanexpert.org/expert/33015 -https://www.oceanexpert.org/expert/48855 -https://www.oceanexpert.org/expert/25033 -https://www.oceanexpert.org/institution/8570 -https://www.oceanexpert.org/expert/34935 -https://www.oceanexpert.org/expert/45078 -https://www.oceanexpert.org/expert/45931 -https://www.oceanexpert.org/expert/42603 -https://www.oceanexpert.org/expert/20665 -https://www.oceanexpert.org/event/2889 -https://www.oceanexpert.org/expert/30273 -https://www.oceanexpert.org/event/1383 -https://www.oceanexpert.org/institution/13978 -https://www.oceanexpert.org/event/2715 -https://www.oceanexpert.org/expert/48770 -https://www.oceanexpert.org/expert/33754 -https://www.oceanexpert.org/expert/43310 -https://www.oceanexpert.org/event/2577 -https://www.oceanexpert.org/expert/15380 -https://www.oceanexpert.org/institution/21983 -https://www.oceanexpert.org/expert/1546 -https://www.oceanexpert.org/expert/27511 -https://www.oceanexpert.org/expert/21178 -https://www.oceanexpert.org/institution/16821 -https://www.oceanexpert.org/expert/12004 -https://www.oceanexpert.org/expert/39960 -https://www.oceanexpert.org/expert/20981 -https://www.oceanexpert.org/expert/38344 -https://www.oceanexpert.org/expert/26647 -https://www.oceanexpert.org/expert/34977 -https://www.oceanexpert.org/expert/43675 -https://www.oceanexpert.org/expert/29156 -https://www.oceanexpert.org/expert/20701 -https://www.oceanexpert.org/institution/11888 -https://www.oceanexpert.org/expert/26610 -https://www.oceanexpert.org/expert/21708 -https://www.oceanexpert.org/expert/18561 -https://www.oceanexpert.org/expert/32939 -https://www.oceanexpert.org/expert/17330 -https://www.oceanexpert.org/expert/28101 -https://www.oceanexpert.org/expert/24635 -https://www.oceanexpert.org/expert/4189 -https://www.oceanexpert.org/expert/24295 -https://www.oceanexpert.org/expert/47317 -https://www.oceanexpert.org/expert/17595 -https://www.oceanexpert.org/expert/47477 -https://www.oceanexpert.org/expert/21827 -https://www.oceanexpert.org/expert/8523 -https://www.oceanexpert.org/institution/20932 -https://www.oceanexpert.org/institution/21205 -https://www.oceanexpert.org/expert/41672 -https://www.oceanexpert.org/expert/47002 -https://www.oceanexpert.org/institution/14139 -https://www.oceanexpert.org/expert/21354 -https://www.oceanexpert.org/event/791 -https://www.oceanexpert.org/expert/47919 -https://www.oceanexpert.org/expert/46783 -https://www.oceanexpert.org/event/2613 -https://www.oceanexpert.org/institution/15942 -https://www.oceanexpert.org/expert/43385 -https://www.oceanexpert.org/event/2690 -https://www.oceanexpert.org/expert/24888 -https://www.oceanexpert.org/expert/32504 -https://www.oceanexpert.org/expert/16019 -https://www.oceanexpert.org/event/2337 -https://www.oceanexpert.org/expert/5521 -https://www.oceanexpert.org/expert/22599 -https://www.oceanexpert.org/event/2721 -https://www.oceanexpert.org/expert/35206 -https://www.oceanexpert.org/institution/13321 -https://www.oceanexpert.org/institution/13368 -https://www.oceanexpert.org/expert/43310 -https://www.oceanexpert.org/expert/45457 -https://www.oceanexpert.org/expert/20693 -https://www.oceanexpert.org/institution/20009 -https://www.oceanexpert.org/expert/48791 -https://www.oceanexpert.org/expert/26265 -https://www.oceanexpert.org/institution/10149 -https://www.oceanexpert.org/expert/35454 -https://www.oceanexpert.org/institution/7485 -https://www.oceanexpert.org/expert/28446 -https://www.oceanexpert.org/expert/29496 -https://www.oceanexpert.org/expert/36671 -https://www.oceanexpert.org/expert/29859 -https://www.oceanexpert.org/expert/11073 -https://www.oceanexpert.org/expert/28431 -https://www.oceanexpert.org/expert/25858 -https://www.oceanexpert.org/expert/32595 -https://www.oceanexpert.org/expert/26104 -https://www.oceanexpert.org/institution/6933 -https://www.oceanexpert.org/expert/27524 -https://www.oceanexpert.org/expert/21057 -https://www.oceanexpert.org/expert/22450 -https://www.oceanexpert.org/expert/18759 -https://www.oceanexpert.org/expert/1312 -https://www.oceanexpert.org/expert/35726 -https://www.oceanexpert.org/expert/24570 -https://www.oceanexpert.org/event/1194 -https://www.oceanexpert.org/expert/17490 -https://www.oceanexpert.org/expert/45992 -https://www.oceanexpert.org/expert/37995 -https://www.oceanexpert.org/expert/23261 -https://www.oceanexpert.org/expert/22189 -https://www.oceanexpert.org/expert/11638 -https://www.oceanexpert.org/expert/27391 -https://www.oceanexpert.org/expert/20980 -https://www.oceanexpert.org/expert/33459 -https://www.oceanexpert.org/expert/27089 -https://www.oceanexpert.org/institution/19367 -https://www.oceanexpert.org/expert/38982 -https://www.oceanexpert.org/expert/26252 -https://www.oceanexpert.org/expert/20853 -https://www.oceanexpert.org/institution/14054 -https://www.oceanexpert.org/institution/7409 -https://www.oceanexpert.org/expert/47207 -https://www.oceanexpert.org/institution/15497 -https://www.oceanexpert.org/institution/19667 -https://www.oceanexpert.org/expert/44002 -https://www.oceanexpert.org/expert/40581 -https://www.oceanexpert.org/expert/3540 -https://www.oceanexpert.org/expert/43564 -https://www.oceanexpert.org/expert/19175 -https://www.oceanexpert.org/expert/649 -https://www.oceanexpert.org/expert/35212 -https://www.oceanexpert.org/expert/47819 -https://www.oceanexpert.org/expert/37636 -https://www.oceanexpert.org/institution/21743 -https://www.oceanexpert.org/institution/20945 -https://www.oceanexpert.org/expert/30328 -https://www.oceanexpert.org/expert/7124 -https://www.oceanexpert.org/expert/33359 -https://www.oceanexpert.org/expert/18944 -https://www.oceanexpert.org/expert/15904 -https://www.oceanexpert.org/event/1976 -https://www.oceanexpert.org/expert/27523 -https://www.oceanexpert.org/expert/24206 -https://www.oceanexpert.org/expert/30012 -https://www.oceanexpert.org/event/1263 -https://www.oceanexpert.org/expert/43873 -https://www.oceanexpert.org/expert/23314 -https://www.oceanexpert.org/expert/39824 -https://www.oceanexpert.org/institution/22175 -https://www.oceanexpert.org/expert/46297 -https://www.oceanexpert.org/expert/7201 -https://www.oceanexpert.org/expert/29502 -https://www.oceanexpert.org/expert/2212 -https://www.oceanexpert.org/expert/15518 -https://www.oceanexpert.org/expert/25689 -https://www.oceanexpert.org/expert/10728 -https://www.oceanexpert.org/expert/25595 -https://www.oceanexpert.org/expert/29514 -https://www.oceanexpert.org/event/542 -https://www.oceanexpert.org/expert/19799 -https://www.oceanexpert.org/institution/19396 -https://www.oceanexpert.org/expert/36613 -https://www.oceanexpert.org/expert/46750 -https://www.oceanexpert.org/expert/25324 -https://www.oceanexpert.org/expert/17841 -https://www.oceanexpert.org/institution/21150 -https://www.oceanexpert.org/event/1361 -https://www.oceanexpert.org/expert/34113 -https://www.oceanexpert.org/expert/48052 -https://www.oceanexpert.org/expert/16773 -https://www.oceanexpert.org/institution/10599 -https://www.oceanexpert.org/expert/28392 -https://www.oceanexpert.org/expert/27735 -https://www.oceanexpert.org/event/485 -https://www.oceanexpert.org/expert/43335 -https://www.oceanexpert.org/event/2223 -https://www.oceanexpert.org/expert/43257 -https://www.oceanexpert.org/institution/18557 -https://www.oceanexpert.org/expert/47395 -https://www.oceanexpert.org/event/2314 -https://www.oceanexpert.org/expert/21073 -https://www.oceanexpert.org/expert/20982 -https://www.oceanexpert.org/expert/43159 -https://www.oceanexpert.org/institution/10332 -https://www.oceanexpert.org/institution/15034 -https://www.oceanexpert.org/expert/18401 -https://www.oceanexpert.org/expert/18846 -https://www.oceanexpert.org/institution/21753 -https://www.oceanexpert.org/event/3251 -https://www.oceanexpert.org/expert/26280 -https://www.oceanexpert.org/expert/26268 -https://www.oceanexpert.org/expert/27377 -https://www.oceanexpert.org/expert/48644 -https://www.oceanexpert.org/expert/19905 -https://www.oceanexpert.org/expert/34008 -https://www.oceanexpert.org/institution/18413 -https://www.oceanexpert.org/institution/19363 -https://www.oceanexpert.org/event/2954 -https://www.oceanexpert.org/expert/17476 -https://www.oceanexpert.org/institution/17836 -https://www.oceanexpert.org/expert/20449 -https://www.oceanexpert.org/expert/25889 -https://www.oceanexpert.org/expert/44692 -https://www.oceanexpert.org/institution/19167 -https://www.oceanexpert.org/event/939 -https://www.oceanexpert.org/expert/20088 -https://www.oceanexpert.org/expert/24974 -https://www.oceanexpert.org/expert/39858 -https://www.oceanexpert.org/expert/25455 -https://www.oceanexpert.org/expert/22075 -https://www.oceanexpert.org/institution/14929 -https://www.oceanexpert.org/expert/32071 -https://www.oceanexpert.org/expert/22396 -https://www.oceanexpert.org/expert/35319 -https://www.oceanexpert.org/expert/942 -https://www.oceanexpert.org/expert/43268 -https://www.oceanexpert.org/institution/21333 -https://www.oceanexpert.org/expert/38216 -https://www.oceanexpert.org/event/3017 -https://www.oceanexpert.org/expert/48585 -https://www.oceanexpert.org/institution/20229 -https://www.oceanexpert.org/expert/32149 -https://www.oceanexpert.org/institution/21850 -https://www.oceanexpert.org/expert/36395 -https://www.oceanexpert.org/expert/34427 -https://www.oceanexpert.org/expert/4092 -https://www.oceanexpert.org/institution/16482 -https://www.oceanexpert.org/expert/11021 -https://www.oceanexpert.org/institution/17831 -https://www.oceanexpert.org/expert/29510 -https://www.oceanexpert.org/institution/11286 -https://www.oceanexpert.org/expert/45479 -https://www.oceanexpert.org/expert/24608 -https://www.oceanexpert.org/event/338 -https://www.oceanexpert.org/expert/48697 -https://www.oceanexpert.org/institution/13162 -https://www.oceanexpert.org/expert/12385 -https://www.oceanexpert.org/event/2107 -https://www.oceanexpert.org/expert/46942 -https://www.oceanexpert.org/expert/25141 -https://www.oceanexpert.org/expert/18302 -https://www.oceanexpert.org/expert/12758 -https://www.oceanexpert.org/event/970 -https://www.oceanexpert.org/institution/20830 -https://www.oceanexpert.org/event/1559 -https://www.oceanexpert.org/expert/19286 -https://www.oceanexpert.org/institution/5290 -https://www.oceanexpert.org/institution/19149 -https://www.oceanexpert.org/expert/18999 -https://www.oceanexpert.org/expert/37937 -https://www.oceanexpert.org/expert/40629 -https://www.oceanexpert.org/expert/14622 -https://www.oceanexpert.org/expert/27507 -https://www.oceanexpert.org/expert/44377 -https://www.oceanexpert.org/institution/16003 -https://www.oceanexpert.org/expert/37748 -https://www.oceanexpert.org/expert/27472 -https://www.oceanexpert.org/expert/44113 -https://www.oceanexpert.org/expert/28175 -https://www.oceanexpert.org/institution/19424 -https://www.oceanexpert.org/expert/26184 -https://www.oceanexpert.org/expert/40315 -https://www.oceanexpert.org/expert/45674 -https://www.oceanexpert.org/institution/12193 -https://www.oceanexpert.org/expert/23316 -https://www.oceanexpert.org/expert/36560 -https://www.oceanexpert.org/expert/17260 -https://www.oceanexpert.org/event/2524 -https://www.oceanexpert.org/event/70 -https://www.oceanexpert.org/expert/33876 -https://www.oceanexpert.org/expert/29340 -https://www.oceanexpert.org/expert/20480 -https://www.oceanexpert.org/expert/48086 -https://www.oceanexpert.org/expert/37939 -https://www.oceanexpert.org/expert/18993 -https://www.oceanexpert.org/expert/17768 -https://www.oceanexpert.org/expert/40572 -https://www.oceanexpert.org/institution/19825 -https://www.oceanexpert.org/expert/21461 -https://www.oceanexpert.org/expert/35161 -https://www.oceanexpert.org/expert/17919 -https://www.oceanexpert.org/event/2807 -https://www.oceanexpert.org/event/3125 -https://www.oceanexpert.org/institution/16345 -https://www.oceanexpert.org/expert/12619 -https://www.oceanexpert.org/expert/33802 -https://www.oceanexpert.org/expert/21622 -https://www.oceanexpert.org/expert/20669 -https://www.oceanexpert.org/expert/7417 -https://www.oceanexpert.org/event/3037 -https://www.oceanexpert.org/institution/15473 -https://www.oceanexpert.org/expert/8062 -https://www.oceanexpert.org/institution/21596 -https://www.oceanexpert.org/institution/19442 -https://www.oceanexpert.org/expert/22086 -https://www.oceanexpert.org/expert/20487 -https://www.oceanexpert.org/expert/12929 -https://www.oceanexpert.org/institution/20989 -https://www.oceanexpert.org/expert/29692 -https://www.oceanexpert.org/expert/46571 -https://www.oceanexpert.org/institution/8303 -https://www.oceanexpert.org/expert/26743 -https://www.oceanexpert.org/expert/27876 -https://www.oceanexpert.org/expert/40292 -https://www.oceanexpert.org/expert/38337 -https://www.oceanexpert.org/expert/44112 -https://www.oceanexpert.org/expert/14791 -https://www.oceanexpert.org/expert/11390 -https://www.oceanexpert.org/institution/10974 -https://www.oceanexpert.org/expert/32347 -https://www.oceanexpert.org/expert/40623 -https://www.oceanexpert.org/institution/20922 -https://www.oceanexpert.org/expert/36246 -https://www.oceanexpert.org/expert/20037 -https://www.oceanexpert.org/institution/10267 -https://www.oceanexpert.org/expert/7004 -https://www.oceanexpert.org/expert/38325 -https://www.oceanexpert.org/expert/35436 -https://www.oceanexpert.org/expert/20362 -https://www.oceanexpert.org/institution/12065 -https://www.oceanexpert.org/event/1082 -https://www.oceanexpert.org/institution/7018 -https://www.oceanexpert.org/institution/21296 -https://www.oceanexpert.org/expert/29829 -https://www.oceanexpert.org/institution/19189 -https://www.oceanexpert.org/expert/24509 -https://www.oceanexpert.org/expert/26810 -https://www.oceanexpert.org/expert/22788 -https://www.oceanexpert.org/institution/18 -https://www.oceanexpert.org/event/2601 -https://www.oceanexpert.org/expert/15648 -https://www.oceanexpert.org/expert/22819 -https://www.oceanexpert.org/event/1906 -https://www.oceanexpert.org/expert/35885 -https://www.oceanexpert.org/institution/19136 -https://www.oceanexpert.org/expert/30183 -https://www.oceanexpert.org/expert/13883 -https://www.oceanexpert.org/expert/20893 -https://www.oceanexpert.org/institution/11763 -https://www.oceanexpert.org/institution/17805 -https://www.oceanexpert.org/event/51 -https://www.oceanexpert.org/expert/43638 -https://www.oceanexpert.org/expert/48126 -https://www.oceanexpert.org/expert/12156 -https://www.oceanexpert.org/event/2173 -https://www.oceanexpert.org/event/503 -https://www.oceanexpert.org/institution/7640 -https://www.oceanexpert.org/expert/17319 -https://www.oceanexpert.org/expert/25832 -https://www.oceanexpert.org/expert/9634 -https://www.oceanexpert.org/expert/47267 -https://www.oceanexpert.org/institution/15955 -https://www.oceanexpert.org/event/1643 -https://www.oceanexpert.org/expert/45152 -https://www.oceanexpert.org/expert/35917 -https://www.oceanexpert.org/expert/47729 -https://www.oceanexpert.org/expert/48851 -https://www.oceanexpert.org/expert/11427 -https://www.oceanexpert.org/expert/42208 -https://www.oceanexpert.org/expert/41731 -https://www.oceanexpert.org/expert/31811 -https://www.oceanexpert.org/institution/17853 -https://www.oceanexpert.org/expert/42772 -https://www.oceanexpert.org/expert/25926 -https://www.oceanexpert.org/expert/36991 -https://www.oceanexpert.org/expert/27420 -https://www.oceanexpert.org/expert/27044 -https://www.oceanexpert.org/expert/23763 -https://www.oceanexpert.org/institution/18195 -https://www.oceanexpert.org/expert/36986 -https://www.oceanexpert.org/institution/14040 -https://www.oceanexpert.org/expert/43982 -https://www.oceanexpert.org/expert/25873 -https://www.oceanexpert.org/expert/14739 -https://www.oceanexpert.org/institution/17863 -https://www.oceanexpert.org/expert/9278 -https://www.oceanexpert.org/event/2043 -https://www.oceanexpert.org/expert/19040 -https://www.oceanexpert.org/expert/15993 -https://www.oceanexpert.org/institution/7138 -https://www.oceanexpert.org/expert/36693 -https://www.oceanexpert.org/expert/26964 -https://www.oceanexpert.org/institution/19141 -https://www.oceanexpert.org/expert/39479 -https://www.oceanexpert.org/event/1211 -https://www.oceanexpert.org/expert/38520 -https://www.oceanexpert.org/expert/36226 -https://www.oceanexpert.org/expert/1076 -https://www.oceanexpert.org/institution/18629 -https://www.oceanexpert.org/expert/30858 -https://www.oceanexpert.org/event/3265 -https://www.oceanexpert.org/institution/21490 -https://www.oceanexpert.org/expert/26916 -https://www.oceanexpert.org/expert/26000 -https://www.oceanexpert.org/expert/781 -https://www.oceanexpert.org/expert/44539 -https://www.oceanexpert.org/expert/25816 -https://www.oceanexpert.org/event/1936 -https://www.oceanexpert.org/expert/32555 -https://www.oceanexpert.org/expert/19847 -https://www.oceanexpert.org/institution/13570 -https://www.oceanexpert.org/institution/11587 -https://www.oceanexpert.org/institution/15238 -https://www.oceanexpert.org/event/797 -https://www.oceanexpert.org/expert/44433 -https://www.oceanexpert.org/expert/15336 -https://www.oceanexpert.org/expert/20716 -https://www.oceanexpert.org/expert/18663 -https://www.oceanexpert.org/expert/19525 -https://www.oceanexpert.org/expert/45405 -https://www.oceanexpert.org/expert/5547 -https://www.oceanexpert.org/expert/48880 -https://www.oceanexpert.org/institution/6622 -https://www.oceanexpert.org/expert/24062 -https://www.oceanexpert.org/event/1581 -https://www.oceanexpert.org/expert/18303 -https://www.oceanexpert.org/institution/18696 -https://www.oceanexpert.org/expert/42650 -https://www.oceanexpert.org/institution/18006 -https://www.oceanexpert.org/institution/10291 -https://www.oceanexpert.org/expert/25467 -https://www.oceanexpert.org/institution/18183 -https://www.oceanexpert.org/expert/4378 -https://www.oceanexpert.org/institution/16865 -https://www.oceanexpert.org/expert/18870 -https://www.oceanexpert.org/expert/23747 -https://www.oceanexpert.org/expert/36251 -https://www.oceanexpert.org/institution/15751 -https://www.oceanexpert.org/expert/45655 -https://www.oceanexpert.org/expert/24714 -https://www.oceanexpert.org/institution/21438 -https://www.oceanexpert.org/institution/18406 -https://www.oceanexpert.org/expert/46963 -https://www.oceanexpert.org/expert/28305 -https://www.oceanexpert.org/institution/10227 -https://www.oceanexpert.org/expert/48147 -https://www.oceanexpert.org/expert/38829 -https://www.oceanexpert.org/expert/24222 -https://www.oceanexpert.org/institution/20816 -https://www.oceanexpert.org/expert/37544 -https://www.oceanexpert.org/expert/22730 -https://www.oceanexpert.org/expert/23151 -https://www.oceanexpert.org/expert/22201 -https://www.oceanexpert.org/expert/16755 -https://www.oceanexpert.org/institution/16218 -https://www.oceanexpert.org/expert/45461 -https://www.oceanexpert.org/expert/7183 -https://www.oceanexpert.org/expert/24051 -https://www.oceanexpert.org/event/2156 -https://www.oceanexpert.org/institution/15321 -https://www.oceanexpert.org/expert/29615 -https://www.oceanexpert.org/expert/36358 -https://www.oceanexpert.org/expert/16099 -https://www.oceanexpert.org/institution/22055 -https://www.oceanexpert.org/expert/29533 -https://www.oceanexpert.org/institution/8892 -https://www.oceanexpert.org/expert/42680 -https://www.oceanexpert.org/expert/45965 -https://www.oceanexpert.org/expert/12102 -https://www.oceanexpert.org/expert/44729 -https://www.oceanexpert.org/institution/18804 -https://www.oceanexpert.org/expert/25512 -https://www.oceanexpert.org/expert/30941 -https://www.oceanexpert.org/expert/27168 -https://www.oceanexpert.org/expert/23324 -https://www.oceanexpert.org/institution/21558 -https://www.oceanexpert.org/expert/43340 -https://www.oceanexpert.org/expert/43399 -https://www.oceanexpert.org/event/3279 -https://www.oceanexpert.org/expert/14863 -https://www.oceanexpert.org/expert/14853 -https://www.oceanexpert.org/institution/20065 -https://www.oceanexpert.org/expert/36213 -https://www.oceanexpert.org/expert/47050 -https://www.oceanexpert.org/expert/17907 -https://www.oceanexpert.org/expert/22268 -https://www.oceanexpert.org/expert/44669 -https://www.oceanexpert.org/expert/23911 -https://www.oceanexpert.org/expert/22500 -https://www.oceanexpert.org/institution/11735 -https://www.oceanexpert.org/institution/21159 -https://www.oceanexpert.org/event/444 -https://www.oceanexpert.org/event/2619 -https://www.oceanexpert.org/expert/33383 -https://www.oceanexpert.org/expert/14767 -https://www.oceanexpert.org/institution/17446 -https://www.oceanexpert.org/expert/22793 -https://www.oceanexpert.org/expert/37118 -https://www.oceanexpert.org/expert/26238 -https://www.oceanexpert.org/institution/20574 -https://www.oceanexpert.org/expert/21073 -https://www.oceanexpert.org/institution/20458 -https://www.oceanexpert.org/expert/34585 -https://www.oceanexpert.org/expert/20211 -https://www.oceanexpert.org/institution/18801 -https://www.oceanexpert.org/event/3285 -https://www.oceanexpert.org/expert/45484 -https://www.oceanexpert.org/institution/18956 -https://www.oceanexpert.org/expert/25998 -https://www.oceanexpert.org/institution/21656 -https://www.oceanexpert.org/expert/47236 -https://www.oceanexpert.org/expert/38184 -https://www.oceanexpert.org/institution/14132 -https://www.oceanexpert.org/expert/14299 -https://www.oceanexpert.org/expert/26710 -https://www.oceanexpert.org/expert/22989 -https://www.oceanexpert.org/institution/6759 -https://www.oceanexpert.org/expert/15648 -https://www.oceanexpert.org/expert/36360 -https://www.oceanexpert.org/expert/29097 -https://www.oceanexpert.org/expert/32703 -https://www.oceanexpert.org/expert/48001 -https://www.oceanexpert.org/event/727 -https://www.oceanexpert.org/institution/11804 -https://www.oceanexpert.org/institution/17927 -https://www.oceanexpert.org/expert/36259 -https://www.oceanexpert.org/expert/17920 -https://www.oceanexpert.org/expert/9556 -https://www.oceanexpert.org/expert/47336 -https://www.oceanexpert.org/expert/46045 -https://www.oceanexpert.org/institution/11126 -https://www.oceanexpert.org/expert/1250 -https://www.oceanexpert.org/expert/46978 -https://www.oceanexpert.org/expert/24957 -https://www.oceanexpert.org/expert/18408 -https://www.oceanexpert.org/expert/37262 -https://www.oceanexpert.org/expert/16187 -https://www.oceanexpert.org/expert/25092 -https://www.oceanexpert.org/institution/20038 -https://www.oceanexpert.org/expert/35771 -https://www.oceanexpert.org/event/256 -https://www.oceanexpert.org/expert/15361 -https://www.oceanexpert.org/expert/44601 -https://www.oceanexpert.org/expert/35443 -https://www.oceanexpert.org/expert/48285 -https://www.oceanexpert.org/expert/19265 -https://www.oceanexpert.org/expert/18488 -https://www.oceanexpert.org/expert/35253 -https://www.oceanexpert.org/expert/39549 -https://www.oceanexpert.org/institution/19103 -https://www.oceanexpert.org/expert/21650 -https://www.oceanexpert.org/expert/14837 -https://www.oceanexpert.org/institution/21522 -https://www.oceanexpert.org/expert/37300 -https://www.oceanexpert.org/institution/19887 -https://www.oceanexpert.org/expert/33343 -https://www.oceanexpert.org/expert/17449 -https://www.oceanexpert.org/institution/21699 -https://www.oceanexpert.org/expert/36624 -https://www.oceanexpert.org/expert/20909 -https://www.oceanexpert.org/expert/17820 -https://www.oceanexpert.org/event/1325 -https://www.oceanexpert.org/event/1235 -https://www.oceanexpert.org/institution/16411 -https://www.oceanexpert.org/expert/32808 -https://www.oceanexpert.org/expert/15489 -https://www.oceanexpert.org/expert/2218 -https://www.oceanexpert.org/institution/13971 -https://www.oceanexpert.org/institution/18622 -https://www.oceanexpert.org/expert/26960 -https://www.oceanexpert.org/event/1754 -https://www.oceanexpert.org/expert/29530 -https://www.oceanexpert.org/institution/10734 -https://www.oceanexpert.org/expert/45054 -https://www.oceanexpert.org/expert/5200 -https://www.oceanexpert.org/institution/15842 -https://www.oceanexpert.org/expert/25529 -https://www.oceanexpert.org/institution/21493 -https://www.oceanexpert.org/event/1413 -https://www.oceanexpert.org/expert/27488 -https://www.oceanexpert.org/expert/33282 -https://www.oceanexpert.org/expert/27751 -https://www.oceanexpert.org/expert/35770 -https://www.oceanexpert.org/institution/19281 -https://www.oceanexpert.org/expert/34843 -https://www.oceanexpert.org/institution/19646 -https://www.oceanexpert.org/institution/19380 -https://www.oceanexpert.org/expert/45771 -https://www.oceanexpert.org/event/438 -https://www.oceanexpert.org/institution/18612 -https://www.oceanexpert.org/expert/48687 -https://www.oceanexpert.org/expert/33803 -https://www.oceanexpert.org/institution/17669 -https://www.oceanexpert.org/institution/10579 -https://www.oceanexpert.org/event/1416 -https://www.oceanexpert.org/expert/21021 -https://www.oceanexpert.org/event/2501 -https://www.oceanexpert.org/institution/6385 -https://www.oceanexpert.org/expert/22767 -https://www.oceanexpert.org/event/593 -https://www.oceanexpert.org/institution/6243 -https://www.oceanexpert.org/institution/11874 -https://www.oceanexpert.org/expert/25824 -https://www.oceanexpert.org/expert/20952 -https://www.oceanexpert.org/institution/9557 -https://www.oceanexpert.org/expert/18684 -https://www.oceanexpert.org/expert/32517 -https://www.oceanexpert.org/expert/14767 -https://www.oceanexpert.org/expert/35211 -https://www.oceanexpert.org/expert/20616 -https://www.oceanexpert.org/institution/19057 -https://www.oceanexpert.org/event/1220 -https://www.oceanexpert.org/expert/21843 -https://www.oceanexpert.org/expert/19284 -https://www.oceanexpert.org/expert/28398 -https://www.oceanexpert.org/expert/26974 -https://www.oceanexpert.org/expert/17151 -https://www.oceanexpert.org/expert/37792 -https://www.oceanexpert.org/expert/31094 -https://www.oceanexpert.org/expert/47024 -https://www.oceanexpert.org/expert/35399 -https://www.oceanexpert.org/expert/19880 -https://www.oceanexpert.org/expert/47266 -https://www.oceanexpert.org/expert/34570 -https://www.oceanexpert.org/institution/22062 -https://www.oceanexpert.org/expert/48304 -https://www.oceanexpert.org/expert/39835 -https://www.oceanexpert.org/institution/18552 -https://www.oceanexpert.org/expert/11770 -https://www.oceanexpert.org/expert/18599 -https://www.oceanexpert.org/expert/29195 -https://www.oceanexpert.org/expert/4220 -https://www.oceanexpert.org/event/1731 -https://www.oceanexpert.org/expert/19105 -https://www.oceanexpert.org/expert/6342 -https://www.oceanexpert.org/expert/42834 -https://www.oceanexpert.org/institution/16696 -https://www.oceanexpert.org/event/2772 -https://www.oceanexpert.org/institution/14068 -https://www.oceanexpert.org/institution/20420 -https://www.oceanexpert.org/expert/47106 -https://www.oceanexpert.org/expert/26590 -https://www.oceanexpert.org/event/591 -https://www.oceanexpert.org/event/131 -https://www.oceanexpert.org/institution/17120 -https://www.oceanexpert.org/expert/39421 -https://www.oceanexpert.org/expert/14148 -https://www.oceanexpert.org/expert/45594 -https://www.oceanexpert.org/expert/16208 -https://www.oceanexpert.org/expert/48478 -https://www.oceanexpert.org/expert/8123 -https://www.oceanexpert.org/institution/20059 -https://www.oceanexpert.org/expert/45692 -https://www.oceanexpert.org/expert/11223 -https://www.oceanexpert.org/institution/19607 -https://www.oceanexpert.org/event/768 -https://www.oceanexpert.org/expert/23045 -https://www.oceanexpert.org/institution/19013 -https://www.oceanexpert.org/institution/20308 -https://www.oceanexpert.org/expert/25567 -https://www.oceanexpert.org/institution/8090 -https://www.oceanexpert.org/expert/36159 -https://www.oceanexpert.org/expert/13579 -https://www.oceanexpert.org/expert/12372 -https://www.oceanexpert.org/event/2833 -https://www.oceanexpert.org/expert/47576 -https://www.oceanexpert.org/expert/28401 -https://www.oceanexpert.org/expert/24950 -https://www.oceanexpert.org/expert/44787 -https://www.oceanexpert.org/expert/22944 -https://www.oceanexpert.org/event/346 -https://www.oceanexpert.org/institution/15792 -https://www.oceanexpert.org/event/2890 -https://www.oceanexpert.org/expert/41035 -https://www.oceanexpert.org/expert/47759 -https://www.oceanexpert.org/institution/21702 -https://www.oceanexpert.org/expert/33759 -https://www.oceanexpert.org/institution/12927 -https://www.oceanexpert.org/expert/27326 -https://www.oceanexpert.org/expert/47474 -https://www.oceanexpert.org/expert/35230 -https://www.oceanexpert.org/expert/36997 -https://www.oceanexpert.org/expert/47622 -https://www.oceanexpert.org/expert/45806 -https://www.oceanexpert.org/event/2417 -https://www.oceanexpert.org/expert/48874 -https://www.oceanexpert.org/institution/19975 -https://www.oceanexpert.org/expert/39820 -https://www.oceanexpert.org/expert/43603 -https://www.oceanexpert.org/expert/28335 -https://www.oceanexpert.org/expert/30475 -https://www.oceanexpert.org/institution/15387 -https://www.oceanexpert.org/expert/38397 -https://www.oceanexpert.org/event/2564 -https://www.oceanexpert.org/expert/36895 -https://www.oceanexpert.org/expert/29660 -https://www.oceanexpert.org/expert/25675 -https://www.oceanexpert.org/event/77 -https://www.oceanexpert.org/expert/37516 -https://www.oceanexpert.org/expert/16559 -https://www.oceanexpert.org/expert/23530 -https://www.oceanexpert.org/expert/21687 -https://www.oceanexpert.org/expert/18024 -https://www.oceanexpert.org/institution/18796 -https://www.oceanexpert.org/event/2909 -https://www.oceanexpert.org/institution/20211 -https://www.oceanexpert.org/expert/19009 -https://www.oceanexpert.org/expert/48704 -https://www.oceanexpert.org/expert/25136 -https://www.oceanexpert.org/event/1592 -https://www.oceanexpert.org/expert/38451 -https://www.oceanexpert.org/expert/23364 -https://www.oceanexpert.org/expert/17116 -https://www.oceanexpert.org/expert/47489 -https://www.oceanexpert.org/expert/38932 -https://www.oceanexpert.org/expert/25664 -https://www.oceanexpert.org/expert/20490 -https://www.oceanexpert.org/expert/36506 -https://www.oceanexpert.org/event/1685 -https://www.oceanexpert.org/expert/13415 -https://www.oceanexpert.org/expert/42997 -https://www.oceanexpert.org/expert/31079 -https://www.oceanexpert.org/expert/23733 -https://www.oceanexpert.org/expert/8514 -https://www.oceanexpert.org/institution/10772 -https://www.oceanexpert.org/institution/12819 -https://www.oceanexpert.org/institution/20781 -https://www.oceanexpert.org/institution/20009 -https://www.oceanexpert.org/expert/38752 -https://www.oceanexpert.org/institution/19552 -https://www.oceanexpert.org/expert/16384 -https://www.oceanexpert.org/institution/15184 -https://www.oceanexpert.org/institution/19243 -https://www.oceanexpert.org/expert/947 -https://www.oceanexpert.org/institution/19429 -https://www.oceanexpert.org/expert/34613 -https://www.oceanexpert.org/expert/22199 -https://www.oceanexpert.org/expert/42751 -https://www.oceanexpert.org/institution/15034 -https://www.oceanexpert.org/expert/32672 -https://www.oceanexpert.org/institution/20047 -https://www.oceanexpert.org/event/3011 -https://www.oceanexpert.org/expert/16655 -https://www.oceanexpert.org/institution/13830 -https://www.oceanexpert.org/expert/31082 -https://www.oceanexpert.org/expert/34520 -https://www.oceanexpert.org/expert/19929 -https://www.oceanexpert.org/expert/33302 -https://www.oceanexpert.org/expert/17999 -https://www.oceanexpert.org/expert/24340 -https://www.oceanexpert.org/expert/13950 -https://www.oceanexpert.org/institution/17506 -https://www.oceanexpert.org/institution/18120 -https://www.oceanexpert.org/expert/27267 -https://www.oceanexpert.org/institution/5455 -https://www.oceanexpert.org/expert/36842 -https://www.oceanexpert.org/institution/18973 -https://www.oceanexpert.org/expert/29439 -https://www.oceanexpert.org/event/2664 -https://www.oceanexpert.org/expert/12211 -https://www.oceanexpert.org/expert/21715 -https://www.oceanexpert.org/institution/21487 -https://www.oceanexpert.org/expert/19362 -https://www.oceanexpert.org/institution/13582 -https://www.oceanexpert.org/expert/43319 -https://www.oceanexpert.org/expert/25990 -https://www.oceanexpert.org/event/2454 -https://www.oceanexpert.org/institution/13531 -https://www.oceanexpert.org/event/1575 -https://www.oceanexpert.org/expert/44079 -https://www.oceanexpert.org/expert/44586 -https://www.oceanexpert.org/expert/43338 -https://www.oceanexpert.org/expert/24854 -https://www.oceanexpert.org/expert/19430 -https://www.oceanexpert.org/expert/32099 -https://www.oceanexpert.org/event/1276 -https://www.oceanexpert.org/institution/14375 -https://www.oceanexpert.org/expert/30799 -https://www.oceanexpert.org/institution/7152 -https://www.oceanexpert.org/institution/7537 -https://www.oceanexpert.org/expert/27328 -https://www.oceanexpert.org/expert/46744 -https://www.oceanexpert.org/expert/19995 -https://www.oceanexpert.org/institution/15603 -https://www.oceanexpert.org/institution/10281 -https://www.oceanexpert.org/expert/46411 -https://www.oceanexpert.org/institution/14916 -https://www.oceanexpert.org/institution/18746 -https://www.oceanexpert.org/institution/16690 -https://www.oceanexpert.org/expert/46669 -https://www.oceanexpert.org/expert/10325 -https://www.oceanexpert.org/expert/44655 -https://www.oceanexpert.org/expert/16671 -https://www.oceanexpert.org/expert/7926 -https://www.oceanexpert.org/institution/6969 -https://www.oceanexpert.org/institution/20206 -https://www.oceanexpert.org/institution/7039 -https://www.oceanexpert.org/institution/21994 -https://www.oceanexpert.org/expert/31017 -https://www.oceanexpert.org/expert/11386 -https://www.oceanexpert.org/institution/14138 -https://www.oceanexpert.org/expert/18066 -https://www.oceanexpert.org/expert/15472 -https://www.oceanexpert.org/expert/37082 -https://www.oceanexpert.org/institution/9276 -https://www.oceanexpert.org/expert/19229 -https://www.oceanexpert.org/expert/36559 -https://www.oceanexpert.org/expert/21624 -https://www.oceanexpert.org/institution/6780 -https://www.oceanexpert.org/expert/20593 -https://www.oceanexpert.org/expert/18850 -https://www.oceanexpert.org/expert/12124 -https://www.oceanexpert.org/expert/13703 -https://www.oceanexpert.org/expert/19198 -https://www.oceanexpert.org/institution/14065 -https://www.oceanexpert.org/expert/48654 -https://www.oceanexpert.org/event/86 -https://www.oceanexpert.org/expert/15658 -https://www.oceanexpert.org/expert/12197 -https://www.oceanexpert.org/institution/9091 -https://www.oceanexpert.org/expert/26444 -https://www.oceanexpert.org/event/1291 -https://www.oceanexpert.org/institution/21161 -https://www.oceanexpert.org/institution/12851 -https://www.oceanexpert.org/expert/34222 -https://www.oceanexpert.org/expert/44966 -https://www.oceanexpert.org/expert/31122 -https://www.oceanexpert.org/expert/26662 -https://www.oceanexpert.org/event/1882 -https://www.oceanexpert.org/expert/48561 -https://www.oceanexpert.org/institution/16906 -https://www.oceanexpert.org/expert/24549 -https://www.oceanexpert.org/institution/20203 -https://www.oceanexpert.org/expert/31948 -https://www.oceanexpert.org/expert/30249 -https://www.oceanexpert.org/expert/2710 -https://www.oceanexpert.org/expert/24089 -https://www.oceanexpert.org/expert/25652 -https://www.oceanexpert.org/institution/14747 -https://www.oceanexpert.org/expert/32388 -https://www.oceanexpert.org/institution/5132 -https://www.oceanexpert.org/expert/33370 -https://www.oceanexpert.org/expert/23530 -https://www.oceanexpert.org/expert/30476 -https://www.oceanexpert.org/expert/45121 -https://www.oceanexpert.org/expert/19758 -https://www.oceanexpert.org/institution/18752 -https://www.oceanexpert.org/expert/3145 -https://www.oceanexpert.org/expert/35042 -https://www.oceanexpert.org/expert/45956 -https://www.oceanexpert.org/institution/18525 -https://www.oceanexpert.org/institution/21170 -https://www.oceanexpert.org/expert/18438 -https://www.oceanexpert.org/expert/44868 -https://www.oceanexpert.org/expert/45200 -https://www.oceanexpert.org/expert/3421 -https://www.oceanexpert.org/event/3238 -https://www.oceanexpert.org/expert/25859 -https://www.oceanexpert.org/expert/23625 -https://www.oceanexpert.org/expert/47063 -https://www.oceanexpert.org/expert/47692 -https://www.oceanexpert.org/institution/17136 -https://www.oceanexpert.org/expert/20216 -https://www.oceanexpert.org/institution/20711 -https://www.oceanexpert.org/institution/21850 -https://www.oceanexpert.org/institution/21057 -https://www.oceanexpert.org/expert/28229 -https://www.oceanexpert.org/expert/16602 -https://www.oceanexpert.org/expert/44077 -https://www.oceanexpert.org/expert/35040 -https://www.oceanexpert.org/expert/43246 -https://www.oceanexpert.org/expert/46137 -https://www.oceanexpert.org/expert/37889 -https://www.oceanexpert.org/expert/26395 -https://www.oceanexpert.org/institution/5301 -https://www.oceanexpert.org/expert/34480 -https://www.oceanexpert.org/expert/18694 -https://www.oceanexpert.org/institution/12909 -https://www.oceanexpert.org/institution/7701 -https://www.oceanexpert.org/expert/30473 -https://www.oceanexpert.org/expert/14875 -https://www.oceanexpert.org/institution/14048 -https://www.oceanexpert.org/expert/43470 -https://www.oceanexpert.org/expert/44794 -https://www.oceanexpert.org/institution/9606 -https://www.oceanexpert.org/event/2454 -https://www.oceanexpert.org/expert/45853 -https://www.oceanexpert.org/expert/35012 -https://www.oceanexpert.org/expert/23563 -https://www.oceanexpert.org/institution/10596 -https://www.oceanexpert.org/expert/27222 -https://www.oceanexpert.org/event/1613 -https://www.oceanexpert.org/expert/36497 -https://www.oceanexpert.org/expert/25122 -https://www.oceanexpert.org/expert/9862 -https://www.oceanexpert.org/expert/46139 -https://www.oceanexpert.org/expert/36180 -https://www.oceanexpert.org/expert/17639 -https://www.oceanexpert.org/expert/17395 -https://www.oceanexpert.org/event/2187 -https://www.oceanexpert.org/event/926 -https://www.oceanexpert.org/expert/46237 -https://www.oceanexpert.org/expert/33195 -https://www.oceanexpert.org/expert/42583 -https://www.oceanexpert.org/expert/29238 -https://www.oceanexpert.org/expert/20854 -https://www.oceanexpert.org/expert/33309 -https://www.oceanexpert.org/institution/21422 -https://www.oceanexpert.org/expert/36487 -https://www.oceanexpert.org/institution/12991 -https://www.oceanexpert.org/expert/25198 -https://www.oceanexpert.org/expert/39300 -https://www.oceanexpert.org/expert/22091 -https://www.oceanexpert.org/event/1169 -https://www.oceanexpert.org/expert/32474 -https://www.oceanexpert.org/expert/13856 -https://www.oceanexpert.org/event/2612 -https://www.oceanexpert.org/institution/19124 -https://www.oceanexpert.org/expert/26386 -https://www.oceanexpert.org/expert/12748 -https://www.oceanexpert.org/institution/18497 -https://www.oceanexpert.org/expert/2326 -https://www.oceanexpert.org/institution/15829 -https://www.oceanexpert.org/expert/46966 -https://www.oceanexpert.org/event/2272 -https://www.oceanexpert.org/expert/32457 -https://www.oceanexpert.org/expert/39274 -https://www.oceanexpert.org/event/2309 -https://www.oceanexpert.org/expert/27571 -https://www.oceanexpert.org/expert/37301 -https://www.oceanexpert.org/expert/26782 -https://www.oceanexpert.org/expert/20054 -https://www.oceanexpert.org/expert/38024 -https://www.oceanexpert.org/expert/42405 -https://www.oceanexpert.org/expert/34426 -https://www.oceanexpert.org/expert/27359 -https://www.oceanexpert.org/institution/20743 -https://www.oceanexpert.org/institution/18904 -https://www.oceanexpert.org/event/2948 -https://www.oceanexpert.org/expert/23803 -https://www.oceanexpert.org/institution/4958 -https://www.oceanexpert.org/expert/47689 -https://www.oceanexpert.org/expert/46118 -https://www.oceanexpert.org/expert/37917 -https://www.oceanexpert.org/expert/38169 -https://www.oceanexpert.org/institution/20722 -https://www.oceanexpert.org/expert/15942 -https://www.oceanexpert.org/expert/33958 -https://www.oceanexpert.org/expert/46918 -https://www.oceanexpert.org/expert/34087 -https://www.oceanexpert.org/expert/46665 -https://www.oceanexpert.org/expert/19665 -https://www.oceanexpert.org/event/3124 -https://www.oceanexpert.org/institution/19672 -https://www.oceanexpert.org/institution/16386 -https://www.oceanexpert.org/institution/19930 -https://www.oceanexpert.org/expert/26583 -https://www.oceanexpert.org/expert/27351 -https://www.oceanexpert.org/expert/37636 -https://www.oceanexpert.org/institution/9300 -https://www.oceanexpert.org/institution/20289 -https://www.oceanexpert.org/expert/18033 -https://www.oceanexpert.org/institution/21289 -https://www.oceanexpert.org/expert/6218 -https://www.oceanexpert.org/expert/44031 -https://www.oceanexpert.org/expert/22420 -https://www.oceanexpert.org/event/906 -https://www.oceanexpert.org/expert/16041 -https://www.oceanexpert.org/expert/3084 -https://www.oceanexpert.org/expert/2411 -https://www.oceanexpert.org/institution/14142 -https://www.oceanexpert.org/expert/27512 -https://www.oceanexpert.org/expert/9194 -https://www.oceanexpert.org/institution/19555 -https://www.oceanexpert.org/expert/24595 -https://www.oceanexpert.org/expert/42607 -https://www.oceanexpert.org/expert/21800 -https://www.oceanexpert.org/expert/44477 -https://www.oceanexpert.org/expert/46824 -https://www.oceanexpert.org/expert/19026 -https://www.oceanexpert.org/expert/12048 -https://www.oceanexpert.org/expert/36921 -https://www.oceanexpert.org/expert/17880 -https://www.oceanexpert.org/expert/1957 -https://www.oceanexpert.org/expert/46676 -https://www.oceanexpert.org/institution/12846 -https://www.oceanexpert.org/event/2222 -https://www.oceanexpert.org/expert/32142 -https://www.oceanexpert.org/institution/13917 -https://www.oceanexpert.org/expert/31061 -https://www.oceanexpert.org/institution/18271 -https://www.oceanexpert.org/expert/20351 -https://www.oceanexpert.org/expert/12638 -https://www.oceanexpert.org/event/874 -https://www.oceanexpert.org/expert/37037 -https://www.oceanexpert.org/expert/14658 -https://www.oceanexpert.org/event/2566 -https://www.oceanexpert.org/event/3044 -https://www.oceanexpert.org/expert/43707 -https://www.oceanexpert.org/institution/6319 -https://www.oceanexpert.org/expert/2587 -https://www.oceanexpert.org/event/1908 -https://www.oceanexpert.org/institution/12122 -https://www.oceanexpert.org/expert/34745 -https://www.oceanexpert.org/expert/32756 -https://www.oceanexpert.org/expert/24754 -https://www.oceanexpert.org/institution/21320 -https://www.oceanexpert.org/institution/19161 -https://www.oceanexpert.org/expert/40080 -https://www.oceanexpert.org/expert/35297 -https://www.oceanexpert.org/expert/27281 -https://www.oceanexpert.org/event/319 -https://www.oceanexpert.org/expert/28469 -https://www.oceanexpert.org/institution/12770 -https://www.oceanexpert.org/expert/32713 -https://www.oceanexpert.org/expert/20509 -https://www.oceanexpert.org/institution/18625 -https://www.oceanexpert.org/expert/15806 -https://www.oceanexpert.org/institution/19511 -https://www.oceanexpert.org/institution/5385 -https://www.oceanexpert.org/event/1010 -https://www.oceanexpert.org/institution/8151 -https://www.oceanexpert.org/expert/17726 -https://www.oceanexpert.org/expert/31916 -https://www.oceanexpert.org/institution/12830 -https://www.oceanexpert.org/expert/12620 -https://www.oceanexpert.org/expert/43194 -https://www.oceanexpert.org/expert/18301 -https://www.oceanexpert.org/institution/20533 -https://www.oceanexpert.org/expert/24414 -https://www.oceanexpert.org/expert/19960 -https://www.oceanexpert.org/expert/26335 -https://www.oceanexpert.org/expert/27771 -https://www.oceanexpert.org/expert/31725 -https://www.oceanexpert.org/expert/27677 -https://www.oceanexpert.org/institution/12651 -https://www.oceanexpert.org/institution/5846 -https://www.oceanexpert.org/event/2858 -https://www.oceanexpert.org/expert/43510 -https://www.oceanexpert.org/expert/16868 -https://www.oceanexpert.org/event/692 -https://www.oceanexpert.org/expert/25663 -https://www.oceanexpert.org/event/2151 -https://www.oceanexpert.org/expert/45148 -https://www.oceanexpert.org/institution/10206 -https://www.oceanexpert.org/expert/47159 -https://www.oceanexpert.org/expert/37007 -https://www.oceanexpert.org/expert/44705 -https://www.oceanexpert.org/expert/43375 -https://www.oceanexpert.org/expert/22993 -https://www.oceanexpert.org/expert/31650 -https://www.oceanexpert.org/institution/11306 -https://www.oceanexpert.org/event/2024 -https://www.oceanexpert.org/expert/35781 -https://www.oceanexpert.org/event/1576 -https://www.oceanexpert.org/expert/48388 -https://www.oceanexpert.org/institution/11846 -https://www.oceanexpert.org/expert/24846 -https://www.oceanexpert.org/expert/11250 -https://www.oceanexpert.org/expert/24310 -https://www.oceanexpert.org/expert/44656 -https://www.oceanexpert.org/expert/3680 -https://www.oceanexpert.org/expert/31326 -https://www.oceanexpert.org/institution/19150 -https://www.oceanexpert.org/expert/35305 -https://www.oceanexpert.org/expert/5429 -https://www.oceanexpert.org/institution/20658 -https://www.oceanexpert.org/institution/18492 -https://www.oceanexpert.org/expert/14966 -https://www.oceanexpert.org/event/3058 -https://www.oceanexpert.org/expert/27170 -https://www.oceanexpert.org/expert/22714 -https://www.oceanexpert.org/expert/43069 -https://www.oceanexpert.org/expert/3222 -https://www.oceanexpert.org/expert/35311 -https://www.oceanexpert.org/institution/11336 -https://www.oceanexpert.org/event/1442 -https://www.oceanexpert.org/institution/18421 -https://www.oceanexpert.org/expert/14772 -https://www.oceanexpert.org/event/781 -https://www.oceanexpert.org/institution/16699 -https://www.oceanexpert.org/institution/20877 -https://www.oceanexpert.org/expert/11788 -https://www.oceanexpert.org/institution/12387 -https://www.oceanexpert.org/expert/36326 -https://www.oceanexpert.org/expert/21666 -https://www.oceanexpert.org/institution/21153 -https://www.oceanexpert.org/expert/16154 -https://www.oceanexpert.org/institution/15436 -https://www.oceanexpert.org/institution/21184 -https://www.oceanexpert.org/expert/35234 -https://www.oceanexpert.org/expert/19368 -https://www.oceanexpert.org/expert/37211 -https://www.oceanexpert.org/expert/45906 -https://www.oceanexpert.org/institution/8323 -https://www.oceanexpert.org/expert/17003 -https://www.oceanexpert.org/expert/20327 -https://www.oceanexpert.org/expert/36956 -https://www.oceanexpert.org/expert/44653 -https://www.oceanexpert.org/institution/6466 -https://www.oceanexpert.org/expert/19718 -https://www.oceanexpert.org/expert/37978 -https://www.oceanexpert.org/expert/46539 -https://www.oceanexpert.org/expert/23287 -https://www.oceanexpert.org/institution/21782 -https://www.oceanexpert.org/expert/12071 -https://www.oceanexpert.org/event/1020 -https://www.oceanexpert.org/expert/1659 -https://www.oceanexpert.org/expert/25645 -https://www.oceanexpert.org/expert/42515 -https://www.oceanexpert.org/expert/18365 -https://www.oceanexpert.org/expert/21522 -https://www.oceanexpert.org/expert/43160 -https://www.oceanexpert.org/institution/19255 -https://www.oceanexpert.org/institution/15547 -https://www.oceanexpert.org/institution/20427 -https://www.oceanexpert.org/expert/13451 -https://www.oceanexpert.org/institution/11029 -https://www.oceanexpert.org/expert/35984 -https://www.oceanexpert.org/expert/11818 -https://www.oceanexpert.org/event/550 -https://www.oceanexpert.org/expert/26647 -https://www.oceanexpert.org/expert/23184 -https://www.oceanexpert.org/event/1098 -https://www.oceanexpert.org/expert/27347 -https://www.oceanexpert.org/institution/16802 -https://www.oceanexpert.org/expert/32191 -https://www.oceanexpert.org/expert/44956 -https://www.oceanexpert.org/event/1352 -https://www.oceanexpert.org/expert/37050 -https://www.oceanexpert.org/expert/19306 -https://www.oceanexpert.org/expert/22266 -https://www.oceanexpert.org/expert/26297 -https://www.oceanexpert.org/event/2603 -https://www.oceanexpert.org/institution/21285 -https://www.oceanexpert.org/event/1676 -https://www.oceanexpert.org/expert/22126 -https://www.oceanexpert.org/expert/26312 -https://www.oceanexpert.org/expert/27132 -https://www.oceanexpert.org/institution/20946 -https://www.oceanexpert.org/event/2983 -https://www.oceanexpert.org/expert/26537 -https://www.oceanexpert.org/expert/48809 -https://www.oceanexpert.org/expert/43993 -https://www.oceanexpert.org/institution/21017 -https://www.oceanexpert.org/institution/22118 -https://www.oceanexpert.org/expert/15833 -https://www.oceanexpert.org/expert/42875 -https://www.oceanexpert.org/expert/38483 -https://www.oceanexpert.org/expert/26891 -https://www.oceanexpert.org/event/3173 -https://www.oceanexpert.org/expert/37628 -https://www.oceanexpert.org/expert/35802 -https://www.oceanexpert.org/expert/44751 -https://www.oceanexpert.org/institution/20588 -https://www.oceanexpert.org/expert/23927 -https://www.oceanexpert.org/expert/20562 -https://www.oceanexpert.org/expert/26838 -https://www.oceanexpert.org/expert/6199 -https://www.oceanexpert.org/event/1539 -https://www.oceanexpert.org/expert/8267 -https://www.oceanexpert.org/institution/19688 -https://www.oceanexpert.org/expert/35223 -https://www.oceanexpert.org/expert/29798 -https://www.oceanexpert.org/expert/22678 -https://www.oceanexpert.org/event/272 -https://www.oceanexpert.org/institution/19829 -https://www.oceanexpert.org/event/851 -https://www.oceanexpert.org/expert/45344 -https://www.oceanexpert.org/event/536 -https://www.oceanexpert.org/expert/38029 -https://www.oceanexpert.org/institution/13947 -https://www.oceanexpert.org/institution/21332 -https://www.oceanexpert.org/event/2987 -https://www.oceanexpert.org/expert/44779 -https://www.oceanexpert.org/expert/21307 -https://www.oceanexpert.org/expert/37440 -https://www.oceanexpert.org/expert/21482 -https://www.oceanexpert.org/expert/47128 -https://www.oceanexpert.org/expert/19602 -https://www.oceanexpert.org/expert/24559 -https://www.oceanexpert.org/expert/38912 -https://www.oceanexpert.org/expert/24936 -https://www.oceanexpert.org/institution/19783 -https://www.oceanexpert.org/expert/13635 -https://www.oceanexpert.org/institution/21074 -https://www.oceanexpert.org/expert/48246 -https://www.oceanexpert.org/expert/25444 -https://www.oceanexpert.org/expert/35015 -https://www.oceanexpert.org/expert/34254 -https://www.oceanexpert.org/event/1512 -https://www.oceanexpert.org/institution/17561 -https://www.oceanexpert.org/expert/27012 -https://www.oceanexpert.org/expert/33289 -https://www.oceanexpert.org/institution/17823 -https://www.oceanexpert.org/expert/15031 -https://www.oceanexpert.org/institution/21305 -https://www.oceanexpert.org/expert/32619 -https://www.oceanexpert.org/expert/47797 -https://www.oceanexpert.org/expert/48883 -https://www.oceanexpert.org/event/2526 -https://www.oceanexpert.org/expert/36757 -https://www.oceanexpert.org/expert/22548 -https://www.oceanexpert.org/expert/44163 -https://www.oceanexpert.org/institution/20091 -https://www.oceanexpert.org/institution/7503 -https://www.oceanexpert.org/institution/15079 -https://www.oceanexpert.org/expert/42693 -https://www.oceanexpert.org/expert/46741 -https://www.oceanexpert.org/expert/6927 -https://www.oceanexpert.org/expert/1964 -https://www.oceanexpert.org/expert/42904 -https://www.oceanexpert.org/expert/20320 -https://www.oceanexpert.org/expert/43379 -https://www.oceanexpert.org/institution/13489 -https://www.oceanexpert.org/institution/18069 -https://www.oceanexpert.org/expert/24493 -https://www.oceanexpert.org/event/2159 -https://www.oceanexpert.org/expert/35731 -https://www.oceanexpert.org/expert/34979 -https://www.oceanexpert.org/expert/18191 -https://www.oceanexpert.org/event/512 -https://www.oceanexpert.org/expert/30776 -https://www.oceanexpert.org/expert/42962 -https://www.oceanexpert.org/expert/34091 -https://www.oceanexpert.org/institution/14516 -https://www.oceanexpert.org/expert/179 -https://www.oceanexpert.org/expert/31334 -https://www.oceanexpert.org/institution/21782 -https://www.oceanexpert.org/expert/45630 -https://www.oceanexpert.org/expert/23856 -https://www.oceanexpert.org/event/967 -https://www.oceanexpert.org/institution/7852 -https://www.oceanexpert.org/event/2808 -https://www.oceanexpert.org/expert/24408 -https://www.oceanexpert.org/event/2222 -https://www.oceanexpert.org/institution/21636 -https://www.oceanexpert.org/expert/40088 -https://www.oceanexpert.org/expert/46929 -https://www.oceanexpert.org/institution/16153 -https://www.oceanexpert.org/expert/47400 -https://www.oceanexpert.org/expert/9888 -https://www.oceanexpert.org/institution/18353 -https://www.oceanexpert.org/institution/21767 -https://www.oceanexpert.org/expert/45965 -https://www.oceanexpert.org/expert/37245 -https://www.oceanexpert.org/expert/34061 -https://www.oceanexpert.org/expert/48986 -https://www.oceanexpert.org/institution/22063 -https://www.oceanexpert.org/expert/17477 -https://www.oceanexpert.org/institution/20424 -https://www.oceanexpert.org/event/246 -https://www.oceanexpert.org/expert/3579 -https://www.oceanexpert.org/institution/7095 -https://www.oceanexpert.org/event/1678 -https://www.oceanexpert.org/expert/34926 -https://www.oceanexpert.org/expert/43878 -https://www.oceanexpert.org/expert/10551 -https://www.oceanexpert.org/expert/42918 -https://www.oceanexpert.org/institution/10444 -https://www.oceanexpert.org/expert/37427 -https://www.oceanexpert.org/expert/25487 -https://www.oceanexpert.org/expert/22732 -https://www.oceanexpert.org/event/2615 -https://www.oceanexpert.org/expert/44491 -https://www.oceanexpert.org/expert/8026 -https://www.oceanexpert.org/institution/15605 -https://www.oceanexpert.org/institution/21326 -https://www.oceanexpert.org/expert/36955 -https://www.oceanexpert.org/expert/16651 -https://www.oceanexpert.org/event/830 -https://www.oceanexpert.org/institution/19588 -https://www.oceanexpert.org/expert/26366 -https://www.oceanexpert.org/event/2111 -https://www.oceanexpert.org/expert/48123 -https://www.oceanexpert.org/expert/44523 -https://www.oceanexpert.org/expert/26497 -https://www.oceanexpert.org/institution/20775 -https://www.oceanexpert.org/expert/23924 -https://www.oceanexpert.org/expert/21594 -https://www.oceanexpert.org/expert/45084 -https://www.oceanexpert.org/expert/23393 -https://www.oceanexpert.org/institution/12045 -https://www.oceanexpert.org/expert/26052 -https://www.oceanexpert.org/expert/47854 -https://www.oceanexpert.org/institution/21508 -https://www.oceanexpert.org/institution/21424 -https://www.oceanexpert.org/expert/21734 -https://www.oceanexpert.org/institution/7468 -https://www.oceanexpert.org/expert/25926 -https://www.oceanexpert.org/expert/40277 -https://www.oceanexpert.org/institution/19273 -https://www.oceanexpert.org/expert/1486 -https://www.oceanexpert.org/event/1636 -https://www.oceanexpert.org/expert/42116 -https://www.oceanexpert.org/expert/32774 -https://www.oceanexpert.org/expert/38370 -https://www.oceanexpert.org/expert/6409 -https://www.oceanexpert.org/institution/21935 -https://www.oceanexpert.org/expert/5738 -https://www.oceanexpert.org/expert/31108 -https://www.oceanexpert.org/expert/11946 -https://www.oceanexpert.org/expert/26045 -https://www.oceanexpert.org/expert/9162 -https://www.oceanexpert.org/expert/31983 -https://www.oceanexpert.org/expert/34250 -https://www.oceanexpert.org/institution/20313 -https://www.oceanexpert.org/expert/27161 -https://www.oceanexpert.org/expert/37145 -https://www.oceanexpert.org/institution/21780 -https://www.oceanexpert.org/event/215 -https://www.oceanexpert.org/institution/12963 -https://www.oceanexpert.org/expert/36246 -https://www.oceanexpert.org/expert/46730 -https://www.oceanexpert.org/event/1763 -https://www.oceanexpert.org/expert/18517 -https://www.oceanexpert.org/expert/45035 -https://www.oceanexpert.org/expert/16908 -https://www.oceanexpert.org/expert/30173 -https://www.oceanexpert.org/expert/17245 -https://www.oceanexpert.org/expert/48299 -https://www.oceanexpert.org/institution/8760 -https://www.oceanexpert.org/expert/30683 -https://www.oceanexpert.org/expert/33225 -https://www.oceanexpert.org/expert/10976 -https://www.oceanexpert.org/expert/46517 -https://www.oceanexpert.org/expert/30938 -https://www.oceanexpert.org/institution/21420 -https://www.oceanexpert.org/expert/18198 -https://www.oceanexpert.org/institution/12373 -https://www.oceanexpert.org/expert/37408 -https://www.oceanexpert.org/expert/48088 -https://www.oceanexpert.org/institution/18841 -https://www.oceanexpert.org/institution/18949 -https://www.oceanexpert.org/institution/17485 -https://www.oceanexpert.org/event/2388 -https://www.oceanexpert.org/expert/23099 -https://www.oceanexpert.org/expert/13568 -https://www.oceanexpert.org/expert/47284 -https://www.oceanexpert.org/expert/6356 -https://www.oceanexpert.org/expert/48808 -https://www.oceanexpert.org/expert/22958 -https://www.oceanexpert.org/event/2835 -https://www.oceanexpert.org/expert/33098 -https://www.oceanexpert.org/expert/29660 -https://www.oceanexpert.org/expert/37946 -https://www.oceanexpert.org/expert/32609 -https://www.oceanexpert.org/expert/14461 -https://www.oceanexpert.org/expert/29789 -https://www.oceanexpert.org/expert/15258 -https://www.oceanexpert.org/institution/5155 -https://www.oceanexpert.org/institution/16023 -https://www.oceanexpert.org/expert/17157 -https://www.oceanexpert.org/expert/40088 -https://www.oceanexpert.org/institution/15957 -https://www.oceanexpert.org/institution/12797 -https://www.oceanexpert.org/expert/18337 -https://www.oceanexpert.org/expert/34540 -https://www.oceanexpert.org/expert/23460 -https://www.oceanexpert.org/event/1167 -https://www.oceanexpert.org/expert/35527 -https://www.oceanexpert.org/expert/16573 -https://www.oceanexpert.org/expert/43200 -https://www.oceanexpert.org/expert/13159 -https://www.oceanexpert.org/expert/48159 -https://www.oceanexpert.org/expert/48861 -https://www.oceanexpert.org/expert/34960 -https://www.oceanexpert.org/expert/44382 -https://www.oceanexpert.org/expert/11610 -https://www.oceanexpert.org/expert/22050 -https://www.oceanexpert.org/event/2006 -https://www.oceanexpert.org/expert/23481 -https://www.oceanexpert.org/expert/17135 -https://www.oceanexpert.org/institution/7892 -https://www.oceanexpert.org/expert/39163 -https://www.oceanexpert.org/event/1894 -https://www.oceanexpert.org/expert/48949 -https://www.oceanexpert.org/expert/28129 -https://www.oceanexpert.org/institution/19787 -https://www.oceanexpert.org/expert/34468 -https://www.oceanexpert.org/expert/33101 -https://www.oceanexpert.org/expert/36302 -https://www.oceanexpert.org/institution/5041 -https://www.oceanexpert.org/expert/34330 -https://www.oceanexpert.org/institution/19370 -https://www.oceanexpert.org/expert/35876 -https://www.oceanexpert.org/expert/19337 -https://www.oceanexpert.org/expert/38654 -https://www.oceanexpert.org/institution/18703 -https://www.oceanexpert.org/expert/45144 -https://www.oceanexpert.org/expert/18285 -https://www.oceanexpert.org/expert/38239 -https://www.oceanexpert.org/expert/26977 -https://www.oceanexpert.org/expert/40 -https://www.oceanexpert.org/institution/9247 -https://www.oceanexpert.org/institution/18750 -https://www.oceanexpert.org/institution/19710 -https://www.oceanexpert.org/expert/47537 -https://www.oceanexpert.org/expert/17845 -https://www.oceanexpert.org/event/2246 -https://www.oceanexpert.org/event/2537 -https://www.oceanexpert.org/expert/47699 -https://www.oceanexpert.org/expert/47880 -https://www.oceanexpert.org/expert/18925 -https://www.oceanexpert.org/institution/19137 -https://www.oceanexpert.org/institution/19899 -https://www.oceanexpert.org/expert/23009 -https://www.oceanexpert.org/expert/37899 -https://www.oceanexpert.org/institution/18356 -https://www.oceanexpert.org/institution/15806 -https://www.oceanexpert.org/institution/21657 -https://www.oceanexpert.org/expert/20669 -https://www.oceanexpert.org/expert/42010 -https://www.oceanexpert.org/event/1301 -https://www.oceanexpert.org/expert/34469 -https://www.oceanexpert.org/expert/48940 -https://www.oceanexpert.org/expert/31270 -https://www.oceanexpert.org/institution/8844 -https://www.oceanexpert.org/expert/32403 -https://www.oceanexpert.org/expert/4986 -https://www.oceanexpert.org/expert/37852 -https://www.oceanexpert.org/expert/37044 -https://www.oceanexpert.org/expert/15537 -https://www.oceanexpert.org/expert/25434 -https://www.oceanexpert.org/expert/36785 -https://www.oceanexpert.org/institution/14461 -https://www.oceanexpert.org/institution/21419 -https://www.oceanexpert.org/expert/17037 -https://www.oceanexpert.org/expert/7204 -https://www.oceanexpert.org/institution/6385 -https://www.oceanexpert.org/event/129 -https://www.oceanexpert.org/institution/21627 -https://www.oceanexpert.org/expert/34533 -https://www.oceanexpert.org/expert/42569 -https://www.oceanexpert.org/event/1855 -https://www.oceanexpert.org/expert/38032 -https://www.oceanexpert.org/institution/19915 -https://www.oceanexpert.org/institution/17999 -https://www.oceanexpert.org/institution/20798 -https://www.oceanexpert.org/institution/21240 -https://www.oceanexpert.org/expert/42932 -https://www.oceanexpert.org/event/649 -https://www.oceanexpert.org/expert/22683 -https://www.oceanexpert.org/expert/18047 -https://www.oceanexpert.org/expert/26569 -https://www.oceanexpert.org/event/2855 -https://www.oceanexpert.org/event/1652 -https://www.oceanexpert.org/expert/1456 -https://www.oceanexpert.org/institution/18061 -https://www.oceanexpert.org/institution/11371 -https://www.oceanexpert.org/expert/30878 -https://www.oceanexpert.org/expert/18401 -https://www.oceanexpert.org/institution/5254 -https://www.oceanexpert.org/expert/17224 -https://www.oceanexpert.org/expert/40666 -https://www.oceanexpert.org/event/831 -https://www.oceanexpert.org/expert/34769 -https://www.oceanexpert.org/institution/11215 -https://www.oceanexpert.org/expert/19607 -https://www.oceanexpert.org/expert/34544 -https://www.oceanexpert.org/expert/7204 -https://www.oceanexpert.org/institution/8691 -https://www.oceanexpert.org/event/2715 -https://www.oceanexpert.org/expert/24778 -https://www.oceanexpert.org/expert/12923 -https://www.oceanexpert.org/expert/17751 -https://www.oceanexpert.org/expert/37084 -https://www.oceanexpert.org/institution/18449 -https://www.oceanexpert.org/institution/20426 -https://www.oceanexpert.org/event/1795 -https://www.oceanexpert.org/expert/35413 -https://www.oceanexpert.org/expert/17644 -https://www.oceanexpert.org/institution/18869 -https://www.oceanexpert.org/expert/4943 -https://www.oceanexpert.org/expert/29530 -https://www.oceanexpert.org/expert/48497 -https://www.oceanexpert.org/expert/33563 -https://www.oceanexpert.org/expert/2731 -https://www.oceanexpert.org/institution/21134 -https://www.oceanexpert.org/expert/23527 -https://www.oceanexpert.org/institution/21004 -https://www.oceanexpert.org/expert/39021 -https://www.oceanexpert.org/event/1072 -https://www.oceanexpert.org/expert/21533 -https://www.oceanexpert.org/institution/13136 -https://www.oceanexpert.org/expert/32939 -https://www.oceanexpert.org/expert/31141 -https://www.oceanexpert.org/institution/22124 -https://www.oceanexpert.org/expert/36814 -https://www.oceanexpert.org/institution/18629 -https://www.oceanexpert.org/expert/11703 -https://www.oceanexpert.org/institution/17326 -https://www.oceanexpert.org/expert/27937 -https://www.oceanexpert.org/expert/28336 -https://www.oceanexpert.org/institution/19853 -https://www.oceanexpert.org/expert/21173 -https://www.oceanexpert.org/institution/15735 -https://www.oceanexpert.org/event/2642 -https://www.oceanexpert.org/expert/15571 -https://www.oceanexpert.org/institution/18710 -https://www.oceanexpert.org/event/2498 -https://www.oceanexpert.org/institution/6444 -https://www.oceanexpert.org/expert/23577 -https://www.oceanexpert.org/expert/26236 -https://www.oceanexpert.org/institution/19793 -https://www.oceanexpert.org/expert/10177 -https://www.oceanexpert.org/expert/36399 -https://www.oceanexpert.org/expert/47770 -https://www.oceanexpert.org/event/1107 -https://www.oceanexpert.org/event/2439 -https://www.oceanexpert.org/expert/27452 -https://www.oceanexpert.org/expert/29145 -https://www.oceanexpert.org/expert/2249 -https://www.oceanexpert.org/expert/26205 -https://www.oceanexpert.org/expert/21453 -https://www.oceanexpert.org/institution/6880 -https://www.oceanexpert.org/expert/20626 -https://www.oceanexpert.org/institution/20789 -https://www.oceanexpert.org/expert/44711 -https://www.oceanexpert.org/institution/16241 -https://www.oceanexpert.org/expert/16182 -https://www.oceanexpert.org/institution/18615 -https://www.oceanexpert.org/expert/22523 -https://www.oceanexpert.org/expert/43024 -https://www.oceanexpert.org/expert/25661 -https://www.oceanexpert.org/expert/26773 -https://www.oceanexpert.org/expert/26630 -https://www.oceanexpert.org/institution/19586 -https://www.oceanexpert.org/expert/23060 -https://www.oceanexpert.org/institution/8547 -https://www.oceanexpert.org/expert/44214 -https://www.oceanexpert.org/expert/27364 -https://www.oceanexpert.org/expert/46352 -https://www.oceanexpert.org/expert/35136 -https://www.oceanexpert.org/expert/46770 -https://www.oceanexpert.org/institution/19854 -https://www.oceanexpert.org/expert/38477 -https://www.oceanexpert.org/expert/40291 -https://www.oceanexpert.org/expert/46961 -https://www.oceanexpert.org/institution/13120 -https://www.oceanexpert.org/expert/20156 -https://www.oceanexpert.org/institution/22151 -https://www.oceanexpert.org/expert/4732 -https://www.oceanexpert.org/expert/26083 -https://www.oceanexpert.org/expert/6316 -https://www.oceanexpert.org/expert/13485 -https://www.oceanexpert.org/event/718 -https://www.oceanexpert.org/expert/48867 -https://www.oceanexpert.org/expert/27565 -https://www.oceanexpert.org/institution/20524 -https://www.oceanexpert.org/expert/21180 -https://www.oceanexpert.org/event/1947 -https://www.oceanexpert.org/expert/34207 -https://www.oceanexpert.org/event/2220 -https://www.oceanexpert.org/institution/19208 -https://www.oceanexpert.org/expert/28850 -https://www.oceanexpert.org/institution/18808 -https://www.oceanexpert.org/expert/44241 -https://www.oceanexpert.org/expert/30826 -https://www.oceanexpert.org/expert/1962 -https://www.oceanexpert.org/institution/19605 -https://www.oceanexpert.org/expert/33398 -https://www.oceanexpert.org/expert/34510 -https://www.oceanexpert.org/expert/26826 -https://www.oceanexpert.org/institution/8990 -https://www.oceanexpert.org/expert/28166 -https://www.oceanexpert.org/expert/19653 -https://www.oceanexpert.org/institution/16222 -https://www.oceanexpert.org/expert/22507 -https://www.oceanexpert.org/expert/16384 -https://www.oceanexpert.org/institution/19038 -https://www.oceanexpert.org/institution/14023 -https://www.oceanexpert.org/expert/19423 -https://www.oceanexpert.org/institution/20508 -https://www.oceanexpert.org/expert/43885 -https://www.oceanexpert.org/expert/44843 -https://www.oceanexpert.org/expert/18582 -https://www.oceanexpert.org/expert/23626 -https://www.oceanexpert.org/expert/43644 -https://www.oceanexpert.org/expert/49000 -https://www.oceanexpert.org/expert/37184 -https://www.oceanexpert.org/expert/16607 -https://www.oceanexpert.org/institution/21780 -https://www.oceanexpert.org/expert/32175 -https://www.oceanexpert.org/expert/44218 -https://www.oceanexpert.org/expert/4108 -https://www.oceanexpert.org/expert/40072 -https://www.oceanexpert.org/expert/43260 -https://www.oceanexpert.org/institution/20973 -https://www.oceanexpert.org/event/183 -https://www.oceanexpert.org/expert/18860 -https://www.oceanexpert.org/expert/21650 -https://www.oceanexpert.org/expert/45776 -https://www.oceanexpert.org/event/2335 -https://www.oceanexpert.org/event/1670 -https://www.oceanexpert.org/expert/25399 -https://www.oceanexpert.org/institution/19597 -https://www.oceanexpert.org/expert/39919 -https://www.oceanexpert.org/institution/10527 -https://www.oceanexpert.org/expert/38898 -https://www.oceanexpert.org/expert/17993 -https://www.oceanexpert.org/expert/36301 -https://www.oceanexpert.org/expert/6207 -https://www.oceanexpert.org/expert/21075 -https://www.oceanexpert.org/expert/25038 -https://www.oceanexpert.org/institution/12846 -https://www.oceanexpert.org/expert/26314 -https://www.oceanexpert.org/institution/20549 -https://www.oceanexpert.org/expert/29374 -https://www.oceanexpert.org/expert/43163 -https://www.oceanexpert.org/institution/21548 -https://www.oceanexpert.org/expert/44891 -https://www.oceanexpert.org/expert/29215 -https://www.oceanexpert.org/expert/25999 -https://www.oceanexpert.org/expert/19922 -https://www.oceanexpert.org/expert/19585 -https://www.oceanexpert.org/institution/12010 -https://www.oceanexpert.org/event/551 -https://www.oceanexpert.org/institution/14120 -https://www.oceanexpert.org/event/1265 -https://www.oceanexpert.org/expert/36552 -https://www.oceanexpert.org/institution/18784 -https://www.oceanexpert.org/expert/48995 -https://www.oceanexpert.org/institution/14990 -https://www.oceanexpert.org/expert/20483 -https://www.oceanexpert.org/expert/31653 -https://www.oceanexpert.org/event/203 -https://www.oceanexpert.org/expert/40525 -https://www.oceanexpert.org/expert/17641 -https://www.oceanexpert.org/event/795 -https://www.oceanexpert.org/institution/8752 -https://www.oceanexpert.org/expert/30802 -https://www.oceanexpert.org/expert/35056 -https://www.oceanexpert.org/expert/7662 -https://www.oceanexpert.org/institution/18807 -https://www.oceanexpert.org/institution/18827 -https://www.oceanexpert.org/institution/21821 -https://www.oceanexpert.org/expert/38243 -https://www.oceanexpert.org/expert/35902 -https://www.oceanexpert.org/expert/36431 -https://www.oceanexpert.org/expert/33959 -https://www.oceanexpert.org/expert/25341 -https://www.oceanexpert.org/expert/16718 -https://www.oceanexpert.org/expert/8423 -https://www.oceanexpert.org/institution/8413 -https://www.oceanexpert.org/institution/19189 -https://www.oceanexpert.org/expert/18578 -https://www.oceanexpert.org/institution/22007 -https://www.oceanexpert.org/expert/43929 -https://www.oceanexpert.org/expert/13343 -https://www.oceanexpert.org/expert/7027 -https://www.oceanexpert.org/expert/36845 -https://www.oceanexpert.org/institution/18793 -https://www.oceanexpert.org/institution/10507 -https://www.oceanexpert.org/expert/16848 -https://www.oceanexpert.org/expert/38288 -https://www.oceanexpert.org/expert/25052 -https://www.oceanexpert.org/expert/32927 -https://www.oceanexpert.org/expert/37100 -https://www.oceanexpert.org/expert/39982 -https://www.oceanexpert.org/institution/6119 -https://www.oceanexpert.org/expert/21830 -https://www.oceanexpert.org/institution/21960 -https://www.oceanexpert.org/institution/14232 -https://www.oceanexpert.org/expert/5830 -https://www.oceanexpert.org/event/1872 -https://www.oceanexpert.org/expert/38340 -https://www.oceanexpert.org/institution/19000 -https://www.oceanexpert.org/expert/15022 -https://www.oceanexpert.org/expert/25028 -https://www.oceanexpert.org/expert/25442 -https://www.oceanexpert.org/expert/13033 -https://www.oceanexpert.org/expert/37414 -https://www.oceanexpert.org/expert/24990 -https://www.oceanexpert.org/institution/22154 -https://www.oceanexpert.org/expert/38231 -https://www.oceanexpert.org/expert/36326 -https://www.oceanexpert.org/institution/15716 -https://www.oceanexpert.org/expert/43035 -https://www.oceanexpert.org/expert/15618 -https://www.oceanexpert.org/institution/17811 -https://www.oceanexpert.org/expert/18921 -https://www.oceanexpert.org/expert/26588 -https://www.oceanexpert.org/expert/47176 -https://www.oceanexpert.org/institution/21016 -https://www.oceanexpert.org/institution/20900 -https://www.oceanexpert.org/institution/19106 -https://www.oceanexpert.org/expert/8758 -https://www.oceanexpert.org/expert/3788 -https://www.oceanexpert.org/expert/32643 -https://www.oceanexpert.org/institution/21759 -https://www.oceanexpert.org/expert/36498 -https://www.oceanexpert.org/event/1984 -https://www.oceanexpert.org/expert/27549 -https://www.oceanexpert.org/institution/21786 -https://www.oceanexpert.org/expert/17628 -https://www.oceanexpert.org/expert/38302 -https://www.oceanexpert.org/expert/48955 -https://www.oceanexpert.org/expert/20282 -https://www.oceanexpert.org/expert/48099 -https://www.oceanexpert.org/expert/39204 -https://www.oceanexpert.org/institution/14650 -https://www.oceanexpert.org/expert/37850 -https://www.oceanexpert.org/expert/42451 -https://www.oceanexpert.org/expert/35768 -https://www.oceanexpert.org/expert/14533 -https://www.oceanexpert.org/expert/12040 -https://www.oceanexpert.org/expert/44399 -https://www.oceanexpert.org/expert/39607 -https://www.oceanexpert.org/expert/44677 -https://www.oceanexpert.org/expert/48015 -https://www.oceanexpert.org/expert/45809 -https://www.oceanexpert.org/expert/43710 -https://www.oceanexpert.org/expert/37810 -https://www.oceanexpert.org/expert/20372 -https://www.oceanexpert.org/expert/27245 -https://www.oceanexpert.org/expert/19806 -https://www.oceanexpert.org/expert/7180 -https://www.oceanexpert.org/event/632 -https://www.oceanexpert.org/institution/17943 -https://www.oceanexpert.org/expert/37935 -https://www.oceanexpert.org/expert/37083 -https://www.oceanexpert.org/expert/22849 -https://www.oceanexpert.org/expert/24639 -https://www.oceanexpert.org/institution/17839 -https://www.oceanexpert.org/expert/20898 -https://www.oceanexpert.org/expert/29882 -https://www.oceanexpert.org/expert/48515 -https://www.oceanexpert.org/expert/6800 -https://www.oceanexpert.org/expert/42371 -https://www.oceanexpert.org/institution/20858 -https://www.oceanexpert.org/expert/18778 -https://www.oceanexpert.org/expert/30112 -https://www.oceanexpert.org/expert/38199 -https://www.oceanexpert.org/expert/32932 -https://www.oceanexpert.org/expert/40552 -https://www.oceanexpert.org/institution/21546 -https://www.oceanexpert.org/institution/22134 -https://www.oceanexpert.org/expert/31140 -https://www.oceanexpert.org/expert/33457 -https://www.oceanexpert.org/institution/19014 -https://www.oceanexpert.org/expert/45194 -https://www.oceanexpert.org/event/1865 -https://www.oceanexpert.org/event/1664 -https://www.oceanexpert.org/expert/34845 -https://www.oceanexpert.org/expert/22737 -https://www.oceanexpert.org/institution/22134 -https://www.oceanexpert.org/expert/30866 -https://www.oceanexpert.org/institution/17225 -https://www.oceanexpert.org/expert/21711 -https://www.oceanexpert.org/expert/45896 -https://www.oceanexpert.org/institution/13374 -https://www.oceanexpert.org/expert/38095 -https://www.oceanexpert.org/expert/45027 -https://www.oceanexpert.org/expert/29214 -https://www.oceanexpert.org/event/3077 -https://www.oceanexpert.org/expert/38491 -https://www.oceanexpert.org/event/1180 -https://www.oceanexpert.org/expert/26947 -https://www.oceanexpert.org/institution/19193 -https://www.oceanexpert.org/expert/29852 -https://www.oceanexpert.org/expert/45642 -https://www.oceanexpert.org/expert/24100 -https://www.oceanexpert.org/institution/19757 -https://www.oceanexpert.org/expert/44943 -https://www.oceanexpert.org/institution/21015 -https://www.oceanexpert.org/expert/33347 -https://www.oceanexpert.org/expert/33465 -https://www.oceanexpert.org/expert/42859 -https://www.oceanexpert.org/expert/17987 -https://www.oceanexpert.org/institution/12795 -https://www.oceanexpert.org/expert/36730 -https://www.oceanexpert.org/expert/17126 -https://www.oceanexpert.org/expert/37937 -https://www.oceanexpert.org/expert/34687 -https://www.oceanexpert.org/institution/16161 -https://www.oceanexpert.org/event/1204 -https://www.oceanexpert.org/institution/13122 -https://www.oceanexpert.org/expert/28084 -https://www.oceanexpert.org/expert/43152 -https://www.oceanexpert.org/expert/20121 -https://www.oceanexpert.org/expert/16369 -https://www.oceanexpert.org/institution/12084 -https://www.oceanexpert.org/expert/16193 -https://www.oceanexpert.org/event/2775 -https://www.oceanexpert.org/expert/19767 -https://www.oceanexpert.org/event/1765 -https://www.oceanexpert.org/expert/31155 -https://www.oceanexpert.org/expert/32100 -https://www.oceanexpert.org/expert/46959 -https://www.oceanexpert.org/expert/35305 -https://www.oceanexpert.org/expert/42488 -https://www.oceanexpert.org/institution/18776 -https://www.oceanexpert.org/event/990 -https://www.oceanexpert.org/expert/43975 -https://www.oceanexpert.org/expert/26395 -https://www.oceanexpert.org/expert/12878 -https://www.oceanexpert.org/expert/26908 -https://www.oceanexpert.org/expert/19659 -https://www.oceanexpert.org/expert/33709 -https://www.oceanexpert.org/event/2637 -https://www.oceanexpert.org/expert/47086 -https://www.oceanexpert.org/expert/23696 -https://www.oceanexpert.org/institution/8648 -https://www.oceanexpert.org/expert/34846 -https://www.oceanexpert.org/event/66 -https://www.oceanexpert.org/expert/26996 -https://www.oceanexpert.org/expert/45831 -https://www.oceanexpert.org/expert/34133 -https://www.oceanexpert.org/expert/47682 -https://www.oceanexpert.org/institution/17921 -https://www.oceanexpert.org/event/2476 -https://www.oceanexpert.org/expert/19605 -https://www.oceanexpert.org/expert/18587 -https://www.oceanexpert.org/expert/24039 -https://www.oceanexpert.org/event/43 -https://www.oceanexpert.org/event/258 -https://www.oceanexpert.org/expert/46281 -https://www.oceanexpert.org/expert/30222 -https://www.oceanexpert.org/expert/8526 -https://www.oceanexpert.org/expert/36823 -https://www.oceanexpert.org/event/1415 -https://www.oceanexpert.org/expert/45485 -https://www.oceanexpert.org/expert/23551 -https://www.oceanexpert.org/expert/11963 -https://www.oceanexpert.org/expert/35180 -https://www.oceanexpert.org/event/422 -https://www.oceanexpert.org/event/2992 -https://www.oceanexpert.org/institution/21304 -https://www.oceanexpert.org/expert/24180 -https://www.oceanexpert.org/expert/20067 -https://www.oceanexpert.org/expert/32927 -https://www.oceanexpert.org/institution/21135 -https://www.oceanexpert.org/event/2558 -https://www.oceanexpert.org/expert/44609 -https://www.oceanexpert.org/institution/20552 -https://www.oceanexpert.org/expert/37502 -https://www.oceanexpert.org/expert/44552 -https://www.oceanexpert.org/expert/20883 -https://www.oceanexpert.org/institution/16195 -https://www.oceanexpert.org/expert/18023 -https://www.oceanexpert.org/expert/26473 -https://www.oceanexpert.org/institution/19789 -https://www.oceanexpert.org/expert/26520 -https://www.oceanexpert.org/institution/20959 -https://www.oceanexpert.org/expert/42505 -https://www.oceanexpert.org/event/3277 -https://www.oceanexpert.org/expert/47638 -https://www.oceanexpert.org/expert/27243 -https://www.oceanexpert.org/expert/29142 -https://www.oceanexpert.org/expert/48372 -https://www.oceanexpert.org/event/2231 -https://www.oceanexpert.org/institution/11782 -https://www.oceanexpert.org/expert/30585 -https://www.oceanexpert.org/institution/11068 -https://www.oceanexpert.org/expert/38070 -https://www.oceanexpert.org/expert/19501 -https://www.oceanexpert.org/expert/25094 -https://www.oceanexpert.org/institution/14065 -https://www.oceanexpert.org/expert/42626 -https://www.oceanexpert.org/expert/16611 -https://www.oceanexpert.org/expert/13441 -https://www.oceanexpert.org/institution/19277 -https://www.oceanexpert.org/institution/21083 -https://www.oceanexpert.org/event/2379 -https://www.oceanexpert.org/institution/19045 -https://www.oceanexpert.org/expert/43663 -https://www.oceanexpert.org/institution/13428 -https://www.oceanexpert.org/expert/40118 -https://www.oceanexpert.org/expert/10828 -https://www.oceanexpert.org/expert/33864 -https://www.oceanexpert.org/expert/25992 -https://www.oceanexpert.org/expert/6922 -https://www.oceanexpert.org/expert/16304 -https://www.oceanexpert.org/institution/18738 -https://www.oceanexpert.org/institution/20444 -https://www.oceanexpert.org/expert/37454 -https://www.oceanexpert.org/expert/6700 -https://www.oceanexpert.org/event/2131 -https://www.oceanexpert.org/expert/22474 -https://www.oceanexpert.org/expert/14425 -https://www.oceanexpert.org/expert/6489 -https://www.oceanexpert.org/expert/19736 -https://www.oceanexpert.org/expert/1864 -https://www.oceanexpert.org/expert/35472 -https://www.oceanexpert.org/institution/21241 -https://www.oceanexpert.org/expert/43314 -https://www.oceanexpert.org/expert/20371 -https://www.oceanexpert.org/expert/20266 -https://www.oceanexpert.org/institution/20039 -https://www.oceanexpert.org/expert/34459 -https://www.oceanexpert.org/expert/48817 -https://www.oceanexpert.org/expert/44029 -https://www.oceanexpert.org/expert/560 -https://www.oceanexpert.org/expert/38234 -https://www.oceanexpert.org/expert/29984 -https://www.oceanexpert.org/expert/37575 -https://www.oceanexpert.org/expert/47522 -https://www.oceanexpert.org/institution/7430 -https://www.oceanexpert.org/institution/5176 -https://www.oceanexpert.org/event/1083 -https://www.oceanexpert.org/institution/19621 -https://www.oceanexpert.org/institution/19268 -https://www.oceanexpert.org/expert/18057 -https://www.oceanexpert.org/expert/38176 -https://www.oceanexpert.org/institution/18973 -https://www.oceanexpert.org/expert/31003 -https://www.oceanexpert.org/expert/4382 -https://www.oceanexpert.org/expert/4651 -https://www.oceanexpert.org/expert/24067 -https://www.oceanexpert.org/institution/13653 -https://www.oceanexpert.org/expert/39234 -https://www.oceanexpert.org/event/795 -https://www.oceanexpert.org/expert/23773 -https://www.oceanexpert.org/expert/46638 -https://www.oceanexpert.org/event/648 -https://www.oceanexpert.org/expert/47334 -https://www.oceanexpert.org/expert/46922 -https://www.oceanexpert.org/institution/17040 -https://www.oceanexpert.org/expert/33249 -https://www.oceanexpert.org/expert/21863 -https://www.oceanexpert.org/expert/31643 -https://www.oceanexpert.org/expert/46692 -https://www.oceanexpert.org/expert/16471 -https://www.oceanexpert.org/institution/21090 -https://www.oceanexpert.org/expert/8863 -https://www.oceanexpert.org/expert/28755 -https://www.oceanexpert.org/expert/22932 -https://www.oceanexpert.org/expert/26007 -https://www.oceanexpert.org/expert/25087 -https://www.oceanexpert.org/expert/48805 -https://www.oceanexpert.org/institution/16718 -https://www.oceanexpert.org/institution/20044 -https://www.oceanexpert.org/institution/21473 -https://www.oceanexpert.org/institution/13747 -https://www.oceanexpert.org/expert/34295 -https://www.oceanexpert.org/expert/27307 -https://www.oceanexpert.org/expert/44370 -https://www.oceanexpert.org/expert/31221 -https://www.oceanexpert.org/institution/20089 -https://www.oceanexpert.org/event/1855 -https://www.oceanexpert.org/expert/20359 -https://www.oceanexpert.org/expert/23386 -https://www.oceanexpert.org/expert/18174 -https://www.oceanexpert.org/institution/10926 -https://www.oceanexpert.org/event/941 -https://www.oceanexpert.org/institution/14112 -https://www.oceanexpert.org/institution/19068 -https://www.oceanexpert.org/expert/27548 -https://www.oceanexpert.org/expert/22111 -https://www.oceanexpert.org/expert/30956 -https://www.oceanexpert.org/expert/37871 -https://www.oceanexpert.org/expert/18954 -https://www.oceanexpert.org/event/762 -https://www.oceanexpert.org/expert/19745 -https://www.oceanexpert.org/expert/45595 -https://www.oceanexpert.org/institution/21331 -https://www.oceanexpert.org/expert/20309 -https://www.oceanexpert.org/expert/13327 -https://www.oceanexpert.org/expert/27214 -https://www.oceanexpert.org/expert/37431 -https://www.oceanexpert.org/institution/18557 -https://www.oceanexpert.org/expert/6623 -https://www.oceanexpert.org/institution/15084 -https://www.oceanexpert.org/expert/34054 -https://www.oceanexpert.org/expert/27788 -https://www.oceanexpert.org/institution/12585 -https://www.oceanexpert.org/expert/48152 -https://www.oceanexpert.org/expert/46034 -https://www.oceanexpert.org/institution/14416 -https://www.oceanexpert.org/institution/17427 -https://www.oceanexpert.org/expert/43900 -https://www.oceanexpert.org/expert/6225 -https://www.oceanexpert.org/expert/45963 -https://www.oceanexpert.org/expert/42147 -https://www.oceanexpert.org/expert/45567 -https://www.oceanexpert.org/institution/14500 -https://www.oceanexpert.org/expert/18620 -https://www.oceanexpert.org/institution/12383 -https://www.oceanexpert.org/expert/18679 -https://www.oceanexpert.org/institution/15577 -https://www.oceanexpert.org/expert/36411 -https://www.oceanexpert.org/expert/12879 -https://www.oceanexpert.org/institution/21690 -https://www.oceanexpert.org/expert/29374 -https://www.oceanexpert.org/expert/21257 -https://www.oceanexpert.org/expert/12914 -https://www.oceanexpert.org/expert/37059 -https://www.oceanexpert.org/event/948 -https://www.oceanexpert.org/expert/35917 -https://www.oceanexpert.org/institution/12156 -https://www.oceanexpert.org/institution/16677 -https://www.oceanexpert.org/institution/18782 -https://www.oceanexpert.org/institution/22121 -https://www.oceanexpert.org/expert/18121 -https://www.oceanexpert.org/event/1552 -https://www.oceanexpert.org/expert/31066 -https://www.oceanexpert.org/institution/12786 -https://www.oceanexpert.org/institution/16805 -https://www.oceanexpert.org/expert/48958 -https://www.oceanexpert.org/expert/27401 -https://www.oceanexpert.org/expert/6640 -https://www.oceanexpert.org/expert/5418 -https://www.oceanexpert.org/expert/33250 -https://www.oceanexpert.org/institution/5711 -https://www.oceanexpert.org/expert/26661 -https://www.oceanexpert.org/expert/26236 -https://www.oceanexpert.org/institution/14061 -https://www.oceanexpert.org/expert/21737 -https://www.oceanexpert.org/institution/13075 -https://www.oceanexpert.org/expert/22539 -https://www.oceanexpert.org/institution/20540 -https://www.oceanexpert.org/expert/43887 -https://www.oceanexpert.org/expert/31979 -https://www.oceanexpert.org/expert/34308 -https://www.oceanexpert.org/expert/27061 -https://www.oceanexpert.org/event/2881 -https://www.oceanexpert.org/institution/10279 -https://www.oceanexpert.org/expert/24116 -https://www.oceanexpert.org/institution/16440 -https://www.oceanexpert.org/event/544 -https://www.oceanexpert.org/expert/13678 -https://www.oceanexpert.org/institution/18106 -https://www.oceanexpert.org/institution/15217 -https://www.oceanexpert.org/institution/11631 -https://www.oceanexpert.org/expert/25154 -https://www.oceanexpert.org/event/1832 -https://www.oceanexpert.org/expert/26351 -https://www.oceanexpert.org/expert/19848 -https://www.oceanexpert.org/institution/6788 -https://www.oceanexpert.org/expert/36212 -https://www.oceanexpert.org/expert/27677 -https://www.oceanexpert.org/expert/32525 -https://www.oceanexpert.org/institution/12036 -https://www.oceanexpert.org/institution/14614 -https://www.oceanexpert.org/event/2286 -https://www.oceanexpert.org/event/2980 -https://www.oceanexpert.org/expert/45469 -https://www.oceanexpert.org/expert/17165 -https://www.oceanexpert.org/expert/18880 -https://www.oceanexpert.org/expert/26648 -https://www.oceanexpert.org/institution/8195 -https://www.oceanexpert.org/expert/14027 -https://www.oceanexpert.org/expert/32490 -https://www.oceanexpert.org/institution/21192 -https://www.oceanexpert.org/institution/17184 -https://www.oceanexpert.org/expert/38153 -https://www.oceanexpert.org/institution/10954 -https://www.oceanexpert.org/expert/36732 -https://www.oceanexpert.org/institution/22153 -https://www.oceanexpert.org/expert/42801 -https://www.oceanexpert.org/expert/48753 -https://www.oceanexpert.org/expert/36031 -https://www.oceanexpert.org/event/1562 -https://www.oceanexpert.org/expert/24192 -https://www.oceanexpert.org/expert/25916 -https://www.oceanexpert.org/event/2782 -https://www.oceanexpert.org/event/871 -https://www.oceanexpert.org/event/1503 -https://www.oceanexpert.org/expert/20525 -https://www.oceanexpert.org/expert/29800 -https://www.oceanexpert.org/institution/18545 -https://www.oceanexpert.org/expert/44578 -https://www.oceanexpert.org/expert/30342 -https://www.oceanexpert.org/institution/15929 -https://www.oceanexpert.org/expert/33392 -https://www.oceanexpert.org/institution/21746 -https://www.oceanexpert.org/institution/16751 -https://www.oceanexpert.org/expert/20795 -https://www.oceanexpert.org/institution/21208 -https://www.oceanexpert.org/expert/43228 -https://www.oceanexpert.org/institution/21538 -https://www.oceanexpert.org/institution/11992 -https://www.oceanexpert.org/expert/39632 -https://www.oceanexpert.org/institution/14140 -https://www.oceanexpert.org/expert/25579 -https://www.oceanexpert.org/institution/20626 -https://www.oceanexpert.org/expert/32447 -https://www.oceanexpert.org/expert/42833 -https://www.oceanexpert.org/expert/24604 -https://www.oceanexpert.org/expert/26695 -https://www.oceanexpert.org/expert/22103 -https://www.oceanexpert.org/expert/13334 -https://www.oceanexpert.org/expert/12045 -https://www.oceanexpert.org/expert/22643 -https://www.oceanexpert.org/expert/45818 -https://www.oceanexpert.org/institution/16220 -https://www.oceanexpert.org/expert/25504 -https://www.oceanexpert.org/institution/21595 -https://www.oceanexpert.org/institution/20483 -https://www.oceanexpert.org/expert/17076 -https://www.oceanexpert.org/expert/37718 -https://www.oceanexpert.org/expert/37368 -https://www.oceanexpert.org/event/862 -https://www.oceanexpert.org/expert/35383 -https://www.oceanexpert.org/expert/36454 -https://www.oceanexpert.org/institution/18259 -https://www.oceanexpert.org/institution/20444 -https://www.oceanexpert.org/expert/28206 -https://www.oceanexpert.org/event/2042 -https://www.oceanexpert.org/expert/24217 -https://www.oceanexpert.org/expert/46457 -https://www.oceanexpert.org/expert/21684 -https://www.oceanexpert.org/institution/9605 -https://www.oceanexpert.org/expert/24571 -https://www.oceanexpert.org/expert/36589 -https://www.oceanexpert.org/expert/14959 -https://www.oceanexpert.org/expert/23659 -https://www.oceanexpert.org/expert/47968 -https://www.oceanexpert.org/expert/21363 -https://www.oceanexpert.org/expert/47848 -https://www.oceanexpert.org/expert/32754 -https://www.oceanexpert.org/expert/46785 -https://www.oceanexpert.org/expert/34392 -https://www.oceanexpert.org/expert/43106 -https://www.oceanexpert.org/event/313 -https://www.oceanexpert.org/expert/22022 -https://www.oceanexpert.org/expert/7021 -https://www.oceanexpert.org/expert/24253 -https://www.oceanexpert.org/institution/21060 -https://www.oceanexpert.org/expert/22418 -https://www.oceanexpert.org/expert/36087 -https://www.oceanexpert.org/institution/19950 -https://www.oceanexpert.org/institution/21785 -https://www.oceanexpert.org/expert/36447 -https://www.oceanexpert.org/event/914 -https://www.oceanexpert.org/expert/29155 -https://www.oceanexpert.org/expert/20583 -https://www.oceanexpert.org/event/3254 -https://www.oceanexpert.org/expert/44318 -https://www.oceanexpert.org/expert/44163 -https://www.oceanexpert.org/institution/18948 -https://www.oceanexpert.org/expert/38220 -https://www.oceanexpert.org/expert/45635 -https://www.oceanexpert.org/expert/23984 -https://www.oceanexpert.org/expert/26919 -https://www.oceanexpert.org/expert/40624 -https://www.oceanexpert.org/institution/21868 -https://www.oceanexpert.org/expert/48141 -https://www.oceanexpert.org/expert/14533 -https://www.oceanexpert.org/expert/36764 -https://www.oceanexpert.org/expert/25174 -https://www.oceanexpert.org/institution/13867 -https://www.oceanexpert.org/expert/25986 -https://www.oceanexpert.org/institution/18395 -https://www.oceanexpert.org/expert/313 -https://www.oceanexpert.org/expert/42815 -https://www.oceanexpert.org/institution/20096 -https://www.oceanexpert.org/expert/21000 -https://www.oceanexpert.org/expert/18866 -https://www.oceanexpert.org/expert/7010 -https://www.oceanexpert.org/institution/15209 -https://www.oceanexpert.org/expert/17183 -https://www.oceanexpert.org/expert/8106 -https://www.oceanexpert.org/expert/21786 -https://www.oceanexpert.org/institution/14171 -https://www.oceanexpert.org/institution/18665 -https://www.oceanexpert.org/institution/12618 -https://www.oceanexpert.org/expert/44045 -https://www.oceanexpert.org/expert/24016 -https://www.oceanexpert.org/institution/9323 -https://www.oceanexpert.org/institution/16330 -https://www.oceanexpert.org/expert/45953 -https://www.oceanexpert.org/expert/43998 -https://www.oceanexpert.org/expert/42571 -https://www.oceanexpert.org/event/2705 -https://www.oceanexpert.org/expert/21546 -https://www.oceanexpert.org/institution/8841 -https://www.oceanexpert.org/expert/31451 -https://www.oceanexpert.org/expert/20634 -https://www.oceanexpert.org/institution/19325 -https://www.oceanexpert.org/expert/23057 -https://www.oceanexpert.org/institution/9521 -https://www.oceanexpert.org/institution/8719 -https://www.oceanexpert.org/expert/19787 -https://www.oceanexpert.org/expert/13228 -https://www.oceanexpert.org/expert/34328 -https://www.oceanexpert.org/expert/38243 -https://www.oceanexpert.org/institution/18815 -https://www.oceanexpert.org/expert/48579 -https://www.oceanexpert.org/expert/313 -https://www.oceanexpert.org/expert/31735 -https://www.oceanexpert.org/expert/22947 -https://www.oceanexpert.org/event/1416 -https://www.oceanexpert.org/expert/30019 -https://www.oceanexpert.org/expert/1416 -https://www.oceanexpert.org/expert/27475 -https://www.oceanexpert.org/institution/17493 -https://www.oceanexpert.org/expert/23754 -https://www.oceanexpert.org/expert/44293 -https://www.oceanexpert.org/expert/24929 -https://www.oceanexpert.org/expert/34718 -https://www.oceanexpert.org/expert/48560 -https://www.oceanexpert.org/expert/36292 -https://www.oceanexpert.org/institution/18388 -https://www.oceanexpert.org/expert/45504 -https://www.oceanexpert.org/expert/43627 -https://www.oceanexpert.org/expert/36904 -https://www.oceanexpert.org/expert/26845 -https://www.oceanexpert.org/expert/48383 -https://www.oceanexpert.org/institution/13485 -https://www.oceanexpert.org/expert/27557 -https://www.oceanexpert.org/expert/22162 -https://www.oceanexpert.org/expert/30751 -https://www.oceanexpert.org/expert/13696 -https://www.oceanexpert.org/expert/16287 -https://www.oceanexpert.org/expert/45787 -https://www.oceanexpert.org/expert/14922 -https://www.oceanexpert.org/expert/33552 -https://www.oceanexpert.org/expert/48405 -https://www.oceanexpert.org/expert/22974 -https://www.oceanexpert.org/expert/38397 -https://www.oceanexpert.org/expert/36490 -https://www.oceanexpert.org/expert/22333 -https://www.oceanexpert.org/institution/18387 -https://www.oceanexpert.org/expert/36844 -https://www.oceanexpert.org/institution/22151 -https://www.oceanexpert.org/expert/33302 -https://www.oceanexpert.org/expert/38189 -https://www.oceanexpert.org/institution/10138 -https://www.oceanexpert.org/institution/21502 -https://www.oceanexpert.org/institution/17958 -https://www.oceanexpert.org/expert/42989 -https://www.oceanexpert.org/institution/20539 -https://www.oceanexpert.org/event/1150 -https://www.oceanexpert.org/institution/18667 -https://www.oceanexpert.org/institution/15547 -https://www.oceanexpert.org/expert/29494 -https://www.oceanexpert.org/expert/20665 -https://www.oceanexpert.org/institution/21678 -https://www.oceanexpert.org/expert/21719 -https://www.oceanexpert.org/expert/36133 -https://www.oceanexpert.org/expert/17974 -https://www.oceanexpert.org/institution/18003 -https://www.oceanexpert.org/expert/42494 -https://www.oceanexpert.org/expert/48533 -https://www.oceanexpert.org/expert/16441 -https://www.oceanexpert.org/expert/24943 -https://www.oceanexpert.org/expert/18230 -https://www.oceanexpert.org/expert/20935 -https://www.oceanexpert.org/expert/2232 -https://www.oceanexpert.org/expert/38175 -https://www.oceanexpert.org/expert/35989 -https://www.oceanexpert.org/expert/44117 -https://www.oceanexpert.org/expert/24481 -https://www.oceanexpert.org/expert/31977 -https://www.oceanexpert.org/event/2710 -https://www.oceanexpert.org/expert/23264 -https://www.oceanexpert.org/expert/34200 -https://www.oceanexpert.org/institution/14888 -https://www.oceanexpert.org/expert/27726 -https://www.oceanexpert.org/expert/38973 -https://www.oceanexpert.org/institution/19456 -https://www.oceanexpert.org/expert/21855 -https://www.oceanexpert.org/expert/21739 -https://www.oceanexpert.org/expert/19528 -https://www.oceanexpert.org/expert/35398 -https://www.oceanexpert.org/expert/20993 -https://www.oceanexpert.org/expert/43757 -https://www.oceanexpert.org/institution/21448 -https://www.oceanexpert.org/expert/24830 -https://www.oceanexpert.org/expert/13318 -https://www.oceanexpert.org/expert/9233 -https://www.oceanexpert.org/expert/48365 -https://www.oceanexpert.org/expert/22476 -https://www.oceanexpert.org/expert/27283 -https://www.oceanexpert.org/expert/12178 -https://www.oceanexpert.org/expert/19289 -https://www.oceanexpert.org/event/2666 -https://www.oceanexpert.org/event/1236 -https://www.oceanexpert.org/event/1503 -https://www.oceanexpert.org/institution/21536 -https://www.oceanexpert.org/institution/21721 -https://www.oceanexpert.org/institution/21282 -https://www.oceanexpert.org/event/550 -https://www.oceanexpert.org/expert/46664 -https://www.oceanexpert.org/institution/19029 -https://www.oceanexpert.org/institution/7242 -https://www.oceanexpert.org/expert/21033 -https://www.oceanexpert.org/institution/14056 -https://www.oceanexpert.org/expert/42147 -https://www.oceanexpert.org/expert/37990 -https://www.oceanexpert.org/expert/8813 -https://www.oceanexpert.org/institution/14247 -https://www.oceanexpert.org/expert/504 -https://www.oceanexpert.org/expert/12577 -https://www.oceanexpert.org/expert/30557 -https://www.oceanexpert.org/expert/27402 -https://www.oceanexpert.org/expert/44515 -https://www.oceanexpert.org/event/2273 -https://www.oceanexpert.org/expert/44152 -https://www.oceanexpert.org/expert/46384 -https://www.oceanexpert.org/expert/35180 -https://www.oceanexpert.org/expert/23796 -https://www.oceanexpert.org/expert/14460 -https://www.oceanexpert.org/expert/24631 -https://www.oceanexpert.org/expert/39186 -https://www.oceanexpert.org/expert/32462 -https://www.oceanexpert.org/event/287 -https://www.oceanexpert.org/expert/46414 -https://www.oceanexpert.org/expert/29486 -https://www.oceanexpert.org/expert/35604 -https://www.oceanexpert.org/institution/19439 -https://www.oceanexpert.org/expert/7436 -https://www.oceanexpert.org/expert/35278 -https://www.oceanexpert.org/expert/27891 -https://www.oceanexpert.org/expert/17367 -https://www.oceanexpert.org/expert/43775 -https://www.oceanexpert.org/event/1385 -https://www.oceanexpert.org/expert/44315 -https://www.oceanexpert.org/expert/3547 -https://www.oceanexpert.org/event/2338 -https://www.oceanexpert.org/expert/39335 -https://www.oceanexpert.org/expert/7725 -https://www.oceanexpert.org/expert/35475 -https://www.oceanexpert.org/expert/19267 -https://www.oceanexpert.org/expert/38500 -https://www.oceanexpert.org/expert/19724 -https://www.oceanexpert.org/institution/17106 -https://www.oceanexpert.org/expert/19930 -https://www.oceanexpert.org/expert/13013 -https://www.oceanexpert.org/expert/13 -https://www.oceanexpert.org/institution/21254 -https://www.oceanexpert.org/expert/38523 -https://www.oceanexpert.org/expert/47288 -https://www.oceanexpert.org/expert/26328 -https://www.oceanexpert.org/expert/43227 -https://www.oceanexpert.org/expert/36645 -https://www.oceanexpert.org/institution/12666 -https://www.oceanexpert.org/expert/14902 -https://www.oceanexpert.org/expert/45673 -https://www.oceanexpert.org/expert/12266 -https://www.oceanexpert.org/expert/23647 -https://www.oceanexpert.org/expert/43693 -https://www.oceanexpert.org/expert/7187 -https://www.oceanexpert.org/institution/17645 -https://www.oceanexpert.org/expert/26892 -https://www.oceanexpert.org/expert/38479 -https://www.oceanexpert.org/expert/13394 -https://www.oceanexpert.org/expert/15066 -https://www.oceanexpert.org/expert/20660 -https://www.oceanexpert.org/expert/24661 -https://www.oceanexpert.org/expert/4370 -https://www.oceanexpert.org/institution/10745 -https://www.oceanexpert.org/expert/32596 -https://www.oceanexpert.org/expert/11906 -https://www.oceanexpert.org/expert/48214 -https://www.oceanexpert.org/expert/31038 -https://www.oceanexpert.org/expert/21441 -https://www.oceanexpert.org/expert/24901 -https://www.oceanexpert.org/expert/30029 -https://www.oceanexpert.org/expert/44911 -https://www.oceanexpert.org/expert/40537 -https://www.oceanexpert.org/expert/36861 -https://www.oceanexpert.org/institution/6842 -https://www.oceanexpert.org/expert/9085 -https://www.oceanexpert.org/expert/27129 -https://www.oceanexpert.org/expert/4664 -https://www.oceanexpert.org/expert/22734 -https://www.oceanexpert.org/expert/35310 -https://www.oceanexpert.org/institution/9373 -https://www.oceanexpert.org/institution/18249 -https://www.oceanexpert.org/expert/43571 -https://www.oceanexpert.org/expert/40373 -https://www.oceanexpert.org/institution/16063 -https://www.oceanexpert.org/expert/36327 -https://www.oceanexpert.org/expert/46509 -https://www.oceanexpert.org/expert/18474 -https://www.oceanexpert.org/expert/29860 -https://www.oceanexpert.org/expert/11578 -https://www.oceanexpert.org/institution/6849 -https://www.oceanexpert.org/expert/42528 -https://www.oceanexpert.org/expert/23877 -https://www.oceanexpert.org/event/649 -https://www.oceanexpert.org/expert/37571 -https://www.oceanexpert.org/event/3267 -https://www.oceanexpert.org/expert/15002 -https://www.oceanexpert.org/expert/47189 -https://www.oceanexpert.org/expert/39408 -https://www.oceanexpert.org/expert/29465 -https://www.oceanexpert.org/institution/20324 -https://www.oceanexpert.org/expert/30911 -https://www.oceanexpert.org/expert/12661 -https://www.oceanexpert.org/institution/18564 -https://www.oceanexpert.org/institution/5340 -https://www.oceanexpert.org/expert/48522 -https://www.oceanexpert.org/institution/20012 -https://www.oceanexpert.org/institution/18339 -https://www.oceanexpert.org/institution/21771 -https://www.oceanexpert.org/expert/21075 -https://www.oceanexpert.org/institution/18442 -https://www.oceanexpert.org/expert/11316 -https://www.oceanexpert.org/event/560 -https://www.oceanexpert.org/event/2157 -https://www.oceanexpert.org/event/3022 -https://www.oceanexpert.org/institution/9648 -https://www.oceanexpert.org/expert/17445 -https://www.oceanexpert.org/expert/42556 -https://www.oceanexpert.org/institution/20549 -https://www.oceanexpert.org/expert/17026 -https://www.oceanexpert.org/expert/43913 -https://www.oceanexpert.org/expert/24766 -https://www.oceanexpert.org/event/94 -https://www.oceanexpert.org/expert/48838 -https://www.oceanexpert.org/expert/26642 -https://www.oceanexpert.org/expert/22169 -https://www.oceanexpert.org/expert/29272 -https://www.oceanexpert.org/expert/16535 -https://www.oceanexpert.org/institution/12136 -https://www.oceanexpert.org/expert/22293 -https://www.oceanexpert.org/event/184 -https://www.oceanexpert.org/institution/9331 -https://www.oceanexpert.org/event/1360 -https://www.oceanexpert.org/expert/23257 -https://www.oceanexpert.org/expert/48805 -https://www.oceanexpert.org/expert/44159 -https://www.oceanexpert.org/expert/24815 -https://www.oceanexpert.org/event/2061 -https://www.oceanexpert.org/expert/43233 -https://www.oceanexpert.org/expert/10549 -https://www.oceanexpert.org/expert/46815 -https://www.oceanexpert.org/expert/25188 -https://www.oceanexpert.org/event/898 -https://www.oceanexpert.org/expert/22777 -https://www.oceanexpert.org/expert/7141 -https://www.oceanexpert.org/expert/6165 -https://www.oceanexpert.org/institution/11286 -https://www.oceanexpert.org/expert/47334 -https://www.oceanexpert.org/expert/26483 -https://www.oceanexpert.org/expert/25001 -https://www.oceanexpert.org/institution/6586 -https://www.oceanexpert.org/expert/48624 -https://www.oceanexpert.org/event/2780 -https://www.oceanexpert.org/expert/38204 -https://www.oceanexpert.org/expert/20118 -https://www.oceanexpert.org/institution/15805 -https://www.oceanexpert.org/expert/34743 -https://www.oceanexpert.org/expert/26550 -https://www.oceanexpert.org/institution/12801 -https://www.oceanexpert.org/expert/31943 -https://www.oceanexpert.org/expert/48924 -https://www.oceanexpert.org/expert/29323 -https://www.oceanexpert.org/event/522 -https://www.oceanexpert.org/expert/36198 -https://www.oceanexpert.org/expert/18216 -https://www.oceanexpert.org/expert/22016 -https://www.oceanexpert.org/expert/7466 -https://www.oceanexpert.org/expert/19777 -https://www.oceanexpert.org/event/2554 -https://www.oceanexpert.org/institution/20232 -https://www.oceanexpert.org/expert/44586 -https://www.oceanexpert.org/event/111 -https://www.oceanexpert.org/expert/19812 -https://www.oceanexpert.org/expert/30548 -https://www.oceanexpert.org/expert/25678 -https://www.oceanexpert.org/expert/48473 -https://www.oceanexpert.org/expert/43787 -https://www.oceanexpert.org/expert/32763 -https://www.oceanexpert.org/institution/10119 -https://www.oceanexpert.org/expert/27253 -https://www.oceanexpert.org/institution/12555 -https://www.oceanexpert.org/expert/16671 -https://www.oceanexpert.org/event/198 -https://www.oceanexpert.org/event/1290 -https://www.oceanexpert.org/institution/14099 -https://www.oceanexpert.org/expert/6560 -https://www.oceanexpert.org/institution/10759 -https://www.oceanexpert.org/institution/17233 -https://www.oceanexpert.org/expert/45590 -https://www.oceanexpert.org/institution/19124 -https://www.oceanexpert.org/expert/37912 -https://www.oceanexpert.org/expert/23352 -https://www.oceanexpert.org/expert/6176 -https://www.oceanexpert.org/institution/19190 -https://www.oceanexpert.org/expert/21787 -https://www.oceanexpert.org/expert/19184 -https://www.oceanexpert.org/institution/17851 -https://www.oceanexpert.org/expert/21615 -https://www.oceanexpert.org/event/470 -https://www.oceanexpert.org/expert/44627 -https://www.oceanexpert.org/expert/19454 -https://www.oceanexpert.org/expert/19304 -https://www.oceanexpert.org/expert/18323 -https://www.oceanexpert.org/expert/44173 -https://www.oceanexpert.org/expert/20544 -https://www.oceanexpert.org/expert/36293 -https://www.oceanexpert.org/expert/26636 -https://www.oceanexpert.org/expert/21612 -https://www.oceanexpert.org/institution/12278 -https://www.oceanexpert.org/event/1641 -https://www.oceanexpert.org/expert/22752 -https://www.oceanexpert.org/expert/37588 -https://www.oceanexpert.org/institution/21564 -https://www.oceanexpert.org/expert/28042 -https://www.oceanexpert.org/expert/25458 -https://www.oceanexpert.org/institution/21357 -https://www.oceanexpert.org/expert/21626 -https://www.oceanexpert.org/expert/48704 -https://www.oceanexpert.org/expert/29822 -https://www.oceanexpert.org/expert/24403 -https://www.oceanexpert.org/event/2884 -https://www.oceanexpert.org/expert/45617 -https://www.oceanexpert.org/institution/19743 -https://www.oceanexpert.org/expert/12635 -https://www.oceanexpert.org/institution/15533 -https://www.oceanexpert.org/expert/36740 -https://www.oceanexpert.org/expert/21477 -https://www.oceanexpert.org/expert/40133 -https://www.oceanexpert.org/expert/39231 -https://www.oceanexpert.org/expert/36534 -https://www.oceanexpert.org/expert/11583 -https://www.oceanexpert.org/institution/9570 -https://www.oceanexpert.org/expert/45173 -https://www.oceanexpert.org/expert/40292 -https://www.oceanexpert.org/expert/44966 -https://www.oceanexpert.org/expert/37773 -https://www.oceanexpert.org/expert/30989 -https://www.oceanexpert.org/expert/42914 -https://www.oceanexpert.org/expert/25848 -https://www.oceanexpert.org/expert/38523 -https://www.oceanexpert.org/institution/18782 -https://www.oceanexpert.org/institution/7811 -https://www.oceanexpert.org/expert/17806 -https://www.oceanexpert.org/expert/46650 -https://www.oceanexpert.org/event/2934 -https://www.oceanexpert.org/expert/27426 -https://www.oceanexpert.org/expert/20845 -https://www.oceanexpert.org/expert/44438 -https://www.oceanexpert.org/expert/13298 -https://www.oceanexpert.org/expert/35153 -https://www.oceanexpert.org/expert/6736 -https://www.oceanexpert.org/expert/7855 -https://www.oceanexpert.org/institution/22069 -https://www.oceanexpert.org/institution/12064 -https://www.oceanexpert.org/expert/48484 -https://www.oceanexpert.org/institution/10591 -https://www.oceanexpert.org/event/2689 -https://www.oceanexpert.org/expert/21627 -https://www.oceanexpert.org/institution/21760 -https://www.oceanexpert.org/expert/40295 -https://www.oceanexpert.org/event/43 -https://www.oceanexpert.org/expert/30680 -https://www.oceanexpert.org/expert/23216 -https://www.oceanexpert.org/event/2566 -https://www.oceanexpert.org/institution/14339 -https://www.oceanexpert.org/institution/11729 -https://www.oceanexpert.org/institution/12107 -https://www.oceanexpert.org/expert/32186 -https://www.oceanexpert.org/expert/28298 -https://www.oceanexpert.org/expert/24769 -https://www.oceanexpert.org/institution/18156 -https://www.oceanexpert.org/institution/6967 -https://www.oceanexpert.org/expert/32352 -https://www.oceanexpert.org/expert/13171 -https://www.oceanexpert.org/expert/44602 -https://www.oceanexpert.org/expert/36296 -https://www.oceanexpert.org/expert/19504 -https://www.oceanexpert.org/expert/34284 -https://www.oceanexpert.org/expert/16903 -https://www.oceanexpert.org/expert/8896 -https://www.oceanexpert.org/institution/18735 -https://www.oceanexpert.org/expert/32164 -https://www.oceanexpert.org/institution/20110 -https://www.oceanexpert.org/expert/6803 -https://www.oceanexpert.org/expert/17426 -https://www.oceanexpert.org/expert/47189 -https://www.oceanexpert.org/expert/44638 -https://www.oceanexpert.org/expert/22687 -https://www.oceanexpert.org/expert/43508 -https://www.oceanexpert.org/expert/44087 -https://www.oceanexpert.org/institution/15129 -https://www.oceanexpert.org/event/1142 -https://www.oceanexpert.org/expert/20918 -https://www.oceanexpert.org/expert/34686 -https://www.oceanexpert.org/expert/16196 -https://www.oceanexpert.org/expert/30644 -https://www.oceanexpert.org/expert/19891 -https://www.oceanexpert.org/expert/27457 -https://www.oceanexpert.org/expert/26025 -https://www.oceanexpert.org/expert/32804 -https://www.oceanexpert.org/expert/25725 -https://www.oceanexpert.org/expert/25513 -https://www.oceanexpert.org/institution/21416 -https://www.oceanexpert.org/expert/39655 -https://www.oceanexpert.org/expert/37280 -https://www.oceanexpert.org/expert/38389 -https://www.oceanexpert.org/expert/23363 -https://www.oceanexpert.org/expert/16680 -https://www.oceanexpert.org/institution/6444 -https://www.oceanexpert.org/expert/31944 -https://www.oceanexpert.org/institution/19437 -https://www.oceanexpert.org/expert/19314 -https://www.oceanexpert.org/expert/26194 -https://www.oceanexpert.org/expert/16570 -https://www.oceanexpert.org/institution/19023 -https://www.oceanexpert.org/institution/17342 -https://www.oceanexpert.org/institution/18769 -https://www.oceanexpert.org/event/178 -https://www.oceanexpert.org/expert/6994 -https://www.oceanexpert.org/event/517 -https://www.oceanexpert.org/institution/15275 -https://www.oceanexpert.org/expert/19699 -https://www.oceanexpert.org/expert/25435 -https://www.oceanexpert.org/expert/35765 -https://www.oceanexpert.org/institution/20889 -https://www.oceanexpert.org/expert/26266 -https://www.oceanexpert.org/expert/44697 -https://www.oceanexpert.org/expert/36163 -https://www.oceanexpert.org/expert/36158 -https://www.oceanexpert.org/event/3187 -https://www.oceanexpert.org/event/208 -https://www.oceanexpert.org/expert/33469 -https://www.oceanexpert.org/institution/7528 -https://www.oceanexpert.org/expert/7908 -https://www.oceanexpert.org/event/3176 -https://www.oceanexpert.org/expert/17936 -https://www.oceanexpert.org/expert/18625 -https://www.oceanexpert.org/institution/17905 -https://www.oceanexpert.org/expert/17754 -https://www.oceanexpert.org/expert/6973 -https://www.oceanexpert.org/event/1946 -https://www.oceanexpert.org/institution/11592 -https://www.oceanexpert.org/expert/39282 -https://www.oceanexpert.org/expert/21712 -https://www.oceanexpert.org/expert/40524 -https://www.oceanexpert.org/expert/46949 -https://www.oceanexpert.org/expert/17399 -https://www.oceanexpert.org/expert/34714 -https://www.oceanexpert.org/institution/16739 -https://www.oceanexpert.org/expert/38058 -https://www.oceanexpert.org/expert/38973 -https://www.oceanexpert.org/expert/17976 -https://www.oceanexpert.org/expert/47428 -https://www.oceanexpert.org/expert/13372 -https://www.oceanexpert.org/institution/14696 -https://www.oceanexpert.org/expert/25351 -https://www.oceanexpert.org/expert/18355 -https://www.oceanexpert.org/expert/1830 -https://www.oceanexpert.org/expert/38536 -https://www.oceanexpert.org/expert/36944 -https://www.oceanexpert.org/expert/30451 -https://www.oceanexpert.org/expert/13360 -https://www.oceanexpert.org/event/1763 -https://www.oceanexpert.org/expert/28501 -https://www.oceanexpert.org/event/2840 -https://www.oceanexpert.org/expert/16841 -https://www.oceanexpert.org/institution/20402 -https://www.oceanexpert.org/institution/19529 -https://www.oceanexpert.org/event/1092 -https://www.oceanexpert.org/expert/17327 -https://www.oceanexpert.org/expert/21777 -https://www.oceanexpert.org/expert/28980 -https://www.oceanexpert.org/expert/21551 -https://www.oceanexpert.org/institution/18533 -https://www.oceanexpert.org/institution/8768 -https://www.oceanexpert.org/expert/36846 -https://www.oceanexpert.org/expert/34600 -https://www.oceanexpert.org/institution/13290 -https://www.oceanexpert.org/institution/10401 -https://www.oceanexpert.org/event/3060 -https://www.oceanexpert.org/institution/7967 -https://www.oceanexpert.org/institution/6857 -https://www.oceanexpert.org/institution/20750 -https://www.oceanexpert.org/expert/39164 -https://www.oceanexpert.org/expert/30324 -https://www.oceanexpert.org/expert/46857 -https://www.oceanexpert.org/institution/14104 -https://www.oceanexpert.org/institution/21549 -https://www.oceanexpert.org/expert/16381 -https://www.oceanexpert.org/expert/48392 -https://www.oceanexpert.org/expert/23357 -https://www.oceanexpert.org/expert/45529 -https://www.oceanexpert.org/institution/18553 -https://www.oceanexpert.org/expert/37025 -https://www.oceanexpert.org/expert/26017 -https://www.oceanexpert.org/expert/605 -https://www.oceanexpert.org/expert/46249 -https://www.oceanexpert.org/expert/37065 -https://www.oceanexpert.org/expert/23983 -https://www.oceanexpert.org/expert/31271 -https://www.oceanexpert.org/expert/27317 -https://www.oceanexpert.org/expert/21817 -https://www.oceanexpert.org/institution/7304 -https://www.oceanexpert.org/expert/46656 -https://www.oceanexpert.org/event/3104 -https://www.oceanexpert.org/expert/42481 -https://www.oceanexpert.org/expert/2305 -https://www.oceanexpert.org/institution/17800 -https://www.oceanexpert.org/expert/28966 -https://www.oceanexpert.org/expert/47481 -https://www.oceanexpert.org/expert/43115 -https://www.oceanexpert.org/institution/17758 -https://www.oceanexpert.org/expert/38028 -https://www.oceanexpert.org/institution/14245 -https://www.oceanexpert.org/event/1243 -https://www.oceanexpert.org/expert/39646 -https://www.oceanexpert.org/event/279 -https://www.oceanexpert.org/institution/16417 -https://www.oceanexpert.org/expert/28506 -https://www.oceanexpert.org/institution/18733 -https://www.oceanexpert.org/institution/14283 -https://www.oceanexpert.org/expert/43007 -https://www.oceanexpert.org/expert/36 -https://www.oceanexpert.org/expert/35141 -https://www.oceanexpert.org/institution/7757 -https://www.oceanexpert.org/expert/23927 -https://www.oceanexpert.org/institution/19552 -https://www.oceanexpert.org/institution/19655 -https://www.oceanexpert.org/expert/38044 -https://www.oceanexpert.org/expert/46072 -https://www.oceanexpert.org/expert/32597 -https://www.oceanexpert.org/expert/1087 -https://www.oceanexpert.org/institution/6147 -https://www.oceanexpert.org/expert/45760 -https://www.oceanexpert.org/event/597 -https://www.oceanexpert.org/expert/7178 -https://www.oceanexpert.org/event/201 -https://www.oceanexpert.org/institution/13626 -https://www.oceanexpert.org/expert/36666 -https://www.oceanexpert.org/expert/19818 -https://www.oceanexpert.org/expert/32479 -https://www.oceanexpert.org/expert/37797 -https://www.oceanexpert.org/event/274 -https://www.oceanexpert.org/expert/37423 -https://www.oceanexpert.org/institution/14236 -https://www.oceanexpert.org/institution/12976 -https://www.oceanexpert.org/institution/11415 -https://www.oceanexpert.org/event/2512 -https://www.oceanexpert.org/expert/26418 -https://www.oceanexpert.org/expert/47961 -https://www.oceanexpert.org/event/1450 -https://www.oceanexpert.org/expert/22857 -https://www.oceanexpert.org/institution/6749 -https://www.oceanexpert.org/expert/28027 -https://www.oceanexpert.org/expert/46300 -https://www.oceanexpert.org/institution/14354 -https://www.oceanexpert.org/expert/24221 -https://www.oceanexpert.org/expert/38388 -https://www.oceanexpert.org/expert/13703 -https://www.oceanexpert.org/expert/16327 -https://www.oceanexpert.org/expert/27444 -https://www.oceanexpert.org/expert/33111 -https://www.oceanexpert.org/expert/8413 -https://www.oceanexpert.org/expert/25027 -https://www.oceanexpert.org/expert/36453 -https://www.oceanexpert.org/expert/22021 -https://www.oceanexpert.org/institution/10168 -https://www.oceanexpert.org/expert/39351 -https://www.oceanexpert.org/expert/31693 -https://www.oceanexpert.org/expert/13762 -https://www.oceanexpert.org/expert/11051 -https://www.oceanexpert.org/expert/16998 -https://www.oceanexpert.org/expert/37900 -https://www.oceanexpert.org/expert/21598 -https://www.oceanexpert.org/event/2 -https://www.oceanexpert.org/expert/36221 -https://www.oceanexpert.org/event/1481 -https://www.oceanexpert.org/expert/22694 -https://www.oceanexpert.org/expert/34254 -https://www.oceanexpert.org/expert/47951 -https://www.oceanexpert.org/expert/34944 -https://www.oceanexpert.org/expert/31495 -https://www.oceanexpert.org/expert/24229 -https://www.oceanexpert.org/expert/43419 -https://www.oceanexpert.org/expert/19418 -https://www.oceanexpert.org/expert/35717 -https://www.oceanexpert.org/expert/37961 -https://www.oceanexpert.org/expert/20685 -https://www.oceanexpert.org/institution/14102 -https://www.oceanexpert.org/institution/19297 -https://www.oceanexpert.org/expert/24108 -https://www.oceanexpert.org/institution/19369 -https://www.oceanexpert.org/institution/19038 -https://www.oceanexpert.org/expert/37972 -https://www.oceanexpert.org/institution/17970 -https://www.oceanexpert.org/expert/20647 -https://www.oceanexpert.org/expert/32128 -https://www.oceanexpert.org/institution/11335 -https://www.oceanexpert.org/expert/26997 -https://www.oceanexpert.org/expert/11881 -https://www.oceanexpert.org/institution/15276 -https://www.oceanexpert.org/expert/48492 -https://www.oceanexpert.org/expert/23578 -https://www.oceanexpert.org/institution/7631 -https://www.oceanexpert.org/expert/36645 -https://www.oceanexpert.org/expert/19210 -https://www.oceanexpert.org/institution/18994 -https://www.oceanexpert.org/expert/36326 -https://www.oceanexpert.org/expert/38133 -https://www.oceanexpert.org/event/12 -https://www.oceanexpert.org/expert/42593 -https://www.oceanexpert.org/event/2564 -https://www.oceanexpert.org/expert/4212 -https://www.oceanexpert.org/expert/32886 -https://www.oceanexpert.org/institution/14121 -https://www.oceanexpert.org/event/2434 -https://www.oceanexpert.org/expert/45222 -https://www.oceanexpert.org/institution/21519 -https://www.oceanexpert.org/institution/5307 -https://www.oceanexpert.org/institution/19072 -https://www.oceanexpert.org/expert/30408 -https://www.oceanexpert.org/expert/26309 -https://www.oceanexpert.org/expert/20943 -https://www.oceanexpert.org/expert/8111 -https://www.oceanexpert.org/expert/18672 -https://www.oceanexpert.org/expert/21624 -https://www.oceanexpert.org/expert/44497 -https://www.oceanexpert.org/expert/48744 -https://www.oceanexpert.org/expert/18387 -https://www.oceanexpert.org/expert/23042 -https://www.oceanexpert.org/expert/38312 -https://www.oceanexpert.org/expert/23274 -https://www.oceanexpert.org/expert/26626 -https://www.oceanexpert.org/event/2697 -https://www.oceanexpert.org/institution/8387 -https://www.oceanexpert.org/institution/15026 -https://www.oceanexpert.org/institution/18314 -https://www.oceanexpert.org/expert/16704 -https://www.oceanexpert.org/expert/24675 -https://www.oceanexpert.org/expert/37343 -https://www.oceanexpert.org/expert/45936 -https://www.oceanexpert.org/event/2728 -https://www.oceanexpert.org/expert/47095 -https://www.oceanexpert.org/expert/16700 -https://www.oceanexpert.org/expert/23615 -https://www.oceanexpert.org/institution/10178 -https://www.oceanexpert.org/expert/32394 -https://www.oceanexpert.org/expert/31659 -https://www.oceanexpert.org/institution/17039 -https://www.oceanexpert.org/expert/30958 -https://www.oceanexpert.org/expert/22979 -https://www.oceanexpert.org/expert/7005 -https://www.oceanexpert.org/institution/19495 -https://www.oceanexpert.org/expert/26187 -https://www.oceanexpert.org/expert/44100 -https://www.oceanexpert.org/expert/30487 -https://www.oceanexpert.org/expert/32766 -https://www.oceanexpert.org/expert/13223 -https://www.oceanexpert.org/expert/25867 -https://www.oceanexpert.org/expert/44917 -https://www.oceanexpert.org/institution/17799 -https://www.oceanexpert.org/institution/18407 -https://www.oceanexpert.org/institution/15452 -https://www.oceanexpert.org/expert/44487 -https://www.oceanexpert.org/institution/19532 -https://www.oceanexpert.org/expert/12923 -https://www.oceanexpert.org/expert/36235 -https://www.oceanexpert.org/expert/23569 -https://www.oceanexpert.org/expert/31610 -https://www.oceanexpert.org/expert/33985 -https://www.oceanexpert.org/expert/14393 -https://www.oceanexpert.org/expert/17724 -https://www.oceanexpert.org/expert/46267 -https://www.oceanexpert.org/expert/21141 -https://www.oceanexpert.org/event/1760 -https://www.oceanexpert.org/institution/18680 -https://www.oceanexpert.org/expert/28382 -https://www.oceanexpert.org/expert/9085 -https://www.oceanexpert.org/expert/44245 -https://www.oceanexpert.org/expert/16268 -https://www.oceanexpert.org/institution/11987 -https://www.oceanexpert.org/institution/10770 -https://www.oceanexpert.org/expert/26892 -https://www.oceanexpert.org/institution/18805 -https://www.oceanexpert.org/expert/37687 -https://www.oceanexpert.org/expert/17985 -https://www.oceanexpert.org/expert/48325 -https://www.oceanexpert.org/expert/19421 -https://www.oceanexpert.org/expert/18480 -https://www.oceanexpert.org/event/524 -https://www.oceanexpert.org/expert/7925 -https://www.oceanexpert.org/expert/48792 -https://www.oceanexpert.org/expert/26755 -https://www.oceanexpert.org/institution/12000 -https://www.oceanexpert.org/expert/35757 -https://www.oceanexpert.org/expert/44196 -https://www.oceanexpert.org/institution/18767 -https://www.oceanexpert.org/expert/42697 -https://www.oceanexpert.org/expert/22741 -https://www.oceanexpert.org/event/611 -https://www.oceanexpert.org/expert/46816 -https://www.oceanexpert.org/institution/18887 -https://www.oceanexpert.org/event/308 -https://www.oceanexpert.org/expert/25272 -https://www.oceanexpert.org/institution/13175 -https://www.oceanexpert.org/expert/1864 -https://www.oceanexpert.org/expert/45902 -https://www.oceanexpert.org/institution/21964 -https://www.oceanexpert.org/institution/15039 -https://www.oceanexpert.org/institution/8303 -https://www.oceanexpert.org/institution/19432 -https://www.oceanexpert.org/expert/17309 -https://www.oceanexpert.org/expert/25393 -https://www.oceanexpert.org/expert/21464 -https://www.oceanexpert.org/institution/18363 -https://www.oceanexpert.org/expert/20492 -https://www.oceanexpert.org/expert/27424 -https://www.oceanexpert.org/expert/1336 -https://www.oceanexpert.org/expert/44996 -https://www.oceanexpert.org/expert/23214 -https://www.oceanexpert.org/event/370 -https://www.oceanexpert.org/expert/42444 -https://www.oceanexpert.org/expert/7651 -https://www.oceanexpert.org/expert/44716 -https://www.oceanexpert.org/institution/14082 -https://www.oceanexpert.org/expert/26679 -https://www.oceanexpert.org/expert/24289 -https://www.oceanexpert.org/expert/22343 -https://www.oceanexpert.org/institution/11379 -https://www.oceanexpert.org/institution/20124 -https://www.oceanexpert.org/institution/11321 -https://www.oceanexpert.org/expert/32874 -https://www.oceanexpert.org/expert/32606 -https://www.oceanexpert.org/event/1037 -https://www.oceanexpert.org/expert/47094 -https://www.oceanexpert.org/institution/21495 -https://www.oceanexpert.org/expert/1131 -https://www.oceanexpert.org/expert/43843 -https://www.oceanexpert.org/institution/12233 -https://www.oceanexpert.org/event/3048 -https://www.oceanexpert.org/institution/11577 -https://www.oceanexpert.org/institution/13243 -https://www.oceanexpert.org/expert/44674 -https://www.oceanexpert.org/event/2804 -https://www.oceanexpert.org/expert/45469 -https://www.oceanexpert.org/institution/15492 -https://www.oceanexpert.org/expert/26934 -https://www.oceanexpert.org/expert/18279 -https://www.oceanexpert.org/expert/44811 -https://www.oceanexpert.org/expert/35610 -https://www.oceanexpert.org/expert/27303 -https://www.oceanexpert.org/expert/21855 -https://www.oceanexpert.org/expert/13914 -https://www.oceanexpert.org/expert/29686 -https://www.oceanexpert.org/event/296 -https://www.oceanexpert.org/institution/11916 -https://www.oceanexpert.org/event/2344 -https://www.oceanexpert.org/expert/43337 -https://www.oceanexpert.org/expert/25726 -https://www.oceanexpert.org/expert/45875 -https://www.oceanexpert.org/expert/17973 -https://www.oceanexpert.org/expert/19108 -https://www.oceanexpert.org/institution/20794 -https://www.oceanexpert.org/event/1200 -https://www.oceanexpert.org/expert/22626 -https://www.oceanexpert.org/expert/47083 -https://www.oceanexpert.org/expert/13683 -https://www.oceanexpert.org/institution/19441 -https://www.oceanexpert.org/expert/43592 -https://www.oceanexpert.org/expert/24852 -https://www.oceanexpert.org/expert/47140 -https://www.oceanexpert.org/institution/21724 -https://www.oceanexpert.org/event/1200 -https://www.oceanexpert.org/expert/37746 -https://www.oceanexpert.org/expert/42488 -https://www.oceanexpert.org/expert/26901 -https://www.oceanexpert.org/institution/5525 -https://www.oceanexpert.org/expert/49034 -https://www.oceanexpert.org/expert/23830 -https://www.oceanexpert.org/expert/35132 -https://www.oceanexpert.org/institution/21672 -https://www.oceanexpert.org/expert/22508 -https://www.oceanexpert.org/expert/43927 -https://www.oceanexpert.org/expert/31161 -https://www.oceanexpert.org/institution/18154 -https://www.oceanexpert.org/expert/42969 -https://www.oceanexpert.org/institution/7357 -https://www.oceanexpert.org/expert/45008 -https://www.oceanexpert.org/expert/30918 -https://www.oceanexpert.org/expert/45328 -https://www.oceanexpert.org/institution/11879 -https://www.oceanexpert.org/expert/22384 -https://www.oceanexpert.org/institution/21282 -https://www.oceanexpert.org/expert/37585 -https://www.oceanexpert.org/institution/17825 -https://www.oceanexpert.org/expert/16788 -https://www.oceanexpert.org/institution/9038 -https://www.oceanexpert.org/institution/16158 -https://www.oceanexpert.org/expert/32134 -https://www.oceanexpert.org/expert/17557 -https://www.oceanexpert.org/institution/8650 -https://www.oceanexpert.org/expert/40544 -https://www.oceanexpert.org/institution/12010 -https://www.oceanexpert.org/expert/24408 -https://www.oceanexpert.org/expert/27123 -https://www.oceanexpert.org/institution/6380 -https://www.oceanexpert.org/institution/8499 -https://www.oceanexpert.org/expert/29692 -https://www.oceanexpert.org/event/2286 -https://www.oceanexpert.org/expert/16900 -https://www.oceanexpert.org/institution/13222 -https://www.oceanexpert.org/expert/41993 -https://www.oceanexpert.org/expert/27090 -https://www.oceanexpert.org/institution/19427 -https://www.oceanexpert.org/expert/44892 -https://www.oceanexpert.org/expert/17444 -https://www.oceanexpert.org/expert/38261 -https://www.oceanexpert.org/expert/16606 -https://www.oceanexpert.org/expert/26768 -https://www.oceanexpert.org/expert/4721 -https://www.oceanexpert.org/expert/17768 -https://www.oceanexpert.org/expert/24115 -https://www.oceanexpert.org/institution/21838 -https://www.oceanexpert.org/expert/24881 -https://www.oceanexpert.org/institution/19108 -https://www.oceanexpert.org/expert/30275 -https://www.oceanexpert.org/institution/16018 -https://www.oceanexpert.org/institution/20280 -https://www.oceanexpert.org/event/2483 -https://www.oceanexpert.org/expert/34239 -https://www.oceanexpert.org/expert/24654 -https://www.oceanexpert.org/institution/17699 -https://www.oceanexpert.org/institution/19475 -https://www.oceanexpert.org/institution/19799 -https://www.oceanexpert.org/expert/37812 -https://www.oceanexpert.org/expert/14156 -https://www.oceanexpert.org/expert/46513 -https://www.oceanexpert.org/expert/44549 -https://www.oceanexpert.org/expert/20791 -https://www.oceanexpert.org/expert/14310 -https://www.oceanexpert.org/expert/20439 -https://www.oceanexpert.org/expert/44889 -https://www.oceanexpert.org/expert/18593 -https://www.oceanexpert.org/event/1054 -https://www.oceanexpert.org/event/191 -https://www.oceanexpert.org/institution/10642 -https://www.oceanexpert.org/expert/28184 -https://www.oceanexpert.org/expert/34544 -https://www.oceanexpert.org/institution/7772 -https://www.oceanexpert.org/expert/25595 -https://www.oceanexpert.org/expert/44839 -https://www.oceanexpert.org/expert/31870 -https://www.oceanexpert.org/expert/27761 -https://www.oceanexpert.org/expert/23601 -https://www.oceanexpert.org/event/3112 -https://www.oceanexpert.org/expert/20249 -https://www.oceanexpert.org/expert/37023 -https://www.oceanexpert.org/event/133 -https://www.oceanexpert.org/expert/464 -https://www.oceanexpert.org/expert/35340 -https://www.oceanexpert.org/event/27 -https://www.oceanexpert.org/expert/44699 -https://www.oceanexpert.org/expert/33782 -https://www.oceanexpert.org/event/3017 -https://www.oceanexpert.org/expert/19170 -https://www.oceanexpert.org/expert/24933 -https://www.oceanexpert.org/expert/45915 -https://www.oceanexpert.org/institution/21333 -https://www.oceanexpert.org/expert/33498 -https://www.oceanexpert.org/expert/35656 -https://www.oceanexpert.org/event/3120 -https://www.oceanexpert.org/expert/22275 -https://www.oceanexpert.org/expert/25015 -https://www.oceanexpert.org/expert/25404 -https://www.oceanexpert.org/expert/22519 -https://www.oceanexpert.org/expert/43568 -https://www.oceanexpert.org/institution/8029 -https://www.oceanexpert.org/expert/25947 -https://www.oceanexpert.org/institution/15672 -https://www.oceanexpert.org/institution/8732 -https://www.oceanexpert.org/expert/45943 -https://www.oceanexpert.org/institution/19354 -https://www.oceanexpert.org/expert/36004 -https://www.oceanexpert.org/expert/26138 -https://www.oceanexpert.org/expert/43340 -https://www.oceanexpert.org/expert/36480 -https://www.oceanexpert.org/expert/13079 -https://www.oceanexpert.org/institution/15668 -https://www.oceanexpert.org/expert/25710 -https://www.oceanexpert.org/expert/17801 -https://www.oceanexpert.org/expert/45294 -https://www.oceanexpert.org/institution/20948 -https://www.oceanexpert.org/expert/38885 -https://www.oceanexpert.org/expert/17582 -https://www.oceanexpert.org/expert/24872 -https://www.oceanexpert.org/expert/24974 -https://www.oceanexpert.org/expert/31479 -https://www.oceanexpert.org/expert/22184 -https://www.oceanexpert.org/expert/2225 -https://www.oceanexpert.org/event/1330 -https://www.oceanexpert.org/expert/23987 -https://www.oceanexpert.org/expert/35221 -https://www.oceanexpert.org/institution/19135 -https://www.oceanexpert.org/expert/37873 -https://www.oceanexpert.org/expert/44343 -https://www.oceanexpert.org/expert/18551 -https://www.oceanexpert.org/institution/17023 -https://www.oceanexpert.org/expert/19397 -https://www.oceanexpert.org/expert/47534 -https://www.oceanexpert.org/expert/22057 -https://www.oceanexpert.org/event/3279 -https://www.oceanexpert.org/expert/20504 -https://www.oceanexpert.org/expert/40662 -https://www.oceanexpert.org/expert/27564 -https://www.oceanexpert.org/expert/22145 -https://www.oceanexpert.org/expert/16150 -https://www.oceanexpert.org/event/260 -https://www.oceanexpert.org/expert/23762 -https://www.oceanexpert.org/expert/38241 -https://www.oceanexpert.org/event/1372 -https://www.oceanexpert.org/institution/21921 -https://www.oceanexpert.org/expert/20957 -https://www.oceanexpert.org/expert/15947 -https://www.oceanexpert.org/expert/31722 -https://www.oceanexpert.org/expert/16879 -https://www.oceanexpert.org/expert/16655 -https://www.oceanexpert.org/expert/43436 -https://www.oceanexpert.org/expert/37591 -https://www.oceanexpert.org/expert/44492 -https://www.oceanexpert.org/expert/45014 -https://www.oceanexpert.org/institution/18428 -https://www.oceanexpert.org/event/4 -https://www.oceanexpert.org/expert/34955 -https://www.oceanexpert.org/institution/14115 -https://www.oceanexpert.org/institution/19121 -https://www.oceanexpert.org/event/2901 -https://www.oceanexpert.org/expert/44512 -https://www.oceanexpert.org/expert/43827 -https://www.oceanexpert.org/expert/31578 -https://www.oceanexpert.org/expert/18116 -https://www.oceanexpert.org/institution/7489 -https://www.oceanexpert.org/institution/18909 -https://www.oceanexpert.org/expert/42448 -https://www.oceanexpert.org/expert/20067 -https://www.oceanexpert.org/expert/37267 -https://www.oceanexpert.org/expert/19406 -https://www.oceanexpert.org/expert/30063 -https://www.oceanexpert.org/expert/39974 -https://www.oceanexpert.org/institution/8494 -https://www.oceanexpert.org/expert/47570 -https://www.oceanexpert.org/institution/19362 -https://www.oceanexpert.org/institution/5222 -https://www.oceanexpert.org/event/734 -https://www.oceanexpert.org/institution/21246 -https://www.oceanexpert.org/expert/37519 -https://www.oceanexpert.org/expert/38286 -https://www.oceanexpert.org/expert/48046 -https://www.oceanexpert.org/expert/38128 -https://www.oceanexpert.org/expert/32094 -https://www.oceanexpert.org/event/2990 -https://www.oceanexpert.org/expert/12973 -https://www.oceanexpert.org/expert/33802 -https://www.oceanexpert.org/institution/20248 -https://www.oceanexpert.org/expert/30212 -https://www.oceanexpert.org/expert/3174 -https://www.oceanexpert.org/expert/23928 -https://www.oceanexpert.org/institution/17945 -https://www.oceanexpert.org/institution/12552 -https://www.oceanexpert.org/expert/12973 -https://www.oceanexpert.org/expert/23125 -https://www.oceanexpert.org/expert/16687 -https://www.oceanexpert.org/institution/15243 -https://www.oceanexpert.org/institution/19898 -https://www.oceanexpert.org/expert/1575 -https://www.oceanexpert.org/institution/20261 -https://www.oceanexpert.org/expert/12923 -https://www.oceanexpert.org/event/3106 -https://www.oceanexpert.org/institution/6785 -https://www.oceanexpert.org/institution/6973 -https://www.oceanexpert.org/institution/9550 -https://www.oceanexpert.org/expert/1825 -https://www.oceanexpert.org/expert/17806 -https://www.oceanexpert.org/expert/6322 -https://www.oceanexpert.org/expert/26852 -https://www.oceanexpert.org/expert/48497 -https://www.oceanexpert.org/expert/25815 -https://www.oceanexpert.org/expert/46624 -https://www.oceanexpert.org/expert/24740 -https://www.oceanexpert.org/expert/36444 -https://www.oceanexpert.org/institution/13675 -https://www.oceanexpert.org/expert/25190 -https://www.oceanexpert.org/expert/24094 -https://www.oceanexpert.org/expert/20717 -https://www.oceanexpert.org/expert/47691 -https://www.oceanexpert.org/expert/32645 -https://www.oceanexpert.org/expert/18148 -https://www.oceanexpert.org/expert/43639 -https://www.oceanexpert.org/expert/20527 -https://www.oceanexpert.org/expert/24296 -https://www.oceanexpert.org/institution/12591 -https://www.oceanexpert.org/institution/13969 -https://www.oceanexpert.org/expert/48446 -https://www.oceanexpert.org/expert/48864 -https://www.oceanexpert.org/expert/39942 -https://www.oceanexpert.org/institution/22043 -https://www.oceanexpert.org/expert/24419 -https://www.oceanexpert.org/expert/47817 -https://www.oceanexpert.org/institution/18495 -https://www.oceanexpert.org/expert/44568 -https://www.oceanexpert.org/expert/36934 -https://www.oceanexpert.org/institution/19286 -https://www.oceanexpert.org/expert/11224 -https://www.oceanexpert.org/expert/11012 -https://www.oceanexpert.org/expert/34729 -https://www.oceanexpert.org/expert/36086 -https://www.oceanexpert.org/institution/12179 -https://www.oceanexpert.org/expert/25316 -https://www.oceanexpert.org/institution/6839 -https://www.oceanexpert.org/expert/48601 -https://www.oceanexpert.org/expert/42451 -https://www.oceanexpert.org/expert/23949 -https://www.oceanexpert.org/expert/17969 -https://www.oceanexpert.org/expert/42781 -https://www.oceanexpert.org/expert/12024 -https://www.oceanexpert.org/expert/6880 -https://www.oceanexpert.org/expert/43440 -https://www.oceanexpert.org/expert/20301 -https://www.oceanexpert.org/institution/19683 -https://www.oceanexpert.org/institution/20641 -https://www.oceanexpert.org/expert/8053 -https://www.oceanexpert.org/expert/17149 -https://www.oceanexpert.org/expert/16837 -https://www.oceanexpert.org/institution/13595 -https://www.oceanexpert.org/expert/11248 -https://www.oceanexpert.org/expert/21216 -https://www.oceanexpert.org/event/2806 -https://www.oceanexpert.org/expert/20691 -https://www.oceanexpert.org/expert/18866 -https://www.oceanexpert.org/expert/48639 -https://www.oceanexpert.org/expert/44288 -https://www.oceanexpert.org/expert/48467 -https://www.oceanexpert.org/expert/45680 -https://www.oceanexpert.org/institution/11608 -https://www.oceanexpert.org/expert/36352 -https://www.oceanexpert.org/expert/43580 -https://www.oceanexpert.org/expert/16978 -https://www.oceanexpert.org/institution/12116 -https://www.oceanexpert.org/expert/34796 -https://www.oceanexpert.org/institution/18463 -https://www.oceanexpert.org/expert/19012 -https://www.oceanexpert.org/expert/35109 -https://www.oceanexpert.org/expert/29062 -https://www.oceanexpert.org/institution/19854 -https://www.oceanexpert.org/expert/37519 -https://www.oceanexpert.org/expert/16962 -https://www.oceanexpert.org/institution/15476 -https://www.oceanexpert.org/institution/18205 -https://www.oceanexpert.org/expert/23999 -https://www.oceanexpert.org/expert/28144 -https://www.oceanexpert.org/institution/14445 -https://www.oceanexpert.org/expert/15360 -https://www.oceanexpert.org/institution/17412 -https://www.oceanexpert.org/expert/37811 -https://www.oceanexpert.org/institution/12427 -https://www.oceanexpert.org/expert/45314 -https://www.oceanexpert.org/expert/37974 -https://www.oceanexpert.org/expert/25798 -https://www.oceanexpert.org/expert/20472 -https://www.oceanexpert.org/expert/47560 -https://www.oceanexpert.org/institution/21406 -https://www.oceanexpert.org/expert/45187 -https://www.oceanexpert.org/expert/42552 -https://www.oceanexpert.org/expert/27151 -https://www.oceanexpert.org/expert/27789 -https://www.oceanexpert.org/expert/16858 -https://www.oceanexpert.org/institution/16815 -https://www.oceanexpert.org/institution/19472 -https://www.oceanexpert.org/expert/39287 -https://www.oceanexpert.org/expert/13072 -https://www.oceanexpert.org/expert/47181 -https://www.oceanexpert.org/expert/47321 -https://www.oceanexpert.org/event/2997 -https://www.oceanexpert.org/institution/20189 -https://www.oceanexpert.org/expert/31218 -https://www.oceanexpert.org/institution/20258 -https://www.oceanexpert.org/expert/20396 -https://www.oceanexpert.org/institution/16228 -https://www.oceanexpert.org/expert/44891 -https://www.oceanexpert.org/expert/29303 -https://www.oceanexpert.org/expert/48383 -https://www.oceanexpert.org/event/530 -https://www.oceanexpert.org/expert/14695 -https://www.oceanexpert.org/expert/27633 -https://www.oceanexpert.org/institution/20210 -https://www.oceanexpert.org/institution/21277 -https://www.oceanexpert.org/expert/45736 -https://www.oceanexpert.org/event/235 -https://www.oceanexpert.org/expert/46915 -https://www.oceanexpert.org/expert/18435 -https://www.oceanexpert.org/expert/31593 -https://www.oceanexpert.org/institution/18194 -https://www.oceanexpert.org/expert/41274 -https://www.oceanexpert.org/expert/14175 -https://www.oceanexpert.org/institution/9442 -https://www.oceanexpert.org/expert/23109 -https://www.oceanexpert.org/institution/14249 -https://www.oceanexpert.org/expert/42823 -https://www.oceanexpert.org/expert/32214 -https://www.oceanexpert.org/expert/22135 -https://www.oceanexpert.org/institution/5205 -https://www.oceanexpert.org/expert/3504 -https://www.oceanexpert.org/expert/24300 -https://www.oceanexpert.org/expert/30052 -https://www.oceanexpert.org/institution/20876 -https://www.oceanexpert.org/institution/21226 -https://www.oceanexpert.org/expert/47011 -https://www.oceanexpert.org/expert/21525 -https://www.oceanexpert.org/institution/18092 -https://www.oceanexpert.org/institution/11647 -https://www.oceanexpert.org/expert/4421 -https://www.oceanexpert.org/institution/14088 -https://www.oceanexpert.org/expert/22850 -https://www.oceanexpert.org/expert/43843 -https://www.oceanexpert.org/expert/26020 -https://www.oceanexpert.org/expert/24879 -https://www.oceanexpert.org/institution/21582 -https://www.oceanexpert.org/expert/20435 -https://www.oceanexpert.org/event/1292 -https://www.oceanexpert.org/institution/19944 -https://www.oceanexpert.org/expert/22569 -https://www.oceanexpert.org/expert/29374 -https://www.oceanexpert.org/expert/6245 -https://www.oceanexpert.org/expert/20962 -https://www.oceanexpert.org/expert/16657 -https://www.oceanexpert.org/expert/48438 -https://www.oceanexpert.org/expert/26789 -https://www.oceanexpert.org/institution/18005 -https://www.oceanexpert.org/institution/20201 -https://www.oceanexpert.org/expert/23851 -https://www.oceanexpert.org/expert/48032 -https://www.oceanexpert.org/expert/16902 -https://www.oceanexpert.org/institution/19635 -https://www.oceanexpert.org/institution/14473 -https://www.oceanexpert.org/event/1087 -https://www.oceanexpert.org/expert/7650 -https://www.oceanexpert.org/institution/21916 -https://www.oceanexpert.org/expert/48004 -https://www.oceanexpert.org/expert/1125 -https://www.oceanexpert.org/expert/6923 -https://www.oceanexpert.org/expert/23219 -https://www.oceanexpert.org/institution/13855 -https://www.oceanexpert.org/expert/25694 -https://www.oceanexpert.org/institution/21544 -https://www.oceanexpert.org/expert/16121 -https://www.oceanexpert.org/expert/6178 -https://www.oceanexpert.org/institution/10358 -https://www.oceanexpert.org/expert/38932 -https://www.oceanexpert.org/expert/18728 -https://www.oceanexpert.org/institution/12898 -https://www.oceanexpert.org/expert/21759 -https://www.oceanexpert.org/expert/6510 -https://www.oceanexpert.org/expert/43945 -https://www.oceanexpert.org/expert/17224 -https://www.oceanexpert.org/expert/31835 -https://www.oceanexpert.org/expert/3185 -https://www.oceanexpert.org/institution/8230 -https://www.oceanexpert.org/expert/31655 -https://www.oceanexpert.org/expert/6779 -https://www.oceanexpert.org/expert/13745 -https://www.oceanexpert.org/expert/44784 -https://www.oceanexpert.org/expert/20151 -https://www.oceanexpert.org/expert/12080 -https://www.oceanexpert.org/expert/45826 -https://www.oceanexpert.org/expert/22938 -https://www.oceanexpert.org/expert/6179 -https://www.oceanexpert.org/institution/20646 -https://www.oceanexpert.org/expert/37144 -https://www.oceanexpert.org/institution/19745 -https://www.oceanexpert.org/expert/24173 -https://www.oceanexpert.org/expert/39997 -https://www.oceanexpert.org/expert/14886 -https://www.oceanexpert.org/expert/42820 -https://www.oceanexpert.org/expert/33608 -https://www.oceanexpert.org/institution/17014 -https://www.oceanexpert.org/event/606 -https://www.oceanexpert.org/expert/7114 -https://www.oceanexpert.org/expert/12778 -https://www.oceanexpert.org/event/528 -https://www.oceanexpert.org/expert/23798 -https://www.oceanexpert.org/expert/21764 -https://www.oceanexpert.org/expert/47656 -https://www.oceanexpert.org/expert/25731 -https://www.oceanexpert.org/expert/23062 -https://www.oceanexpert.org/institution/20492 -https://www.oceanexpert.org/expert/19003 -https://www.oceanexpert.org/institution/22172 -https://www.oceanexpert.org/event/2864 -https://www.oceanexpert.org/institution/18852 -https://www.oceanexpert.org/institution/14211 -https://www.oceanexpert.org/expert/43042 -https://www.oceanexpert.org/expert/29844 -https://www.oceanexpert.org/expert/45101 -https://www.oceanexpert.org/expert/10086 -https://www.oceanexpert.org/expert/8641 -https://www.oceanexpert.org/expert/2392 -https://www.oceanexpert.org/expert/36478 -https://www.oceanexpert.org/event/1316 -https://www.oceanexpert.org/expert/24535 -https://www.oceanexpert.org/expert/2156 -https://www.oceanexpert.org/expert/27556 -https://www.oceanexpert.org/expert/48098 -https://www.oceanexpert.org/expert/34465 -https://www.oceanexpert.org/institution/19174 -https://www.oceanexpert.org/expert/38354 -https://www.oceanexpert.org/institution/22032 -https://www.oceanexpert.org/expert/33458 -https://www.oceanexpert.org/expert/36755 -https://www.oceanexpert.org/expert/25045 -https://www.oceanexpert.org/event/1502 -https://www.oceanexpert.org/expert/37849 -https://www.oceanexpert.org/expert/36422 -https://www.oceanexpert.org/expert/25028 -https://www.oceanexpert.org/institution/6990 -https://www.oceanexpert.org/expert/26540 -https://www.oceanexpert.org/institution/18240 -https://www.oceanexpert.org/event/566 -https://www.oceanexpert.org/institution/9308 -https://www.oceanexpert.org/expert/27310 -https://www.oceanexpert.org/institution/6195 -https://www.oceanexpert.org/expert/26469 -https://www.oceanexpert.org/expert/45307 -https://www.oceanexpert.org/expert/42679 -https://www.oceanexpert.org/expert/23921 -https://www.oceanexpert.org/expert/18955 -https://www.oceanexpert.org/expert/44191 -https://www.oceanexpert.org/expert/14191 -https://www.oceanexpert.org/institution/15914 -https://www.oceanexpert.org/expert/23619 -https://www.oceanexpert.org/expert/504 -https://www.oceanexpert.org/expert/39455 -https://www.oceanexpert.org/expert/30473 -https://www.oceanexpert.org/institution/12835 -https://www.oceanexpert.org/expert/44477 -https://www.oceanexpert.org/institution/14043 -https://www.oceanexpert.org/expert/31067 -https://www.oceanexpert.org/expert/47509 -https://www.oceanexpert.org/expert/24289 -https://www.oceanexpert.org/expert/23981 -https://www.oceanexpert.org/expert/29124 -https://www.oceanexpert.org/institution/21355 -https://www.oceanexpert.org/expert/35802 -https://www.oceanexpert.org/expert/42957 -https://www.oceanexpert.org/expert/7615 -https://www.oceanexpert.org/expert/44574 -https://www.oceanexpert.org/expert/37971 -https://www.oceanexpert.org/expert/32145 -https://www.oceanexpert.org/expert/45233 -https://www.oceanexpert.org/expert/21787 -https://www.oceanexpert.org/expert/36436 -https://www.oceanexpert.org/expert/47989 -https://www.oceanexpert.org/expert/38852 -https://www.oceanexpert.org/expert/28046 -https://www.oceanexpert.org/expert/36019 -https://www.oceanexpert.org/expert/20690 -https://www.oceanexpert.org/expert/37735 -https://www.oceanexpert.org/expert/23200 -https://www.oceanexpert.org/institution/18791 -https://www.oceanexpert.org/expert/45036 -https://www.oceanexpert.org/event/327 -https://www.oceanexpert.org/expert/21519 -https://www.oceanexpert.org/expert/29584 -https://www.oceanexpert.org/expert/46806 -https://www.oceanexpert.org/expert/42452 -https://www.oceanexpert.org/expert/45371 -https://www.oceanexpert.org/institution/12626 -https://www.oceanexpert.org/institution/13061 -https://www.oceanexpert.org/institution/8450 -https://www.oceanexpert.org/expert/23093 -https://www.oceanexpert.org/event/2946 -https://www.oceanexpert.org/institution/18608 -https://www.oceanexpert.org/expert/16746 -https://www.oceanexpert.org/expert/46205 -https://www.oceanexpert.org/expert/33059 -https://www.oceanexpert.org/expert/26089 -https://www.oceanexpert.org/institution/20073 -https://www.oceanexpert.org/event/2308 -https://www.oceanexpert.org/expert/23336 -https://www.oceanexpert.org/expert/14395 -https://www.oceanexpert.org/institution/8613 -https://www.oceanexpert.org/institution/20258 -https://www.oceanexpert.org/institution/11484 -https://www.oceanexpert.org/expert/12118 -https://www.oceanexpert.org/institution/21867 -https://www.oceanexpert.org/expert/18754 -https://www.oceanexpert.org/expert/26900 -https://www.oceanexpert.org/institution/11196 -https://www.oceanexpert.org/expert/45209 -https://www.oceanexpert.org/institution/18504 -https://www.oceanexpert.org/expert/21554 -https://www.oceanexpert.org/expert/26147 -https://www.oceanexpert.org/institution/15392 -https://www.oceanexpert.org/expert/11276 -https://www.oceanexpert.org/expert/1290 -https://www.oceanexpert.org/event/1856 -https://www.oceanexpert.org/expert/27330 -https://www.oceanexpert.org/expert/42934 -https://www.oceanexpert.org/event/512 -https://www.oceanexpert.org/expert/44279 -https://www.oceanexpert.org/event/2292 -https://www.oceanexpert.org/expert/24359 -https://www.oceanexpert.org/expert/44861 -https://www.oceanexpert.org/expert/25035 -https://www.oceanexpert.org/expert/32181 -https://www.oceanexpert.org/expert/19650 -https://www.oceanexpert.org/expert/25088 -https://www.oceanexpert.org/expert/44454 -https://www.oceanexpert.org/expert/5708 -https://www.oceanexpert.org/expert/38182 -https://www.oceanexpert.org/expert/35040 -https://www.oceanexpert.org/expert/26060 -https://www.oceanexpert.org/event/56 -https://www.oceanexpert.org/expert/19429 -https://www.oceanexpert.org/expert/46468 -https://www.oceanexpert.org/expert/42788 -https://www.oceanexpert.org/expert/48185 -https://www.oceanexpert.org/expert/21771 -https://www.oceanexpert.org/expert/47019 -https://www.oceanexpert.org/expert/25229 -https://www.oceanexpert.org/institution/16867 -https://www.oceanexpert.org/expert/23593 -https://www.oceanexpert.org/institution/19609 -https://www.oceanexpert.org/expert/11013 -https://www.oceanexpert.org/expert/12553 -https://www.oceanexpert.org/expert/21458 -https://www.oceanexpert.org/expert/28117 -https://www.oceanexpert.org/expert/34735 -https://www.oceanexpert.org/institution/12668 -https://www.oceanexpert.org/expert/43817 -https://www.oceanexpert.org/expert/36349 -https://www.oceanexpert.org/expert/46919 -https://www.oceanexpert.org/institution/19978 -https://www.oceanexpert.org/expert/19245 -https://www.oceanexpert.org/expert/24197 -https://www.oceanexpert.org/expert/19372 -https://www.oceanexpert.org/institution/12823 -https://www.oceanexpert.org/institution/19063 -https://www.oceanexpert.org/expert/43329 -https://www.oceanexpert.org/expert/11840 -https://www.oceanexpert.org/institution/18797 -https://www.oceanexpert.org/expert/46029 -https://www.oceanexpert.org/institution/7227 -https://www.oceanexpert.org/expert/36180 -https://www.oceanexpert.org/expert/8111 -https://www.oceanexpert.org/expert/17512 -https://www.oceanexpert.org/institution/22010 -https://www.oceanexpert.org/expert/29556 -https://www.oceanexpert.org/expert/36788 -https://www.oceanexpert.org/expert/43792 -https://www.oceanexpert.org/expert/27462 -https://www.oceanexpert.org/expert/16996 -https://www.oceanexpert.org/expert/18397 -https://www.oceanexpert.org/expert/6771 -https://www.oceanexpert.org/event/1745 -https://www.oceanexpert.org/expert/29024 -https://www.oceanexpert.org/institution/15853 -https://www.oceanexpert.org/expert/36027 -https://www.oceanexpert.org/expert/26806 -https://www.oceanexpert.org/expert/28143 -https://www.oceanexpert.org/institution/12681 -https://www.oceanexpert.org/institution/22114 -https://www.oceanexpert.org/expert/27794 -https://www.oceanexpert.org/institution/16248 -https://www.oceanexpert.org/expert/17439 -https://www.oceanexpert.org/event/1499 -https://www.oceanexpert.org/expert/26656 -https://www.oceanexpert.org/expert/4891 -https://www.oceanexpert.org/expert/37097 -https://www.oceanexpert.org/event/179 -https://www.oceanexpert.org/expert/44856 -https://www.oceanexpert.org/institution/18610 -https://www.oceanexpert.org/expert/25732 -https://www.oceanexpert.org/institution/19726 -https://www.oceanexpert.org/institution/19884 -https://www.oceanexpert.org/expert/20185 -https://www.oceanexpert.org/expert/47671 -https://www.oceanexpert.org/expert/37884 -https://www.oceanexpert.org/expert/48693 -https://www.oceanexpert.org/institution/21686 -https://www.oceanexpert.org/expert/45365 -https://www.oceanexpert.org/expert/26964 -https://www.oceanexpert.org/expert/43221 -https://www.oceanexpert.org/expert/43244 -https://www.oceanexpert.org/institution/18902 -https://www.oceanexpert.org/expert/35610 -https://www.oceanexpert.org/expert/34860 -https://www.oceanexpert.org/expert/23890 -https://www.oceanexpert.org/expert/45819 -https://www.oceanexpert.org/expert/13594 -https://www.oceanexpert.org/expert/46323 -https://www.oceanexpert.org/expert/37405 -https://www.oceanexpert.org/expert/25265 -https://www.oceanexpert.org/expert/29786 -https://www.oceanexpert.org/expert/37165 -https://www.oceanexpert.org/expert/26462 -https://www.oceanexpert.org/expert/46965 -https://www.oceanexpert.org/expert/36106 -https://www.oceanexpert.org/expert/11951 -https://www.oceanexpert.org/institution/20896 -https://www.oceanexpert.org/expert/11226 -https://www.oceanexpert.org/institution/16297 -https://www.oceanexpert.org/expert/17658 -https://www.oceanexpert.org/institution/13684 -https://www.oceanexpert.org/expert/48160 -https://www.oceanexpert.org/expert/23499 -https://www.oceanexpert.org/event/2021 -https://www.oceanexpert.org/institution/18859 -https://www.oceanexpert.org/institution/12999 -https://www.oceanexpert.org/expert/24925 -https://www.oceanexpert.org/expert/37045 -https://www.oceanexpert.org/expert/37946 -https://www.oceanexpert.org/event/2872 -https://www.oceanexpert.org/institution/18937 -https://www.oceanexpert.org/event/2458 -https://www.oceanexpert.org/institution/10047 -https://www.oceanexpert.org/expert/43975 -https://www.oceanexpert.org/expert/4444 -https://www.oceanexpert.org/institution/16066 -https://www.oceanexpert.org/expert/11163 -https://www.oceanexpert.org/institution/15961 -https://www.oceanexpert.org/expert/38364 -https://www.oceanexpert.org/institution/12031 -https://www.oceanexpert.org/expert/4594 -https://www.oceanexpert.org/expert/26272 -https://www.oceanexpert.org/institution/21339 -https://www.oceanexpert.org/expert/23473 -https://www.oceanexpert.org/expert/45561 -https://www.oceanexpert.org/expert/18977 -https://www.oceanexpert.org/expert/23618 -https://www.oceanexpert.org/expert/7041 -https://www.oceanexpert.org/expert/45672 -https://www.oceanexpert.org/expert/41318 -https://www.oceanexpert.org/institution/20417 -https://www.oceanexpert.org/expert/24057 -https://www.oceanexpert.org/event/1077 -https://www.oceanexpert.org/institution/19824 -https://www.oceanexpert.org/expert/16404 -https://www.oceanexpert.org/event/3160 -https://www.oceanexpert.org/expert/21284 -https://www.oceanexpert.org/expert/8957 -https://www.oceanexpert.org/expert/21013 -https://www.oceanexpert.org/expert/21468 -https://www.oceanexpert.org/event/452 -https://www.oceanexpert.org/expert/18442 -https://www.oceanexpert.org/institution/21100 -https://www.oceanexpert.org/institution/7983 -https://www.oceanexpert.org/event/2490 -https://www.oceanexpert.org/expert/16908 -https://www.oceanexpert.org/institution/15956 -https://www.oceanexpert.org/expert/23470 -https://www.oceanexpert.org/event/446 -https://www.oceanexpert.org/institution/21436 -https://www.oceanexpert.org/expert/30104 -https://www.oceanexpert.org/event/533 -https://www.oceanexpert.org/expert/26741 -https://www.oceanexpert.org/expert/36422 -https://www.oceanexpert.org/expert/27347 -https://www.oceanexpert.org/institution/19799 -https://www.oceanexpert.org/expert/5632 -https://www.oceanexpert.org/institution/5111 -https://www.oceanexpert.org/event/2361 -https://www.oceanexpert.org/institution/12444 -https://www.oceanexpert.org/expert/26965 -https://www.oceanexpert.org/expert/18180 -https://www.oceanexpert.org/event/1112 -https://www.oceanexpert.org/event/2078 -https://www.oceanexpert.org/expert/48512 -https://www.oceanexpert.org/institution/22090 -https://www.oceanexpert.org/expert/42751 -https://www.oceanexpert.org/expert/44259 -https://www.oceanexpert.org/expert/47903 -https://www.oceanexpert.org/institution/15557 -https://www.oceanexpert.org/event/1869 -https://www.oceanexpert.org/expert/26321 -https://www.oceanexpert.org/expert/11843 -https://www.oceanexpert.org/expert/45598 -https://www.oceanexpert.org/expert/39340 -https://www.oceanexpert.org/expert/46530 -https://www.oceanexpert.org/event/2365 -https://www.oceanexpert.org/institution/14393 -https://www.oceanexpert.org/expert/30038 -https://www.oceanexpert.org/event/1383 -https://www.oceanexpert.org/institution/18530 -https://www.oceanexpert.org/expert/3794 -https://www.oceanexpert.org/expert/44723 -https://www.oceanexpert.org/institution/18896 -https://www.oceanexpert.org/expert/179 -https://www.oceanexpert.org/event/2003 -https://www.oceanexpert.org/institution/21173 -https://www.oceanexpert.org/expert/29784 -https://www.oceanexpert.org/expert/6777 -https://www.oceanexpert.org/expert/9730 -https://www.oceanexpert.org/expert/31597 -https://www.oceanexpert.org/expert/16651 -https://www.oceanexpert.org/expert/45128 -https://www.oceanexpert.org/event/1335 -https://www.oceanexpert.org/institution/18247 -https://www.oceanexpert.org/expert/33111 -https://www.oceanexpert.org/institution/6297 -https://www.oceanexpert.org/expert/23256 -https://www.oceanexpert.org/expert/44138 -https://www.oceanexpert.org/expert/41505 -https://www.oceanexpert.org/institution/20050 -https://www.oceanexpert.org/expert/30763 -https://www.oceanexpert.org/expert/8437 -https://www.oceanexpert.org/institution/18097 -https://www.oceanexpert.org/institution/21891 -https://www.oceanexpert.org/expert/23814 -https://www.oceanexpert.org/expert/19774 -https://www.oceanexpert.org/expert/23663 -https://www.oceanexpert.org/expert/32647 -https://www.oceanexpert.org/expert/27249 -https://www.oceanexpert.org/expert/42411 -https://www.oceanexpert.org/expert/19455 -https://www.oceanexpert.org/expert/42404 -https://www.oceanexpert.org/expert/46958 -https://www.oceanexpert.org/institution/17018 -https://www.oceanexpert.org/expert/28379 -https://www.oceanexpert.org/expert/44694 -https://www.oceanexpert.org/expert/24315 -https://www.oceanexpert.org/expert/36327 -https://www.oceanexpert.org/expert/46959 -https://www.oceanexpert.org/expert/291 -https://www.oceanexpert.org/expert/44956 -https://www.oceanexpert.org/institution/9231 -https://www.oceanexpert.org/expert/7026 -https://www.oceanexpert.org/institution/17928 -https://www.oceanexpert.org/institution/18607 -https://www.oceanexpert.org/expert/8049 -https://www.oceanexpert.org/expert/40329 -https://www.oceanexpert.org/expert/46384 -https://www.oceanexpert.org/expert/34981 -https://www.oceanexpert.org/expert/43158 -https://www.oceanexpert.org/expert/28853 -https://www.oceanexpert.org/expert/17106 -https://www.oceanexpert.org/expert/39158 -https://www.oceanexpert.org/expert/36859 -https://www.oceanexpert.org/event/1685 -https://www.oceanexpert.org/expert/24647 -https://www.oceanexpert.org/expert/36401 -https://www.oceanexpert.org/expert/45548 -https://www.oceanexpert.org/expert/29127 -https://www.oceanexpert.org/event/39 -https://www.oceanexpert.org/expert/27170 -https://www.oceanexpert.org/expert/26931 -https://www.oceanexpert.org/expert/35454 -https://www.oceanexpert.org/institution/12188 -https://www.oceanexpert.org/institution/22120 -https://www.oceanexpert.org/expert/33913 -https://www.oceanexpert.org/expert/16319 -https://www.oceanexpert.org/expert/44897 -https://www.oceanexpert.org/institution/19215 -https://www.oceanexpert.org/institution/21642 -https://www.oceanexpert.org/expert/7318 -https://www.oceanexpert.org/expert/42750 -https://www.oceanexpert.org/expert/20362 -https://www.oceanexpert.org/expert/14052 -https://www.oceanexpert.org/expert/23547 -https://www.oceanexpert.org/expert/43828 -https://www.oceanexpert.org/expert/19012 -https://www.oceanexpert.org/institution/16363 -https://www.oceanexpert.org/expert/17158 -https://www.oceanexpert.org/institution/19168 -https://www.oceanexpert.org/expert/22395 -https://www.oceanexpert.org/institution/14096 -https://www.oceanexpert.org/expert/20557 -https://www.oceanexpert.org/expert/13093 -https://www.oceanexpert.org/expert/19387 -https://www.oceanexpert.org/expert/14487 -https://www.oceanexpert.org/expert/30029 -https://www.oceanexpert.org/institution/12035 -https://www.oceanexpert.org/expert/43663 -https://www.oceanexpert.org/expert/45566 -https://www.oceanexpert.org/expert/44534 -https://www.oceanexpert.org/institution/7262 -https://www.oceanexpert.org/institution/11197 -https://www.oceanexpert.org/expert/25837 -https://www.oceanexpert.org/institution/15796 -https://www.oceanexpert.org/institution/19691 -https://www.oceanexpert.org/expert/19112 -https://www.oceanexpert.org/expert/37034 -https://www.oceanexpert.org/expert/48385 -https://www.oceanexpert.org/expert/36345 -https://www.oceanexpert.org/institution/19663 -https://www.oceanexpert.org/institution/7592 -https://www.oceanexpert.org/institution/12033 -https://www.oceanexpert.org/institution/14637 -https://www.oceanexpert.org/expert/34310 -https://www.oceanexpert.org/institution/16721 -https://www.oceanexpert.org/expert/35990 -https://www.oceanexpert.org/institution/8844 -https://www.oceanexpert.org/event/469 -https://www.oceanexpert.org/expert/16092 -https://www.oceanexpert.org/institution/11041 -https://www.oceanexpert.org/expert/18131 -https://www.oceanexpert.org/expert/12888 -https://www.oceanexpert.org/institution/16060 -https://www.oceanexpert.org/expert/46798 -https://www.oceanexpert.org/expert/42907 -https://www.oceanexpert.org/institution/21293 -https://www.oceanexpert.org/expert/48155 -https://www.oceanexpert.org/institution/20579 -https://www.oceanexpert.org/expert/47969 -https://www.oceanexpert.org/institution/7764 -https://www.oceanexpert.org/expert/38652 -https://www.oceanexpert.org/institution/20134 -https://www.oceanexpert.org/expert/20968 -https://www.oceanexpert.org/institution/10610 -https://www.oceanexpert.org/expert/8882 -https://www.oceanexpert.org/expert/20252 -https://www.oceanexpert.org/expert/20479 -https://www.oceanexpert.org/expert/42743 -https://www.oceanexpert.org/institution/15314 -https://www.oceanexpert.org/expert/46304 -https://www.oceanexpert.org/institution/18176 -https://www.oceanexpert.org/expert/35390 -https://www.oceanexpert.org/expert/19677 -https://www.oceanexpert.org/expert/23542 -https://www.oceanexpert.org/expert/43635 -https://www.oceanexpert.org/expert/41647 -https://www.oceanexpert.org/expert/16638 -https://www.oceanexpert.org/expert/14092 -https://www.oceanexpert.org/expert/42582 -https://www.oceanexpert.org/event/1729 -https://www.oceanexpert.org/expert/18760 -https://www.oceanexpert.org/institution/11529 -https://www.oceanexpert.org/expert/35407 -https://www.oceanexpert.org/institution/21254 -https://www.oceanexpert.org/institution/10345 -https://www.oceanexpert.org/institution/15588 -https://www.oceanexpert.org/expert/38045 -https://www.oceanexpert.org/expert/21790 -https://www.oceanexpert.org/expert/23321 -https://www.oceanexpert.org/expert/42449 -https://www.oceanexpert.org/institution/12436 -https://www.oceanexpert.org/expert/34131 -https://www.oceanexpert.org/institution/20800 -https://www.oceanexpert.org/expert/1038 -https://www.oceanexpert.org/institution/20740 -https://www.oceanexpert.org/institution/14905 -https://www.oceanexpert.org/institution/15882 -https://www.oceanexpert.org/event/1871 -https://www.oceanexpert.org/expert/41066 -https://www.oceanexpert.org/expert/24614 -https://www.oceanexpert.org/expert/19748 -https://www.oceanexpert.org/event/3103 -https://www.oceanexpert.org/expert/16899 -https://www.oceanexpert.org/expert/23291 -https://www.oceanexpert.org/institution/21559 -https://www.oceanexpert.org/institution/6626 -https://www.oceanexpert.org/expert/44114 -https://www.oceanexpert.org/expert/15710 -https://www.oceanexpert.org/institution/12560 -https://www.oceanexpert.org/event/637 -https://www.oceanexpert.org/expert/20709 -https://www.oceanexpert.org/expert/46333 -https://www.oceanexpert.org/expert/34222 -https://www.oceanexpert.org/expert/25450 -https://www.oceanexpert.org/institution/17793 -https://www.oceanexpert.org/expert/47239 -https://www.oceanexpert.org/institution/22094 -https://www.oceanexpert.org/expert/45966 -https://www.oceanexpert.org/expert/27957 -https://www.oceanexpert.org/institution/21661 -https://www.oceanexpert.org/event/2857 -https://www.oceanexpert.org/expert/34765 -https://www.oceanexpert.org/expert/35478 -https://www.oceanexpert.org/expert/8662 -https://www.oceanexpert.org/expert/39844 -https://www.oceanexpert.org/expert/46919 -https://www.oceanexpert.org/institution/5534 -https://www.oceanexpert.org/expert/45428 -https://www.oceanexpert.org/expert/6245 -https://www.oceanexpert.org/event/23 -https://www.oceanexpert.org/expert/24862 -https://www.oceanexpert.org/expert/31527 -https://www.oceanexpert.org/expert/45896 -https://www.oceanexpert.org/expert/27294 -https://www.oceanexpert.org/expert/44538 -https://www.oceanexpert.org/expert/18587 -https://www.oceanexpert.org/expert/16582 -https://www.oceanexpert.org/expert/16616 -https://www.oceanexpert.org/expert/47690 -https://www.oceanexpert.org/expert/19341 -https://www.oceanexpert.org/expert/34538 -https://www.oceanexpert.org/expert/32621 -https://www.oceanexpert.org/expert/24243 -https://www.oceanexpert.org/event/378 -https://www.oceanexpert.org/expert/45078 -https://www.oceanexpert.org/expert/1412 -https://www.oceanexpert.org/institution/14501 -https://www.oceanexpert.org/expert/46409 -https://www.oceanexpert.org/institution/10649 -https://www.oceanexpert.org/expert/43787 -https://www.oceanexpert.org/expert/20016 -https://www.oceanexpert.org/expert/44375 -https://www.oceanexpert.org/expert/2543 -https://www.oceanexpert.org/institution/18648 -https://www.oceanexpert.org/event/3261 -https://www.oceanexpert.org/expert/44616 -https://www.oceanexpert.org/institution/19540 -https://www.oceanexpert.org/institution/12119 -https://www.oceanexpert.org/expert/18310 -https://www.oceanexpert.org/expert/47463 -https://www.oceanexpert.org/expert/36942 -https://www.oceanexpert.org/expert/45038 -https://www.oceanexpert.org/expert/19404 -https://www.oceanexpert.org/expert/23417 -https://www.oceanexpert.org/expert/47733 -https://www.oceanexpert.org/expert/25315 -https://www.oceanexpert.org/expert/21864 -https://www.oceanexpert.org/expert/47651 -https://www.oceanexpert.org/expert/37798 -https://www.oceanexpert.org/expert/26480 -https://www.oceanexpert.org/expert/12978 -https://www.oceanexpert.org/expert/37677 -https://www.oceanexpert.org/expert/40017 -https://www.oceanexpert.org/expert/19261 -https://www.oceanexpert.org/expert/7179 -https://www.oceanexpert.org/expert/30666 -https://www.oceanexpert.org/expert/36506 -https://www.oceanexpert.org/expert/22301 -https://www.oceanexpert.org/expert/42464 -https://www.oceanexpert.org/expert/4417 -https://www.oceanexpert.org/expert/48269 -https://www.oceanexpert.org/expert/23452 -https://www.oceanexpert.org/expert/36716 -https://www.oceanexpert.org/expert/13515 -https://www.oceanexpert.org/expert/38555 -https://www.oceanexpert.org/expert/45450 -https://www.oceanexpert.org/expert/29503 -https://www.oceanexpert.org/expert/22215 -https://www.oceanexpert.org/expert/1366 -https://www.oceanexpert.org/event/1541 -https://www.oceanexpert.org/expert/40536 -https://www.oceanexpert.org/expert/11498 -https://www.oceanexpert.org/institution/7293 -https://www.oceanexpert.org/institution/19519 -https://www.oceanexpert.org/event/2088 -https://www.oceanexpert.org/expert/7453 -https://www.oceanexpert.org/institution/20430 -https://www.oceanexpert.org/expert/18409 -https://www.oceanexpert.org/expert/46221 -https://www.oceanexpert.org/expert/48517 -https://www.oceanexpert.org/institution/11220 -https://www.oceanexpert.org/expert/40621 -https://www.oceanexpert.org/expert/35318 -https://www.oceanexpert.org/event/426 -https://www.oceanexpert.org/institution/16436 -https://www.oceanexpert.org/expert/7265 -https://www.oceanexpert.org/expert/21088 -https://www.oceanexpert.org/institution/19724 -https://www.oceanexpert.org/institution/19776 -https://www.oceanexpert.org/institution/15722 -https://www.oceanexpert.org/expert/24513 -https://www.oceanexpert.org/institution/18138 -https://www.oceanexpert.org/institution/13940 -https://www.oceanexpert.org/institution/20565 -https://www.oceanexpert.org/expert/29671 -https://www.oceanexpert.org/expert/27807 -https://www.oceanexpert.org/expert/38003 -https://www.oceanexpert.org/event/45 -https://www.oceanexpert.org/expert/19171 -https://www.oceanexpert.org/institution/11610 -https://www.oceanexpert.org/expert/22040 -https://www.oceanexpert.org/institution/10319 -https://www.oceanexpert.org/expert/44323 -https://www.oceanexpert.org/event/1048 -https://www.oceanexpert.org/expert/2363 -https://www.oceanexpert.org/expert/48214 -https://www.oceanexpert.org/institution/5423 -https://www.oceanexpert.org/expert/43035 -https://www.oceanexpert.org/expert/44720 -https://www.oceanexpert.org/expert/23585 -https://www.oceanexpert.org/institution/15952 -https://www.oceanexpert.org/event/2531 -https://www.oceanexpert.org/institution/12318 -https://www.oceanexpert.org/expert/19896 -https://www.oceanexpert.org/expert/26855 -https://www.oceanexpert.org/institution/7373 -https://www.oceanexpert.org/expert/29951 -https://www.oceanexpert.org/event/244 -https://www.oceanexpert.org/event/1324 -https://www.oceanexpert.org/expert/47732 -https://www.oceanexpert.org/event/1469 -https://www.oceanexpert.org/institution/21376 -https://www.oceanexpert.org/institution/20540 -https://www.oceanexpert.org/expert/45532 -https://www.oceanexpert.org/expert/9385 -https://www.oceanexpert.org/expert/29871 -https://www.oceanexpert.org/expert/22042 -https://www.oceanexpert.org/institution/14116 -https://www.oceanexpert.org/expert/33358 -https://www.oceanexpert.org/institution/15836 -https://www.oceanexpert.org/expert/38183 -https://www.oceanexpert.org/expert/23642 -https://www.oceanexpert.org/expert/54 -https://www.oceanexpert.org/expert/37651 -https://www.oceanexpert.org/expert/35218 -https://www.oceanexpert.org/expert/44809 -https://www.oceanexpert.org/expert/26233 -https://www.oceanexpert.org/expert/16130 -https://www.oceanexpert.org/expert/44620 -https://www.oceanexpert.org/expert/29373 -https://www.oceanexpert.org/expert/15786 -https://www.oceanexpert.org/expert/30489 -https://www.oceanexpert.org/institution/22129 -https://www.oceanexpert.org/institution/19461 -https://www.oceanexpert.org/institution/6008 -https://www.oceanexpert.org/expert/42996 -https://www.oceanexpert.org/institution/10814 -https://www.oceanexpert.org/event/489 -https://www.oceanexpert.org/expert/17316 -https://www.oceanexpert.org/event/896 -https://www.oceanexpert.org/event/521 -https://www.oceanexpert.org/expert/223 -https://www.oceanexpert.org/expert/6178 -https://www.oceanexpert.org/institution/18595 -https://www.oceanexpert.org/expert/13700 -https://www.oceanexpert.org/expert/44388 -https://www.oceanexpert.org/expert/20244 -https://www.oceanexpert.org/expert/36728 -https://www.oceanexpert.org/institution/19284 -https://www.oceanexpert.org/institution/17318 -https://www.oceanexpert.org/event/1266 -https://www.oceanexpert.org/expert/17837 -https://www.oceanexpert.org/expert/49004 -https://www.oceanexpert.org/expert/40308 -https://www.oceanexpert.org/expert/29442 -https://www.oceanexpert.org/expert/20820 -https://www.oceanexpert.org/event/2304 -https://www.oceanexpert.org/expert/36586 -https://www.oceanexpert.org/expert/15954 -https://www.oceanexpert.org/expert/36648 -https://www.oceanexpert.org/expert/35046 -https://www.oceanexpert.org/expert/28009 -https://www.oceanexpert.org/expert/24809 -https://www.oceanexpert.org/institution/11349 -https://www.oceanexpert.org/expert/28895 -https://www.oceanexpert.org/expert/34635 -https://www.oceanexpert.org/expert/33174 -https://www.oceanexpert.org/expert/23430 -https://www.oceanexpert.org/institution/19274 -https://www.oceanexpert.org/expert/47349 -https://www.oceanexpert.org/event/1407 -https://www.oceanexpert.org/expert/44678 -https://www.oceanexpert.org/expert/15535 -https://www.oceanexpert.org/expert/31169 -https://www.oceanexpert.org/expert/33248 -https://www.oceanexpert.org/expert/21728 -https://www.oceanexpert.org/institution/13359 -https://www.oceanexpert.org/institution/21075 -https://www.oceanexpert.org/expert/20145 -https://www.oceanexpert.org/expert/33494 -https://www.oceanexpert.org/expert/34572 -https://www.oceanexpert.org/expert/19910 -https://www.oceanexpert.org/expert/23271 -https://www.oceanexpert.org/expert/22813 -https://www.oceanexpert.org/expert/32650 -https://www.oceanexpert.org/institution/21505 -https://www.oceanexpert.org/expert/30297 -https://www.oceanexpert.org/institution/21815 -https://www.oceanexpert.org/institution/15110 -https://www.oceanexpert.org/institution/11155 -https://www.oceanexpert.org/expert/32984 -https://www.oceanexpert.org/expert/16138 -https://www.oceanexpert.org/event/2823 -https://www.oceanexpert.org/expert/22245 -https://www.oceanexpert.org/expert/11823 -https://www.oceanexpert.org/expert/48050 -https://www.oceanexpert.org/expert/21243 -https://www.oceanexpert.org/expert/19677 -https://www.oceanexpert.org/expert/29826 -https://www.oceanexpert.org/expert/34495 -https://www.oceanexpert.org/institution/10997 -https://www.oceanexpert.org/expert/23028 -https://www.oceanexpert.org/expert/39169 -https://www.oceanexpert.org/expert/8764 -https://www.oceanexpert.org/institution/20030 -https://www.oceanexpert.org/institution/19262 -https://www.oceanexpert.org/expert/12118 -https://www.oceanexpert.org/institution/21673 -https://www.oceanexpert.org/expert/29919 -https://www.oceanexpert.org/expert/44676 -https://www.oceanexpert.org/expert/36520 -https://www.oceanexpert.org/institution/21833 -https://www.oceanexpert.org/event/595 -https://www.oceanexpert.org/event/1243 -https://www.oceanexpert.org/expert/18211 -https://www.oceanexpert.org/expert/29080 -https://www.oceanexpert.org/expert/27396 -https://www.oceanexpert.org/expert/40657 -https://www.oceanexpert.org/event/56 -https://www.oceanexpert.org/expert/8423 -https://www.oceanexpert.org/institution/21019 -https://www.oceanexpert.org/expert/38266 -https://www.oceanexpert.org/event/1015 -https://www.oceanexpert.org/institution/18314 -https://www.oceanexpert.org/expert/28973 -https://www.oceanexpert.org/expert/42763 -https://www.oceanexpert.org/institution/6544 -https://www.oceanexpert.org/institution/20329 -https://www.oceanexpert.org/expert/25314 -https://www.oceanexpert.org/expert/32208 -https://www.oceanexpert.org/expert/34273 -https://www.oceanexpert.org/expert/25225 -https://www.oceanexpert.org/expert/21745 -https://www.oceanexpert.org/expert/15008 -https://www.oceanexpert.org/institution/11420 -https://www.oceanexpert.org/expert/37889 -https://www.oceanexpert.org/expert/31107 -https://www.oceanexpert.org/expert/43710 -https://www.oceanexpert.org/expert/20659 -https://www.oceanexpert.org/institution/21116 -https://www.oceanexpert.org/expert/36266 -https://www.oceanexpert.org/expert/17942 -https://www.oceanexpert.org/expert/43878 -https://www.oceanexpert.org/event/1239 -https://www.oceanexpert.org/institution/16801 -https://www.oceanexpert.org/expert/47249 -https://www.oceanexpert.org/expert/37350 -https://www.oceanexpert.org/event/3291 -https://www.oceanexpert.org/event/2923 -https://www.oceanexpert.org/institution/14003 -https://www.oceanexpert.org/expert/23779 -https://www.oceanexpert.org/expert/27360 -https://www.oceanexpert.org/event/2929 -https://www.oceanexpert.org/expert/26654 -https://www.oceanexpert.org/expert/29505 -https://www.oceanexpert.org/expert/44281 -https://www.oceanexpert.org/institution/8941 -https://www.oceanexpert.org/institution/18391 -https://www.oceanexpert.org/expert/43171 -https://www.oceanexpert.org/expert/3746 -https://www.oceanexpert.org/event/521 -https://www.oceanexpert.org/institution/17321 -https://www.oceanexpert.org/event/89 -https://www.oceanexpert.org/expert/19495 -https://www.oceanexpert.org/institution/13695 -https://www.oceanexpert.org/expert/17460 -https://www.oceanexpert.org/expert/34635 -https://www.oceanexpert.org/expert/11409 -https://www.oceanexpert.org/expert/21870 -https://www.oceanexpert.org/expert/35971 -https://www.oceanexpert.org/expert/15571 -https://www.oceanexpert.org/expert/20197 -https://www.oceanexpert.org/event/2474 -https://www.oceanexpert.org/institution/19967 -https://www.oceanexpert.org/institution/18077 -https://www.oceanexpert.org/expert/20401 -https://www.oceanexpert.org/expert/42777 -https://www.oceanexpert.org/expert/34802 -https://www.oceanexpert.org/institution/6939 -https://www.oceanexpert.org/event/1831 -https://www.oceanexpert.org/institution/12570 -https://www.oceanexpert.org/expert/42420 -https://www.oceanexpert.org/expert/20099 -https://www.oceanexpert.org/expert/34814 -https://www.oceanexpert.org/expert/42528 -https://www.oceanexpert.org/expert/44556 -https://www.oceanexpert.org/expert/23290 -https://www.oceanexpert.org/institution/13970 -https://www.oceanexpert.org/expert/44978 -https://www.oceanexpert.org/expert/26013 -https://www.oceanexpert.org/expert/13655 -https://www.oceanexpert.org/institution/19367 -https://www.oceanexpert.org/expert/36405 -https://www.oceanexpert.org/expert/43877 -https://www.oceanexpert.org/expert/47492 -https://www.oceanexpert.org/expert/24646 -https://www.oceanexpert.org/expert/17191 -https://www.oceanexpert.org/expert/25061 -https://www.oceanexpert.org/institution/18500 -https://www.oceanexpert.org/expert/43603 -https://www.oceanexpert.org/expert/4617 -https://www.oceanexpert.org/event/1513 -https://www.oceanexpert.org/expert/17717 -https://www.oceanexpert.org/expert/21863 -https://www.oceanexpert.org/expert/40090 -https://www.oceanexpert.org/expert/4345 -https://www.oceanexpert.org/institution/12376 -https://www.oceanexpert.org/institution/5394 -https://www.oceanexpert.org/expert/10988 -https://www.oceanexpert.org/expert/17308 -https://www.oceanexpert.org/expert/17591 -https://www.oceanexpert.org/event/2631 -https://www.oceanexpert.org/event/2373 -https://www.oceanexpert.org/expert/20765 -https://www.oceanexpert.org/event/2362 -https://www.oceanexpert.org/event/2908 -https://www.oceanexpert.org/institution/21135 -https://www.oceanexpert.org/expert/18462 -https://www.oceanexpert.org/expert/37127 -https://www.oceanexpert.org/expert/41652 -https://www.oceanexpert.org/institution/8025 -https://www.oceanexpert.org/expert/42476 -https://www.oceanexpert.org/expert/31420 -https://www.oceanexpert.org/expert/28364 -https://www.oceanexpert.org/expert/29123 -https://www.oceanexpert.org/institution/11171 -https://www.oceanexpert.org/expert/43491 -https://www.oceanexpert.org/event/2262 -https://www.oceanexpert.org/institution/14460 -https://www.oceanexpert.org/institution/12023 -https://www.oceanexpert.org/expert/18432 -https://www.oceanexpert.org/expert/21131 -https://www.oceanexpert.org/institution/13925 -https://www.oceanexpert.org/expert/23449 -https://www.oceanexpert.org/expert/46289 -https://www.oceanexpert.org/expert/48353 -https://www.oceanexpert.org/institution/14820 -https://www.oceanexpert.org/expert/38098 -https://www.oceanexpert.org/expert/35184 -https://www.oceanexpert.org/expert/17561 -https://www.oceanexpert.org/expert/29983 -https://www.oceanexpert.org/expert/44650 -https://www.oceanexpert.org/expert/44677 -https://www.oceanexpert.org/expert/48738 -https://www.oceanexpert.org/expert/37054 -https://www.oceanexpert.org/expert/8241 -https://www.oceanexpert.org/expert/35990 -https://www.oceanexpert.org/expert/14823 -https://www.oceanexpert.org/institution/22020 -https://www.oceanexpert.org/expert/39178 -https://www.oceanexpert.org/expert/33437 -https://www.oceanexpert.org/expert/26693 -https://www.oceanexpert.org/expert/43255 -https://www.oceanexpert.org/expert/36150 -https://www.oceanexpert.org/expert/34589 -https://www.oceanexpert.org/expert/18009 -https://www.oceanexpert.org/expert/22821 -https://www.oceanexpert.org/expert/48782 -https://www.oceanexpert.org/institution/21947 -https://www.oceanexpert.org/expert/25985 -https://www.oceanexpert.org/expert/26294 -https://www.oceanexpert.org/expert/44087 -https://www.oceanexpert.org/expert/25079 -https://www.oceanexpert.org/expert/34533 -https://www.oceanexpert.org/institution/16369 -https://www.oceanexpert.org/expert/9385 -https://www.oceanexpert.org/institution/15215 -https://www.oceanexpert.org/expert/12243 -https://www.oceanexpert.org/expert/46003 -https://www.oceanexpert.org/expert/26432 -https://www.oceanexpert.org/institution/21823 -https://www.oceanexpert.org/institution/21004 -https://www.oceanexpert.org/expert/25425 -https://www.oceanexpert.org/expert/40923 -https://www.oceanexpert.org/expert/22911 -https://www.oceanexpert.org/expert/16901 -https://www.oceanexpert.org/expert/11383 -https://www.oceanexpert.org/institution/11150 -https://www.oceanexpert.org/institution/14678 -https://www.oceanexpert.org/event/321 -https://www.oceanexpert.org/expert/19301 -https://www.oceanexpert.org/expert/32807 -https://www.oceanexpert.org/event/3159 -https://www.oceanexpert.org/expert/19362 -https://www.oceanexpert.org/expert/43212 -https://www.oceanexpert.org/institution/17816 -https://www.oceanexpert.org/expert/48770 -https://www.oceanexpert.org/expert/39245 -https://www.oceanexpert.org/expert/7042 -https://www.oceanexpert.org/institution/18305 -https://www.oceanexpert.org/expert/32702 -https://www.oceanexpert.org/expert/29605 -https://www.oceanexpert.org/expert/26693 -https://www.oceanexpert.org/event/1665 -https://www.oceanexpert.org/expert/39320 -https://www.oceanexpert.org/expert/29466 -https://www.oceanexpert.org/institution/15666 -https://www.oceanexpert.org/expert/35842 -https://www.oceanexpert.org/expert/35458 -https://www.oceanexpert.org/expert/23782 -https://www.oceanexpert.org/expert/30995 -https://www.oceanexpert.org/expert/27876 -https://www.oceanexpert.org/expert/38406 -https://www.oceanexpert.org/expert/47189 -https://www.oceanexpert.org/expert/27255 -https://www.oceanexpert.org/institution/7027 -https://www.oceanexpert.org/institution/8241 -https://www.oceanexpert.org/expert/48908 -https://www.oceanexpert.org/expert/22445 -https://www.oceanexpert.org/expert/13551 -https://www.oceanexpert.org/expert/47369 -https://www.oceanexpert.org/event/1159 -https://www.oceanexpert.org/expert/25105 -https://www.oceanexpert.org/expert/22154 -https://www.oceanexpert.org/expert/44024 -https://www.oceanexpert.org/expert/11850 -https://www.oceanexpert.org/expert/18682 -https://www.oceanexpert.org/expert/21505 -https://www.oceanexpert.org/institution/20861 -https://www.oceanexpert.org/expert/15558 -https://www.oceanexpert.org/institution/21531 -https://www.oceanexpert.org/institution/18153 -https://www.oceanexpert.org/expert/22909 -https://www.oceanexpert.org/event/1755 -https://www.oceanexpert.org/institution/8195 -https://www.oceanexpert.org/expert/17175 -https://www.oceanexpert.org/institution/18395 -https://www.oceanexpert.org/expert/24031 -https://www.oceanexpert.org/expert/30405 -https://www.oceanexpert.org/expert/28166 -https://www.oceanexpert.org/institution/15270 -https://www.oceanexpert.org/expert/25794 -https://www.oceanexpert.org/institution/17793 -https://www.oceanexpert.org/expert/34383 -https://www.oceanexpert.org/expert/20346 -https://www.oceanexpert.org/expert/47388 -https://www.oceanexpert.org/expert/12173 -https://www.oceanexpert.org/institution/18406 -https://www.oceanexpert.org/expert/20990 -https://www.oceanexpert.org/institution/15338 -https://www.oceanexpert.org/expert/44101 -https://www.oceanexpert.org/expert/27385 -https://www.oceanexpert.org/expert/46633 -https://www.oceanexpert.org/expert/30907 -https://www.oceanexpert.org/institution/10642 -https://www.oceanexpert.org/expert/46957 -https://www.oceanexpert.org/institution/18064 -https://www.oceanexpert.org/institution/6213 -https://www.oceanexpert.org/expert/19926 -https://www.oceanexpert.org/expert/32393 -https://www.oceanexpert.org/expert/40107 -https://www.oceanexpert.org/expert/46549 -https://www.oceanexpert.org/expert/36937 -https://www.oceanexpert.org/expert/41610 -https://www.oceanexpert.org/expert/31568 -https://www.oceanexpert.org/event/2035 -https://www.oceanexpert.org/event/2974 -https://www.oceanexpert.org/expert/23605 -https://www.oceanexpert.org/event/1934 -https://www.oceanexpert.org/expert/26512 -https://www.oceanexpert.org/expert/45110 -https://www.oceanexpert.org/expert/38118 -https://www.oceanexpert.org/institution/21938 -https://www.oceanexpert.org/expert/34643 -https://www.oceanexpert.org/event/1136 -https://www.oceanexpert.org/expert/26905 -https://www.oceanexpert.org/event/2960 -https://www.oceanexpert.org/expert/48544 -https://www.oceanexpert.org/expert/46508 -https://www.oceanexpert.org/event/1750 -https://www.oceanexpert.org/institution/16221 -https://www.oceanexpert.org/expert/6176 -https://www.oceanexpert.org/expert/30877 -https://www.oceanexpert.org/expert/25324 -https://www.oceanexpert.org/expert/35238 -https://www.oceanexpert.org/expert/23743 -https://www.oceanexpert.org/institution/15611 -https://www.oceanexpert.org/expert/44424 -https://www.oceanexpert.org/event/1807 -https://www.oceanexpert.org/expert/25843 -https://www.oceanexpert.org/expert/32901 -https://www.oceanexpert.org/institution/14959 -https://www.oceanexpert.org/expert/20747 -https://www.oceanexpert.org/institution/12940 -https://www.oceanexpert.org/institution/18733 -https://www.oceanexpert.org/expert/24892 -https://www.oceanexpert.org/expert/39942 -https://www.oceanexpert.org/event/1092 -https://www.oceanexpert.org/expert/35095 -https://www.oceanexpert.org/expert/35350 -https://www.oceanexpert.org/expert/47382 -https://www.oceanexpert.org/expert/44157 -https://www.oceanexpert.org/institution/19718 -https://www.oceanexpert.org/institution/6682 -https://www.oceanexpert.org/institution/9055 -https://www.oceanexpert.org/expert/26277 -https://www.oceanexpert.org/expert/32299 -https://www.oceanexpert.org/expert/27893 -https://www.oceanexpert.org/expert/46980 -https://www.oceanexpert.org/expert/25558 -https://www.oceanexpert.org/expert/38234 -https://www.oceanexpert.org/expert/24720 -https://www.oceanexpert.org/institution/14101 -https://www.oceanexpert.org/expert/24631 -https://www.oceanexpert.org/institution/17483 -https://www.oceanexpert.org/expert/48794 -https://www.oceanexpert.org/expert/22635 -https://www.oceanexpert.org/expert/48088 -https://www.oceanexpert.org/institution/19583 -https://www.oceanexpert.org/expert/26813 -https://www.oceanexpert.org/expert/23024 -https://www.oceanexpert.org/expert/44521 -https://www.oceanexpert.org/event/1468 -https://www.oceanexpert.org/institution/19486 -https://www.oceanexpert.org/institution/20630 -https://www.oceanexpert.org/expert/14838 -https://www.oceanexpert.org/expert/29382 -https://www.oceanexpert.org/expert/26208 -https://www.oceanexpert.org/expert/21065 -https://www.oceanexpert.org/expert/44850 -https://www.oceanexpert.org/institution/12799 -https://www.oceanexpert.org/institution/21886 -https://www.oceanexpert.org/expert/19155 -https://www.oceanexpert.org/institution/20947 -https://www.oceanexpert.org/expert/19076 -https://www.oceanexpert.org/expert/45728 -https://www.oceanexpert.org/expert/45505 -https://www.oceanexpert.org/expert/26669 -https://www.oceanexpert.org/institution/5014 -https://www.oceanexpert.org/expert/18199 -https://www.oceanexpert.org/expert/16692 -https://www.oceanexpert.org/event/2681 -https://www.oceanexpert.org/institution/10724 -https://www.oceanexpert.org/event/587 -https://www.oceanexpert.org/institution/20921 -https://www.oceanexpert.org/institution/21308 -https://www.oceanexpert.org/institution/14381 -https://www.oceanexpert.org/event/402 -https://www.oceanexpert.org/expert/32847 -https://www.oceanexpert.org/institution/16825 -https://www.oceanexpert.org/expert/31213 -https://www.oceanexpert.org/event/1516 -https://www.oceanexpert.org/expert/22800 -https://www.oceanexpert.org/event/2265 -https://www.oceanexpert.org/event/2457 -https://www.oceanexpert.org/expert/45971 -https://www.oceanexpert.org/institution/16372 -https://www.oceanexpert.org/expert/22682 -https://www.oceanexpert.org/expert/46540 -https://www.oceanexpert.org/institution/12725 -https://www.oceanexpert.org/expert/33656 -https://www.oceanexpert.org/expert/47970 -https://www.oceanexpert.org/expert/34393 -https://www.oceanexpert.org/expert/21824 -https://www.oceanexpert.org/institution/20000 -https://www.oceanexpert.org/expert/48594 -https://www.oceanexpert.org/institution/11996 -https://www.oceanexpert.org/expert/45971 -https://www.oceanexpert.org/expert/35673 -https://www.oceanexpert.org/expert/41458 -https://www.oceanexpert.org/expert/33203 -https://www.oceanexpert.org/expert/27289 -https://www.oceanexpert.org/expert/35788 -https://www.oceanexpert.org/institution/22102 -https://www.oceanexpert.org/expert/7001 -https://www.oceanexpert.org/event/1295 -https://www.oceanexpert.org/expert/27395 -https://www.oceanexpert.org/institution/20742 -https://www.oceanexpert.org/institution/19485 -https://www.oceanexpert.org/institution/21124 -https://www.oceanexpert.org/expert/28812 -https://www.oceanexpert.org/expert/45953 -https://www.oceanexpert.org/event/2258 -https://www.oceanexpert.org/expert/20363 -https://www.oceanexpert.org/expert/20659 -https://www.oceanexpert.org/expert/45671 -https://www.oceanexpert.org/expert/22668 -https://www.oceanexpert.org/expert/184 -https://www.oceanexpert.org/event/1773 -https://www.oceanexpert.org/expert/21765 -https://www.oceanexpert.org/expert/37749 -https://www.oceanexpert.org/expert/36637 -https://www.oceanexpert.org/expert/27218 -https://www.oceanexpert.org/institution/18231 -https://www.oceanexpert.org/event/3004 -https://www.oceanexpert.org/institution/17220 -https://www.oceanexpert.org/expert/17849 -https://www.oceanexpert.org/expert/36753 -https://www.oceanexpert.org/expert/37498 -https://www.oceanexpert.org/expert/44198 -https://www.oceanexpert.org/expert/43138 -https://www.oceanexpert.org/expert/27350 -https://www.oceanexpert.org/expert/2061 -https://www.oceanexpert.org/expert/47065 -https://www.oceanexpert.org/expert/36553 -https://www.oceanexpert.org/expert/29760 -https://www.oceanexpert.org/expert/25948 -https://www.oceanexpert.org/expert/34707 -https://www.oceanexpert.org/expert/37445 -https://www.oceanexpert.org/expert/13828 -https://www.oceanexpert.org/institution/20727 -https://www.oceanexpert.org/institution/9124 -https://www.oceanexpert.org/expert/39613 -https://www.oceanexpert.org/expert/25268 -https://www.oceanexpert.org/expert/14384 -https://www.oceanexpert.org/event/984 -https://www.oceanexpert.org/expert/16228 -https://www.oceanexpert.org/event/2515 -https://www.oceanexpert.org/expert/17611 -https://www.oceanexpert.org/expert/26946 -https://www.oceanexpert.org/institution/11036 -https://www.oceanexpert.org/expert/45990 -https://www.oceanexpert.org/expert/34634 -https://www.oceanexpert.org/institution/19842 -https://www.oceanexpert.org/expert/36812 -https://www.oceanexpert.org/institution/12042 -https://www.oceanexpert.org/expert/29190 -https://www.oceanexpert.org/institution/10307 -https://www.oceanexpert.org/institution/14637 -https://www.oceanexpert.org/expert/21639 -https://www.oceanexpert.org/expert/13586 -https://www.oceanexpert.org/expert/47038 -https://www.oceanexpert.org/institution/20573 -https://www.oceanexpert.org/expert/5872 -https://www.oceanexpert.org/expert/42425 -https://www.oceanexpert.org/institution/8344 -https://www.oceanexpert.org/event/1386 -https://www.oceanexpert.org/expert/16767 -https://www.oceanexpert.org/expert/23140 -https://www.oceanexpert.org/expert/47470 -https://www.oceanexpert.org/institution/13449 -https://www.oceanexpert.org/event/1782 -https://www.oceanexpert.org/expert/44362 -https://www.oceanexpert.org/expert/48525 -https://www.oceanexpert.org/event/1934 -https://www.oceanexpert.org/institution/21577 -https://www.oceanexpert.org/expert/46212 -https://www.oceanexpert.org/expert/44745 -https://www.oceanexpert.org/event/386 -https://www.oceanexpert.org/event/1684 -https://www.oceanexpert.org/event/81 -https://www.oceanexpert.org/expert/47670 -https://www.oceanexpert.org/expert/44792 -https://www.oceanexpert.org/institution/14245 -https://www.oceanexpert.org/expert/22969 -https://www.oceanexpert.org/institution/6741 -https://www.oceanexpert.org/expert/28845 -https://www.oceanexpert.org/institution/21647 -https://www.oceanexpert.org/expert/14052 -https://www.oceanexpert.org/expert/48058 -https://www.oceanexpert.org/expert/29622 -https://www.oceanexpert.org/institution/11036 -https://www.oceanexpert.org/expert/4535 -https://www.oceanexpert.org/institution/11529 -https://www.oceanexpert.org/event/2739 -https://www.oceanexpert.org/expert/43030 -https://www.oceanexpert.org/expert/45478 -https://www.oceanexpert.org/event/2266 -https://www.oceanexpert.org/expert/35450 -https://www.oceanexpert.org/institution/20920 -https://www.oceanexpert.org/institution/19487 -https://www.oceanexpert.org/expert/26576 -https://www.oceanexpert.org/expert/20808 -https://www.oceanexpert.org/institution/11494 -https://www.oceanexpert.org/expert/15662 -https://www.oceanexpert.org/expert/21281 -https://www.oceanexpert.org/expert/33459 -https://www.oceanexpert.org/expert/19013 -https://www.oceanexpert.org/institution/5417 -https://www.oceanexpert.org/expert/14877 -https://www.oceanexpert.org/expert/25422 -https://www.oceanexpert.org/expert/506 -https://www.oceanexpert.org/event/278 -https://www.oceanexpert.org/institution/19601 -https://www.oceanexpert.org/institution/17947 -https://www.oceanexpert.org/institution/22131 -https://www.oceanexpert.org/expert/19647 -https://www.oceanexpert.org/institution/12219 -https://www.oceanexpert.org/expert/48749 -https://www.oceanexpert.org/expert/20372 -https://www.oceanexpert.org/expert/27523 -https://www.oceanexpert.org/expert/10976 -https://www.oceanexpert.org/expert/29835 -https://www.oceanexpert.org/expert/49057 -https://www.oceanexpert.org/institution/22093 -https://www.oceanexpert.org/institution/22118 -https://www.oceanexpert.org/expert/40373 -https://www.oceanexpert.org/event/1721 -https://www.oceanexpert.org/institution/20265 -https://www.oceanexpert.org/institution/17119 -https://www.oceanexpert.org/expert/40608 -https://www.oceanexpert.org/institution/15749 -https://www.oceanexpert.org/institution/20755 -https://www.oceanexpert.org/institution/19291 -https://www.oceanexpert.org/expert/18419 -https://www.oceanexpert.org/expert/31379 -https://www.oceanexpert.org/expert/19606 -https://www.oceanexpert.org/institution/18672 -https://www.oceanexpert.org/expert/48053 -https://www.oceanexpert.org/expert/24932 -https://www.oceanexpert.org/expert/39804 -https://www.oceanexpert.org/expert/45892 -https://www.oceanexpert.org/expert/34575 -https://www.oceanexpert.org/institution/21099 -https://www.oceanexpert.org/expert/30785 -https://www.oceanexpert.org/institution/11303 -https://www.oceanexpert.org/expert/24113 -https://www.oceanexpert.org/expert/43996 -https://www.oceanexpert.org/expert/15477 -https://www.oceanexpert.org/expert/23420 -https://www.oceanexpert.org/expert/22188 -https://www.oceanexpert.org/expert/43378 -https://www.oceanexpert.org/expert/29826 -https://www.oceanexpert.org/expert/21637 -https://www.oceanexpert.org/expert/33503 -https://www.oceanexpert.org/expert/47076 -https://www.oceanexpert.org/institution/21910 -https://www.oceanexpert.org/expert/19375 -https://www.oceanexpert.org/expert/11444 -https://www.oceanexpert.org/expert/12978 -https://www.oceanexpert.org/expert/46656 -https://www.oceanexpert.org/expert/4857 -https://www.oceanexpert.org/event/608 -https://www.oceanexpert.org/institution/18018 -https://www.oceanexpert.org/event/3263 -https://www.oceanexpert.org/institution/18202 -https://www.oceanexpert.org/institution/11756 -https://www.oceanexpert.org/expert/26237 -https://www.oceanexpert.org/expert/35701 -https://www.oceanexpert.org/expert/24593 -https://www.oceanexpert.org/event/2429 -https://www.oceanexpert.org/expert/47517 -https://www.oceanexpert.org/expert/24848 -https://www.oceanexpert.org/expert/35213 -https://www.oceanexpert.org/expert/45731 -https://www.oceanexpert.org/expert/43999 -https://www.oceanexpert.org/expert/22940 -https://www.oceanexpert.org/institution/15518 -https://www.oceanexpert.org/institution/13130 -https://www.oceanexpert.org/expert/22144 -https://www.oceanexpert.org/expert/46999 -https://www.oceanexpert.org/expert/16435 -https://www.oceanexpert.org/expert/18071 -https://www.oceanexpert.org/expert/30248 -https://www.oceanexpert.org/expert/34627 -https://www.oceanexpert.org/expert/42765 -https://www.oceanexpert.org/expert/22115 -https://www.oceanexpert.org/expert/6344 -https://www.oceanexpert.org/expert/9502 -https://www.oceanexpert.org/institution/18226 -https://www.oceanexpert.org/expert/361 -https://www.oceanexpert.org/expert/34663 -https://www.oceanexpert.org/institution/5709 -https://www.oceanexpert.org/expert/35595 -https://www.oceanexpert.org/institution/5684 -https://www.oceanexpert.org/expert/40122 -https://www.oceanexpert.org/institution/21648 -https://www.oceanexpert.org/expert/20610 -https://www.oceanexpert.org/institution/15732 -https://www.oceanexpert.org/expert/36321 -https://www.oceanexpert.org/expert/38074 -https://www.oceanexpert.org/event/2271 -https://www.oceanexpert.org/expert/34848 -https://www.oceanexpert.org/institution/21804 -https://www.oceanexpert.org/institution/13863 -https://www.oceanexpert.org/event/948 -https://www.oceanexpert.org/institution/18389 -https://www.oceanexpert.org/expert/3552 -https://www.oceanexpert.org/expert/40592 -https://www.oceanexpert.org/event/338 -https://www.oceanexpert.org/expert/46687 -https://www.oceanexpert.org/institution/16819 -https://www.oceanexpert.org/expert/21723 -https://www.oceanexpert.org/expert/29550 -https://www.oceanexpert.org/expert/23778 -https://www.oceanexpert.org/expert/47288 -https://www.oceanexpert.org/expert/17229 -https://www.oceanexpert.org/expert/33381 -https://www.oceanexpert.org/event/358 -https://www.oceanexpert.org/expert/19331 -https://www.oceanexpert.org/expert/37079 -https://www.oceanexpert.org/institution/21318 -https://www.oceanexpert.org/institution/13042 -https://www.oceanexpert.org/expert/18739 -https://www.oceanexpert.org/expert/26262 -https://www.oceanexpert.org/institution/16521 -https://www.oceanexpert.org/expert/18120 -https://www.oceanexpert.org/expert/44805 -https://www.oceanexpert.org/institution/19659 -https://www.oceanexpert.org/institution/21311 -https://www.oceanexpert.org/expert/23900 -https://www.oceanexpert.org/expert/41909 -https://www.oceanexpert.org/expert/25695 -https://www.oceanexpert.org/expert/35671 -https://www.oceanexpert.org/expert/33150 -https://www.oceanexpert.org/institution/18497 -https://www.oceanexpert.org/expert/35448 -https://www.oceanexpert.org/expert/20598 -https://www.oceanexpert.org/expert/48500 -https://www.oceanexpert.org/event/2583 -https://www.oceanexpert.org/expert/1725 -https://www.oceanexpert.org/expert/32459 -https://www.oceanexpert.org/expert/33011 -https://www.oceanexpert.org/expert/12888 -https://www.oceanexpert.org/event/20 -https://www.oceanexpert.org/expert/36713 -https://www.oceanexpert.org/expert/16296 -https://www.oceanexpert.org/expert/17781 -https://www.oceanexpert.org/expert/37008 -https://www.oceanexpert.org/institution/13297 -https://www.oceanexpert.org/expert/10929 -https://www.oceanexpert.org/expert/32352 -https://www.oceanexpert.org/expert/28156 -https://www.oceanexpert.org/expert/26539 -https://www.oceanexpert.org/expert/14243 -https://www.oceanexpert.org/expert/46671 -https://www.oceanexpert.org/expert/46327 -https://www.oceanexpert.org/expert/46785 -https://www.oceanexpert.org/expert/44832 -https://www.oceanexpert.org/expert/47249 -https://www.oceanexpert.org/expert/21857 -https://www.oceanexpert.org/expert/1132 -https://www.oceanexpert.org/institution/12616 -https://www.oceanexpert.org/expert/44288 -https://www.oceanexpert.org/event/885 -https://www.oceanexpert.org/institution/21795 -https://www.oceanexpert.org/expert/19762 -https://www.oceanexpert.org/expert/25415 -https://www.oceanexpert.org/expert/23090 -https://www.oceanexpert.org/expert/29695 -https://www.oceanexpert.org/expert/42647 -https://www.oceanexpert.org/institution/17689 -https://www.oceanexpert.org/expert/23942 -https://www.oceanexpert.org/expert/36321 -https://www.oceanexpert.org/expert/36330 -https://www.oceanexpert.org/expert/14720 -https://www.oceanexpert.org/event/1129 -https://www.oceanexpert.org/event/2330 -https://www.oceanexpert.org/expert/32509 -https://www.oceanexpert.org/institution/20446 -https://www.oceanexpert.org/expert/37783 -https://www.oceanexpert.org/event/1313 -https://www.oceanexpert.org/expert/26760 -https://www.oceanexpert.org/expert/14864 -https://www.oceanexpert.org/expert/27161 -https://www.oceanexpert.org/expert/19294 -https://www.oceanexpert.org/expert/26246 -https://www.oceanexpert.org/expert/36006 -https://www.oceanexpert.org/institution/17018 -https://www.oceanexpert.org/expert/34542 -https://www.oceanexpert.org/institution/18840 -https://www.oceanexpert.org/event/2423 -https://www.oceanexpert.org/expert/47006 -https://www.oceanexpert.org/expert/32207 -https://www.oceanexpert.org/expert/18160 -https://www.oceanexpert.org/expert/20946 -https://www.oceanexpert.org/expert/24295 -https://www.oceanexpert.org/expert/24215 -https://www.oceanexpert.org/expert/24574 -https://www.oceanexpert.org/expert/42784 -https://www.oceanexpert.org/expert/45657 -https://www.oceanexpert.org/expert/24734 -https://www.oceanexpert.org/institution/9342 -https://www.oceanexpert.org/expert/22235 -https://www.oceanexpert.org/expert/425 -https://www.oceanexpert.org/institution/9178 -https://www.oceanexpert.org/expert/3397 -https://www.oceanexpert.org/expert/45644 -https://www.oceanexpert.org/institution/20397 -https://www.oceanexpert.org/institution/16357 -https://www.oceanexpert.org/expert/25845 -https://www.oceanexpert.org/institution/20502 -https://www.oceanexpert.org/expert/28378 -https://www.oceanexpert.org/expert/21445 -https://www.oceanexpert.org/expert/1700 -https://www.oceanexpert.org/expert/38853 -https://www.oceanexpert.org/expert/27408 -https://www.oceanexpert.org/expert/34381 -https://www.oceanexpert.org/expert/34679 -https://www.oceanexpert.org/expert/44756 -https://www.oceanexpert.org/institution/11775 -https://www.oceanexpert.org/expert/21745 -https://www.oceanexpert.org/expert/18227 -https://www.oceanexpert.org/expert/1538 -https://www.oceanexpert.org/expert/46451 -https://www.oceanexpert.org/expert/16999 -https://www.oceanexpert.org/expert/23414 -https://www.oceanexpert.org/expert/18644 -https://www.oceanexpert.org/expert/37086 -https://www.oceanexpert.org/expert/15432 -https://www.oceanexpert.org/expert/21980 -https://www.oceanexpert.org/institution/21352 -https://www.oceanexpert.org/institution/19224 -https://www.oceanexpert.org/expert/28120 -https://www.oceanexpert.org/expert/7802 -https://www.oceanexpert.org/event/1761 -https://www.oceanexpert.org/expert/36728 -https://www.oceanexpert.org/institution/19595 -https://www.oceanexpert.org/expert/44551 -https://www.oceanexpert.org/expert/8654 -https://www.oceanexpert.org/expert/19524 -https://www.oceanexpert.org/institution/15539 -https://www.oceanexpert.org/expert/27175 -https://www.oceanexpert.org/expert/45344 -https://www.oceanexpert.org/institution/21511 -https://www.oceanexpert.org/institution/10131 -https://www.oceanexpert.org/expert/1205 -https://www.oceanexpert.org/expert/25239 -https://www.oceanexpert.org/expert/18032 -https://www.oceanexpert.org/expert/26853 -https://www.oceanexpert.org/event/972 -https://www.oceanexpert.org/event/952 -https://www.oceanexpert.org/institution/20952 -https://www.oceanexpert.org/institution/21649 -https://www.oceanexpert.org/expert/19556 -https://www.oceanexpert.org/institution/20551 -https://www.oceanexpert.org/institution/20319 -https://www.oceanexpert.org/institution/21736 -https://www.oceanexpert.org/expert/44057 -https://www.oceanexpert.org/expert/25580 -https://www.oceanexpert.org/expert/40369 -https://www.oceanexpert.org/expert/43865 -https://www.oceanexpert.org/expert/7272 -https://www.oceanexpert.org/expert/21838 -https://www.oceanexpert.org/expert/11185 -https://www.oceanexpert.org/expert/36407 -https://www.oceanexpert.org/expert/19571 -https://www.oceanexpert.org/institution/11678 -https://www.oceanexpert.org/expert/44876 -https://www.oceanexpert.org/event/165 -https://www.oceanexpert.org/expert/48122 -https://www.oceanexpert.org/expert/14497 -https://www.oceanexpert.org/expert/47734 -https://www.oceanexpert.org/institution/16067 -https://www.oceanexpert.org/expert/44906 -https://www.oceanexpert.org/expert/18937 -https://www.oceanexpert.org/expert/45430 -https://www.oceanexpert.org/institution/10075 -https://www.oceanexpert.org/expert/32181 -https://www.oceanexpert.org/expert/14094 -https://www.oceanexpert.org/institution/20777 -https://www.oceanexpert.org/expert/43880 -https://www.oceanexpert.org/event/1570 -https://www.oceanexpert.org/expert/32509 -https://www.oceanexpert.org/expert/13692 -https://www.oceanexpert.org/expert/30378 -https://www.oceanexpert.org/expert/44886 -https://www.oceanexpert.org/expert/32150 -https://www.oceanexpert.org/expert/37460 -https://www.oceanexpert.org/institution/20655 -https://www.oceanexpert.org/expert/26070 -https://www.oceanexpert.org/institution/20586 -https://www.oceanexpert.org/event/1703 -https://www.oceanexpert.org/expert/24027 -https://www.oceanexpert.org/institution/21344 -https://www.oceanexpert.org/institution/14289 -https://www.oceanexpert.org/event/439 -https://www.oceanexpert.org/expert/19832 -https://www.oceanexpert.org/institution/18783 -https://www.oceanexpert.org/event/983 -https://www.oceanexpert.org/expert/44570 -https://www.oceanexpert.org/event/2712 -https://www.oceanexpert.org/expert/27564 -https://www.oceanexpert.org/expert/22373 -https://www.oceanexpert.org/expert/26556 -https://www.oceanexpert.org/expert/42975 -https://www.oceanexpert.org/expert/21200 -https://www.oceanexpert.org/expert/38191 -https://www.oceanexpert.org/institution/6953 -https://www.oceanexpert.org/expert/47348 -https://www.oceanexpert.org/institution/6169 -https://www.oceanexpert.org/expert/46612 -https://www.oceanexpert.org/expert/31105 -https://www.oceanexpert.org/event/1968 -https://www.oceanexpert.org/institution/12755 -https://www.oceanexpert.org/expert/48513 -https://www.oceanexpert.org/institution/18303 -https://www.oceanexpert.org/institution/13053 -https://www.oceanexpert.org/expert/46266 -https://www.oceanexpert.org/institution/21893 -https://www.oceanexpert.org/institution/18248 -https://www.oceanexpert.org/expert/45366 -https://www.oceanexpert.org/event/2132 -https://www.oceanexpert.org/expert/20394 -https://www.oceanexpert.org/expert/3677 -https://www.oceanexpert.org/expert/31206 -https://www.oceanexpert.org/institution/14272 -https://www.oceanexpert.org/expert/35489 -https://www.oceanexpert.org/expert/35611 -https://www.oceanexpert.org/institution/18323 -https://www.oceanexpert.org/expert/23632 -https://www.oceanexpert.org/expert/22598 -https://www.oceanexpert.org/expert/1957 -https://www.oceanexpert.org/institution/19554 -https://www.oceanexpert.org/expert/43665 -https://www.oceanexpert.org/event/1217 -https://www.oceanexpert.org/expert/22494 -https://www.oceanexpert.org/expert/35080 -https://www.oceanexpert.org/expert/40576 -https://www.oceanexpert.org/event/1096 -https://www.oceanexpert.org/expert/24103 -https://www.oceanexpert.org/expert/37193 -https://www.oceanexpert.org/institution/10998 -https://www.oceanexpert.org/expert/45726 -https://www.oceanexpert.org/expert/42759 -https://www.oceanexpert.org/institution/6748 -https://www.oceanexpert.org/expert/1010 -https://www.oceanexpert.org/expert/35858 -https://www.oceanexpert.org/expert/22617 -https://www.oceanexpert.org/institution/12771 -https://www.oceanexpert.org/institution/16818 -https://www.oceanexpert.org/expert/36463 -https://www.oceanexpert.org/institution/14511 -https://www.oceanexpert.org/institution/21306 -https://www.oceanexpert.org/expert/20860 -https://www.oceanexpert.org/expert/48319 -https://www.oceanexpert.org/expert/24672 -https://www.oceanexpert.org/expert/46762 -https://www.oceanexpert.org/expert/1083 -https://www.oceanexpert.org/expert/32392 -https://www.oceanexpert.org/expert/43900 -https://www.oceanexpert.org/institution/13445 -https://www.oceanexpert.org/expert/44570 -https://www.oceanexpert.org/expert/8522 -https://www.oceanexpert.org/event/2926 -https://www.oceanexpert.org/institution/22186 -https://www.oceanexpert.org/event/577 -https://www.oceanexpert.org/expert/24902 -https://www.oceanexpert.org/expert/42952 -https://www.oceanexpert.org/expert/20484 -https://www.oceanexpert.org/expert/43796 -https://www.oceanexpert.org/expert/31724 -https://www.oceanexpert.org/expert/26895 -https://www.oceanexpert.org/institution/21255 -https://www.oceanexpert.org/expert/42922 -https://www.oceanexpert.org/expert/34998 -https://www.oceanexpert.org/institution/12823 -https://www.oceanexpert.org/expert/45737 -https://www.oceanexpert.org/expert/26345 -https://www.oceanexpert.org/expert/15053 -https://www.oceanexpert.org/expert/7740 -https://www.oceanexpert.org/institution/18395 -https://www.oceanexpert.org/institution/7770 -https://www.oceanexpert.org/expert/29839 -https://www.oceanexpert.org/expert/46774 -https://www.oceanexpert.org/expert/27544 -https://www.oceanexpert.org/expert/27433 -https://www.oceanexpert.org/expert/48718 -https://www.oceanexpert.org/institution/14373 -https://www.oceanexpert.org/expert/14388 -https://www.oceanexpert.org/expert/35176 -https://www.oceanexpert.org/event/668 -https://www.oceanexpert.org/expert/43371 -https://www.oceanexpert.org/expert/46259 -https://www.oceanexpert.org/expert/31771 -https://www.oceanexpert.org/expert/20170 -https://www.oceanexpert.org/expert/42880 -https://www.oceanexpert.org/institution/22099 -https://www.oceanexpert.org/institution/19793 -https://www.oceanexpert.org/expert/42563 -https://www.oceanexpert.org/expert/44639 -https://www.oceanexpert.org/expert/7484 -https://www.oceanexpert.org/expert/5592 -https://www.oceanexpert.org/event/1249 -https://www.oceanexpert.org/expert/1454 -https://www.oceanexpert.org/expert/16852 -https://www.oceanexpert.org/institution/13367 -https://www.oceanexpert.org/institution/20082 -https://www.oceanexpert.org/institution/19479 -https://www.oceanexpert.org/institution/6892 -https://www.oceanexpert.org/expert/34387 -https://www.oceanexpert.org/expert/46997 -https://www.oceanexpert.org/expert/37520 -https://www.oceanexpert.org/expert/24058 -https://www.oceanexpert.org/expert/44123 -https://www.oceanexpert.org/expert/31674 -https://www.oceanexpert.org/expert/48334 -https://www.oceanexpert.org/expert/21601 -https://www.oceanexpert.org/expert/34694 -https://www.oceanexpert.org/expert/40242 -https://www.oceanexpert.org/institution/13092 -https://www.oceanexpert.org/expert/46652 -https://www.oceanexpert.org/expert/26672 -https://www.oceanexpert.org/institution/15765 -https://www.oceanexpert.org/institution/8870 -https://www.oceanexpert.org/expert/973 -https://www.oceanexpert.org/expert/43273 -https://www.oceanexpert.org/event/494 -https://www.oceanexpert.org/institution/22164 -https://www.oceanexpert.org/expert/6914 -https://www.oceanexpert.org/expert/28247 -https://www.oceanexpert.org/expert/26805 -https://www.oceanexpert.org/expert/46663 -https://www.oceanexpert.org/expert/42915 -https://www.oceanexpert.org/expert/22959 -https://www.oceanexpert.org/expert/29286 -https://www.oceanexpert.org/institution/14042 -https://www.oceanexpert.org/expert/19881 -https://www.oceanexpert.org/institution/11758 -https://www.oceanexpert.org/institution/5408 -https://www.oceanexpert.org/expert/25972 -https://www.oceanexpert.org/institution/20988 -https://www.oceanexpert.org/expert/31170 -https://www.oceanexpert.org/expert/31087 -https://www.oceanexpert.org/event/2519 -https://www.oceanexpert.org/expert/46778 -https://www.oceanexpert.org/institution/5781 -https://www.oceanexpert.org/event/3250 -https://www.oceanexpert.org/expert/21719 -https://www.oceanexpert.org/expert/29744 -https://www.oceanexpert.org/institution/20321 -https://www.oceanexpert.org/expert/43817 -https://www.oceanexpert.org/institution/21166 -https://www.oceanexpert.org/institution/9478 -https://www.oceanexpert.org/expert/32514 -https://www.oceanexpert.org/expert/36169 -https://www.oceanexpert.org/expert/19974 -https://www.oceanexpert.org/expert/8028 -https://www.oceanexpert.org/expert/38032 -https://www.oceanexpert.org/institution/17863 -https://www.oceanexpert.org/institution/20873 -https://www.oceanexpert.org/institution/12494 -https://www.oceanexpert.org/expert/38490 -https://www.oceanexpert.org/expert/43712 -https://www.oceanexpert.org/expert/24394 -https://www.oceanexpert.org/expert/29908 -https://www.oceanexpert.org/event/433 -https://www.oceanexpert.org/institution/8795 -https://www.oceanexpert.org/expert/43065 -https://www.oceanexpert.org/institution/12058 -https://www.oceanexpert.org/expert/34321 -https://www.oceanexpert.org/expert/22943 -https://www.oceanexpert.org/expert/21842 -https://www.oceanexpert.org/expert/28476 -https://www.oceanexpert.org/expert/14476 -https://www.oceanexpert.org/expert/43937 -https://www.oceanexpert.org/institution/12655 -https://www.oceanexpert.org/institution/12873 -https://www.oceanexpert.org/expert/36471 -https://www.oceanexpert.org/expert/45889 -https://www.oceanexpert.org/expert/29111 -https://www.oceanexpert.org/expert/44713 -https://www.oceanexpert.org/institution/14172 -https://www.oceanexpert.org/expert/30516 -https://www.oceanexpert.org/expert/726 -https://www.oceanexpert.org/expert/43736 -https://www.oceanexpert.org/institution/14421 -https://www.oceanexpert.org/event/1988 -https://www.oceanexpert.org/expert/21249 -https://www.oceanexpert.org/event/1705 -https://www.oceanexpert.org/institution/14168 -https://www.oceanexpert.org/expert/13662 -https://www.oceanexpert.org/institution/15197 -https://www.oceanexpert.org/expert/25349 -https://www.oceanexpert.org/expert/20945 -https://www.oceanexpert.org/event/2346 -https://www.oceanexpert.org/expert/27807 -https://www.oceanexpert.org/expert/26101 -https://www.oceanexpert.org/expert/1917 -https://www.oceanexpert.org/institution/13768 -https://www.oceanexpert.org/institution/20464 -https://www.oceanexpert.org/expert/26708 -https://www.oceanexpert.org/expert/47456 -https://www.oceanexpert.org/expert/43706 -https://www.oceanexpert.org/institution/19957 -https://www.oceanexpert.org/expert/43000 -https://www.oceanexpert.org/institution/13175 -https://www.oceanexpert.org/event/307 -https://www.oceanexpert.org/expert/43599 -https://www.oceanexpert.org/expert/29521 -https://www.oceanexpert.org/institution/19408 -https://www.oceanexpert.org/expert/36441 -https://www.oceanexpert.org/expert/28294 -https://www.oceanexpert.org/expert/32576 -https://www.oceanexpert.org/expert/33654 -https://www.oceanexpert.org/expert/23615 -https://www.oceanexpert.org/expert/30447 -https://www.oceanexpert.org/institution/14053 -https://www.oceanexpert.org/expert/26632 -https://www.oceanexpert.org/expert/16379 -https://www.oceanexpert.org/institution/19847 -https://www.oceanexpert.org/expert/26131 -https://www.oceanexpert.org/expert/3486 -https://www.oceanexpert.org/event/2384 -https://www.oceanexpert.org/expert/37223 -https://www.oceanexpert.org/expert/26573 -https://www.oceanexpert.org/expert/22587 -https://www.oceanexpert.org/expert/13047 -https://www.oceanexpert.org/expert/31891 -https://www.oceanexpert.org/event/3137 -https://www.oceanexpert.org/expert/38443 -https://www.oceanexpert.org/expert/25916 -https://www.oceanexpert.org/institution/22033 -https://www.oceanexpert.org/expert/24434 -https://www.oceanexpert.org/expert/36793 -https://www.oceanexpert.org/institution/18914 -https://www.oceanexpert.org/institution/19814 -https://www.oceanexpert.org/event/1521 -https://www.oceanexpert.org/expert/37897 -https://www.oceanexpert.org/expert/3818 -https://www.oceanexpert.org/institution/19912 -https://www.oceanexpert.org/expert/43534 -https://www.oceanexpert.org/expert/14461 -https://www.oceanexpert.org/expert/17554 -https://www.oceanexpert.org/event/1766 -https://www.oceanexpert.org/event/1891 -https://www.oceanexpert.org/expert/1010 -https://www.oceanexpert.org/expert/17067 -https://www.oceanexpert.org/expert/47012 -https://www.oceanexpert.org/expert/19873 -https://www.oceanexpert.org/expert/15259 -https://www.oceanexpert.org/expert/32643 -https://www.oceanexpert.org/expert/46924 -https://www.oceanexpert.org/event/1359 -https://www.oceanexpert.org/expert/27390 -https://www.oceanexpert.org/expert/19463 -https://www.oceanexpert.org/expert/26235 -https://www.oceanexpert.org/expert/22268 -https://www.oceanexpert.org/expert/36676 -https://www.oceanexpert.org/expert/23506 -https://www.oceanexpert.org/event/383 -https://www.oceanexpert.org/event/1860 -https://www.oceanexpert.org/institution/19460 -https://www.oceanexpert.org/expert/25262 -https://www.oceanexpert.org/expert/22817 -https://www.oceanexpert.org/expert/27546 -https://www.oceanexpert.org/expert/36339 -https://www.oceanexpert.org/expert/25790 -https://www.oceanexpert.org/expert/25462 -https://www.oceanexpert.org/expert/12032 -https://www.oceanexpert.org/institution/18577 -https://www.oceanexpert.org/expert/34462 -https://www.oceanexpert.org/expert/7761 -https://www.oceanexpert.org/expert/17121 -https://www.oceanexpert.org/expert/24449 -https://www.oceanexpert.org/expert/26781 -https://www.oceanexpert.org/expert/34738 -https://www.oceanexpert.org/expert/1673 -https://www.oceanexpert.org/event/809 -https://www.oceanexpert.org/expert/34556 -https://www.oceanexpert.org/expert/27249 -https://www.oceanexpert.org/institution/18288 -https://www.oceanexpert.org/expert/19113 -https://www.oceanexpert.org/institution/20028 -https://www.oceanexpert.org/institution/7495 -https://www.oceanexpert.org/expert/27297 -https://www.oceanexpert.org/event/320 -https://www.oceanexpert.org/expert/24425 -https://www.oceanexpert.org/institution/18973 -https://www.oceanexpert.org/institution/21273 -https://www.oceanexpert.org/institution/12515 -https://www.oceanexpert.org/expert/37618 -https://www.oceanexpert.org/expert/12605 -https://www.oceanexpert.org/event/1678 -https://www.oceanexpert.org/expert/22556 -https://www.oceanexpert.org/expert/48691 -https://www.oceanexpert.org/expert/46147 -https://www.oceanexpert.org/expert/42556 -https://www.oceanexpert.org/event/1023 -https://www.oceanexpert.org/expert/36853 -https://www.oceanexpert.org/expert/43126 -https://www.oceanexpert.org/institution/19091 -https://www.oceanexpert.org/institution/7028 -https://www.oceanexpert.org/expert/47459 -https://www.oceanexpert.org/institution/21435 -https://www.oceanexpert.org/expert/35377 -https://www.oceanexpert.org/expert/46942 -https://www.oceanexpert.org/expert/16985 -https://www.oceanexpert.org/institution/19852 -https://www.oceanexpert.org/institution/18054 -https://www.oceanexpert.org/expert/26910 -https://www.oceanexpert.org/expert/22046 -https://www.oceanexpert.org/expert/48359 -https://www.oceanexpert.org/expert/23559 -https://www.oceanexpert.org/expert/18151 -https://www.oceanexpert.org/expert/18037 -https://www.oceanexpert.org/expert/11363 -https://www.oceanexpert.org/expert/33151 -https://www.oceanexpert.org/event/2794 -https://www.oceanexpert.org/expert/25776 -https://www.oceanexpert.org/expert/46555 -https://www.oceanexpert.org/expert/16773 -https://www.oceanexpert.org/expert/20404 -https://www.oceanexpert.org/institution/18860 -https://www.oceanexpert.org/expert/26194 -https://www.oceanexpert.org/expert/22543 -https://www.oceanexpert.org/institution/21517 -https://www.oceanexpert.org/expert/8130 -https://www.oceanexpert.org/institution/20613 -https://www.oceanexpert.org/expert/46716 -https://www.oceanexpert.org/institution/6319 -https://www.oceanexpert.org/expert/36810 -https://www.oceanexpert.org/institution/7901 -https://www.oceanexpert.org/event/1152 -https://www.oceanexpert.org/event/3048 -https://www.oceanexpert.org/expert/20521 -https://www.oceanexpert.org/expert/42449 -https://www.oceanexpert.org/expert/12231 -https://www.oceanexpert.org/expert/27857 -https://www.oceanexpert.org/institution/5421 -https://www.oceanexpert.org/institution/14375 -https://www.oceanexpert.org/expert/43110 -https://www.oceanexpert.org/expert/15550 -https://www.oceanexpert.org/expert/26842 -https://www.oceanexpert.org/expert/19162 -https://www.oceanexpert.org/event/2707 -https://www.oceanexpert.org/institution/12366 -https://www.oceanexpert.org/expert/48125 -https://www.oceanexpert.org/expert/23357 -https://www.oceanexpert.org/expert/28144 -https://www.oceanexpert.org/expert/26155 -https://www.oceanexpert.org/expert/15315 -https://www.oceanexpert.org/institution/11926 -https://www.oceanexpert.org/expert/22229 -https://www.oceanexpert.org/institution/21707 -https://www.oceanexpert.org/expert/10697 -https://www.oceanexpert.org/event/748 -https://www.oceanexpert.org/expert/41924 -https://www.oceanexpert.org/expert/25645 -https://www.oceanexpert.org/expert/26081 -https://www.oceanexpert.org/event/505 -https://www.oceanexpert.org/event/413 -https://www.oceanexpert.org/institution/21736 -https://www.oceanexpert.org/event/376 -https://www.oceanexpert.org/expert/44648 -https://www.oceanexpert.org/expert/29365 -https://www.oceanexpert.org/event/2218 -https://www.oceanexpert.org/institution/17737 -https://www.oceanexpert.org/institution/21942 -https://www.oceanexpert.org/expert/36807 -https://www.oceanexpert.org/institution/19387 -https://www.oceanexpert.org/event/1498 -https://www.oceanexpert.org/expert/48684 -https://www.oceanexpert.org/expert/25176 -https://www.oceanexpert.org/expert/35998 -https://www.oceanexpert.org/expert/45595 -https://www.oceanexpert.org/expert/47238 -https://www.oceanexpert.org/event/1173 -https://www.oceanexpert.org/expert/38205 -https://www.oceanexpert.org/expert/698 -https://www.oceanexpert.org/expert/16269 -https://www.oceanexpert.org/expert/25835 -https://www.oceanexpert.org/expert/22314 -https://www.oceanexpert.org/expert/31058 -https://www.oceanexpert.org/institution/17957 -https://www.oceanexpert.org/expert/7473 -https://www.oceanexpert.org/expert/20625 -https://www.oceanexpert.org/institution/11579 -https://www.oceanexpert.org/expert/45289 -https://www.oceanexpert.org/expert/37107 -https://www.oceanexpert.org/expert/24288 -https://www.oceanexpert.org/expert/25257 -https://www.oceanexpert.org/institution/6641 -https://www.oceanexpert.org/expert/43913 -https://www.oceanexpert.org/expert/25255 -https://www.oceanexpert.org/institution/7845 -https://www.oceanexpert.org/expert/31081 -https://www.oceanexpert.org/expert/48724 -https://www.oceanexpert.org/expert/24871 -https://www.oceanexpert.org/expert/23707 -https://www.oceanexpert.org/expert/18978 -https://www.oceanexpert.org/institution/14744 -https://www.oceanexpert.org/institution/13565 -https://www.oceanexpert.org/institution/11340 -https://www.oceanexpert.org/expert/46284 -https://www.oceanexpert.org/event/3262 -https://www.oceanexpert.org/expert/4986 -https://www.oceanexpert.org/expert/37899 -https://www.oceanexpert.org/event/1391 -https://www.oceanexpert.org/institution/12483 -https://www.oceanexpert.org/institution/9133 -https://www.oceanexpert.org/expert/32164 -https://www.oceanexpert.org/expert/25088 -https://www.oceanexpert.org/expert/34544 -https://www.oceanexpert.org/institution/14280 -https://www.oceanexpert.org/expert/20347 -https://www.oceanexpert.org/expert/28299 -https://www.oceanexpert.org/institution/18133 -https://www.oceanexpert.org/expert/40308 -https://www.oceanexpert.org/expert/26489 -https://www.oceanexpert.org/expert/27259 -https://www.oceanexpert.org/expert/18449 -https://www.oceanexpert.org/expert/21648 -https://www.oceanexpert.org/institution/13079 -https://www.oceanexpert.org/event/1938 -https://www.oceanexpert.org/expert/24884 -https://www.oceanexpert.org/institution/21797 -https://www.oceanexpert.org/event/1598 -https://www.oceanexpert.org/expert/29502 -https://www.oceanexpert.org/expert/24945 -https://www.oceanexpert.org/expert/34268 -https://www.oceanexpert.org/expert/48420 -https://www.oceanexpert.org/expert/18362 -https://www.oceanexpert.org/expert/22692 -https://www.oceanexpert.org/expert/40177 -https://www.oceanexpert.org/expert/44603 -https://www.oceanexpert.org/institution/13724 -https://www.oceanexpert.org/expert/7449 -https://www.oceanexpert.org/expert/26540 -https://www.oceanexpert.org/expert/44662 -https://www.oceanexpert.org/institution/21827 -https://www.oceanexpert.org/expert/38083 -https://www.oceanexpert.org/event/2758 -https://www.oceanexpert.org/expert/26613 -https://www.oceanexpert.org/institution/16741 -https://www.oceanexpert.org/institution/20021 -https://www.oceanexpert.org/expert/37048 -https://www.oceanexpert.org/event/836 -https://www.oceanexpert.org/event/304 -https://www.oceanexpert.org/expert/20183 -https://www.oceanexpert.org/event/1264 -https://www.oceanexpert.org/expert/37502 -https://www.oceanexpert.org/event/450 -https://www.oceanexpert.org/expert/36843 -https://www.oceanexpert.org/expert/17229 -https://www.oceanexpert.org/expert/46938 -https://www.oceanexpert.org/expert/21832 -https://www.oceanexpert.org/expert/25201 -https://www.oceanexpert.org/institution/18595 -https://www.oceanexpert.org/expert/15615 -https://www.oceanexpert.org/expert/20926 -https://www.oceanexpert.org/expert/31238 -https://www.oceanexpert.org/institution/17722 -https://www.oceanexpert.org/expert/20800 -https://www.oceanexpert.org/institution/20381 -https://www.oceanexpert.org/event/1564 -https://www.oceanexpert.org/event/2674 -https://www.oceanexpert.org/expert/35110 -https://www.oceanexpert.org/institution/19257 -https://www.oceanexpert.org/expert/23006 -https://www.oceanexpert.org/expert/35442 -https://www.oceanexpert.org/expert/22630 -https://www.oceanexpert.org/event/2756 -https://www.oceanexpert.org/expert/38324 -https://www.oceanexpert.org/expert/44777 -https://www.oceanexpert.org/expert/972 -https://www.oceanexpert.org/expert/19262 -https://www.oceanexpert.org/event/229 -https://www.oceanexpert.org/institution/11183 -https://www.oceanexpert.org/event/1887 -https://www.oceanexpert.org/institution/13994 -https://www.oceanexpert.org/expert/329 -https://www.oceanexpert.org/expert/46753 -https://www.oceanexpert.org/expert/26147 -https://www.oceanexpert.org/expert/1209 -https://www.oceanexpert.org/expert/47043 -https://www.oceanexpert.org/expert/35348 -https://www.oceanexpert.org/expert/33857 -https://www.oceanexpert.org/expert/7357 -https://www.oceanexpert.org/expert/37867 -https://www.oceanexpert.org/expert/32978 -https://www.oceanexpert.org/expert/25389 -https://www.oceanexpert.org/expert/24904 -https://www.oceanexpert.org/expert/20206 -https://www.oceanexpert.org/event/1381 -https://www.oceanexpert.org/expert/24251 -https://www.oceanexpert.org/expert/15866 -https://www.oceanexpert.org/expert/35981 -https://www.oceanexpert.org/expert/34440 -https://www.oceanexpert.org/expert/7608 -https://www.oceanexpert.org/expert/19200 -https://www.oceanexpert.org/institution/8971 -https://www.oceanexpert.org/expert/40529 -https://www.oceanexpert.org/expert/32186 -https://www.oceanexpert.org/expert/25356 -https://www.oceanexpert.org/expert/586 -https://www.oceanexpert.org/institution/21026 -https://www.oceanexpert.org/institution/21588 -https://www.oceanexpert.org/expert/13071 -https://www.oceanexpert.org/expert/23763 -https://www.oceanexpert.org/institution/12548 -https://www.oceanexpert.org/expert/27979 -https://www.oceanexpert.org/event/611 -https://www.oceanexpert.org/institution/15951 -https://www.oceanexpert.org/expert/2974 -https://www.oceanexpert.org/expert/24231 -https://www.oceanexpert.org/institution/12484 -https://www.oceanexpert.org/institution/12290 -https://www.oceanexpert.org/expert/15838 -https://www.oceanexpert.org/expert/46287 -https://www.oceanexpert.org/expert/43503 -https://www.oceanexpert.org/institution/7924 -https://www.oceanexpert.org/expert/37793 -https://www.oceanexpert.org/expert/43366 -https://www.oceanexpert.org/expert/26246 -https://www.oceanexpert.org/expert/41227 -https://www.oceanexpert.org/expert/25209 -https://www.oceanexpert.org/institution/19728 -https://www.oceanexpert.org/expert/21306 -https://www.oceanexpert.org/expert/45194 -https://www.oceanexpert.org/expert/46101 -https://www.oceanexpert.org/expert/43920 -https://www.oceanexpert.org/institution/19320 -https://www.oceanexpert.org/expert/32161 -https://www.oceanexpert.org/expert/25697 -https://www.oceanexpert.org/expert/6803 -https://www.oceanexpert.org/event/1950 -https://www.oceanexpert.org/institution/12991 -https://www.oceanexpert.org/expert/35382 -https://www.oceanexpert.org/expert/22460 -https://www.oceanexpert.org/institution/19920 -https://www.oceanexpert.org/expert/25085 -https://www.oceanexpert.org/expert/19761 -https://www.oceanexpert.org/event/1443 -https://www.oceanexpert.org/expert/47788 -https://www.oceanexpert.org/event/35 -https://www.oceanexpert.org/event/1853 -https://www.oceanexpert.org/event/383 -https://www.oceanexpert.org/institution/20418 -https://www.oceanexpert.org/expert/41611 -https://www.oceanexpert.org/expert/7017 -https://www.oceanexpert.org/expert/43944 -https://www.oceanexpert.org/expert/15612 -https://www.oceanexpert.org/expert/32163 -https://www.oceanexpert.org/expert/17528 -https://www.oceanexpert.org/institution/17231 -https://www.oceanexpert.org/expert/48247 -https://www.oceanexpert.org/expert/34341 -https://www.oceanexpert.org/institution/13209 -https://www.oceanexpert.org/institution/22122 -https://www.oceanexpert.org/expert/19145 -https://www.oceanexpert.org/expert/45939 -https://www.oceanexpert.org/expert/26671 -https://www.oceanexpert.org/expert/22819 -https://www.oceanexpert.org/expert/24802 -https://www.oceanexpert.org/institution/16364 -https://www.oceanexpert.org/expert/15360 -https://www.oceanexpert.org/expert/13383 -https://www.oceanexpert.org/expert/38725 -https://www.oceanexpert.org/expert/28106 -https://www.oceanexpert.org/expert/8850 -https://www.oceanexpert.org/expert/29419 -https://www.oceanexpert.org/institution/21762 -https://www.oceanexpert.org/institution/12474 -https://www.oceanexpert.org/expert/6729 -https://www.oceanexpert.org/expert/24009 -https://www.oceanexpert.org/expert/40267 -https://www.oceanexpert.org/expert/49029 -https://www.oceanexpert.org/institution/11544 -https://www.oceanexpert.org/institution/21440 -https://www.oceanexpert.org/expert/24248 -https://www.oceanexpert.org/expert/35591 -https://www.oceanexpert.org/expert/14720 -https://www.oceanexpert.org/expert/27172 -https://www.oceanexpert.org/institution/19182 -https://www.oceanexpert.org/expert/48722 -https://www.oceanexpert.org/expert/19595 -https://www.oceanexpert.org/institution/20557 -https://www.oceanexpert.org/expert/33078 -https://www.oceanexpert.org/expert/42813 -https://www.oceanexpert.org/expert/45022 -https://www.oceanexpert.org/expert/38422 -https://www.oceanexpert.org/expert/29277 -https://www.oceanexpert.org/expert/28457 -https://www.oceanexpert.org/institution/13080 -https://www.oceanexpert.org/institution/15514 -https://www.oceanexpert.org/expert/27226 -https://www.oceanexpert.org/expert/45707 -https://www.oceanexpert.org/expert/17221 -https://www.oceanexpert.org/institution/18541 -https://www.oceanexpert.org/expert/42414 -https://www.oceanexpert.org/expert/46787 -https://www.oceanexpert.org/expert/34237 -https://www.oceanexpert.org/expert/48366 -https://www.oceanexpert.org/institution/19419 -https://www.oceanexpert.org/institution/17245 -https://www.oceanexpert.org/expert/40311 -https://www.oceanexpert.org/expert/18170 -https://www.oceanexpert.org/event/645 -https://www.oceanexpert.org/expert/23199 -https://www.oceanexpert.org/expert/46114 -https://www.oceanexpert.org/institution/21107 -https://www.oceanexpert.org/event/2892 -https://www.oceanexpert.org/expert/39940 -https://www.oceanexpert.org/institution/18750 -https://www.oceanexpert.org/expert/20345 -https://www.oceanexpert.org/expert/7566 -https://www.oceanexpert.org/expert/46706 -https://www.oceanexpert.org/expert/46533 -https://www.oceanexpert.org/expert/46351 -https://www.oceanexpert.org/event/1398 -https://www.oceanexpert.org/expert/5632 -https://www.oceanexpert.org/expert/48736 -https://www.oceanexpert.org/event/2782 -https://www.oceanexpert.org/institution/5285 -https://www.oceanexpert.org/expert/19477 -https://www.oceanexpert.org/expert/2232 -https://www.oceanexpert.org/expert/48966 -https://www.oceanexpert.org/expert/9194 -https://www.oceanexpert.org/expert/22665 -https://www.oceanexpert.org/event/2759 -https://www.oceanexpert.org/expert/39974 -https://www.oceanexpert.org/expert/44595 -https://www.oceanexpert.org/institution/11676 -https://www.oceanexpert.org/expert/21722 -https://www.oceanexpert.org/expert/47469 -https://www.oceanexpert.org/expert/15766 -https://www.oceanexpert.org/expert/17094 -https://www.oceanexpert.org/expert/27942 -https://www.oceanexpert.org/expert/30222 -https://www.oceanexpert.org/expert/25361 -https://www.oceanexpert.org/expert/48512 -https://www.oceanexpert.org/expert/2474 -https://www.oceanexpert.org/expert/34137 -https://www.oceanexpert.org/institution/19773 -https://www.oceanexpert.org/institution/19266 -https://www.oceanexpert.org/institution/19712 -https://www.oceanexpert.org/institution/22170 -https://www.oceanexpert.org/expert/24057 -https://www.oceanexpert.org/expert/33391 -https://www.oceanexpert.org/expert/40282 -https://www.oceanexpert.org/institution/10570 -https://www.oceanexpert.org/expert/36494 -https://www.oceanexpert.org/expert/23468 -https://www.oceanexpert.org/expert/23861 -https://www.oceanexpert.org/expert/38435 -https://www.oceanexpert.org/institution/20852 -https://www.oceanexpert.org/expert/32700 -https://www.oceanexpert.org/expert/35182 -https://www.oceanexpert.org/event/2539 -https://www.oceanexpert.org/expert/47959 -https://www.oceanexpert.org/institution/19121 -https://www.oceanexpert.org/expert/45463 -https://www.oceanexpert.org/expert/14037 -https://www.oceanexpert.org/expert/36737 -https://www.oceanexpert.org/expert/31933 -https://www.oceanexpert.org/expert/43255 -https://www.oceanexpert.org/institution/19645 -https://www.oceanexpert.org/expert/46972 -https://www.oceanexpert.org/expert/19306 -https://www.oceanexpert.org/institution/18224 -https://www.oceanexpert.org/institution/20092 -https://www.oceanexpert.org/expert/31618 -https://www.oceanexpert.org/institution/12228 -https://www.oceanexpert.org/expert/44635 -https://www.oceanexpert.org/expert/8697 -https://www.oceanexpert.org/expert/21708 -https://www.oceanexpert.org/institution/18704 -https://www.oceanexpert.org/expert/43206 -https://www.oceanexpert.org/expert/19759 -https://www.oceanexpert.org/event/172 -https://www.oceanexpert.org/expert/17335 -https://www.oceanexpert.org/expert/35304 -https://www.oceanexpert.org/expert/13093 -https://www.oceanexpert.org/expert/38158 -https://www.oceanexpert.org/expert/26027 -https://www.oceanexpert.org/institution/17969 -https://www.oceanexpert.org/expert/48269 -https://www.oceanexpert.org/expert/38011 -https://www.oceanexpert.org/expert/48015 -https://www.oceanexpert.org/institution/22035 -https://www.oceanexpert.org/expert/38315 -https://www.oceanexpert.org/expert/37898 -https://www.oceanexpert.org/expert/29927 -https://www.oceanexpert.org/expert/48356 -https://www.oceanexpert.org/expert/26130 -https://www.oceanexpert.org/expert/28075 -https://www.oceanexpert.org/expert/23540 -https://www.oceanexpert.org/institution/13290 -https://www.oceanexpert.org/expert/23562 -https://www.oceanexpert.org/expert/35048 -https://www.oceanexpert.org/expert/20455 -https://www.oceanexpert.org/expert/43064 -https://www.oceanexpert.org/event/1240 -https://www.oceanexpert.org/expert/48731 -https://www.oceanexpert.org/institution/19860 -https://www.oceanexpert.org/expert/33882 -https://www.oceanexpert.org/institution/20445 -https://www.oceanexpert.org/event/2959 -https://www.oceanexpert.org/institution/12134 -https://www.oceanexpert.org/expert/20860 -https://www.oceanexpert.org/event/1063 -https://www.oceanexpert.org/expert/23686 -https://www.oceanexpert.org/event/3188 -https://www.oceanexpert.org/expert/18563 -https://www.oceanexpert.org/institution/10405 -https://www.oceanexpert.org/institution/22034 -https://www.oceanexpert.org/institution/18807 -https://www.oceanexpert.org/event/1822 -https://www.oceanexpert.org/expert/1294 -https://www.oceanexpert.org/institution/4996 -https://www.oceanexpert.org/expert/34716 -https://www.oceanexpert.org/institution/21184 -https://www.oceanexpert.org/institution/18199 -https://www.oceanexpert.org/institution/21463 -https://www.oceanexpert.org/expert/24993 -https://www.oceanexpert.org/expert/44414 -https://www.oceanexpert.org/event/201 -https://www.oceanexpert.org/expert/4061 -https://www.oceanexpert.org/expert/21785 -https://www.oceanexpert.org/institution/13994 -https://www.oceanexpert.org/expert/17322 -https://www.oceanexpert.org/institution/19443 -https://www.oceanexpert.org/institution/10711 -https://www.oceanexpert.org/institution/10869 -https://www.oceanexpert.org/expert/5239 -https://www.oceanexpert.org/institution/7169 -https://www.oceanexpert.org/expert/15477 -https://www.oceanexpert.org/institution/19473 -https://www.oceanexpert.org/event/1736 -https://www.oceanexpert.org/expert/28372 -https://www.oceanexpert.org/expert/22634 -https://www.oceanexpert.org/expert/27233 -https://www.oceanexpert.org/institution/17771 -https://www.oceanexpert.org/institution/20686 -https://www.oceanexpert.org/expert/33851 -https://www.oceanexpert.org/institution/21518 -https://www.oceanexpert.org/event/2071 -https://www.oceanexpert.org/expert/16287 -https://www.oceanexpert.org/event/2457 -https://www.oceanexpert.org/expert/48510 -https://www.oceanexpert.org/institution/10621 -https://www.oceanexpert.org/expert/48594 -https://www.oceanexpert.org/expert/37302 -https://www.oceanexpert.org/expert/14393 -https://www.oceanexpert.org/institution/17038 -https://www.oceanexpert.org/institution/12130 -https://www.oceanexpert.org/institution/8631 -https://www.oceanexpert.org/institution/19033 -https://www.oceanexpert.org/institution/20120 -https://www.oceanexpert.org/institution/15993 -https://www.oceanexpert.org/expert/32226 -https://www.oceanexpert.org/institution/8841 -https://www.oceanexpert.org/institution/14197 -https://www.oceanexpert.org/expert/8888 -https://www.oceanexpert.org/expert/46281 -https://www.oceanexpert.org/expert/16946 -https://www.oceanexpert.org/institution/10832 -https://www.oceanexpert.org/expert/47152 -https://www.oceanexpert.org/event/3086 -https://www.oceanexpert.org/institution/17077 -https://www.oceanexpert.org/institution/20556 -https://www.oceanexpert.org/expert/31228 -https://www.oceanexpert.org/expert/41819 -https://www.oceanexpert.org/institution/20177 -https://www.oceanexpert.org/expert/19288 -https://www.oceanexpert.org/expert/46525 -https://www.oceanexpert.org/expert/30543 -https://www.oceanexpert.org/expert/40898 -https://www.oceanexpert.org/institution/19351 -https://www.oceanexpert.org/expert/48225 -https://www.oceanexpert.org/institution/5731 -https://www.oceanexpert.org/expert/44028 -https://www.oceanexpert.org/expert/25209 -https://www.oceanexpert.org/expert/48880 -https://www.oceanexpert.org/expert/28816 -https://www.oceanexpert.org/expert/25868 -https://www.oceanexpert.org/expert/7112 -https://www.oceanexpert.org/expert/20901 -https://www.oceanexpert.org/expert/32565 -https://www.oceanexpert.org/expert/47577 -https://www.oceanexpert.org/institution/16353 -https://www.oceanexpert.org/institution/19132 -https://www.oceanexpert.org/institution/13112 -https://www.oceanexpert.org/event/298 -https://www.oceanexpert.org/institution/18549 -https://www.oceanexpert.org/expert/16743 -https://www.oceanexpert.org/event/2781 -https://www.oceanexpert.org/expert/24172 -https://www.oceanexpert.org/institution/20847 -https://www.oceanexpert.org/expert/8733 -https://www.oceanexpert.org/expert/19987 -https://www.oceanexpert.org/institution/14367 -https://www.oceanexpert.org/expert/33021 -https://www.oceanexpert.org/institution/21832 -https://www.oceanexpert.org/expert/19372 -https://www.oceanexpert.org/expert/16750 -https://www.oceanexpert.org/expert/34847 -https://www.oceanexpert.org/expert/34338 -https://www.oceanexpert.org/event/2773 -https://www.oceanexpert.org/expert/7650 -https://www.oceanexpert.org/expert/26017 -https://www.oceanexpert.org/expert/20792 -https://www.oceanexpert.org/institution/11037 -https://www.oceanexpert.org/event/2303 -https://www.oceanexpert.org/expert/36964 -https://www.oceanexpert.org/expert/47382 -https://www.oceanexpert.org/expert/15926 -https://www.oceanexpert.org/expert/17283 -https://www.oceanexpert.org/expert/37358 -https://www.oceanexpert.org/expert/13273 -https://www.oceanexpert.org/institution/21979 -https://www.oceanexpert.org/expert/47158 -https://www.oceanexpert.org/expert/11554 -https://www.oceanexpert.org/expert/47163 -https://www.oceanexpert.org/expert/40662 -https://www.oceanexpert.org/expert/31378 -https://www.oceanexpert.org/institution/18166 -https://www.oceanexpert.org/expert/21690 -https://www.oceanexpert.org/event/706 -https://www.oceanexpert.org/institution/19600 -https://www.oceanexpert.org/expert/26152 -https://www.oceanexpert.org/institution/12021 -https://www.oceanexpert.org/institution/8668 -https://www.oceanexpert.org/institution/16361 -https://www.oceanexpert.org/expert/28820 -https://www.oceanexpert.org/expert/31989 -https://www.oceanexpert.org/expert/30663 -https://www.oceanexpert.org/expert/44401 -https://www.oceanexpert.org/expert/7003 -https://www.oceanexpert.org/expert/43999 -https://www.oceanexpert.org/expert/31093 -https://www.oceanexpert.org/expert/24959 -https://www.oceanexpert.org/institution/21220 -https://www.oceanexpert.org/expert/23911 -https://www.oceanexpert.org/expert/33410 -https://www.oceanexpert.org/expert/24403 -https://www.oceanexpert.org/expert/24775 -https://www.oceanexpert.org/institution/14055 -https://www.oceanexpert.org/expert/20093 -https://www.oceanexpert.org/expert/19221 -https://www.oceanexpert.org/institution/11650 -https://www.oceanexpert.org/expert/27333 -https://www.oceanexpert.org/event/1116 -https://www.oceanexpert.org/institution/15891 -https://www.oceanexpert.org/expert/42386 -https://www.oceanexpert.org/expert/18863 -https://www.oceanexpert.org/expert/36351 -https://www.oceanexpert.org/expert/37839 -https://www.oceanexpert.org/expert/17769 -https://www.oceanexpert.org/expert/45925 -https://www.oceanexpert.org/expert/31000 -https://www.oceanexpert.org/expert/22685 -https://www.oceanexpert.org/expert/34589 -https://www.oceanexpert.org/event/447 -https://www.oceanexpert.org/event/1354 -https://www.oceanexpert.org/expert/47175 -https://www.oceanexpert.org/institution/7381 -https://www.oceanexpert.org/expert/7175 -https://www.oceanexpert.org/institution/21695 -https://www.oceanexpert.org/expert/17726 -https://www.oceanexpert.org/expert/17658 -https://www.oceanexpert.org/expert/41274 -https://www.oceanexpert.org/institution/12926 -https://www.oceanexpert.org/expert/44817 -https://www.oceanexpert.org/institution/20976 -https://www.oceanexpert.org/institution/14798 -https://www.oceanexpert.org/institution/18280 -https://www.oceanexpert.org/expert/18862 -https://www.oceanexpert.org/expert/16157 -https://www.oceanexpert.org/expert/25019 -https://www.oceanexpert.org/institution/13323 -https://www.oceanexpert.org/expert/46819 -https://www.oceanexpert.org/event/824 -https://www.oceanexpert.org/expert/47740 -https://www.oceanexpert.org/institution/16803 -https://www.oceanexpert.org/expert/18898 -https://www.oceanexpert.org/expert/48767 -https://www.oceanexpert.org/expert/17549 -https://www.oceanexpert.org/expert/46405 -https://www.oceanexpert.org/expert/25322 -https://www.oceanexpert.org/expert/15301 -https://www.oceanexpert.org/expert/20953 -https://www.oceanexpert.org/event/1066 -https://www.oceanexpert.org/event/3196 -https://www.oceanexpert.org/expert/35443 -https://www.oceanexpert.org/expert/27444 -https://www.oceanexpert.org/expert/39260 -https://www.oceanexpert.org/event/1982 -https://www.oceanexpert.org/institution/11021 -https://www.oceanexpert.org/expert/36895 -https://www.oceanexpert.org/institution/18580 -https://www.oceanexpert.org/institution/6695 -https://www.oceanexpert.org/expert/23397 -https://www.oceanexpert.org/expert/17591 -https://www.oceanexpert.org/expert/24768 -https://www.oceanexpert.org/expert/45617 -https://www.oceanexpert.org/institution/20302 -https://www.oceanexpert.org/event/2074 -https://www.oceanexpert.org/expert/48322 -https://www.oceanexpert.org/institution/17150 -https://www.oceanexpert.org/expert/26939 -https://www.oceanexpert.org/expert/13616 -https://www.oceanexpert.org/event/784 -https://www.oceanexpert.org/expert/29234 -https://www.oceanexpert.org/expert/20205 -https://www.oceanexpert.org/expert/28080 -https://www.oceanexpert.org/expert/720 -https://www.oceanexpert.org/expert/2974 -https://www.oceanexpert.org/expert/39827 -https://www.oceanexpert.org/expert/36039 -https://www.oceanexpert.org/expert/32705 -https://www.oceanexpert.org/institution/18427 -https://www.oceanexpert.org/institution/21375 -https://www.oceanexpert.org/institution/19449 -https://www.oceanexpert.org/expert/25449 -https://www.oceanexpert.org/expert/668 -https://www.oceanexpert.org/expert/35814 -https://www.oceanexpert.org/expert/27101 -https://www.oceanexpert.org/expert/42874 -https://www.oceanexpert.org/expert/12578 -https://www.oceanexpert.org/institution/13181 -https://www.oceanexpert.org/institution/20566 -https://www.oceanexpert.org/expert/47967 -https://www.oceanexpert.org/expert/25317 -https://www.oceanexpert.org/expert/24408 -https://www.oceanexpert.org/expert/23604 -https://www.oceanexpert.org/event/3042 -https://www.oceanexpert.org/institution/8724 -https://www.oceanexpert.org/expert/41035 -https://www.oceanexpert.org/institution/19180 -https://www.oceanexpert.org/expert/46378 -https://www.oceanexpert.org/expert/6428 -https://www.oceanexpert.org/institution/18819 -https://www.oceanexpert.org/expert/22248 -https://www.oceanexpert.org/expert/46370 -https://www.oceanexpert.org/expert/43797 -https://www.oceanexpert.org/expert/21955 -https://www.oceanexpert.org/expert/36701 -https://www.oceanexpert.org/expert/43422 -https://www.oceanexpert.org/institution/18459 -https://www.oceanexpert.org/expert/35391 -https://www.oceanexpert.org/expert/44802 -https://www.oceanexpert.org/institution/15671 -https://www.oceanexpert.org/expert/35044 -https://www.oceanexpert.org/institution/21230 -https://www.oceanexpert.org/expert/37828 -https://www.oceanexpert.org/expert/24001 -https://www.oceanexpert.org/expert/32483 -https://www.oceanexpert.org/event/2191 -https://www.oceanexpert.org/expert/9567 -https://www.oceanexpert.org/event/2911 -https://www.oceanexpert.org/expert/4337 -https://www.oceanexpert.org/expert/34377 -https://www.oceanexpert.org/institution/18379 -https://www.oceanexpert.org/expert/30995 -https://www.oceanexpert.org/expert/33708 -https://www.oceanexpert.org/institution/15762 -https://www.oceanexpert.org/expert/22363 -https://www.oceanexpert.org/expert/22409 -https://www.oceanexpert.org/institution/21724 -https://www.oceanexpert.org/expert/24428 -https://www.oceanexpert.org/event/3249 -https://www.oceanexpert.org/expert/16780 -https://www.oceanexpert.org/event/524 -https://www.oceanexpert.org/expert/19760 -https://www.oceanexpert.org/institution/21758 -https://www.oceanexpert.org/expert/24868 -https://www.oceanexpert.org/expert/44197 -https://www.oceanexpert.org/expert/30212 -https://www.oceanexpert.org/institution/19212 -https://www.oceanexpert.org/institution/19751 -https://www.oceanexpert.org/expert/36653 -https://www.oceanexpert.org/expert/44664 -https://www.oceanexpert.org/expert/41409 -https://www.oceanexpert.org/expert/25839 -https://www.oceanexpert.org/expert/40898 -https://www.oceanexpert.org/expert/43623 -https://www.oceanexpert.org/expert/36739 -https://www.oceanexpert.org/expert/43646 -https://www.oceanexpert.org/expert/2254 -https://www.oceanexpert.org/expert/48177 -https://www.oceanexpert.org/expert/25420 -https://www.oceanexpert.org/institution/17481 -https://www.oceanexpert.org/institution/11996 -https://www.oceanexpert.org/expert/18688 -https://www.oceanexpert.org/institution/20548 -https://www.oceanexpert.org/expert/35256 -https://www.oceanexpert.org/expert/43738 -https://www.oceanexpert.org/event/506 -https://www.oceanexpert.org/expert/19231 -https://www.oceanexpert.org/expert/49032 -https://www.oceanexpert.org/expert/27769 -https://www.oceanexpert.org/expert/40642 -https://www.oceanexpert.org/expert/48115 -https://www.oceanexpert.org/expert/18659 -https://www.oceanexpert.org/expert/48694 -https://www.oceanexpert.org/expert/23899 -https://www.oceanexpert.org/expert/34637 -https://www.oceanexpert.org/institution/19397 -https://www.oceanexpert.org/event/1451 -https://www.oceanexpert.org/expert/851 -https://www.oceanexpert.org/expert/12785 -https://www.oceanexpert.org/expert/37788 -https://www.oceanexpert.org/expert/26139 -https://www.oceanexpert.org/expert/17272 -https://www.oceanexpert.org/institution/10861 -https://www.oceanexpert.org/institution/14296 -https://www.oceanexpert.org/expert/20589 -https://www.oceanexpert.org/expert/28486 -https://www.oceanexpert.org/expert/33794 -https://www.oceanexpert.org/expert/46121 -https://www.oceanexpert.org/institution/18937 -https://www.oceanexpert.org/institution/21535 -https://www.oceanexpert.org/expert/20944 -https://www.oceanexpert.org/expert/48994 -https://www.oceanexpert.org/expert/7010 -https://www.oceanexpert.org/expert/12577 -https://www.oceanexpert.org/expert/31445 -https://www.oceanexpert.org/expert/46881 -https://www.oceanexpert.org/expert/16852 -https://www.oceanexpert.org/expert/35563 -https://www.oceanexpert.org/institution/19477 -https://www.oceanexpert.org/institution/18743 -https://www.oceanexpert.org/institution/19778 -https://www.oceanexpert.org/institution/8151 -https://www.oceanexpert.org/expert/18619 -https://www.oceanexpert.org/expert/45686 -https://www.oceanexpert.org/expert/47440 -https://www.oceanexpert.org/event/1689 -https://www.oceanexpert.org/event/3286 -https://www.oceanexpert.org/expert/19399 -https://www.oceanexpert.org/institution/21257 -https://www.oceanexpert.org/expert/46765 -https://www.oceanexpert.org/expert/31010 -https://www.oceanexpert.org/event/2866 -https://www.oceanexpert.org/institution/19801 -https://www.oceanexpert.org/institution/21313 -https://www.oceanexpert.org/expert/35234 -https://www.oceanexpert.org/institution/16376 -https://www.oceanexpert.org/expert/26023 -https://www.oceanexpert.org/institution/14060 -https://www.oceanexpert.org/expert/27304 -https://www.oceanexpert.org/expert/39453 -https://www.oceanexpert.org/expert/25976 -https://www.oceanexpert.org/expert/24458 -https://www.oceanexpert.org/expert/42048 -https://www.oceanexpert.org/expert/22429 -https://www.oceanexpert.org/expert/30666 -https://www.oceanexpert.org/expert/43936 -https://www.oceanexpert.org/expert/20640 -https://www.oceanexpert.org/expert/26701 -https://www.oceanexpert.org/institution/16043 -https://www.oceanexpert.org/expert/23310 -https://www.oceanexpert.org/expert/42750 -https://www.oceanexpert.org/expert/36898 -https://www.oceanexpert.org/expert/20994 -https://www.oceanexpert.org/expert/25552 -https://www.oceanexpert.org/institution/12603 -https://www.oceanexpert.org/institution/15184 -https://www.oceanexpert.org/institution/17598 -https://www.oceanexpert.org/expert/22098 -https://www.oceanexpert.org/institution/14944 -https://www.oceanexpert.org/expert/35520 -https://www.oceanexpert.org/expert/7184 -https://www.oceanexpert.org/expert/19923 -https://www.oceanexpert.org/institution/21579 -https://www.oceanexpert.org/expert/25758 -https://www.oceanexpert.org/expert/31201 -https://www.oceanexpert.org/institution/19932 -https://www.oceanexpert.org/expert/23450 -https://www.oceanexpert.org/expert/25928 -https://www.oceanexpert.org/institution/13822 -https://www.oceanexpert.org/expert/37098 -https://www.oceanexpert.org/expert/32925 -https://www.oceanexpert.org/expert/36570 -https://www.oceanexpert.org/expert/48677 -https://www.oceanexpert.org/institution/19619 -https://www.oceanexpert.org/expert/34835 -https://www.oceanexpert.org/expert/27169 -https://www.oceanexpert.org/expert/32232 -https://www.oceanexpert.org/institution/12816 -https://www.oceanexpert.org/expert/38282 -https://www.oceanexpert.org/expert/24521 -https://www.oceanexpert.org/expert/36976 -https://www.oceanexpert.org/expert/30285 -https://www.oceanexpert.org/expert/44714 -https://www.oceanexpert.org/expert/5544 -https://www.oceanexpert.org/expert/22352 -https://www.oceanexpert.org/institution/15766 -https://www.oceanexpert.org/expert/17395 -https://www.oceanexpert.org/expert/37923 -https://www.oceanexpert.org/expert/23302 -https://www.oceanexpert.org/institution/21421 -https://www.oceanexpert.org/expert/44177 -https://www.oceanexpert.org/institution/18332 -https://www.oceanexpert.org/expert/27371 -https://www.oceanexpert.org/expert/46986 -https://www.oceanexpert.org/expert/22544 -https://www.oceanexpert.org/expert/25647 -https://www.oceanexpert.org/expert/4902 -https://www.oceanexpert.org/expert/14575 -https://www.oceanexpert.org/event/288 -https://www.oceanexpert.org/expert/32369 -https://www.oceanexpert.org/expert/4595 -https://www.oceanexpert.org/institution/12873 -https://www.oceanexpert.org/institution/12283 -https://www.oceanexpert.org/institution/18588 -https://www.oceanexpert.org/institution/13777 -https://www.oceanexpert.org/expert/18948 -https://www.oceanexpert.org/institution/11034 -https://www.oceanexpert.org/expert/43951 -https://www.oceanexpert.org/institution/14066 -https://www.oceanexpert.org/expert/7028 -https://www.oceanexpert.org/expert/34500 -https://www.oceanexpert.org/expert/48607 -https://www.oceanexpert.org/expert/26141 -https://www.oceanexpert.org/expert/27135 -https://www.oceanexpert.org/expert/21295 -https://www.oceanexpert.org/expert/45404 -https://www.oceanexpert.org/expert/12162 -https://www.oceanexpert.org/expert/48947 -https://www.oceanexpert.org/expert/31018 -https://www.oceanexpert.org/expert/1166 -https://www.oceanexpert.org/expert/32534 -https://www.oceanexpert.org/institution/20097 -https://www.oceanexpert.org/institution/15099 -https://www.oceanexpert.org/expert/46976 -https://www.oceanexpert.org/expert/25136 -https://www.oceanexpert.org/expert/24867 -https://www.oceanexpert.org/expert/23641 -https://www.oceanexpert.org/expert/2619 -https://www.oceanexpert.org/event/1797 -https://www.oceanexpert.org/expert/27330 -https://www.oceanexpert.org/expert/18897 -https://www.oceanexpert.org/institution/12228 -https://www.oceanexpert.org/expert/48301 -https://www.oceanexpert.org/institution/20926 -https://www.oceanexpert.org/expert/35642 -https://www.oceanexpert.org/institution/11274 -https://www.oceanexpert.org/expert/6880 -https://www.oceanexpert.org/event/321 -https://www.oceanexpert.org/event/2573 -https://www.oceanexpert.org/expert/25745 -https://www.oceanexpert.org/event/1358 -https://www.oceanexpert.org/institution/21691 -https://www.oceanexpert.org/expert/26281 -https://www.oceanexpert.org/expert/35463 -https://www.oceanexpert.org/expert/21595 -https://www.oceanexpert.org/institution/20195 -https://www.oceanexpert.org/expert/18835 -https://www.oceanexpert.org/expert/32153 -https://www.oceanexpert.org/expert/22060 -https://www.oceanexpert.org/expert/48328 -https://www.oceanexpert.org/expert/42654 -https://www.oceanexpert.org/expert/36565 -https://www.oceanexpert.org/institution/22178 -https://www.oceanexpert.org/expert/24824 -https://www.oceanexpert.org/expert/47122 -https://www.oceanexpert.org/expert/24249 -https://www.oceanexpert.org/expert/35588 -https://www.oceanexpert.org/expert/37911 -https://www.oceanexpert.org/expert/37694 -https://www.oceanexpert.org/institution/21803 -https://www.oceanexpert.org/institution/19336 -https://www.oceanexpert.org/expert/43604 -https://www.oceanexpert.org/expert/24092 -https://www.oceanexpert.org/expert/44636 -https://www.oceanexpert.org/expert/32473 -https://www.oceanexpert.org/expert/11025 -https://www.oceanexpert.org/institution/18666 -https://www.oceanexpert.org/expert/46977 -https://www.oceanexpert.org/institution/12199 -https://www.oceanexpert.org/expert/34382 -https://www.oceanexpert.org/expert/45805 -https://www.oceanexpert.org/expert/25754 -https://www.oceanexpert.org/expert/44669 -https://www.oceanexpert.org/institution/13398 -https://www.oceanexpert.org/institution/12004 -https://www.oceanexpert.org/institution/19356 -https://www.oceanexpert.org/institution/12678 -https://www.oceanexpert.org/expert/27562 -https://www.oceanexpert.org/expert/46975 -https://www.oceanexpert.org/event/244 -https://www.oceanexpert.org/expert/17279 -https://www.oceanexpert.org/expert/6537 -https://www.oceanexpert.org/expert/43085 -https://www.oceanexpert.org/institution/18879 -https://www.oceanexpert.org/institution/18190 -https://www.oceanexpert.org/institution/12133 -https://www.oceanexpert.org/expert/25863 -https://www.oceanexpert.org/institution/7811 -https://www.oceanexpert.org/event/1884 -https://www.oceanexpert.org/institution/13608 -https://www.oceanexpert.org/expert/44377 -https://www.oceanexpert.org/expert/44521 -https://www.oceanexpert.org/institution/6963 -https://www.oceanexpert.org/institution/13532 -https://www.oceanexpert.org/expert/37779 -https://www.oceanexpert.org/expert/23491 -https://www.oceanexpert.org/institution/16022 -https://www.oceanexpert.org/expert/35491 -https://www.oceanexpert.org/expert/33890 -https://www.oceanexpert.org/expert/33437 -https://www.oceanexpert.org/expert/38096 -https://www.oceanexpert.org/institution/21376 -https://www.oceanexpert.org/institution/8175 -https://www.oceanexpert.org/expert/37742 -https://www.oceanexpert.org/event/1929 -https://www.oceanexpert.org/institution/20881 -https://www.oceanexpert.org/expert/19396 -https://www.oceanexpert.org/expert/48763 -https://www.oceanexpert.org/expert/23764 -https://www.oceanexpert.org/expert/30374 -https://www.oceanexpert.org/expert/96 -https://www.oceanexpert.org/expert/46490 -https://www.oceanexpert.org/expert/32326 -https://www.oceanexpert.org/institution/10613 -https://www.oceanexpert.org/event/1552 -https://www.oceanexpert.org/expert/23090 -https://www.oceanexpert.org/expert/22444 -https://www.oceanexpert.org/expert/35661 -https://www.oceanexpert.org/expert/47070 -https://www.oceanexpert.org/expert/28314 -https://www.oceanexpert.org/event/249 -https://www.oceanexpert.org/expert/9501 -https://www.oceanexpert.org/expert/21689 -https://www.oceanexpert.org/institution/18848 -https://www.oceanexpert.org/expert/48408 -https://www.oceanexpert.org/expert/18264 -https://www.oceanexpert.org/expert/19880 -https://www.oceanexpert.org/institution/19563 -https://www.oceanexpert.org/expert/47023 -https://www.oceanexpert.org/expert/22314 -https://www.oceanexpert.org/expert/23069 -https://www.oceanexpert.org/expert/48170 -https://www.oceanexpert.org/expert/15592 -https://www.oceanexpert.org/institution/19857 -https://www.oceanexpert.org/event/1298 -https://www.oceanexpert.org/institution/15128 -https://www.oceanexpert.org/expert/26992 -https://www.oceanexpert.org/expert/25538 -https://www.oceanexpert.org/expert/44748 -https://www.oceanexpert.org/expert/30529 -https://www.oceanexpert.org/expert/19065 -https://www.oceanexpert.org/institution/20812 -https://www.oceanexpert.org/event/2817 -https://www.oceanexpert.org/expert/16562 -https://www.oceanexpert.org/institution/20029 -https://www.oceanexpert.org/expert/1872 -https://www.oceanexpert.org/institution/18844 -https://www.oceanexpert.org/expert/44119 -https://www.oceanexpert.org/expert/21250 -https://www.oceanexpert.org/expert/44525 -https://www.oceanexpert.org/expert/44064 -https://www.oceanexpert.org/expert/26775 -https://www.oceanexpert.org/event/1171 -https://www.oceanexpert.org/institution/12114 -https://www.oceanexpert.org/expert/23982 -https://www.oceanexpert.org/expert/29201 -https://www.oceanexpert.org/expert/27495 -https://www.oceanexpert.org/event/1329 -https://www.oceanexpert.org/expert/19999 -https://www.oceanexpert.org/expert/24421 -https://www.oceanexpert.org/expert/30909 -https://www.oceanexpert.org/expert/22779 -https://www.oceanexpert.org/expert/22801 -https://www.oceanexpert.org/institution/18383 -https://www.oceanexpert.org/expert/35083 -https://www.oceanexpert.org/institution/15050 -https://www.oceanexpert.org/event/2686 -https://www.oceanexpert.org/expert/44056 -https://www.oceanexpert.org/institution/16841 -https://www.oceanexpert.org/expert/37528 -https://www.oceanexpert.org/event/2701 -https://www.oceanexpert.org/expert/24646 -https://www.oceanexpert.org/expert/17488 -https://www.oceanexpert.org/expert/14122 -https://www.oceanexpert.org/event/1930 -https://www.oceanexpert.org/expert/47231 -https://www.oceanexpert.org/institution/6172 -https://www.oceanexpert.org/expert/32439 -https://www.oceanexpert.org/expert/46707 -https://www.oceanexpert.org/expert/36768 -https://www.oceanexpert.org/institution/12606 -https://www.oceanexpert.org/institution/17673 -https://www.oceanexpert.org/event/2497 -https://www.oceanexpert.org/expert/36650 -https://www.oceanexpert.org/event/1069 -https://www.oceanexpert.org/expert/13198 -https://www.oceanexpert.org/expert/35449 -https://www.oceanexpert.org/institution/21255 -https://www.oceanexpert.org/expert/43529 -https://www.oceanexpert.org/expert/19624 -https://www.oceanexpert.org/expert/20358 -https://www.oceanexpert.org/expert/33506 -https://www.oceanexpert.org/expert/22915 -https://www.oceanexpert.org/institution/18146 -https://www.oceanexpert.org/expert/46658 -https://www.oceanexpert.org/event/733 -https://www.oceanexpert.org/institution/19292 -https://www.oceanexpert.org/event/54 -https://www.oceanexpert.org/expert/20449 -https://www.oceanexpert.org/expert/48671 -https://www.oceanexpert.org/institution/12437 -https://www.oceanexpert.org/expert/32583 -https://www.oceanexpert.org/expert/1947 -https://www.oceanexpert.org/expert/46643 -https://www.oceanexpert.org/expert/27487 -https://www.oceanexpert.org/expert/25306 -https://www.oceanexpert.org/event/1635 -https://www.oceanexpert.org/event/1684 -https://www.oceanexpert.org/expert/33816 -https://www.oceanexpert.org/expert/24875 -https://www.oceanexpert.org/expert/6178 -https://www.oceanexpert.org/expert/26774 -https://www.oceanexpert.org/expert/40928 -https://www.oceanexpert.org/institution/19810 -https://www.oceanexpert.org/expert/5722 -https://www.oceanexpert.org/expert/48794 -https://www.oceanexpert.org/institution/20642 -https://www.oceanexpert.org/expert/38176 -https://www.oceanexpert.org/expert/47777 -https://www.oceanexpert.org/expert/37279 -https://www.oceanexpert.org/expert/37837 -https://www.oceanexpert.org/expert/15418 -https://www.oceanexpert.org/expert/38160 -https://www.oceanexpert.org/expert/26051 -https://www.oceanexpert.org/event/1399 -https://www.oceanexpert.org/institution/22003 -https://www.oceanexpert.org/expert/25935 -https://www.oceanexpert.org/expert/45159 -https://www.oceanexpert.org/expert/42486 -https://www.oceanexpert.org/institution/17929 -https://www.oceanexpert.org/expert/43680 -https://www.oceanexpert.org/institution/14795 -https://www.oceanexpert.org/institution/15556 -https://www.oceanexpert.org/expert/29057 -https://www.oceanexpert.org/expert/46660 -https://www.oceanexpert.org/institution/12819 -https://www.oceanexpert.org/expert/37861 -https://www.oceanexpert.org/expert/44237 -https://www.oceanexpert.org/institution/8908 -https://www.oceanexpert.org/expert/2827 -https://www.oceanexpert.org/expert/22391 -https://www.oceanexpert.org/expert/21706 -https://www.oceanexpert.org/expert/19312 -https://www.oceanexpert.org/event/820 -https://www.oceanexpert.org/expert/26920 -https://www.oceanexpert.org/expert/10613 -https://www.oceanexpert.org/institution/13737 -https://www.oceanexpert.org/expert/47793 -https://www.oceanexpert.org/expert/21488 -https://www.oceanexpert.org/expert/20274 -https://www.oceanexpert.org/institution/19543 -https://www.oceanexpert.org/expert/32444 -https://www.oceanexpert.org/expert/25547 -https://www.oceanexpert.org/expert/27499 -https://www.oceanexpert.org/expert/26706 -https://www.oceanexpert.org/expert/39491 -https://www.oceanexpert.org/expert/20597 -https://www.oceanexpert.org/expert/28074 -https://www.oceanexpert.org/event/1338 -https://www.oceanexpert.org/expert/19923 -https://www.oceanexpert.org/expert/19902 -https://www.oceanexpert.org/expert/38222 -https://www.oceanexpert.org/event/1512 -https://www.oceanexpert.org/expert/46436 -https://www.oceanexpert.org/event/1493 -https://www.oceanexpert.org/expert/37977 -https://www.oceanexpert.org/expert/18724 -https://www.oceanexpert.org/expert/22572 -https://www.oceanexpert.org/event/2284 -https://www.oceanexpert.org/expert/27564 -https://www.oceanexpert.org/institution/19720 -https://www.oceanexpert.org/institution/17040 -https://www.oceanexpert.org/expert/43361 -https://www.oceanexpert.org/event/3284 -https://www.oceanexpert.org/expert/13914 -https://www.oceanexpert.org/institution/9974 -https://www.oceanexpert.org/expert/11473 -https://www.oceanexpert.org/expert/22650 -https://www.oceanexpert.org/expert/43204 -https://www.oceanexpert.org/expert/26104 -https://www.oceanexpert.org/expert/25707 -https://www.oceanexpert.org/expert/406 -https://www.oceanexpert.org/institution/19160 -https://www.oceanexpert.org/expert/43345 -https://www.oceanexpert.org/expert/15984 -https://www.oceanexpert.org/expert/36707 -https://www.oceanexpert.org/expert/22280 -https://www.oceanexpert.org/expert/26264 -https://www.oceanexpert.org/expert/32781 -https://www.oceanexpert.org/expert/43994 -https://www.oceanexpert.org/expert/14879 -https://www.oceanexpert.org/institution/11625 -https://www.oceanexpert.org/institution/9383 -https://www.oceanexpert.org/expert/23281 -https://www.oceanexpert.org/institution/7703 -https://www.oceanexpert.org/expert/46335 -https://www.oceanexpert.org/institution/20677 -https://www.oceanexpert.org/event/2854 -https://www.oceanexpert.org/expert/19840 -https://www.oceanexpert.org/institution/5805 -https://www.oceanexpert.org/event/2723 -https://www.oceanexpert.org/institution/15569 -https://www.oceanexpert.org/institution/10272 -https://www.oceanexpert.org/institution/20787 -https://www.oceanexpert.org/expert/47030 -https://www.oceanexpert.org/expert/17094 -https://www.oceanexpert.org/expert/13741 -https://www.oceanexpert.org/expert/2974 -https://www.oceanexpert.org/expert/16775 -https://www.oceanexpert.org/expert/1199 -https://www.oceanexpert.org/expert/43150 -https://www.oceanexpert.org/expert/46826 -https://www.oceanexpert.org/expert/25316 -https://www.oceanexpert.org/expert/19729 -https://www.oceanexpert.org/expert/12099 -https://www.oceanexpert.org/expert/26366 -https://www.oceanexpert.org/expert/24424 -https://www.oceanexpert.org/institution/22182 -https://www.oceanexpert.org/expert/20370 -https://www.oceanexpert.org/expert/48018 -https://www.oceanexpert.org/expert/18734 -https://www.oceanexpert.org/expert/35134 -https://www.oceanexpert.org/expert/27231 -https://www.oceanexpert.org/expert/37680 -https://www.oceanexpert.org/expert/18211 -https://www.oceanexpert.org/expert/19119 -https://www.oceanexpert.org/expert/17112 -https://www.oceanexpert.org/expert/18214 -https://www.oceanexpert.org/expert/8812 -https://www.oceanexpert.org/institution/19834 -https://www.oceanexpert.org/institution/10726 -https://www.oceanexpert.org/expert/10941 -https://www.oceanexpert.org/expert/19615 -https://www.oceanexpert.org/expert/20500 -https://www.oceanexpert.org/expert/25611 -https://www.oceanexpert.org/expert/11693 -https://www.oceanexpert.org/event/539 -https://www.oceanexpert.org/expert/23535 -https://www.oceanexpert.org/expert/14319 -https://www.oceanexpert.org/expert/17262 -https://www.oceanexpert.org/expert/17418 -https://www.oceanexpert.org/institution/21874 -https://www.oceanexpert.org/institution/21770 -https://www.oceanexpert.org/expert/44349 -https://www.oceanexpert.org/institution/16460 -https://www.oceanexpert.org/institution/21769 -https://www.oceanexpert.org/expert/15535 -https://www.oceanexpert.org/expert/8008 -https://www.oceanexpert.org/institution/14891 -https://www.oceanexpert.org/expert/7296 -https://www.oceanexpert.org/expert/32351 -https://www.oceanexpert.org/expert/22033 -https://www.oceanexpert.org/expert/26377 -https://www.oceanexpert.org/expert/25895 -https://www.oceanexpert.org/event/2181 -https://www.oceanexpert.org/expert/36302 -https://www.oceanexpert.org/event/3040 -https://www.oceanexpert.org/event/1661 -https://www.oceanexpert.org/expert/46980 -https://www.oceanexpert.org/institution/12602 -https://www.oceanexpert.org/institution/14080 -https://www.oceanexpert.org/expert/23890 -https://www.oceanexpert.org/expert/35563 -https://www.oceanexpert.org/event/2299 -https://www.oceanexpert.org/expert/15557 -https://www.oceanexpert.org/expert/32757 -https://www.oceanexpert.org/institution/16737 -https://www.oceanexpert.org/expert/27218 -https://www.oceanexpert.org/expert/36169 -https://www.oceanexpert.org/expert/23300 -https://www.oceanexpert.org/expert/18297 -https://www.oceanexpert.org/institution/12436 -https://www.oceanexpert.org/expert/26599 -https://www.oceanexpert.org/institution/16638 -https://www.oceanexpert.org/expert/18042 -https://www.oceanexpert.org/event/3098 -https://www.oceanexpert.org/expert/37932 -https://www.oceanexpert.org/expert/13258 -https://www.oceanexpert.org/expert/48617 -https://www.oceanexpert.org/institution/13773 -https://www.oceanexpert.org/expert/39545 -https://www.oceanexpert.org/expert/33149 -https://www.oceanexpert.org/event/212 -https://www.oceanexpert.org/institution/14712 -https://www.oceanexpert.org/expert/1234 -https://www.oceanexpert.org/expert/32600 -https://www.oceanexpert.org/institution/12605 -https://www.oceanexpert.org/expert/30338 -https://www.oceanexpert.org/institution/5480 -https://www.oceanexpert.org/expert/36516 -https://www.oceanexpert.org/institution/15602 -https://www.oceanexpert.org/expert/42738 -https://www.oceanexpert.org/expert/6660 -https://www.oceanexpert.org/expert/22800 -https://www.oceanexpert.org/expert/24313 -https://www.oceanexpert.org/expert/19618 -https://www.oceanexpert.org/expert/36715 -https://www.oceanexpert.org/event/1897 -https://www.oceanexpert.org/expert/33953 -https://www.oceanexpert.org/expert/9545 -https://www.oceanexpert.org/expert/24477 -https://www.oceanexpert.org/expert/47717 -https://www.oceanexpert.org/expert/35630 -https://www.oceanexpert.org/expert/2775 -https://www.oceanexpert.org/expert/48220 -https://www.oceanexpert.org/expert/44767 -https://www.oceanexpert.org/expert/15603 -https://www.oceanexpert.org/expert/33818 -https://www.oceanexpert.org/event/1252 -https://www.oceanexpert.org/institution/21016 -https://www.oceanexpert.org/expert/23016 -https://www.oceanexpert.org/expert/23191 -https://www.oceanexpert.org/expert/545 -https://www.oceanexpert.org/expert/7425 -https://www.oceanexpert.org/expert/13568 -https://www.oceanexpert.org/event/1820 -https://www.oceanexpert.org/institution/13524 -https://www.oceanexpert.org/expert/34528 -https://www.oceanexpert.org/expert/18190 -https://www.oceanexpert.org/expert/22243 -https://www.oceanexpert.org/institution/12258 -https://www.oceanexpert.org/expert/44319 -https://www.oceanexpert.org/institution/17763 -https://www.oceanexpert.org/expert/33476 -https://www.oceanexpert.org/expert/21128 -https://www.oceanexpert.org/expert/27591 -https://www.oceanexpert.org/expert/25021 -https://www.oceanexpert.org/event/1816 -https://www.oceanexpert.org/institution/20803 -https://www.oceanexpert.org/expert/46655 -https://www.oceanexpert.org/expert/18863 -https://www.oceanexpert.org/expert/29278 -https://www.oceanexpert.org/expert/46205 -https://www.oceanexpert.org/institution/22100 -https://www.oceanexpert.org/institution/16829 -https://www.oceanexpert.org/expert/33999 -https://www.oceanexpert.org/expert/48680 -https://www.oceanexpert.org/expert/46446 -https://www.oceanexpert.org/expert/35417 -https://www.oceanexpert.org/expert/21988 -https://www.oceanexpert.org/expert/27101 -https://www.oceanexpert.org/expert/23851 -https://www.oceanexpert.org/institution/11081 -https://www.oceanexpert.org/expert/13198 -https://www.oceanexpert.org/expert/28042 -https://www.oceanexpert.org/expert/11529 -https://www.oceanexpert.org/expert/19813 -https://www.oceanexpert.org/event/2113 -https://www.oceanexpert.org/expert/3666 -https://www.oceanexpert.org/expert/36206 -https://www.oceanexpert.org/expert/34533 -https://www.oceanexpert.org/institution/12796 -https://www.oceanexpert.org/expert/16922 -https://www.oceanexpert.org/institution/21378 -https://www.oceanexpert.org/event/1524 -https://www.oceanexpert.org/institution/22116 -https://www.oceanexpert.org/institution/19700 -https://www.oceanexpert.org/expert/44411 -https://www.oceanexpert.org/institution/19219 -https://www.oceanexpert.org/expert/34901 -https://www.oceanexpert.org/institution/21484 -https://www.oceanexpert.org/expert/24999 -https://www.oceanexpert.org/expert/32160 -https://www.oceanexpert.org/expert/34930 -https://www.oceanexpert.org/event/2909 -https://www.oceanexpert.org/expert/28848 -https://www.oceanexpert.org/expert/184 -https://www.oceanexpert.org/expert/24913 -https://www.oceanexpert.org/expert/33392 -https://www.oceanexpert.org/expert/21634 -https://www.oceanexpert.org/expert/26114 -https://www.oceanexpert.org/expert/5521 -https://www.oceanexpert.org/expert/3448 -https://www.oceanexpert.org/expert/35485 -https://www.oceanexpert.org/expert/48886 -https://www.oceanexpert.org/institution/15603 -https://www.oceanexpert.org/expert/31399 -https://www.oceanexpert.org/expert/31331 -https://www.oceanexpert.org/expert/4594 -https://www.oceanexpert.org/expert/42962 -https://www.oceanexpert.org/expert/35319 -https://www.oceanexpert.org/expert/19087 -https://www.oceanexpert.org/expert/31187 -https://www.oceanexpert.org/expert/33110 -https://www.oceanexpert.org/expert/47664 -https://www.oceanexpert.org/expert/26681 -https://www.oceanexpert.org/event/1305 -https://www.oceanexpert.org/expert/24485 -https://www.oceanexpert.org/expert/18222 -https://www.oceanexpert.org/event/425 -https://www.oceanexpert.org/expert/20123 -https://www.oceanexpert.org/expert/34900 -https://www.oceanexpert.org/expert/27514 -https://www.oceanexpert.org/expert/5162 -https://www.oceanexpert.org/expert/22885 -https://www.oceanexpert.org/institution/12363 -https://www.oceanexpert.org/expert/1057 -https://www.oceanexpert.org/expert/28371 -https://www.oceanexpert.org/expert/17177 -https://www.oceanexpert.org/expert/29701 -https://www.oceanexpert.org/expert/38290 -https://www.oceanexpert.org/expert/23114 -https://www.oceanexpert.org/institution/17120 -https://www.oceanexpert.org/institution/21103 -https://www.oceanexpert.org/expert/11937 -https://www.oceanexpert.org/institution/8774 -https://www.oceanexpert.org/expert/24712 -https://www.oceanexpert.org/expert/22126 -https://www.oceanexpert.org/expert/43658 -https://www.oceanexpert.org/event/2806 -https://www.oceanexpert.org/expert/26412 -https://www.oceanexpert.org/institution/16193 -https://www.oceanexpert.org/institution/17473 -https://www.oceanexpert.org/institution/14350 -https://www.oceanexpert.org/expert/22830 -https://www.oceanexpert.org/institution/13978 -https://www.oceanexpert.org/event/2037 -https://www.oceanexpert.org/institution/19608 -https://www.oceanexpert.org/institution/21846 -https://www.oceanexpert.org/event/1399 -https://www.oceanexpert.org/expert/43892 -https://www.oceanexpert.org/expert/29210 -https://www.oceanexpert.org/expert/36690 -https://www.oceanexpert.org/institution/7000 -https://www.oceanexpert.org/expert/26509 -https://www.oceanexpert.org/expert/18985 -https://www.oceanexpert.org/event/2015 -https://www.oceanexpert.org/event/2458 -https://www.oceanexpert.org/expert/27119 -https://www.oceanexpert.org/expert/46919 -https://www.oceanexpert.org/expert/34067 -https://www.oceanexpert.org/institution/9329 -https://www.oceanexpert.org/institution/18205 -https://www.oceanexpert.org/expert/24011 -https://www.oceanexpert.org/expert/425 -https://www.oceanexpert.org/expert/45193 -https://www.oceanexpert.org/institution/21826 -https://www.oceanexpert.org/expert/21761 -https://www.oceanexpert.org/expert/20725 -https://www.oceanexpert.org/expert/48141 -https://www.oceanexpert.org/expert/43673 -https://www.oceanexpert.org/expert/37842 -https://www.oceanexpert.org/event/2808 -https://www.oceanexpert.org/expert/12076 -https://www.oceanexpert.org/expert/27853 -https://www.oceanexpert.org/expert/46034 -https://www.oceanexpert.org/expert/47331 -https://www.oceanexpert.org/expert/21013 -https://www.oceanexpert.org/expert/32542 -https://www.oceanexpert.org/expert/47199 -https://www.oceanexpert.org/expert/45568 -https://www.oceanexpert.org/institution/19801 -https://www.oceanexpert.org/expert/26170 -https://www.oceanexpert.org/institution/20405 -https://www.oceanexpert.org/expert/28868 -https://www.oceanexpert.org/institution/9014 -https://www.oceanexpert.org/expert/33633 -https://www.oceanexpert.org/institution/19292 -https://www.oceanexpert.org/expert/24267 -https://www.oceanexpert.org/institution/19438 -https://www.oceanexpert.org/institution/15760 -https://www.oceanexpert.org/expert/36730 -https://www.oceanexpert.org/expert/42828 -https://www.oceanexpert.org/expert/37350 -https://www.oceanexpert.org/expert/40642 -https://www.oceanexpert.org/expert/29406 -https://www.oceanexpert.org/expert/47190 -https://www.oceanexpert.org/expert/27085 -https://www.oceanexpert.org/expert/43091 -https://www.oceanexpert.org/institution/12359 -https://www.oceanexpert.org/expert/17373 -https://www.oceanexpert.org/expert/38071 -https://www.oceanexpert.org/event/942 -https://www.oceanexpert.org/expert/19305 -https://www.oceanexpert.org/expert/16393 -https://www.oceanexpert.org/expert/34365 -https://www.oceanexpert.org/institution/19368 -https://www.oceanexpert.org/expert/45597 -https://www.oceanexpert.org/expert/44259 -https://www.oceanexpert.org/expert/27425 -https://www.oceanexpert.org/event/562 -https://www.oceanexpert.org/expert/2912 -https://www.oceanexpert.org/expert/31519 -https://www.oceanexpert.org/expert/39652 -https://www.oceanexpert.org/expert/22815 -https://www.oceanexpert.org/expert/23288 -https://www.oceanexpert.org/expert/25461 -https://www.oceanexpert.org/expert/45368 -https://www.oceanexpert.org/expert/23960 -https://www.oceanexpert.org/expert/46009 -https://www.oceanexpert.org/expert/33916 -https://www.oceanexpert.org/expert/24885 -https://www.oceanexpert.org/expert/33943 -https://www.oceanexpert.org/expert/48321 -https://www.oceanexpert.org/expert/44870 -https://www.oceanexpert.org/expert/47978 -https://www.oceanexpert.org/expert/43171 -https://www.oceanexpert.org/expert/46059 -https://www.oceanexpert.org/expert/48739 -https://www.oceanexpert.org/expert/6992 -https://www.oceanexpert.org/event/2944 -https://www.oceanexpert.org/expert/44981 -https://www.oceanexpert.org/expert/37912 -https://www.oceanexpert.org/expert/44953 -https://www.oceanexpert.org/expert/44111 -https://www.oceanexpert.org/event/1600 -https://www.oceanexpert.org/expert/15999 -https://www.oceanexpert.org/expert/30274 -https://www.oceanexpert.org/expert/48160 -https://www.oceanexpert.org/expert/34946 -https://www.oceanexpert.org/event/2777 -https://www.oceanexpert.org/expert/23476 -https://www.oceanexpert.org/expert/46251 -https://www.oceanexpert.org/expert/38219 -https://www.oceanexpert.org/expert/25716 -https://www.oceanexpert.org/event/2360 -https://www.oceanexpert.org/expert/13982 -https://www.oceanexpert.org/institution/16844 -https://www.oceanexpert.org/institution/17957 -https://www.oceanexpert.org/expert/44221 -https://www.oceanexpert.org/institution/12432 -https://www.oceanexpert.org/expert/26223 -https://www.oceanexpert.org/institution/17067 -https://www.oceanexpert.org/expert/36818 -https://www.oceanexpert.org/event/2276 -https://www.oceanexpert.org/expert/40661 -https://www.oceanexpert.org/expert/22379 -https://www.oceanexpert.org/institution/18905 -https://www.oceanexpert.org/institution/18455 -https://www.oceanexpert.org/expert/23689 -https://www.oceanexpert.org/expert/44620 -https://www.oceanexpert.org/expert/23547 -https://www.oceanexpert.org/event/2025 -https://www.oceanexpert.org/event/1487 -https://www.oceanexpert.org/expert/23640 -https://www.oceanexpert.org/event/2860 -https://www.oceanexpert.org/expert/30892 -https://www.oceanexpert.org/expert/7349 -https://www.oceanexpert.org/expert/17392 -https://www.oceanexpert.org/expert/36266 -https://www.oceanexpert.org/institution/10448 -https://www.oceanexpert.org/event/2635 -https://www.oceanexpert.org/institution/15648 -https://www.oceanexpert.org/expert/44407 -https://www.oceanexpert.org/expert/31198 -https://www.oceanexpert.org/institution/20430 -https://www.oceanexpert.org/expert/19154 -https://www.oceanexpert.org/expert/20993 -https://www.oceanexpert.org/expert/29565 -https://www.oceanexpert.org/institution/21211 -https://www.oceanexpert.org/expert/44918 -https://www.oceanexpert.org/institution/18678 -https://www.oceanexpert.org/expert/12325 -https://www.oceanexpert.org/event/227 -https://www.oceanexpert.org/expert/38156 -https://www.oceanexpert.org/expert/31877 -https://www.oceanexpert.org/expert/27967 -https://www.oceanexpert.org/institution/18385 -https://www.oceanexpert.org/expert/46564 -https://www.oceanexpert.org/expert/25571 -https://www.oceanexpert.org/expert/30117 -https://www.oceanexpert.org/expert/36556 -https://www.oceanexpert.org/expert/27471 -https://www.oceanexpert.org/institution/19550 -https://www.oceanexpert.org/institution/21662 -https://www.oceanexpert.org/event/2493 -https://www.oceanexpert.org/expert/11540 -https://www.oceanexpert.org/institution/10850 -https://www.oceanexpert.org/event/2214 -https://www.oceanexpert.org/expert/18190 -https://www.oceanexpert.org/event/1733 -https://www.oceanexpert.org/expert/24371 -https://www.oceanexpert.org/expert/30366 -https://www.oceanexpert.org/event/69 -https://www.oceanexpert.org/institution/20829 -https://www.oceanexpert.org/expert/14676 -https://www.oceanexpert.org/expert/23583 -https://www.oceanexpert.org/expert/25394 -https://www.oceanexpert.org/expert/47369 -https://www.oceanexpert.org/institution/19092 -https://www.oceanexpert.org/expert/18438 -https://www.oceanexpert.org/expert/7813 -https://www.oceanexpert.org/expert/25068 -https://www.oceanexpert.org/expert/9318 -https://www.oceanexpert.org/expert/34921 -https://www.oceanexpert.org/expert/43676 -https://www.oceanexpert.org/expert/19592 -https://www.oceanexpert.org/expert/47388 -https://www.oceanexpert.org/expert/28882 -https://www.oceanexpert.org/expert/25568 -https://www.oceanexpert.org/expert/46481 -https://www.oceanexpert.org/expert/21675 -https://www.oceanexpert.org/institution/18795 -https://www.oceanexpert.org/expert/29616 -https://www.oceanexpert.org/expert/22920 -https://www.oceanexpert.org/expert/20572 -https://www.oceanexpert.org/expert/33499 -https://www.oceanexpert.org/expert/32161 -https://www.oceanexpert.org/expert/24638 -https://www.oceanexpert.org/event/307 -https://www.oceanexpert.org/expert/35108 -https://www.oceanexpert.org/expert/32382 -https://www.oceanexpert.org/expert/38404 -https://www.oceanexpert.org/institution/21347 -https://www.oceanexpert.org/institution/19570 -https://www.oceanexpert.org/event/3180 -https://www.oceanexpert.org/expert/24024 -https://www.oceanexpert.org/institution/13446 -https://www.oceanexpert.org/event/1447 -https://www.oceanexpert.org/expert/26002 -https://www.oceanexpert.org/expert/6470 -https://www.oceanexpert.org/institution/14950 -https://www.oceanexpert.org/expert/39743 -https://www.oceanexpert.org/expert/361 -https://www.oceanexpert.org/event/1722 -https://www.oceanexpert.org/institution/22018 -https://www.oceanexpert.org/expert/38008 -https://www.oceanexpert.org/institution/5235 -https://www.oceanexpert.org/expert/23470 -https://www.oceanexpert.org/expert/40 -https://www.oceanexpert.org/institution/8247 -https://www.oceanexpert.org/institution/12085 -https://www.oceanexpert.org/expert/6931 -https://www.oceanexpert.org/institution/12214 -https://www.oceanexpert.org/expert/29210 -https://www.oceanexpert.org/institution/19847 -https://www.oceanexpert.org/expert/23941 -https://www.oceanexpert.org/institution/20143 -https://www.oceanexpert.org/expert/13187 -https://www.oceanexpert.org/institution/7273 -https://www.oceanexpert.org/expert/26834 -https://www.oceanexpert.org/expert/35359 -https://www.oceanexpert.org/expert/29035 -https://www.oceanexpert.org/expert/719 -https://www.oceanexpert.org/institution/15889 -https://www.oceanexpert.org/expert/17360 -https://www.oceanexpert.org/institution/15518 -https://www.oceanexpert.org/event/1186 -https://www.oceanexpert.org/institution/20054 -https://www.oceanexpert.org/institution/10681 -https://www.oceanexpert.org/expert/47918 -https://www.oceanexpert.org/expert/19771 -https://www.oceanexpert.org/institution/17939 -https://www.oceanexpert.org/event/2571 -https://www.oceanexpert.org/expert/1962 -https://www.oceanexpert.org/expert/21186 -https://www.oceanexpert.org/institution/19247 -https://www.oceanexpert.org/expert/6409 -https://www.oceanexpert.org/event/952 -https://www.oceanexpert.org/institution/19991 -https://www.oceanexpert.org/expert/46238 -https://www.oceanexpert.org/institution/19274 -https://www.oceanexpert.org/institution/19383 -https://www.oceanexpert.org/expert/24813 -https://www.oceanexpert.org/expert/19283 -https://www.oceanexpert.org/institution/10358 -https://www.oceanexpert.org/expert/47135 -https://www.oceanexpert.org/expert/26699 -https://www.oceanexpert.org/expert/45496 -https://www.oceanexpert.org/expert/16707 -https://www.oceanexpert.org/institution/18868 -https://www.oceanexpert.org/expert/27115 -https://www.oceanexpert.org/institution/5922 -https://www.oceanexpert.org/institution/13938 -https://www.oceanexpert.org/expert/26458 -https://www.oceanexpert.org/expert/12409 -https://www.oceanexpert.org/expert/26719 -https://www.oceanexpert.org/event/1720 -https://www.oceanexpert.org/expert/27237 -https://www.oceanexpert.org/institution/17682 -https://www.oceanexpert.org/expert/35185 -https://www.oceanexpert.org/expert/16664 -https://www.oceanexpert.org/expert/6245 -https://www.oceanexpert.org/expert/24069 -https://www.oceanexpert.org/expert/44220 -https://www.oceanexpert.org/expert/36952 -https://www.oceanexpert.org/expert/14672 -https://www.oceanexpert.org/event/2104 -https://www.oceanexpert.org/institution/19582 -https://www.oceanexpert.org/institution/12204 -https://www.oceanexpert.org/expert/46377 -https://www.oceanexpert.org/expert/42751 -https://www.oceanexpert.org/expert/18791 -https://www.oceanexpert.org/expert/29379 -https://www.oceanexpert.org/expert/46625 -https://www.oceanexpert.org/institution/11783 -https://www.oceanexpert.org/institution/12799 -https://www.oceanexpert.org/institution/10885 -https://www.oceanexpert.org/expert/46405 -https://www.oceanexpert.org/expert/44715 -https://www.oceanexpert.org/institution/22169 -https://www.oceanexpert.org/expert/47717 -https://www.oceanexpert.org/institution/11046 -https://www.oceanexpert.org/expert/12661 -https://www.oceanexpert.org/expert/22352 -https://www.oceanexpert.org/event/30 -https://www.oceanexpert.org/expert/3174 -https://www.oceanexpert.org/expert/31169 -https://www.oceanexpert.org/event/2852 -https://www.oceanexpert.org/institution/19715 -https://www.oceanexpert.org/expert/18031 -https://www.oceanexpert.org/institution/13429 -https://www.oceanexpert.org/institution/18927 -https://www.oceanexpert.org/expert/43905 -https://www.oceanexpert.org/expert/46962 -https://www.oceanexpert.org/expert/37974 -https://www.oceanexpert.org/institution/11345 -https://www.oceanexpert.org/expert/16593 -https://www.oceanexpert.org/institution/6933 -https://www.oceanexpert.org/event/3163 -https://www.oceanexpert.org/expert/14082 -https://www.oceanexpert.org/expert/11551 -https://www.oceanexpert.org/expert/22091 -https://www.oceanexpert.org/expert/47861 -https://www.oceanexpert.org/expert/43138 -https://www.oceanexpert.org/institution/10749 -https://www.oceanexpert.org/expert/19499 -https://www.oceanexpert.org/expert/39976 -https://www.oceanexpert.org/expert/25792 -https://www.oceanexpert.org/expert/48601 -https://www.oceanexpert.org/expert/25820 -https://www.oceanexpert.org/expert/25903 -https://www.oceanexpert.org/expert/26000 -https://www.oceanexpert.org/expert/19846 -https://www.oceanexpert.org/expert/32224 -https://www.oceanexpert.org/expert/25730 -https://www.oceanexpert.org/institution/18396 -https://www.oceanexpert.org/expert/37365 -https://www.oceanexpert.org/institution/10026 -https://www.oceanexpert.org/expert/34446 -https://www.oceanexpert.org/expert/44611 -https://www.oceanexpert.org/institution/17776 -https://www.oceanexpert.org/institution/13124 -https://www.oceanexpert.org/expert/48065 -https://www.oceanexpert.org/expert/18821 -https://www.oceanexpert.org/expert/23402 -https://www.oceanexpert.org/expert/17158 -https://www.oceanexpert.org/expert/47769 -https://www.oceanexpert.org/expert/48723 -https://www.oceanexpert.org/expert/2013 -https://www.oceanexpert.org/expert/34236 -https://www.oceanexpert.org/institution/19903 -https://www.oceanexpert.org/event/2447 -https://www.oceanexpert.org/expert/21152 -https://www.oceanexpert.org/expert/20363 -https://www.oceanexpert.org/expert/48996 -https://www.oceanexpert.org/expert/18452 -https://www.oceanexpert.org/expert/17632 -https://www.oceanexpert.org/expert/11363 -https://www.oceanexpert.org/institution/21779 -https://www.oceanexpert.org/institution/21945 -https://www.oceanexpert.org/expert/11198 -https://www.oceanexpert.org/expert/36061 -https://www.oceanexpert.org/event/1381 -https://www.oceanexpert.org/expert/19211 -https://www.oceanexpert.org/expert/45555 -https://www.oceanexpert.org/expert/43751 -https://www.oceanexpert.org/expert/33743 -https://www.oceanexpert.org/expert/27021 -https://www.oceanexpert.org/institution/21435 -https://www.oceanexpert.org/expert/19418 -https://www.oceanexpert.org/institution/18809 -https://www.oceanexpert.org/event/1254 -https://www.oceanexpert.org/event/2572 -https://www.oceanexpert.org/institution/19307 -https://www.oceanexpert.org/event/2284 -https://www.oceanexpert.org/expert/19555 -https://www.oceanexpert.org/expert/31258 -https://www.oceanexpert.org/expert/34164 -https://www.oceanexpert.org/expert/43039 -https://www.oceanexpert.org/institution/5525 -https://www.oceanexpert.org/expert/47351 -https://www.oceanexpert.org/expert/44808 -https://www.oceanexpert.org/expert/4779 -https://www.oceanexpert.org/expert/24123 -https://www.oceanexpert.org/expert/42972 -https://www.oceanexpert.org/expert/26331 -https://www.oceanexpert.org/expert/40653 -https://www.oceanexpert.org/expert/42910 -https://www.oceanexpert.org/expert/29504 -https://www.oceanexpert.org/expert/23836 -https://www.oceanexpert.org/expert/46314 -https://www.oceanexpert.org/institution/21802 -https://www.oceanexpert.org/expert/24409 -https://www.oceanexpert.org/expert/46858 -https://www.oceanexpert.org/institution/19739 -https://www.oceanexpert.org/expert/16701 -https://www.oceanexpert.org/expert/40538 -https://www.oceanexpert.org/expert/26524 -https://www.oceanexpert.org/institution/20210 -https://www.oceanexpert.org/expert/29106 -https://www.oceanexpert.org/expert/23218 -https://www.oceanexpert.org/event/1272 -https://www.oceanexpert.org/expert/44713 -https://www.oceanexpert.org/institution/12295 -https://www.oceanexpert.org/expert/24202 -https://www.oceanexpert.org/institution/18822 -https://www.oceanexpert.org/expert/33207 -https://www.oceanexpert.org/expert/39171 -https://www.oceanexpert.org/expert/18155 -https://www.oceanexpert.org/expert/17347 -https://www.oceanexpert.org/expert/27441 -https://www.oceanexpert.org/expert/7416 -https://www.oceanexpert.org/expert/38627 -https://www.oceanexpert.org/expert/21446 -https://www.oceanexpert.org/expert/26604 -https://www.oceanexpert.org/expert/31866 -https://www.oceanexpert.org/institution/13106 -https://www.oceanexpert.org/event/1623 -https://www.oceanexpert.org/institution/20733 -https://www.oceanexpert.org/expert/26124 -https://www.oceanexpert.org/event/1208 -https://www.oceanexpert.org/event/1056 -https://www.oceanexpert.org/expert/8026 -https://www.oceanexpert.org/institution/19458 -https://www.oceanexpert.org/expert/18349 -https://www.oceanexpert.org/institution/20137 -https://www.oceanexpert.org/event/1762 -https://www.oceanexpert.org/expert/37635 -https://www.oceanexpert.org/expert/46810 -https://www.oceanexpert.org/expert/8342 -https://www.oceanexpert.org/institution/21630 -https://www.oceanexpert.org/institution/10281 -https://www.oceanexpert.org/institution/67 -https://www.oceanexpert.org/expert/29623 -https://www.oceanexpert.org/institution/13998 -https://www.oceanexpert.org/expert/14573 -https://www.oceanexpert.org/institution/21689 -https://www.oceanexpert.org/expert/27365 -https://www.oceanexpert.org/expert/37365 -https://www.oceanexpert.org/expert/26493 -https://www.oceanexpert.org/expert/45501 -https://www.oceanexpert.org/institution/20738 -https://www.oceanexpert.org/expert/17412 -https://www.oceanexpert.org/expert/45847 -https://www.oceanexpert.org/institution/14124 -https://www.oceanexpert.org/expert/738 -https://www.oceanexpert.org/expert/35993 -https://www.oceanexpert.org/expert/24173 -https://www.oceanexpert.org/expert/27180 -https://www.oceanexpert.org/expert/18167 -https://www.oceanexpert.org/expert/24620 -https://www.oceanexpert.org/expert/29803 -https://www.oceanexpert.org/institution/22023 -https://www.oceanexpert.org/institution/18166 -https://www.oceanexpert.org/institution/20759 -https://www.oceanexpert.org/expert/37799 -https://www.oceanexpert.org/expert/35499 -https://www.oceanexpert.org/expert/25359 -https://www.oceanexpert.org/expert/35602 -https://www.oceanexpert.org/institution/21105 -https://www.oceanexpert.org/institution/21276 -https://www.oceanexpert.org/expert/24461 -https://www.oceanexpert.org/expert/24402 -https://www.oceanexpert.org/institution/6668 -https://www.oceanexpert.org/event/2185 -https://www.oceanexpert.org/expert/1718 -https://www.oceanexpert.org/expert/17455 -https://www.oceanexpert.org/expert/8619 -https://www.oceanexpert.org/expert/32493 -https://www.oceanexpert.org/expert/20817 -https://www.oceanexpert.org/event/796 -https://www.oceanexpert.org/expert/8700 -https://www.oceanexpert.org/expert/20809 -https://www.oceanexpert.org/institution/12039 -https://www.oceanexpert.org/expert/48641 -https://www.oceanexpert.org/expert/25691 -https://www.oceanexpert.org/expert/13642 -https://www.oceanexpert.org/expert/23402 -https://www.oceanexpert.org/expert/48244 -https://www.oceanexpert.org/expert/38561 -https://www.oceanexpert.org/expert/32489 -https://www.oceanexpert.org/expert/48792 -https://www.oceanexpert.org/expert/42795 -https://www.oceanexpert.org/expert/45837 -https://www.oceanexpert.org/expert/24014 -https://www.oceanexpert.org/expert/32845 -https://www.oceanexpert.org/institution/18622 -https://www.oceanexpert.org/expert/36052 -https://www.oceanexpert.org/expert/34679 -https://www.oceanexpert.org/institution/22000 -https://www.oceanexpert.org/expert/48877 -https://www.oceanexpert.org/expert/47898 -https://www.oceanexpert.org/expert/43892 -https://www.oceanexpert.org/expert/23138 -https://www.oceanexpert.org/expert/11701 -https://www.oceanexpert.org/institution/19789 -https://www.oceanexpert.org/expert/25692 -https://www.oceanexpert.org/institution/17039 -https://www.oceanexpert.org/expert/44713 -https://www.oceanexpert.org/event/1963 -https://www.oceanexpert.org/event/1550 -https://www.oceanexpert.org/expert/25841 -https://www.oceanexpert.org/expert/22012 -https://www.oceanexpert.org/institution/11823 -https://www.oceanexpert.org/expert/36206 -https://www.oceanexpert.org/expert/45664 -https://www.oceanexpert.org/institution/13666 -https://www.oceanexpert.org/event/288 -https://www.oceanexpert.org/expert/18289 -https://www.oceanexpert.org/institution/16395 -https://www.oceanexpert.org/event/2986 -https://www.oceanexpert.org/expert/43642 -https://www.oceanexpert.org/institution/18191 -https://www.oceanexpert.org/expert/46597 -https://www.oceanexpert.org/institution/19305 -https://www.oceanexpert.org/expert/24659 -https://www.oceanexpert.org/expert/2126 -https://www.oceanexpert.org/expert/37616 -https://www.oceanexpert.org/expert/36875 -https://www.oceanexpert.org/institution/21863 -https://www.oceanexpert.org/event/78 -https://www.oceanexpert.org/expert/32495 -https://www.oceanexpert.org/expert/16235 -https://www.oceanexpert.org/expert/28880 -https://www.oceanexpert.org/event/224 -https://www.oceanexpert.org/expert/46206 -https://www.oceanexpert.org/expert/16640 -https://www.oceanexpert.org/expert/28171 -https://www.oceanexpert.org/institution/21681 -https://www.oceanexpert.org/event/2727 -https://www.oceanexpert.org/expert/26029 -https://www.oceanexpert.org/event/2115 -https://www.oceanexpert.org/expert/27575 -https://www.oceanexpert.org/institution/18964 -https://www.oceanexpert.org/expert/30516 -https://www.oceanexpert.org/expert/26939 -https://www.oceanexpert.org/institution/19244 -https://www.oceanexpert.org/institution/19587 -https://www.oceanexpert.org/expert/21595 -https://www.oceanexpert.org/expert/789 -https://www.oceanexpert.org/expert/16361 -https://www.oceanexpert.org/expert/40525 -https://www.oceanexpert.org/expert/20055 -https://www.oceanexpert.org/expert/16839 -https://www.oceanexpert.org/institution/5636 -https://www.oceanexpert.org/expert/20152 -https://www.oceanexpert.org/expert/24538 -https://www.oceanexpert.org/expert/38482 -https://www.oceanexpert.org/expert/24602 -https://www.oceanexpert.org/expert/31228 -https://www.oceanexpert.org/institution/10758 -https://www.oceanexpert.org/expert/13881 -https://www.oceanexpert.org/institution/12507 -https://www.oceanexpert.org/expert/33198 -https://www.oceanexpert.org/expert/6022 -https://www.oceanexpert.org/expert/23454 -https://www.oceanexpert.org/expert/36318 -https://www.oceanexpert.org/event/1578 -https://www.oceanexpert.org/expert/48574 -https://www.oceanexpert.org/institution/19479 -https://www.oceanexpert.org/institution/8792 -https://www.oceanexpert.org/expert/36791 -https://www.oceanexpert.org/expert/5872 -https://www.oceanexpert.org/institution/12204 -https://www.oceanexpert.org/expert/25115 -https://www.oceanexpert.org/expert/47058 -https://www.oceanexpert.org/expert/43373 -https://www.oceanexpert.org/expert/21769 -https://www.oceanexpert.org/expert/34110 -https://www.oceanexpert.org/event/983 -https://www.oceanexpert.org/institution/21643 -https://www.oceanexpert.org/institution/20032 -https://www.oceanexpert.org/expert/22112 -https://www.oceanexpert.org/expert/24960 -https://www.oceanexpert.org/expert/16945 -https://www.oceanexpert.org/expert/44969 -https://www.oceanexpert.org/expert/1960 -https://www.oceanexpert.org/expert/37386 -https://www.oceanexpert.org/expert/23300 -https://www.oceanexpert.org/expert/31509 -https://www.oceanexpert.org/institution/21629 -https://www.oceanexpert.org/expert/27134 -https://www.oceanexpert.org/expert/26823 -https://www.oceanexpert.org/expert/18705 -https://www.oceanexpert.org/expert/44481 -https://www.oceanexpert.org/expert/28348 -https://www.oceanexpert.org/expert/24180 -https://www.oceanexpert.org/institution/14909 -https://www.oceanexpert.org/expert/24679 -https://www.oceanexpert.org/expert/33859 -https://www.oceanexpert.org/expert/36453 -https://www.oceanexpert.org/expert/15299 -https://www.oceanexpert.org/expert/6914 -https://www.oceanexpert.org/expert/12536 -https://www.oceanexpert.org/institution/19327 -https://www.oceanexpert.org/institution/18179 -https://www.oceanexpert.org/expert/34383 -https://www.oceanexpert.org/expert/46883 -https://www.oceanexpert.org/expert/9041 -https://www.oceanexpert.org/expert/25357 -https://www.oceanexpert.org/expert/38334 -https://www.oceanexpert.org/expert/37966 -https://www.oceanexpert.org/expert/42485 -https://www.oceanexpert.org/expert/38558 -https://www.oceanexpert.org/institution/19997 -https://www.oceanexpert.org/expert/44480 -https://www.oceanexpert.org/institution/4942 -https://www.oceanexpert.org/expert/36984 -https://www.oceanexpert.org/expert/39225 -https://www.oceanexpert.org/expert/22281 -https://www.oceanexpert.org/event/3101 -https://www.oceanexpert.org/event/2450 -https://www.oceanexpert.org/event/118 -https://www.oceanexpert.org/expert/25680 -https://www.oceanexpert.org/event/397 -https://www.oceanexpert.org/institution/17434 -https://www.oceanexpert.org/event/2191 -https://www.oceanexpert.org/institution/16002 -https://www.oceanexpert.org/expert/28171 -https://www.oceanexpert.org/expert/22446 -https://www.oceanexpert.org/expert/15457 -https://www.oceanexpert.org/expert/25328 -https://www.oceanexpert.org/institution/11275 -https://www.oceanexpert.org/expert/13488 -https://www.oceanexpert.org/expert/36942 -https://www.oceanexpert.org/expert/34443 -https://www.oceanexpert.org/expert/29059 -https://www.oceanexpert.org/institution/7413 -https://www.oceanexpert.org/institution/8541 -https://www.oceanexpert.org/expert/42361 -https://www.oceanexpert.org/expert/14323 -https://www.oceanexpert.org/expert/36647 -https://www.oceanexpert.org/event/2133 -https://www.oceanexpert.org/institution/10704 -https://www.oceanexpert.org/institution/21826 -https://www.oceanexpert.org/expert/43025 -https://www.oceanexpert.org/expert/46661 -https://www.oceanexpert.org/event/2423 -https://www.oceanexpert.org/expert/24542 -https://www.oceanexpert.org/expert/17136 -https://www.oceanexpert.org/institution/19402 -https://www.oceanexpert.org/expert/21547 -https://www.oceanexpert.org/institution/9069 -https://www.oceanexpert.org/expert/27994 -https://www.oceanexpert.org/expert/38346 -https://www.oceanexpert.org/expert/27442 -https://www.oceanexpert.org/expert/26733 -https://www.oceanexpert.org/event/3128 -https://www.oceanexpert.org/event/1492 -https://www.oceanexpert.org/expert/27368 -https://www.oceanexpert.org/event/721 -https://www.oceanexpert.org/expert/43221 -https://www.oceanexpert.org/expert/36433 -https://www.oceanexpert.org/institution/15465 -https://www.oceanexpert.org/expert/31924 -https://www.oceanexpert.org/expert/47875 -https://www.oceanexpert.org/expert/17225 -https://www.oceanexpert.org/institution/17035 -https://www.oceanexpert.org/expert/23642 -https://www.oceanexpert.org/expert/46548 -https://www.oceanexpert.org/expert/30763 -https://www.oceanexpert.org/institution/16130 -https://www.oceanexpert.org/expert/18126 -https://www.oceanexpert.org/institution/10656 -https://www.oceanexpert.org/event/1022 -https://www.oceanexpert.org/expert/28001 -https://www.oceanexpert.org/expert/3160 -https://www.oceanexpert.org/expert/46465 -https://www.oceanexpert.org/expert/12351 -https://www.oceanexpert.org/expert/29554 -https://www.oceanexpert.org/expert/15022 -https://www.oceanexpert.org/institution/10139 -https://www.oceanexpert.org/expert/38771 -https://www.oceanexpert.org/expert/19804 -https://www.oceanexpert.org/expert/38130 -https://www.oceanexpert.org/institution/18139 -https://www.oceanexpert.org/expert/16344 -https://www.oceanexpert.org/expert/42173 -https://www.oceanexpert.org/expert/38504 -https://www.oceanexpert.org/expert/37461 -https://www.oceanexpert.org/expert/37855 -https://www.oceanexpert.org/event/267 -https://www.oceanexpert.org/expert/38904 -https://www.oceanexpert.org/event/1992 -https://www.oceanexpert.org/expert/16926 -https://www.oceanexpert.org/expert/37860 -https://www.oceanexpert.org/expert/9233 -https://www.oceanexpert.org/expert/20568 -https://www.oceanexpert.org/institution/16398 -https://www.oceanexpert.org/expert/25313 -https://www.oceanexpert.org/expert/34702 -https://www.oceanexpert.org/event/1333 -https://www.oceanexpert.org/expert/39229 -https://www.oceanexpert.org/institution/10054 -https://www.oceanexpert.org/expert/25501 -https://www.oceanexpert.org/expert/29365 -https://www.oceanexpert.org/expert/41047 -https://www.oceanexpert.org/expert/19670 -https://www.oceanexpert.org/institution/11323 -https://www.oceanexpert.org/institution/19070 -https://www.oceanexpert.org/event/1157 -https://www.oceanexpert.org/expert/30889 -https://www.oceanexpert.org/expert/22778 -https://www.oceanexpert.org/expert/21241 -https://www.oceanexpert.org/expert/26736 -https://www.oceanexpert.org/expert/22284 -https://www.oceanexpert.org/expert/34935 -https://www.oceanexpert.org/expert/25382 -https://www.oceanexpert.org/expert/41630 -https://www.oceanexpert.org/expert/13213 -https://www.oceanexpert.org/expert/8616 -https://www.oceanexpert.org/institution/19094 -https://www.oceanexpert.org/expert/20622 -https://www.oceanexpert.org/institution/12703 -https://www.oceanexpert.org/institution/9521 -https://www.oceanexpert.org/expert/15298 -https://www.oceanexpert.org/event/2578 -https://www.oceanexpert.org/expert/23409 -https://www.oceanexpert.org/expert/38935 -https://www.oceanexpert.org/expert/19636 -https://www.oceanexpert.org/expert/38684 -https://www.oceanexpert.org/expert/2206 -https://www.oceanexpert.org/institution/17602 -https://www.oceanexpert.org/expert/4773 -https://www.oceanexpert.org/expert/14244 -https://www.oceanexpert.org/expert/37913 -https://www.oceanexpert.org/institution/19768 -https://www.oceanexpert.org/expert/21164 -https://www.oceanexpert.org/institution/17668 -https://www.oceanexpert.org/expert/39006 -https://www.oceanexpert.org/expert/27503 -https://www.oceanexpert.org/institution/17111 -https://www.oceanexpert.org/expert/10070 -https://www.oceanexpert.org/expert/44074 -https://www.oceanexpert.org/expert/42463 -https://www.oceanexpert.org/institution/18341 -https://www.oceanexpert.org/event/701 -https://www.oceanexpert.org/expert/39278 -https://www.oceanexpert.org/institution/19347 -https://www.oceanexpert.org/institution/18939 -https://www.oceanexpert.org/expert/17652 -https://www.oceanexpert.org/expert/36921 -https://www.oceanexpert.org/institution/21878 -https://www.oceanexpert.org/expert/48776 -https://www.oceanexpert.org/expert/19199 -https://www.oceanexpert.org/expert/48436 -https://www.oceanexpert.org/expert/23434 -https://www.oceanexpert.org/expert/24053 -https://www.oceanexpert.org/expert/13515 -https://www.oceanexpert.org/expert/35658 -https://www.oceanexpert.org/expert/8709 -https://www.oceanexpert.org/expert/29756 -https://www.oceanexpert.org/institution/9330 -https://www.oceanexpert.org/expert/46683 -https://www.oceanexpert.org/expert/40585 -https://www.oceanexpert.org/expert/46362 -https://www.oceanexpert.org/expert/33849 -https://www.oceanexpert.org/institution/19389 -https://www.oceanexpert.org/institution/17386 -https://www.oceanexpert.org/expert/25117 -https://www.oceanexpert.org/expert/29376 -https://www.oceanexpert.org/institution/21868 -https://www.oceanexpert.org/expert/33163 -https://www.oceanexpert.org/expert/23395 -https://www.oceanexpert.org/event/377 -https://www.oceanexpert.org/expert/30796 -https://www.oceanexpert.org/institution/14744 -https://www.oceanexpert.org/expert/15321 -https://www.oceanexpert.org/expert/6512 -https://www.oceanexpert.org/expert/17747 -https://www.oceanexpert.org/institution/7785 -https://www.oceanexpert.org/expert/22648 -https://www.oceanexpert.org/expert/7005 -https://www.oceanexpert.org/expert/26948 -https://www.oceanexpert.org/event/1759 -https://www.oceanexpert.org/expert/17194 -https://www.oceanexpert.org/event/867 -https://www.oceanexpert.org/expert/28038 -https://www.oceanexpert.org/institution/19256 -https://www.oceanexpert.org/expert/26596 -https://www.oceanexpert.org/institution/13051 -https://www.oceanexpert.org/expert/25355 -https://www.oceanexpert.org/expert/43334 -https://www.oceanexpert.org/expert/6927 -https://www.oceanexpert.org/institution/7976 -https://www.oceanexpert.org/institution/18731 -https://www.oceanexpert.org/expert/44893 -https://www.oceanexpert.org/expert/38725 -https://www.oceanexpert.org/expert/20249 -https://www.oceanexpert.org/expert/47987 -https://www.oceanexpert.org/event/2106 -https://www.oceanexpert.org/institution/11548 -https://www.oceanexpert.org/expert/8619 -https://www.oceanexpert.org/institution/8003 -https://www.oceanexpert.org/expert/35992 -https://www.oceanexpert.org/institution/17567 -https://www.oceanexpert.org/expert/46299 -https://www.oceanexpert.org/institution/18628 -https://www.oceanexpert.org/institution/21885 -https://www.oceanexpert.org/event/319 -https://www.oceanexpert.org/expert/34330 -https://www.oceanexpert.org/institution/10698 -https://www.oceanexpert.org/expert/35424 -https://www.oceanexpert.org/expert/36159 -https://www.oceanexpert.org/institution/10998 -https://www.oceanexpert.org/expert/36435 -https://www.oceanexpert.org/institution/10332 -https://www.oceanexpert.org/expert/14597 -https://www.oceanexpert.org/expert/48134 -https://www.oceanexpert.org/expert/46666 -https://www.oceanexpert.org/expert/25483 -https://www.oceanexpert.org/expert/32892 -https://www.oceanexpert.org/institution/5846 -https://www.oceanexpert.org/expert/20516 -https://www.oceanexpert.org/institution/10968 -https://www.oceanexpert.org/expert/21805 -https://www.oceanexpert.org/event/1197 -https://www.oceanexpert.org/expert/46152 -https://www.oceanexpert.org/institution/5577 -https://www.oceanexpert.org/expert/23237 -https://www.oceanexpert.org/expert/8400 -https://www.oceanexpert.org/event/2922 -https://www.oceanexpert.org/institution/18771 -https://www.oceanexpert.org/institution/19498 -https://www.oceanexpert.org/institution/18204 -https://www.oceanexpert.org/event/2296 -https://www.oceanexpert.org/institution/12706 -https://www.oceanexpert.org/expert/47023 -https://www.oceanexpert.org/event/2372 -https://www.oceanexpert.org/institution/20198 -https://www.oceanexpert.org/expert/37335 -https://www.oceanexpert.org/expert/7267 -https://www.oceanexpert.org/expert/18013 -https://www.oceanexpert.org/institution/15300 -https://www.oceanexpert.org/institution/5413 -https://www.oceanexpert.org/institution/18284 -https://www.oceanexpert.org/institution/20166 -https://www.oceanexpert.org/expert/1673 -https://www.oceanexpert.org/expert/35100 -https://www.oceanexpert.org/expert/36291 -https://www.oceanexpert.org/institution/16058 -https://www.oceanexpert.org/expert/37792 -https://www.oceanexpert.org/expert/33688 -https://www.oceanexpert.org/expert/2938 -https://www.oceanexpert.org/institution/17267 -https://www.oceanexpert.org/institution/20365 -https://www.oceanexpert.org/institution/5199 -https://www.oceanexpert.org/expert/49034 -https://www.oceanexpert.org/expert/20126 -https://www.oceanexpert.org/expert/43473 -https://www.oceanexpert.org/institution/20627 -https://www.oceanexpert.org/event/1448 -https://www.oceanexpert.org/expert/32496 -https://www.oceanexpert.org/expert/43277 -https://www.oceanexpert.org/expert/20283 -https://www.oceanexpert.org/expert/34583 -https://www.oceanexpert.org/institution/18063 -https://www.oceanexpert.org/institution/20425 -https://www.oceanexpert.org/expert/26388 -https://www.oceanexpert.org/institution/20624 -https://www.oceanexpert.org/expert/36742 -https://www.oceanexpert.org/event/2648 -https://www.oceanexpert.org/expert/27406 -https://www.oceanexpert.org/institution/6970 -https://www.oceanexpert.org/event/357 -https://www.oceanexpert.org/expert/47834 -https://www.oceanexpert.org/expert/36865 -https://www.oceanexpert.org/event/639 -https://www.oceanexpert.org/expert/7009 -https://www.oceanexpert.org/expert/21042 -https://www.oceanexpert.org/expert/25322 -https://www.oceanexpert.org/expert/38496 -https://www.oceanexpert.org/expert/34394 -https://www.oceanexpert.org/expert/48143 -https://www.oceanexpert.org/event/532 -https://www.oceanexpert.org/expert/30804 -https://www.oceanexpert.org/expert/25008 -https://www.oceanexpert.org/expert/44212 -https://www.oceanexpert.org/expert/47554 -https://www.oceanexpert.org/expert/26892 -https://www.oceanexpert.org/expert/29359 -https://www.oceanexpert.org/institution/18613 -https://www.oceanexpert.org/expert/19682 -https://www.oceanexpert.org/event/155 -https://www.oceanexpert.org/event/577 -https://www.oceanexpert.org/expert/11367 -https://www.oceanexpert.org/institution/16365 -https://www.oceanexpert.org/expert/45185 -https://www.oceanexpert.org/expert/14899 -https://www.oceanexpert.org/expert/43462 -https://www.oceanexpert.org/institution/6538 -https://www.oceanexpert.org/institution/17598 -https://www.oceanexpert.org/expert/32859 -https://www.oceanexpert.org/expert/45150 -https://www.oceanexpert.org/expert/37926 -https://www.oceanexpert.org/expert/44343 -https://www.oceanexpert.org/expert/23622 -https://www.oceanexpert.org/expert/43690 -https://www.oceanexpert.org/event/2781 -https://www.oceanexpert.org/expert/28229 -https://www.oceanexpert.org/expert/29096 -https://www.oceanexpert.org/expert/18348 -https://www.oceanexpert.org/expert/35272 -https://www.oceanexpert.org/expert/14421 -https://www.oceanexpert.org/expert/46334 -https://www.oceanexpert.org/event/169 -https://www.oceanexpert.org/institution/11818 -https://www.oceanexpert.org/expert/32407 -https://www.oceanexpert.org/expert/30580 -https://www.oceanexpert.org/expert/23980 -https://www.oceanexpert.org/expert/27830 -https://www.oceanexpert.org/expert/40359 -https://www.oceanexpert.org/expert/36374 -https://www.oceanexpert.org/expert/7137 -https://www.oceanexpert.org/expert/28921 -https://www.oceanexpert.org/institution/5550 -https://www.oceanexpert.org/institution/14384 -https://www.oceanexpert.org/expert/24704 -https://www.oceanexpert.org/expert/42048 -https://www.oceanexpert.org/expert/37872 -https://www.oceanexpert.org/expert/45408 -https://www.oceanexpert.org/expert/16441 -https://www.oceanexpert.org/expert/29008 -https://www.oceanexpert.org/expert/14886 -https://www.oceanexpert.org/expert/18497 -https://www.oceanexpert.org/institution/17636 -https://www.oceanexpert.org/expert/32705 -https://www.oceanexpert.org/institution/20797 -https://www.oceanexpert.org/institution/18136 -https://www.oceanexpert.org/event/1906 -https://www.oceanexpert.org/expert/27234 -https://www.oceanexpert.org/expert/25032 -https://www.oceanexpert.org/expert/25688 -https://www.oceanexpert.org/institution/18902 -https://www.oceanexpert.org/expert/19083 -https://www.oceanexpert.org/expert/15992 -https://www.oceanexpert.org/expert/35306 -https://www.oceanexpert.org/expert/20183 -https://www.oceanexpert.org/expert/48908 -https://www.oceanexpert.org/expert/17477 -https://www.oceanexpert.org/expert/18787 -https://www.oceanexpert.org/event/2754 -https://www.oceanexpert.org/institution/7357 -https://www.oceanexpert.org/institution/11686 -https://www.oceanexpert.org/institution/14445 -https://www.oceanexpert.org/expert/35056 -https://www.oceanexpert.org/expert/37718 -https://www.oceanexpert.org/expert/30326 -https://www.oceanexpert.org/expert/25585 -https://www.oceanexpert.org/event/636 -https://www.oceanexpert.org/expert/28500 -https://www.oceanexpert.org/expert/25690 -https://www.oceanexpert.org/event/271 -https://www.oceanexpert.org/institution/17833 -https://www.oceanexpert.org/expert/21209 -https://www.oceanexpert.org/expert/23114 -https://www.oceanexpert.org/institution/12765 -https://www.oceanexpert.org/institution/18019 -https://www.oceanexpert.org/institution/20592 -https://www.oceanexpert.org/expert/11696 -https://www.oceanexpert.org/institution/18509 -https://www.oceanexpert.org/expert/43723 -https://www.oceanexpert.org/expert/46820 -https://www.oceanexpert.org/expert/20400 -https://www.oceanexpert.org/expert/11490 -https://www.oceanexpert.org/expert/40367 -https://www.oceanexpert.org/expert/37444 -https://www.oceanexpert.org/expert/35010 -https://www.oceanexpert.org/expert/36796 -https://www.oceanexpert.org/institution/19376 -https://www.oceanexpert.org/expert/32559 -https://www.oceanexpert.org/institution/19373 -https://www.oceanexpert.org/institution/16416 -https://www.oceanexpert.org/institution/19077 -https://www.oceanexpert.org/institution/13591 -https://www.oceanexpert.org/event/399 -https://www.oceanexpert.org/institution/15809 -https://www.oceanexpert.org/expert/26631 -https://www.oceanexpert.org/expert/26799 -https://www.oceanexpert.org/expert/23542 -https://www.oceanexpert.org/expert/3178 -https://www.oceanexpert.org/institution/12691 -https://www.oceanexpert.org/institution/21871 -https://www.oceanexpert.org/expert/24143 -https://www.oceanexpert.org/expert/21834 -https://www.oceanexpert.org/institution/21635 -https://www.oceanexpert.org/expert/32857 -https://www.oceanexpert.org/expert/12943 -https://www.oceanexpert.org/expert/45556 -https://www.oceanexpert.org/institution/6634 -https://www.oceanexpert.org/institution/19180 -https://www.oceanexpert.org/event/644 -https://www.oceanexpert.org/expert/17422 -https://www.oceanexpert.org/expert/14776 -https://www.oceanexpert.org/expert/43550 -https://www.oceanexpert.org/institution/8143 -https://www.oceanexpert.org/expert/16736 -https://www.oceanexpert.org/expert/18694 -https://www.oceanexpert.org/institution/20841 -https://www.oceanexpert.org/expert/25587 -https://www.oceanexpert.org/expert/48570 -https://www.oceanexpert.org/expert/6920 -https://www.oceanexpert.org/expert/23330 -https://www.oceanexpert.org/expert/1546 -https://www.oceanexpert.org/expert/30080 -https://www.oceanexpert.org/institution/19143 -https://www.oceanexpert.org/expert/43785 -https://www.oceanexpert.org/expert/46234 -https://www.oceanexpert.org/institution/21223 -https://www.oceanexpert.org/expert/28256 -https://www.oceanexpert.org/expert/47477 -https://www.oceanexpert.org/expert/29689 -https://www.oceanexpert.org/institution/21913 -https://www.oceanexpert.org/expert/29463 -https://www.oceanexpert.org/expert/36354 -https://www.oceanexpert.org/expert/40530 -https://www.oceanexpert.org/expert/44325 -https://www.oceanexpert.org/expert/23789 -https://www.oceanexpert.org/expert/10913 -https://www.oceanexpert.org/event/2451 -https://www.oceanexpert.org/expert/44737 -https://www.oceanexpert.org/expert/30787 -https://www.oceanexpert.org/institution/11986 -https://www.oceanexpert.org/expert/38943 -https://www.oceanexpert.org/expert/25417 -https://www.oceanexpert.org/institution/22074 -https://www.oceanexpert.org/institution/12955 -https://www.oceanexpert.org/expert/10808 -https://www.oceanexpert.org/expert/33291 -https://www.oceanexpert.org/institution/15262 -https://www.oceanexpert.org/expert/40058 -https://www.oceanexpert.org/expert/5866 -https://www.oceanexpert.org/expert/11180 -https://www.oceanexpert.org/expert/17593 -https://www.oceanexpert.org/expert/27515 -https://www.oceanexpert.org/event/1980 -https://www.oceanexpert.org/expert/47698 -https://www.oceanexpert.org/expert/5540 -https://www.oceanexpert.org/expert/22342 -https://www.oceanexpert.org/expert/34164 -https://www.oceanexpert.org/expert/46797 -https://www.oceanexpert.org/expert/36220 -https://www.oceanexpert.org/expert/23934 -https://www.oceanexpert.org/institution/9039 -https://www.oceanexpert.org/expert/28044 -https://www.oceanexpert.org/institution/20819 -https://www.oceanexpert.org/event/538 -https://www.oceanexpert.org/expert/35173 -https://www.oceanexpert.org/institution/16664 -https://www.oceanexpert.org/expert/30467 -https://www.oceanexpert.org/expert/45331 -https://www.oceanexpert.org/expert/35382 -https://www.oceanexpert.org/expert/25818 -https://www.oceanexpert.org/institution/20410 -https://www.oceanexpert.org/expert/26620 -https://www.oceanexpert.org/expert/34915 -https://www.oceanexpert.org/expert/47287 -https://www.oceanexpert.org/event/31 -https://www.oceanexpert.org/expert/45482 -https://www.oceanexpert.org/expert/46000 -https://www.oceanexpert.org/expert/45773 -https://www.oceanexpert.org/expert/44705 -https://www.oceanexpert.org/expert/27443 -https://www.oceanexpert.org/expert/46793 -https://www.oceanexpert.org/institution/8695 -https://www.oceanexpert.org/expert/12048 -https://www.oceanexpert.org/expert/42846 -https://www.oceanexpert.org/expert/45300 -https://www.oceanexpert.org/event/1139 -https://www.oceanexpert.org/expert/44119 -https://www.oceanexpert.org/institution/13949 -https://www.oceanexpert.org/expert/27074 -https://www.oceanexpert.org/institution/20448 -https://www.oceanexpert.org/expert/35173 -https://www.oceanexpert.org/expert/35645 -https://www.oceanexpert.org/institution/18463 -https://www.oceanexpert.org/expert/12901 -https://www.oceanexpert.org/expert/27650 -https://www.oceanexpert.org/institution/20302 -https://www.oceanexpert.org/expert/25153 -https://www.oceanexpert.org/expert/43293 -https://www.oceanexpert.org/expert/223 -https://www.oceanexpert.org/expert/26203 -https://www.oceanexpert.org/expert/29106 -https://www.oceanexpert.org/expert/21188 -https://www.oceanexpert.org/expert/11423 -https://www.oceanexpert.org/expert/46147 -https://www.oceanexpert.org/expert/39857 -https://www.oceanexpert.org/expert/46907 -https://www.oceanexpert.org/expert/46691 -https://www.oceanexpert.org/expert/43381 -https://www.oceanexpert.org/institution/10206 -https://www.oceanexpert.org/expert/13748 -https://www.oceanexpert.org/expert/26685 -https://www.oceanexpert.org/expert/43615 -https://www.oceanexpert.org/expert/24558 -https://www.oceanexpert.org/expert/40035 -https://www.oceanexpert.org/institution/10836 -https://www.oceanexpert.org/expert/31984 -https://www.oceanexpert.org/event/647 -https://www.oceanexpert.org/expert/25937 -https://www.oceanexpert.org/institution/8695 -https://www.oceanexpert.org/expert/48615 -https://www.oceanexpert.org/expert/46183 -https://www.oceanexpert.org/expert/45161 -https://www.oceanexpert.org/expert/46928 -https://www.oceanexpert.org/expert/19731 -https://www.oceanexpert.org/expert/40598 -https://www.oceanexpert.org/expert/23460 -https://www.oceanexpert.org/expert/26654 -https://www.oceanexpert.org/expert/13 -https://www.oceanexpert.org/expert/30447 -https://www.oceanexpert.org/institution/21428 -https://www.oceanexpert.org/expert/29507 -https://www.oceanexpert.org/expert/47103 -https://www.oceanexpert.org/expert/45495 -https://www.oceanexpert.org/event/1594 -https://www.oceanexpert.org/expert/46681 -https://www.oceanexpert.org/expert/24152 -https://www.oceanexpert.org/expert/16708 -https://www.oceanexpert.org/institution/19582 -https://www.oceanexpert.org/expert/37017 -https://www.oceanexpert.org/expert/38307 -https://www.oceanexpert.org/institution/21703 -https://www.oceanexpert.org/expert/38593 -https://www.oceanexpert.org/expert/41630 -https://www.oceanexpert.org/expert/46828 -https://www.oceanexpert.org/expert/12147 -https://www.oceanexpert.org/expert/44077 -https://www.oceanexpert.org/event/796 -https://www.oceanexpert.org/expert/7211 -https://www.oceanexpert.org/event/1172 -https://www.oceanexpert.org/expert/37332 -https://www.oceanexpert.org/expert/37070 -https://www.oceanexpert.org/expert/26313 -https://www.oceanexpert.org/institution/12919 -https://www.oceanexpert.org/event/1662 -https://www.oceanexpert.org/institution/17494 -https://www.oceanexpert.org/expert/11245 -https://www.oceanexpert.org/institution/17204 -https://www.oceanexpert.org/expert/31050 -https://www.oceanexpert.org/expert/26454 -https://www.oceanexpert.org/expert/26267 -https://www.oceanexpert.org/institution/13699 -https://www.oceanexpert.org/expert/18001 -https://www.oceanexpert.org/institution/7598 -https://www.oceanexpert.org/expert/653 -https://www.oceanexpert.org/institution/5408 -https://www.oceanexpert.org/expert/19220 -https://www.oceanexpert.org/institution/19522 -https://www.oceanexpert.org/expert/48038 -https://www.oceanexpert.org/expert/47132 -https://www.oceanexpert.org/expert/29297 -https://www.oceanexpert.org/expert/43611 -https://www.oceanexpert.org/expert/26669 -https://www.oceanexpert.org/expert/40598 -https://www.oceanexpert.org/event/937 -https://www.oceanexpert.org/event/873 -https://www.oceanexpert.org/expert/4343 -https://www.oceanexpert.org/event/228 -https://www.oceanexpert.org/expert/47459 -https://www.oceanexpert.org/institution/12593 -https://www.oceanexpert.org/expert/28845 -https://www.oceanexpert.org/expert/11744 -https://www.oceanexpert.org/expert/11072 -https://www.oceanexpert.org/expert/34543 -https://www.oceanexpert.org/expert/13905 -https://www.oceanexpert.org/institution/15795 -https://www.oceanexpert.org/expert/26206 -https://www.oceanexpert.org/institution/11520 -https://www.oceanexpert.org/expert/26723 -https://www.oceanexpert.org/institution/17343 -https://www.oceanexpert.org/institution/22087 -https://www.oceanexpert.org/expert/46620 -https://www.oceanexpert.org/expert/29594 -https://www.oceanexpert.org/institution/21585 -https://www.oceanexpert.org/expert/43782 -https://www.oceanexpert.org/expert/34269 -https://www.oceanexpert.org/institution/7139 -https://www.oceanexpert.org/institution/20935 -https://www.oceanexpert.org/expert/26177 -https://www.oceanexpert.org/event/2601 -https://www.oceanexpert.org/expert/48959 -https://www.oceanexpert.org/expert/48059 -https://www.oceanexpert.org/institution/19459 -https://www.oceanexpert.org/institution/5357 -https://www.oceanexpert.org/expert/27758 -https://www.oceanexpert.org/expert/20112 -https://www.oceanexpert.org/expert/44680 -https://www.oceanexpert.org/expert/23821 -https://www.oceanexpert.org/expert/32568 -https://www.oceanexpert.org/expert/25740 -https://www.oceanexpert.org/institution/19116 -https://www.oceanexpert.org/expert/36618 -https://www.oceanexpert.org/institution/21843 -https://www.oceanexpert.org/expert/32714 -https://www.oceanexpert.org/expert/3206 -https://www.oceanexpert.org/institution/18345 -https://www.oceanexpert.org/institution/17038 -https://www.oceanexpert.org/institution/17016 -https://www.oceanexpert.org/institution/19483 -https://www.oceanexpert.org/institution/14026 -https://www.oceanexpert.org/event/145 -https://www.oceanexpert.org/expert/16848 -https://www.oceanexpert.org/expert/24205 -https://www.oceanexpert.org/institution/21373 -https://www.oceanexpert.org/expert/40004 -https://www.oceanexpert.org/expert/29383 -https://www.oceanexpert.org/institution/14889 -https://www.oceanexpert.org/expert/29486 -https://www.oceanexpert.org/expert/19292 -https://www.oceanexpert.org/expert/27857 -https://www.oceanexpert.org/event/1509 -https://www.oceanexpert.org/expert/25868 -https://www.oceanexpert.org/expert/36711 -https://www.oceanexpert.org/expert/11557 -https://www.oceanexpert.org/expert/23131 -https://www.oceanexpert.org/expert/30252 -https://www.oceanexpert.org/institution/9727 -https://www.oceanexpert.org/event/3012 -https://www.oceanexpert.org/expert/20386 -https://www.oceanexpert.org/expert/15374 -https://www.oceanexpert.org/expert/17163 -https://www.oceanexpert.org/expert/46539 -https://www.oceanexpert.org/expert/33560 -https://www.oceanexpert.org/expert/24914 -https://www.oceanexpert.org/expert/26399 -https://www.oceanexpert.org/expert/19952 -https://www.oceanexpert.org/expert/27064 -https://www.oceanexpert.org/institution/16511 -https://www.oceanexpert.org/expert/34843 -https://www.oceanexpert.org/institution/10042 -https://www.oceanexpert.org/expert/29992 -https://www.oceanexpert.org/expert/32775 -https://www.oceanexpert.org/expert/48400 -https://www.oceanexpert.org/expert/43932 -https://www.oceanexpert.org/expert/20679 -https://www.oceanexpert.org/event/509 -https://www.oceanexpert.org/event/2674 -https://www.oceanexpert.org/institution/13276 -https://www.oceanexpert.org/expert/25556 -https://www.oceanexpert.org/expert/38449 -https://www.oceanexpert.org/expert/47160 -https://www.oceanexpert.org/expert/29741 -https://www.oceanexpert.org/expert/33761 -https://www.oceanexpert.org/expert/14299 -https://www.oceanexpert.org/event/1865 -https://www.oceanexpert.org/expert/27679 -https://www.oceanexpert.org/institution/9550 -https://www.oceanexpert.org/expert/20556 -https://www.oceanexpert.org/institution/18342 -https://www.oceanexpert.org/institution/20835 -https://www.oceanexpert.org/institution/12894 -https://www.oceanexpert.org/expert/46159 -https://www.oceanexpert.org/institution/10539 -https://www.oceanexpert.org/institution/7703 -https://www.oceanexpert.org/institution/22099 -https://www.oceanexpert.org/expert/35212 -https://www.oceanexpert.org/institution/19108 -https://www.oceanexpert.org/expert/28118 -https://www.oceanexpert.org/expert/45383 -https://www.oceanexpert.org/expert/21465 -https://www.oceanexpert.org/institution/17999 -https://www.oceanexpert.org/expert/18797 -https://www.oceanexpert.org/institution/20063 -https://www.oceanexpert.org/expert/11790 -https://www.oceanexpert.org/expert/15005 -https://www.oceanexpert.org/event/2227 -https://www.oceanexpert.org/expert/29853 -https://www.oceanexpert.org/expert/46310 -https://www.oceanexpert.org/expert/19483 -https://www.oceanexpert.org/expert/23939 -https://www.oceanexpert.org/expert/28423 -https://www.oceanexpert.org/expert/47063 -https://www.oceanexpert.org/event/2644 -https://www.oceanexpert.org/expert/39043 -https://www.oceanexpert.org/expert/23774 -https://www.oceanexpert.org/expert/24476 -https://www.oceanexpert.org/expert/32490 -https://www.oceanexpert.org/expert/20439 -https://www.oceanexpert.org/institution/17642 -https://www.oceanexpert.org/expert/31643 -https://www.oceanexpert.org/expert/13154 -https://www.oceanexpert.org/expert/32572 -https://www.oceanexpert.org/event/541 -https://www.oceanexpert.org/expert/25179 -https://www.oceanexpert.org/expert/43217 -https://www.oceanexpert.org/institution/12165 -https://www.oceanexpert.org/expert/32439 -https://www.oceanexpert.org/expert/18054 -https://www.oceanexpert.org/event/2492 -https://www.oceanexpert.org/expert/47435 -https://www.oceanexpert.org/expert/6798 -https://www.oceanexpert.org/institution/20266 -https://www.oceanexpert.org/expert/44383 -https://www.oceanexpert.org/expert/17826 -https://www.oceanexpert.org/institution/19926 -https://www.oceanexpert.org/event/1390 -https://www.oceanexpert.org/expert/10838 -https://www.oceanexpert.org/institution/18915 -https://www.oceanexpert.org/expert/7109 -https://www.oceanexpert.org/institution/11497 -https://www.oceanexpert.org/expert/23734 -https://www.oceanexpert.org/expert/43295 -https://www.oceanexpert.org/expert/22260 -https://www.oceanexpert.org/institution/8684 -https://www.oceanexpert.org/institution/17660 -https://www.oceanexpert.org/expert/37289 -https://www.oceanexpert.org/expert/35637 -https://www.oceanexpert.org/expert/23757 -https://www.oceanexpert.org/institution/20448 -https://www.oceanexpert.org/institution/14011 -https://www.oceanexpert.org/expert/43154 -https://www.oceanexpert.org/expert/26923 -https://www.oceanexpert.org/expert/45591 -https://www.oceanexpert.org/expert/42777 -https://www.oceanexpert.org/expert/24986 -https://www.oceanexpert.org/expert/21532 -https://www.oceanexpert.org/expert/43394 -https://www.oceanexpert.org/institution/18263 -https://www.oceanexpert.org/expert/13365 -https://www.oceanexpert.org/institution/13001 -https://www.oceanexpert.org/expert/11743 -https://www.oceanexpert.org/expert/25486 -https://www.oceanexpert.org/institution/20174 -https://www.oceanexpert.org/expert/18575 -https://www.oceanexpert.org/expert/33113 -https://www.oceanexpert.org/expert/34831 -https://www.oceanexpert.org/expert/24718 -https://www.oceanexpert.org/expert/24299 -https://www.oceanexpert.org/expert/24386 -https://www.oceanexpert.org/expert/47020 -https://www.oceanexpert.org/expert/38982 -https://www.oceanexpert.org/expert/36846 -https://www.oceanexpert.org/expert/24595 -https://www.oceanexpert.org/event/1866 -https://www.oceanexpert.org/expert/47314 -https://www.oceanexpert.org/event/998 -https://www.oceanexpert.org/expert/38660 -https://www.oceanexpert.org/institution/11423 -https://www.oceanexpert.org/expert/23998 -https://www.oceanexpert.org/institution/18143 -https://www.oceanexpert.org/expert/27793 -https://www.oceanexpert.org/institution/18803 -https://www.oceanexpert.org/expert/48660 -https://www.oceanexpert.org/expert/5239 -https://www.oceanexpert.org/expert/39337 -https://www.oceanexpert.org/institution/19315 -https://www.oceanexpert.org/institution/20624 -https://www.oceanexpert.org/expert/29777 -https://www.oceanexpert.org/expert/47854 -https://www.oceanexpert.org/expert/22236 -https://www.oceanexpert.org/expert/40661 -https://www.oceanexpert.org/expert/26077 -https://www.oceanexpert.org/expert/41993 -https://www.oceanexpert.org/expert/25655 -https://www.oceanexpert.org/institution/16643 -https://www.oceanexpert.org/event/1860 -https://www.oceanexpert.org/expert/24862 -https://www.oceanexpert.org/expert/25375 -https://www.oceanexpert.org/expert/25372 -https://www.oceanexpert.org/expert/26662 -https://www.oceanexpert.org/expert/22932 -https://www.oceanexpert.org/expert/35457 -https://www.oceanexpert.org/institution/19314 -https://www.oceanexpert.org/expert/34648 -https://www.oceanexpert.org/expert/24216 -https://www.oceanexpert.org/expert/16841 -https://www.oceanexpert.org/expert/17805 -https://www.oceanexpert.org/expert/17226 -https://www.oceanexpert.org/expert/26026 -https://www.oceanexpert.org/expert/28256 -https://www.oceanexpert.org/event/2348 -https://www.oceanexpert.org/expert/29488 -https://www.oceanexpert.org/expert/21029 -https://www.oceanexpert.org/expert/865 -https://www.oceanexpert.org/expert/23148 -https://www.oceanexpert.org/event/2123 -https://www.oceanexpert.org/institution/21311 -https://www.oceanexpert.org/institution/10745 -https://www.oceanexpert.org/expert/30080 -https://www.oceanexpert.org/expert/30043 -https://www.oceanexpert.org/expert/2388 -https://www.oceanexpert.org/event/1534 -https://www.oceanexpert.org/institution/20345 -https://www.oceanexpert.org/expert/4232 -https://www.oceanexpert.org/expert/38260 -https://www.oceanexpert.org/event/302 -https://www.oceanexpert.org/expert/24349 -https://www.oceanexpert.org/institution/17800 -https://www.oceanexpert.org/expert/36817 -https://www.oceanexpert.org/expert/46281 -https://www.oceanexpert.org/expert/20134 -https://www.oceanexpert.org/expert/25942 -https://www.oceanexpert.org/event/1539 -https://www.oceanexpert.org/event/744 -https://www.oceanexpert.org/expert/15513 -https://www.oceanexpert.org/expert/19971 -https://www.oceanexpert.org/expert/36837 -https://www.oceanexpert.org/expert/37748 -https://www.oceanexpert.org/expert/43284 -https://www.oceanexpert.org/institution/21872 -https://www.oceanexpert.org/expert/19235 -https://www.oceanexpert.org/expert/24665 -https://www.oceanexpert.org/expert/36015 -https://www.oceanexpert.org/expert/10150 -https://www.oceanexpert.org/expert/46533 -https://www.oceanexpert.org/expert/48065 -https://www.oceanexpert.org/expert/43016 -https://www.oceanexpert.org/expert/24530 -https://www.oceanexpert.org/expert/37936 -https://www.oceanexpert.org/institution/21401 -https://www.oceanexpert.org/expert/43724 -https://www.oceanexpert.org/event/2533 -https://www.oceanexpert.org/expert/22101 -https://www.oceanexpert.org/expert/10885 -https://www.oceanexpert.org/expert/31383 -https://www.oceanexpert.org/institution/15198 -https://www.oceanexpert.org/expert/35059 -https://www.oceanexpert.org/expert/33771 -https://www.oceanexpert.org/expert/26332 -https://www.oceanexpert.org/expert/18066 -https://www.oceanexpert.org/institution/12333 -https://www.oceanexpert.org/expert/25056 -https://www.oceanexpert.org/expert/37000 -https://www.oceanexpert.org/expert/11904 -https://www.oceanexpert.org/expert/32598 -https://www.oceanexpert.org/expert/16699 -https://www.oceanexpert.org/institution/67 -https://www.oceanexpert.org/expert/44471 -https://www.oceanexpert.org/expert/29075 -https://www.oceanexpert.org/expert/33050 -https://www.oceanexpert.org/expert/46760 -https://www.oceanexpert.org/institution/20137 -https://www.oceanexpert.org/event/205 -https://www.oceanexpert.org/institution/15452 -https://www.oceanexpert.org/expert/35207 -https://www.oceanexpert.org/expert/18397 -https://www.oceanexpert.org/institution/19518 -https://www.oceanexpert.org/expert/16614 -https://www.oceanexpert.org/expert/19188 -https://www.oceanexpert.org/institution/21152 -https://www.oceanexpert.org/institution/8093 -https://www.oceanexpert.org/institution/20602 -https://www.oceanexpert.org/expert/34511 -https://www.oceanexpert.org/expert/31373 -https://www.oceanexpert.org/expert/23538 -https://www.oceanexpert.org/expert/26463 -https://www.oceanexpert.org/event/1500 -https://www.oceanexpert.org/event/2422 -https://www.oceanexpert.org/institution/22172 -https://www.oceanexpert.org/expert/31651 -https://www.oceanexpert.org/expert/8656 -https://www.oceanexpert.org/expert/43566 -https://www.oceanexpert.org/expert/47140 -https://www.oceanexpert.org/expert/30405 -https://www.oceanexpert.org/expert/14991 -https://www.oceanexpert.org/expert/47756 -https://www.oceanexpert.org/institution/19516 -https://www.oceanexpert.org/institution/20964 -https://www.oceanexpert.org/expert/41 -https://www.oceanexpert.org/expert/35306 -https://www.oceanexpert.org/event/3114 -https://www.oceanexpert.org/expert/24636 -https://www.oceanexpert.org/expert/17735 -https://www.oceanexpert.org/expert/22190 -https://www.oceanexpert.org/expert/27495 -https://www.oceanexpert.org/expert/42930 -https://www.oceanexpert.org/expert/40312 -https://www.oceanexpert.org/expert/47871 -https://www.oceanexpert.org/expert/27883 -https://www.oceanexpert.org/expert/29964 -https://www.oceanexpert.org/expert/2480 -https://www.oceanexpert.org/expert/41325 -https://www.oceanexpert.org/expert/43873 -https://www.oceanexpert.org/institution/21153 -https://www.oceanexpert.org/expert/45406 -https://www.oceanexpert.org/institution/14256 -https://www.oceanexpert.org/expert/20877 -https://www.oceanexpert.org/expert/48848 -https://www.oceanexpert.org/expert/26088 -https://www.oceanexpert.org/expert/16092 -https://www.oceanexpert.org/institution/18347 -https://www.oceanexpert.org/expert/47728 -https://www.oceanexpert.org/expert/33270 -https://www.oceanexpert.org/expert/47185 -https://www.oceanexpert.org/expert/24519 -https://www.oceanexpert.org/expert/47959 -https://www.oceanexpert.org/institution/19544 -https://www.oceanexpert.org/expert/26394 -https://www.oceanexpert.org/institution/16218 -https://www.oceanexpert.org/expert/16762 -https://www.oceanexpert.org/expert/30765 -https://www.oceanexpert.org/expert/21124 -https://www.oceanexpert.org/expert/47749 -https://www.oceanexpert.org/expert/13854 -https://www.oceanexpert.org/expert/35567 -https://www.oceanexpert.org/expert/43560 -https://www.oceanexpert.org/expert/28147 -https://www.oceanexpert.org/institution/19017 -https://www.oceanexpert.org/institution/19228 -https://www.oceanexpert.org/institution/21968 -https://www.oceanexpert.org/expert/38413 -https://www.oceanexpert.org/expert/7460 -https://www.oceanexpert.org/expert/48670 -https://www.oceanexpert.org/institution/21910 -https://www.oceanexpert.org/expert/22452 -https://www.oceanexpert.org/expert/40059 -https://www.oceanexpert.org/institution/15610 -https://www.oceanexpert.org/event/2692 -https://www.oceanexpert.org/expert/43233 -https://www.oceanexpert.org/expert/25616 -https://www.oceanexpert.org/institution/18985 -https://www.oceanexpert.org/expert/46912 -https://www.oceanexpert.org/event/1782 -https://www.oceanexpert.org/expert/9173 -https://www.oceanexpert.org/expert/36805 -https://www.oceanexpert.org/expert/48607 -https://www.oceanexpert.org/expert/42907 -https://www.oceanexpert.org/institution/17186 -https://www.oceanexpert.org/institution/16217 -https://www.oceanexpert.org/expert/24439 -https://www.oceanexpert.org/expert/39720 -https://www.oceanexpert.org/expert/8812 -https://www.oceanexpert.org/expert/43663 -https://www.oceanexpert.org/event/1477 -https://www.oceanexpert.org/expert/23395 -https://www.oceanexpert.org/institution/19418 -https://www.oceanexpert.org/expert/4415 -https://www.oceanexpert.org/expert/22857 -https://www.oceanexpert.org/expert/43986 -https://www.oceanexpert.org/expert/49052 -https://www.oceanexpert.org/institution/18404 -https://www.oceanexpert.org/expert/35491 -https://www.oceanexpert.org/institution/13140 -https://www.oceanexpert.org/expert/8722 -https://www.oceanexpert.org/institution/15507 -https://www.oceanexpert.org/expert/47147 -https://www.oceanexpert.org/institution/21116 -https://www.oceanexpert.org/expert/21798 -https://www.oceanexpert.org/institution/19501 -https://www.oceanexpert.org/expert/34542 -https://www.oceanexpert.org/institution/14810 -https://www.oceanexpert.org/expert/46635 -https://www.oceanexpert.org/institution/15748 -https://www.oceanexpert.org/institution/13188 -https://www.oceanexpert.org/institution/6581 -https://www.oceanexpert.org/expert/36783 -https://www.oceanexpert.org/event/1432 -https://www.oceanexpert.org/expert/20861 -https://www.oceanexpert.org/expert/48274 -https://www.oceanexpert.org/expert/23449 -https://www.oceanexpert.org/expert/32552 -https://www.oceanexpert.org/expert/35642 -https://www.oceanexpert.org/event/3110 -https://www.oceanexpert.org/expert/44512 -https://www.oceanexpert.org/institution/15890 -https://www.oceanexpert.org/expert/23807 -https://www.oceanexpert.org/institution/12944 -https://www.oceanexpert.org/expert/32756 -https://www.oceanexpert.org/event/1297 -https://www.oceanexpert.org/expert/42614 -https://www.oceanexpert.org/institution/19384 -https://www.oceanexpert.org/institution/12762 -https://www.oceanexpert.org/event/1732 -https://www.oceanexpert.org/expert/35166 -https://www.oceanexpert.org/institution/14593 -https://www.oceanexpert.org/expert/24157 -https://www.oceanexpert.org/institution/21298 -https://www.oceanexpert.org/expert/26422 -https://www.oceanexpert.org/institution/20092 -https://www.oceanexpert.org/expert/26499 -https://www.oceanexpert.org/institution/20002 -https://www.oceanexpert.org/expert/48579 -https://www.oceanexpert.org/institution/20635 -https://www.oceanexpert.org/expert/27484 -https://www.oceanexpert.org/expert/47681 -https://www.oceanexpert.org/expert/29945 -https://www.oceanexpert.org/institution/15330 -https://www.oceanexpert.org/expert/10912 -https://www.oceanexpert.org/event/1494 -https://www.oceanexpert.org/institution/11916 -https://www.oceanexpert.org/expert/17974 -https://www.oceanexpert.org/expert/32703 -https://www.oceanexpert.org/institution/19043 -https://www.oceanexpert.org/event/334 -https://www.oceanexpert.org/expert/153 -https://www.oceanexpert.org/expert/44501 -https://www.oceanexpert.org/expert/15878 -https://www.oceanexpert.org/expert/11443 -https://www.oceanexpert.org/expert/24818 -https://www.oceanexpert.org/expert/14624 -https://www.oceanexpert.org/expert/28423 -https://www.oceanexpert.org/expert/37496 -https://www.oceanexpert.org/expert/31859 -https://www.oceanexpert.org/institution/13083 -https://www.oceanexpert.org/institution/5581 -https://www.oceanexpert.org/expert/26857 -https://www.oceanexpert.org/expert/30342 -https://www.oceanexpert.org/institution/19702 -https://www.oceanexpert.org/institution/21732 -https://www.oceanexpert.org/expert/24169 -https://www.oceanexpert.org/expert/43402 -https://www.oceanexpert.org/expert/25540 -https://www.oceanexpert.org/expert/16055 -https://www.oceanexpert.org/expert/18703 -https://www.oceanexpert.org/expert/5443 -https://www.oceanexpert.org/expert/48537 -https://www.oceanexpert.org/expert/22380 -https://www.oceanexpert.org/expert/13137 -https://www.oceanexpert.org/expert/14765 -https://www.oceanexpert.org/expert/46473 -https://www.oceanexpert.org/expert/16970 -https://www.oceanexpert.org/institution/18376 -https://www.oceanexpert.org/expert/32876 -https://www.oceanexpert.org/expert/24293 -https://www.oceanexpert.org/expert/43881 -https://www.oceanexpert.org/institution/10878 -https://www.oceanexpert.org/event/2774 -https://www.oceanexpert.org/institution/22128 -https://www.oceanexpert.org/expert/32583 -https://www.oceanexpert.org/expert/43974 -https://www.oceanexpert.org/expert/45693 -https://www.oceanexpert.org/expert/22726 -https://www.oceanexpert.org/institution/12394 -https://www.oceanexpert.org/expert/19498 -https://www.oceanexpert.org/expert/24532 -https://www.oceanexpert.org/expert/27335 -https://www.oceanexpert.org/expert/20558 -https://www.oceanexpert.org/expert/11744 -https://www.oceanexpert.org/expert/21661 -https://www.oceanexpert.org/institution/10613 -https://www.oceanexpert.org/expert/4540 -https://www.oceanexpert.org/expert/46210 -https://www.oceanexpert.org/event/832 -https://www.oceanexpert.org/expert/43040 -https://www.oceanexpert.org/expert/35859 -https://www.oceanexpert.org/expert/36408 -https://www.oceanexpert.org/expert/44259 -https://www.oceanexpert.org/expert/43263 -https://www.oceanexpert.org/expert/39328 -https://www.oceanexpert.org/institution/21680 -https://www.oceanexpert.org/expert/46954 -https://www.oceanexpert.org/expert/18017 -https://www.oceanexpert.org/expert/1240 -https://www.oceanexpert.org/expert/35350 -https://www.oceanexpert.org/expert/20376 -https://www.oceanexpert.org/expert/6344 -https://www.oceanexpert.org/institution/18763 -https://www.oceanexpert.org/expert/25786 -https://www.oceanexpert.org/expert/34413 -https://www.oceanexpert.org/expert/2326 -https://www.oceanexpert.org/institution/19664 -https://www.oceanexpert.org/expert/37388 -https://www.oceanexpert.org/institution/15025 -https://www.oceanexpert.org/institution/17772 -https://www.oceanexpert.org/expert/36647 -https://www.oceanexpert.org/expert/22830 -https://www.oceanexpert.org/institution/16886 -https://www.oceanexpert.org/expert/21079 -https://www.oceanexpert.org/institution/18206 -https://www.oceanexpert.org/institution/6505 -https://www.oceanexpert.org/event/2925 -https://www.oceanexpert.org/expert/25056 -https://www.oceanexpert.org/expert/11832 -https://www.oceanexpert.org/institution/18770 -https://www.oceanexpert.org/expert/44699 -https://www.oceanexpert.org/institution/21718 -https://www.oceanexpert.org/expert/19783 -https://www.oceanexpert.org/institution/18190 -https://www.oceanexpert.org/expert/26980 -https://www.oceanexpert.org/institution/19615 -https://www.oceanexpert.org/expert/28401 -https://www.oceanexpert.org/institution/21217 -https://www.oceanexpert.org/expert/26782 -https://www.oceanexpert.org/institution/12141 -https://www.oceanexpert.org/expert/18218 -https://www.oceanexpert.org/expert/22441 -https://www.oceanexpert.org/institution/5222 -https://www.oceanexpert.org/institution/15670 -https://www.oceanexpert.org/expert/12121 -https://www.oceanexpert.org/institution/21613 -https://www.oceanexpert.org/expert/31145 -https://www.oceanexpert.org/expert/26930 -https://www.oceanexpert.org/expert/45718 -https://www.oceanexpert.org/expert/25313 -https://www.oceanexpert.org/expert/16175 -https://www.oceanexpert.org/institution/20245 -https://www.oceanexpert.org/expert/3657 -https://www.oceanexpert.org/expert/26651 -https://www.oceanexpert.org/expert/33980 -https://www.oceanexpert.org/institution/16369 -https://www.oceanexpert.org/expert/9634 -https://www.oceanexpert.org/expert/216 -https://www.oceanexpert.org/expert/24782 -https://www.oceanexpert.org/institution/19724 -https://www.oceanexpert.org/event/286 -https://www.oceanexpert.org/expert/31941 -https://www.oceanexpert.org/institution/5242 -https://www.oceanexpert.org/institution/16456 -https://www.oceanexpert.org/expert/24116 -https://www.oceanexpert.org/expert/28193 -https://www.oceanexpert.org/expert/24914 -https://www.oceanexpert.org/event/846 -https://www.oceanexpert.org/expert/35278 -https://www.oceanexpert.org/expert/33709 -https://www.oceanexpert.org/institution/19117 -https://www.oceanexpert.org/institution/12181 -https://www.oceanexpert.org/expert/23305 -https://www.oceanexpert.org/expert/27588 -https://www.oceanexpert.org/expert/33027 -https://www.oceanexpert.org/expert/32019 -https://www.oceanexpert.org/institution/5976 -https://www.oceanexpert.org/expert/22692 -https://www.oceanexpert.org/institution/18541 -https://www.oceanexpert.org/event/450 -https://www.oceanexpert.org/institution/18157 -https://www.oceanexpert.org/institution/18558 -https://www.oceanexpert.org/institution/19209 -https://www.oceanexpert.org/expert/35471 -https://www.oceanexpert.org/expert/35497 -https://www.oceanexpert.org/event/473 -https://www.oceanexpert.org/expert/40258 -https://www.oceanexpert.org/event/2105 -https://www.oceanexpert.org/institution/11867 -https://www.oceanexpert.org/expert/43462 -https://www.oceanexpert.org/institution/19081 -https://www.oceanexpert.org/expert/8151 -https://www.oceanexpert.org/expert/47290 -https://www.oceanexpert.org/expert/22225 -https://www.oceanexpert.org/institution/21574 -https://www.oceanexpert.org/institution/20472 -https://www.oceanexpert.org/expert/37982 -https://www.oceanexpert.org/institution/19749 -https://www.oceanexpert.org/expert/45151 -https://www.oceanexpert.org/expert/27007 -https://www.oceanexpert.org/event/2238 -https://www.oceanexpert.org/expert/21200 -https://www.oceanexpert.org/expert/751 -https://www.oceanexpert.org/expert/27556 -https://www.oceanexpert.org/institution/9402 -https://www.oceanexpert.org/institution/21747 -https://www.oceanexpert.org/event/821 -https://www.oceanexpert.org/expert/27867 -https://www.oceanexpert.org/expert/12867 -https://www.oceanexpert.org/expert/20313 -https://www.oceanexpert.org/institution/6470 -https://www.oceanexpert.org/expert/42409 -https://www.oceanexpert.org/expert/27025 -https://www.oceanexpert.org/institution/11289 -https://www.oceanexpert.org/event/211 -https://www.oceanexpert.org/expert/16839 -https://www.oceanexpert.org/expert/46892 -https://www.oceanexpert.org/expert/37907 -https://www.oceanexpert.org/expert/19706 -https://www.oceanexpert.org/expert/46568 -https://www.oceanexpert.org/expert/21108 -https://www.oceanexpert.org/expert/48978 -https://www.oceanexpert.org/expert/45539 -https://www.oceanexpert.org/expert/44126 -https://www.oceanexpert.org/institution/13174 -https://www.oceanexpert.org/expert/37943 -https://www.oceanexpert.org/institution/20427 -https://www.oceanexpert.org/expert/7445 -https://www.oceanexpert.org/expert/39029 -https://www.oceanexpert.org/expert/32643 -https://www.oceanexpert.org/institution/19275 -https://www.oceanexpert.org/expert/45635 -https://www.oceanexpert.org/expert/36166 -https://www.oceanexpert.org/expert/18843 -https://www.oceanexpert.org/expert/34938 -https://www.oceanexpert.org/expert/19301 -https://www.oceanexpert.org/expert/6720 -https://www.oceanexpert.org/institution/17493 -https://www.oceanexpert.org/expert/32678 -https://www.oceanexpert.org/event/2977 -https://www.oceanexpert.org/institution/14932 -https://www.oceanexpert.org/expert/30214 -https://www.oceanexpert.org/event/2507 -https://www.oceanexpert.org/expert/45460 -https://www.oceanexpert.org/expert/26940 -https://www.oceanexpert.org/event/1866 -https://www.oceanexpert.org/institution/13189 -https://www.oceanexpert.org/expert/32243 -https://www.oceanexpert.org/expert/27285 -https://www.oceanexpert.org/institution/7932 -https://www.oceanexpert.org/expert/28302 -https://www.oceanexpert.org/institution/21866 -https://www.oceanexpert.org/expert/46181 -https://www.oceanexpert.org/expert/44046 -https://www.oceanexpert.org/expert/28425 -https://www.oceanexpert.org/expert/12409 -https://www.oceanexpert.org/event/446 -https://www.oceanexpert.org/institution/7027 -https://www.oceanexpert.org/institution/11203 -https://www.oceanexpert.org/expert/43075 -https://www.oceanexpert.org/expert/14825 -https://www.oceanexpert.org/expert/22983 -https://www.oceanexpert.org/expert/18805 -https://www.oceanexpert.org/expert/23785 -https://www.oceanexpert.org/expert/43169 -https://www.oceanexpert.org/expert/19373 -https://www.oceanexpert.org/institution/15397 -https://www.oceanexpert.org/expert/47770 -https://www.oceanexpert.org/expert/47755 -https://www.oceanexpert.org/event/1432 -https://www.oceanexpert.org/institution/18216 -https://www.oceanexpert.org/event/531 -https://www.oceanexpert.org/institution/18515 -https://www.oceanexpert.org/institution/13098 -https://www.oceanexpert.org/expert/25661 -https://www.oceanexpert.org/expert/18835 -https://www.oceanexpert.org/institution/20147 -https://www.oceanexpert.org/institution/18978 -https://www.oceanexpert.org/event/2264 -https://www.oceanexpert.org/expert/17349 -https://www.oceanexpert.org/expert/38331 -https://www.oceanexpert.org/expert/17129 -https://www.oceanexpert.org/institution/9267 -https://www.oceanexpert.org/expert/12992 -https://www.oceanexpert.org/expert/21804 -https://www.oceanexpert.org/expert/44848 -https://www.oceanexpert.org/event/1290 -https://www.oceanexpert.org/institution/7299 -https://www.oceanexpert.org/expert/45031 -https://www.oceanexpert.org/expert/22087 -https://www.oceanexpert.org/expert/43921 -https://www.oceanexpert.org/event/3040 -https://www.oceanexpert.org/expert/35277 -https://www.oceanexpert.org/institution/18635 -https://www.oceanexpert.org/expert/36860 -https://www.oceanexpert.org/expert/35264 -https://www.oceanexpert.org/expert/20885 -https://www.oceanexpert.org/expert/22017 -https://www.oceanexpert.org/expert/44806 -https://www.oceanexpert.org/expert/46415 -https://www.oceanexpert.org/event/830 -https://www.oceanexpert.org/institution/10315 -https://www.oceanexpert.org/institution/17690 -https://www.oceanexpert.org/expert/27696 -https://www.oceanexpert.org/expert/38537 -https://www.oceanexpert.org/institution/11592 -https://www.oceanexpert.org/expert/40882 -https://www.oceanexpert.org/expert/17037 -https://www.oceanexpert.org/expert/36269 -https://www.oceanexpert.org/expert/46033 -https://www.oceanexpert.org/expert/1144 -https://www.oceanexpert.org/event/2533 -https://www.oceanexpert.org/event/1667 -https://www.oceanexpert.org/expert/47548 -https://www.oceanexpert.org/institution/21007 -https://www.oceanexpert.org/expert/16638 -https://www.oceanexpert.org/expert/26394 -https://www.oceanexpert.org/event/2225 -https://www.oceanexpert.org/expert/29462 -https://www.oceanexpert.org/institution/13580 -https://www.oceanexpert.org/institution/18546 -https://www.oceanexpert.org/expert/11037 -https://www.oceanexpert.org/institution/8371 -https://www.oceanexpert.org/expert/19301 -https://www.oceanexpert.org/expert/8652 -https://www.oceanexpert.org/expert/17984 -https://www.oceanexpert.org/expert/37964 -https://www.oceanexpert.org/expert/20727 -https://www.oceanexpert.org/institution/16066 -https://www.oceanexpert.org/institution/18798 -https://www.oceanexpert.org/institution/12120 -https://www.oceanexpert.org/institution/13970 -https://www.oceanexpert.org/expert/47300 -https://www.oceanexpert.org/institution/15724 -https://www.oceanexpert.org/expert/40369 -https://www.oceanexpert.org/expert/23594 -https://www.oceanexpert.org/expert/23507 -https://www.oceanexpert.org/expert/45293 -https://www.oceanexpert.org/expert/20002 -https://www.oceanexpert.org/expert/39201 -https://www.oceanexpert.org/expert/37840 -https://www.oceanexpert.org/institution/13991 -https://www.oceanexpert.org/institution/21235 -https://www.oceanexpert.org/expert/19840 -https://www.oceanexpert.org/expert/24041 -https://www.oceanexpert.org/expert/26894 -https://www.oceanexpert.org/institution/22078 -https://www.oceanexpert.org/institution/12483 -https://www.oceanexpert.org/expert/22912 -https://www.oceanexpert.org/institution/8319 -https://www.oceanexpert.org/expert/18886 -https://www.oceanexpert.org/expert/21453 -https://www.oceanexpert.org/expert/28409 -https://www.oceanexpert.org/expert/19979 -https://www.oceanexpert.org/expert/7820 -https://www.oceanexpert.org/expert/22250 -https://www.oceanexpert.org/expert/44336 -https://www.oceanexpert.org/expert/21810 -https://www.oceanexpert.org/expert/7154 -https://www.oceanexpert.org/expert/47569 -https://www.oceanexpert.org/institution/11036 -https://www.oceanexpert.org/expert/45946 -https://www.oceanexpert.org/expert/19823 -https://www.oceanexpert.org/expert/38847 -https://www.oceanexpert.org/institution/19695 -https://www.oceanexpert.org/expert/16716 -https://www.oceanexpert.org/expert/21475 -https://www.oceanexpert.org/expert/37017 -https://www.oceanexpert.org/expert/15862 -https://www.oceanexpert.org/expert/37408 -https://www.oceanexpert.org/expert/42576 -https://www.oceanexpert.org/event/1739 -https://www.oceanexpert.org/event/1884 -https://www.oceanexpert.org/expert/47037 -https://www.oceanexpert.org/expert/47335 -https://www.oceanexpert.org/institution/12745 -https://www.oceanexpert.org/expert/38283 -https://www.oceanexpert.org/expert/46503 -https://www.oceanexpert.org/expert/27601 -https://www.oceanexpert.org/expert/23188 -https://www.oceanexpert.org/institution/20201 -https://www.oceanexpert.org/expert/22749 -https://www.oceanexpert.org/institution/9329 -https://www.oceanexpert.org/expert/17155 -https://www.oceanexpert.org/expert/21093 -https://www.oceanexpert.org/expert/24934 -https://www.oceanexpert.org/event/854 -https://www.oceanexpert.org/institution/19243 -https://www.oceanexpert.org/expert/21852 -https://www.oceanexpert.org/institution/10288 -https://www.oceanexpert.org/institution/21709 -https://www.oceanexpert.org/expert/47927 -https://www.oceanexpert.org/expert/17913 -https://www.oceanexpert.org/expert/20672 -https://www.oceanexpert.org/expert/47246 -https://www.oceanexpert.org/institution/22027 -https://www.oceanexpert.org/event/1051 -https://www.oceanexpert.org/institution/18762 -https://www.oceanexpert.org/expert/26481 -https://www.oceanexpert.org/event/3050 -https://www.oceanexpert.org/expert/1253 -https://www.oceanexpert.org/expert/25755 -https://www.oceanexpert.org/institution/21025 -https://www.oceanexpert.org/institution/19744 -https://www.oceanexpert.org/expert/21933 -https://www.oceanexpert.org/expert/24400 -https://www.oceanexpert.org/expert/21047 -https://www.oceanexpert.org/expert/39981 -https://www.oceanexpert.org/expert/47057 -https://www.oceanexpert.org/expert/22107 -https://www.oceanexpert.org/expert/28086 -https://www.oceanexpert.org/expert/44682 -https://www.oceanexpert.org/expert/45286 -https://www.oceanexpert.org/expert/26323 -https://www.oceanexpert.org/expert/30185 -https://www.oceanexpert.org/institution/19056 -https://www.oceanexpert.org/institution/8393 -https://www.oceanexpert.org/institution/21901 -https://www.oceanexpert.org/expert/47727 -https://www.oceanexpert.org/expert/12755 -https://www.oceanexpert.org/expert/6691 -https://www.oceanexpert.org/expert/43937 -https://www.oceanexpert.org/institution/20125 -https://www.oceanexpert.org/expert/46394 -https://www.oceanexpert.org/expert/45566 -https://www.oceanexpert.org/expert/41292 -https://www.oceanexpert.org/institution/15701 -https://www.oceanexpert.org/event/1791 -https://www.oceanexpert.org/expert/39596 -https://www.oceanexpert.org/institution/18740 -https://www.oceanexpert.org/expert/33376 -https://www.oceanexpert.org/institution/22163 -https://www.oceanexpert.org/institution/14833 -https://www.oceanexpert.org/institution/21904 -https://www.oceanexpert.org/institution/20831 -https://www.oceanexpert.org/expert/17473 -https://www.oceanexpert.org/event/2502 -https://www.oceanexpert.org/institution/9014 -https://www.oceanexpert.org/expert/20493 -https://www.oceanexpert.org/institution/6973 -https://www.oceanexpert.org/expert/32561 -https://www.oceanexpert.org/institution/21227 -https://www.oceanexpert.org/expert/20544 -https://www.oceanexpert.org/event/2716 -https://www.oceanexpert.org/expert/47027 -https://www.oceanexpert.org/expert/25188 -https://www.oceanexpert.org/institution/21797 -https://www.oceanexpert.org/expert/41933 -https://www.oceanexpert.org/institution/21316 -https://www.oceanexpert.org/expert/23786 -https://www.oceanexpert.org/institution/6023 -https://www.oceanexpert.org/institution/12633 -https://www.oceanexpert.org/expert/24733 -https://www.oceanexpert.org/expert/26725 -https://www.oceanexpert.org/expert/20082 -https://www.oceanexpert.org/institution/15716 -https://www.oceanexpert.org/institution/13985 -https://www.oceanexpert.org/institution/16972 -https://www.oceanexpert.org/institution/22073 -https://www.oceanexpert.org/expert/45527 -https://www.oceanexpert.org/expert/43524 -https://www.oceanexpert.org/institution/8813 -https://www.oceanexpert.org/expert/27969 -https://www.oceanexpert.org/expert/24865 -https://www.oceanexpert.org/expert/36447 -https://www.oceanexpert.org/expert/27548 -https://www.oceanexpert.org/institution/15334 -https://www.oceanexpert.org/institution/18586 -https://www.oceanexpert.org/expert/38605 -https://www.oceanexpert.org/expert/33940 -https://www.oceanexpert.org/expert/27390 -https://www.oceanexpert.org/expert/17917 -https://www.oceanexpert.org/expert/45025 -https://www.oceanexpert.org/expert/21933 -https://www.oceanexpert.org/expert/44640 -https://www.oceanexpert.org/expert/32362 -https://www.oceanexpert.org/expert/31989 -https://www.oceanexpert.org/expert/46542 -https://www.oceanexpert.org/institution/12720 -https://www.oceanexpert.org/expert/22374 -https://www.oceanexpert.org/expert/35799 -https://www.oceanexpert.org/expert/25879 -https://www.oceanexpert.org/institution/13168 -https://www.oceanexpert.org/expert/45446 -https://www.oceanexpert.org/expert/2553 -https://www.oceanexpert.org/institution/12598 -https://www.oceanexpert.org/expert/43895 -https://www.oceanexpert.org/expert/24514 -https://www.oceanexpert.org/event/2448 -https://www.oceanexpert.org/event/2440 -https://www.oceanexpert.org/expert/1192 -https://www.oceanexpert.org/expert/26980 -https://www.oceanexpert.org/expert/43280 -https://www.oceanexpert.org/institution/20769 -https://www.oceanexpert.org/expert/27167 -https://www.oceanexpert.org/event/1471 -https://www.oceanexpert.org/expert/33514 -https://www.oceanexpert.org/expert/32984 -https://www.oceanexpert.org/expert/35973 -https://www.oceanexpert.org/institution/19150 -https://www.oceanexpert.org/expert/19457 -https://www.oceanexpert.org/expert/44402 -https://www.oceanexpert.org/expert/43388 -https://www.oceanexpert.org/expert/8026 -https://www.oceanexpert.org/expert/34422 -https://www.oceanexpert.org/expert/45374 -https://www.oceanexpert.org/institution/14411 -https://www.oceanexpert.org/expert/47871 -https://www.oceanexpert.org/expert/48727 -https://www.oceanexpert.org/expert/26470 -https://www.oceanexpert.org/expert/37709 -https://www.oceanexpert.org/institution/21693 -https://www.oceanexpert.org/expert/32326 -https://www.oceanexpert.org/expert/33228 -https://www.oceanexpert.org/expert/37646 -https://www.oceanexpert.org/institution/13157 -https://www.oceanexpert.org/institution/22140 -https://www.oceanexpert.org/expert/7990 -https://www.oceanexpert.org/expert/34013 -https://www.oceanexpert.org/expert/38883 -https://www.oceanexpert.org/expert/45759 -https://www.oceanexpert.org/expert/30871 -https://www.oceanexpert.org/expert/13327 -https://www.oceanexpert.org/event/1878 -https://www.oceanexpert.org/institution/14003 -https://www.oceanexpert.org/institution/18640 -https://www.oceanexpert.org/expert/35222 -https://www.oceanexpert.org/expert/46765 -https://www.oceanexpert.org/institution/10337 -https://www.oceanexpert.org/expert/18828 -https://www.oceanexpert.org/expert/15899 -https://www.oceanexpert.org/expert/30308 -https://www.oceanexpert.org/event/3256 -https://www.oceanexpert.org/event/1568 -https://www.oceanexpert.org/institution/17014 -https://www.oceanexpert.org/expert/39972 -https://www.oceanexpert.org/expert/29122 -https://www.oceanexpert.org/expert/22844 -https://www.oceanexpert.org/expert/48482 -https://www.oceanexpert.org/expert/28259 -https://www.oceanexpert.org/expert/12997 -https://www.oceanexpert.org/expert/34847 -https://www.oceanexpert.org/institution/18507 -https://www.oceanexpert.org/expert/31509 -https://www.oceanexpert.org/expert/27579 -https://www.oceanexpert.org/expert/39164 -https://www.oceanexpert.org/expert/39583 -https://www.oceanexpert.org/institution/8296 -https://www.oceanexpert.org/expert/48565 -https://www.oceanexpert.org/expert/4342 -https://www.oceanexpert.org/expert/44183 -https://www.oceanexpert.org/institution/19488 -https://www.oceanexpert.org/expert/26245 -https://www.oceanexpert.org/expert/37392 -https://www.oceanexpert.org/expert/11506 -https://www.oceanexpert.org/institution/12398 -https://www.oceanexpert.org/expert/21830 -https://www.oceanexpert.org/expert/2321 -https://www.oceanexpert.org/expert/44419 -https://www.oceanexpert.org/expert/45334 -https://www.oceanexpert.org/expert/25437 -https://www.oceanexpert.org/event/861 -https://www.oceanexpert.org/expert/29829 -https://www.oceanexpert.org/expert/17045 -https://www.oceanexpert.org/expert/39299 -https://www.oceanexpert.org/expert/48041 -https://www.oceanexpert.org/event/2249 -https://www.oceanexpert.org/expert/39372 -https://www.oceanexpert.org/institution/12947 -https://www.oceanexpert.org/expert/44693 -https://www.oceanexpert.org/institution/15893 -https://www.oceanexpert.org/event/1937 -https://www.oceanexpert.org/expert/38399 -https://www.oceanexpert.org/expert/38608 -https://www.oceanexpert.org/expert/22324 -https://www.oceanexpert.org/expert/48421 -https://www.oceanexpert.org/expert/46770 -https://www.oceanexpert.org/expert/27253 -https://www.oceanexpert.org/institution/13959 -https://www.oceanexpert.org/expert/19238 -https://www.oceanexpert.org/expert/44378 -https://www.oceanexpert.org/expert/18758 -https://www.oceanexpert.org/expert/44508 -https://www.oceanexpert.org/expert/20124 -https://www.oceanexpert.org/institution/10394 -https://www.oceanexpert.org/expert/36172 -https://www.oceanexpert.org/institution/21236 -https://www.oceanexpert.org/expert/35751 -https://www.oceanexpert.org/expert/11656 -https://www.oceanexpert.org/expert/24231 -https://www.oceanexpert.org/expert/19461 -https://www.oceanexpert.org/expert/25256 -https://www.oceanexpert.org/expert/38324 -https://www.oceanexpert.org/expert/6904 -https://www.oceanexpert.org/expert/37435 -https://www.oceanexpert.org/institution/20693 -https://www.oceanexpert.org/expert/27245 -https://www.oceanexpert.org/institution/6332 -https://www.oceanexpert.org/expert/18654 -https://www.oceanexpert.org/expert/39803 -https://www.oceanexpert.org/expert/23142 -https://www.oceanexpert.org/institution/21633 -https://www.oceanexpert.org/expert/161 -https://www.oceanexpert.org/expert/26123 -https://www.oceanexpert.org/event/813 -https://www.oceanexpert.org/event/871 -https://www.oceanexpert.org/expert/11061 -https://www.oceanexpert.org/institution/5788 -https://www.oceanexpert.org/expert/34353 -https://www.oceanexpert.org/event/854 -https://www.oceanexpert.org/expert/578 -https://www.oceanexpert.org/expert/13663 -https://www.oceanexpert.org/expert/22375 -https://www.oceanexpert.org/expert/32886 -https://www.oceanexpert.org/institution/13948 -https://www.oceanexpert.org/expert/25077 -https://www.oceanexpert.org/expert/6462 -https://www.oceanexpert.org/institution/20369 -https://www.oceanexpert.org/expert/43978 -https://www.oceanexpert.org/event/1658 -https://www.oceanexpert.org/expert/18569 -https://www.oceanexpert.org/expert/26172 -https://www.oceanexpert.org/expert/6968 -https://www.oceanexpert.org/expert/23726 -https://www.oceanexpert.org/expert/38075 -https://www.oceanexpert.org/expert/18901 -https://www.oceanexpert.org/institution/10649 -https://www.oceanexpert.org/institution/18651 -https://www.oceanexpert.org/expert/36801 -https://www.oceanexpert.org/expert/43226 -https://www.oceanexpert.org/expert/17336 -https://www.oceanexpert.org/institution/17948 -https://www.oceanexpert.org/expert/8145 -https://www.oceanexpert.org/expert/32874 -https://www.oceanexpert.org/expert/30664 -https://www.oceanexpert.org/expert/22429 -https://www.oceanexpert.org/expert/47954 -https://www.oceanexpert.org/expert/23133 -https://www.oceanexpert.org/event/206 -https://www.oceanexpert.org/expert/12697 -https://www.oceanexpert.org/expert/6053 -https://www.oceanexpert.org/institution/13759 -https://www.oceanexpert.org/expert/34677 -https://www.oceanexpert.org/expert/43374 -https://www.oceanexpert.org/expert/20476 -https://www.oceanexpert.org/expert/16697 -https://www.oceanexpert.org/event/1709 -https://www.oceanexpert.org/expert/21400 -https://www.oceanexpert.org/event/37 -https://www.oceanexpert.org/expert/40555 -https://www.oceanexpert.org/institution/19224 -https://www.oceanexpert.org/expert/19629 -https://www.oceanexpert.org/expert/26214 -https://www.oceanexpert.org/institution/6445 -https://www.oceanexpert.org/expert/19368 -https://www.oceanexpert.org/expert/26313 -https://www.oceanexpert.org/expert/43599 -https://www.oceanexpert.org/expert/4095 -https://www.oceanexpert.org/institution/12635 -https://www.oceanexpert.org/expert/35726 -https://www.oceanexpert.org/expert/21780 -https://www.oceanexpert.org/expert/24973 -https://www.oceanexpert.org/expert/36412 -https://www.oceanexpert.org/institution/5485 -https://www.oceanexpert.org/expert/36618 -https://www.oceanexpert.org/institution/21794 -https://www.oceanexpert.org/expert/42794 -https://www.oceanexpert.org/expert/48711 -https://www.oceanexpert.org/expert/26853 -https://www.oceanexpert.org/expert/26736 -https://www.oceanexpert.org/institution/21765 -https://www.oceanexpert.org/expert/25720 -https://www.oceanexpert.org/expert/31872 -https://www.oceanexpert.org/expert/23089 -https://www.oceanexpert.org/event/1465 -https://www.oceanexpert.org/institution/10267 -https://www.oceanexpert.org/institution/5581 -https://www.oceanexpert.org/institution/17291 -https://www.oceanexpert.org/expert/25824 -https://www.oceanexpert.org/institution/20451 -https://www.oceanexpert.org/event/399 -https://www.oceanexpert.org/expert/45779 -https://www.oceanexpert.org/expert/36930 -https://www.oceanexpert.org/event/769 -https://www.oceanexpert.org/expert/27543 -https://www.oceanexpert.org/expert/1819 -https://www.oceanexpert.org/expert/24655 -https://www.oceanexpert.org/institution/7413 -https://www.oceanexpert.org/expert/35430 -https://www.oceanexpert.org/event/2050 -https://www.oceanexpert.org/expert/17432 -https://www.oceanexpert.org/institution/18578 -https://www.oceanexpert.org/institution/22052 -https://www.oceanexpert.org/expert/38260 -https://www.oceanexpert.org/institution/8376 -https://www.oceanexpert.org/expert/25258 -https://www.oceanexpert.org/expert/17845 -https://www.oceanexpert.org/expert/12646 -https://www.oceanexpert.org/event/1757 -https://www.oceanexpert.org/expert/43968 -https://www.oceanexpert.org/expert/30103 -https://www.oceanexpert.org/expert/37072 -https://www.oceanexpert.org/institution/17270 -https://www.oceanexpert.org/expert/16632 -https://www.oceanexpert.org/expert/42977 -https://www.oceanexpert.org/expert/16704 -https://www.oceanexpert.org/expert/17597 -https://www.oceanexpert.org/expert/2923 -https://www.oceanexpert.org/expert/43816 -https://www.oceanexpert.org/expert/48310 -https://www.oceanexpert.org/institution/18289 -https://www.oceanexpert.org/event/322 -https://www.oceanexpert.org/expert/12122 -https://www.oceanexpert.org/institution/20451 -https://www.oceanexpert.org/institution/9238 -https://www.oceanexpert.org/expert/44724 -https://www.oceanexpert.org/expert/29555 -https://www.oceanexpert.org/institution/19884 -https://www.oceanexpert.org/expert/27415 -https://www.oceanexpert.org/institution/20970 -https://www.oceanexpert.org/expert/31124 -https://www.oceanexpert.org/expert/42593 -https://www.oceanexpert.org/institution/13030 -https://www.oceanexpert.org/expert/24782 -https://www.oceanexpert.org/expert/22567 -https://www.oceanexpert.org/institution/13682 -https://www.oceanexpert.org/expert/112 -https://www.oceanexpert.org/event/1029 -https://www.oceanexpert.org/expert/22243 -https://www.oceanexpert.org/expert/22592 -https://www.oceanexpert.org/expert/38177 -https://www.oceanexpert.org/institution/12070 -https://www.oceanexpert.org/expert/38174 -https://www.oceanexpert.org/expert/27134 -https://www.oceanexpert.org/expert/46686 -https://www.oceanexpert.org/expert/18723 -https://www.oceanexpert.org/expert/13187 -https://www.oceanexpert.org/expert/18175 -https://www.oceanexpert.org/expert/36478 -https://www.oceanexpert.org/expert/17262 -https://www.oceanexpert.org/expert/36961 -https://www.oceanexpert.org/expert/43576 -https://www.oceanexpert.org/expert/11282 -https://www.oceanexpert.org/expert/47292 -https://www.oceanexpert.org/event/2670 -https://www.oceanexpert.org/expert/33603 -https://www.oceanexpert.org/expert/24496 -https://www.oceanexpert.org/expert/24587 -https://www.oceanexpert.org/expert/35072 -https://www.oceanexpert.org/institution/15108 -https://www.oceanexpert.org/institution/19465 -https://www.oceanexpert.org/institution/20707 -https://www.oceanexpert.org/institution/11773 -https://www.oceanexpert.org/expert/17198 -https://www.oceanexpert.org/institution/17798 -https://www.oceanexpert.org/event/3099 -https://www.oceanexpert.org/expert/17490 -https://www.oceanexpert.org/institution/17956 -https://www.oceanexpert.org/expert/1998 -https://www.oceanexpert.org/expert/28233 -https://www.oceanexpert.org/expert/29513 -https://www.oceanexpert.org/expert/27433 -https://www.oceanexpert.org/expert/46686 -https://www.oceanexpert.org/institution/6836 -https://www.oceanexpert.org/expert/19890 -https://www.oceanexpert.org/expert/47287 -https://www.oceanexpert.org/expert/20336 -https://www.oceanexpert.org/expert/25341 -https://www.oceanexpert.org/expert/26076 -https://www.oceanexpert.org/expert/18359 -https://www.oceanexpert.org/expert/12324 -https://www.oceanexpert.org/expert/18256 -https://www.oceanexpert.org/expert/45608 -https://www.oceanexpert.org/institution/17884 -https://www.oceanexpert.org/expert/42538 -https://www.oceanexpert.org/institution/15270 -https://www.oceanexpert.org/expert/37177 -https://www.oceanexpert.org/expert/45036 -https://www.oceanexpert.org/expert/19512 -https://www.oceanexpert.org/expert/9177 -https://www.oceanexpert.org/expert/4752 -https://www.oceanexpert.org/expert/42960 -https://www.oceanexpert.org/expert/24726 -https://www.oceanexpert.org/expert/27121 -https://www.oceanexpert.org/institution/18790 -https://www.oceanexpert.org/expert/35057 -https://www.oceanexpert.org/expert/36329 -https://www.oceanexpert.org/expert/21981 -https://www.oceanexpert.org/expert/45028 -https://www.oceanexpert.org/expert/37411 -https://www.oceanexpert.org/expert/26329 -https://www.oceanexpert.org/expert/38292 -https://www.oceanexpert.org/expert/14507 -https://www.oceanexpert.org/expert/38301 -https://www.oceanexpert.org/institution/19878 -https://www.oceanexpert.org/expert/23292 -https://www.oceanexpert.org/expert/46322 -https://www.oceanexpert.org/expert/14883 -https://www.oceanexpert.org/institution/10076 -https://www.oceanexpert.org/institution/20962 -https://www.oceanexpert.org/expert/25476 -https://www.oceanexpert.org/institution/21231 -https://www.oceanexpert.org/institution/20571 -https://www.oceanexpert.org/expert/46916 -https://www.oceanexpert.org/expert/48491 -https://www.oceanexpert.org/expert/43073 -https://www.oceanexpert.org/expert/25652 -https://www.oceanexpert.org/expert/43533 -https://www.oceanexpert.org/institution/15313 -https://www.oceanexpert.org/expert/20870 -https://www.oceanexpert.org/expert/14098 -https://www.oceanexpert.org/expert/11482 -https://www.oceanexpert.org/expert/21725 -https://www.oceanexpert.org/expert/4424 -https://www.oceanexpert.org/expert/43113 -https://www.oceanexpert.org/expert/46895 -https://www.oceanexpert.org/expert/24478 -https://www.oceanexpert.org/institution/17621 -https://www.oceanexpert.org/expert/35585 -https://www.oceanexpert.org/expert/38106 -https://www.oceanexpert.org/expert/30287 -https://www.oceanexpert.org/expert/26991 -https://www.oceanexpert.org/expert/44718 -https://www.oceanexpert.org/institution/22153 -https://www.oceanexpert.org/expert/33343 -https://www.oceanexpert.org/expert/35735 -https://www.oceanexpert.org/event/2692 -https://www.oceanexpert.org/expert/43068 -https://www.oceanexpert.org/expert/28427 -https://www.oceanexpert.org/institution/18591 -https://www.oceanexpert.org/expert/45708 -https://www.oceanexpert.org/institution/18701 -https://www.oceanexpert.org/institution/14891 -https://www.oceanexpert.org/expert/45023 -https://www.oceanexpert.org/expert/20116 -https://www.oceanexpert.org/institution/18674 -https://www.oceanexpert.org/institution/13591 -https://www.oceanexpert.org/expert/25205 -https://www.oceanexpert.org/expert/7123 -https://www.oceanexpert.org/event/370 -https://www.oceanexpert.org/expert/16822 -https://www.oceanexpert.org/expert/29111 -https://www.oceanexpert.org/expert/48674 -https://www.oceanexpert.org/institution/20003 -https://www.oceanexpert.org/institution/20459 -https://www.oceanexpert.org/expert/24911 -https://www.oceanexpert.org/institution/22098 -https://www.oceanexpert.org/expert/17208 -https://www.oceanexpert.org/institution/14366 -https://www.oceanexpert.org/event/2154 -https://www.oceanexpert.org/expert/15495 -https://www.oceanexpert.org/expert/44613 -https://www.oceanexpert.org/expert/43196 -https://www.oceanexpert.org/expert/14784 -https://www.oceanexpert.org/event/259 -https://www.oceanexpert.org/institution/12107 -https://www.oceanexpert.org/expert/9039 -https://www.oceanexpert.org/expert/31056 -https://www.oceanexpert.org/expert/25438 -https://www.oceanexpert.org/expert/41834 -https://www.oceanexpert.org/institution/14045 -https://www.oceanexpert.org/expert/52 -https://www.oceanexpert.org/institution/14266 -https://www.oceanexpert.org/event/256 -https://www.oceanexpert.org/event/758 -https://www.oceanexpert.org/expert/22654 -https://www.oceanexpert.org/expert/20111 -https://www.oceanexpert.org/expert/24605 -https://www.oceanexpert.org/institution/11371 -https://www.oceanexpert.org/expert/42493 -https://www.oceanexpert.org/expert/3504 -https://www.oceanexpert.org/expert/23272 -https://www.oceanexpert.org/institution/19258 -https://www.oceanexpert.org/expert/22647 -https://www.oceanexpert.org/institution/15076 -https://www.oceanexpert.org/expert/45803 -https://www.oceanexpert.org/institution/13580 -https://www.oceanexpert.org/expert/32875 -https://www.oceanexpert.org/event/1125 -https://www.oceanexpert.org/expert/23511 -https://www.oceanexpert.org/institution/21723 -https://www.oceanexpert.org/expert/27321 -https://www.oceanexpert.org/event/1078 -https://www.oceanexpert.org/expert/27362 -https://www.oceanexpert.org/institution/20094 -https://www.oceanexpert.org/expert/38916 -https://www.oceanexpert.org/institution/18568 -https://www.oceanexpert.org/event/323 -https://www.oceanexpert.org/institution/21448 -https://www.oceanexpert.org/expert/48028 -https://www.oceanexpert.org/expert/46744 -https://www.oceanexpert.org/expert/16069 -https://www.oceanexpert.org/expert/24132 -https://www.oceanexpert.org/expert/21913 -https://www.oceanexpert.org/expert/34413 -https://www.oceanexpert.org/event/1889 -https://www.oceanexpert.org/institution/16228 -https://www.oceanexpert.org/expert/2798 -https://www.oceanexpert.org/expert/29640 -https://www.oceanexpert.org/expert/37779 -https://www.oceanexpert.org/institution/21170 -https://www.oceanexpert.org/expert/21894 -https://www.oceanexpert.org/expert/22410 -https://www.oceanexpert.org/expert/25805 -https://www.oceanexpert.org/expert/39633 -https://www.oceanexpert.org/expert/46322 -https://www.oceanexpert.org/expert/27216 -https://www.oceanexpert.org/event/710 -https://www.oceanexpert.org/expert/28375 -https://www.oceanexpert.org/event/877 -https://www.oceanexpert.org/expert/18564 -https://www.oceanexpert.org/expert/45788 -https://www.oceanexpert.org/expert/30647 -https://www.oceanexpert.org/expert/39300 -https://www.oceanexpert.org/institution/8140 -https://www.oceanexpert.org/expert/17942 -https://www.oceanexpert.org/expert/23910 -https://www.oceanexpert.org/expert/23252 -https://www.oceanexpert.org/institution/16698 -https://www.oceanexpert.org/institution/10573 -https://www.oceanexpert.org/expert/27085 -https://www.oceanexpert.org/expert/529 -https://www.oceanexpert.org/expert/13710 -https://www.oceanexpert.org/expert/15837 -https://www.oceanexpert.org/expert/27770 -https://www.oceanexpert.org/expert/36023 -https://www.oceanexpert.org/expert/7006 -https://www.oceanexpert.org/expert/45197 -https://www.oceanexpert.org/expert/44426 -https://www.oceanexpert.org/institution/21542 -https://www.oceanexpert.org/expert/44819 -https://www.oceanexpert.org/institution/17785 -https://www.oceanexpert.org/institution/21833 -https://www.oceanexpert.org/expert/45700 -https://www.oceanexpert.org/institution/19318 -https://www.oceanexpert.org/institution/19351 -https://www.oceanexpert.org/expert/42785 -https://www.oceanexpert.org/institution/13992 -https://www.oceanexpert.org/institution/18137 -https://www.oceanexpert.org/expert/7657 -https://www.oceanexpert.org/expert/35435 -https://www.oceanexpert.org/expert/39802 -https://www.oceanexpert.org/institution/18295 -https://www.oceanexpert.org/expert/38257 -https://www.oceanexpert.org/event/2258 -https://www.oceanexpert.org/event/1874 -https://www.oceanexpert.org/institution/17865 -https://www.oceanexpert.org/event/950 -https://www.oceanexpert.org/expert/30531 -https://www.oceanexpert.org/expert/25659 -https://www.oceanexpert.org/expert/22542 -https://www.oceanexpert.org/expert/46220 -https://www.oceanexpert.org/event/3107 -https://www.oceanexpert.org/expert/32306 -https://www.oceanexpert.org/event/2022 -https://www.oceanexpert.org/expert/43238 -https://www.oceanexpert.org/expert/48973 -https://www.oceanexpert.org/institution/18238 -https://www.oceanexpert.org/institution/5836 -https://www.oceanexpert.org/event/2765 -https://www.oceanexpert.org/expert/24219 -https://www.oceanexpert.org/expert/39615 -https://www.oceanexpert.org/expert/24650 -https://www.oceanexpert.org/expert/30190 -https://www.oceanexpert.org/expert/20508 -https://www.oceanexpert.org/expert/48659 -https://www.oceanexpert.org/institution/14400 -https://www.oceanexpert.org/expert/21177 -https://www.oceanexpert.org/expert/25936 -https://www.oceanexpert.org/expert/15925 -https://www.oceanexpert.org/institution/19701 -https://www.oceanexpert.org/institution/18165 -https://www.oceanexpert.org/expert/36513 -https://www.oceanexpert.org/institution/11533 -https://www.oceanexpert.org/event/1666 -https://www.oceanexpert.org/expert/26733 -https://www.oceanexpert.org/expert/46846 -https://www.oceanexpert.org/expert/41227 -https://www.oceanexpert.org/institution/13948 -https://www.oceanexpert.org/expert/24204 -https://www.oceanexpert.org/institution/17457 -https://www.oceanexpert.org/expert/38464 -https://www.oceanexpert.org/expert/30384 -https://www.oceanexpert.org/expert/24988 -https://www.oceanexpert.org/expert/27481 -https://www.oceanexpert.org/expert/32861 -https://www.oceanexpert.org/expert/25318 -https://www.oceanexpert.org/expert/21047 -https://www.oceanexpert.org/expert/45373 -https://www.oceanexpert.org/event/35 -https://www.oceanexpert.org/expert/46828 -https://www.oceanexpert.org/expert/33811 -https://www.oceanexpert.org/institution/19123 -https://www.oceanexpert.org/institution/18062 -https://www.oceanexpert.org/expert/43927 -https://www.oceanexpert.org/expert/49000 -https://www.oceanexpert.org/expert/44090 -https://www.oceanexpert.org/expert/22504 -https://www.oceanexpert.org/institution/21187 -https://www.oceanexpert.org/expert/47802 -https://www.oceanexpert.org/institution/21614 -https://www.oceanexpert.org/institution/21930 -https://www.oceanexpert.org/expert/48960 -https://www.oceanexpert.org/institution/19399 -https://www.oceanexpert.org/expert/18155 -https://www.oceanexpert.org/event/1593 -https://www.oceanexpert.org/institution/20263 -https://www.oceanexpert.org/expert/34553 -https://www.oceanexpert.org/event/3061 -https://www.oceanexpert.org/event/2010 -https://www.oceanexpert.org/expert/32557 -https://www.oceanexpert.org/institution/17661 -https://www.oceanexpert.org/expert/6514 -https://www.oceanexpert.org/expert/15883 -https://www.oceanexpert.org/expert/11286 -https://www.oceanexpert.org/expert/24061 -https://www.oceanexpert.org/expert/40353 -https://www.oceanexpert.org/event/459 -https://www.oceanexpert.org/expert/16364 -https://www.oceanexpert.org/institution/16145 -https://www.oceanexpert.org/expert/11286 -https://www.oceanexpert.org/expert/40649 -https://www.oceanexpert.org/expert/17965 -https://www.oceanexpert.org/expert/26942 -https://www.oceanexpert.org/event/1528 -https://www.oceanexpert.org/institution/19509 -https://www.oceanexpert.org/institution/13157 -https://www.oceanexpert.org/expert/36354 -https://www.oceanexpert.org/event/419 -https://www.oceanexpert.org/expert/24984 -https://www.oceanexpert.org/institution/15075 -https://www.oceanexpert.org/institution/7138 -https://www.oceanexpert.org/expert/21792 -https://www.oceanexpert.org/institution/18554 -https://www.oceanexpert.org/institution/14105 -https://www.oceanexpert.org/institution/14602 -https://www.oceanexpert.org/expert/40630 -https://www.oceanexpert.org/institution/5196 -https://www.oceanexpert.org/event/192 -https://www.oceanexpert.org/event/3276 -https://www.oceanexpert.org/institution/13231 -https://www.oceanexpert.org/institution/20499 -https://www.oceanexpert.org/expert/31935 -https://www.oceanexpert.org/expert/39087 -https://www.oceanexpert.org/expert/3992 -https://www.oceanexpert.org/event/1255 -https://www.oceanexpert.org/expert/26794 -https://www.oceanexpert.org/expert/36708 -https://www.oceanexpert.org/expert/36042 -https://www.oceanexpert.org/institution/18324 -https://www.oceanexpert.org/expert/45537 -https://www.oceanexpert.org/expert/18427 -https://www.oceanexpert.org/institution/20922 -https://www.oceanexpert.org/expert/44832 -https://www.oceanexpert.org/expert/22394 -https://www.oceanexpert.org/expert/39968 -https://www.oceanexpert.org/event/2037 -https://www.oceanexpert.org/expert/47805 -https://www.oceanexpert.org/expert/31550 -https://www.oceanexpert.org/expert/37417 -https://www.oceanexpert.org/expert/45371 -https://www.oceanexpert.org/expert/39329 -https://www.oceanexpert.org/expert/19096 -https://www.oceanexpert.org/expert/22480 -https://www.oceanexpert.org/event/3179 -https://www.oceanexpert.org/expert/19314 -https://www.oceanexpert.org/expert/22534 -https://www.oceanexpert.org/expert/35247 -https://www.oceanexpert.org/expert/34816 -https://www.oceanexpert.org/expert/42692 -https://www.oceanexpert.org/event/583 -https://www.oceanexpert.org/expert/16169 -https://www.oceanexpert.org/expert/24082 -https://www.oceanexpert.org/event/2020 -https://www.oceanexpert.org/expert/27396 -https://www.oceanexpert.org/expert/44913 -https://www.oceanexpert.org/expert/47522 -https://www.oceanexpert.org/expert/45776 -https://www.oceanexpert.org/expert/33133 -https://www.oceanexpert.org/expert/34086 -https://www.oceanexpert.org/expert/38265 -https://www.oceanexpert.org/institution/17280 -https://www.oceanexpert.org/institution/7541 -https://www.oceanexpert.org/expert/45600 -https://www.oceanexpert.org/expert/19046 -https://www.oceanexpert.org/institution/19047 -https://www.oceanexpert.org/expert/35495 -https://www.oceanexpert.org/event/2064 -https://www.oceanexpert.org/expert/37286 -https://www.oceanexpert.org/expert/43624 -https://www.oceanexpert.org/expert/12969 -https://www.oceanexpert.org/event/435 -https://www.oceanexpert.org/institution/20906 -https://www.oceanexpert.org/expert/45504 -https://www.oceanexpert.org/expert/19281 -https://www.oceanexpert.org/institution/19024 -https://www.oceanexpert.org/expert/39821 -https://www.oceanexpert.org/expert/11157 -https://www.oceanexpert.org/expert/29992 -https://www.oceanexpert.org/expert/34962 -https://www.oceanexpert.org/expert/22748 -https://www.oceanexpert.org/expert/24588 -https://www.oceanexpert.org/institution/21465 -https://www.oceanexpert.org/expert/36790 -https://www.oceanexpert.org/expert/13883 -https://www.oceanexpert.org/expert/47728 -https://www.oceanexpert.org/event/2754 -https://www.oceanexpert.org/expert/13504 -https://www.oceanexpert.org/expert/47578 -https://www.oceanexpert.org/expert/17925 -https://www.oceanexpert.org/expert/20717 -https://www.oceanexpert.org/expert/46664 -https://www.oceanexpert.org/expert/36471 -https://www.oceanexpert.org/expert/45253 -https://www.oceanexpert.org/institution/21238 -https://www.oceanexpert.org/expert/23649 -https://www.oceanexpert.org/expert/45068 -https://www.oceanexpert.org/event/3027 -https://www.oceanexpert.org/expert/21965 -https://www.oceanexpert.org/event/1744 -https://www.oceanexpert.org/expert/33244 -https://www.oceanexpert.org/expert/699 -https://www.oceanexpert.org/expert/27059 -https://www.oceanexpert.org/expert/40813 -https://www.oceanexpert.org/expert/44897 -https://www.oceanexpert.org/expert/18341 -https://www.oceanexpert.org/expert/32640 -https://www.oceanexpert.org/institution/10790 -https://www.oceanexpert.org/expert/11771 -https://www.oceanexpert.org/institution/18796 -https://www.oceanexpert.org/event/239 -https://www.oceanexpert.org/expert/20561 -https://www.oceanexpert.org/expert/33174 -https://www.oceanexpert.org/expert/48812 -https://www.oceanexpert.org/expert/46370 -https://www.oceanexpert.org/institution/13278 -https://www.oceanexpert.org/expert/33879 -https://www.oceanexpert.org/institution/15525 -https://www.oceanexpert.org/institution/18327 -https://www.oceanexpert.org/expert/38328 -https://www.oceanexpert.org/expert/21785 -https://www.oceanexpert.org/expert/17836 -https://www.oceanexpert.org/expert/18453 -https://www.oceanexpert.org/expert/6909 -https://www.oceanexpert.org/expert/18369 -https://www.oceanexpert.org/expert/48954 -https://www.oceanexpert.org/expert/48566 -https://www.oceanexpert.org/expert/42504 -https://www.oceanexpert.org/expert/21894 -https://www.oceanexpert.org/expert/24354 -https://www.oceanexpert.org/event/333 -https://www.oceanexpert.org/expert/13197 -https://www.oceanexpert.org/institution/21103 -https://www.oceanexpert.org/expert/27102 -https://www.oceanexpert.org/expert/44028 -https://www.oceanexpert.org/institution/13531 -https://www.oceanexpert.org/expert/18969 -https://www.oceanexpert.org/institution/22057 -https://www.oceanexpert.org/institution/21887 -https://www.oceanexpert.org/expert/26255 -https://www.oceanexpert.org/expert/36962 -https://www.oceanexpert.org/expert/32812 -https://www.oceanexpert.org/expert/36653 -https://www.oceanexpert.org/expert/34064 -https://www.oceanexpert.org/expert/44287 -https://www.oceanexpert.org/institution/21067 -https://www.oceanexpert.org/expert/30662 -https://www.oceanexpert.org/expert/24948 -https://www.oceanexpert.org/expert/41037 -https://www.oceanexpert.org/expert/17970 -https://www.oceanexpert.org/institution/19645 -https://www.oceanexpert.org/expert/24511 -https://www.oceanexpert.org/institution/19104 -https://www.oceanexpert.org/expert/45879 -https://www.oceanexpert.org/event/2200 -https://www.oceanexpert.org/event/1247 -https://www.oceanexpert.org/institution/14385 -https://www.oceanexpert.org/expert/39154 -https://www.oceanexpert.org/institution/18033 -https://www.oceanexpert.org/expert/19345 -https://www.oceanexpert.org/expert/20332 -https://www.oceanexpert.org/expert/47008 -https://www.oceanexpert.org/institution/12959 -https://www.oceanexpert.org/expert/19153 -https://www.oceanexpert.org/expert/32099 -https://www.oceanexpert.org/expert/17112 -https://www.oceanexpert.org/event/2723 -https://www.oceanexpert.org/institution/16121 -https://www.oceanexpert.org/expert/48481 -https://www.oceanexpert.org/event/1669 -https://www.oceanexpert.org/expert/19541 -https://www.oceanexpert.org/event/342 -https://www.oceanexpert.org/expert/25994 -https://www.oceanexpert.org/event/1095 -https://www.oceanexpert.org/event/2415 -https://www.oceanexpert.org/expert/38088 -https://www.oceanexpert.org/expert/17643 -https://www.oceanexpert.org/institution/12993 -https://www.oceanexpert.org/expert/21170 -https://www.oceanexpert.org/expert/38053 -https://www.oceanexpert.org/expert/17802 -https://www.oceanexpert.org/institution/13667 -https://www.oceanexpert.org/expert/20048 -https://www.oceanexpert.org/event/2044 -https://www.oceanexpert.org/event/1640 -https://www.oceanexpert.org/expert/30528 -https://www.oceanexpert.org/institution/16761 -https://www.oceanexpert.org/event/399 -https://www.oceanexpert.org/institution/17769 -https://www.oceanexpert.org/expert/33764 -https://www.oceanexpert.org/expert/14417 -https://www.oceanexpert.org/institution/20477 -https://www.oceanexpert.org/expert/45519 -https://www.oceanexpert.org/expert/39267 -https://www.oceanexpert.org/expert/25659 -https://www.oceanexpert.org/expert/42931 -https://www.oceanexpert.org/expert/47175 -https://www.oceanexpert.org/expert/34043 -https://www.oceanexpert.org/institution/19368 -https://www.oceanexpert.org/event/2124 -https://www.oceanexpert.org/expert/46419 -https://www.oceanexpert.org/expert/36432 -https://www.oceanexpert.org/institution/18212 -https://www.oceanexpert.org/institution/20731 -https://www.oceanexpert.org/expert/17560 -https://www.oceanexpert.org/expert/36407 -https://www.oceanexpert.org/institution/19076 -https://www.oceanexpert.org/event/2311 -https://www.oceanexpert.org/expert/30773 -https://www.oceanexpert.org/expert/26522 -https://www.oceanexpert.org/expert/29898 -https://www.oceanexpert.org/event/1912 -https://www.oceanexpert.org/expert/29054 -https://www.oceanexpert.org/expert/45812 -https://www.oceanexpert.org/expert/34281 -https://www.oceanexpert.org/institution/19364 -https://www.oceanexpert.org/event/2741 -https://www.oceanexpert.org/expert/11262 -https://www.oceanexpert.org/institution/21835 -https://www.oceanexpert.org/expert/45125 -https://www.oceanexpert.org/expert/46461 -https://www.oceanexpert.org/institution/21831 -https://www.oceanexpert.org/institution/21756 -https://www.oceanexpert.org/expert/31569 -https://www.oceanexpert.org/expert/25888 -https://www.oceanexpert.org/expert/38371 -https://www.oceanexpert.org/expert/46181 -https://www.oceanexpert.org/expert/27154 -https://www.oceanexpert.org/expert/29604 -https://www.oceanexpert.org/expert/39285 -https://www.oceanexpert.org/expert/33798 -https://www.oceanexpert.org/expert/26335 -https://www.oceanexpert.org/institution/15595 -https://www.oceanexpert.org/event/2459 -https://www.oceanexpert.org/expert/25333 -https://www.oceanexpert.org/expert/41483 -https://www.oceanexpert.org/institution/17821 -https://www.oceanexpert.org/expert/28412 -https://www.oceanexpert.org/expert/37125 -https://www.oceanexpert.org/expert/47603 -https://www.oceanexpert.org/institution/12786 -https://www.oceanexpert.org/expert/17069 -https://www.oceanexpert.org/expert/26597 -https://www.oceanexpert.org/expert/11656 -https://www.oceanexpert.org/institution/19801 -https://www.oceanexpert.org/institution/15491 -https://www.oceanexpert.org/expert/3746 -https://www.oceanexpert.org/expert/35022 -https://www.oceanexpert.org/expert/39610 -https://www.oceanexpert.org/expert/24695 -https://www.oceanexpert.org/expert/47079 -https://www.oceanexpert.org/expert/27091 -https://www.oceanexpert.org/expert/22733 -https://www.oceanexpert.org/expert/24509 -https://www.oceanexpert.org/expert/6485 -https://www.oceanexpert.org/event/2114 -https://www.oceanexpert.org/expert/35562 -https://www.oceanexpert.org/expert/45328 -https://www.oceanexpert.org/expert/31271 -https://www.oceanexpert.org/expert/46455 -https://www.oceanexpert.org/institution/10962 -https://www.oceanexpert.org/expert/13316 -https://www.oceanexpert.org/event/698 -https://www.oceanexpert.org/expert/21631 -https://www.oceanexpert.org/expert/6879 -https://www.oceanexpert.org/institution/13947 -https://www.oceanexpert.org/expert/20613 -https://www.oceanexpert.org/expert/31803 -https://www.oceanexpert.org/expert/35666 -https://www.oceanexpert.org/expert/32407 -https://www.oceanexpert.org/expert/43276 -https://www.oceanexpert.org/institution/19813 -https://www.oceanexpert.org/expert/32533 -https://www.oceanexpert.org/expert/21329 -https://www.oceanexpert.org/expert/45457 -https://www.oceanexpert.org/event/1358 -https://www.oceanexpert.org/expert/25813 -https://www.oceanexpert.org/expert/46287 -https://www.oceanexpert.org/expert/29519 -https://www.oceanexpert.org/expert/32463 -https://www.oceanexpert.org/institution/20394 -https://www.oceanexpert.org/institution/21675 -https://www.oceanexpert.org/institution/22171 -https://www.oceanexpert.org/event/2730 -https://www.oceanexpert.org/expert/43329 -https://www.oceanexpert.org/expert/38782 -https://www.oceanexpert.org/expert/26407 -https://www.oceanexpert.org/event/2245 -https://www.oceanexpert.org/institution/14795 -https://www.oceanexpert.org/expert/30784 -https://www.oceanexpert.org/expert/44678 -https://www.oceanexpert.org/expert/36075 -https://www.oceanexpert.org/institution/19919 -https://www.oceanexpert.org/expert/27584 -https://www.oceanexpert.org/expert/34077 -https://www.oceanexpert.org/expert/2206 -https://www.oceanexpert.org/expert/36808 -https://www.oceanexpert.org/expert/22205 -https://www.oceanexpert.org/expert/48952 -https://www.oceanexpert.org/expert/19463 -https://www.oceanexpert.org/expert/16794 -https://www.oceanexpert.org/expert/47885 -https://www.oceanexpert.org/institution/21231 -https://www.oceanexpert.org/expert/16375 -https://www.oceanexpert.org/institution/19855 -https://www.oceanexpert.org/expert/43004 -https://www.oceanexpert.org/institution/19322 -https://www.oceanexpert.org/institution/20265 -https://www.oceanexpert.org/expert/15973 -https://www.oceanexpert.org/expert/28416 -https://www.oceanexpert.org/expert/31086 -https://www.oceanexpert.org/expert/45323 -https://www.oceanexpert.org/expert/44706 -https://www.oceanexpert.org/expert/32046 -https://www.oceanexpert.org/institution/18324 -https://www.oceanexpert.org/expert/20986 -https://www.oceanexpert.org/event/2378 -https://www.oceanexpert.org/event/3056 -https://www.oceanexpert.org/institution/21791 -https://www.oceanexpert.org/expert/34536 -https://www.oceanexpert.org/expert/31063 -https://www.oceanexpert.org/institution/18129 -https://www.oceanexpert.org/institution/15610 -https://www.oceanexpert.org/expert/48966 -https://www.oceanexpert.org/expert/38197 -https://www.oceanexpert.org/expert/45476 -https://www.oceanexpert.org/expert/38913 -https://www.oceanexpert.org/expert/42975 -https://www.oceanexpert.org/expert/46008 -https://www.oceanexpert.org/expert/38954 -https://www.oceanexpert.org/expert/11262 -https://www.oceanexpert.org/expert/38062 -https://www.oceanexpert.org/expert/46208 -https://www.oceanexpert.org/institution/5421 -https://www.oceanexpert.org/institution/13813 -https://www.oceanexpert.org/expert/1845 -https://www.oceanexpert.org/expert/14663 -https://www.oceanexpert.org/expert/36579 -https://www.oceanexpert.org/institution/18937 -https://www.oceanexpert.org/expert/19035 -https://www.oceanexpert.org/expert/20854 -https://www.oceanexpert.org/expert/20530 -https://www.oceanexpert.org/expert/42509 -https://www.oceanexpert.org/expert/20452 -https://www.oceanexpert.org/expert/46599 -https://www.oceanexpert.org/expert/32845 -https://www.oceanexpert.org/institution/7663 -https://www.oceanexpert.org/institution/21084 -https://www.oceanexpert.org/expert/30099 -https://www.oceanexpert.org/expert/26618 -https://www.oceanexpert.org/institution/18790 -https://www.oceanexpert.org/expert/13171 -https://www.oceanexpert.org/institution/9991 -https://www.oceanexpert.org/institution/14952 -https://www.oceanexpert.org/expert/39883 -https://www.oceanexpert.org/expert/47976 -https://www.oceanexpert.org/expert/25593 -https://www.oceanexpert.org/expert/24730 -https://www.oceanexpert.org/expert/36762 -https://www.oceanexpert.org/expert/17370 -https://www.oceanexpert.org/expert/14054 -https://www.oceanexpert.org/expert/1936 -https://www.oceanexpert.org/institution/18630 -https://www.oceanexpert.org/expert/20476 -https://www.oceanexpert.org/institution/19323 -https://www.oceanexpert.org/institution/20464 -https://www.oceanexpert.org/institution/21698 -https://www.oceanexpert.org/institution/20869 -https://www.oceanexpert.org/event/1531 -https://www.oceanexpert.org/expert/47881 -https://www.oceanexpert.org/expert/46236 -https://www.oceanexpert.org/expert/6928 -https://www.oceanexpert.org/expert/20254 -https://www.oceanexpert.org/event/2939 -https://www.oceanexpert.org/expert/14102 -https://www.oceanexpert.org/expert/17100 -https://www.oceanexpert.org/event/1707 -https://www.oceanexpert.org/institution/19599 -https://www.oceanexpert.org/expert/44585 -https://www.oceanexpert.org/expert/24983 -https://www.oceanexpert.org/expert/38526 -https://www.oceanexpert.org/institution/18954 -https://www.oceanexpert.org/institution/12600 -https://www.oceanexpert.org/expert/45125 -https://www.oceanexpert.org/expert/18434 -https://www.oceanexpert.org/institution/19010 -https://www.oceanexpert.org/expert/30317 -https://www.oceanexpert.org/expert/22820 -https://www.oceanexpert.org/expert/48486 -https://www.oceanexpert.org/expert/7011 -https://www.oceanexpert.org/expert/33024 -https://www.oceanexpert.org/expert/25882 -https://www.oceanexpert.org/event/3065 -https://www.oceanexpert.org/event/2612 -https://www.oceanexpert.org/expert/22398 -https://www.oceanexpert.org/expert/44170 -https://www.oceanexpert.org/expert/47716 -https://www.oceanexpert.org/institution/14304 -https://www.oceanexpert.org/institution/16431 -https://www.oceanexpert.org/expert/45418 -https://www.oceanexpert.org/institution/19602 -https://www.oceanexpert.org/expert/42719 -https://www.oceanexpert.org/expert/36108 -https://www.oceanexpert.org/expert/23814 -https://www.oceanexpert.org/expert/21448 -https://www.oceanexpert.org/expert/26070 -https://www.oceanexpert.org/event/2035 -https://www.oceanexpert.org/expert/17965 -https://www.oceanexpert.org/institution/7953 -https://www.oceanexpert.org/expert/47400 -https://www.oceanexpert.org/expert/36774 -https://www.oceanexpert.org/institution/11650 -https://www.oceanexpert.org/expert/35312 -https://www.oceanexpert.org/institution/13842 -https://www.oceanexpert.org/institution/8145 -https://www.oceanexpert.org/expert/47356 -https://www.oceanexpert.org/expert/17280 -https://www.oceanexpert.org/expert/6500 -https://www.oceanexpert.org/expert/27017 -https://www.oceanexpert.org/expert/15529 -https://www.oceanexpert.org/expert/21965 -https://www.oceanexpert.org/expert/45470 -https://www.oceanexpert.org/event/1377 -https://www.oceanexpert.org/institution/19095 -https://www.oceanexpert.org/expert/33386 -https://www.oceanexpert.org/expert/23417 -https://www.oceanexpert.org/expert/20539 -https://www.oceanexpert.org/event/1594 -https://www.oceanexpert.org/expert/35337 -https://www.oceanexpert.org/event/1003 -https://www.oceanexpert.org/institution/6105 -https://www.oceanexpert.org/expert/42858 -https://www.oceanexpert.org/institution/20695 -https://www.oceanexpert.org/institution/21999 -https://www.oceanexpert.org/event/2437 -https://www.oceanexpert.org/expert/38475 -https://www.oceanexpert.org/expert/19381 -https://www.oceanexpert.org/expert/36611 -https://www.oceanexpert.org/event/1739 -https://www.oceanexpert.org/expert/34956 -https://www.oceanexpert.org/institution/8774 -https://www.oceanexpert.org/expert/48014 -https://www.oceanexpert.org/expert/24631 -https://www.oceanexpert.org/institution/18032 -https://www.oceanexpert.org/institution/19210 -https://www.oceanexpert.org/institution/5408 -https://www.oceanexpert.org/expert/37225 -https://www.oceanexpert.org/expert/15957 -https://www.oceanexpert.org/expert/49061 -https://www.oceanexpert.org/institution/18549 -https://www.oceanexpert.org/expert/35405 -https://www.oceanexpert.org/expert/16196 -https://www.oceanexpert.org/expert/38228 -https://www.oceanexpert.org/event/355 -https://www.oceanexpert.org/expert/20168 -https://www.oceanexpert.org/expert/31722 -https://www.oceanexpert.org/expert/36632 -https://www.oceanexpert.org/expert/19502 -https://www.oceanexpert.org/institution/13068 -https://www.oceanexpert.org/expert/33383 -https://www.oceanexpert.org/expert/28941 -https://www.oceanexpert.org/expert/43214 -https://www.oceanexpert.org/expert/45950 -https://www.oceanexpert.org/expert/44180 -https://www.oceanexpert.org/expert/46938 -https://www.oceanexpert.org/event/2445 -https://www.oceanexpert.org/event/3026 -https://www.oceanexpert.org/expert/9803 -https://www.oceanexpert.org/expert/33913 -https://www.oceanexpert.org/institution/19342 -https://www.oceanexpert.org/expert/1276 -https://www.oceanexpert.org/expert/25329 -https://www.oceanexpert.org/institution/16321 -https://www.oceanexpert.org/event/3198 -https://www.oceanexpert.org/institution/9860 -https://www.oceanexpert.org/expert/17182 -https://www.oceanexpert.org/expert/47808 -https://www.oceanexpert.org/event/1307 -https://www.oceanexpert.org/expert/23263 -https://www.oceanexpert.org/expert/22839 -https://www.oceanexpert.org/expert/12458 -https://www.oceanexpert.org/institution/13380 -https://www.oceanexpert.org/expert/29512 -https://www.oceanexpert.org/expert/18009 -https://www.oceanexpert.org/expert/18754 -https://www.oceanexpert.org/expert/48920 -https://www.oceanexpert.org/event/1110 -https://www.oceanexpert.org/institution/13172 -https://www.oceanexpert.org/expert/42743 -https://www.oceanexpert.org/institution/15162 -https://www.oceanexpert.org/institution/11218 -https://www.oceanexpert.org/expert/25213 -https://www.oceanexpert.org/expert/22239 -https://www.oceanexpert.org/institution/19678 -https://www.oceanexpert.org/institution/22011 -https://www.oceanexpert.org/event/2521 -https://www.oceanexpert.org/institution/19923 -https://www.oceanexpert.org/expert/33030 -https://www.oceanexpert.org/expert/42969 -https://www.oceanexpert.org/expert/3543 -https://www.oceanexpert.org/expert/32546 -https://www.oceanexpert.org/institution/17777 -https://www.oceanexpert.org/expert/31913 -https://www.oceanexpert.org/event/313 -https://www.oceanexpert.org/expert/36306 -https://www.oceanexpert.org/expert/33851 -https://www.oceanexpert.org/expert/46410 -https://www.oceanexpert.org/expert/34718 -https://www.oceanexpert.org/event/441 -https://www.oceanexpert.org/institution/16918 -https://www.oceanexpert.org/expert/24542 -https://www.oceanexpert.org/expert/22761 -https://www.oceanexpert.org/expert/44572 -https://www.oceanexpert.org/institution/21813 -https://www.oceanexpert.org/expert/47902 -https://www.oceanexpert.org/expert/40884 -https://www.oceanexpert.org/expert/30858 -https://www.oceanexpert.org/institution/8166 -https://www.oceanexpert.org/expert/14458 -https://www.oceanexpert.org/expert/26950 -https://www.oceanexpert.org/event/731 -https://www.oceanexpert.org/event/2039 -https://www.oceanexpert.org/expert/37189 -https://www.oceanexpert.org/expert/48233 -https://www.oceanexpert.org/expert/46809 -https://www.oceanexpert.org/event/1461 -https://www.oceanexpert.org/expert/43572 -https://www.oceanexpert.org/expert/22724 -https://www.oceanexpert.org/expert/34635 -https://www.oceanexpert.org/event/2120 -https://www.oceanexpert.org/expert/12092 -https://www.oceanexpert.org/expert/6724 -https://www.oceanexpert.org/event/1937 -https://www.oceanexpert.org/expert/10783 -https://www.oceanexpert.org/expert/29803 -https://www.oceanexpert.org/institution/11999 -https://www.oceanexpert.org/expert/26490 -https://www.oceanexpert.org/expert/48884 -https://www.oceanexpert.org/event/2591 -https://www.oceanexpert.org/expert/24865 -https://www.oceanexpert.org/expert/37116 -https://www.oceanexpert.org/expert/19832 -https://www.oceanexpert.org/expert/26669 -https://www.oceanexpert.org/expert/43863 -https://www.oceanexpert.org/institution/16721 -https://www.oceanexpert.org/institution/22031 -https://www.oceanexpert.org/expert/21780 -https://www.oceanexpert.org/event/2876 -https://www.oceanexpert.org/event/1320 -https://www.oceanexpert.org/expert/23439 -https://www.oceanexpert.org/expert/46608 -https://www.oceanexpert.org/expert/16742 -https://www.oceanexpert.org/institution/18326 -https://www.oceanexpert.org/expert/44657 -https://www.oceanexpert.org/expert/42965 -https://www.oceanexpert.org/expert/42863 -https://www.oceanexpert.org/expert/46752 -https://www.oceanexpert.org/institution/20899 -https://www.oceanexpert.org/institution/20746 -https://www.oceanexpert.org/expert/47823 -https://www.oceanexpert.org/expert/26130 -https://www.oceanexpert.org/expert/23551 -https://www.oceanexpert.org/institution/21574 -https://www.oceanexpert.org/expert/14011 -https://www.oceanexpert.org/institution/21338 -https://www.oceanexpert.org/institution/16715 -https://www.oceanexpert.org/expert/34684 -https://www.oceanexpert.org/expert/23807 -https://www.oceanexpert.org/expert/37482 -https://www.oceanexpert.org/expert/7199 -https://www.oceanexpert.org/expert/3747 -https://www.oceanexpert.org/expert/43068 -https://www.oceanexpert.org/event/1447 -https://www.oceanexpert.org/expert/11335 -https://www.oceanexpert.org/expert/32871 -https://www.oceanexpert.org/expert/39672 -https://www.oceanexpert.org/expert/15023 -https://www.oceanexpert.org/institution/21312 -https://www.oceanexpert.org/expert/20660 -https://www.oceanexpert.org/expert/48442 -https://www.oceanexpert.org/expert/17069 -https://www.oceanexpert.org/institution/18286 -https://www.oceanexpert.org/expert/1866 -https://www.oceanexpert.org/expert/17123 -https://www.oceanexpert.org/event/351 -https://www.oceanexpert.org/expert/44048 -https://www.oceanexpert.org/expert/20855 -https://www.oceanexpert.org/institution/17413 -https://www.oceanexpert.org/institution/12733 -https://www.oceanexpert.org/institution/19389 -https://www.oceanexpert.org/expert/38416 -https://www.oceanexpert.org/institution/18791 -https://www.oceanexpert.org/institution/21436 -https://www.oceanexpert.org/expert/23576 -https://www.oceanexpert.org/expert/20384 -https://www.oceanexpert.org/expert/11226 -https://www.oceanexpert.org/event/334 -https://www.oceanexpert.org/institution/21476 -https://www.oceanexpert.org/expert/14921 -https://www.oceanexpert.org/expert/27552 -https://www.oceanexpert.org/institution/20806 -https://www.oceanexpert.org/expert/47239 -https://www.oceanexpert.org/institution/13418 -https://www.oceanexpert.org/expert/23331 -https://www.oceanexpert.org/institution/21105 -https://www.oceanexpert.org/expert/30307 -https://www.oceanexpert.org/expert/37205 -https://www.oceanexpert.org/institution/6860 -https://www.oceanexpert.org/expert/34710 -https://www.oceanexpert.org/expert/38371 -https://www.oceanexpert.org/expert/47696 -https://www.oceanexpert.org/expert/13559 -https://www.oceanexpert.org/expert/16704 -https://www.oceanexpert.org/event/2217 -https://www.oceanexpert.org/expert/18230 -https://www.oceanexpert.org/expert/21024 -https://www.oceanexpert.org/institution/19089 -https://www.oceanexpert.org/expert/19800 -https://www.oceanexpert.org/institution/17077 -https://www.oceanexpert.org/expert/18578 -https://www.oceanexpert.org/expert/40000 -https://www.oceanexpert.org/event/1943 -https://www.oceanexpert.org/expert/25294 -https://www.oceanexpert.org/expert/31271 -https://www.oceanexpert.org/expert/25697 -https://www.oceanexpert.org/expert/18724 -https://www.oceanexpert.org/expert/46152 -https://www.oceanexpert.org/institution/21087 -https://www.oceanexpert.org/expert/37616 -https://www.oceanexpert.org/institution/19411 -https://www.oceanexpert.org/expert/44865 -https://www.oceanexpert.org/expert/32497 -https://www.oceanexpert.org/event/653 -https://www.oceanexpert.org/expert/21355 -https://www.oceanexpert.org/expert/7274 -https://www.oceanexpert.org/expert/38020 -https://www.oceanexpert.org/event/475 -https://www.oceanexpert.org/event/3283 -https://www.oceanexpert.org/expert/23118 -https://www.oceanexpert.org/expert/13813 -https://www.oceanexpert.org/expert/10112 -https://www.oceanexpert.org/expert/17261 -https://www.oceanexpert.org/expert/48639 -https://www.oceanexpert.org/event/1801 -https://www.oceanexpert.org/expert/13590 -https://www.oceanexpert.org/expert/30274 -https://www.oceanexpert.org/expert/32958 -https://www.oceanexpert.org/expert/12999 -https://www.oceanexpert.org/institution/14140 -https://www.oceanexpert.org/institution/8031 -https://www.oceanexpert.org/institution/21186 -https://www.oceanexpert.org/expert/4529 -https://www.oceanexpert.org/expert/26017 -https://www.oceanexpert.org/expert/45311 -https://www.oceanexpert.org/institution/17441 -https://www.oceanexpert.org/expert/30294 -https://www.oceanexpert.org/expert/42896 -https://www.oceanexpert.org/expert/4113 -https://www.oceanexpert.org/institution/21520 -https://www.oceanexpert.org/expert/18044 -https://www.oceanexpert.org/institution/21624 -https://www.oceanexpert.org/expert/28695 -https://www.oceanexpert.org/expert/42427 -https://www.oceanexpert.org/institution/13525 -https://www.oceanexpert.org/expert/48622 -https://www.oceanexpert.org/institution/10429 -https://www.oceanexpert.org/expert/10983 -https://www.oceanexpert.org/expert/44310 -https://www.oceanexpert.org/event/2613 -https://www.oceanexpert.org/expert/34982 -https://www.oceanexpert.org/institution/7541 -https://www.oceanexpert.org/event/1874 -https://www.oceanexpert.org/institution/21612 -https://www.oceanexpert.org/institution/14968 -https://www.oceanexpert.org/expert/32540 -https://www.oceanexpert.org/expert/19622 -https://www.oceanexpert.org/expert/43549 -https://www.oceanexpert.org/expert/36677 -https://www.oceanexpert.org/expert/26767 -https://www.oceanexpert.org/expert/16783 -https://www.oceanexpert.org/expert/21609 -https://www.oceanexpert.org/expert/45992 -https://www.oceanexpert.org/expert/45181 -https://www.oceanexpert.org/expert/12063 -https://www.oceanexpert.org/expert/6209 -https://www.oceanexpert.org/expert/25603 -https://www.oceanexpert.org/expert/21177 -https://www.oceanexpert.org/expert/39482 -https://www.oceanexpert.org/expert/28364 -https://www.oceanexpert.org/expert/25189 -https://www.oceanexpert.org/expert/32962 -https://www.oceanexpert.org/expert/21832 -https://www.oceanexpert.org/institution/15129 -https://www.oceanexpert.org/event/2008 -https://www.oceanexpert.org/institution/11221 -https://www.oceanexpert.org/expert/42717 -https://www.oceanexpert.org/expert/48330 -https://www.oceanexpert.org/expert/48380 -https://www.oceanexpert.org/expert/26950 -https://www.oceanexpert.org/institution/13228 -https://www.oceanexpert.org/expert/24598 -https://www.oceanexpert.org/institution/14392 -https://www.oceanexpert.org/institution/21964 -https://www.oceanexpert.org/expert/48246 -https://www.oceanexpert.org/expert/45774 -https://www.oceanexpert.org/institution/18313 -https://www.oceanexpert.org/expert/36858 -https://www.oceanexpert.org/event/523 -https://www.oceanexpert.org/expert/46184 -https://www.oceanexpert.org/expert/23312 -https://www.oceanexpert.org/institution/5433 -https://www.oceanexpert.org/institution/17893 -https://www.oceanexpert.org/expert/46512 -https://www.oceanexpert.org/expert/39392 -https://www.oceanexpert.org/expert/42670 -https://www.oceanexpert.org/expert/38402 -https://www.oceanexpert.org/expert/48493 -https://www.oceanexpert.org/expert/31268 -https://www.oceanexpert.org/institution/11750 -https://www.oceanexpert.org/institution/21617 -https://www.oceanexpert.org/expert/35639 -https://www.oceanexpert.org/event/1330 -https://www.oceanexpert.org/expert/6821 -https://www.oceanexpert.org/expert/17214 -https://www.oceanexpert.org/expert/30557 -https://www.oceanexpert.org/institution/18407 -https://www.oceanexpert.org/expert/46783 -https://www.oceanexpert.org/expert/48285 -https://www.oceanexpert.org/expert/32956 -https://www.oceanexpert.org/expert/18347 -https://www.oceanexpert.org/expert/11117 -https://www.oceanexpert.org/event/1449 -https://www.oceanexpert.org/expert/32621 -https://www.oceanexpert.org/expert/37414 -https://www.oceanexpert.org/expert/24100 -https://www.oceanexpert.org/expert/30669 -https://www.oceanexpert.org/expert/8267 -https://www.oceanexpert.org/expert/10566 -https://www.oceanexpert.org/expert/881 -https://www.oceanexpert.org/expert/47835 -https://www.oceanexpert.org/expert/29379 -https://www.oceanexpert.org/institution/19882 -https://www.oceanexpert.org/institution/18856 -https://www.oceanexpert.org/institution/18985 -https://www.oceanexpert.org/expert/32653 -https://www.oceanexpert.org/expert/45072 -https://www.oceanexpert.org/institution/11644 -https://www.oceanexpert.org/expert/21998 -https://www.oceanexpert.org/expert/47337 -https://www.oceanexpert.org/expert/14925 -https://www.oceanexpert.org/institution/9986 -https://www.oceanexpert.org/expert/22644 -https://www.oceanexpert.org/expert/1351 -https://www.oceanexpert.org/expert/47851 -https://www.oceanexpert.org/expert/21804 -https://www.oceanexpert.org/expert/32456 -https://www.oceanexpert.org/expert/85 -https://www.oceanexpert.org/expert/21096 -https://www.oceanexpert.org/expert/44490 -https://www.oceanexpert.org/expert/24064 -https://www.oceanexpert.org/expert/45320 -https://www.oceanexpert.org/expert/28231 -https://www.oceanexpert.org/institution/20997 -https://www.oceanexpert.org/event/2945 -https://www.oceanexpert.org/expert/27297 -https://www.oceanexpert.org/institution/17227 -https://www.oceanexpert.org/expert/7018 -https://www.oceanexpert.org/expert/27520 -https://www.oceanexpert.org/event/506 -https://www.oceanexpert.org/institution/20441 -https://www.oceanexpert.org/institution/19705 -https://www.oceanexpert.org/event/2807 -https://www.oceanexpert.org/expert/44757 -https://www.oceanexpert.org/expert/19995 -https://www.oceanexpert.org/institution/5924 -https://www.oceanexpert.org/expert/21735 -https://www.oceanexpert.org/expert/23026 -https://www.oceanexpert.org/expert/35451 -https://www.oceanexpert.org/institution/15276 -https://www.oceanexpert.org/institution/20720 -https://www.oceanexpert.org/expert/47042 -https://www.oceanexpert.org/institution/19268 -https://www.oceanexpert.org/expert/24809 -https://www.oceanexpert.org/expert/43312 -https://www.oceanexpert.org/institution/18445 -https://www.oceanexpert.org/expert/37543 -https://www.oceanexpert.org/expert/14487 -https://www.oceanexpert.org/institution/20862 -https://www.oceanexpert.org/institution/5843 -https://www.oceanexpert.org/expert/48291 -https://www.oceanexpert.org/event/1662 -https://www.oceanexpert.org/expert/33423 -https://www.oceanexpert.org/expert/36303 -https://www.oceanexpert.org/expert/16943 -https://www.oceanexpert.org/expert/21566 -https://www.oceanexpert.org/expert/36709 -https://www.oceanexpert.org/expert/23370 -https://www.oceanexpert.org/expert/12639 -https://www.oceanexpert.org/expert/38475 -https://www.oceanexpert.org/expert/25946 -https://www.oceanexpert.org/expert/38299 -https://www.oceanexpert.org/institution/12145 -https://www.oceanexpert.org/expert/8226 -https://www.oceanexpert.org/expert/7003 -https://www.oceanexpert.org/expert/43342 -https://www.oceanexpert.org/expert/2204 -https://www.oceanexpert.org/expert/47619 -https://www.oceanexpert.org/expert/29482 -https://www.oceanexpert.org/expert/20292 -https://www.oceanexpert.org/expert/40362 -https://www.oceanexpert.org/expert/26709 -https://www.oceanexpert.org/expert/29915 -https://www.oceanexpert.org/institution/14493 -https://www.oceanexpert.org/event/1059 -https://www.oceanexpert.org/expert/21559 -https://www.oceanexpert.org/expert/23454 -https://www.oceanexpert.org/expert/11771 -https://www.oceanexpert.org/expert/22828 -https://www.oceanexpert.org/expert/44180 -https://www.oceanexpert.org/expert/29373 -https://www.oceanexpert.org/institution/18760 -https://www.oceanexpert.org/event/3041 -https://www.oceanexpert.org/institution/18975 -https://www.oceanexpert.org/expert/43117 -https://www.oceanexpert.org/event/592 -https://www.oceanexpert.org/expert/42771 -https://www.oceanexpert.org/expert/27045 -https://www.oceanexpert.org/expert/42635 -https://www.oceanexpert.org/expert/43536 -https://www.oceanexpert.org/event/211 -https://www.oceanexpert.org/institution/17436 -https://www.oceanexpert.org/expert/22670 -https://www.oceanexpert.org/expert/30359 -https://www.oceanexpert.org/expert/25747 -https://www.oceanexpert.org/expert/22379 -https://www.oceanexpert.org/expert/29668 -https://www.oceanexpert.org/expert/43855 -https://www.oceanexpert.org/institution/15503 -https://www.oceanexpert.org/expert/19174 -https://www.oceanexpert.org/expert/6993 -https://www.oceanexpert.org/expert/20059 -https://www.oceanexpert.org/expert/27918 -https://www.oceanexpert.org/expert/20250 -https://www.oceanexpert.org/expert/31793 -https://www.oceanexpert.org/institution/19933 -https://www.oceanexpert.org/event/2452 -https://www.oceanexpert.org/event/2071 -https://www.oceanexpert.org/institution/8504 -https://www.oceanexpert.org/expert/25283 -https://www.oceanexpert.org/expert/45773 -https://www.oceanexpert.org/institution/18349 -https://www.oceanexpert.org/expert/34674 -https://www.oceanexpert.org/institution/21862 -https://www.oceanexpert.org/expert/30594 -https://www.oceanexpert.org/institution/16798 -https://www.oceanexpert.org/expert/44564 -https://www.oceanexpert.org/event/150 -https://www.oceanexpert.org/event/1903 -https://www.oceanexpert.org/expert/37132 -https://www.oceanexpert.org/expert/27720 -https://www.oceanexpert.org/expert/27134 -https://www.oceanexpert.org/expert/22250 -https://www.oceanexpert.org/expert/29839 -https://www.oceanexpert.org/expert/19874 -https://www.oceanexpert.org/expert/26474 -https://www.oceanexpert.org/expert/36808 -https://www.oceanexpert.org/expert/26674 -https://www.oceanexpert.org/expert/26527 -https://www.oceanexpert.org/institution/20081 -https://www.oceanexpert.org/institution/18188 -https://www.oceanexpert.org/expert/45205 -https://www.oceanexpert.org/expert/47461 -https://www.oceanexpert.org/institution/16276 -https://www.oceanexpert.org/institution/15275 -https://www.oceanexpert.org/expert/30877 -https://www.oceanexpert.org/institution/19186 -https://www.oceanexpert.org/expert/30259 -https://www.oceanexpert.org/expert/968 -https://www.oceanexpert.org/institution/17814 -https://www.oceanexpert.org/expert/16046 -https://www.oceanexpert.org/expert/46738 -https://www.oceanexpert.org/expert/11455 -https://www.oceanexpert.org/institution/20690 -https://www.oceanexpert.org/expert/25177 -https://www.oceanexpert.org/expert/38460 -https://www.oceanexpert.org/event/1186 -https://www.oceanexpert.org/expert/22477 -https://www.oceanexpert.org/expert/20935 -https://www.oceanexpert.org/expert/24389 -https://www.oceanexpert.org/institution/6725 -https://www.oceanexpert.org/expert/27793 -https://www.oceanexpert.org/institution/11237 -https://www.oceanexpert.org/expert/17961 -https://www.oceanexpert.org/expert/25144 -https://www.oceanexpert.org/expert/31279 -https://www.oceanexpert.org/expert/42080 -https://www.oceanexpert.org/event/707 -https://www.oceanexpert.org/expert/24023 -https://www.oceanexpert.org/expert/45388 -https://www.oceanexpert.org/institution/13420 -https://www.oceanexpert.org/event/1151 -https://www.oceanexpert.org/expert/41423 -https://www.oceanexpert.org/expert/23084 -https://www.oceanexpert.org/expert/19907 -https://www.oceanexpert.org/expert/24899 -https://www.oceanexpert.org/expert/26585 -https://www.oceanexpert.org/event/2118 -https://www.oceanexpert.org/expert/37733 -https://www.oceanexpert.org/expert/42472 -https://www.oceanexpert.org/expert/20114 -https://www.oceanexpert.org/expert/45827 -https://www.oceanexpert.org/expert/44218 -https://www.oceanexpert.org/institution/21274 -https://www.oceanexpert.org/institution/20047 -https://www.oceanexpert.org/event/1345 -https://www.oceanexpert.org/event/383 -https://www.oceanexpert.org/institution/17362 -https://www.oceanexpert.org/expert/11061 -https://www.oceanexpert.org/event/1775 -https://www.oceanexpert.org/expert/26536 -https://www.oceanexpert.org/expert/19434 -https://www.oceanexpert.org/expert/27440 -https://www.oceanexpert.org/expert/15123 -https://www.oceanexpert.org/expert/18672 -https://www.oceanexpert.org/expert/25583 -https://www.oceanexpert.org/institution/20931 -https://www.oceanexpert.org/expert/37650 -https://www.oceanexpert.org/expert/33553 -https://www.oceanexpert.org/expert/36797 -https://www.oceanexpert.org/institution/15432 -https://www.oceanexpert.org/expert/32528 -https://www.oceanexpert.org/expert/34534 -https://www.oceanexpert.org/institution/12331 -https://www.oceanexpert.org/expert/43036 -https://www.oceanexpert.org/expert/37507 -https://www.oceanexpert.org/expert/21570 -https://www.oceanexpert.org/institution/15657 -https://www.oceanexpert.org/event/1136 -https://www.oceanexpert.org/expert/32496 -https://www.oceanexpert.org/expert/16163 -https://www.oceanexpert.org/expert/47515 -https://www.oceanexpert.org/expert/36700 -https://www.oceanexpert.org/expert/18570 -https://www.oceanexpert.org/institution/17967 -https://www.oceanexpert.org/institution/21834 -https://www.oceanexpert.org/expert/37811 -https://www.oceanexpert.org/expert/32472 -https://www.oceanexpert.org/expert/45843 -https://www.oceanexpert.org/expert/13698 -https://www.oceanexpert.org/expert/46401 -https://www.oceanexpert.org/institution/17339 -https://www.oceanexpert.org/expert/25082 -https://www.oceanexpert.org/expert/26110 -https://www.oceanexpert.org/expert/42607 -https://www.oceanexpert.org/institution/12740 -https://www.oceanexpert.org/institution/20472 -https://www.oceanexpert.org/expert/10832 -https://www.oceanexpert.org/institution/13953 -https://www.oceanexpert.org/expert/18306 -https://www.oceanexpert.org/expert/17401 -https://www.oceanexpert.org/expert/37501 -https://www.oceanexpert.org/expert/6500 -https://www.oceanexpert.org/event/1980 -https://www.oceanexpert.org/institution/14814 -https://www.oceanexpert.org/expert/28192 -https://www.oceanexpert.org/event/670 -https://www.oceanexpert.org/expert/28908 -https://www.oceanexpert.org/expert/14935 -https://www.oceanexpert.org/expert/49010 -https://www.oceanexpert.org/expert/47607 -https://www.oceanexpert.org/expert/32695 -https://www.oceanexpert.org/expert/17404 -https://www.oceanexpert.org/expert/21272 -https://www.oceanexpert.org/expert/3383 -https://www.oceanexpert.org/expert/45434 -https://www.oceanexpert.org/expert/17325 -https://www.oceanexpert.org/institution/17547 -https://www.oceanexpert.org/expert/43752 -https://www.oceanexpert.org/expert/34565 -https://www.oceanexpert.org/expert/36254 -https://www.oceanexpert.org/expert/44640 -https://www.oceanexpert.org/expert/26574 -https://www.oceanexpert.org/expert/26481 -https://www.oceanexpert.org/expert/22566 -https://www.oceanexpert.org/expert/19767 -https://www.oceanexpert.org/institution/18641 -https://www.oceanexpert.org/event/1421 -https://www.oceanexpert.org/expert/3785 -https://www.oceanexpert.org/institution/21360 -https://www.oceanexpert.org/expert/23685 -https://www.oceanexpert.org/expert/19169 -https://www.oceanexpert.org/expert/18221 -https://www.oceanexpert.org/expert/46590 -https://www.oceanexpert.org/expert/28310 -https://www.oceanexpert.org/expert/43023 -https://www.oceanexpert.org/expert/20855 -https://www.oceanexpert.org/expert/23935 -https://www.oceanexpert.org/expert/42461 -https://www.oceanexpert.org/expert/35541 -https://www.oceanexpert.org/event/1246 -https://www.oceanexpert.org/expert/7589 -https://www.oceanexpert.org/expert/42634 -https://www.oceanexpert.org/expert/38133 -https://www.oceanexpert.org/expert/18323 -https://www.oceanexpert.org/institution/17361 -https://www.oceanexpert.org/institution/14139 -https://www.oceanexpert.org/expert/42697 -https://www.oceanexpert.org/expert/48124 -https://www.oceanexpert.org/institution/7540 -https://www.oceanexpert.org/expert/32327 -https://www.oceanexpert.org/institution/18290 -https://www.oceanexpert.org/institution/11196 -https://www.oceanexpert.org/event/845 -https://www.oceanexpert.org/expert/35524 -https://www.oceanexpert.org/expert/18932 -https://www.oceanexpert.org/expert/24192 -https://www.oceanexpert.org/institution/21221 -https://www.oceanexpert.org/expert/12253 -https://www.oceanexpert.org/expert/37646 -https://www.oceanexpert.org/institution/17456 -https://www.oceanexpert.org/expert/20196 -https://www.oceanexpert.org/expert/9134 -https://www.oceanexpert.org/institution/14798 -https://www.oceanexpert.org/expert/1902 -https://www.oceanexpert.org/expert/47161 -https://www.oceanexpert.org/institution/21811 -https://www.oceanexpert.org/expert/14653 -https://www.oceanexpert.org/event/806 -https://www.oceanexpert.org/expert/30290 -https://www.oceanexpert.org/expert/19866 -https://www.oceanexpert.org/expert/20133 -https://www.oceanexpert.org/expert/46507 -https://www.oceanexpert.org/institution/18567 -https://www.oceanexpert.org/expert/23622 -https://www.oceanexpert.org/institution/4889 -https://www.oceanexpert.org/expert/24325 -https://www.oceanexpert.org/institution/14430 -https://www.oceanexpert.org/expert/26422 -https://www.oceanexpert.org/expert/19043 -https://www.oceanexpert.org/expert/38026 -https://www.oceanexpert.org/expert/21222 -https://www.oceanexpert.org/expert/11048 -https://www.oceanexpert.org/expert/48933 -https://www.oceanexpert.org/event/1653 -https://www.oceanexpert.org/institution/12617 -https://www.oceanexpert.org/expert/25756 -https://www.oceanexpert.org/expert/25745 -https://www.oceanexpert.org/expert/44533 -https://www.oceanexpert.org/expert/47774 -https://www.oceanexpert.org/expert/24024 -https://www.oceanexpert.org/expert/48365 -https://www.oceanexpert.org/institution/16203 -https://www.oceanexpert.org/institution/5883 -https://www.oceanexpert.org/expert/48566 -https://www.oceanexpert.org/expert/8151 -https://www.oceanexpert.org/expert/6692 -https://www.oceanexpert.org/expert/27032 -https://www.oceanexpert.org/expert/48558 -https://www.oceanexpert.org/institution/21513 -https://www.oceanexpert.org/institution/15169 -https://www.oceanexpert.org/institution/9445 -https://www.oceanexpert.org/expert/34774 -https://www.oceanexpert.org/expert/1205 -https://www.oceanexpert.org/expert/23464 -https://www.oceanexpert.org/institution/14431 -https://www.oceanexpert.org/institution/19352 -https://www.oceanexpert.org/expert/34757 -https://www.oceanexpert.org/expert/29576 -https://www.oceanexpert.org/expert/11367 -https://www.oceanexpert.org/expert/15169 -https://www.oceanexpert.org/expert/35377 -https://www.oceanexpert.org/event/3070 -https://www.oceanexpert.org/event/3180 -https://www.oceanexpert.org/expert/43862 -https://www.oceanexpert.org/expert/46814 -https://www.oceanexpert.org/expert/45736 -https://www.oceanexpert.org/expert/26680 -https://www.oceanexpert.org/expert/14031 -https://www.oceanexpert.org/expert/25492 -https://www.oceanexpert.org/institution/8752 -https://www.oceanexpert.org/expert/32775 -https://www.oceanexpert.org/expert/46327 -https://www.oceanexpert.org/expert/36094 -https://www.oceanexpert.org/expert/48239 -https://www.oceanexpert.org/expert/22667 -https://www.oceanexpert.org/expert/38625 -https://www.oceanexpert.org/event/1585 -https://www.oceanexpert.org/expert/24258 -https://www.oceanexpert.org/expert/8888 -https://www.oceanexpert.org/expert/25931 -https://www.oceanexpert.org/expert/22025 -https://www.oceanexpert.org/expert/38500 -https://www.oceanexpert.org/event/1465 -https://www.oceanexpert.org/expert/26520 -https://www.oceanexpert.org/expert/20870 -https://www.oceanexpert.org/event/1475 -https://www.oceanexpert.org/institution/21112 -https://www.oceanexpert.org/expert/21980 -https://www.oceanexpert.org/expert/6225 -https://www.oceanexpert.org/event/2504 -https://www.oceanexpert.org/expert/31985 -https://www.oceanexpert.org/expert/25997 -https://www.oceanexpert.org/expert/47583 -https://www.oceanexpert.org/expert/16386 -https://www.oceanexpert.org/expert/18742 -https://www.oceanexpert.org/expert/22226 -https://www.oceanexpert.org/expert/31184 -https://www.oceanexpert.org/institution/14569 -https://www.oceanexpert.org/expert/48954 -https://www.oceanexpert.org/expert/44147 -https://www.oceanexpert.org/expert/42562 -https://www.oceanexpert.org/expert/178 -https://www.oceanexpert.org/expert/4384 -https://www.oceanexpert.org/expert/48974 -https://www.oceanexpert.org/institution/14629 -https://www.oceanexpert.org/expert/39958 -https://www.oceanexpert.org/institution/20205 -https://www.oceanexpert.org/expert/29195 -https://www.oceanexpert.org/expert/23618 -https://www.oceanexpert.org/expert/26710 -https://www.oceanexpert.org/event/2210 -https://www.oceanexpert.org/institution/15993 -https://www.oceanexpert.org/expert/26038 -https://www.oceanexpert.org/institution/13156 -https://www.oceanexpert.org/expert/45999 -https://www.oceanexpert.org/expert/17302 -https://www.oceanexpert.org/expert/46212 -https://www.oceanexpert.org/event/426 -https://www.oceanexpert.org/expert/30128 -https://www.oceanexpert.org/expert/18794 -https://www.oceanexpert.org/expert/38181 -https://www.oceanexpert.org/institution/9621 -https://www.oceanexpert.org/event/1109 -https://www.oceanexpert.org/institution/21139 -https://www.oceanexpert.org/expert/23342 -https://www.oceanexpert.org/expert/29665 -https://www.oceanexpert.org/event/3244 -https://www.oceanexpert.org/expert/18350 -https://www.oceanexpert.org/expert/15618 -https://www.oceanexpert.org/expert/38029 -https://www.oceanexpert.org/expert/43373 -https://www.oceanexpert.org/institution/5811 -https://www.oceanexpert.org/expert/6922 -https://www.oceanexpert.org/expert/21923 -https://www.oceanexpert.org/expert/35639 -https://www.oceanexpert.org/expert/20349 -https://www.oceanexpert.org/expert/40608 -https://www.oceanexpert.org/institution/18963 -https://www.oceanexpert.org/expert/24695 -https://www.oceanexpert.org/expert/7273 -https://www.oceanexpert.org/institution/20651 -https://www.oceanexpert.org/expert/45555 -https://www.oceanexpert.org/expert/40530 -https://www.oceanexpert.org/expert/22302 -https://www.oceanexpert.org/expert/47008 -https://www.oceanexpert.org/expert/48148 -https://www.oceanexpert.org/expert/18917 -https://www.oceanexpert.org/institution/17789 -https://www.oceanexpert.org/institution/6713 -https://www.oceanexpert.org/expert/23474 -https://www.oceanexpert.org/expert/38370 -https://www.oceanexpert.org/expert/28449 -https://www.oceanexpert.org/expert/33754 -https://www.oceanexpert.org/expert/22775 -https://www.oceanexpert.org/event/827 -https://www.oceanexpert.org/event/2699 -https://www.oceanexpert.org/expert/25481 -https://www.oceanexpert.org/institution/20660 -https://www.oceanexpert.org/expert/26716 -https://www.oceanexpert.org/institution/17960 -https://www.oceanexpert.org/expert/36139 -https://www.oceanexpert.org/expert/24719 -https://www.oceanexpert.org/expert/20274 -https://www.oceanexpert.org/expert/36544 -https://www.oceanexpert.org/expert/18342 -https://www.oceanexpert.org/expert/34672 -https://www.oceanexpert.org/institution/11687 -https://www.oceanexpert.org/expert/31157 -https://www.oceanexpert.org/expert/16091 -https://www.oceanexpert.org/event/2718 -https://www.oceanexpert.org/expert/10223 -https://www.oceanexpert.org/institution/18614 -https://www.oceanexpert.org/expert/48806 -https://www.oceanexpert.org/expert/27589 -https://www.oceanexpert.org/institution/22108 -https://www.oceanexpert.org/event/2025 -https://www.oceanexpert.org/expert/21070 -https://www.oceanexpert.org/expert/27172 -https://www.oceanexpert.org/expert/43136 -https://www.oceanexpert.org/expert/27283 -https://www.oceanexpert.org/expert/47509 -https://www.oceanexpert.org/event/2003 -https://www.oceanexpert.org/expert/37510 -https://www.oceanexpert.org/event/1841 -https://www.oceanexpert.org/expert/20343 -https://www.oceanexpert.org/expert/48589 -https://www.oceanexpert.org/institution/13882 -https://www.oceanexpert.org/event/1501 -https://www.oceanexpert.org/event/602 -https://www.oceanexpert.org/institution/14459 -https://www.oceanexpert.org/expert/17454 -https://www.oceanexpert.org/expert/25513 -https://www.oceanexpert.org/institution/5553 -https://www.oceanexpert.org/institution/14391 -https://www.oceanexpert.org/expert/33579 -https://www.oceanexpert.org/expert/47287 -https://www.oceanexpert.org/institution/14089 -https://www.oceanexpert.org/expert/19712 -https://www.oceanexpert.org/expert/24192 -https://www.oceanexpert.org/event/162 -https://www.oceanexpert.org/event/2561 -https://www.oceanexpert.org/expert/43189 -https://www.oceanexpert.org/expert/20497 -https://www.oceanexpert.org/expert/45331 -https://www.oceanexpert.org/expert/40315 -https://www.oceanexpert.org/expert/18918 -https://www.oceanexpert.org/expert/17418 -https://www.oceanexpert.org/institution/20657 -https://www.oceanexpert.org/institution/20182 -https://www.oceanexpert.org/expert/44243 -https://www.oceanexpert.org/institution/14150 -https://www.oceanexpert.org/expert/45110 -https://www.oceanexpert.org/expert/48280 -https://www.oceanexpert.org/event/1877 -https://www.oceanexpert.org/expert/37505 -https://www.oceanexpert.org/event/1385 -https://www.oceanexpert.org/institution/9024 -https://www.oceanexpert.org/institution/17670 -https://www.oceanexpert.org/expert/30476 -https://www.oceanexpert.org/institution/21688 -https://www.oceanexpert.org/expert/14178 -https://www.oceanexpert.org/institution/11857 -https://www.oceanexpert.org/expert/779 -https://www.oceanexpert.org/event/2779 -https://www.oceanexpert.org/expert/18550 -https://www.oceanexpert.org/expert/21760 -https://www.oceanexpert.org/expert/25115 -https://www.oceanexpert.org/expert/19199 -https://www.oceanexpert.org/expert/44593 -https://www.oceanexpert.org/institution/11831 -https://www.oceanexpert.org/expert/16348 -https://www.oceanexpert.org/institution/17927 -https://www.oceanexpert.org/expert/224 -https://www.oceanexpert.org/expert/22431 -https://www.oceanexpert.org/institution/20391 -https://www.oceanexpert.org/expert/16988 -https://www.oceanexpert.org/expert/40667 -https://www.oceanexpert.org/expert/27313 -https://www.oceanexpert.org/institution/12480 -https://www.oceanexpert.org/expert/25414 -https://www.oceanexpert.org/event/2941 -https://www.oceanexpert.org/expert/41430 -https://www.oceanexpert.org/expert/25415 -https://www.oceanexpert.org/event/625 -https://www.oceanexpert.org/expert/42530 -https://www.oceanexpert.org/institution/12635 -https://www.oceanexpert.org/event/2152 -https://www.oceanexpert.org/expert/44047 -https://www.oceanexpert.org/institution/9130 -https://www.oceanexpert.org/expert/48999 -https://www.oceanexpert.org/expert/19215 -https://www.oceanexpert.org/expert/21120 -https://www.oceanexpert.org/expert/21123 -https://www.oceanexpert.org/expert/46849 -https://www.oceanexpert.org/event/952 -https://www.oceanexpert.org/event/1081 -https://www.oceanexpert.org/institution/10049 -https://www.oceanexpert.org/institution/18219 -https://www.oceanexpert.org/institution/18506 -https://www.oceanexpert.org/expert/32184 -https://www.oceanexpert.org/expert/32468 -https://www.oceanexpert.org/expert/31270 -https://www.oceanexpert.org/expert/19392 -https://www.oceanexpert.org/institution/12755 -https://www.oceanexpert.org/expert/35651 -https://www.oceanexpert.org/expert/26797 -https://www.oceanexpert.org/institution/19956 -https://www.oceanexpert.org/expert/30956 -https://www.oceanexpert.org/expert/5548 -https://www.oceanexpert.org/institution/21062 -https://www.oceanexpert.org/institution/12489 -https://www.oceanexpert.org/expert/33861 -https://www.oceanexpert.org/expert/19851 -https://www.oceanexpert.org/expert/20832 -https://www.oceanexpert.org/expert/29811 -https://www.oceanexpert.org/institution/15360 -https://www.oceanexpert.org/expert/33470 -https://www.oceanexpert.org/event/352 -https://www.oceanexpert.org/institution/19330 -https://www.oceanexpert.org/expert/47586 -https://www.oceanexpert.org/expert/19277 -https://www.oceanexpert.org/expert/35218 -https://www.oceanexpert.org/expert/44889 -https://www.oceanexpert.org/institution/10172 -https://www.oceanexpert.org/institution/14301 -https://www.oceanexpert.org/institution/21826 -https://www.oceanexpert.org/institution/15665 -https://www.oceanexpert.org/expert/24145 -https://www.oceanexpert.org/expert/10813 -https://www.oceanexpert.org/event/705 -https://www.oceanexpert.org/expert/38501 -https://www.oceanexpert.org/institution/20400 -https://www.oceanexpert.org/expert/33030 -https://www.oceanexpert.org/expert/38474 -https://www.oceanexpert.org/expert/37010 -https://www.oceanexpert.org/expert/34062 -https://www.oceanexpert.org/event/2289 -https://www.oceanexpert.org/institution/17760 -https://www.oceanexpert.org/expert/24489 -https://www.oceanexpert.org/expert/48007 -https://www.oceanexpert.org/expert/27391 -https://www.oceanexpert.org/institution/14133 -https://www.oceanexpert.org/expert/43659 -https://www.oceanexpert.org/institution/19290 -https://www.oceanexpert.org/institution/21559 -https://www.oceanexpert.org/expert/17324 -https://www.oceanexpert.org/event/1454 -https://www.oceanexpert.org/event/2966 -https://www.oceanexpert.org/expert/26441 -https://www.oceanexpert.org/expert/31197 -https://www.oceanexpert.org/expert/31395 -https://www.oceanexpert.org/expert/46290 -https://www.oceanexpert.org/event/2969 -https://www.oceanexpert.org/expert/6818 -https://www.oceanexpert.org/institution/17839 -https://www.oceanexpert.org/expert/44947 -https://www.oceanexpert.org/institution/20416 -https://www.oceanexpert.org/event/1656 -https://www.oceanexpert.org/institution/18129 -https://www.oceanexpert.org/institution/14347 -https://www.oceanexpert.org/expert/15954 -https://www.oceanexpert.org/expert/29148 -https://www.oceanexpert.org/expert/35588 -https://www.oceanexpert.org/expert/44092 -https://www.oceanexpert.org/expert/14344 -https://www.oceanexpert.org/expert/19282 -https://www.oceanexpert.org/event/1531 -https://www.oceanexpert.org/expert/17050 -https://www.oceanexpert.org/event/890 -https://www.oceanexpert.org/institution/5895 -https://www.oceanexpert.org/institution/17321 -https://www.oceanexpert.org/event/2718 -https://www.oceanexpert.org/expert/32169 -https://www.oceanexpert.org/event/1696 -https://www.oceanexpert.org/expert/44970 -https://www.oceanexpert.org/expert/37850 -https://www.oceanexpert.org/expert/24403 -https://www.oceanexpert.org/expert/17972 -https://www.oceanexpert.org/expert/29740 -https://www.oceanexpert.org/institution/18952 -https://www.oceanexpert.org/expert/22053 -https://www.oceanexpert.org/event/1308 -https://www.oceanexpert.org/institution/20662 -https://www.oceanexpert.org/institution/18982 -https://www.oceanexpert.org/expert/27729 -https://www.oceanexpert.org/event/30 -https://www.oceanexpert.org/expert/27822 -https://www.oceanexpert.org/expert/18177 -https://www.oceanexpert.org/expert/42481 -https://www.oceanexpert.org/expert/43919 -https://www.oceanexpert.org/expert/11415 -https://www.oceanexpert.org/expert/33827 -https://www.oceanexpert.org/institution/13724 -https://www.oceanexpert.org/expert/26414 -https://www.oceanexpert.org/expert/39021 -https://www.oceanexpert.org/expert/30823 -https://www.oceanexpert.org/expert/29302 -https://www.oceanexpert.org/event/1830 -https://www.oceanexpert.org/expert/43164 -https://www.oceanexpert.org/institution/21381 -https://www.oceanexpert.org/expert/28424 -https://www.oceanexpert.org/expert/534 -https://www.oceanexpert.org/expert/34864 -https://www.oceanexpert.org/expert/36643 -https://www.oceanexpert.org/expert/18777 -https://www.oceanexpert.org/expert/20486 -https://www.oceanexpert.org/expert/40311 -https://www.oceanexpert.org/expert/37642 -https://www.oceanexpert.org/expert/30663 -https://www.oceanexpert.org/expert/48362 -https://www.oceanexpert.org/institution/19436 -https://www.oceanexpert.org/expert/34463 -https://www.oceanexpert.org/expert/24860 -https://www.oceanexpert.org/expert/17173 -https://www.oceanexpert.org/institution/11237 -https://www.oceanexpert.org/expert/1659 -https://www.oceanexpert.org/expert/42553 -https://www.oceanexpert.org/expert/24158 -https://www.oceanexpert.org/expert/23311 -https://www.oceanexpert.org/expert/26652 -https://www.oceanexpert.org/expert/43743 -https://www.oceanexpert.org/expert/15984 -https://www.oceanexpert.org/institution/21097 -https://www.oceanexpert.org/institution/17247 -https://www.oceanexpert.org/expert/15538 -https://www.oceanexpert.org/expert/36670 -https://www.oceanexpert.org/event/2857 -https://www.oceanexpert.org/expert/16696 -https://www.oceanexpert.org/expert/23739 -https://www.oceanexpert.org/institution/20807 -https://www.oceanexpert.org/expert/46272 -https://www.oceanexpert.org/expert/35567 -https://www.oceanexpert.org/institution/5405 -https://www.oceanexpert.org/expert/17071 -https://www.oceanexpert.org/expert/13658 -https://www.oceanexpert.org/expert/44669 -https://www.oceanexpert.org/institution/14658 -https://www.oceanexpert.org/institution/14172 -https://www.oceanexpert.org/expert/15361 -https://www.oceanexpert.org/institution/20495 -https://www.oceanexpert.org/expert/46117 -https://www.oceanexpert.org/expert/20360 -https://www.oceanexpert.org/expert/29496 -https://www.oceanexpert.org/expert/37518 -https://www.oceanexpert.org/expert/25750 -https://www.oceanexpert.org/institution/18831 -https://www.oceanexpert.org/institution/18702 -https://www.oceanexpert.org/expert/48634 -https://www.oceanexpert.org/institution/10434 -https://www.oceanexpert.org/institution/10569 -https://www.oceanexpert.org/event/1295 -https://www.oceanexpert.org/expert/18156 -https://www.oceanexpert.org/institution/11989 -https://www.oceanexpert.org/expert/47759 -https://www.oceanexpert.org/institution/9277 -https://www.oceanexpert.org/institution/18664 -https://www.oceanexpert.org/expert/44452 -https://www.oceanexpert.org/expert/43182 -https://www.oceanexpert.org/expert/37977 -https://www.oceanexpert.org/expert/16555 -https://www.oceanexpert.org/expert/425 -https://www.oceanexpert.org/expert/21627 -https://www.oceanexpert.org/institution/17514 -https://www.oceanexpert.org/institution/12204 -https://www.oceanexpert.org/institution/22128 -https://www.oceanexpert.org/institution/15771 -https://www.oceanexpert.org/institution/20962 -https://www.oceanexpert.org/expert/12946 -https://www.oceanexpert.org/expert/49056 -https://www.oceanexpert.org/expert/13492 -https://www.oceanexpert.org/institution/14728 -https://www.oceanexpert.org/expert/22870 -https://www.oceanexpert.org/expert/18994 -https://www.oceanexpert.org/expert/48660 -https://www.oceanexpert.org/event/763 -https://www.oceanexpert.org/expert/12502 -https://www.oceanexpert.org/institution/5762 -https://www.oceanexpert.org/expert/44608 -https://www.oceanexpert.org/expert/43756 -https://www.oceanexpert.org/institution/21254 -https://www.oceanexpert.org/expert/9592 -https://www.oceanexpert.org/institution/12176 -https://www.oceanexpert.org/institution/15707 -https://www.oceanexpert.org/institution/7640 -https://www.oceanexpert.org/institution/17928 -https://www.oceanexpert.org/expert/22357 -https://www.oceanexpert.org/expert/28812 -https://www.oceanexpert.org/institution/16374 -https://www.oceanexpert.org/expert/31000 -https://www.oceanexpert.org/institution/17892 -https://www.oceanexpert.org/institution/15332 -https://www.oceanexpert.org/expert/19931 -https://www.oceanexpert.org/expert/43677 -https://www.oceanexpert.org/expert/34979 -https://www.oceanexpert.org/expert/1144 -https://www.oceanexpert.org/institution/13238 -https://www.oceanexpert.org/expert/23803 -https://www.oceanexpert.org/expert/43439 -https://www.oceanexpert.org/institution/18810 -https://www.oceanexpert.org/expert/21041 -https://www.oceanexpert.org/institution/18064 -https://www.oceanexpert.org/institution/21030 -https://www.oceanexpert.org/expert/11325 -https://www.oceanexpert.org/expert/39803 -https://www.oceanexpert.org/expert/11390 -https://www.oceanexpert.org/expert/22980 -https://www.oceanexpert.org/expert/16877 -https://www.oceanexpert.org/expert/23131 -https://www.oceanexpert.org/expert/47092 -https://www.oceanexpert.org/expert/43788 -https://www.oceanexpert.org/expert/33759 -https://www.oceanexpert.org/expert/23450 -https://www.oceanexpert.org/institution/17943 -https://www.oceanexpert.org/expert/26726 -https://www.oceanexpert.org/expert/3498 -https://www.oceanexpert.org/expert/43165 -https://www.oceanexpert.org/expert/38287 -https://www.oceanexpert.org/expert/35264 -https://www.oceanexpert.org/expert/37114 -https://www.oceanexpert.org/event/1420 -https://www.oceanexpert.org/expert/37649 -https://www.oceanexpert.org/institution/17617 -https://www.oceanexpert.org/expert/25601 -https://www.oceanexpert.org/expert/36219 -https://www.oceanexpert.org/expert/42612 -https://www.oceanexpert.org/expert/44867 -https://www.oceanexpert.org/expert/30036 -https://www.oceanexpert.org/institution/18412 -https://www.oceanexpert.org/institution/21288 -https://www.oceanexpert.org/expert/28469 -https://www.oceanexpert.org/expert/18810 -https://www.oceanexpert.org/expert/23424 -https://www.oceanexpert.org/expert/24752 -https://www.oceanexpert.org/institution/7379 -https://www.oceanexpert.org/expert/45006 -https://www.oceanexpert.org/institution/18338 -https://www.oceanexpert.org/expert/44585 -https://www.oceanexpert.org/expert/28341 -https://www.oceanexpert.org/expert/7199 -https://www.oceanexpert.org/expert/43122 -https://www.oceanexpert.org/expert/36700 -https://www.oceanexpert.org/expert/48516 -https://www.oceanexpert.org/expert/16980 -https://www.oceanexpert.org/expert/48306 -https://www.oceanexpert.org/expert/24527 -https://www.oceanexpert.org/expert/45807 -https://www.oceanexpert.org/institution/9774 -https://www.oceanexpert.org/expert/1783 -https://www.oceanexpert.org/expert/24137 -https://www.oceanexpert.org/expert/48809 -https://www.oceanexpert.org/expert/29434 -https://www.oceanexpert.org/institution/15761 -https://www.oceanexpert.org/expert/18851 -https://www.oceanexpert.org/expert/37457 -https://www.oceanexpert.org/expert/38153 -https://www.oceanexpert.org/expert/13117 -https://www.oceanexpert.org/expert/36374 -https://www.oceanexpert.org/event/2957 -https://www.oceanexpert.org/expert/37438 -https://www.oceanexpert.org/expert/17583 -https://www.oceanexpert.org/expert/37138 -https://www.oceanexpert.org/expert/21601 -https://www.oceanexpert.org/institution/19292 -https://www.oceanexpert.org/institution/6842 -https://www.oceanexpert.org/expert/9545 -https://www.oceanexpert.org/event/394 -https://www.oceanexpert.org/institution/19708 -https://www.oceanexpert.org/expert/640 -https://www.oceanexpert.org/expert/748 -https://www.oceanexpert.org/expert/2204 -https://www.oceanexpert.org/expert/44732 -https://www.oceanexpert.org/event/3246 -https://www.oceanexpert.org/expert/34458 -https://www.oceanexpert.org/expert/27358 -https://www.oceanexpert.org/expert/14095 -https://www.oceanexpert.org/expert/26134 -https://www.oceanexpert.org/expert/22418 -https://www.oceanexpert.org/expert/17050 -https://www.oceanexpert.org/expert/45190 -https://www.oceanexpert.org/expert/31521 -https://www.oceanexpert.org/expert/24561 -https://www.oceanexpert.org/expert/636 -https://www.oceanexpert.org/expert/22572 -https://www.oceanexpert.org/institution/12118 -https://www.oceanexpert.org/institution/14822 -https://www.oceanexpert.org/institution/21932 -https://www.oceanexpert.org/expert/39964 -https://www.oceanexpert.org/expert/17546 -https://www.oceanexpert.org/expert/27563 -https://www.oceanexpert.org/expert/6641 -https://www.oceanexpert.org/institution/11242 -https://www.oceanexpert.org/expert/45684 -https://www.oceanexpert.org/institution/21215 -https://www.oceanexpert.org/expert/34498 -https://www.oceanexpert.org/expert/34528 -https://www.oceanexpert.org/institution/13233 -https://www.oceanexpert.org/expert/48320 -https://www.oceanexpert.org/event/2329 -https://www.oceanexpert.org/institution/21116 -https://www.oceanexpert.org/expert/27523 -https://www.oceanexpert.org/expert/47338 -https://www.oceanexpert.org/institution/21323 -https://www.oceanexpert.org/expert/43464 -https://www.oceanexpert.org/institution/17736 -https://www.oceanexpert.org/expert/40312 -https://www.oceanexpert.org/institution/12298 -https://www.oceanexpert.org/institution/21766 -https://www.oceanexpert.org/expert/15996 -https://www.oceanexpert.org/expert/21225 -https://www.oceanexpert.org/expert/20216 -https://www.oceanexpert.org/institution/18296 -https://www.oceanexpert.org/institution/19231 -https://www.oceanexpert.org/institution/21392 -https://www.oceanexpert.org/expert/35333 -https://www.oceanexpert.org/expert/26658 -https://www.oceanexpert.org/expert/26725 -https://www.oceanexpert.org/event/2119 -https://www.oceanexpert.org/expert/26097 -https://www.oceanexpert.org/institution/18230 -https://www.oceanexpert.org/expert/32793 -https://www.oceanexpert.org/expert/31898 -https://www.oceanexpert.org/institution/11482 -https://www.oceanexpert.org/expert/28423 -https://www.oceanexpert.org/expert/22443 -https://www.oceanexpert.org/expert/22538 -https://www.oceanexpert.org/institution/14461 -https://www.oceanexpert.org/expert/23375 -https://www.oceanexpert.org/institution/10708 -https://www.oceanexpert.org/institution/9247 -https://www.oceanexpert.org/institution/17151 -https://www.oceanexpert.org/event/1081 -https://www.oceanexpert.org/expert/24923 -https://www.oceanexpert.org/expert/14203 -https://www.oceanexpert.org/expert/38847 -https://www.oceanexpert.org/event/3181 -https://www.oceanexpert.org/institution/5224 -https://www.oceanexpert.org/institution/10569 -https://www.oceanexpert.org/expert/43820 -https://www.oceanexpert.org/expert/39214 -https://www.oceanexpert.org/institution/21101 -https://www.oceanexpert.org/institution/20741 -https://www.oceanexpert.org/institution/14593 -https://www.oceanexpert.org/event/415 -https://www.oceanexpert.org/expert/36589 -https://www.oceanexpert.org/expert/39372 -https://www.oceanexpert.org/institution/20822 -https://www.oceanexpert.org/expert/34608 -https://www.oceanexpert.org/expert/44699 -https://www.oceanexpert.org/event/2886 -https://www.oceanexpert.org/expert/23504 -https://www.oceanexpert.org/expert/16428 -https://www.oceanexpert.org/institution/18562 -https://www.oceanexpert.org/expert/46942 -https://www.oceanexpert.org/institution/20684 -https://www.oceanexpert.org/expert/20631 -https://www.oceanexpert.org/expert/13752 -https://www.oceanexpert.org/expert/32508 -https://www.oceanexpert.org/expert/18866 -https://www.oceanexpert.org/expert/32446 -https://www.oceanexpert.org/expert/7158 -https://www.oceanexpert.org/institution/19017 -https://www.oceanexpert.org/expert/34168 -https://www.oceanexpert.org/expert/45171 -https://www.oceanexpert.org/expert/34874 -https://www.oceanexpert.org/expert/36399 -https://www.oceanexpert.org/expert/29719 -https://www.oceanexpert.org/expert/19976 -https://www.oceanexpert.org/expert/43361 -https://www.oceanexpert.org/expert/42868 -https://www.oceanexpert.org/expert/30342 -https://www.oceanexpert.org/institution/11532 -https://www.oceanexpert.org/event/2729 -https://www.oceanexpert.org/expert/25605 -https://www.oceanexpert.org/expert/48364 -https://www.oceanexpert.org/expert/22535 -https://www.oceanexpert.org/expert/10777 -https://www.oceanexpert.org/expert/38337 -https://www.oceanexpert.org/expert/16503 -https://www.oceanexpert.org/expert/18218 -https://www.oceanexpert.org/expert/24212 -https://www.oceanexpert.org/expert/28126 -https://www.oceanexpert.org/event/958 -https://www.oceanexpert.org/expert/48909 -https://www.oceanexpert.org/expert/44538 -https://www.oceanexpert.org/expert/34789 -https://www.oceanexpert.org/expert/24990 -https://www.oceanexpert.org/expert/32757 -https://www.oceanexpert.org/expert/7569 -https://www.oceanexpert.org/expert/972 -https://www.oceanexpert.org/expert/47038 -https://www.oceanexpert.org/expert/29965 -https://www.oceanexpert.org/expert/14624 -https://www.oceanexpert.org/institution/10448 -https://www.oceanexpert.org/expert/14131 -https://www.oceanexpert.org/expert/32237 -https://www.oceanexpert.org/expert/24522 -https://www.oceanexpert.org/event/369 -https://www.oceanexpert.org/expert/33065 -https://www.oceanexpert.org/institution/19121 -https://www.oceanexpert.org/expert/43861 -https://www.oceanexpert.org/expert/22721 -https://www.oceanexpert.org/expert/20557 -https://www.oceanexpert.org/expert/35861 -https://www.oceanexpert.org/expert/43393 -https://www.oceanexpert.org/institution/18730 -https://www.oceanexpert.org/expert/7124 -https://www.oceanexpert.org/expert/16130 -https://www.oceanexpert.org/event/1323 -https://www.oceanexpert.org/expert/39178 -https://www.oceanexpert.org/expert/35343 -https://www.oceanexpert.org/expert/44480 -https://www.oceanexpert.org/expert/30298 -https://www.oceanexpert.org/event/1266 -https://www.oceanexpert.org/institution/7976 -https://www.oceanexpert.org/expert/16151 -https://www.oceanexpert.org/expert/29506 -https://www.oceanexpert.org/expert/39078 -https://www.oceanexpert.org/expert/42989 -https://www.oceanexpert.org/institution/14737 -https://www.oceanexpert.org/expert/14275 -https://www.oceanexpert.org/expert/46975 -https://www.oceanexpert.org/event/1418 -https://www.oceanexpert.org/expert/15554 -https://www.oceanexpert.org/expert/27513 -https://www.oceanexpert.org/expert/37192 -https://www.oceanexpert.org/expert/17581 -https://www.oceanexpert.org/institution/17109 -https://www.oceanexpert.org/institution/10570 -https://www.oceanexpert.org/expert/40595 -https://www.oceanexpert.org/expert/43196 -https://www.oceanexpert.org/institution/19630 -https://www.oceanexpert.org/event/3073 -https://www.oceanexpert.org/expert/26010 -https://www.oceanexpert.org/expert/21667 -https://www.oceanexpert.org/institution/11772 -https://www.oceanexpert.org/institution/8504 -https://www.oceanexpert.org/expert/38557 -https://www.oceanexpert.org/expert/33424 -https://www.oceanexpert.org/expert/24120 -https://www.oceanexpert.org/expert/24011 -https://www.oceanexpert.org/expert/32876 -https://www.oceanexpert.org/expert/46567 -https://www.oceanexpert.org/expert/30942 -https://www.oceanexpert.org/expert/43056 -https://www.oceanexpert.org/expert/28091 -https://www.oceanexpert.org/institution/21975 -https://www.oceanexpert.org/expert/27135 -https://www.oceanexpert.org/expert/20485 -https://www.oceanexpert.org/expert/34490 -https://www.oceanexpert.org/expert/14181 -https://www.oceanexpert.org/institution/20804 -https://www.oceanexpert.org/expert/31446 -https://www.oceanexpert.org/expert/38851 -https://www.oceanexpert.org/expert/28956 -https://www.oceanexpert.org/expert/48740 -https://www.oceanexpert.org/expert/15564 -https://www.oceanexpert.org/expert/24874 -https://www.oceanexpert.org/expert/3127 -https://www.oceanexpert.org/expert/37864 -https://www.oceanexpert.org/event/2499 -https://www.oceanexpert.org/institution/20897 -https://www.oceanexpert.org/expert/17432 -https://www.oceanexpert.org/expert/46582 -https://www.oceanexpert.org/expert/29753 -https://www.oceanexpert.org/expert/19785 -https://www.oceanexpert.org/institution/15710 -https://www.oceanexpert.org/expert/45506 -https://www.oceanexpert.org/expert/37082 -https://www.oceanexpert.org/expert/37734 -https://www.oceanexpert.org/event/1900 -https://www.oceanexpert.org/expert/47795 -https://www.oceanexpert.org/event/747 -https://www.oceanexpert.org/event/1114 -https://www.oceanexpert.org/expert/34718 -https://www.oceanexpert.org/event/2595 -https://www.oceanexpert.org/institution/17822 -https://www.oceanexpert.org/institution/6765 -https://www.oceanexpert.org/expert/20097 -https://www.oceanexpert.org/expert/22251 -https://www.oceanexpert.org/expert/12697 -https://www.oceanexpert.org/expert/45866 -https://www.oceanexpert.org/event/1942 -https://www.oceanexpert.org/expert/18267 -https://www.oceanexpert.org/expert/46838 -https://www.oceanexpert.org/expert/4535 -https://www.oceanexpert.org/expert/33245 -https://www.oceanexpert.org/expert/16943 -https://www.oceanexpert.org/expert/39828 -https://www.oceanexpert.org/expert/22206 -https://www.oceanexpert.org/institution/7553 -https://www.oceanexpert.org/expert/11242 -https://www.oceanexpert.org/expert/35701 -https://www.oceanexpert.org/event/3184 -https://www.oceanexpert.org/expert/13370 -https://www.oceanexpert.org/expert/27776 -https://www.oceanexpert.org/expert/43314 -https://www.oceanexpert.org/expert/26809 -https://www.oceanexpert.org/expert/46282 -https://www.oceanexpert.org/institution/14968 -https://www.oceanexpert.org/institution/19058 -https://www.oceanexpert.org/expert/12287 -https://www.oceanexpert.org/expert/24292 -https://www.oceanexpert.org/expert/46389 -https://www.oceanexpert.org/event/3067 -https://www.oceanexpert.org/expert/26178 -https://www.oceanexpert.org/institution/21233 -https://www.oceanexpert.org/expert/26737 -https://www.oceanexpert.org/expert/33793 -https://www.oceanexpert.org/event/2764 -https://www.oceanexpert.org/expert/27496 -https://www.oceanexpert.org/expert/37385 -https://www.oceanexpert.org/institution/21096 -https://www.oceanexpert.org/expert/26374 -https://www.oceanexpert.org/expert/23914 -https://www.oceanexpert.org/institution/19069 -https://www.oceanexpert.org/expert/29432 -https://www.oceanexpert.org/expert/20135 -https://www.oceanexpert.org/expert/11606 -https://www.oceanexpert.org/expert/20756 -https://www.oceanexpert.org/expert/48625 -https://www.oceanexpert.org/expert/47039 -https://www.oceanexpert.org/expert/23161 -https://www.oceanexpert.org/institution/7922 -https://www.oceanexpert.org/event/1834 -https://www.oceanexpert.org/institution/19223 -https://www.oceanexpert.org/expert/25733 -https://www.oceanexpert.org/institution/21362 -https://www.oceanexpert.org/institution/21284 -https://www.oceanexpert.org/expert/13616 -https://www.oceanexpert.org/expert/20647 -https://www.oceanexpert.org/expert/48755 -https://www.oceanexpert.org/expert/21053 -https://www.oceanexpert.org/institution/16967 -https://www.oceanexpert.org/expert/37884 -https://www.oceanexpert.org/expert/35107 -https://www.oceanexpert.org/institution/21893 -https://www.oceanexpert.org/expert/20860 -https://www.oceanexpert.org/expert/11858 -https://www.oceanexpert.org/event/2766 -https://www.oceanexpert.org/expert/29694 -https://www.oceanexpert.org/institution/18991 -https://www.oceanexpert.org/expert/45038 -https://www.oceanexpert.org/event/126 -https://www.oceanexpert.org/institution/5762 -https://www.oceanexpert.org/event/965 -https://www.oceanexpert.org/expert/47493 -https://www.oceanexpert.org/expert/44595 -https://www.oceanexpert.org/event/1261 -https://www.oceanexpert.org/institution/18711 -https://www.oceanexpert.org/expert/47779 -https://www.oceanexpert.org/institution/12770 -https://www.oceanexpert.org/expert/35983 -https://www.oceanexpert.org/event/1859 -https://www.oceanexpert.org/institution/13313 -https://www.oceanexpert.org/expert/34775 -https://www.oceanexpert.org/institution/6441 -https://www.oceanexpert.org/expert/47376 -https://www.oceanexpert.org/expert/48658 -https://www.oceanexpert.org/expert/43239 -https://www.oceanexpert.org/expert/24519 -https://www.oceanexpert.org/expert/36382 -https://www.oceanexpert.org/expert/31305 -https://www.oceanexpert.org/expert/24538 -https://www.oceanexpert.org/expert/18649 -https://www.oceanexpert.org/expert/29954 -https://www.oceanexpert.org/expert/22456 -https://www.oceanexpert.org/institution/14176 -https://www.oceanexpert.org/expert/24436 -https://www.oceanexpert.org/expert/45618 -https://www.oceanexpert.org/expert/21667 -https://www.oceanexpert.org/expert/42512 -https://www.oceanexpert.org/expert/29510 -https://www.oceanexpert.org/expert/48016 -https://www.oceanexpert.org/expert/42910 -https://www.oceanexpert.org/event/3266 -https://www.oceanexpert.org/expert/17359 -https://www.oceanexpert.org/expert/45233 -https://www.oceanexpert.org/expert/6700 -https://www.oceanexpert.org/institution/21534 -https://www.oceanexpert.org/expert/33441 -https://www.oceanexpert.org/expert/27568 -https://www.oceanexpert.org/expert/21213 -https://www.oceanexpert.org/expert/869 -https://www.oceanexpert.org/event/1961 -https://www.oceanexpert.org/expert/22605 -https://www.oceanexpert.org/institution/6315 -https://www.oceanexpert.org/institution/13020 -https://www.oceanexpert.org/expert/19434 -https://www.oceanexpert.org/expert/43959 -https://www.oceanexpert.org/expert/25299 -https://www.oceanexpert.org/expert/26198 -https://www.oceanexpert.org/event/1826 -https://www.oceanexpert.org/expert/23916 -https://www.oceanexpert.org/institution/21467 -https://www.oceanexpert.org/expert/40589 -https://www.oceanexpert.org/expert/26077 -https://www.oceanexpert.org/institution/17613 -https://www.oceanexpert.org/expert/27096 -https://www.oceanexpert.org/expert/19990 -https://www.oceanexpert.org/event/1916 -https://www.oceanexpert.org/institution/14943 -https://www.oceanexpert.org/expert/30204 -https://www.oceanexpert.org/expert/44867 -https://www.oceanexpert.org/expert/39230 -https://www.oceanexpert.org/expert/33503 -https://www.oceanexpert.org/institution/19679 -https://www.oceanexpert.org/expert/24543 -https://www.oceanexpert.org/event/2297 -https://www.oceanexpert.org/expert/28229 -https://www.oceanexpert.org/expert/28058 -https://www.oceanexpert.org/expert/21670 -https://www.oceanexpert.org/institution/17853 -https://www.oceanexpert.org/expert/29433 -https://www.oceanexpert.org/expert/19315 -https://www.oceanexpert.org/event/3247 -https://www.oceanexpert.org/expert/27394 -https://www.oceanexpert.org/expert/43623 -https://www.oceanexpert.org/institution/12852 -https://www.oceanexpert.org/expert/35488 -https://www.oceanexpert.org/institution/8822 -https://www.oceanexpert.org/institution/8002 -https://www.oceanexpert.org/expert/24391 -https://www.oceanexpert.org/event/1085 -https://www.oceanexpert.org/event/2002 -https://www.oceanexpert.org/expert/26421 -https://www.oceanexpert.org/expert/37142 -https://www.oceanexpert.org/institution/17032 -https://www.oceanexpert.org/institution/11791 -https://www.oceanexpert.org/expert/32983 -https://www.oceanexpert.org/expert/35062 -https://www.oceanexpert.org/expert/39251 -https://www.oceanexpert.org/institution/20795 -https://www.oceanexpert.org/institution/6971 -https://www.oceanexpert.org/institution/18608 -https://www.oceanexpert.org/expert/26272 -https://www.oceanexpert.org/expert/39173 -https://www.oceanexpert.org/expert/40297 -https://www.oceanexpert.org/expert/39285 -https://www.oceanexpert.org/expert/18834 -https://www.oceanexpert.org/institution/21076 -https://www.oceanexpert.org/event/805 -https://www.oceanexpert.org/institution/18284 -https://www.oceanexpert.org/institution/4899 -https://www.oceanexpert.org/institution/18186 -https://www.oceanexpert.org/expert/46716 -https://www.oceanexpert.org/institution/16191 -https://www.oceanexpert.org/expert/22515 -https://www.oceanexpert.org/institution/12645 -https://www.oceanexpert.org/expert/20912 -https://www.oceanexpert.org/institution/22152 -https://www.oceanexpert.org/expert/31131 -https://www.oceanexpert.org/expert/4776 -https://www.oceanexpert.org/expert/25151 -https://www.oceanexpert.org/expert/27945 -https://www.oceanexpert.org/expert/24791 -https://www.oceanexpert.org/institution/12401 -https://www.oceanexpert.org/institution/22132 -https://www.oceanexpert.org/expert/18150 -https://www.oceanexpert.org/expert/17343 -https://www.oceanexpert.org/expert/20378 -https://www.oceanexpert.org/event/1498 -https://www.oceanexpert.org/expert/21039 -https://www.oceanexpert.org/institution/21598 -https://www.oceanexpert.org/expert/13521 -https://www.oceanexpert.org/expert/38492 -https://www.oceanexpert.org/event/650 -https://www.oceanexpert.org/institution/21882 -https://www.oceanexpert.org/expert/16699 -https://www.oceanexpert.org/expert/47387 -https://www.oceanexpert.org/expert/16325 -https://www.oceanexpert.org/expert/37137 -https://www.oceanexpert.org/expert/2191 -https://www.oceanexpert.org/expert/14485 -https://www.oceanexpert.org/expert/27074 -https://www.oceanexpert.org/expert/25281 -https://www.oceanexpert.org/institution/6657 -https://www.oceanexpert.org/expert/43990 -https://www.oceanexpert.org/expert/43104 -https://www.oceanexpert.org/expert/19135 -https://www.oceanexpert.org/expert/37884 -https://www.oceanexpert.org/institution/21654 -https://www.oceanexpert.org/expert/18815 -https://www.oceanexpert.org/expert/25716 -https://www.oceanexpert.org/expert/16319 -https://www.oceanexpert.org/expert/29754 -https://www.oceanexpert.org/institution/19149 -https://www.oceanexpert.org/expert/22744 -https://www.oceanexpert.org/expert/19396 -https://www.oceanexpert.org/expert/29384 -https://www.oceanexpert.org/expert/6935 -https://www.oceanexpert.org/institution/19935 -https://www.oceanexpert.org/expert/26198 -https://www.oceanexpert.org/expert/45725 -https://www.oceanexpert.org/institution/19079 -https://www.oceanexpert.org/expert/38434 -https://www.oceanexpert.org/expert/46105 -https://www.oceanexpert.org/expert/37403 -https://www.oceanexpert.org/event/2166 -https://www.oceanexpert.org/expert/36439 -https://www.oceanexpert.org/expert/22267 -https://www.oceanexpert.org/institution/19635 -https://www.oceanexpert.org/institution/14172 -https://www.oceanexpert.org/expert/16873 -https://www.oceanexpert.org/expert/6928 -https://www.oceanexpert.org/expert/37876 -https://www.oceanexpert.org/event/720 -https://www.oceanexpert.org/expert/32206 -https://www.oceanexpert.org/expert/40571 -https://www.oceanexpert.org/institution/20881 -https://www.oceanexpert.org/expert/45122 -https://www.oceanexpert.org/event/2752 -https://www.oceanexpert.org/institution/20089 -https://www.oceanexpert.org/expert/44831 -https://www.oceanexpert.org/expert/45888 -https://www.oceanexpert.org/institution/21096 -https://www.oceanexpert.org/expert/33347 -https://www.oceanexpert.org/expert/25616 -https://www.oceanexpert.org/expert/41678 -https://www.oceanexpert.org/expert/24075 -https://www.oceanexpert.org/expert/18059 -https://www.oceanexpert.org/expert/45550 -https://www.oceanexpert.org/institution/13516 -https://www.oceanexpert.org/institution/20368 -https://www.oceanexpert.org/expert/22130 -https://www.oceanexpert.org/expert/7263 -https://www.oceanexpert.org/expert/27455 -https://www.oceanexpert.org/institution/22056 -https://www.oceanexpert.org/expert/31337 -https://www.oceanexpert.org/institution/20376 -https://www.oceanexpert.org/expert/8889 -https://www.oceanexpert.org/expert/38005 -https://www.oceanexpert.org/expert/38626 -https://www.oceanexpert.org/expert/38784 -https://www.oceanexpert.org/expert/27227 -https://www.oceanexpert.org/expert/36917 -https://www.oceanexpert.org/expert/47998 -https://www.oceanexpert.org/expert/24536 -https://www.oceanexpert.org/expert/33201 -https://www.oceanexpert.org/institution/20070 -https://www.oceanexpert.org/institution/8423 -https://www.oceanexpert.org/expert/44792 -https://www.oceanexpert.org/institution/18111 -https://www.oceanexpert.org/expert/43173 -https://www.oceanexpert.org/expert/29439 -https://www.oceanexpert.org/event/2553 -https://www.oceanexpert.org/event/2395 -https://www.oceanexpert.org/expert/20951 -https://www.oceanexpert.org/expert/33344 -https://www.oceanexpert.org/expert/28159 -https://www.oceanexpert.org/expert/15292 -https://www.oceanexpert.org/institution/4953 -https://www.oceanexpert.org/expert/19753 -https://www.oceanexpert.org/expert/44674 -https://www.oceanexpert.org/expert/8888 -https://www.oceanexpert.org/event/1938 -https://www.oceanexpert.org/expert/46090 -https://www.oceanexpert.org/institution/21369 -https://www.oceanexpert.org/event/67 -https://www.oceanexpert.org/expert/38910 -https://www.oceanexpert.org/institution/15794 -https://www.oceanexpert.org/expert/44464 -https://www.oceanexpert.org/institution/20669 -https://www.oceanexpert.org/institution/19920 -https://www.oceanexpert.org/expert/38227 -https://www.oceanexpert.org/expert/48053 -https://www.oceanexpert.org/institution/9774 -https://www.oceanexpert.org/expert/22788 -https://www.oceanexpert.org/expert/26832 -https://www.oceanexpert.org/institution/18626 -https://www.oceanexpert.org/institution/19409 -https://www.oceanexpert.org/event/21 -https://www.oceanexpert.org/expert/37909 -https://www.oceanexpert.org/expert/45123 -https://www.oceanexpert.org/institution/20867 -https://www.oceanexpert.org/institution/20840 -https://www.oceanexpert.org/institution/19225 -https://www.oceanexpert.org/event/3096 -https://www.oceanexpert.org/expert/48272 -https://www.oceanexpert.org/expert/46902 -https://www.oceanexpert.org/expert/43871 -https://www.oceanexpert.org/institution/6364 -https://www.oceanexpert.org/expert/34314 -https://www.oceanexpert.org/institution/18642 -https://www.oceanexpert.org/expert/38162 -https://www.oceanexpert.org/institution/7641 -https://www.oceanexpert.org/institution/19120 -https://www.oceanexpert.org/institution/21339 -https://www.oceanexpert.org/event/1963 -https://www.oceanexpert.org/institution/13996 -https://www.oceanexpert.org/expert/36708 -https://www.oceanexpert.org/expert/32689 -https://www.oceanexpert.org/institution/15605 -https://www.oceanexpert.org/expert/23888 -https://www.oceanexpert.org/expert/44583 -https://www.oceanexpert.org/institution/17586 -https://www.oceanexpert.org/institution/17836 -https://www.oceanexpert.org/expert/20909 -https://www.oceanexpert.org/event/1350 -https://www.oceanexpert.org/expert/37479 -https://www.oceanexpert.org/expert/28410 -https://www.oceanexpert.org/institution/16802 -https://www.oceanexpert.org/expert/35537 -https://www.oceanexpert.org/institution/19328 -https://www.oceanexpert.org/expert/17464 -https://www.oceanexpert.org/expert/26103 -https://www.oceanexpert.org/expert/14991 -https://www.oceanexpert.org/institution/16083 -https://www.oceanexpert.org/event/2266 -https://www.oceanexpert.org/institution/12437 -https://www.oceanexpert.org/expert/30931 -https://www.oceanexpert.org/expert/44375 -https://www.oceanexpert.org/institution/20696 -https://www.oceanexpert.org/institution/18003 -https://www.oceanexpert.org/institution/21657 -https://www.oceanexpert.org/institution/15250 -https://www.oceanexpert.org/expert/35562 -https://www.oceanexpert.org/expert/33728 -https://www.oceanexpert.org/institution/22051 -https://www.oceanexpert.org/institution/19534 -https://www.oceanexpert.org/expert/32234 -https://www.oceanexpert.org/expert/28287 -https://www.oceanexpert.org/expert/24036 -https://www.oceanexpert.org/expert/11508 -https://www.oceanexpert.org/event/434 -https://www.oceanexpert.org/institution/20649 -https://www.oceanexpert.org/expert/34784 -https://www.oceanexpert.org/event/579 -https://www.oceanexpert.org/institution/13189 -https://www.oceanexpert.org/institution/15406 -https://www.oceanexpert.org/expert/44780 -https://www.oceanexpert.org/institution/19250 -https://www.oceanexpert.org/expert/44202 -https://www.oceanexpert.org/expert/34283 -https://www.oceanexpert.org/institution/12797 -https://www.oceanexpert.org/expert/37725 -https://www.oceanexpert.org/expert/36113 -https://www.oceanexpert.org/expert/43202 -https://www.oceanexpert.org/expert/49041 -https://www.oceanexpert.org/expert/7205 -https://www.oceanexpert.org/expert/21864 -https://www.oceanexpert.org/expert/1741 -https://www.oceanexpert.org/institution/21650 -https://www.oceanexpert.org/expert/2302 -https://www.oceanexpert.org/expert/28406 -https://www.oceanexpert.org/expert/24639 -https://www.oceanexpert.org/institution/21677 -https://www.oceanexpert.org/expert/38920 -https://www.oceanexpert.org/expert/43470 -https://www.oceanexpert.org/expert/18652 -https://www.oceanexpert.org/expert/26227 -https://www.oceanexpert.org/expert/28258 -https://www.oceanexpert.org/institution/21524 -https://www.oceanexpert.org/institution/21099 -https://www.oceanexpert.org/institution/18396 -https://www.oceanexpert.org/expert/46253 -https://www.oceanexpert.org/expert/32249 -https://www.oceanexpert.org/expert/45491 -https://www.oceanexpert.org/expert/34962 -https://www.oceanexpert.org/expert/34873 -https://www.oceanexpert.org/expert/11373 -https://www.oceanexpert.org/expert/25488 -https://www.oceanexpert.org/expert/21592 -https://www.oceanexpert.org/expert/27220 -https://www.oceanexpert.org/expert/16835 -https://www.oceanexpert.org/expert/45615 -https://www.oceanexpert.org/expert/13554 -https://www.oceanexpert.org/expert/27410 -https://www.oceanexpert.org/institution/15935 -https://www.oceanexpert.org/expert/34512 -https://www.oceanexpert.org/institution/19377 -https://www.oceanexpert.org/institution/20978 -https://www.oceanexpert.org/expert/46684 -https://www.oceanexpert.org/expert/21932 -https://www.oceanexpert.org/expert/27075 -https://www.oceanexpert.org/expert/33822 -https://www.oceanexpert.org/institution/7299 -https://www.oceanexpert.org/expert/46825 -https://www.oceanexpert.org/expert/34106 -https://www.oceanexpert.org/expert/33366 -https://www.oceanexpert.org/institution/20828 -https://www.oceanexpert.org/event/2486 -https://www.oceanexpert.org/institution/18616 -https://www.oceanexpert.org/expert/24919 -https://www.oceanexpert.org/institution/22160 -https://www.oceanexpert.org/expert/18647 -https://www.oceanexpert.org/institution/17122 -https://www.oceanexpert.org/expert/19099 -https://www.oceanexpert.org/expert/13568 -https://www.oceanexpert.org/expert/43721 -https://www.oceanexpert.org/expert/23995 -https://www.oceanexpert.org/expert/32695 -https://www.oceanexpert.org/expert/35189 -https://www.oceanexpert.org/expert/21043 -https://www.oceanexpert.org/event/266 -https://www.oceanexpert.org/expert/22904 -https://www.oceanexpert.org/institution/18583 -https://www.oceanexpert.org/event/1844 -https://www.oceanexpert.org/expert/22855 -https://www.oceanexpert.org/expert/33113 -https://www.oceanexpert.org/expert/37154 -https://www.oceanexpert.org/expert/24134 -https://www.oceanexpert.org/expert/12738 -https://www.oceanexpert.org/expert/31647 -https://www.oceanexpert.org/event/3061 -https://www.oceanexpert.org/expert/46474 -https://www.oceanexpert.org/expert/6489 -https://www.oceanexpert.org/institution/17974 -https://www.oceanexpert.org/expert/45646 -https://www.oceanexpert.org/expert/46243 -https://www.oceanexpert.org/expert/26517 -https://www.oceanexpert.org/expert/31891 -https://www.oceanexpert.org/event/2612 -https://www.oceanexpert.org/institution/10165 -https://www.oceanexpert.org/expert/36674 -https://www.oceanexpert.org/event/1851 -https://www.oceanexpert.org/expert/43101 -https://www.oceanexpert.org/expert/48400 -https://www.oceanexpert.org/institution/17780 -https://www.oceanexpert.org/institution/11310 -https://www.oceanexpert.org/expert/35656 -https://www.oceanexpert.org/institution/20957 -https://www.oceanexpert.org/expert/24459 -https://www.oceanexpert.org/institution/18442 -https://www.oceanexpert.org/expert/43515 -https://www.oceanexpert.org/expert/31272 -https://www.oceanexpert.org/expert/14297 -https://www.oceanexpert.org/event/2358 -https://www.oceanexpert.org/expert/20370 -https://www.oceanexpert.org/expert/39280 -https://www.oceanexpert.org/expert/40177 -https://www.oceanexpert.org/institution/21713 -https://www.oceanexpert.org/expert/31914 -https://www.oceanexpert.org/expert/4511 -https://www.oceanexpert.org/expert/47464 -https://www.oceanexpert.org/event/1498 -https://www.oceanexpert.org/institution/18440 -https://www.oceanexpert.org/expert/34507 -https://www.oceanexpert.org/expert/719 -https://www.oceanexpert.org/event/2437 -https://www.oceanexpert.org/expert/23218 -https://www.oceanexpert.org/expert/13624 -https://www.oceanexpert.org/expert/36897 -https://www.oceanexpert.org/institution/16210 -https://www.oceanexpert.org/institution/19921 -https://www.oceanexpert.org/expert/15194 -https://www.oceanexpert.org/expert/18562 -https://www.oceanexpert.org/expert/27223 -https://www.oceanexpert.org/expert/24607 -https://www.oceanexpert.org/expert/40611 -https://www.oceanexpert.org/institution/13935 -https://www.oceanexpert.org/institution/21622 -https://www.oceanexpert.org/expert/26036 -https://www.oceanexpert.org/expert/27371 -https://www.oceanexpert.org/expert/8639 -https://www.oceanexpert.org/institution/21433 -https://www.oceanexpert.org/expert/35868 -https://www.oceanexpert.org/institution/17469 -https://www.oceanexpert.org/expert/34237 -https://www.oceanexpert.org/institution/11828 -https://www.oceanexpert.org/expert/35019 -https://www.oceanexpert.org/expert/16352 -https://www.oceanexpert.org/expert/48287 -https://www.oceanexpert.org/expert/27090 -https://www.oceanexpert.org/institution/21735 -https://www.oceanexpert.org/expert/36924 -https://www.oceanexpert.org/expert/12417 -https://www.oceanexpert.org/expert/34471 -https://www.oceanexpert.org/event/1978 -https://www.oceanexpert.org/institution/12139 -https://www.oceanexpert.org/expert/26553 -https://www.oceanexpert.org/event/2834 -https://www.oceanexpert.org/expert/28825 -https://www.oceanexpert.org/institution/20725 -https://www.oceanexpert.org/institution/7016 -https://www.oceanexpert.org/institution/19399 -https://www.oceanexpert.org/institution/20150 -https://www.oceanexpert.org/institution/13879 -https://www.oceanexpert.org/expert/11740 -https://www.oceanexpert.org/expert/25800 -https://www.oceanexpert.org/institution/10689 -https://www.oceanexpert.org/expert/42422 -https://www.oceanexpert.org/event/2026 -https://www.oceanexpert.org/expert/12673 -https://www.oceanexpert.org/expert/16083 -https://www.oceanexpert.org/expert/40615 -https://www.oceanexpert.org/institution/18882 -https://www.oceanexpert.org/expert/24867 -https://www.oceanexpert.org/expert/44709 -https://www.oceanexpert.org/institution/17664 -https://www.oceanexpert.org/expert/32351 -https://www.oceanexpert.org/institution/21356 -https://www.oceanexpert.org/institution/20108 -https://www.oceanexpert.org/expert/6756 -https://www.oceanexpert.org/expert/31811 -https://www.oceanexpert.org/expert/43922 -https://www.oceanexpert.org/event/2892 -https://www.oceanexpert.org/expert/25347 -https://www.oceanexpert.org/institution/16906 -https://www.oceanexpert.org/institution/5963 -https://www.oceanexpert.org/expert/16890 -https://www.oceanexpert.org/expert/33929 -https://www.oceanexpert.org/expert/33376 -https://www.oceanexpert.org/institution/18067 -https://www.oceanexpert.org/event/644 -https://www.oceanexpert.org/institution/16917 -https://www.oceanexpert.org/event/1893 -https://www.oceanexpert.org/expert/30586 -https://www.oceanexpert.org/expert/25374 -https://www.oceanexpert.org/event/809 -https://www.oceanexpert.org/institution/17263 -https://www.oceanexpert.org/institution/20746 -https://www.oceanexpert.org/institution/20279 -https://www.oceanexpert.org/expert/34210 -https://www.oceanexpert.org/expert/16775 -https://www.oceanexpert.org/institution/18375 -https://www.oceanexpert.org/institution/18443 -https://www.oceanexpert.org/expert/16327 -https://www.oceanexpert.org/expert/21566 -https://www.oceanexpert.org/expert/18150 -https://www.oceanexpert.org/expert/18301 -https://www.oceanexpert.org/expert/24073 -https://www.oceanexpert.org/expert/47957 -https://www.oceanexpert.org/event/2387 -https://www.oceanexpert.org/expert/24587 -https://www.oceanexpert.org/institution/19738 -https://www.oceanexpert.org/institution/17148 -https://www.oceanexpert.org/expert/13996 -https://www.oceanexpert.org/expert/33015 -https://www.oceanexpert.org/expert/31723 -https://www.oceanexpert.org/expert/7292 -https://www.oceanexpert.org/expert/23675 -https://www.oceanexpert.org/expert/35414 -https://www.oceanexpert.org/event/2756 -https://www.oceanexpert.org/institution/22083 -https://www.oceanexpert.org/expert/47881 -https://www.oceanexpert.org/event/772 -https://www.oceanexpert.org/expert/47113 -https://www.oceanexpert.org/expert/37438 -https://www.oceanexpert.org/event/2581 -https://www.oceanexpert.org/expert/34467 -https://www.oceanexpert.org/expert/28448 -https://www.oceanexpert.org/event/2557 -https://www.oceanexpert.org/expert/19579 -https://www.oceanexpert.org/expert/33734 -https://www.oceanexpert.org/expert/23958 -https://www.oceanexpert.org/expert/18361 -https://www.oceanexpert.org/institution/20664 -https://www.oceanexpert.org/expert/28125 -https://www.oceanexpert.org/expert/26969 -https://www.oceanexpert.org/expert/24560 -https://www.oceanexpert.org/expert/20868 -https://www.oceanexpert.org/institution/8151 -https://www.oceanexpert.org/institution/16281 -https://www.oceanexpert.org/expert/44397 -https://www.oceanexpert.org/event/2491 -https://www.oceanexpert.org/expert/37301 -https://www.oceanexpert.org/expert/17385 -https://www.oceanexpert.org/expert/15636 -https://www.oceanexpert.org/institution/12865 -https://www.oceanexpert.org/event/2238 -https://www.oceanexpert.org/institution/14039 -https://www.oceanexpert.org/expert/24518 -https://www.oceanexpert.org/expert/35269 -https://www.oceanexpert.org/expert/4891 -https://www.oceanexpert.org/expert/45410 -https://www.oceanexpert.org/expert/23444 -https://www.oceanexpert.org/institution/15935 -https://www.oceanexpert.org/institution/21562 -https://www.oceanexpert.org/institution/18699 -https://www.oceanexpert.org/institution/22179 -https://www.oceanexpert.org/expert/26351 -https://www.oceanexpert.org/expert/41458 -https://www.oceanexpert.org/institution/18593 -https://www.oceanexpert.org/event/123 -https://www.oceanexpert.org/institution/11792 -https://www.oceanexpert.org/institution/17828 -https://www.oceanexpert.org/expert/32591 -https://www.oceanexpert.org/institution/9625 -https://www.oceanexpert.org/expert/43346 -https://www.oceanexpert.org/expert/35628 -https://www.oceanexpert.org/expert/19812 -https://www.oceanexpert.org/expert/24892 -https://www.oceanexpert.org/expert/23237 -https://www.oceanexpert.org/expert/17445 -https://www.oceanexpert.org/event/2219 -https://www.oceanexpert.org/expert/8148 -https://www.oceanexpert.org/expert/47718 -https://www.oceanexpert.org/expert/11250 -https://www.oceanexpert.org/institution/10418 -https://www.oceanexpert.org/expert/38880 -https://www.oceanexpert.org/institution/17486 -https://www.oceanexpert.org/event/1408 -https://www.oceanexpert.org/institution/13938 -https://www.oceanexpert.org/expert/47390 -https://www.oceanexpert.org/expert/25490 -https://www.oceanexpert.org/expert/24196 -https://www.oceanexpert.org/expert/7031 -https://www.oceanexpert.org/institution/21451 -https://www.oceanexpert.org/expert/22445 -https://www.oceanexpert.org/expert/7925 -https://www.oceanexpert.org/institution/15526 -https://www.oceanexpert.org/institution/5105 -https://www.oceanexpert.org/expert/1058 -https://www.oceanexpert.org/event/342 -https://www.oceanexpert.org/expert/37903 -https://www.oceanexpert.org/expert/46515 -https://www.oceanexpert.org/expert/46658 -https://www.oceanexpert.org/expert/36679 -https://www.oceanexpert.org/expert/16102 -https://www.oceanexpert.org/expert/26292 -https://www.oceanexpert.org/expert/33629 -https://www.oceanexpert.org/expert/32689 -https://www.oceanexpert.org/expert/49065 -https://www.oceanexpert.org/expert/18113 -https://www.oceanexpert.org/event/2943 -https://www.oceanexpert.org/expert/30198 -https://www.oceanexpert.org/expert/19028 -https://www.oceanexpert.org/expert/31383 -https://www.oceanexpert.org/expert/22378 -https://www.oceanexpert.org/expert/25813 -https://www.oceanexpert.org/institution/13122 -https://www.oceanexpert.org/institution/13262 -https://www.oceanexpert.org/expert/42406 -https://www.oceanexpert.org/institution/21729 -https://www.oceanexpert.org/expert/25680 -https://www.oceanexpert.org/expert/21109 -https://www.oceanexpert.org/expert/29357 -https://www.oceanexpert.org/institution/19714 -https://www.oceanexpert.org/expert/38034 -https://www.oceanexpert.org/expert/4891 -https://www.oceanexpert.org/event/123 -https://www.oceanexpert.org/institution/7132 -https://www.oceanexpert.org/expert/34168 -https://www.oceanexpert.org/institution/7925 -https://www.oceanexpert.org/expert/26105 -https://www.oceanexpert.org/expert/32266 -https://www.oceanexpert.org/expert/34584 -https://www.oceanexpert.org/expert/6918 -https://www.oceanexpert.org/institution/20273 -https://www.oceanexpert.org/expert/39521 -https://www.oceanexpert.org/expert/25105 -https://www.oceanexpert.org/expert/28358 -https://www.oceanexpert.org/expert/29555 -https://www.oceanexpert.org/event/2839 -https://www.oceanexpert.org/expert/18399 -https://www.oceanexpert.org/expert/16369 -https://www.oceanexpert.org/institution/13358 -https://www.oceanexpert.org/institution/12896 -https://www.oceanexpert.org/event/1474 -https://www.oceanexpert.org/event/2127 -https://www.oceanexpert.org/expert/32728 -https://www.oceanexpert.org/expert/27225 -https://www.oceanexpert.org/expert/16873 -https://www.oceanexpert.org/expert/13692 -https://www.oceanexpert.org/expert/37990 -https://www.oceanexpert.org/event/875 -https://www.oceanexpert.org/institution/17901 -https://www.oceanexpert.org/expert/49077 -https://www.oceanexpert.org/institution/21716 -https://www.oceanexpert.org/institution/19079 -https://www.oceanexpert.org/expert/38984 -https://www.oceanexpert.org/expert/22046 -https://www.oceanexpert.org/event/2913 -https://www.oceanexpert.org/expert/46574 -https://www.oceanexpert.org/expert/21348 -https://www.oceanexpert.org/expert/45378 -https://www.oceanexpert.org/institution/16883 -https://www.oceanexpert.org/expert/44682 -https://www.oceanexpert.org/event/1737 -https://www.oceanexpert.org/expert/27111 -https://www.oceanexpert.org/expert/32748 -https://www.oceanexpert.org/expert/15058 -https://www.oceanexpert.org/institution/21382 -https://www.oceanexpert.org/expert/45595 -https://www.oceanexpert.org/expert/45626 -https://www.oceanexpert.org/expert/36518 -https://www.oceanexpert.org/institution/8279 -https://www.oceanexpert.org/expert/20833 -https://www.oceanexpert.org/expert/26039 -https://www.oceanexpert.org/expert/31740 -https://www.oceanexpert.org/institution/20395 -https://www.oceanexpert.org/institution/7736 -https://www.oceanexpert.org/expert/45827 -https://www.oceanexpert.org/expert/17747 -https://www.oceanexpert.org/expert/30446 -https://www.oceanexpert.org/expert/46483 -https://www.oceanexpert.org/event/2033 -https://www.oceanexpert.org/expert/24325 -https://www.oceanexpert.org/institution/19629 -https://www.oceanexpert.org/expert/48325 -https://www.oceanexpert.org/expert/32189 -https://www.oceanexpert.org/event/1545 -https://www.oceanexpert.org/institution/13794 -https://www.oceanexpert.org/expert/45214 -https://www.oceanexpert.org/expert/32982 -https://www.oceanexpert.org/expert/44780 -https://www.oceanexpert.org/event/1880 -https://www.oceanexpert.org/expert/25986 -https://www.oceanexpert.org/expert/48789 -https://www.oceanexpert.org/expert/35911 -https://www.oceanexpert.org/expert/23291 -https://www.oceanexpert.org/expert/29081 -https://www.oceanexpert.org/expert/35899 -https://www.oceanexpert.org/expert/47497 -https://www.oceanexpert.org/expert/22795 -https://www.oceanexpert.org/event/3117 -https://www.oceanexpert.org/expert/16623 -https://www.oceanexpert.org/institution/8175 -https://www.oceanexpert.org/event/607 -https://www.oceanexpert.org/event/3113 -https://www.oceanexpert.org/expert/22233 -https://www.oceanexpert.org/expert/22779 -https://www.oceanexpert.org/expert/47401 -https://www.oceanexpert.org/institution/19072 -https://www.oceanexpert.org/expert/21638 -https://www.oceanexpert.org/expert/6996 -https://www.oceanexpert.org/expert/47101 -https://www.oceanexpert.org/expert/18760 -https://www.oceanexpert.org/expert/16770 -https://www.oceanexpert.org/expert/29871 -https://www.oceanexpert.org/expert/28873 -https://www.oceanexpert.org/institution/20943 -https://www.oceanexpert.org/event/100 -https://www.oceanexpert.org/institution/19160 -https://www.oceanexpert.org/institution/20731 -https://www.oceanexpert.org/expert/4752 -https://www.oceanexpert.org/event/104 -https://www.oceanexpert.org/expert/13557 -https://www.oceanexpert.org/institution/19457 -https://www.oceanexpert.org/expert/29717 -https://www.oceanexpert.org/expert/24125 -https://www.oceanexpert.org/event/645 -https://www.oceanexpert.org/event/1137 -https://www.oceanexpert.org/institution/12605 -https://www.oceanexpert.org/expert/26091 -https://www.oceanexpert.org/institution/19529 -https://www.oceanexpert.org/expert/22122 -https://www.oceanexpert.org/institution/6046 -https://www.oceanexpert.org/event/2410 -https://www.oceanexpert.org/expert/45667 -https://www.oceanexpert.org/institution/21683 -https://www.oceanexpert.org/expert/34375 -https://www.oceanexpert.org/expert/20086 -https://www.oceanexpert.org/institution/14038 -https://www.oceanexpert.org/expert/22986 -https://www.oceanexpert.org/expert/36239 -https://www.oceanexpert.org/institution/19512 -https://www.oceanexpert.org/expert/17542 -https://www.oceanexpert.org/expert/34959 -https://www.oceanexpert.org/event/2845 -https://www.oceanexpert.org/expert/25255 -https://www.oceanexpert.org/institution/21547 -https://www.oceanexpert.org/institution/21221 -https://www.oceanexpert.org/expert/31193 -https://www.oceanexpert.org/institution/12545 -https://www.oceanexpert.org/institution/13921 -https://www.oceanexpert.org/institution/18796 -https://www.oceanexpert.org/expert/32865 -https://www.oceanexpert.org/expert/43467 -https://www.oceanexpert.org/expert/45667 -https://www.oceanexpert.org/expert/21083 -https://www.oceanexpert.org/expert/43332 -https://www.oceanexpert.org/expert/43190 -https://www.oceanexpert.org/expert/23427 -https://www.oceanexpert.org/expert/34443 -https://www.oceanexpert.org/expert/9730 -https://www.oceanexpert.org/institution/7020 -https://www.oceanexpert.org/expert/22421 -https://www.oceanexpert.org/expert/23741 -https://www.oceanexpert.org/expert/2110 -https://www.oceanexpert.org/expert/1902 -https://www.oceanexpert.org/expert/39314 -https://www.oceanexpert.org/event/1681 -https://www.oceanexpert.org/expert/27522 -https://www.oceanexpert.org/event/2206 -https://www.oceanexpert.org/institution/15082 -https://www.oceanexpert.org/expert/26547 -https://www.oceanexpert.org/institution/19619 -https://www.oceanexpert.org/event/3134 -https://www.oceanexpert.org/institution/21706 -https://www.oceanexpert.org/expert/45862 -https://www.oceanexpert.org/institution/18034 -https://www.oceanexpert.org/expert/17344 -https://www.oceanexpert.org/event/2477 -https://www.oceanexpert.org/expert/46880 -https://www.oceanexpert.org/expert/46429 -https://www.oceanexpert.org/expert/26896 -https://www.oceanexpert.org/expert/6802 -https://www.oceanexpert.org/expert/32860 -https://www.oceanexpert.org/expert/45530 -https://www.oceanexpert.org/expert/35095 -https://www.oceanexpert.org/institution/19318 -https://www.oceanexpert.org/institution/21324 -https://www.oceanexpert.org/institution/18376 -https://www.oceanexpert.org/expert/15540 -https://www.oceanexpert.org/expert/46259 -https://www.oceanexpert.org/expert/25603 -https://www.oceanexpert.org/expert/35762 -https://www.oceanexpert.org/event/122 -https://www.oceanexpert.org/institution/20907 -https://www.oceanexpert.org/expert/26576 -https://www.oceanexpert.org/institution/14329 -https://www.oceanexpert.org/institution/13682 -https://www.oceanexpert.org/expert/20532 -https://www.oceanexpert.org/expert/40130 -https://www.oceanexpert.org/expert/32533 -https://www.oceanexpert.org/expert/17512 -https://www.oceanexpert.org/event/1297 -https://www.oceanexpert.org/expert/7593 -https://www.oceanexpert.org/institution/20635 -https://www.oceanexpert.org/expert/32508 -https://www.oceanexpert.org/expert/32595 -https://www.oceanexpert.org/event/3036 -https://www.oceanexpert.org/institution/13703 -https://www.oceanexpert.org/event/3245 -https://www.oceanexpert.org/expert/22916 -https://www.oceanexpert.org/expert/46822 -https://www.oceanexpert.org/expert/11190 -https://www.oceanexpert.org/expert/16474 -https://www.oceanexpert.org/expert/24138 -https://www.oceanexpert.org/institution/14059 -https://www.oceanexpert.org/event/1506 -https://www.oceanexpert.org/expert/26912 -https://www.oceanexpert.org/expert/19827 -https://www.oceanexpert.org/expert/25611 -https://www.oceanexpert.org/event/1659 -https://www.oceanexpert.org/expert/7651 -https://www.oceanexpert.org/expert/46055 -https://www.oceanexpert.org/expert/21272 -https://www.oceanexpert.org/institution/14712 -https://www.oceanexpert.org/expert/9318 -https://www.oceanexpert.org/expert/26780 -https://www.oceanexpert.org/expert/45601 -https://www.oceanexpert.org/expert/20825 -https://www.oceanexpert.org/event/405 -https://www.oceanexpert.org/expert/35576 -https://www.oceanexpert.org/expert/19095 -https://www.oceanexpert.org/institution/16398 -https://www.oceanexpert.org/expert/22677 -https://www.oceanexpert.org/expert/15383 -https://www.oceanexpert.org/expert/45163 -https://www.oceanexpert.org/expert/32871 -https://www.oceanexpert.org/expert/18697 -https://www.oceanexpert.org/expert/23985 -https://www.oceanexpert.org/institution/19427 -https://www.oceanexpert.org/expert/13306 -https://www.oceanexpert.org/expert/17275 -https://www.oceanexpert.org/expert/15389 -https://www.oceanexpert.org/expert/29556 -https://www.oceanexpert.org/institution/19713 -https://www.oceanexpert.org/expert/35190 -https://www.oceanexpert.org/expert/24522 -https://www.oceanexpert.org/expert/26804 -https://www.oceanexpert.org/institution/21091 -https://www.oceanexpert.org/institution/14352 -https://www.oceanexpert.org/expert/37431 -https://www.oceanexpert.org/expert/37321 -https://www.oceanexpert.org/expert/47535 -https://www.oceanexpert.org/expert/20689 -https://www.oceanexpert.org/expert/42804 -https://www.oceanexpert.org/expert/25685 -https://www.oceanexpert.org/event/1833 -https://www.oceanexpert.org/expert/37999 -https://www.oceanexpert.org/institution/21083 -https://www.oceanexpert.org/institution/19702 -https://www.oceanexpert.org/expert/21986 -https://www.oceanexpert.org/expert/27541 -https://www.oceanexpert.org/expert/46953 -https://www.oceanexpert.org/institution/13427 -https://www.oceanexpert.org/expert/26897 -https://www.oceanexpert.org/expert/41100 -https://www.oceanexpert.org/expert/44798 -https://www.oceanexpert.org/expert/21459 -https://www.oceanexpert.org/institution/21754 -https://www.oceanexpert.org/expert/20537 -https://www.oceanexpert.org/expert/14822 -https://www.oceanexpert.org/expert/28019 -https://www.oceanexpert.org/event/1489 -https://www.oceanexpert.org/expert/38935 -https://www.oceanexpert.org/event/1114 -https://www.oceanexpert.org/institution/19556 -https://www.oceanexpert.org/institution/20166 -https://www.oceanexpert.org/expert/28084 -https://www.oceanexpert.org/institution/20772 -https://www.oceanexpert.org/institution/20650 -https://www.oceanexpert.org/institution/19564 -https://www.oceanexpert.org/expert/23185 -https://www.oceanexpert.org/expert/27159 -https://www.oceanexpert.org/institution/19396 -https://www.oceanexpert.org/event/1081 -https://www.oceanexpert.org/expert/47090 -https://www.oceanexpert.org/expert/20185 -https://www.oceanexpert.org/event/677 -https://www.oceanexpert.org/expert/44472 -https://www.oceanexpert.org/expert/1416 -https://www.oceanexpert.org/institution/17773 -https://www.oceanexpert.org/expert/46141 -https://www.oceanexpert.org/expert/43576 -https://www.oceanexpert.org/expert/24720 -https://www.oceanexpert.org/expert/27352 -https://www.oceanexpert.org/expert/23578 -https://www.oceanexpert.org/expert/26859 -https://www.oceanexpert.org/institution/13401 -https://www.oceanexpert.org/institution/19788 -https://www.oceanexpert.org/expert/45850 -https://www.oceanexpert.org/expert/46710 -https://www.oceanexpert.org/expert/16167 -https://www.oceanexpert.org/event/2001 -https://www.oceanexpert.org/expert/20623 -https://www.oceanexpert.org/expert/42454 -https://www.oceanexpert.org/institution/15975 -https://www.oceanexpert.org/expert/47799 -https://www.oceanexpert.org/expert/19165 -https://www.oceanexpert.org/institution/21399 -https://www.oceanexpert.org/expert/23976 -https://www.oceanexpert.org/institution/5671 -https://www.oceanexpert.org/expert/32598 -https://www.oceanexpert.org/institution/9377 -https://www.oceanexpert.org/institution/21339 -https://www.oceanexpert.org/event/1678 -https://www.oceanexpert.org/expert/16123 -https://www.oceanexpert.org/institution/8887 -https://www.oceanexpert.org/expert/25584 -https://www.oceanexpert.org/expert/39807 -https://www.oceanexpert.org/event/2549 -https://www.oceanexpert.org/expert/36632 -https://www.oceanexpert.org/institution/21658 -https://www.oceanexpert.org/expert/43561 -https://www.oceanexpert.org/expert/27185 -https://www.oceanexpert.org/expert/48274 -https://www.oceanexpert.org/expert/37038 -https://www.oceanexpert.org/institution/8870 -https://www.oceanexpert.org/expert/12992 -https://www.oceanexpert.org/expert/48746 -https://www.oceanexpert.org/expert/23058 -https://www.oceanexpert.org/expert/24492 -https://www.oceanexpert.org/event/2696 -https://www.oceanexpert.org/institution/19695 -https://www.oceanexpert.org/expert/31647 -https://www.oceanexpert.org/expert/47088 -https://www.oceanexpert.org/expert/23255 -https://www.oceanexpert.org/expert/16300 -https://www.oceanexpert.org/expert/27360 -https://www.oceanexpert.org/expert/37336 -https://www.oceanexpert.org/expert/17620 -https://www.oceanexpert.org/expert/27322 -https://www.oceanexpert.org/expert/13329 -https://www.oceanexpert.org/expert/47583 -https://www.oceanexpert.org/institution/20545 -https://www.oceanexpert.org/expert/29803 -https://www.oceanexpert.org/expert/18037 -https://www.oceanexpert.org/institution/20306 -https://www.oceanexpert.org/expert/12374 -https://www.oceanexpert.org/institution/11629 -https://www.oceanexpert.org/institution/17233 -https://www.oceanexpert.org/expert/31039 -https://www.oceanexpert.org/expert/36683 -https://www.oceanexpert.org/expert/45559 -https://www.oceanexpert.org/institution/20411 -https://www.oceanexpert.org/expert/40300 -https://www.oceanexpert.org/expert/37110 -https://www.oceanexpert.org/expert/19484 -https://www.oceanexpert.org/expert/42262 -https://www.oceanexpert.org/institution/21742 -https://www.oceanexpert.org/institution/12376 -https://www.oceanexpert.org/expert/34775 -https://www.oceanexpert.org/expert/11351 -https://www.oceanexpert.org/expert/34930 -https://www.oceanexpert.org/expert/17654 -https://www.oceanexpert.org/expert/24556 -https://www.oceanexpert.org/institution/18988 -https://www.oceanexpert.org/expert/37030 -https://www.oceanexpert.org/institution/10186 -https://www.oceanexpert.org/expert/46738 -https://www.oceanexpert.org/institution/21018 -https://www.oceanexpert.org/institution/21848 -https://www.oceanexpert.org/expert/46613 -https://www.oceanexpert.org/event/2918 -https://www.oceanexpert.org/institution/13008 -https://www.oceanexpert.org/expert/37425 -https://www.oceanexpert.org/event/1648 -https://www.oceanexpert.org/institution/18603 -https://www.oceanexpert.org/institution/20939 -https://www.oceanexpert.org/expert/18386 -https://www.oceanexpert.org/institution/9323 -https://www.oceanexpert.org/expert/33458 -https://www.oceanexpert.org/expert/21690 -https://www.oceanexpert.org/event/540 -https://www.oceanexpert.org/institution/15895 -https://www.oceanexpert.org/institution/20936 -https://www.oceanexpert.org/event/483 -https://www.oceanexpert.org/expert/33034 -https://www.oceanexpert.org/expert/22959 -https://www.oceanexpert.org/expert/23844 -https://www.oceanexpert.org/expert/13092 -https://www.oceanexpert.org/institution/21506 -https://www.oceanexpert.org/expert/45697 -https://www.oceanexpert.org/expert/27524 -https://www.oceanexpert.org/expert/3549 -https://www.oceanexpert.org/expert/16730 -https://www.oceanexpert.org/institution/20230 -https://www.oceanexpert.org/institution/22147 -https://www.oceanexpert.org/institution/11227 -https://www.oceanexpert.org/institution/6351 -https://www.oceanexpert.org/expert/3373 -https://www.oceanexpert.org/expert/24818 -https://www.oceanexpert.org/expert/22764 -https://www.oceanexpert.org/expert/34565 -https://www.oceanexpert.org/institution/13252 -https://www.oceanexpert.org/expert/27137 -https://www.oceanexpert.org/event/808 -https://www.oceanexpert.org/institution/21146 -https://www.oceanexpert.org/expert/20636 -https://www.oceanexpert.org/expert/7831 -https://www.oceanexpert.org/expert/34969 -https://www.oceanexpert.org/expert/29452 -https://www.oceanexpert.org/expert/47560 -https://www.oceanexpert.org/institution/17472 -https://www.oceanexpert.org/expert/21016 -https://www.oceanexpert.org/expert/38176 -https://www.oceanexpert.org/expert/29146 -https://www.oceanexpert.org/expert/44463 -https://www.oceanexpert.org/institution/19988 -https://www.oceanexpert.org/expert/25736 -https://www.oceanexpert.org/institution/13072 -https://www.oceanexpert.org/expert/36365 -https://www.oceanexpert.org/expert/35375 -https://www.oceanexpert.org/expert/36357 -https://www.oceanexpert.org/event/2156 -https://www.oceanexpert.org/expert/26474 -https://www.oceanexpert.org/expert/45972 -https://www.oceanexpert.org/expert/21716 -https://www.oceanexpert.org/expert/36458 -https://www.oceanexpert.org/institution/11712 -https://www.oceanexpert.org/institution/18089 -https://www.oceanexpert.org/expert/30127 -https://www.oceanexpert.org/institution/18141 -https://www.oceanexpert.org/institution/10600 -https://www.oceanexpert.org/event/376 -https://www.oceanexpert.org/expert/48376 -https://www.oceanexpert.org/expert/20452 -https://www.oceanexpert.org/expert/19624 -https://www.oceanexpert.org/expert/4558 -https://www.oceanexpert.org/expert/21500 -https://www.oceanexpert.org/institution/19651 -https://www.oceanexpert.org/event/2642 -https://www.oceanexpert.org/expert/22407 -https://www.oceanexpert.org/expert/43092 -https://www.oceanexpert.org/expert/43276 -https://www.oceanexpert.org/expert/39162 -https://www.oceanexpert.org/event/1115 -https://www.oceanexpert.org/expert/37359 -https://www.oceanexpert.org/expert/16417 -https://www.oceanexpert.org/expert/27069 -https://www.oceanexpert.org/institution/18339 -https://www.oceanexpert.org/institution/19264 -https://www.oceanexpert.org/institution/18576 -https://www.oceanexpert.org/expert/38367 -https://www.oceanexpert.org/expert/22514 -https://www.oceanexpert.org/expert/43723 -https://www.oceanexpert.org/institution/20284 -https://www.oceanexpert.org/expert/27104 -https://www.oceanexpert.org/expert/42763 -https://www.oceanexpert.org/institution/5404 -https://www.oceanexpert.org/expert/30528 -https://www.oceanexpert.org/institution/21066 -https://www.oceanexpert.org/expert/14783 -https://www.oceanexpert.org/expert/48609 -https://www.oceanexpert.org/expert/21567 -https://www.oceanexpert.org/event/2044 -https://www.oceanexpert.org/expert/16404 -https://www.oceanexpert.org/expert/40363 -https://www.oceanexpert.org/event/2676 -https://www.oceanexpert.org/institution/19708 -https://www.oceanexpert.org/institution/15543 -https://www.oceanexpert.org/expert/17461 -https://www.oceanexpert.org/expert/14759 -https://www.oceanexpert.org/expert/37382 -https://www.oceanexpert.org/expert/18372 -https://www.oceanexpert.org/expert/6172 -https://www.oceanexpert.org/institution/18046 -https://www.oceanexpert.org/expert/38094 -https://www.oceanexpert.org/expert/34882 -https://www.oceanexpert.org/expert/26831 -https://www.oceanexpert.org/institution/19798 -https://www.oceanexpert.org/institution/11141 -https://www.oceanexpert.org/institution/18923 -https://www.oceanexpert.org/institution/18386 -https://www.oceanexpert.org/expert/35273 -https://www.oceanexpert.org/expert/10549 -https://www.oceanexpert.org/expert/26868 -https://www.oceanexpert.org/expert/49029 -https://www.oceanexpert.org/event/220 -https://www.oceanexpert.org/expert/12238 -https://www.oceanexpert.org/institution/18255 -https://www.oceanexpert.org/expert/21726 -https://www.oceanexpert.org/expert/43879 -https://www.oceanexpert.org/institution/6190 -https://www.oceanexpert.org/institution/19164 -https://www.oceanexpert.org/institution/10333 -https://www.oceanexpert.org/expert/27679 -https://www.oceanexpert.org/expert/33468 -https://www.oceanexpert.org/expert/36176 -https://www.oceanexpert.org/institution/7527 -https://www.oceanexpert.org/expert/48309 -https://www.oceanexpert.org/expert/23433 -https://www.oceanexpert.org/expert/44310 -https://www.oceanexpert.org/institution/17876 -https://www.oceanexpert.org/expert/28304 -https://www.oceanexpert.org/event/2114 -https://www.oceanexpert.org/expert/38236 -https://www.oceanexpert.org/expert/18456 -https://www.oceanexpert.org/expert/22957 -https://www.oceanexpert.org/expert/46687 -https://www.oceanexpert.org/expert/45174 -https://www.oceanexpert.org/expert/21802 -https://www.oceanexpert.org/expert/15631 -https://www.oceanexpert.org/expert/19360 -https://www.oceanexpert.org/expert/25998 -https://www.oceanexpert.org/expert/42610 -https://www.oceanexpert.org/expert/29147 -https://www.oceanexpert.org/expert/40 -https://www.oceanexpert.org/expert/9102 -https://www.oceanexpert.org/institution/15951 -https://www.oceanexpert.org/event/1600 -https://www.oceanexpert.org/expert/19836 -https://www.oceanexpert.org/institution/17559 -https://www.oceanexpert.org/expert/8709 -https://www.oceanexpert.org/institution/14246 -https://www.oceanexpert.org/expert/30864 -https://www.oceanexpert.org/expert/32612 -https://www.oceanexpert.org/institution/5413 -https://www.oceanexpert.org/expert/653 -https://www.oceanexpert.org/event/612 -https://www.oceanexpert.org/institution/13617 -https://www.oceanexpert.org/expert/33912 -https://www.oceanexpert.org/event/674 -https://www.oceanexpert.org/expert/36066 -https://www.oceanexpert.org/institution/20741 -https://www.oceanexpert.org/event/1483 -https://www.oceanexpert.org/institution/17522 -https://www.oceanexpert.org/institution/21624 -https://www.oceanexpert.org/expert/43380 -https://www.oceanexpert.org/expert/13733 -https://www.oceanexpert.org/expert/22031 -https://www.oceanexpert.org/expert/24730 -https://www.oceanexpert.org/expert/4651 -https://www.oceanexpert.org/expert/25191 -https://www.oceanexpert.org/event/1310 -https://www.oceanexpert.org/expert/37277 -https://www.oceanexpert.org/institution/18265 -https://www.oceanexpert.org/expert/25025 -https://www.oceanexpert.org/expert/36454 -https://www.oceanexpert.org/expert/27534 -https://www.oceanexpert.org/expert/45868 -https://www.oceanexpert.org/institution/19568 -https://www.oceanexpert.org/expert/18713 -https://www.oceanexpert.org/expert/38390 -https://www.oceanexpert.org/expert/29401 -https://www.oceanexpert.org/expert/21851 -https://www.oceanexpert.org/expert/20498 -https://www.oceanexpert.org/expert/36234 -https://www.oceanexpert.org/expert/18626 -https://www.oceanexpert.org/expert/30947 -https://www.oceanexpert.org/institution/20402 -https://www.oceanexpert.org/expert/39532 -https://www.oceanexpert.org/expert/44006 -https://www.oceanexpert.org/expert/26339 -https://www.oceanexpert.org/expert/20732 -https://www.oceanexpert.org/institution/21712 -https://www.oceanexpert.org/event/91 -https://www.oceanexpert.org/expert/14922 -https://www.oceanexpert.org/expert/21541 -https://www.oceanexpert.org/expert/23600 -https://www.oceanexpert.org/expert/19931 -https://www.oceanexpert.org/institution/21400 -https://www.oceanexpert.org/expert/24075 -https://www.oceanexpert.org/institution/21793 -https://www.oceanexpert.org/expert/25900 -https://www.oceanexpert.org/expert/32823 -https://www.oceanexpert.org/expert/21638 -https://www.oceanexpert.org/institution/21863 -https://www.oceanexpert.org/expert/48096 -https://www.oceanexpert.org/expert/23936 -https://www.oceanexpert.org/expert/24833 -https://www.oceanexpert.org/expert/48389 -https://www.oceanexpert.org/institution/12446 -https://www.oceanexpert.org/expert/47814 -https://www.oceanexpert.org/expert/6785 -https://www.oceanexpert.org/institution/11800 -https://www.oceanexpert.org/expert/37889 -https://www.oceanexpert.org/event/2895 -https://www.oceanexpert.org/expert/5019 -https://www.oceanexpert.org/expert/45119 -https://www.oceanexpert.org/institution/12535 -https://www.oceanexpert.org/expert/7748 -https://www.oceanexpert.org/institution/21931 -https://www.oceanexpert.org/expert/23850 -https://www.oceanexpert.org/expert/43504 -https://www.oceanexpert.org/expert/35951 -https://www.oceanexpert.org/institution/14102 -https://www.oceanexpert.org/expert/29422 -https://www.oceanexpert.org/expert/24450 -https://www.oceanexpert.org/institution/7786 -https://www.oceanexpert.org/event/2593 -https://www.oceanexpert.org/expert/33035 -https://www.oceanexpert.org/expert/17795 -https://www.oceanexpert.org/institution/6786 -https://www.oceanexpert.org/institution/17708 -https://www.oceanexpert.org/expert/36472 -https://www.oceanexpert.org/event/941 -https://www.oceanexpert.org/institution/9647 -https://www.oceanexpert.org/institution/12993 -https://www.oceanexpert.org/expert/19609 -https://www.oceanexpert.org/expert/17442 -https://www.oceanexpert.org/institution/18297 -https://www.oceanexpert.org/institution/14286 -https://www.oceanexpert.org/expert/43674 -https://www.oceanexpert.org/expert/4741 -https://www.oceanexpert.org/expert/37192 -https://www.oceanexpert.org/expert/18847 -https://www.oceanexpert.org/event/2750 -https://www.oceanexpert.org/expert/30040 -https://www.oceanexpert.org/expert/34674 -https://www.oceanexpert.org/expert/37138 -https://www.oceanexpert.org/expert/43525 -https://www.oceanexpert.org/institution/21015 -https://www.oceanexpert.org/institution/13867 -https://www.oceanexpert.org/expert/11423 -https://www.oceanexpert.org/expert/2255 -https://www.oceanexpert.org/expert/47569 -https://www.oceanexpert.org/event/2811 -https://www.oceanexpert.org/event/191 -https://www.oceanexpert.org/expert/26757 -https://www.oceanexpert.org/expert/44545 -https://www.oceanexpert.org/institution/18541 -https://www.oceanexpert.org/expert/26851 -https://www.oceanexpert.org/expert/42453 -https://www.oceanexpert.org/institution/5684 -https://www.oceanexpert.org/expert/37507 -https://www.oceanexpert.org/expert/37833 -https://www.oceanexpert.org/expert/37920 -https://www.oceanexpert.org/expert/36105 -https://www.oceanexpert.org/event/2316 -https://www.oceanexpert.org/event/1602 -https://www.oceanexpert.org/institution/17821 -https://www.oceanexpert.org/expert/48364 -https://www.oceanexpert.org/institution/19324 -https://www.oceanexpert.org/expert/10444 -https://www.oceanexpert.org/expert/43347 -https://www.oceanexpert.org/expert/47821 -https://www.oceanexpert.org/expert/27000 -https://www.oceanexpert.org/expert/48306 -https://www.oceanexpert.org/institution/20776 -https://www.oceanexpert.org/expert/24708 -https://www.oceanexpert.org/expert/45435 -https://www.oceanexpert.org/expert/11881 -https://www.oceanexpert.org/institution/20236 -https://www.oceanexpert.org/institution/15886 -https://www.oceanexpert.org/institution/12011 -https://www.oceanexpert.org/institution/16859 -https://www.oceanexpert.org/expert/1989 -https://www.oceanexpert.org/expert/26858 -https://www.oceanexpert.org/institution/13922 -https://www.oceanexpert.org/expert/22208 -https://www.oceanexpert.org/institution/14933 -https://www.oceanexpert.org/expert/24965 -https://www.oceanexpert.org/event/1036 -https://www.oceanexpert.org/expert/20631 -https://www.oceanexpert.org/expert/46478 -https://www.oceanexpert.org/expert/29137 -https://www.oceanexpert.org/expert/21489 -https://www.oceanexpert.org/expert/37784 -https://www.oceanexpert.org/expert/44031 -https://www.oceanexpert.org/institution/18136 -https://www.oceanexpert.org/institution/16311 -https://www.oceanexpert.org/expert/15053 -https://www.oceanexpert.org/expert/8049 -https://www.oceanexpert.org/expert/26786 -https://www.oceanexpert.org/expert/3240 -https://www.oceanexpert.org/expert/22204 -https://www.oceanexpert.org/institution/11520 -https://www.oceanexpert.org/expert/23013 -https://www.oceanexpert.org/institution/16867 -https://www.oceanexpert.org/institution/21384 -https://www.oceanexpert.org/expert/22680 -https://www.oceanexpert.org/institution/10994 -https://www.oceanexpert.org/expert/22852 -https://www.oceanexpert.org/expert/44863 -https://www.oceanexpert.org/expert/46952 -https://www.oceanexpert.org/expert/48514 -https://www.oceanexpert.org/expert/47792 -https://www.oceanexpert.org/institution/8766 -https://www.oceanexpert.org/expert/25985 -https://www.oceanexpert.org/expert/28908 -https://www.oceanexpert.org/institution/18414 -https://www.oceanexpert.org/expert/29813 -https://www.oceanexpert.org/expert/10285 -https://www.oceanexpert.org/expert/24264 -https://www.oceanexpert.org/institution/17823 -https://www.oceanexpert.org/expert/13155 -https://www.oceanexpert.org/expert/19976 -https://www.oceanexpert.org/expert/26447 -https://www.oceanexpert.org/institution/20336 -https://www.oceanexpert.org/institution/7293 -https://www.oceanexpert.org/expert/36028 -https://www.oceanexpert.org/expert/31947 -https://www.oceanexpert.org/expert/46808 -https://www.oceanexpert.org/event/1693 -https://www.oceanexpert.org/expert/17852 -https://www.oceanexpert.org/expert/44055 -https://www.oceanexpert.org/event/1020 -https://www.oceanexpert.org/expert/48593 -https://www.oceanexpert.org/institution/20543 -https://www.oceanexpert.org/institution/17492 -https://www.oceanexpert.org/expert/20729 -https://www.oceanexpert.org/expert/23148 -https://www.oceanexpert.org/expert/23337 -https://www.oceanexpert.org/institution/22105 -https://www.oceanexpert.org/institution/19212 -https://www.oceanexpert.org/expert/47916 -https://www.oceanexpert.org/event/1481 -https://www.oceanexpert.org/expert/25755 -https://www.oceanexpert.org/event/484 -https://www.oceanexpert.org/expert/34273 -https://www.oceanexpert.org/expert/29433 -https://www.oceanexpert.org/expert/20426 -https://www.oceanexpert.org/expert/45636 -https://www.oceanexpert.org/expert/46301 -https://www.oceanexpert.org/institution/22074 -https://www.oceanexpert.org/expert/36741 -https://www.oceanexpert.org/institution/18844 -https://www.oceanexpert.org/expert/28420 -https://www.oceanexpert.org/institution/7634 -https://www.oceanexpert.org/event/2742 -https://www.oceanexpert.org/expert/42819 -https://www.oceanexpert.org/institution/10663 -https://www.oceanexpert.org/expert/23464 -https://www.oceanexpert.org/expert/18865 -https://www.oceanexpert.org/institution/7301 -https://www.oceanexpert.org/expert/34620 -https://www.oceanexpert.org/institution/19644 -https://www.oceanexpert.org/expert/43675 -https://www.oceanexpert.org/institution/18006 -https://www.oceanexpert.org/expert/30376 -https://www.oceanexpert.org/expert/26585 -https://www.oceanexpert.org/institution/19161 -https://www.oceanexpert.org/expert/39290 -https://www.oceanexpert.org/institution/13065 -https://www.oceanexpert.org/expert/21023 -https://www.oceanexpert.org/expert/24697 -https://www.oceanexpert.org/institution/7143 -https://www.oceanexpert.org/event/1479 -https://www.oceanexpert.org/event/965 -https://www.oceanexpert.org/expert/43552 -https://www.oceanexpert.org/expert/20189 -https://www.oceanexpert.org/institution/10971 -https://www.oceanexpert.org/expert/2362 -https://www.oceanexpert.org/institution/9361 -https://www.oceanexpert.org/expert/23662 -https://www.oceanexpert.org/expert/34247 -https://www.oceanexpert.org/expert/45681 -https://www.oceanexpert.org/expert/23342 -https://www.oceanexpert.org/expert/45775 -https://www.oceanexpert.org/expert/30330 -https://www.oceanexpert.org/expert/25157 -https://www.oceanexpert.org/expert/23706 -https://www.oceanexpert.org/expert/23813 -https://www.oceanexpert.org/institution/21037 -https://www.oceanexpert.org/expert/28351 -https://www.oceanexpert.org/expert/22291 -https://www.oceanexpert.org/institution/15804 -https://www.oceanexpert.org/institution/12333 -https://www.oceanexpert.org/institution/20051 -https://www.oceanexpert.org/expert/22456 -https://www.oceanexpert.org/expert/46121 -https://www.oceanexpert.org/institution/18597 -https://www.oceanexpert.org/expert/36714 -https://www.oceanexpert.org/institution/10978 -https://www.oceanexpert.org/event/1146 -https://www.oceanexpert.org/expert/17580 -https://www.oceanexpert.org/expert/19411 -https://www.oceanexpert.org/institution/17528 -https://www.oceanexpert.org/expert/48300 -https://www.oceanexpert.org/expert/24871 -https://www.oceanexpert.org/expert/11703 -https://www.oceanexpert.org/expert/18610 -https://www.oceanexpert.org/expert/21653 -https://www.oceanexpert.org/expert/29715 -https://www.oceanexpert.org/expert/14453 -https://www.oceanexpert.org/institution/18591 -https://www.oceanexpert.org/expert/35234 -https://www.oceanexpert.org/expert/27594 -https://www.oceanexpert.org/expert/24717 -https://www.oceanexpert.org/institution/5206 -https://www.oceanexpert.org/expert/27402 -https://www.oceanexpert.org/institution/20799 -https://www.oceanexpert.org/institution/14933 -https://www.oceanexpert.org/expert/22544 -https://www.oceanexpert.org/expert/37067 -https://www.oceanexpert.org/expert/18645 -https://www.oceanexpert.org/institution/18803 -https://www.oceanexpert.org/expert/11815 -https://www.oceanexpert.org/institution/21426 -https://www.oceanexpert.org/institution/18224 -https://www.oceanexpert.org/expert/25225 -https://www.oceanexpert.org/institution/13759 -https://www.oceanexpert.org/expert/32813 -https://www.oceanexpert.org/event/1839 -https://www.oceanexpert.org/institution/11450 -https://www.oceanexpert.org/expert/7021 -https://www.oceanexpert.org/expert/38053 -https://www.oceanexpert.org/expert/13581 -https://www.oceanexpert.org/expert/43857 -https://www.oceanexpert.org/institution/19412 -https://www.oceanexpert.org/institution/20203 -https://www.oceanexpert.org/expert/24393 -https://www.oceanexpert.org/expert/13814 -https://www.oceanexpert.org/institution/12101 -https://www.oceanexpert.org/expert/18566 -https://www.oceanexpert.org/institution/20861 -https://www.oceanexpert.org/expert/28785 -https://www.oceanexpert.org/institution/15892 -https://www.oceanexpert.org/event/1159 -https://www.oceanexpert.org/expert/20591 -https://www.oceanexpert.org/expert/23269 -https://www.oceanexpert.org/event/2148 -https://www.oceanexpert.org/event/1101 -https://www.oceanexpert.org/expert/13066 -https://www.oceanexpert.org/expert/48097 -https://www.oceanexpert.org/expert/15957 -https://www.oceanexpert.org/expert/32043 -https://www.oceanexpert.org/expert/18564 -https://www.oceanexpert.org/institution/12947 -https://www.oceanexpert.org/expert/8212 -https://www.oceanexpert.org/event/1245 -https://www.oceanexpert.org/expert/43495 -https://www.oceanexpert.org/expert/13248 -https://www.oceanexpert.org/institution/19149 -https://www.oceanexpert.org/expert/44729 -https://www.oceanexpert.org/institution/20970 -https://www.oceanexpert.org/expert/46137 -https://www.oceanexpert.org/expert/40160 -https://www.oceanexpert.org/expert/34502 -https://www.oceanexpert.org/institution/22169 -https://www.oceanexpert.org/expert/35007 -https://www.oceanexpert.org/expert/23034 -https://www.oceanexpert.org/expert/19855 -https://www.oceanexpert.org/expert/31935 -https://www.oceanexpert.org/expert/1336 -https://www.oceanexpert.org/institution/21280 -https://www.oceanexpert.org/institution/5177 -https://www.oceanexpert.org/institution/4951 -https://www.oceanexpert.org/expert/14294 -https://www.oceanexpert.org/expert/15720 -https://www.oceanexpert.org/expert/48353 -https://www.oceanexpert.org/institution/13509 -https://www.oceanexpert.org/institution/21188 -https://www.oceanexpert.org/expert/30087 -https://www.oceanexpert.org/expert/36280 -https://www.oceanexpert.org/institution/7553 -https://www.oceanexpert.org/expert/28146 -https://www.oceanexpert.org/expert/39446 -https://www.oceanexpert.org/expert/41 -https://www.oceanexpert.org/expert/35416 -https://www.oceanexpert.org/expert/31535 -https://www.oceanexpert.org/expert/762 -https://www.oceanexpert.org/expert/26914 -https://www.oceanexpert.org/expert/3547 -https://www.oceanexpert.org/institution/16023 -https://www.oceanexpert.org/expert/15993 -https://www.oceanexpert.org/institution/20979 -https://www.oceanexpert.org/institution/18884 -https://www.oceanexpert.org/expert/47685 -https://www.oceanexpert.org/expert/46966 -https://www.oceanexpert.org/event/2900 -https://www.oceanexpert.org/expert/14966 -https://www.oceanexpert.org/expert/31132 -https://www.oceanexpert.org/expert/3131 -https://www.oceanexpert.org/institution/21141 -https://www.oceanexpert.org/expert/26697 -https://www.oceanexpert.org/expert/43883 -https://www.oceanexpert.org/expert/39261 -https://www.oceanexpert.org/expert/48106 -https://www.oceanexpert.org/expert/24326 -https://www.oceanexpert.org/expert/23467 -https://www.oceanexpert.org/expert/33082 -https://www.oceanexpert.org/expert/39670 -https://www.oceanexpert.org/event/2580 -https://www.oceanexpert.org/expert/16967 -https://www.oceanexpert.org/expert/33524 -https://www.oceanexpert.org/expert/44449 -https://www.oceanexpert.org/institution/5236 -https://www.oceanexpert.org/expert/37326 -https://www.oceanexpert.org/event/1747 -https://www.oceanexpert.org/institution/8227 -https://www.oceanexpert.org/expert/32856 -https://www.oceanexpert.org/event/1900 -https://www.oceanexpert.org/institution/21473 -https://www.oceanexpert.org/institution/16818 -https://www.oceanexpert.org/expert/24749 -https://www.oceanexpert.org/expert/36509 -https://www.oceanexpert.org/event/232 -https://www.oceanexpert.org/expert/12870 -https://www.oceanexpert.org/expert/19965 -https://www.oceanexpert.org/expert/38900 -https://www.oceanexpert.org/expert/36610 -https://www.oceanexpert.org/expert/43646 -https://www.oceanexpert.org/institution/11864 -https://www.oceanexpert.org/expert/26360 -https://www.oceanexpert.org/institution/21405 -https://www.oceanexpert.org/expert/48789 -https://www.oceanexpert.org/expert/37831 -https://www.oceanexpert.org/expert/21144 -https://www.oceanexpert.org/expert/48545 -https://www.oceanexpert.org/institution/7860 -https://www.oceanexpert.org/expert/40582 -https://www.oceanexpert.org/expert/3386 -https://www.oceanexpert.org/institution/6505 -https://www.oceanexpert.org/expert/38139 -https://www.oceanexpert.org/institution/17857 -https://www.oceanexpert.org/expert/47725 -https://www.oceanexpert.org/institution/18125 -https://www.oceanexpert.org/expert/26656 -https://www.oceanexpert.org/event/26 -https://www.oceanexpert.org/expert/30936 -https://www.oceanexpert.org/expert/24812 -https://www.oceanexpert.org/expert/29643 -https://www.oceanexpert.org/expert/32322 -https://www.oceanexpert.org/expert/34893 -https://www.oceanexpert.org/expert/13106 -https://www.oceanexpert.org/institution/7120 -https://www.oceanexpert.org/expert/34790 -https://www.oceanexpert.org/expert/32263 -https://www.oceanexpert.org/expert/44794 -https://www.oceanexpert.org/expert/39498 -https://www.oceanexpert.org/expert/23860 -https://www.oceanexpert.org/institution/21321 -https://www.oceanexpert.org/institution/19103 -https://www.oceanexpert.org/expert/43583 -https://www.oceanexpert.org/event/1278 -https://www.oceanexpert.org/expert/33815 -https://www.oceanexpert.org/expert/21953 -https://www.oceanexpert.org/expert/9163 -https://www.oceanexpert.org/institution/11519 -https://www.oceanexpert.org/expert/46195 -https://www.oceanexpert.org/event/1638 -https://www.oceanexpert.org/expert/22983 -https://www.oceanexpert.org/event/1997 -https://www.oceanexpert.org/expert/38380 -https://www.oceanexpert.org/institution/20935 -https://www.oceanexpert.org/institution/21187 -https://www.oceanexpert.org/event/1216 -https://www.oceanexpert.org/institution/17799 -https://www.oceanexpert.org/institution/21388 -https://www.oceanexpert.org/expert/39369 -https://www.oceanexpert.org/expert/25726 -https://www.oceanexpert.org/expert/30905 -https://www.oceanexpert.org/institution/20044 -https://www.oceanexpert.org/institution/21748 -https://www.oceanexpert.org/expert/18688 -https://www.oceanexpert.org/expert/25261 -https://www.oceanexpert.org/expert/30039 -https://www.oceanexpert.org/institution/21682 -https://www.oceanexpert.org/expert/42563 -https://www.oceanexpert.org/institution/5501 -https://www.oceanexpert.org/expert/27315 -https://www.oceanexpert.org/expert/27485 -https://www.oceanexpert.org/institution/19992 -https://www.oceanexpert.org/expert/28358 -https://www.oceanexpert.org/institution/18553 -https://www.oceanexpert.org/expert/31014 -https://www.oceanexpert.org/expert/43472 -https://www.oceanexpert.org/expert/25784 -https://www.oceanexpert.org/event/2500 -https://www.oceanexpert.org/expert/46439 -https://www.oceanexpert.org/expert/18156 -https://www.oceanexpert.org/expert/20261 -https://www.oceanexpert.org/institution/20961 -https://www.oceanexpert.org/expert/43056 -https://www.oceanexpert.org/institution/13487 -https://www.oceanexpert.org/expert/14527 -https://www.oceanexpert.org/event/983 -https://www.oceanexpert.org/institution/18223 -https://www.oceanexpert.org/institution/14457 -https://www.oceanexpert.org/institution/11566 -https://www.oceanexpert.org/expert/45694 -https://www.oceanexpert.org/institution/15113 -https://www.oceanexpert.org/expert/39861 -https://www.oceanexpert.org/institution/17365 -https://www.oceanexpert.org/expert/46569 -https://www.oceanexpert.org/expert/30789 -https://www.oceanexpert.org/expert/27093 -https://www.oceanexpert.org/expert/29123 -https://www.oceanexpert.org/expert/41100 -https://www.oceanexpert.org/expert/39314 -https://www.oceanexpert.org/event/1121 -https://www.oceanexpert.org/expert/33860 -https://www.oceanexpert.org/expert/17522 -https://www.oceanexpert.org/expert/48334 -https://www.oceanexpert.org/expert/14422 -https://www.oceanexpert.org/institution/15786 -https://www.oceanexpert.org/expert/44942 -https://www.oceanexpert.org/expert/39308 -https://www.oceanexpert.org/expert/29846 -https://www.oceanexpert.org/expert/36954 -https://www.oceanexpert.org/institution/18535 -https://www.oceanexpert.org/expert/47811 -https://www.oceanexpert.org/expert/49068 -https://www.oceanexpert.org/expert/26312 -https://www.oceanexpert.org/institution/12407 -https://www.oceanexpert.org/expert/45464 -https://www.oceanexpert.org/expert/25702 -https://www.oceanexpert.org/expert/161 -https://www.oceanexpert.org/institution/17864 -https://www.oceanexpert.org/event/3256 -https://www.oceanexpert.org/expert/40537 -https://www.oceanexpert.org/expert/18925 -https://www.oceanexpert.org/institution/18203 -https://www.oceanexpert.org/expert/12111 -https://www.oceanexpert.org/expert/25405 -https://www.oceanexpert.org/institution/16842 -https://www.oceanexpert.org/event/2908 -https://www.oceanexpert.org/event/2729 -https://www.oceanexpert.org/expert/21726 -https://www.oceanexpert.org/institution/18664 -https://www.oceanexpert.org/institution/11528 -https://www.oceanexpert.org/expert/47024 -https://www.oceanexpert.org/institution/14822 -https://www.oceanexpert.org/expert/47374 -https://www.oceanexpert.org/expert/48023 -https://www.oceanexpert.org/expert/36804 -https://www.oceanexpert.org/expert/14169 -https://www.oceanexpert.org/expert/1291 -https://www.oceanexpert.org/expert/20484 -https://www.oceanexpert.org/expert/18148 -https://www.oceanexpert.org/expert/20322 -https://www.oceanexpert.org/expert/33806 -https://www.oceanexpert.org/expert/45034 -https://www.oceanexpert.org/expert/26281 -https://www.oceanexpert.org/expert/14192 -https://www.oceanexpert.org/expert/48353 -https://www.oceanexpert.org/institution/4930 -https://www.oceanexpert.org/expert/26372 -https://www.oceanexpert.org/institution/14430 -https://www.oceanexpert.org/institution/13121 -https://www.oceanexpert.org/expert/34625 -https://www.oceanexpert.org/expert/47704 -https://www.oceanexpert.org/event/3259 -https://www.oceanexpert.org/expert/25253 -https://www.oceanexpert.org/expert/26112 -https://www.oceanexpert.org/institution/9744 -https://www.oceanexpert.org/expert/24079 -https://www.oceanexpert.org/event/2369 -https://www.oceanexpert.org/expert/9648 -https://www.oceanexpert.org/expert/36229 -https://www.oceanexpert.org/event/708 -https://www.oceanexpert.org/expert/37371 -https://www.oceanexpert.org/expert/32503 -https://www.oceanexpert.org/expert/2257 -https://www.oceanexpert.org/expert/31318 -https://www.oceanexpert.org/expert/23125 -https://www.oceanexpert.org/institution/17932 -https://www.oceanexpert.org/expert/14968 -https://www.oceanexpert.org/expert/39940 -https://www.oceanexpert.org/expert/7436 -https://www.oceanexpert.org/expert/4767 -https://www.oceanexpert.org/institution/5781 -https://www.oceanexpert.org/event/2274 -https://www.oceanexpert.org/institution/21575 -https://www.oceanexpert.org/expert/27384 -https://www.oceanexpert.org/expert/17435 -https://www.oceanexpert.org/expert/28223 -https://www.oceanexpert.org/expert/7038 -https://www.oceanexpert.org/expert/35472 -https://www.oceanexpert.org/expert/44127 -https://www.oceanexpert.org/expert/33998 -https://www.oceanexpert.org/expert/38196 -https://www.oceanexpert.org/expert/20194 -https://www.oceanexpert.org/expert/43317 -https://www.oceanexpert.org/expert/17374 -https://www.oceanexpert.org/expert/34048 -https://www.oceanexpert.org/expert/29455 -https://www.oceanexpert.org/expert/43385 -https://www.oceanexpert.org/institution/19733 -https://www.oceanexpert.org/institution/6105 -https://www.oceanexpert.org/institution/19060 -https://www.oceanexpert.org/expert/38254 -https://www.oceanexpert.org/event/2268 -https://www.oceanexpert.org/expert/46847 -https://www.oceanexpert.org/expert/40620 -https://www.oceanexpert.org/expert/38880 -https://www.oceanexpert.org/expert/47395 -https://www.oceanexpert.org/expert/30906 -https://www.oceanexpert.org/expert/36595 -https://www.oceanexpert.org/event/177 -https://www.oceanexpert.org/event/2595 -https://www.oceanexpert.org/expert/20761 -https://www.oceanexpert.org/institution/20228 -https://www.oceanexpert.org/expert/13642 -https://www.oceanexpert.org/expert/44181 -https://www.oceanexpert.org/expert/19760 -https://www.oceanexpert.org/expert/13329 -https://www.oceanexpert.org/institution/16726 -https://www.oceanexpert.org/institution/19865 -https://www.oceanexpert.org/expert/45332 -https://www.oceanexpert.org/expert/42890 -https://www.oceanexpert.org/expert/24528 -https://www.oceanexpert.org/expert/26443 -https://www.oceanexpert.org/expert/47470 -https://www.oceanexpert.org/institution/20951 -https://www.oceanexpert.org/expert/20621 -https://www.oceanexpert.org/expert/35397 -https://www.oceanexpert.org/expert/44464 -https://www.oceanexpert.org/expert/14999 -https://www.oceanexpert.org/expert/24213 -https://www.oceanexpert.org/event/1122 -https://www.oceanexpert.org/expert/29482 -https://www.oceanexpert.org/expert/44325 -https://www.oceanexpert.org/expert/16080 -https://www.oceanexpert.org/expert/32536 -https://www.oceanexpert.org/institution/13998 -https://www.oceanexpert.org/expert/16980 -https://www.oceanexpert.org/expert/37810 -https://www.oceanexpert.org/expert/1983 -https://www.oceanexpert.org/expert/25648 -https://www.oceanexpert.org/expert/24904 -https://www.oceanexpert.org/expert/21556 -https://www.oceanexpert.org/expert/26252 -https://www.oceanexpert.org/expert/34037 -https://www.oceanexpert.org/expert/26862 -https://www.oceanexpert.org/expert/46286 -https://www.oceanexpert.org/expert/44162 -https://www.oceanexpert.org/event/2854 -https://www.oceanexpert.org/institution/16194 -https://www.oceanexpert.org/expert/23004 -https://www.oceanexpert.org/event/1467 -https://www.oceanexpert.org/expert/33288 -https://www.oceanexpert.org/expert/37429 -https://www.oceanexpert.org/expert/37206 -https://www.oceanexpert.org/institution/20597 -https://www.oceanexpert.org/expert/27289 -https://www.oceanexpert.org/expert/38217 -https://www.oceanexpert.org/expert/24945 -https://www.oceanexpert.org/expert/19776 -https://www.oceanexpert.org/expert/42680 -https://www.oceanexpert.org/expert/16114 -https://www.oceanexpert.org/event/1369 -https://www.oceanexpert.org/expert/20053 -https://www.oceanexpert.org/expert/7830 -https://www.oceanexpert.org/expert/24526 -https://www.oceanexpert.org/event/2680 -https://www.oceanexpert.org/institution/11050 -https://www.oceanexpert.org/expert/16127 -https://www.oceanexpert.org/expert/19902 -https://www.oceanexpert.org/institution/14366 -https://www.oceanexpert.org/institution/18963 -https://www.oceanexpert.org/institution/10916 -https://www.oceanexpert.org/institution/10279 -https://www.oceanexpert.org/institution/16308 -https://www.oceanexpert.org/expert/47555 -https://www.oceanexpert.org/institution/17622 -https://www.oceanexpert.org/institution/5924 -https://www.oceanexpert.org/event/1233 -https://www.oceanexpert.org/expert/43713 -https://www.oceanexpert.org/event/1060 -https://www.oceanexpert.org/expert/45087 -https://www.oceanexpert.org/expert/8706 -https://www.oceanexpert.org/expert/48974 -https://www.oceanexpert.org/institution/11592 -https://www.oceanexpert.org/expert/972 -https://www.oceanexpert.org/institution/17974 -https://www.oceanexpert.org/expert/44603 -https://www.oceanexpert.org/expert/20131 -https://www.oceanexpert.org/expert/33793 -https://www.oceanexpert.org/institution/19917 -https://www.oceanexpert.org/institution/17708 -https://www.oceanexpert.org/expert/30050 -https://www.oceanexpert.org/expert/26765 -https://www.oceanexpert.org/expert/26087 -https://www.oceanexpert.org/expert/36028 -https://www.oceanexpert.org/institution/14179 -https://www.oceanexpert.org/expert/24430 -https://www.oceanexpert.org/expert/23480 -https://www.oceanexpert.org/expert/1989 -https://www.oceanexpert.org/institution/15099 -https://www.oceanexpert.org/institution/11774 -https://www.oceanexpert.org/expert/23451 -https://www.oceanexpert.org/expert/42931 -https://www.oceanexpert.org/expert/36756 -https://www.oceanexpert.org/expert/44689 -https://www.oceanexpert.org/institution/11528 -https://www.oceanexpert.org/expert/27622 -https://www.oceanexpert.org/expert/45206 -https://www.oceanexpert.org/expert/14392 -https://www.oceanexpert.org/expert/17572 -https://www.oceanexpert.org/expert/26527 -https://www.oceanexpert.org/expert/36296 -https://www.oceanexpert.org/expert/12372 -https://www.oceanexpert.org/institution/12176 -https://www.oceanexpert.org/expert/21957 -https://www.oceanexpert.org/expert/46681 -https://www.oceanexpert.org/expert/18171 -https://www.oceanexpert.org/institution/21848 -https://www.oceanexpert.org/expert/48937 -https://www.oceanexpert.org/expert/25560 -https://www.oceanexpert.org/expert/16041 -https://www.oceanexpert.org/institution/20864 -https://www.oceanexpert.org/expert/36667 -https://www.oceanexpert.org/expert/25799 -https://www.oceanexpert.org/expert/29627 -https://www.oceanexpert.org/expert/44034 -https://www.oceanexpert.org/expert/29175 -https://www.oceanexpert.org/institution/18807 -https://www.oceanexpert.org/institution/21108 -https://www.oceanexpert.org/expert/19418 -https://www.oceanexpert.org/expert/42954 -https://www.oceanexpert.org/expert/25648 -https://www.oceanexpert.org/expert/30032 -https://www.oceanexpert.org/expert/43772 -https://www.oceanexpert.org/event/1642 -https://www.oceanexpert.org/expert/37074 -https://www.oceanexpert.org/expert/43356 -https://www.oceanexpert.org/institution/19408 -https://www.oceanexpert.org/expert/13110 -https://www.oceanexpert.org/expert/23901 -https://www.oceanexpert.org/institution/13183 -https://www.oceanexpert.org/institution/20942 -https://www.oceanexpert.org/expert/25928 -https://www.oceanexpert.org/institution/16807 -https://www.oceanexpert.org/expert/46231 -https://www.oceanexpert.org/expert/44046 -https://www.oceanexpert.org/expert/43193 -https://www.oceanexpert.org/expert/46239 -https://www.oceanexpert.org/expert/20620 -https://www.oceanexpert.org/expert/20706 -https://www.oceanexpert.org/expert/45507 -https://www.oceanexpert.org/expert/37292 -https://www.oceanexpert.org/expert/34695 -https://www.oceanexpert.org/expert/46575 -https://www.oceanexpert.org/expert/35064 -https://www.oceanexpert.org/institution/22141 -https://www.oceanexpert.org/expert/3053 -https://www.oceanexpert.org/expert/18909 -https://www.oceanexpert.org/expert/42152 -https://www.oceanexpert.org/expert/44797 -https://www.oceanexpert.org/expert/12244 -https://www.oceanexpert.org/expert/36594 -https://www.oceanexpert.org/expert/24466 -https://www.oceanexpert.org/event/998 -https://www.oceanexpert.org/institution/6706 -https://www.oceanexpert.org/expert/1290 -https://www.oceanexpert.org/expert/23389 -https://www.oceanexpert.org/expert/47779 -https://www.oceanexpert.org/expert/32263 -https://www.oceanexpert.org/event/1644 -https://www.oceanexpert.org/expert/16743 -https://www.oceanexpert.org/event/2512 -https://www.oceanexpert.org/expert/38489 -https://www.oceanexpert.org/event/2345 -https://www.oceanexpert.org/expert/22037 -https://www.oceanexpert.org/institution/10884 -https://www.oceanexpert.org/institution/10542 -https://www.oceanexpert.org/expert/16177 -https://www.oceanexpert.org/expert/45912 -https://www.oceanexpert.org/expert/20236 -https://www.oceanexpert.org/expert/35407 -https://www.oceanexpert.org/expert/42505 -https://www.oceanexpert.org/institution/11021 -https://www.oceanexpert.org/expert/21341 -https://www.oceanexpert.org/expert/43352 -https://www.oceanexpert.org/institution/17803 -https://www.oceanexpert.org/expert/26596 -https://www.oceanexpert.org/expert/36248 -https://www.oceanexpert.org/expert/24649 -https://www.oceanexpert.org/institution/14197 -https://www.oceanexpert.org/expert/37910 -https://www.oceanexpert.org/expert/46143 -https://www.oceanexpert.org/expert/30807 -https://www.oceanexpert.org/expert/13996 -https://www.oceanexpert.org/expert/48956 -https://www.oceanexpert.org/institution/13496 -https://www.oceanexpert.org/expert/38943 -https://www.oceanexpert.org/expert/45763 -https://www.oceanexpert.org/expert/47782 -https://www.oceanexpert.org/expert/29798 -https://www.oceanexpert.org/institution/16248 -https://www.oceanexpert.org/expert/36111 -https://www.oceanexpert.org/expert/32175 -https://www.oceanexpert.org/expert/18036 -https://www.oceanexpert.org/event/3294 -https://www.oceanexpert.org/expert/46342 -https://www.oceanexpert.org/institution/5166 -https://www.oceanexpert.org/expert/1192 -https://www.oceanexpert.org/institution/18285 -https://www.oceanexpert.org/expert/15827 -https://www.oceanexpert.org/expert/47813 -https://www.oceanexpert.org/expert/48074 -https://www.oceanexpert.org/event/3111 -https://www.oceanexpert.org/expert/11282 -https://www.oceanexpert.org/expert/26676 -https://www.oceanexpert.org/expert/25805 -https://www.oceanexpert.org/event/2898 -https://www.oceanexpert.org/expert/32441 -https://www.oceanexpert.org/event/1443 -https://www.oceanexpert.org/expert/22715 -https://www.oceanexpert.org/expert/19653 -https://www.oceanexpert.org/expert/18184 -https://www.oceanexpert.org/event/2771 -https://www.oceanexpert.org/institution/18469 -https://www.oceanexpert.org/event/1788 -https://www.oceanexpert.org/expert/42869 -https://www.oceanexpert.org/institution/18955 -https://www.oceanexpert.org/expert/44803 -https://www.oceanexpert.org/institution/21129 -https://www.oceanexpert.org/expert/44766 -https://www.oceanexpert.org/institution/19473 -https://www.oceanexpert.org/event/2849 -https://www.oceanexpert.org/expert/26318 -https://www.oceanexpert.org/institution/19577 -https://www.oceanexpert.org/expert/22992 -https://www.oceanexpert.org/event/3159 -https://www.oceanexpert.org/institution/10576 -https://www.oceanexpert.org/expert/42776 -https://www.oceanexpert.org/expert/45611 -https://www.oceanexpert.org/expert/22686 -https://www.oceanexpert.org/expert/34654 -https://www.oceanexpert.org/expert/32794 -https://www.oceanexpert.org/expert/44475 -https://www.oceanexpert.org/expert/19005 -https://www.oceanexpert.org/expert/16177 -https://www.oceanexpert.org/expert/25575 -https://www.oceanexpert.org/expert/26228 -https://www.oceanexpert.org/expert/23835 -https://www.oceanexpert.org/expert/26142 -https://www.oceanexpert.org/expert/35434 -https://www.oceanexpert.org/institution/14421 -https://www.oceanexpert.org/expert/36644 -https://www.oceanexpert.org/expert/14684 -https://www.oceanexpert.org/expert/21498 -https://www.oceanexpert.org/institution/11221 -https://www.oceanexpert.org/expert/17016 -https://www.oceanexpert.org/expert/43142 -https://www.oceanexpert.org/expert/39226 -https://www.oceanexpert.org/expert/19053 -https://www.oceanexpert.org/expert/34928 -https://www.oceanexpert.org/institution/15172 -https://www.oceanexpert.org/expert/30455 -https://www.oceanexpert.org/expert/27836 -https://www.oceanexpert.org/institution/7642 -https://www.oceanexpert.org/expert/48830 -https://www.oceanexpert.org/institution/20517 -https://www.oceanexpert.org/expert/47966 -https://www.oceanexpert.org/expert/38173 -https://www.oceanexpert.org/expert/37383 -https://www.oceanexpert.org/institution/18458 -https://www.oceanexpert.org/expert/5830 -https://www.oceanexpert.org/institution/22058 -https://www.oceanexpert.org/expert/36621 -https://www.oceanexpert.org/event/2324 -https://www.oceanexpert.org/institution/19175 -https://www.oceanexpert.org/institution/11150 -https://www.oceanexpert.org/expert/42612 -https://www.oceanexpert.org/expert/46836 -https://www.oceanexpert.org/expert/35199 -https://www.oceanexpert.org/institution/22017 -https://www.oceanexpert.org/expert/43973 -https://www.oceanexpert.org/expert/25957 -https://www.oceanexpert.org/expert/29363 -https://www.oceanexpert.org/expert/30860 -https://www.oceanexpert.org/institution/21395 -https://www.oceanexpert.org/expert/47783 -https://www.oceanexpert.org/expert/37454 -https://www.oceanexpert.org/expert/42534 -https://www.oceanexpert.org/event/2649 -https://www.oceanexpert.org/expert/45829 -https://www.oceanexpert.org/expert/14292 -https://www.oceanexpert.org/expert/13293 -https://www.oceanexpert.org/institution/6993 -https://www.oceanexpert.org/institution/22082 -https://www.oceanexpert.org/expert/46434 -https://www.oceanexpert.org/expert/46878 -https://www.oceanexpert.org/expert/44701 -https://www.oceanexpert.org/expert/33522 -https://www.oceanexpert.org/expert/37142 -https://www.oceanexpert.org/expert/46029 -https://www.oceanexpert.org/expert/48109 -https://www.oceanexpert.org/expert/28034 -https://www.oceanexpert.org/institution/18777 -https://www.oceanexpert.org/expert/33017 -https://www.oceanexpert.org/expert/34345 -https://www.oceanexpert.org/expert/12201 -https://www.oceanexpert.org/expert/2133 -https://www.oceanexpert.org/expert/20792 -https://www.oceanexpert.org/institution/11709 -https://www.oceanexpert.org/institution/16740 -https://www.oceanexpert.org/institution/20792 -https://www.oceanexpert.org/expert/43335 -https://www.oceanexpert.org/expert/37904 -https://www.oceanexpert.org/expert/38826 -https://www.oceanexpert.org/institution/9331 -https://www.oceanexpert.org/event/1251 -https://www.oceanexpert.org/expert/35485 -https://www.oceanexpert.org/expert/25226 -https://www.oceanexpert.org/expert/43762 -https://www.oceanexpert.org/expert/29741 -https://www.oceanexpert.org/expert/45478 -https://www.oceanexpert.org/event/891 -https://www.oceanexpert.org/institution/12600 -https://www.oceanexpert.org/expert/17052 -https://www.oceanexpert.org/expert/24604 -https://www.oceanexpert.org/expert/31374 -https://www.oceanexpert.org/event/2038 -https://www.oceanexpert.org/expert/21129 -https://www.oceanexpert.org/expert/22288 -https://www.oceanexpert.org/expert/24932 -https://www.oceanexpert.org/expert/31001 -https://www.oceanexpert.org/expert/36534 -https://www.oceanexpert.org/expert/19965 -https://www.oceanexpert.org/institution/21159 -https://www.oceanexpert.org/institution/17290 -https://www.oceanexpert.org/expert/32826 -https://www.oceanexpert.org/expert/23698 -https://www.oceanexpert.org/expert/29540 -https://www.oceanexpert.org/expert/44941 -https://www.oceanexpert.org/expert/26426 -https://www.oceanexpert.org/expert/48063 -https://www.oceanexpert.org/expert/38606 -https://www.oceanexpert.org/event/3075 -https://www.oceanexpert.org/expert/42973 -https://www.oceanexpert.org/event/1490 -https://www.oceanexpert.org/expert/16708 -https://www.oceanexpert.org/expert/27245 -https://www.oceanexpert.org/expert/13343 -https://www.oceanexpert.org/expert/35645 -https://www.oceanexpert.org/expert/46821 -https://www.oceanexpert.org/expert/12043 -https://www.oceanexpert.org/expert/31938 -https://www.oceanexpert.org/institution/8887 -https://www.oceanexpert.org/expert/47029 -https://www.oceanexpert.org/institution/12852 -https://www.oceanexpert.org/expert/42497 -https://www.oceanexpert.org/expert/6490 -https://www.oceanexpert.org/expert/46706 -https://www.oceanexpert.org/institution/12851 -https://www.oceanexpert.org/expert/24954 -https://www.oceanexpert.org/expert/29596 -https://www.oceanexpert.org/expert/19846 -https://www.oceanexpert.org/institution/13316 -https://www.oceanexpert.org/institution/21216 -https://www.oceanexpert.org/expert/31268 -https://www.oceanexpert.org/expert/34543 -https://www.oceanexpert.org/expert/46317 -https://www.oceanexpert.org/event/1444 -https://www.oceanexpert.org/event/2278 -https://www.oceanexpert.org/expert/43791 -https://www.oceanexpert.org/expert/32345 -https://www.oceanexpert.org/expert/4218 -https://www.oceanexpert.org/expert/47468 -https://www.oceanexpert.org/expert/40396 -https://www.oceanexpert.org/expert/26295 -https://www.oceanexpert.org/institution/11566 -https://www.oceanexpert.org/expert/36612 -https://www.oceanexpert.org/expert/19244 -https://www.oceanexpert.org/expert/20234 -https://www.oceanexpert.org/event/1308 -https://www.oceanexpert.org/expert/26647 -https://www.oceanexpert.org/institution/19166 -https://www.oceanexpert.org/institution/13341 -https://www.oceanexpert.org/event/2843 -https://www.oceanexpert.org/expert/38626 -https://www.oceanexpert.org/expert/30327 -https://www.oceanexpert.org/expert/35257 -https://www.oceanexpert.org/expert/21926 -https://www.oceanexpert.org/institution/18322 -https://www.oceanexpert.org/expert/28441 -https://www.oceanexpert.org/expert/19129 -https://www.oceanexpert.org/expert/3053 -https://www.oceanexpert.org/expert/22494 -https://www.oceanexpert.org/expert/42622 -https://www.oceanexpert.org/expert/43372 -https://www.oceanexpert.org/expert/36547 -https://www.oceanexpert.org/expert/12073 -https://www.oceanexpert.org/expert/24633 -https://www.oceanexpert.org/expert/44015 -https://www.oceanexpert.org/expert/34962 -https://www.oceanexpert.org/expert/45448 -https://www.oceanexpert.org/expert/43987 -https://www.oceanexpert.org/expert/25201 -https://www.oceanexpert.org/expert/27525 -https://www.oceanexpert.org/expert/17501 -https://www.oceanexpert.org/institution/6063 -https://www.oceanexpert.org/institution/18992 -https://www.oceanexpert.org/expert/26687 -https://www.oceanexpert.org/expert/21489 -https://www.oceanexpert.org/event/689 -https://www.oceanexpert.org/institution/17186 -https://www.oceanexpert.org/expert/46118 -https://www.oceanexpert.org/event/1871 -https://www.oceanexpert.org/institution/21201 -https://www.oceanexpert.org/event/780 -https://www.oceanexpert.org/institution/8002 -https://www.oceanexpert.org/expert/45130 -https://www.oceanexpert.org/expert/44805 -https://www.oceanexpert.org/expert/23625 -https://www.oceanexpert.org/institution/5781 -https://www.oceanexpert.org/institution/6316 -https://www.oceanexpert.org/event/1935 -https://www.oceanexpert.org/event/534 -https://www.oceanexpert.org/expert/13728 -https://www.oceanexpert.org/expert/20781 -https://www.oceanexpert.org/expert/24652 -https://www.oceanexpert.org/expert/36179 -https://www.oceanexpert.org/expert/24267 -https://www.oceanexpert.org/institution/20478 -https://www.oceanexpert.org/expert/33316 -https://www.oceanexpert.org/expert/19297 -https://www.oceanexpert.org/expert/37537 -https://www.oceanexpert.org/institution/17236 -https://www.oceanexpert.org/expert/20063 -https://www.oceanexpert.org/expert/14478 -https://www.oceanexpert.org/expert/32570 -https://www.oceanexpert.org/institution/19848 -https://www.oceanexpert.org/expert/34693 -https://www.oceanexpert.org/event/231 -https://www.oceanexpert.org/expert/48637 -https://www.oceanexpert.org/expert/36772 -https://www.oceanexpert.org/expert/38172 -https://www.oceanexpert.org/institution/13717 -https://www.oceanexpert.org/expert/21915 -https://www.oceanexpert.org/institution/19633 -https://www.oceanexpert.org/expert/27641 -https://www.oceanexpert.org/event/160 -https://www.oceanexpert.org/institution/18092 -https://www.oceanexpert.org/expert/32930 -https://www.oceanexpert.org/institution/17049 -https://www.oceanexpert.org/expert/19312 -https://www.oceanexpert.org/expert/25606 -https://www.oceanexpert.org/expert/36600 -https://www.oceanexpert.org/expert/45452 -https://www.oceanexpert.org/expert/22841 -https://www.oceanexpert.org/institution/12347 -https://www.oceanexpert.org/expert/13293 -https://www.oceanexpert.org/expert/28316 -https://www.oceanexpert.org/event/1346 -https://www.oceanexpert.org/expert/37440 -https://www.oceanexpert.org/expert/23046 -https://www.oceanexpert.org/institution/19914 -https://www.oceanexpert.org/expert/23645 -https://www.oceanexpert.org/expert/12197 -https://www.oceanexpert.org/institution/15492 -https://www.oceanexpert.org/event/442 -https://www.oceanexpert.org/institution/14066 -https://www.oceanexpert.org/institution/5444 -https://www.oceanexpert.org/institution/16967 -https://www.oceanexpert.org/expert/24520 -https://www.oceanexpert.org/expert/32252 -https://www.oceanexpert.org/event/581 -https://www.oceanexpert.org/expert/30167 -https://www.oceanexpert.org/expert/37286 -https://www.oceanexpert.org/expert/5281 -https://www.oceanexpert.org/expert/29818 -https://www.oceanexpert.org/institution/8494 -https://www.oceanexpert.org/expert/39773 -https://www.oceanexpert.org/event/293 -https://www.oceanexpert.org/expert/46262 -https://www.oceanexpert.org/expert/17439 -https://www.oceanexpert.org/institution/14497 -https://www.oceanexpert.org/expert/27184 -https://www.oceanexpert.org/expert/25990 -https://www.oceanexpert.org/expert/27908 -https://www.oceanexpert.org/expert/14311 -https://www.oceanexpert.org/event/3170 -https://www.oceanexpert.org/institution/12317 -https://www.oceanexpert.org/event/1183 -https://www.oceanexpert.org/institution/11358 -https://www.oceanexpert.org/expert/14668 -https://www.oceanexpert.org/expert/42060 -https://www.oceanexpert.org/expert/33764 -https://www.oceanexpert.org/expert/20865 -https://www.oceanexpert.org/expert/5281 -https://www.oceanexpert.org/expert/31121 -https://www.oceanexpert.org/expert/39579 -https://www.oceanexpert.org/institution/20199 -https://www.oceanexpert.org/institution/12881 -https://www.oceanexpert.org/expert/23520 -https://www.oceanexpert.org/expert/15402 -https://www.oceanexpert.org/institution/19714 -https://www.oceanexpert.org/institution/13115 -https://www.oceanexpert.org/expert/30957 -https://www.oceanexpert.org/institution/14473 -https://www.oceanexpert.org/expert/39640 -https://www.oceanexpert.org/expert/26202 -https://www.oceanexpert.org/expert/42617 -https://www.oceanexpert.org/institution/7914 -https://www.oceanexpert.org/expert/45030 -https://www.oceanexpert.org/expert/17029 -https://www.oceanexpert.org/institution/21747 -https://www.oceanexpert.org/expert/36554 -https://www.oceanexpert.org/institution/20507 -https://www.oceanexpert.org/expert/26549 -https://www.oceanexpert.org/expert/26057 -https://www.oceanexpert.org/expert/25777 -https://www.oceanexpert.org/expert/23198 -https://www.oceanexpert.org/expert/19395 -https://www.oceanexpert.org/expert/37664 -https://www.oceanexpert.org/institution/15293 -https://www.oceanexpert.org/event/195 -https://www.oceanexpert.org/institution/18489 -https://www.oceanexpert.org/institution/10527 -https://www.oceanexpert.org/expert/24839 -https://www.oceanexpert.org/expert/6352 -https://www.oceanexpert.org/event/1509 -https://www.oceanexpert.org/expert/31026 -https://www.oceanexpert.org/event/2850 -https://www.oceanexpert.org/institution/14441 -https://www.oceanexpert.org/institution/21618 -https://www.oceanexpert.org/expert/39776 -https://www.oceanexpert.org/expert/261 -https://www.oceanexpert.org/expert/16676 -https://www.oceanexpert.org/event/2498 -https://www.oceanexpert.org/expert/32743 -https://www.oceanexpert.org/expert/11777 -https://www.oceanexpert.org/expert/37774 -https://www.oceanexpert.org/expert/25715 -https://www.oceanexpert.org/expert/7002 -https://www.oceanexpert.org/institution/12155 -https://www.oceanexpert.org/event/12 -https://www.oceanexpert.org/institution/13951 -https://www.oceanexpert.org/expert/6910 -https://www.oceanexpert.org/institution/14494 -https://www.oceanexpert.org/expert/14287 -https://www.oceanexpert.org/expert/28208 -https://www.oceanexpert.org/expert/22939 -https://www.oceanexpert.org/expert/36234 -https://www.oceanexpert.org/expert/12010 -https://www.oceanexpert.org/expert/27729 -https://www.oceanexpert.org/expert/35288 -https://www.oceanexpert.org/institution/17942 -https://www.oceanexpert.org/expert/20691 -https://www.oceanexpert.org/institution/19337 -https://www.oceanexpert.org/expert/25842 -https://www.oceanexpert.org/institution/5290 -https://www.oceanexpert.org/expert/1872 -https://www.oceanexpert.org/expert/32684 -https://www.oceanexpert.org/expert/42921 -https://www.oceanexpert.org/expert/33855 -https://www.oceanexpert.org/expert/32455 -https://www.oceanexpert.org/institution/19067 -https://www.oceanexpert.org/expert/381 -https://www.oceanexpert.org/expert/22772 -https://www.oceanexpert.org/expert/20392 -https://www.oceanexpert.org/expert/34211 -https://www.oceanexpert.org/expert/47706 -https://www.oceanexpert.org/expert/28120 -https://www.oceanexpert.org/expert/15048 -https://www.oceanexpert.org/expert/45758 -https://www.oceanexpert.org/institution/12632 -https://www.oceanexpert.org/expert/2897 -https://www.oceanexpert.org/expert/32646 -https://www.oceanexpert.org/expert/42925 -https://www.oceanexpert.org/expert/35986 -https://www.oceanexpert.org/expert/48056 -https://www.oceanexpert.org/expert/14807 -https://www.oceanexpert.org/expert/31028 -https://www.oceanexpert.org/institution/13654 -https://www.oceanexpert.org/expert/11041 -https://www.oceanexpert.org/expert/21260 -https://www.oceanexpert.org/institution/10579 -https://www.oceanexpert.org/institution/17107 -https://www.oceanexpert.org/expert/26032 -https://www.oceanexpert.org/institution/20943 -https://www.oceanexpert.org/institution/19630 -https://www.oceanexpert.org/expert/35524 -https://www.oceanexpert.org/expert/44912 -https://www.oceanexpert.org/expert/26458 -https://www.oceanexpert.org/expert/36661 -https://www.oceanexpert.org/institution/18663 -https://www.oceanexpert.org/expert/22190 -https://www.oceanexpert.org/institution/20887 -https://www.oceanexpert.org/expert/16957 -https://www.oceanexpert.org/expert/44592 -https://www.oceanexpert.org/institution/14924 -https://www.oceanexpert.org/expert/21211 -https://www.oceanexpert.org/expert/34093 -https://www.oceanexpert.org/expert/19554 -https://www.oceanexpert.org/expert/24648 -https://www.oceanexpert.org/expert/386 -https://www.oceanexpert.org/expert/17374 -https://www.oceanexpert.org/institution/15240 -https://www.oceanexpert.org/institution/19488 -https://www.oceanexpert.org/event/2213 -https://www.oceanexpert.org/event/2972 -https://www.oceanexpert.org/institution/21903 -https://www.oceanexpert.org/institution/17382 -https://www.oceanexpert.org/expert/44915 -https://www.oceanexpert.org/event/2416 -https://www.oceanexpert.org/expert/34904 -https://www.oceanexpert.org/institution/19618 -https://www.oceanexpert.org/expert/1007 -https://www.oceanexpert.org/institution/12569 -https://www.oceanexpert.org/expert/17557 -https://www.oceanexpert.org/expert/30957 -https://www.oceanexpert.org/expert/19430 -https://www.oceanexpert.org/expert/44463 -https://www.oceanexpert.org/expert/47011 -https://www.oceanexpert.org/event/288 -https://www.oceanexpert.org/expert/32438 -https://www.oceanexpert.org/expert/34884 -https://www.oceanexpert.org/expert/44548 -https://www.oceanexpert.org/expert/34434 -https://www.oceanexpert.org/expert/12045 -https://www.oceanexpert.org/institution/12273 -https://www.oceanexpert.org/expert/31510 -https://www.oceanexpert.org/institution/19407 -https://www.oceanexpert.org/event/2285 -https://www.oceanexpert.org/event/76 -https://www.oceanexpert.org/expert/42438 -https://www.oceanexpert.org/institution/12138 -https://www.oceanexpert.org/institution/17762 -https://www.oceanexpert.org/expert/32222 -https://www.oceanexpert.org/expert/23124 -https://www.oceanexpert.org/expert/20015 -https://www.oceanexpert.org/expert/37989 -https://www.oceanexpert.org/expert/40273 -https://www.oceanexpert.org/expert/23192 -https://www.oceanexpert.org/expert/12888 -https://www.oceanexpert.org/expert/24641 -https://www.oceanexpert.org/expert/43302 -https://www.oceanexpert.org/expert/45711 -https://www.oceanexpert.org/expert/37963 -https://www.oceanexpert.org/expert/27358 -https://www.oceanexpert.org/expert/17376 -https://www.oceanexpert.org/institution/12552 -https://www.oceanexpert.org/expert/35536 -https://www.oceanexpert.org/institution/14829 -https://www.oceanexpert.org/expert/12151 -https://www.oceanexpert.org/expert/24452 -https://www.oceanexpert.org/expert/32600 -https://www.oceanexpert.org/institution/5285 -https://www.oceanexpert.org/institution/20897 -https://www.oceanexpert.org/expert/22332 -https://www.oceanexpert.org/expert/20670 -https://www.oceanexpert.org/institution/6998 -https://www.oceanexpert.org/institution/5846 -https://www.oceanexpert.org/institution/19342 -https://www.oceanexpert.org/expert/46240 -https://www.oceanexpert.org/event/92 -https://www.oceanexpert.org/expert/26835 -https://www.oceanexpert.org/expert/37904 -https://www.oceanexpert.org/institution/11034 -https://www.oceanexpert.org/institution/12159 -https://www.oceanexpert.org/expert/13596 -https://www.oceanexpert.org/expert/5102 -https://www.oceanexpert.org/expert/21910 -https://www.oceanexpert.org/expert/36557 -https://www.oceanexpert.org/institution/11679 -https://www.oceanexpert.org/expert/30904 -https://www.oceanexpert.org/expert/44915 -https://www.oceanexpert.org/expert/23586 -https://www.oceanexpert.org/expert/24608 -https://www.oceanexpert.org/expert/6329 -https://www.oceanexpert.org/institution/20754 -https://www.oceanexpert.org/expert/40311 -https://www.oceanexpert.org/event/2828 -https://www.oceanexpert.org/expert/36913 -https://www.oceanexpert.org/expert/1995 -https://www.oceanexpert.org/expert/42625 -https://www.oceanexpert.org/expert/36540 -https://www.oceanexpert.org/expert/18918 -https://www.oceanexpert.org/expert/8496 -https://www.oceanexpert.org/institution/12804 -https://www.oceanexpert.org/institution/6709 -https://www.oceanexpert.org/institution/19255 -https://www.oceanexpert.org/institution/18569 -https://www.oceanexpert.org/expert/18284 -https://www.oceanexpert.org/institution/15707 -https://www.oceanexpert.org/institution/20122 -https://www.oceanexpert.org/institution/18367 -https://www.oceanexpert.org/institution/15819 -https://www.oceanexpert.org/expert/15358 -https://www.oceanexpert.org/expert/4763 -https://www.oceanexpert.org/expert/24840 -https://www.oceanexpert.org/expert/43706 -https://www.oceanexpert.org/expert/16937 -https://www.oceanexpert.org/expert/22764 -https://www.oceanexpert.org/expert/37009 -https://www.oceanexpert.org/institution/15886 -https://www.oceanexpert.org/expert/26635 -https://www.oceanexpert.org/event/1845 -https://www.oceanexpert.org/event/973 -https://www.oceanexpert.org/institution/17979 -https://www.oceanexpert.org/event/839 -https://www.oceanexpert.org/institution/12864 -https://www.oceanexpert.org/expert/47292 -https://www.oceanexpert.org/expert/20228 -https://www.oceanexpert.org/expert/26371 -https://www.oceanexpert.org/event/3089 -https://www.oceanexpert.org/event/280 -https://www.oceanexpert.org/expert/14230 -https://www.oceanexpert.org/expert/26367 -https://www.oceanexpert.org/expert/23609 -https://www.oceanexpert.org/expert/2114 -https://www.oceanexpert.org/expert/21870 -https://www.oceanexpert.org/institution/18972 -https://www.oceanexpert.org/expert/20494 -https://www.oceanexpert.org/expert/38323 -https://www.oceanexpert.org/expert/25957 -https://www.oceanexpert.org/institution/11895 -https://www.oceanexpert.org/expert/48825 -https://www.oceanexpert.org/expert/24070 -https://www.oceanexpert.org/expert/30665 -https://www.oceanexpert.org/institution/17750 -https://www.oceanexpert.org/expert/28455 -https://www.oceanexpert.org/expert/48655 -https://www.oceanexpert.org/expert/25854 -https://www.oceanexpert.org/institution/19159 -https://www.oceanexpert.org/expert/14274 -https://www.oceanexpert.org/expert/33606 -https://www.oceanexpert.org/expert/45507 -https://www.oceanexpert.org/expert/15614 -https://www.oceanexpert.org/expert/33405 -https://www.oceanexpert.org/institution/21297 -https://www.oceanexpert.org/expert/24633 -https://www.oceanexpert.org/expert/31060 -https://www.oceanexpert.org/expert/26588 -https://www.oceanexpert.org/expert/35488 -https://www.oceanexpert.org/expert/7857 -https://www.oceanexpert.org/expert/26274 -https://www.oceanexpert.org/institution/17922 -https://www.oceanexpert.org/expert/36022 -https://www.oceanexpert.org/expert/11914 -https://www.oceanexpert.org/expert/1867 -https://www.oceanexpert.org/institution/16174 -https://www.oceanexpert.org/expert/25137 -https://www.oceanexpert.org/expert/7356 -https://www.oceanexpert.org/expert/21790 -https://www.oceanexpert.org/expert/48036 -https://www.oceanexpert.org/expert/18032 -https://www.oceanexpert.org/institution/20613 -https://www.oceanexpert.org/expert/13382 -https://www.oceanexpert.org/expert/26685 -https://www.oceanexpert.org/expert/39243 -https://www.oceanexpert.org/expert/36642 -https://www.oceanexpert.org/expert/19233 -https://www.oceanexpert.org/expert/24933 -https://www.oceanexpert.org/expert/17849 -https://www.oceanexpert.org/expert/46595 -https://www.oceanexpert.org/expert/16707 -https://www.oceanexpert.org/expert/46060 -https://www.oceanexpert.org/institution/20437 -https://www.oceanexpert.org/institution/10091 -https://www.oceanexpert.org/expert/48306 -https://www.oceanexpert.org/expert/43895 -https://www.oceanexpert.org/institution/16699 -https://www.oceanexpert.org/institution/5108 -https://www.oceanexpert.org/institution/21275 -https://www.oceanexpert.org/institution/20438 -https://www.oceanexpert.org/expert/19438 -https://www.oceanexpert.org/expert/33244 -https://www.oceanexpert.org/event/1540 -https://www.oceanexpert.org/institution/14295 -https://www.oceanexpert.org/institution/18566 -https://www.oceanexpert.org/expert/36133 -https://www.oceanexpert.org/institution/21010 -https://www.oceanexpert.org/expert/42673 -https://www.oceanexpert.org/expert/20214 -https://www.oceanexpert.org/expert/30187 -https://www.oceanexpert.org/institution/12186 -https://www.oceanexpert.org/expert/35308 -https://www.oceanexpert.org/expert/22272 -https://www.oceanexpert.org/expert/11815 -https://www.oceanexpert.org/expert/26827 -https://www.oceanexpert.org/expert/36388 -https://www.oceanexpert.org/expert/17384 -https://www.oceanexpert.org/expert/25082 -https://www.oceanexpert.org/expert/35403 -https://www.oceanexpert.org/expert/18681 -https://www.oceanexpert.org/institution/6099 -https://www.oceanexpert.org/event/2535 -https://www.oceanexpert.org/expert/43678 -https://www.oceanexpert.org/institution/20981 -https://www.oceanexpert.org/expert/16961 -https://www.oceanexpert.org/institution/21318 -https://www.oceanexpert.org/expert/26403 -https://www.oceanexpert.org/expert/20814 -https://www.oceanexpert.org/expert/20074 -https://www.oceanexpert.org/expert/47609 -https://www.oceanexpert.org/institution/15215 -https://www.oceanexpert.org/expert/19588 -https://www.oceanexpert.org/expert/43261 -https://www.oceanexpert.org/expert/38108 -https://www.oceanexpert.org/expert/27260 -https://www.oceanexpert.org/expert/23217 -https://www.oceanexpert.org/event/2842 -https://www.oceanexpert.org/expert/45464 -https://www.oceanexpert.org/expert/46798 -https://www.oceanexpert.org/institution/13949 -https://www.oceanexpert.org/expert/47962 -https://www.oceanexpert.org/event/1924 -https://www.oceanexpert.org/expert/29534 -https://www.oceanexpert.org/institution/15879 -https://www.oceanexpert.org/expert/26452 -https://www.oceanexpert.org/institution/5247 -https://www.oceanexpert.org/expert/38106 -https://www.oceanexpert.org/expert/36027 -https://www.oceanexpert.org/event/492 -https://www.oceanexpert.org/institution/21082 -https://www.oceanexpert.org/institution/21342 -https://www.oceanexpert.org/expert/17069 -https://www.oceanexpert.org/expert/25420 -https://www.oceanexpert.org/institution/18493 -https://www.oceanexpert.org/institution/19138 -https://www.oceanexpert.org/expert/22644 -https://www.oceanexpert.org/expert/27480 -https://www.oceanexpert.org/institution/6698 -https://www.oceanexpert.org/institution/18386 -https://www.oceanexpert.org/expert/36396 -https://www.oceanexpert.org/institution/12722 -https://www.oceanexpert.org/institution/18044 -https://www.oceanexpert.org/institution/21403 -https://www.oceanexpert.org/event/195 -https://www.oceanexpert.org/expert/34817 -https://www.oceanexpert.org/institution/14728 -https://www.oceanexpert.org/expert/26808 -https://www.oceanexpert.org/expert/25193 -https://www.oceanexpert.org/event/1599 -https://www.oceanexpert.org/event/3013 -https://www.oceanexpert.org/expert/31162 -https://www.oceanexpert.org/institution/17100 -https://www.oceanexpert.org/institution/19170 -https://www.oceanexpert.org/expert/26653 -https://www.oceanexpert.org/expert/36686 -https://www.oceanexpert.org/expert/28823 -https://www.oceanexpert.org/expert/28468 -https://www.oceanexpert.org/expert/17597 -https://www.oceanexpert.org/institution/19425 -https://www.oceanexpert.org/expert/11409 -https://www.oceanexpert.org/expert/49023 -https://www.oceanexpert.org/expert/19511 -https://www.oceanexpert.org/institution/11614 -https://www.oceanexpert.org/expert/23713 -https://www.oceanexpert.org/expert/27216 -https://www.oceanexpert.org/expert/20708 -https://www.oceanexpert.org/expert/15680 -https://www.oceanexpert.org/event/2635 -https://www.oceanexpert.org/expert/42839 -https://www.oceanexpert.org/expert/43030 -https://www.oceanexpert.org/expert/32470 -https://www.oceanexpert.org/event/2499 -https://www.oceanexpert.org/expert/36802 -https://www.oceanexpert.org/expert/20343 -https://www.oceanexpert.org/expert/24924 -https://www.oceanexpert.org/event/2490 -https://www.oceanexpert.org/institution/14359 -https://www.oceanexpert.org/expert/46377 -https://www.oceanexpert.org/expert/13327 -https://www.oceanexpert.org/expert/26220 -https://www.oceanexpert.org/expert/33163 -https://www.oceanexpert.org/expert/47109 -https://www.oceanexpert.org/institution/6780 -https://www.oceanexpert.org/expert/48027 -https://www.oceanexpert.org/expert/32925 -https://www.oceanexpert.org/expert/36779 -https://www.oceanexpert.org/expert/17502 -https://www.oceanexpert.org/expert/25975 -https://www.oceanexpert.org/expert/44258 -https://www.oceanexpert.org/expert/25315 -https://www.oceanexpert.org/institution/15531 -https://www.oceanexpert.org/institution/14888 -https://www.oceanexpert.org/institution/10632 -https://www.oceanexpert.org/expert/47169 -https://www.oceanexpert.org/expert/18739 -https://www.oceanexpert.org/expert/24709 -https://www.oceanexpert.org/expert/43392 -https://www.oceanexpert.org/institution/7000 -https://www.oceanexpert.org/expert/38393 -https://www.oceanexpert.org/expert/25084 -https://www.oceanexpert.org/institution/7783 -https://www.oceanexpert.org/event/3195 -https://www.oceanexpert.org/expert/34127 -https://www.oceanexpert.org/institution/19889 -https://www.oceanexpert.org/expert/43277 -https://www.oceanexpert.org/event/1500 -https://www.oceanexpert.org/event/3263 -https://www.oceanexpert.org/institution/17614 -https://www.oceanexpert.org/expert/9177 -https://www.oceanexpert.org/expert/30959 -https://www.oceanexpert.org/expert/18266 -https://www.oceanexpert.org/expert/34563 -https://www.oceanexpert.org/institution/17642 -https://www.oceanexpert.org/institution/16687 -https://www.oceanexpert.org/expert/30862 -https://www.oceanexpert.org/expert/21503 -https://www.oceanexpert.org/expert/26287 -https://www.oceanexpert.org/event/38 -https://www.oceanexpert.org/institution/11853 -https://www.oceanexpert.org/expert/22476 -https://www.oceanexpert.org/expert/44227 -https://www.oceanexpert.org/institution/15666 -https://www.oceanexpert.org/expert/30848 -https://www.oceanexpert.org/expert/46458 -https://www.oceanexpert.org/institution/11020 -https://www.oceanexpert.org/expert/25512 -https://www.oceanexpert.org/expert/7178 -https://www.oceanexpert.org/expert/17306 -https://www.oceanexpert.org/expert/25698 -https://www.oceanexpert.org/expert/36001 -https://www.oceanexpert.org/expert/30311 -https://www.oceanexpert.org/expert/18202 -https://www.oceanexpert.org/expert/19585 -https://www.oceanexpert.org/expert/47747 -https://www.oceanexpert.org/expert/35255 -https://www.oceanexpert.org/expert/47468 -https://www.oceanexpert.org/event/2339 -https://www.oceanexpert.org/expert/15495 -https://www.oceanexpert.org/expert/18878 -https://www.oceanexpert.org/expert/45944 -https://www.oceanexpert.org/expert/24300 -https://www.oceanexpert.org/expert/43923 -https://www.oceanexpert.org/event/287 -https://www.oceanexpert.org/expert/27583 -https://www.oceanexpert.org/expert/37835 -https://www.oceanexpert.org/expert/18170 -https://www.oceanexpert.org/event/1749 -https://www.oceanexpert.org/expert/37264 -https://www.oceanexpert.org/expert/36554 -https://www.oceanexpert.org/expert/13963 -https://www.oceanexpert.org/expert/7182 -https://www.oceanexpert.org/expert/27835 -https://www.oceanexpert.org/expert/25584 -https://www.oceanexpert.org/expert/1132 -https://www.oceanexpert.org/expert/43533 -https://www.oceanexpert.org/expert/14178 -https://www.oceanexpert.org/institution/20603 -https://www.oceanexpert.org/event/296 -https://www.oceanexpert.org/institution/18789 -https://www.oceanexpert.org/institution/11141 -https://www.oceanexpert.org/expert/29139 -https://www.oceanexpert.org/expert/43117 -https://www.oceanexpert.org/expert/19417 -https://www.oceanexpert.org/institution/18687 -https://www.oceanexpert.org/expert/10444 -https://www.oceanexpert.org/expert/30480 -https://www.oceanexpert.org/expert/27196 -https://www.oceanexpert.org/institution/21878 -https://www.oceanexpert.org/expert/34930 -https://www.oceanexpert.org/expert/30218 -https://www.oceanexpert.org/expert/44902 -https://www.oceanexpert.org/expert/38281 -https://www.oceanexpert.org/institution/13140 -https://www.oceanexpert.org/expert/21635 -https://www.oceanexpert.org/institution/9024 -https://www.oceanexpert.org/expert/26083 -https://www.oceanexpert.org/expert/18824 -https://www.oceanexpert.org/expert/25999 -https://www.oceanexpert.org/expert/12680 -https://www.oceanexpert.org/expert/48482 -https://www.oceanexpert.org/expert/20800 -https://www.oceanexpert.org/expert/37555 -https://www.oceanexpert.org/institution/21953 -https://www.oceanexpert.org/expert/28125 -https://www.oceanexpert.org/expert/25397 -https://www.oceanexpert.org/expert/5302 -https://www.oceanexpert.org/institution/15341 -https://www.oceanexpert.org/expert/21048 -https://www.oceanexpert.org/expert/44240 -https://www.oceanexpert.org/expert/46410 -https://www.oceanexpert.org/expert/26775 -https://www.oceanexpert.org/institution/15443 -https://www.oceanexpert.org/expert/32712 -https://www.oceanexpert.org/expert/39964 -https://www.oceanexpert.org/expert/13992 -https://www.oceanexpert.org/expert/47463 -https://www.oceanexpert.org/expert/20640 -https://www.oceanexpert.org/institution/13964 -https://www.oceanexpert.org/event/1538 -https://www.oceanexpert.org/expert/34769 -https://www.oceanexpert.org/expert/33842 -https://www.oceanexpert.org/institution/12159 -https://www.oceanexpert.org/expert/48797 -https://www.oceanexpert.org/expert/46021 -https://www.oceanexpert.org/institution/13280 -https://www.oceanexpert.org/expert/45314 -https://www.oceanexpert.org/event/1192 -https://www.oceanexpert.org/expert/19105 -https://www.oceanexpert.org/institution/19712 -https://www.oceanexpert.org/expert/2291 -https://www.oceanexpert.org/institution/22022 -https://www.oceanexpert.org/institution/9132 -https://www.oceanexpert.org/expert/34089 -https://www.oceanexpert.org/event/1428 -https://www.oceanexpert.org/expert/16291 -https://www.oceanexpert.org/expert/24619 -https://www.oceanexpert.org/expert/34521 -https://www.oceanexpert.org/expert/25731 -https://www.oceanexpert.org/expert/14784 -https://www.oceanexpert.org/institution/21268 -https://www.oceanexpert.org/expert/34475 -https://www.oceanexpert.org/expert/30370 -https://www.oceanexpert.org/expert/43328 -https://www.oceanexpert.org/expert/8758 -https://www.oceanexpert.org/expert/22414 -https://www.oceanexpert.org/expert/47682 -https://www.oceanexpert.org/expert/25540 -https://www.oceanexpert.org/event/423 -https://www.oceanexpert.org/expert/18663 -https://www.oceanexpert.org/institution/13008 -https://www.oceanexpert.org/event/700 -https://www.oceanexpert.org/institution/15577 -https://www.oceanexpert.org/expert/18437 -https://www.oceanexpert.org/expert/37860 -https://www.oceanexpert.org/event/1329 -https://www.oceanexpert.org/expert/21762 -https://www.oceanexpert.org/institution/20486 -https://www.oceanexpert.org/expert/47796 -https://www.oceanexpert.org/expert/12916 -https://www.oceanexpert.org/institution/14888 -https://www.oceanexpert.org/institution/21610 -https://www.oceanexpert.org/expert/8825 -https://www.oceanexpert.org/event/95 -https://www.oceanexpert.org/expert/39383 -https://www.oceanexpert.org/expert/45314 -https://www.oceanexpert.org/expert/18684 -https://www.oceanexpert.org/expert/28158 -https://www.oceanexpert.org/expert/31030 -https://www.oceanexpert.org/institution/19261 -https://www.oceanexpert.org/expert/28848 -https://www.oceanexpert.org/institution/19286 -https://www.oceanexpert.org/expert/48901 -https://www.oceanexpert.org/institution/11775 -https://www.oceanexpert.org/expert/25774 -https://www.oceanexpert.org/expert/39460 -https://www.oceanexpert.org/expert/24210 -https://www.oceanexpert.org/expert/16043 -https://www.oceanexpert.org/expert/21178 -https://www.oceanexpert.org/event/1067 -https://www.oceanexpert.org/expert/32383 -https://www.oceanexpert.org/expert/48832 -https://www.oceanexpert.org/expert/47864 -https://www.oceanexpert.org/expert/19163 -https://www.oceanexpert.org/institution/20497 -https://www.oceanexpert.org/expert/14279 -https://www.oceanexpert.org/expert/48717 -https://www.oceanexpert.org/institution/20329 -https://www.oceanexpert.org/expert/22233 -https://www.oceanexpert.org/expert/11230 -https://www.oceanexpert.org/expert/36798 -https://www.oceanexpert.org/institution/15385 -https://www.oceanexpert.org/expert/36652 -https://www.oceanexpert.org/expert/21099 -https://www.oceanexpert.org/institution/21148 -https://www.oceanexpert.org/expert/5633 -https://www.oceanexpert.org/expert/25138 -https://www.oceanexpert.org/expert/33278 -https://www.oceanexpert.org/expert/36566 -https://www.oceanexpert.org/expert/22185 -https://www.oceanexpert.org/expert/49005 -https://www.oceanexpert.org/expert/19335 -https://www.oceanexpert.org/expert/43948 -https://www.oceanexpert.org/institution/15498 -https://www.oceanexpert.org/expert/38028 -https://www.oceanexpert.org/expert/38332 -https://www.oceanexpert.org/expert/47738 -https://www.oceanexpert.org/expert/24230 -https://www.oceanexpert.org/expert/25602 -https://www.oceanexpert.org/institution/9270 -https://www.oceanexpert.org/institution/13272 -https://www.oceanexpert.org/institution/11556 -https://www.oceanexpert.org/event/120 -https://www.oceanexpert.org/expert/38778 -https://www.oceanexpert.org/institution/18674 -https://www.oceanexpert.org/event/455 -https://www.oceanexpert.org/expert/43681 -https://www.oceanexpert.org/event/3254 -https://www.oceanexpert.org/expert/17183 -https://www.oceanexpert.org/expert/42962 -https://www.oceanexpert.org/expert/27196 -https://www.oceanexpert.org/expert/27315 -https://www.oceanexpert.org/expert/29884 -https://www.oceanexpert.org/event/2874 -https://www.oceanexpert.org/institution/4951 -https://www.oceanexpert.org/institution/10171 -https://www.oceanexpert.org/institution/17515 -https://www.oceanexpert.org/expert/26192 -https://www.oceanexpert.org/expert/22851 -https://www.oceanexpert.org/expert/7902 -https://www.oceanexpert.org/expert/22987 -https://www.oceanexpert.org/institution/14574 -https://www.oceanexpert.org/expert/36672 -https://www.oceanexpert.org/expert/46495 -https://www.oceanexpert.org/expert/13215 -https://www.oceanexpert.org/institution/19166 -https://www.oceanexpert.org/expert/46990 -https://www.oceanexpert.org/event/1411 -https://www.oceanexpert.org/expert/35861 -https://www.oceanexpert.org/expert/32504 -https://www.oceanexpert.org/expert/25966 -https://www.oceanexpert.org/expert/24950 -https://www.oceanexpert.org/expert/12489 -https://www.oceanexpert.org/expert/38457 -https://www.oceanexpert.org/expert/23412 -https://www.oceanexpert.org/expert/37635 -https://www.oceanexpert.org/expert/7169 -https://www.oceanexpert.org/expert/35265 -https://www.oceanexpert.org/expert/20348 -https://www.oceanexpert.org/institution/19477 -https://www.oceanexpert.org/expert/44246 -https://www.oceanexpert.org/expert/22219 -https://www.oceanexpert.org/institution/19505 -https://www.oceanexpert.org/expert/19812 -https://www.oceanexpert.org/institution/21113 -https://www.oceanexpert.org/expert/16428 -https://www.oceanexpert.org/institution/12989 -https://www.oceanexpert.org/expert/21803 -https://www.oceanexpert.org/institution/12365 -https://www.oceanexpert.org/expert/48634 -https://www.oceanexpert.org/expert/44601 -https://www.oceanexpert.org/expert/26523 -https://www.oceanexpert.org/institution/12749 -https://www.oceanexpert.org/event/3127 -https://www.oceanexpert.org/institution/10749 -https://www.oceanexpert.org/event/855 -https://www.oceanexpert.org/expert/44275 -https://www.oceanexpert.org/institution/5927 -https://www.oceanexpert.org/institution/19664 -https://www.oceanexpert.org/institution/21022 -https://www.oceanexpert.org/event/2085 -https://www.oceanexpert.org/expert/1070 -https://www.oceanexpert.org/expert/47144 -https://www.oceanexpert.org/institution/17228 -https://www.oceanexpert.org/expert/44561 -https://www.oceanexpert.org/expert/22475 -https://www.oceanexpert.org/institution/18669 -https://www.oceanexpert.org/institution/21396 -https://www.oceanexpert.org/expert/21874 -https://www.oceanexpert.org/expert/27413 -https://www.oceanexpert.org/expert/31674 -https://www.oceanexpert.org/event/665 -https://www.oceanexpert.org/event/566 -https://www.oceanexpert.org/expert/20119 -https://www.oceanexpert.org/expert/19912 -https://www.oceanexpert.org/expert/19959 -https://www.oceanexpert.org/expert/19982 -https://www.oceanexpert.org/expert/14244 -https://www.oceanexpert.org/expert/35143 -https://www.oceanexpert.org/institution/20931 -https://www.oceanexpert.org/expert/27207 -https://www.oceanexpert.org/expert/19870 -https://www.oceanexpert.org/expert/16922 -https://www.oceanexpert.org/institution/5193 -https://www.oceanexpert.org/expert/26100 -https://www.oceanexpert.org/expert/26722 -https://www.oceanexpert.org/expert/37424 -https://www.oceanexpert.org/expert/21260 -https://www.oceanexpert.org/expert/34347 -https://www.oceanexpert.org/event/2110 -https://www.oceanexpert.org/expert/39633 -https://www.oceanexpert.org/expert/46057 -https://www.oceanexpert.org/expert/26998 -https://www.oceanexpert.org/expert/26088 -https://www.oceanexpert.org/institution/18746 -https://www.oceanexpert.org/event/3105 -https://www.oceanexpert.org/expert/11585 -https://www.oceanexpert.org/expert/24807 -https://www.oceanexpert.org/expert/27056 -https://www.oceanexpert.org/expert/36979 -https://www.oceanexpert.org/institution/6997 -https://www.oceanexpert.org/expert/13696 -https://www.oceanexpert.org/institution/21304 -https://www.oceanexpert.org/institution/11674 -https://www.oceanexpert.org/expert/17094 -https://www.oceanexpert.org/institution/12269 -https://www.oceanexpert.org/expert/35883 -https://www.oceanexpert.org/event/1051 -https://www.oceanexpert.org/event/1212 -https://www.oceanexpert.org/institution/18165 -https://www.oceanexpert.org/institution/16022 -https://www.oceanexpert.org/event/302 -https://www.oceanexpert.org/expert/27021 -https://www.oceanexpert.org/expert/22783 -https://www.oceanexpert.org/institution/21783 -https://www.oceanexpert.org/event/563 -https://www.oceanexpert.org/institution/20847 -https://www.oceanexpert.org/expert/44740 -https://www.oceanexpert.org/expert/18777 -https://www.oceanexpert.org/event/1311 -https://www.oceanexpert.org/institution/7503 -https://www.oceanexpert.org/event/2716 -https://www.oceanexpert.org/expert/16565 -https://www.oceanexpert.org/expert/20820 -https://www.oceanexpert.org/expert/41686 -https://www.oceanexpert.org/expert/22095 -https://www.oceanexpert.org/expert/47612 -https://www.oceanexpert.org/expert/26713 -https://www.oceanexpert.org/expert/22856 -https://www.oceanexpert.org/expert/32669 -https://www.oceanexpert.org/expert/20741 -https://www.oceanexpert.org/institution/19585 -https://www.oceanexpert.org/institution/21635 -https://www.oceanexpert.org/institution/17621 -https://www.oceanexpert.org/expert/42975 -https://www.oceanexpert.org/expert/25720 -https://www.oceanexpert.org/expert/6923 -https://www.oceanexpert.org/expert/44489 -https://www.oceanexpert.org/expert/21470 -https://www.oceanexpert.org/institution/16295 -https://www.oceanexpert.org/expert/1098 -https://www.oceanexpert.org/expert/39443 -https://www.oceanexpert.org/institution/19585 -https://www.oceanexpert.org/institution/7249 -https://www.oceanexpert.org/expert/7608 -https://www.oceanexpert.org/event/2285 -https://www.oceanexpert.org/expert/25400 -https://www.oceanexpert.org/institution/19368 -https://www.oceanexpert.org/expert/13423 -https://www.oceanexpert.org/event/2884 -https://www.oceanexpert.org/expert/29311 -https://www.oceanexpert.org/expert/34622 -https://www.oceanexpert.org/event/1679 -https://www.oceanexpert.org/expert/17171 -https://www.oceanexpert.org/expert/43227 -https://www.oceanexpert.org/institution/10698 -https://www.oceanexpert.org/institution/18052 -https://www.oceanexpert.org/institution/11645 -https://www.oceanexpert.org/expert/19020 -https://www.oceanexpert.org/expert/26117 -https://www.oceanexpert.org/expert/5317 -https://www.oceanexpert.org/expert/20225 -https://www.oceanexpert.org/expert/47684 -https://www.oceanexpert.org/institution/10049 -https://www.oceanexpert.org/expert/46548 -https://www.oceanexpert.org/institution/8463 -https://www.oceanexpert.org/expert/28340 -https://www.oceanexpert.org/event/446 -https://www.oceanexpert.org/institution/16105 -https://www.oceanexpert.org/event/754 -https://www.oceanexpert.org/event/3171 -https://www.oceanexpert.org/expert/17430 -https://www.oceanexpert.org/institution/16374 -https://www.oceanexpert.org/event/155 -https://www.oceanexpert.org/institution/19046 -https://www.oceanexpert.org/event/1463 -https://www.oceanexpert.org/institution/8650 -https://www.oceanexpert.org/expert/43201 -https://www.oceanexpert.org/expert/37966 -https://www.oceanexpert.org/expert/36843 -https://www.oceanexpert.org/expert/23423 -https://www.oceanexpert.org/expert/195 -https://www.oceanexpert.org/expert/23509 -https://www.oceanexpert.org/expert/27214 -https://www.oceanexpert.org/expert/26999 -https://www.oceanexpert.org/expert/46084 -https://www.oceanexpert.org/institution/20747 -https://www.oceanexpert.org/institution/6720 -https://www.oceanexpert.org/expert/35390 -https://www.oceanexpert.org/institution/20814 -https://www.oceanexpert.org/expert/21121 -https://www.oceanexpert.org/institution/11610 -https://www.oceanexpert.org/event/76 -https://www.oceanexpert.org/expert/27892 -https://www.oceanexpert.org/event/3104 -https://www.oceanexpert.org/expert/23984 -https://www.oceanexpert.org/institution/16347 -https://www.oceanexpert.org/expert/29698 -https://www.oceanexpert.org/institution/18007 -https://www.oceanexpert.org/expert/44033 -https://www.oceanexpert.org/expert/8700 -https://www.oceanexpert.org/expert/39217 -https://www.oceanexpert.org/expert/47611 -https://www.oceanexpert.org/expert/18851 -https://www.oceanexpert.org/expert/16668 -https://www.oceanexpert.org/expert/31337 -https://www.oceanexpert.org/expert/32273 -https://www.oceanexpert.org/event/1580 -https://www.oceanexpert.org/institution/14391 -https://www.oceanexpert.org/expert/44671 -https://www.oceanexpert.org/expert/36859 -https://www.oceanexpert.org/expert/14947 -https://www.oceanexpert.org/institution/19087 -https://www.oceanexpert.org/institution/14038 -https://www.oceanexpert.org/expert/310 -https://www.oceanexpert.org/institution/20919 -https://www.oceanexpert.org/expert/39258 -https://www.oceanexpert.org/institution/12438 -https://www.oceanexpert.org/institution/16068 -https://www.oceanexpert.org/expert/20135 -https://www.oceanexpert.org/expert/46451 -https://www.oceanexpert.org/institution/20399 -https://www.oceanexpert.org/institution/16736 -https://www.oceanexpert.org/institution/19181 -https://www.oceanexpert.org/institution/19736 -https://www.oceanexpert.org/event/1639 -https://www.oceanexpert.org/expert/47547 -https://www.oceanexpert.org/expert/44685 -https://www.oceanexpert.org/expert/30726 -https://www.oceanexpert.org/institution/15232 -https://www.oceanexpert.org/event/146 -https://www.oceanexpert.org/expert/23786 -https://www.oceanexpert.org/expert/17105 -https://www.oceanexpert.org/expert/47712 -https://www.oceanexpert.org/expert/36655 -https://www.oceanexpert.org/expert/2061 -https://www.oceanexpert.org/institution/19684 -https://www.oceanexpert.org/expert/15190 -https://www.oceanexpert.org/expert/20521 -https://www.oceanexpert.org/expert/45102 -https://www.oceanexpert.org/expert/22729 -https://www.oceanexpert.org/expert/20989 -https://www.oceanexpert.org/institution/20662 -https://www.oceanexpert.org/expert/46313 -https://www.oceanexpert.org/expert/45539 -https://www.oceanexpert.org/expert/25136 -https://www.oceanexpert.org/expert/12048 -https://www.oceanexpert.org/expert/29651 -https://www.oceanexpert.org/institution/15210 -https://www.oceanexpert.org/institution/14211 -https://www.oceanexpert.org/expert/32565 -https://www.oceanexpert.org/expert/46308 -https://www.oceanexpert.org/institution/10514 -https://www.oceanexpert.org/expert/19109 -https://www.oceanexpert.org/institution/11376 -https://www.oceanexpert.org/expert/34139 -https://www.oceanexpert.org/expert/19985 -https://www.oceanexpert.org/expert/34610 -https://www.oceanexpert.org/expert/11204 -https://www.oceanexpert.org/expert/32475 -https://www.oceanexpert.org/expert/28044 -https://www.oceanexpert.org/expert/32242 -https://www.oceanexpert.org/expert/34957 -https://www.oceanexpert.org/institution/18377 -https://www.oceanexpert.org/event/455 -https://www.oceanexpert.org/institution/20470 -https://www.oceanexpert.org/expert/46881 -https://www.oceanexpert.org/expert/45616 -https://www.oceanexpert.org/expert/39959 -https://www.oceanexpert.org/expert/17006 -https://www.oceanexpert.org/expert/46894 -https://www.oceanexpert.org/expert/18306 -https://www.oceanexpert.org/expert/39198 -https://www.oceanexpert.org/expert/20315 -https://www.oceanexpert.org/expert/43815 -https://www.oceanexpert.org/expert/5370 -https://www.oceanexpert.org/expert/22135 -https://www.oceanexpert.org/expert/32491 -https://www.oceanexpert.org/expert/25362 -https://www.oceanexpert.org/institution/14693 -https://www.oceanexpert.org/institution/19572 -https://www.oceanexpert.org/expert/37351 -https://www.oceanexpert.org/expert/13261 -https://www.oceanexpert.org/event/3080 -https://www.oceanexpert.org/expert/8441 -https://www.oceanexpert.org/expert/6213 -https://www.oceanexpert.org/expert/13579 -https://www.oceanexpert.org/expert/24994 -https://www.oceanexpert.org/expert/17195 -https://www.oceanexpert.org/expert/36974 -https://www.oceanexpert.org/expert/14292 -https://www.oceanexpert.org/expert/16717 -https://www.oceanexpert.org/expert/504 -https://www.oceanexpert.org/institution/10176 -https://www.oceanexpert.org/expert/11986 -https://www.oceanexpert.org/expert/30221 -https://www.oceanexpert.org/institution/20901 -https://www.oceanexpert.org/expert/3211 -https://www.oceanexpert.org/expert/44615 -https://www.oceanexpert.org/expert/37454 -https://www.oceanexpert.org/expert/35479 -https://www.oceanexpert.org/institution/10329 -https://www.oceanexpert.org/expert/21998 -https://www.oceanexpert.org/event/1468 -https://www.oceanexpert.org/expert/25926 -https://www.oceanexpert.org/expert/45286 -https://www.oceanexpert.org/expert/43380 -https://www.oceanexpert.org/expert/37107 -https://www.oceanexpert.org/institution/5532 -https://www.oceanexpert.org/expert/38096 -https://www.oceanexpert.org/expert/15571 -https://www.oceanexpert.org/expert/44762 -https://www.oceanexpert.org/institution/12511 -https://www.oceanexpert.org/expert/29419 -https://www.oceanexpert.org/expert/8343 -https://www.oceanexpert.org/expert/17518 -https://www.oceanexpert.org/institution/19922 -https://www.oceanexpert.org/institution/18470 -https://www.oceanexpert.org/expert/18442 -https://www.oceanexpert.org/event/1250 -https://www.oceanexpert.org/expert/24544 -https://www.oceanexpert.org/expert/44789 -https://www.oceanexpert.org/institution/6023 -https://www.oceanexpert.org/expert/26381 -https://www.oceanexpert.org/institution/21076 -https://www.oceanexpert.org/institution/12606 -https://www.oceanexpert.org/expert/24076 -https://www.oceanexpert.org/institution/4980 -https://www.oceanexpert.org/expert/2196 -https://www.oceanexpert.org/event/838 -https://www.oceanexpert.org/expert/48644 -https://www.oceanexpert.org/expert/25014 -https://www.oceanexpert.org/expert/48250 -https://www.oceanexpert.org/expert/24978 -https://www.oceanexpert.org/expert/47545 -https://www.oceanexpert.org/expert/27489 -https://www.oceanexpert.org/expert/23370 -https://www.oceanexpert.org/event/1859 -https://www.oceanexpert.org/event/1966 -https://www.oceanexpert.org/event/1420 -https://www.oceanexpert.org/expert/26609 -https://www.oceanexpert.org/expert/5833 -https://www.oceanexpert.org/institution/11166 -https://www.oceanexpert.org/expert/24117 -https://www.oceanexpert.org/expert/1070 -https://www.oceanexpert.org/expert/25601 -https://www.oceanexpert.org/expert/46813 -https://www.oceanexpert.org/expert/25715 -https://www.oceanexpert.org/expert/21081 -https://www.oceanexpert.org/expert/37680 -https://www.oceanexpert.org/expert/16643 -https://www.oceanexpert.org/institution/9036 -https://www.oceanexpert.org/expert/45789 -https://www.oceanexpert.org/institution/13613 -https://www.oceanexpert.org/institution/21575 -https://www.oceanexpert.org/expert/47190 -https://www.oceanexpert.org/expert/45095 -https://www.oceanexpert.org/institution/18449 -https://www.oceanexpert.org/expert/38231 -https://www.oceanexpert.org/expert/30940 -https://www.oceanexpert.org/expert/36283 -https://www.oceanexpert.org/expert/19223 -https://www.oceanexpert.org/expert/48332 -https://www.oceanexpert.org/expert/11471 -https://www.oceanexpert.org/expert/33453 -https://www.oceanexpert.org/expert/11527 -https://www.oceanexpert.org/expert/22742 -https://www.oceanexpert.org/institution/21620 -https://www.oceanexpert.org/expert/47215 -https://www.oceanexpert.org/expert/37957 -https://www.oceanexpert.org/event/2688 -https://www.oceanexpert.org/institution/18154 -https://www.oceanexpert.org/expert/1756 -https://www.oceanexpert.org/expert/40069 -https://www.oceanexpert.org/institution/15594 -https://www.oceanexpert.org/expert/37173 -https://www.oceanexpert.org/expert/22681 -https://www.oceanexpert.org/expert/31647 -https://www.oceanexpert.org/expert/42452 -https://www.oceanexpert.org/expert/26309 -https://www.oceanexpert.org/expert/13391 -https://www.oceanexpert.org/expert/46786 -https://www.oceanexpert.org/expert/14829 -https://www.oceanexpert.org/institution/17429 -https://www.oceanexpert.org/expert/40037 -https://www.oceanexpert.org/institution/15017 -https://www.oceanexpert.org/expert/38629 -https://www.oceanexpert.org/expert/35964 -https://www.oceanexpert.org/institution/16865 -https://www.oceanexpert.org/institution/17640 -https://www.oceanexpert.org/expert/34274 -https://www.oceanexpert.org/expert/40284 -https://www.oceanexpert.org/expert/30947 -https://www.oceanexpert.org/event/1791 -https://www.oceanexpert.org/institution/18135 -https://www.oceanexpert.org/expert/37052 -https://www.oceanexpert.org/institution/11423 -https://www.oceanexpert.org/expert/8145 -https://www.oceanexpert.org/expert/20386 -https://www.oceanexpert.org/expert/4086 -https://www.oceanexpert.org/expert/30293 -https://www.oceanexpert.org/expert/26106 -https://www.oceanexpert.org/expert/33364 -https://www.oceanexpert.org/institution/17769 -https://www.oceanexpert.org/institution/11362 -https://www.oceanexpert.org/event/273 -https://www.oceanexpert.org/expert/3677 -https://www.oceanexpert.org/expert/6934 -https://www.oceanexpert.org/expert/36293 -https://www.oceanexpert.org/expert/4763 -https://www.oceanexpert.org/institution/22000 -https://www.oceanexpert.org/institution/17342 -https://www.oceanexpert.org/expert/19629 -https://www.oceanexpert.org/expert/47028 -https://www.oceanexpert.org/expert/19848 -https://www.oceanexpert.org/expert/37455 -https://www.oceanexpert.org/expert/35771 -https://www.oceanexpert.org/expert/7589 -https://www.oceanexpert.org/expert/16628 -https://www.oceanexpert.org/expert/44297 -https://www.oceanexpert.org/expert/36083 -https://www.oceanexpert.org/expert/46794 -https://www.oceanexpert.org/expert/24428 -https://www.oceanexpert.org/institution/16162 -https://www.oceanexpert.org/institution/19196 -https://www.oceanexpert.org/expert/15419 -https://www.oceanexpert.org/expert/44676 -https://www.oceanexpert.org/expert/26238 -https://www.oceanexpert.org/institution/11080 -https://www.oceanexpert.org/expert/48320 -https://www.oceanexpert.org/institution/19245 -https://www.oceanexpert.org/expert/33277 -https://www.oceanexpert.org/expert/34521 -https://www.oceanexpert.org/event/1258 -https://www.oceanexpert.org/expert/7453 -https://www.oceanexpert.org/institution/20507 -https://www.oceanexpert.org/expert/25955 -https://www.oceanexpert.org/institution/18361 -https://www.oceanexpert.org/institution/19647 -https://www.oceanexpert.org/expert/25575 -https://www.oceanexpert.org/expert/19337 -https://www.oceanexpert.org/expert/29138 -https://www.oceanexpert.org/expert/25900 -https://www.oceanexpert.org/expert/36842 -https://www.oceanexpert.org/expert/26361 -https://www.oceanexpert.org/expert/14166 -https://www.oceanexpert.org/expert/48352 -https://www.oceanexpert.org/expert/32050 -https://www.oceanexpert.org/expert/43305 -https://www.oceanexpert.org/institution/7362 -https://www.oceanexpert.org/expert/31399 -https://www.oceanexpert.org/institution/20927 -https://www.oceanexpert.org/expert/46906 -https://www.oceanexpert.org/institution/18889 -https://www.oceanexpert.org/expert/37862 -https://www.oceanexpert.org/institution/20853 -https://www.oceanexpert.org/event/1440 -https://www.oceanexpert.org/expert/35111 -https://www.oceanexpert.org/expert/17469 -https://www.oceanexpert.org/institution/7171 -https://www.oceanexpert.org/expert/31190 -https://www.oceanexpert.org/expert/34024 -https://www.oceanexpert.org/expert/34267 -https://www.oceanexpert.org/expert/36835 -https://www.oceanexpert.org/expert/24560 -https://www.oceanexpert.org/event/1648 -https://www.oceanexpert.org/institution/14611 -https://www.oceanexpert.org/institution/13109 -https://www.oceanexpert.org/expert/20091 -https://www.oceanexpert.org/institution/13855 -https://www.oceanexpert.org/institution/19209 -https://www.oceanexpert.org/expert/29455 -https://www.oceanexpert.org/institution/19451 -https://www.oceanexpert.org/event/773 -https://www.oceanexpert.org/event/2055 -https://www.oceanexpert.org/expert/43517 -https://www.oceanexpert.org/event/1846 -https://www.oceanexpert.org/expert/11115 -https://www.oceanexpert.org/institution/18081 -https://www.oceanexpert.org/institution/7772 -https://www.oceanexpert.org/institution/13852 -https://www.oceanexpert.org/expert/26069 -https://www.oceanexpert.org/expert/16614 -https://www.oceanexpert.org/institution/17542 -https://www.oceanexpert.org/expert/18549 -https://www.oceanexpert.org/institution/7701 -https://www.oceanexpert.org/institution/21823 -https://www.oceanexpert.org/institution/19530 -https://www.oceanexpert.org/institution/12678 -https://www.oceanexpert.org/expert/16559 -https://www.oceanexpert.org/expert/29485 -https://www.oceanexpert.org/expert/38557 -https://www.oceanexpert.org/event/1525 -https://www.oceanexpert.org/institution/21495 -https://www.oceanexpert.org/expert/23917 -https://www.oceanexpert.org/expert/17202 -https://www.oceanexpert.org/expert/32863 -https://www.oceanexpert.org/event/280 -https://www.oceanexpert.org/institution/9994 -https://www.oceanexpert.org/expert/18202 -https://www.oceanexpert.org/expert/33645 -https://www.oceanexpert.org/expert/44246 -https://www.oceanexpert.org/expert/26963 -https://www.oceanexpert.org/expert/45566 -https://www.oceanexpert.org/expert/14389 -https://www.oceanexpert.org/expert/22968 -https://www.oceanexpert.org/expert/27874 -https://www.oceanexpert.org/expert/33630 -https://www.oceanexpert.org/institution/7269 -https://www.oceanexpert.org/institution/21887 -https://www.oceanexpert.org/institution/20955 -https://www.oceanexpert.org/expert/45793 -https://www.oceanexpert.org/event/381 -https://www.oceanexpert.org/expert/44008 -https://www.oceanexpert.org/institution/20790 -https://www.oceanexpert.org/expert/7821 -https://www.oceanexpert.org/expert/14150 -https://www.oceanexpert.org/institution/13855 -https://www.oceanexpert.org/institution/20731 -https://www.oceanexpert.org/expert/45066 -https://www.oceanexpert.org/expert/46858 -https://www.oceanexpert.org/institution/6874 -https://www.oceanexpert.org/expert/48877 -https://www.oceanexpert.org/expert/8671 -https://www.oceanexpert.org/expert/15806 -https://www.oceanexpert.org/expert/47378 -https://www.oceanexpert.org/expert/12167 -https://www.oceanexpert.org/expert/8813 -https://www.oceanexpert.org/institution/17214 -https://www.oceanexpert.org/expert/3189 -https://www.oceanexpert.org/expert/34967 -https://www.oceanexpert.org/institution/18326 -https://www.oceanexpert.org/expert/38064 -https://www.oceanexpert.org/expert/18487 -https://www.oceanexpert.org/expert/14879 -https://www.oceanexpert.org/expert/37458 -https://www.oceanexpert.org/institution/20245 -https://www.oceanexpert.org/expert/31746 -https://www.oceanexpert.org/institution/5850 -https://www.oceanexpert.org/expert/39827 -https://www.oceanexpert.org/institution/5531 -https://www.oceanexpert.org/event/237 -https://www.oceanexpert.org/expert/26516 -https://www.oceanexpert.org/institution/18731 -https://www.oceanexpert.org/institution/11871 -https://www.oceanexpert.org/institution/21614 -https://www.oceanexpert.org/expert/20540 -https://www.oceanexpert.org/institution/6463 -https://www.oceanexpert.org/institution/13531 -https://www.oceanexpert.org/expert/44175 -https://www.oceanexpert.org/expert/43319 -https://www.oceanexpert.org/institution/17300 -https://www.oceanexpert.org/expert/17182 -https://www.oceanexpert.org/expert/30487 -https://www.oceanexpert.org/expert/46427 -https://www.oceanexpert.org/expert/18858 -https://www.oceanexpert.org/institution/13917 -https://www.oceanexpert.org/expert/46526 -https://www.oceanexpert.org/expert/43732 -https://www.oceanexpert.org/expert/42422 -https://www.oceanexpert.org/expert/27690 -https://www.oceanexpert.org/event/2726 -https://www.oceanexpert.org/expert/2474 -https://www.oceanexpert.org/expert/16862 -https://www.oceanexpert.org/expert/19292 -https://www.oceanexpert.org/expert/24402 -https://www.oceanexpert.org/institution/20795 -https://www.oceanexpert.org/event/1571 -https://www.oceanexpert.org/expert/19890 -https://www.oceanexpert.org/expert/24782 -https://www.oceanexpert.org/expert/31753 -https://www.oceanexpert.org/expert/24198 -https://www.oceanexpert.org/expert/17502 -https://www.oceanexpert.org/expert/43370 -https://www.oceanexpert.org/expert/22110 -https://www.oceanexpert.org/expert/45939 -https://www.oceanexpert.org/institution/21650 -https://www.oceanexpert.org/expert/43426 -https://www.oceanexpert.org/expert/23003 -https://www.oceanexpert.org/institution/18668 -https://www.oceanexpert.org/institution/14177 -https://www.oceanexpert.org/institution/14502 -https://www.oceanexpert.org/expert/19778 -https://www.oceanexpert.org/expert/35770 -https://www.oceanexpert.org/expert/23282 -https://www.oceanexpert.org/expert/40897 -https://www.oceanexpert.org/expert/45552 -https://www.oceanexpert.org/expert/31581 -https://www.oceanexpert.org/expert/22027 -https://www.oceanexpert.org/expert/28397 -https://www.oceanexpert.org/expert/25988 -https://www.oceanexpert.org/event/2873 -https://www.oceanexpert.org/expert/25002 -https://www.oceanexpert.org/institution/16032 -https://www.oceanexpert.org/institution/13982 -https://www.oceanexpert.org/expert/17976 -https://www.oceanexpert.org/institution/12550 -https://www.oceanexpert.org/institution/5455 -https://www.oceanexpert.org/expert/46624 -https://www.oceanexpert.org/institution/21009 -https://www.oceanexpert.org/expert/20989 -https://www.oceanexpert.org/event/2856 -https://www.oceanexpert.org/expert/7024 -https://www.oceanexpert.org/expert/37409 -https://www.oceanexpert.org/expert/35910 -https://www.oceanexpert.org/expert/28335 -https://www.oceanexpert.org/event/3017 -https://www.oceanexpert.org/expert/30535 -https://www.oceanexpert.org/expert/48781 -https://www.oceanexpert.org/institution/13487 -https://www.oceanexpert.org/expert/35014 -https://www.oceanexpert.org/expert/17248 -https://www.oceanexpert.org/expert/19629 -https://www.oceanexpert.org/institution/18301 -https://www.oceanexpert.org/expert/44293 -https://www.oceanexpert.org/expert/43339 -https://www.oceanexpert.org/institution/19458 -https://www.oceanexpert.org/expert/37407 -https://www.oceanexpert.org/institution/10214 -https://www.oceanexpert.org/expert/35649 -https://www.oceanexpert.org/event/652 -https://www.oceanexpert.org/expert/11618 -https://www.oceanexpert.org/event/1069 -https://www.oceanexpert.org/expert/31350 -https://www.oceanexpert.org/institution/20722 -https://www.oceanexpert.org/expert/46975 -https://www.oceanexpert.org/institution/19667 -https://www.oceanexpert.org/institution/10724 -https://www.oceanexpert.org/institution/21315 -https://www.oceanexpert.org/expert/20927 -https://www.oceanexpert.org/expert/12448 -https://www.oceanexpert.org/institution/20634 -https://www.oceanexpert.org/institution/17962 -https://www.oceanexpert.org/institution/21860 -https://www.oceanexpert.org/institution/8641 -https://www.oceanexpert.org/institution/20901 -https://www.oceanexpert.org/expert/4788 -https://www.oceanexpert.org/expert/35335 -https://www.oceanexpert.org/institution/19693 -https://www.oceanexpert.org/expert/14731 -https://www.oceanexpert.org/expert/48814 -https://www.oceanexpert.org/institution/11484 -https://www.oceanexpert.org/expert/27022 -https://www.oceanexpert.org/expert/14421 -https://www.oceanexpert.org/expert/35094 -https://www.oceanexpert.org/expert/26151 -https://www.oceanexpert.org/event/2511 -https://www.oceanexpert.org/expert/11695 -https://www.oceanexpert.org/expert/30802 -https://www.oceanexpert.org/institution/6974 -https://www.oceanexpert.org/expert/27067 -https://www.oceanexpert.org/expert/30050 -https://www.oceanexpert.org/expert/35862 -https://www.oceanexpert.org/event/38 -https://www.oceanexpert.org/event/2099 -https://www.oceanexpert.org/expert/24517 -https://www.oceanexpert.org/expert/38881 -https://www.oceanexpert.org/institution/20717 -https://www.oceanexpert.org/institution/11020 -https://www.oceanexpert.org/expert/46641 -https://www.oceanexpert.org/institution/10328 -https://www.oceanexpert.org/expert/34363 -https://www.oceanexpert.org/institution/14159 -https://www.oceanexpert.org/expert/36794 -https://www.oceanexpert.org/expert/47534 -https://www.oceanexpert.org/expert/24413 -https://www.oceanexpert.org/expert/19530 -https://www.oceanexpert.org/expert/20146 -https://www.oceanexpert.org/event/1414 -https://www.oceanexpert.org/expert/46750 -https://www.oceanexpert.org/expert/18546 -https://www.oceanexpert.org/expert/39730 -https://www.oceanexpert.org/expert/44927 -https://www.oceanexpert.org/event/1186 -https://www.oceanexpert.org/expert/15884 -https://www.oceanexpert.org/expert/27967 -https://www.oceanexpert.org/expert/43753 -https://www.oceanexpert.org/expert/37141 -https://www.oceanexpert.org/expert/38233 -https://www.oceanexpert.org/expert/29755 -https://www.oceanexpert.org/institution/12497 -https://www.oceanexpert.org/expert/17630 -https://www.oceanexpert.org/expert/20385 -https://www.oceanexpert.org/institution/19284 -https://www.oceanexpert.org/event/1167 -https://www.oceanexpert.org/expert/36863 -https://www.oceanexpert.org/expert/46262 -https://www.oceanexpert.org/institution/21472 -https://www.oceanexpert.org/expert/24012 -https://www.oceanexpert.org/institution/12938 -https://www.oceanexpert.org/expert/45824 -https://www.oceanexpert.org/institution/14150 -https://www.oceanexpert.org/expert/42874 -https://www.oceanexpert.org/institution/14198 -https://www.oceanexpert.org/expert/35814 -https://www.oceanexpert.org/institution/12757 -https://www.oceanexpert.org/institution/16514 -https://www.oceanexpert.org/institution/11860 -https://www.oceanexpert.org/expert/28222 -https://www.oceanexpert.org/expert/39937 -https://www.oceanexpert.org/expert/40305 -https://www.oceanexpert.org/expert/23024 -https://www.oceanexpert.org/expert/47213 -https://www.oceanexpert.org/expert/46809 -https://www.oceanexpert.org/expert/31090 -https://www.oceanexpert.org/expert/267 -https://www.oceanexpert.org/event/1267 -https://www.oceanexpert.org/institution/21276 -https://www.oceanexpert.org/institution/14106 -https://www.oceanexpert.org/expert/48541 -https://www.oceanexpert.org/event/2923 -https://www.oceanexpert.org/institution/20573 -https://www.oceanexpert.org/institution/11345 -https://www.oceanexpert.org/institution/10076 -https://www.oceanexpert.org/expert/32125 -https://www.oceanexpert.org/expert/31983 -https://www.oceanexpert.org/expert/26069 -https://www.oceanexpert.org/expert/36040 -https://www.oceanexpert.org/expert/23563 -https://www.oceanexpert.org/expert/16706 -https://www.oceanexpert.org/expert/33925 -https://www.oceanexpert.org/expert/31683 -https://www.oceanexpert.org/expert/14784 -https://www.oceanexpert.org/expert/14534 -https://www.oceanexpert.org/event/671 -https://www.oceanexpert.org/expert/43018 -https://www.oceanexpert.org/expert/126 -https://www.oceanexpert.org/expert/27257 -https://www.oceanexpert.org/institution/12467 -https://www.oceanexpert.org/expert/46911 -https://www.oceanexpert.org/event/1781 -https://www.oceanexpert.org/institution/16842 -https://www.oceanexpert.org/expert/26322 -https://www.oceanexpert.org/expert/45881 -https://www.oceanexpert.org/expert/28127 -https://www.oceanexpert.org/expert/16428 -https://www.oceanexpert.org/institution/18982 -https://www.oceanexpert.org/expert/42882 -https://www.oceanexpert.org/institution/18471 -https://www.oceanexpert.org/event/3238 -https://www.oceanexpert.org/institution/18879 -https://www.oceanexpert.org/expert/36905 -https://www.oceanexpert.org/expert/19856 -https://www.oceanexpert.org/institution/22110 -https://www.oceanexpert.org/institution/16434 -https://www.oceanexpert.org/expert/22188 -https://www.oceanexpert.org/institution/6375 -https://www.oceanexpert.org/institution/8124 -https://www.oceanexpert.org/event/2991 -https://www.oceanexpert.org/expert/1456 -https://www.oceanexpert.org/expert/19561 -https://www.oceanexpert.org/expert/33324 -https://www.oceanexpert.org/institution/18452 -https://www.oceanexpert.org/expert/39507 -https://www.oceanexpert.org/expert/26208 -https://www.oceanexpert.org/event/221 -https://www.oceanexpert.org/event/459 -https://www.oceanexpert.org/institution/15760 -https://www.oceanexpert.org/expert/17143 -https://www.oceanexpert.org/event/1956 -https://www.oceanexpert.org/expert/35869 -https://www.oceanexpert.org/institution/10457 -https://www.oceanexpert.org/expert/17847 -https://www.oceanexpert.org/expert/20257 -https://www.oceanexpert.org/expert/43528 -https://www.oceanexpert.org/expert/25895 -https://www.oceanexpert.org/expert/23638 -https://www.oceanexpert.org/expert/47271 -https://www.oceanexpert.org/event/1854 -https://www.oceanexpert.org/expert/2862 -https://www.oceanexpert.org/expert/16340 -https://www.oceanexpert.org/expert/13682 -https://www.oceanexpert.org/expert/18794 -https://www.oceanexpert.org/event/2133 -https://www.oceanexpert.org/expert/38569 -https://www.oceanexpert.org/expert/30886 -https://www.oceanexpert.org/expert/33390 -https://www.oceanexpert.org/institution/9380 -https://www.oceanexpert.org/institution/18041 -https://www.oceanexpert.org/expert/32447 -https://www.oceanexpert.org/expert/22929 -https://www.oceanexpert.org/institution/16292 -https://www.oceanexpert.org/expert/16086 -https://www.oceanexpert.org/expert/34558 -https://www.oceanexpert.org/institution/20551 -https://www.oceanexpert.org/expert/47259 -https://www.oceanexpert.org/expert/48118 -https://www.oceanexpert.org/expert/37050 -https://www.oceanexpert.org/event/2982 -https://www.oceanexpert.org/institution/15975 -https://www.oceanexpert.org/event/690 -https://www.oceanexpert.org/expert/37542 -https://www.oceanexpert.org/expert/20845 -https://www.oceanexpert.org/expert/43918 -https://www.oceanexpert.org/event/2315 -https://www.oceanexpert.org/expert/33877 -https://www.oceanexpert.org/expert/23427 -https://www.oceanexpert.org/expert/47726 -https://www.oceanexpert.org/expert/37946 -https://www.oceanexpert.org/event/1046 -https://www.oceanexpert.org/expert/36489 -https://www.oceanexpert.org/expert/38312 -https://www.oceanexpert.org/expert/36463 -https://www.oceanexpert.org/expert/28433 -https://www.oceanexpert.org/expert/13728 -https://www.oceanexpert.org/expert/16733 -https://www.oceanexpert.org/expert/12430 -https://www.oceanexpert.org/expert/6428 -https://www.oceanexpert.org/expert/15892 -https://www.oceanexpert.org/institution/20805 -https://www.oceanexpert.org/expert/48818 -https://www.oceanexpert.org/expert/11195 -https://www.oceanexpert.org/institution/20480 -https://www.oceanexpert.org/expert/44130 -https://www.oceanexpert.org/expert/36918 -https://www.oceanexpert.org/expert/32793 -https://www.oceanexpert.org/expert/40605 -https://www.oceanexpert.org/expert/23331 -https://www.oceanexpert.org/expert/32824 -https://www.oceanexpert.org/institution/16315 -https://www.oceanexpert.org/expert/29076 -https://www.oceanexpert.org/expert/37392 -https://www.oceanexpert.org/expert/48151 -https://www.oceanexpert.org/expert/42917 -https://www.oceanexpert.org/expert/25296 -https://www.oceanexpert.org/expert/35183 -https://www.oceanexpert.org/institution/16208 -https://www.oceanexpert.org/institution/17095 -https://www.oceanexpert.org/expert/36725 -https://www.oceanexpert.org/expert/28419 -https://www.oceanexpert.org/institution/13412 -https://www.oceanexpert.org/expert/27632 -https://www.oceanexpert.org/event/1674 -https://www.oceanexpert.org/expert/19178 -https://www.oceanexpert.org/institution/14776 -https://www.oceanexpert.org/expert/25864 -https://www.oceanexpert.org/institution/10344 -https://www.oceanexpert.org/expert/33436 -https://www.oceanexpert.org/expert/40598 -https://www.oceanexpert.org/institution/20051 -https://www.oceanexpert.org/expert/23962 -https://www.oceanexpert.org/expert/44609 -https://www.oceanexpert.org/expert/28841 -https://www.oceanexpert.org/expert/38125 -https://www.oceanexpert.org/event/3189 -https://www.oceanexpert.org/expert/39284 -https://www.oceanexpert.org/institution/9121 -https://www.oceanexpert.org/expert/22985 -https://www.oceanexpert.org/expert/20782 -https://www.oceanexpert.org/institution/19005 -https://www.oceanexpert.org/institution/6493 -https://www.oceanexpert.org/expert/43393 -https://www.oceanexpert.org/expert/4471 -https://www.oceanexpert.org/expert/37545 -https://www.oceanexpert.org/expert/531 -https://www.oceanexpert.org/expert/16625 -https://www.oceanexpert.org/expert/31432 -https://www.oceanexpert.org/institution/17347 -https://www.oceanexpert.org/expert/44529 -https://www.oceanexpert.org/expert/26637 -https://www.oceanexpert.org/expert/1964 -https://www.oceanexpert.org/expert/40641 -https://www.oceanexpert.org/expert/47656 -https://www.oceanexpert.org/expert/36111 -https://www.oceanexpert.org/expert/22626 -https://www.oceanexpert.org/expert/28199 -https://www.oceanexpert.org/expert/27958 -https://www.oceanexpert.org/institution/20704 -https://www.oceanexpert.org/expert/42582 -https://www.oceanexpert.org/expert/43877 -https://www.oceanexpert.org/expert/27378 -https://www.oceanexpert.org/expert/25831 -https://www.oceanexpert.org/expert/21098 -https://www.oceanexpert.org/expert/45065 -https://www.oceanexpert.org/expert/48119 -https://www.oceanexpert.org/institution/19919 -https://www.oceanexpert.org/expert/20075 -https://www.oceanexpert.org/institution/16704 -https://www.oceanexpert.org/expert/16150 -https://www.oceanexpert.org/institution/18634 -https://www.oceanexpert.org/expert/7026 -https://www.oceanexpert.org/institution/19022 -https://www.oceanexpert.org/expert/1995 -https://www.oceanexpert.org/institution/21295 -https://www.oceanexpert.org/expert/19455 -https://www.oceanexpert.org/event/533 -https://www.oceanexpert.org/expert/20558 -https://www.oceanexpert.org/institution/19241 -https://www.oceanexpert.org/event/47 -https://www.oceanexpert.org/expert/24340 -https://www.oceanexpert.org/expert/11071 -https://www.oceanexpert.org/expert/17105 -https://www.oceanexpert.org/expert/19487 -https://www.oceanexpert.org/expert/19407 -https://www.oceanexpert.org/expert/43574 -https://www.oceanexpert.org/expert/24053 -https://www.oceanexpert.org/event/181 -https://www.oceanexpert.org/expert/17983 -https://www.oceanexpert.org/expert/42799 -https://www.oceanexpert.org/expert/44620 -https://www.oceanexpert.org/expert/3438 -https://www.oceanexpert.org/expert/46920 -https://www.oceanexpert.org/expert/24153 -https://www.oceanexpert.org/expert/26003 -https://www.oceanexpert.org/expert/23309 -https://www.oceanexpert.org/institution/22019 -https://www.oceanexpert.org/event/2082 -https://www.oceanexpert.org/expert/18380 -https://www.oceanexpert.org/expert/22122 -https://www.oceanexpert.org/expert/8813 -https://www.oceanexpert.org/event/1193 -https://www.oceanexpert.org/expert/18623 -https://www.oceanexpert.org/expert/42850 -https://www.oceanexpert.org/expert/37278 -https://www.oceanexpert.org/institution/6631 -https://www.oceanexpert.org/expert/45030 -https://www.oceanexpert.org/expert/46923 -https://www.oceanexpert.org/expert/36783 -https://www.oceanexpert.org/institution/17743 -https://www.oceanexpert.org/institution/15300 -https://www.oceanexpert.org/institution/19692 -https://www.oceanexpert.org/event/1829 -https://www.oceanexpert.org/expert/26682 -https://www.oceanexpert.org/expert/40595 -https://www.oceanexpert.org/expert/25959 -https://www.oceanexpert.org/institution/20528 -https://www.oceanexpert.org/expert/25528 -https://www.oceanexpert.org/event/2970 -https://www.oceanexpert.org/event/1480 -https://www.oceanexpert.org/expert/34308 -https://www.oceanexpert.org/expert/46329 -https://www.oceanexpert.org/expert/24541 -https://www.oceanexpert.org/expert/20724 -https://www.oceanexpert.org/expert/19746 -https://www.oceanexpert.org/expert/29426 -https://www.oceanexpert.org/expert/33345 -https://www.oceanexpert.org/event/2757 -https://www.oceanexpert.org/expert/15475 -https://www.oceanexpert.org/expert/23044 -https://www.oceanexpert.org/expert/29964 -https://www.oceanexpert.org/expert/38205 -https://www.oceanexpert.org/expert/43128 -https://www.oceanexpert.org/expert/45798 -https://www.oceanexpert.org/expert/27040 -https://www.oceanexpert.org/institution/16367 -https://www.oceanexpert.org/expert/594 -https://www.oceanexpert.org/event/3184 -https://www.oceanexpert.org/expert/12554 -https://www.oceanexpert.org/expert/18497 -https://www.oceanexpert.org/expert/48637 -https://www.oceanexpert.org/expert/40892 -https://www.oceanexpert.org/expert/19103 -https://www.oceanexpert.org/institution/18880 -https://www.oceanexpert.org/institution/18120 -https://www.oceanexpert.org/expert/18175 -https://www.oceanexpert.org/institution/16439 -https://www.oceanexpert.org/expert/707 -https://www.oceanexpert.org/expert/35286 -https://www.oceanexpert.org/expert/39479 -https://www.oceanexpert.org/expert/34699 -https://www.oceanexpert.org/expert/19969 -https://www.oceanexpert.org/expert/866 -https://www.oceanexpert.org/institution/17746 -https://www.oceanexpert.org/expert/45540 -https://www.oceanexpert.org/expert/42574 -https://www.oceanexpert.org/expert/16762 -https://www.oceanexpert.org/institution/11118 -https://www.oceanexpert.org/expert/19707 -https://www.oceanexpert.org/expert/22412 -https://www.oceanexpert.org/expert/18427 -https://www.oceanexpert.org/expert/46334 -https://www.oceanexpert.org/expert/7794 -https://www.oceanexpert.org/expert/33304 -https://www.oceanexpert.org/expert/18037 -https://www.oceanexpert.org/institution/21807 -https://www.oceanexpert.org/institution/19899 -https://www.oceanexpert.org/expert/26412 -https://www.oceanexpert.org/expert/36075 -https://www.oceanexpert.org/expert/39596 -https://www.oceanexpert.org/institution/15778 -https://www.oceanexpert.org/expert/37073 -https://www.oceanexpert.org/institution/15701 -https://www.oceanexpert.org/institution/4893 -https://www.oceanexpert.org/expert/27051 -https://www.oceanexpert.org/expert/35025 -https://www.oceanexpert.org/expert/24868 -https://www.oceanexpert.org/institution/20829 -https://www.oceanexpert.org/expert/21034 -https://www.oceanexpert.org/institution/6753 -https://www.oceanexpert.org/expert/34755 -https://www.oceanexpert.org/expert/20539 -https://www.oceanexpert.org/event/2456 -https://www.oceanexpert.org/institution/13342 -https://www.oceanexpert.org/expert/25221 -https://www.oceanexpert.org/expert/36782 -https://www.oceanexpert.org/expert/12615 -https://www.oceanexpert.org/expert/31064 -https://www.oceanexpert.org/expert/30871 -https://www.oceanexpert.org/expert/17369 -https://www.oceanexpert.org/institution/14666 -https://www.oceanexpert.org/institution/10510 -https://www.oceanexpert.org/institution/19510 -https://www.oceanexpert.org/event/1745 -https://www.oceanexpert.org/expert/47308 -https://www.oceanexpert.org/expert/7376 -https://www.oceanexpert.org/expert/45562 -https://www.oceanexpert.org/expert/20727 -https://www.oceanexpert.org/expert/25202 -https://www.oceanexpert.org/institution/19084 -https://www.oceanexpert.org/expert/34053 -https://www.oceanexpert.org/expert/20134 -https://www.oceanexpert.org/expert/48492 -https://www.oceanexpert.org/expert/751 -https://www.oceanexpert.org/expert/39804 -https://www.oceanexpert.org/expert/1945 -https://www.oceanexpert.org/institution/15631 -https://www.oceanexpert.org/expert/46345 -https://www.oceanexpert.org/institution/5444 -https://www.oceanexpert.org/expert/22602 -https://www.oceanexpert.org/expert/26459 -https://www.oceanexpert.org/institution/18585 -https://www.oceanexpert.org/expert/20885 -https://www.oceanexpert.org/expert/28486 -https://www.oceanexpert.org/expert/44047 -https://www.oceanexpert.org/institution/7790 -https://www.oceanexpert.org/event/56 -https://www.oceanexpert.org/event/2271 -https://www.oceanexpert.org/expert/37840 -https://www.oceanexpert.org/expert/37227 -https://www.oceanexpert.org/expert/44394 -https://www.oceanexpert.org/institution/12970 -https://www.oceanexpert.org/expert/27408 -https://www.oceanexpert.org/expert/13355 -https://www.oceanexpert.org/expert/39407 -https://www.oceanexpert.org/expert/16453 -https://www.oceanexpert.org/expert/35994 -https://www.oceanexpert.org/institution/10042 -https://www.oceanexpert.org/institution/10228 -https://www.oceanexpert.org/expert/48554 -https://www.oceanexpert.org/event/676 -https://www.oceanexpert.org/expert/14652 -https://www.oceanexpert.org/expert/21812 -https://www.oceanexpert.org/institution/18640 -https://www.oceanexpert.org/expert/33634 -https://www.oceanexpert.org/event/1834 -https://www.oceanexpert.org/expert/42658 -https://www.oceanexpert.org/institution/19700 -https://www.oceanexpert.org/expert/43726 -https://www.oceanexpert.org/event/285 -https://www.oceanexpert.org/expert/36402 -https://www.oceanexpert.org/event/1058 -https://www.oceanexpert.org/expert/34869 -https://www.oceanexpert.org/event/1138 -https://www.oceanexpert.org/institution/12809 -https://www.oceanexpert.org/expert/43997 -https://www.oceanexpert.org/institution/12171 -https://www.oceanexpert.org/expert/20821 -https://www.oceanexpert.org/institution/20840 -https://www.oceanexpert.org/expert/43552 -https://www.oceanexpert.org/event/1097 -https://www.oceanexpert.org/event/3258 -https://www.oceanexpert.org/event/861 -https://www.oceanexpert.org/institution/16122 -https://www.oceanexpert.org/event/962 -https://www.oceanexpert.org/expert/38865 -https://www.oceanexpert.org/institution/15809 -https://www.oceanexpert.org/expert/14783 -https://www.oceanexpert.org/expert/47556 -https://www.oceanexpert.org/event/1754 -https://www.oceanexpert.org/institution/19260 -https://www.oceanexpert.org/event/1303 -https://www.oceanexpert.org/institution/6063 -https://www.oceanexpert.org/institution/19622 -https://www.oceanexpert.org/expert/20029 -https://www.oceanexpert.org/institution/16364 -https://www.oceanexpert.org/expert/23726 -https://www.oceanexpert.org/expert/11040 -https://www.oceanexpert.org/institution/10312 -https://www.oceanexpert.org/expert/40112 -https://www.oceanexpert.org/institution/9197 -https://www.oceanexpert.org/expert/4752 -https://www.oceanexpert.org/expert/34211 -https://www.oceanexpert.org/expert/21699 -https://www.oceanexpert.org/institution/19344 -https://www.oceanexpert.org/event/1588 -https://www.oceanexpert.org/expert/39776 -https://www.oceanexpert.org/expert/46654 -https://www.oceanexpert.org/expert/32249 -https://www.oceanexpert.org/expert/30178 -https://www.oceanexpert.org/expert/12441 -https://www.oceanexpert.org/expert/34534 -https://www.oceanexpert.org/expert/38013 -https://www.oceanexpert.org/expert/11021 -https://www.oceanexpert.org/expert/38651 -https://www.oceanexpert.org/institution/15236 -https://www.oceanexpert.org/expert/44767 -https://www.oceanexpert.org/expert/18304 -https://www.oceanexpert.org/expert/35222 -https://www.oceanexpert.org/institution/16726 -https://www.oceanexpert.org/expert/18793 -https://www.oceanexpert.org/expert/46342 -https://www.oceanexpert.org/expert/15457 -https://www.oceanexpert.org/expert/16974 -https://www.oceanexpert.org/institution/13043 -https://www.oceanexpert.org/expert/46692 -https://www.oceanexpert.org/expert/33912 -https://www.oceanexpert.org/expert/29622 -https://www.oceanexpert.org/expert/17001 -https://www.oceanexpert.org/institution/21152 -https://www.oceanexpert.org/expert/27965 -https://www.oceanexpert.org/expert/24389 -https://www.oceanexpert.org/institution/17486 -https://www.oceanexpert.org/expert/43842 -https://www.oceanexpert.org/institution/13144 -https://www.oceanexpert.org/expert/18151 -https://www.oceanexpert.org/expert/15955 -https://www.oceanexpert.org/institution/19889 -https://www.oceanexpert.org/institution/21059 -https://www.oceanexpert.org/expert/44778 -https://www.oceanexpert.org/expert/17939 -https://www.oceanexpert.org/institution/18196 -https://www.oceanexpert.org/institution/21264 -https://www.oceanexpert.org/event/1378 -https://www.oceanexpert.org/expert/27375 -https://www.oceanexpert.org/expert/34126 -https://www.oceanexpert.org/expert/38070 -https://www.oceanexpert.org/expert/47490 -https://www.oceanexpert.org/expert/14323 -https://www.oceanexpert.org/expert/22793 -https://www.oceanexpert.org/expert/13359 -https://www.oceanexpert.org/expert/37200 -https://www.oceanexpert.org/expert/30644 -https://www.oceanexpert.org/expert/14704 -https://www.oceanexpert.org/event/2385 -https://www.oceanexpert.org/expert/24984 -https://www.oceanexpert.org/institution/20884 -https://www.oceanexpert.org/expert/18445 -https://www.oceanexpert.org/expert/21310 -https://www.oceanexpert.org/expert/20586 -https://www.oceanexpert.org/institution/12994 -https://www.oceanexpert.org/institution/12734 -https://www.oceanexpert.org/institution/12023 -https://www.oceanexpert.org/expert/21686 -https://www.oceanexpert.org/expert/23608 -https://www.oceanexpert.org/expert/19253 -https://www.oceanexpert.org/event/2506 -https://www.oceanexpert.org/expert/21196 -https://www.oceanexpert.org/institution/17124 -https://www.oceanexpert.org/expert/17957 -https://www.oceanexpert.org/expert/23456 -https://www.oceanexpert.org/expert/20927 -https://www.oceanexpert.org/expert/45008 -https://www.oceanexpert.org/expert/23942 -https://www.oceanexpert.org/expert/17041 -https://www.oceanexpert.org/expert/27266 -https://www.oceanexpert.org/institution/19163 -https://www.oceanexpert.org/institution/21209 -https://www.oceanexpert.org/institution/8706 -https://www.oceanexpert.org/event/1456 -https://www.oceanexpert.org/institution/21482 -https://www.oceanexpert.org/institution/15615 -https://www.oceanexpert.org/event/1784 -https://www.oceanexpert.org/expert/46306 -https://www.oceanexpert.org/expert/18956 -https://www.oceanexpert.org/institution/19739 -https://www.oceanexpert.org/institution/19811 -https://www.oceanexpert.org/expert/24003 -https://www.oceanexpert.org/institution/8895 -https://www.oceanexpert.org/expert/26787 -https://www.oceanexpert.org/expert/35204 -https://www.oceanexpert.org/expert/6345 -https://www.oceanexpert.org/event/754 -https://www.oceanexpert.org/event/2389 -https://www.oceanexpert.org/expert/47324 -https://www.oceanexpert.org/expert/24866 -https://www.oceanexpert.org/expert/21488 -https://www.oceanexpert.org/expert/48671 -https://www.oceanexpert.org/expert/6248 -https://www.oceanexpert.org/expert/20259 -https://www.oceanexpert.org/expert/47586 -https://www.oceanexpert.org/expert/14057 -https://www.oceanexpert.org/expert/4470 -https://www.oceanexpert.org/expert/42663 -https://www.oceanexpert.org/expert/32102 -https://www.oceanexpert.org/expert/29702 -https://www.oceanexpert.org/expert/17932 -https://www.oceanexpert.org/expert/15606 -https://www.oceanexpert.org/expert/33563 -https://www.oceanexpert.org/expert/27040 -https://www.oceanexpert.org/expert/36028 -https://www.oceanexpert.org/event/889 -https://www.oceanexpert.org/expert/44320 -https://www.oceanexpert.org/expert/20795 -https://www.oceanexpert.org/expert/37239 -https://www.oceanexpert.org/expert/35427 -https://www.oceanexpert.org/expert/37559 -https://www.oceanexpert.org/expert/25398 -https://www.oceanexpert.org/expert/13391 -https://www.oceanexpert.org/institution/19172 -https://www.oceanexpert.org/expert/36292 -https://www.oceanexpert.org/institution/21441 -https://www.oceanexpert.org/expert/22472 -https://www.oceanexpert.org/event/883 -https://www.oceanexpert.org/expert/22223 -https://www.oceanexpert.org/institution/16067 -https://www.oceanexpert.org/expert/31081 -https://www.oceanexpert.org/expert/37446 -https://www.oceanexpert.org/institution/21603 -https://www.oceanexpert.org/institution/20448 -https://www.oceanexpert.org/expert/43132 -https://www.oceanexpert.org/expert/43809 -https://www.oceanexpert.org/institution/20029 -https://www.oceanexpert.org/institution/20818 -https://www.oceanexpert.org/expert/18090 -https://www.oceanexpert.org/event/2799 -https://www.oceanexpert.org/expert/44697 -https://www.oceanexpert.org/expert/16996 -https://www.oceanexpert.org/expert/29965 -https://www.oceanexpert.org/expert/25611 -https://www.oceanexpert.org/expert/44320 -https://www.oceanexpert.org/institution/16616 -https://www.oceanexpert.org/event/2750 -https://www.oceanexpert.org/institution/18355 -https://www.oceanexpert.org/expert/22765 -https://www.oceanexpert.org/expert/16134 -https://www.oceanexpert.org/expert/17840 -https://www.oceanexpert.org/institution/19166 -https://www.oceanexpert.org/institution/21508 -https://www.oceanexpert.org/expert/43044 -https://www.oceanexpert.org/expert/46788 -https://www.oceanexpert.org/event/1792 -https://www.oceanexpert.org/institution/10274 -https://www.oceanexpert.org/expert/34088 -https://www.oceanexpert.org/expert/47613 -https://www.oceanexpert.org/expert/19988 -https://www.oceanexpert.org/event/2342 -https://www.oceanexpert.org/expert/21318 -https://www.oceanexpert.org/expert/8123 -https://www.oceanexpert.org/institution/17862 -https://www.oceanexpert.org/institution/14255 -https://www.oceanexpert.org/expert/47100 -https://www.oceanexpert.org/institution/14984 -https://www.oceanexpert.org/expert/24179 -https://www.oceanexpert.org/expert/19724 -https://www.oceanexpert.org/expert/43769 -https://www.oceanexpert.org/expert/44125 -https://www.oceanexpert.org/expert/13426 -https://www.oceanexpert.org/institution/19501 -https://www.oceanexpert.org/expert/35674 -https://www.oceanexpert.org/expert/22918 -https://www.oceanexpert.org/expert/29671 -https://www.oceanexpert.org/expert/15668 -https://www.oceanexpert.org/institution/7679 -https://www.oceanexpert.org/institution/15758 -https://www.oceanexpert.org/institution/11415 -https://www.oceanexpert.org/institution/6156 -https://www.oceanexpert.org/expert/40015 -https://www.oceanexpert.org/institution/18200 -https://www.oceanexpert.org/institution/18667 -https://www.oceanexpert.org/expert/19454 -https://www.oceanexpert.org/institution/8921 -https://www.oceanexpert.org/expert/27960 -https://www.oceanexpert.org/event/2622 -https://www.oceanexpert.org/expert/42690 -https://www.oceanexpert.org/event/374 -https://www.oceanexpert.org/institution/18408 -https://www.oceanexpert.org/expert/3084 -https://www.oceanexpert.org/expert/45570 -https://www.oceanexpert.org/expert/25016 -https://www.oceanexpert.org/institution/10966 -https://www.oceanexpert.org/expert/22226 -https://www.oceanexpert.org/event/409 -https://www.oceanexpert.org/institution/20215 -https://www.oceanexpert.org/expert/16132 -https://www.oceanexpert.org/expert/31985 -https://www.oceanexpert.org/institution/21521 -https://www.oceanexpert.org/expert/20760 -https://www.oceanexpert.org/expert/19899 -https://www.oceanexpert.org/expert/25920 -https://www.oceanexpert.org/expert/32233 -https://www.oceanexpert.org/expert/23444 -https://www.oceanexpert.org/expert/26415 -https://www.oceanexpert.org/institution/21234 -https://www.oceanexpert.org/event/2888 -https://www.oceanexpert.org/expert/39569 -https://www.oceanexpert.org/expert/46680 -https://www.oceanexpert.org/expert/47971 -https://www.oceanexpert.org/expert/2150 -https://www.oceanexpert.org/expert/35289 -https://www.oceanexpert.org/expert/43238 -https://www.oceanexpert.org/expert/24578 -https://www.oceanexpert.org/expert/6607 -https://www.oceanexpert.org/expert/19902 -https://www.oceanexpert.org/expert/37624 -https://www.oceanexpert.org/institution/16974 -https://www.oceanexpert.org/institution/9045 -https://www.oceanexpert.org/expert/25045 -https://www.oceanexpert.org/expert/1747 -https://www.oceanexpert.org/expert/6172 -https://www.oceanexpert.org/expert/18033 -https://www.oceanexpert.org/expert/7822 -https://www.oceanexpert.org/institution/19163 -https://www.oceanexpert.org/expert/27309 -https://www.oceanexpert.org/expert/20513 -https://www.oceanexpert.org/expert/34468 -https://www.oceanexpert.org/expert/42116 -https://www.oceanexpert.org/expert/21548 -https://www.oceanexpert.org/expert/23708 -https://www.oceanexpert.org/expert/20494 -https://www.oceanexpert.org/expert/45099 -https://www.oceanexpert.org/expert/29302 -https://www.oceanexpert.org/expert/36558 -https://www.oceanexpert.org/event/1850 -https://www.oceanexpert.org/event/381 -https://www.oceanexpert.org/expert/18893 -https://www.oceanexpert.org/expert/39844 -https://www.oceanexpert.org/expert/35371 -https://www.oceanexpert.org/institution/19608 -https://www.oceanexpert.org/institution/7679 -https://www.oceanexpert.org/institution/19073 -https://www.oceanexpert.org/expert/22724 -https://www.oceanexpert.org/institution/20240 -https://www.oceanexpert.org/expert/35640 -https://www.oceanexpert.org/expert/26242 -https://www.oceanexpert.org/expert/33198 -https://www.oceanexpert.org/institution/21932 -https://www.oceanexpert.org/expert/17988 -https://www.oceanexpert.org/expert/22913 -https://www.oceanexpert.org/event/690 -https://www.oceanexpert.org/expert/48831 -https://www.oceanexpert.org/event/1352 -https://www.oceanexpert.org/event/4 -https://www.oceanexpert.org/event/2944 -https://www.oceanexpert.org/institution/17876 -https://www.oceanexpert.org/expert/27477 -https://www.oceanexpert.org/institution/19236 -https://www.oceanexpert.org/expert/24553 -https://www.oceanexpert.org/expert/25111 -https://www.oceanexpert.org/expert/37892 -https://www.oceanexpert.org/institution/13115 -https://www.oceanexpert.org/expert/12298 -https://www.oceanexpert.org/expert/34093 -https://www.oceanexpert.org/expert/27406 -https://www.oceanexpert.org/expert/7770 -https://www.oceanexpert.org/expert/40602 -https://www.oceanexpert.org/event/1683 -https://www.oceanexpert.org/expert/48134 -https://www.oceanexpert.org/expert/11907 -https://www.oceanexpert.org/expert/38400 -https://www.oceanexpert.org/institution/10734 -https://www.oceanexpert.org/expert/195 -https://www.oceanexpert.org/institution/11660 -https://www.oceanexpert.org/expert/28814 -https://www.oceanexpert.org/expert/40887 -https://www.oceanexpert.org/expert/27538 -https://www.oceanexpert.org/institution/16211 -https://www.oceanexpert.org/expert/26517 -https://www.oceanexpert.org/expert/26762 -https://www.oceanexpert.org/institution/17002 -https://www.oceanexpert.org/expert/38845 -https://www.oceanexpert.org/expert/37303 -https://www.oceanexpert.org/expert/23448 -https://www.oceanexpert.org/expert/47705 -https://www.oceanexpert.org/event/1004 -https://www.oceanexpert.org/expert/43039 -https://www.oceanexpert.org/expert/3373 -https://www.oceanexpert.org/expert/19528 -https://www.oceanexpert.org/institution/19580 -https://www.oceanexpert.org/institution/20138 -https://www.oceanexpert.org/expert/44939 -https://www.oceanexpert.org/expert/14614 -https://www.oceanexpert.org/institution/21808 -https://www.oceanexpert.org/institution/15050 -https://www.oceanexpert.org/expert/8524 -https://www.oceanexpert.org/event/1508 -https://www.oceanexpert.org/expert/27784 -https://www.oceanexpert.org/expert/36904 -https://www.oceanexpert.org/expert/8696 -https://www.oceanexpert.org/expert/47698 -https://www.oceanexpert.org/expert/37661 -https://www.oceanexpert.org/expert/34350 -https://www.oceanexpert.org/expert/43379 -https://www.oceanexpert.org/expert/35041 -https://www.oceanexpert.org/expert/8902 -https://www.oceanexpert.org/expert/36828 -https://www.oceanexpert.org/expert/31910 -https://www.oceanexpert.org/expert/27223 -https://www.oceanexpert.org/expert/29191 -https://www.oceanexpert.org/expert/48501 -https://www.oceanexpert.org/expert/25257 -https://www.oceanexpert.org/expert/35414 -https://www.oceanexpert.org/expert/19067 -https://www.oceanexpert.org/expert/19318 -https://www.oceanexpert.org/expert/31572 -https://www.oceanexpert.org/expert/23852 -https://www.oceanexpert.org/institution/19088 -https://www.oceanexpert.org/event/1551 -https://www.oceanexpert.org/expert/29793 -https://www.oceanexpert.org/expert/40572 -https://www.oceanexpert.org/event/2428 -https://www.oceanexpert.org/expert/25314 -https://www.oceanexpert.org/expert/17373 -https://www.oceanexpert.org/expert/46926 -https://www.oceanexpert.org/event/2635 -https://www.oceanexpert.org/expert/27229 -https://www.oceanexpert.org/expert/34587 -https://www.oceanexpert.org/expert/27418 -https://www.oceanexpert.org/institution/20242 -https://www.oceanexpert.org/institution/19504 -https://www.oceanexpert.org/expert/46052 -https://www.oceanexpert.org/expert/27490 -https://www.oceanexpert.org/expert/48589 -https://www.oceanexpert.org/event/1209 -https://www.oceanexpert.org/expert/40363 -https://www.oceanexpert.org/expert/43674 -https://www.oceanexpert.org/institution/12199 -https://www.oceanexpert.org/event/1007 -https://www.oceanexpert.org/expert/37475 -https://www.oceanexpert.org/expert/24901 -https://www.oceanexpert.org/expert/2454 -https://www.oceanexpert.org/institution/12343 -https://www.oceanexpert.org/expert/3060 -https://www.oceanexpert.org/expert/4966 -https://www.oceanexpert.org/expert/15507 -https://www.oceanexpert.org/expert/46605 -https://www.oceanexpert.org/expert/46046 -https://www.oceanexpert.org/institution/22047 -https://www.oceanexpert.org/institution/9407 -https://www.oceanexpert.org/institution/19763 -https://www.oceanexpert.org/expert/178 -https://www.oceanexpert.org/expert/42192 -https://www.oceanexpert.org/institution/5177 -https://www.oceanexpert.org/institution/20232 -https://www.oceanexpert.org/expert/27374 -https://www.oceanexpert.org/expert/19203 -https://www.oceanexpert.org/expert/13504 -https://www.oceanexpert.org/expert/16804 -https://www.oceanexpert.org/expert/43753 -https://www.oceanexpert.org/expert/33291 -https://www.oceanexpert.org/expert/48836 -https://www.oceanexpert.org/expert/1389 -https://www.oceanexpert.org/expert/1615 -https://www.oceanexpert.org/institution/16183 -https://www.oceanexpert.org/institution/15936 -https://www.oceanexpert.org/expert/36234 -https://www.oceanexpert.org/expert/20709 -https://www.oceanexpert.org/expert/38123 -https://www.oceanexpert.org/institution/13125 -https://www.oceanexpert.org/expert/23303 -https://www.oceanexpert.org/expert/23653 -https://www.oceanexpert.org/expert/26450 -https://www.oceanexpert.org/expert/23995 -https://www.oceanexpert.org/expert/26720 -https://www.oceanexpert.org/expert/46343 -https://www.oceanexpert.org/expert/21561 -https://www.oceanexpert.org/institution/19114 -https://www.oceanexpert.org/expert/44899 -https://www.oceanexpert.org/institution/12461 -https://www.oceanexpert.org/expert/18899 -https://www.oceanexpert.org/institution/18414 -https://www.oceanexpert.org/expert/17507 -https://www.oceanexpert.org/event/2274 -https://www.oceanexpert.org/event/987 -https://www.oceanexpert.org/expert/34078 -https://www.oceanexpert.org/expert/32811 -https://www.oceanexpert.org/expert/19113 -https://www.oceanexpert.org/expert/10521 -https://www.oceanexpert.org/expert/43050 -https://www.oceanexpert.org/institution/21873 -https://www.oceanexpert.org/expert/34623 -https://www.oceanexpert.org/expert/18885 -https://www.oceanexpert.org/event/1327 -https://www.oceanexpert.org/expert/20414 -https://www.oceanexpert.org/event/308 -https://www.oceanexpert.org/institution/21959 -https://www.oceanexpert.org/institution/18751 -https://www.oceanexpert.org/event/2258 -https://www.oceanexpert.org/event/112 -https://www.oceanexpert.org/institution/19322 -https://www.oceanexpert.org/institution/11057 -https://www.oceanexpert.org/expert/40093 -https://www.oceanexpert.org/event/545 -https://www.oceanexpert.org/expert/27873 -https://www.oceanexpert.org/institution/19595 -https://www.oceanexpert.org/expert/38934 -https://www.oceanexpert.org/institution/5027 -https://www.oceanexpert.org/expert/38883 -https://www.oceanexpert.org/institution/14083 -https://www.oceanexpert.org/expert/31219 -https://www.oceanexpert.org/expert/25676 -https://www.oceanexpert.org/expert/22827 -https://www.oceanexpert.org/event/1639 -https://www.oceanexpert.org/expert/13788 -https://www.oceanexpert.org/institution/20778 -https://www.oceanexpert.org/expert/14881 -https://www.oceanexpert.org/institution/15397 -https://www.oceanexpert.org/expert/47802 -https://www.oceanexpert.org/institution/16786 -https://www.oceanexpert.org/institution/18970 -https://www.oceanexpert.org/expert/33265 -https://www.oceanexpert.org/expert/33050 -https://www.oceanexpert.org/institution/18691 -https://www.oceanexpert.org/expert/26082 -https://www.oceanexpert.org/expert/34256 -https://www.oceanexpert.org/expert/36794 -https://www.oceanexpert.org/expert/19609 -https://www.oceanexpert.org/institution/5632 -https://www.oceanexpert.org/expert/11179 -https://www.oceanexpert.org/expert/35158 -https://www.oceanexpert.org/institution/16066 -https://www.oceanexpert.org/expert/34480 -https://www.oceanexpert.org/expert/23043 -https://www.oceanexpert.org/expert/30045 -https://www.oceanexpert.org/institution/6531 -https://www.oceanexpert.org/expert/17180 -https://www.oceanexpert.org/expert/47722 -https://www.oceanexpert.org/expert/27524 -https://www.oceanexpert.org/event/957 -https://www.oceanexpert.org/expert/21710 -https://www.oceanexpert.org/expert/17174 -https://www.oceanexpert.org/expert/23316 -https://www.oceanexpert.org/institution/15179 -https://www.oceanexpert.org/institution/16972 -https://www.oceanexpert.org/expert/23069 -https://www.oceanexpert.org/institution/20777 -https://www.oceanexpert.org/event/401 -https://www.oceanexpert.org/institution/18067 -https://www.oceanexpert.org/expert/18925 -https://www.oceanexpert.org/expert/28990 -https://www.oceanexpert.org/institution/6656 -https://www.oceanexpert.org/expert/28350 -https://www.oceanexpert.org/event/976 -https://www.oceanexpert.org/expert/40092 -https://www.oceanexpert.org/institution/5832 -https://www.oceanexpert.org/event/1199 -https://www.oceanexpert.org/event/1131 -https://www.oceanexpert.org/expert/49037 -https://www.oceanexpert.org/expert/47684 -https://www.oceanexpert.org/expert/33204 -https://www.oceanexpert.org/institution/16270 -https://www.oceanexpert.org/expert/41410 -https://www.oceanexpert.org/institution/7684 -https://www.oceanexpert.org/expert/46186 -https://www.oceanexpert.org/institution/19378 -https://www.oceanexpert.org/expert/46871 -https://www.oceanexpert.org/institution/13874 -https://www.oceanexpert.org/expert/37070 -https://www.oceanexpert.org/expert/7444 -https://www.oceanexpert.org/institution/19205 -https://www.oceanexpert.org/institution/19565 -https://www.oceanexpert.org/event/682 -https://www.oceanexpert.org/expert/43349 -https://www.oceanexpert.org/expert/43265 -https://www.oceanexpert.org/institution/15678 -https://www.oceanexpert.org/expert/25002 -https://www.oceanexpert.org/institution/20478 -https://www.oceanexpert.org/institution/5254 -https://www.oceanexpert.org/institution/13040 -https://www.oceanexpert.org/expert/34141 -https://www.oceanexpert.org/expert/44220 -https://www.oceanexpert.org/institution/20916 -https://www.oceanexpert.org/expert/37820 -https://www.oceanexpert.org/expert/23151 -https://www.oceanexpert.org/event/3187 -https://www.oceanexpert.org/institution/20374 -https://www.oceanexpert.org/expert/27959 -https://www.oceanexpert.org/expert/27445 -https://www.oceanexpert.org/expert/44456 -https://www.oceanexpert.org/expert/40662 -https://www.oceanexpert.org/institution/18744 -https://www.oceanexpert.org/expert/36087 -https://www.oceanexpert.org/institution/8163 -https://www.oceanexpert.org/institution/19503 -https://www.oceanexpert.org/expert/11343 -https://www.oceanexpert.org/expert/26547 -https://www.oceanexpert.org/institution/20414 -https://www.oceanexpert.org/expert/44518 -https://www.oceanexpert.org/expert/32453 -https://www.oceanexpert.org/expert/38028 -https://www.oceanexpert.org/event/1225 -https://www.oceanexpert.org/expert/32712 -https://www.oceanexpert.org/expert/33135 -https://www.oceanexpert.org/expert/45023 -https://www.oceanexpert.org/expert/11453 -https://www.oceanexpert.org/expert/2433 -https://www.oceanexpert.org/expert/30312 -https://www.oceanexpert.org/expert/6745 -https://www.oceanexpert.org/expert/19462 -https://www.oceanexpert.org/institution/18906 -https://www.oceanexpert.org/expert/33881 -https://www.oceanexpert.org/expert/13581 -https://www.oceanexpert.org/expert/36856 -https://www.oceanexpert.org/event/769 -https://www.oceanexpert.org/expert/17834 -https://www.oceanexpert.org/event/2072 -https://www.oceanexpert.org/expert/37153 -https://www.oceanexpert.org/event/1516 -https://www.oceanexpert.org/institution/13232 -https://www.oceanexpert.org/expert/32527 -https://www.oceanexpert.org/expert/46247 -https://www.oceanexpert.org/institution/13674 -https://www.oceanexpert.org/expert/26697 -https://www.oceanexpert.org/expert/27151 -https://www.oceanexpert.org/expert/24451 -https://www.oceanexpert.org/institution/5358 -https://www.oceanexpert.org/institution/13022 -https://www.oceanexpert.org/institution/16125 -https://www.oceanexpert.org/institution/13108 -https://www.oceanexpert.org/institution/12398 -https://www.oceanexpert.org/event/1699 -https://www.oceanexpert.org/expert/26816 -https://www.oceanexpert.org/event/385 -https://www.oceanexpert.org/event/106 -https://www.oceanexpert.org/expert/38031 -https://www.oceanexpert.org/expert/2541 -https://www.oceanexpert.org/expert/21856 -https://www.oceanexpert.org/institution/20293 -https://www.oceanexpert.org/expert/37390 -https://www.oceanexpert.org/expert/43790 -https://www.oceanexpert.org/expert/47049 -https://www.oceanexpert.org/expert/23277 -https://www.oceanexpert.org/expert/43973 -https://www.oceanexpert.org/expert/21363 -https://www.oceanexpert.org/expert/23141 -https://www.oceanexpert.org/expert/35286 -https://www.oceanexpert.org/expert/16989 -https://www.oceanexpert.org/institution/18693 -https://www.oceanexpert.org/institution/12808 -https://www.oceanexpert.org/expert/40758 -https://www.oceanexpert.org/expert/6917 -https://www.oceanexpert.org/expert/26758 -https://www.oceanexpert.org/institution/17852 -https://www.oceanexpert.org/expert/23913 -https://www.oceanexpert.org/expert/11473 -https://www.oceanexpert.org/expert/11101 -https://www.oceanexpert.org/institution/20914 -https://www.oceanexpert.org/institution/12813 -https://www.oceanexpert.org/expert/35533 -https://www.oceanexpert.org/event/749 -https://www.oceanexpert.org/expert/31324 -https://www.oceanexpert.org/expert/23830 -https://www.oceanexpert.org/expert/22455 -https://www.oceanexpert.org/institution/12830 -https://www.oceanexpert.org/institution/13903 -https://www.oceanexpert.org/expert/48725 -https://www.oceanexpert.org/expert/26723 -https://www.oceanexpert.org/event/1457 -https://www.oceanexpert.org/expert/13359 -https://www.oceanexpert.org/institution/12768 -https://www.oceanexpert.org/expert/15293 -https://www.oceanexpert.org/institution/19373 -https://www.oceanexpert.org/expert/42643 -https://www.oceanexpert.org/institution/11825 -https://www.oceanexpert.org/event/1671 -https://www.oceanexpert.org/institution/19806 -https://www.oceanexpert.org/expert/31184 -https://www.oceanexpert.org/expert/44245 -https://www.oceanexpert.org/expert/24581 -https://www.oceanexpert.org/event/3243 -https://www.oceanexpert.org/event/1357 -https://www.oceanexpert.org/expert/44929 -https://www.oceanexpert.org/expert/1791 -https://www.oceanexpert.org/expert/40589 -https://www.oceanexpert.org/event/441 -https://www.oceanexpert.org/event/218 -https://www.oceanexpert.org/event/3195 -https://www.oceanexpert.org/institution/15859 -https://www.oceanexpert.org/institution/8404 -https://www.oceanexpert.org/expert/48007 -https://www.oceanexpert.org/expert/47840 -https://www.oceanexpert.org/expert/38379 -https://www.oceanexpert.org/expert/24996 -https://www.oceanexpert.org/expert/8156 -https://www.oceanexpert.org/expert/17703 -https://www.oceanexpert.org/expert/11041 -https://www.oceanexpert.org/expert/34583 -https://www.oceanexpert.org/institution/18099 -https://www.oceanexpert.org/expert/17501 -https://www.oceanexpert.org/expert/38930 -https://www.oceanexpert.org/expert/25206 -https://www.oceanexpert.org/event/2158 -https://www.oceanexpert.org/event/422 -https://www.oceanexpert.org/expert/17781 -https://www.oceanexpert.org/event/456 -https://www.oceanexpert.org/expert/27305 -https://www.oceanexpert.org/expert/42000 -https://www.oceanexpert.org/expert/32877 -https://www.oceanexpert.org/institution/21485 -https://www.oceanexpert.org/expert/48033 -https://www.oceanexpert.org/expert/36108 -https://www.oceanexpert.org/institution/9057 -https://www.oceanexpert.org/expert/21795 -https://www.oceanexpert.org/expert/44185 -https://www.oceanexpert.org/event/1583 -https://www.oceanexpert.org/expert/44760 -https://www.oceanexpert.org/expert/17596 -https://www.oceanexpert.org/institution/20949 -https://www.oceanexpert.org/expert/20383 -https://www.oceanexpert.org/expert/24688 -https://www.oceanexpert.org/expert/39472 -https://www.oceanexpert.org/event/1852 -https://www.oceanexpert.org/institution/10167 -https://www.oceanexpert.org/institution/6736 -https://www.oceanexpert.org/expert/25026 -https://www.oceanexpert.org/expert/29817 -https://www.oceanexpert.org/institution/9530 -https://www.oceanexpert.org/institution/20154 -https://www.oceanexpert.org/expert/35421 -https://www.oceanexpert.org/expert/44322 -https://www.oceanexpert.org/event/1379 -https://www.oceanexpert.org/expert/2235 -https://www.oceanexpert.org/expert/42988 -https://www.oceanexpert.org/expert/17141 -https://www.oceanexpert.org/expert/14429 -https://www.oceanexpert.org/expert/27132 -https://www.oceanexpert.org/expert/46537 -https://www.oceanexpert.org/expert/1512 -https://www.oceanexpert.org/expert/22823 -https://www.oceanexpert.org/expert/45628 -https://www.oceanexpert.org/expert/7423 -https://www.oceanexpert.org/event/2485 -https://www.oceanexpert.org/expert/46422 -https://www.oceanexpert.org/expert/29227 -https://www.oceanexpert.org/event/205 -https://www.oceanexpert.org/expert/9318 -https://www.oceanexpert.org/expert/22991 -https://www.oceanexpert.org/institution/19537 -https://www.oceanexpert.org/expert/25817 -https://www.oceanexpert.org/expert/31882 -https://www.oceanexpert.org/expert/25108 -https://www.oceanexpert.org/institution/18877 -https://www.oceanexpert.org/institution/19546 -https://www.oceanexpert.org/expert/19935 -https://www.oceanexpert.org/expert/22553 -https://www.oceanexpert.org/expert/32071 -https://www.oceanexpert.org/expert/1743 -https://www.oceanexpert.org/institution/12535 -https://www.oceanexpert.org/institution/13162 -https://www.oceanexpert.org/expert/12775 -https://www.oceanexpert.org/expert/34676 -https://www.oceanexpert.org/expert/20925 -https://www.oceanexpert.org/expert/32932 -https://www.oceanexpert.org/expert/46161 -https://www.oceanexpert.org/expert/39131 -https://www.oceanexpert.org/expert/44709 -https://www.oceanexpert.org/institution/18197 -https://www.oceanexpert.org/institution/9783 -https://www.oceanexpert.org/institution/19921 -https://www.oceanexpert.org/expert/42541 -https://www.oceanexpert.org/expert/49051 -https://www.oceanexpert.org/institution/11277 -https://www.oceanexpert.org/expert/14931 -https://www.oceanexpert.org/expert/22281 -https://www.oceanexpert.org/institution/11871 -https://www.oceanexpert.org/institution/15475 -https://www.oceanexpert.org/expert/35628 -https://www.oceanexpert.org/institution/12398 -https://www.oceanexpert.org/expert/35312 -https://www.oceanexpert.org/institution/19886 -https://www.oceanexpert.org/institution/14958 -https://www.oceanexpert.org/expert/22667 -https://www.oceanexpert.org/expert/22198 -https://www.oceanexpert.org/expert/34314 -https://www.oceanexpert.org/expert/43772 -https://www.oceanexpert.org/institution/20215 -https://www.oceanexpert.org/expert/47216 -https://www.oceanexpert.org/expert/17159 -https://www.oceanexpert.org/institution/15799 -https://www.oceanexpert.org/expert/13194 -https://www.oceanexpert.org/institution/16270 -https://www.oceanexpert.org/expert/25560 -https://www.oceanexpert.org/expert/101 -https://www.oceanexpert.org/institution/17813 -https://www.oceanexpert.org/expert/13488 -https://www.oceanexpert.org/expert/39369 -https://www.oceanexpert.org/institution/11157 -https://www.oceanexpert.org/institution/17931 -https://www.oceanexpert.org/event/1651 -https://www.oceanexpert.org/expert/29840 -https://www.oceanexpert.org/institution/20651 -https://www.oceanexpert.org/expert/26712 -https://www.oceanexpert.org/expert/27806 -https://www.oceanexpert.org/expert/23627 -https://www.oceanexpert.org/expert/45632 -https://www.oceanexpert.org/expert/18601 -https://www.oceanexpert.org/expert/28120 -https://www.oceanexpert.org/expert/47976 -https://www.oceanexpert.org/institution/19339 -https://www.oceanexpert.org/institution/21290 -https://www.oceanexpert.org/expert/16354 -https://www.oceanexpert.org/institution/10343 -https://www.oceanexpert.org/expert/23167 -https://www.oceanexpert.org/institution/18689 -https://www.oceanexpert.org/expert/30089 -https://www.oceanexpert.org/institution/21533 -https://www.oceanexpert.org/institution/12764 -https://www.oceanexpert.org/expert/36884 -https://www.oceanexpert.org/expert/47026 -https://www.oceanexpert.org/expert/11703 -https://www.oceanexpert.org/expert/5419 -https://www.oceanexpert.org/institution/19154 -https://www.oceanexpert.org/institution/20016 -https://www.oceanexpert.org/expert/26344 -https://www.oceanexpert.org/expert/22694 -https://www.oceanexpert.org/expert/32461 -https://www.oceanexpert.org/institution/10157 -https://www.oceanexpert.org/institution/17429 -https://www.oceanexpert.org/expert/8625 -https://www.oceanexpert.org/expert/43316 -https://www.oceanexpert.org/expert/28184 -https://www.oceanexpert.org/expert/45388 -https://www.oceanexpert.org/expert/12112 -https://www.oceanexpert.org/institution/5010 -https://www.oceanexpert.org/institution/6466 -https://www.oceanexpert.org/institution/9776 -https://www.oceanexpert.org/institution/18316 -https://www.oceanexpert.org/event/2645 -https://www.oceanexpert.org/expert/22749 -https://www.oceanexpert.org/institution/21487 -https://www.oceanexpert.org/expert/15634 -https://www.oceanexpert.org/expert/44875 -https://www.oceanexpert.org/expert/18186 -https://www.oceanexpert.org/expert/21803 -https://www.oceanexpert.org/event/2050 -https://www.oceanexpert.org/expert/23243 -https://www.oceanexpert.org/expert/26330 -https://www.oceanexpert.org/expert/16300 -https://www.oceanexpert.org/institution/18366 -https://www.oceanexpert.org/event/1629 -https://www.oceanexpert.org/expert/38609 -https://www.oceanexpert.org/expert/38173 -https://www.oceanexpert.org/expert/27632 -https://www.oceanexpert.org/expert/48808 -https://www.oceanexpert.org/institution/19515 -https://www.oceanexpert.org/expert/13194 -https://www.oceanexpert.org/expert/42494 -https://www.oceanexpert.org/expert/40105 -https://www.oceanexpert.org/institution/13884 -https://www.oceanexpert.org/expert/37876 -https://www.oceanexpert.org/expert/44569 -https://www.oceanexpert.org/institution/10268 -https://www.oceanexpert.org/expert/2076 -https://www.oceanexpert.org/expert/26132 -https://www.oceanexpert.org/expert/30037 -https://www.oceanexpert.org/event/3015 -https://www.oceanexpert.org/expert/37818 -https://www.oceanexpert.org/institution/13949 -https://www.oceanexpert.org/institution/22043 -https://www.oceanexpert.org/expert/33625 -https://www.oceanexpert.org/institution/20929 -https://www.oceanexpert.org/expert/47119 -https://www.oceanexpert.org/expert/21913 -https://www.oceanexpert.org/event/520 -https://www.oceanexpert.org/expert/38919 -https://www.oceanexpert.org/expert/20806 -https://www.oceanexpert.org/institution/21113 -https://www.oceanexpert.org/expert/46452 -https://www.oceanexpert.org/event/793 -https://www.oceanexpert.org/expert/8526 -https://www.oceanexpert.org/expert/18175 -https://www.oceanexpert.org/expert/43367 -https://www.oceanexpert.org/event/2369 -https://www.oceanexpert.org/expert/19403 -https://www.oceanexpert.org/expert/35128 -https://www.oceanexpert.org/expert/20092 -https://www.oceanexpert.org/expert/36988 -https://www.oceanexpert.org/institution/18411 -https://www.oceanexpert.org/event/2815 -https://www.oceanexpert.org/expert/22656 -https://www.oceanexpert.org/expert/42402 -https://www.oceanexpert.org/expert/12298 -https://www.oceanexpert.org/expert/44209 -https://www.oceanexpert.org/expert/46352 -https://www.oceanexpert.org/event/2971 -https://www.oceanexpert.org/expert/36713 -https://www.oceanexpert.org/expert/15053 -https://www.oceanexpert.org/expert/28314 -https://www.oceanexpert.org/expert/28482 -https://www.oceanexpert.org/expert/44258 -https://www.oceanexpert.org/expert/18795 -https://www.oceanexpert.org/event/2518 -https://www.oceanexpert.org/expert/24018 -https://www.oceanexpert.org/event/286 -https://www.oceanexpert.org/expert/45137 -https://www.oceanexpert.org/expert/15510 -https://www.oceanexpert.org/expert/22760 -https://www.oceanexpert.org/expert/39844 -https://www.oceanexpert.org/expert/32794 -https://www.oceanexpert.org/expert/37039 -https://www.oceanexpert.org/expert/30672 -https://www.oceanexpert.org/institution/18840 -https://www.oceanexpert.org/institution/13860 -https://www.oceanexpert.org/expert/40675 -https://www.oceanexpert.org/institution/11155 -https://www.oceanexpert.org/expert/35521 -https://www.oceanexpert.org/expert/46969 -https://www.oceanexpert.org/institution/15927 -https://www.oceanexpert.org/event/2270 -https://www.oceanexpert.org/expert/48926 -https://www.oceanexpert.org/expert/31394 -https://www.oceanexpert.org/expert/23897 -https://www.oceanexpert.org/institution/7308 -https://www.oceanexpert.org/expert/39519 -https://www.oceanexpert.org/institution/17797 -https://www.oceanexpert.org/event/1246 -https://www.oceanexpert.org/institution/19219 -https://www.oceanexpert.org/expert/1342 -https://www.oceanexpert.org/institution/9606 -https://www.oceanexpert.org/expert/37374 -https://www.oceanexpert.org/expert/25145 -https://www.oceanexpert.org/expert/18253 -https://www.oceanexpert.org/expert/34092 -https://www.oceanexpert.org/expert/44945 -https://www.oceanexpert.org/expert/20600 -https://www.oceanexpert.org/expert/33568 -https://www.oceanexpert.org/expert/24254 -https://www.oceanexpert.org/event/135 -https://www.oceanexpert.org/expert/43729 -https://www.oceanexpert.org/expert/35077 -https://www.oceanexpert.org/expert/37686 -https://www.oceanexpert.org/expert/22635 -https://www.oceanexpert.org/institution/13109 -https://www.oceanexpert.org/expert/18406 -https://www.oceanexpert.org/expert/34336 -https://www.oceanexpert.org/expert/26409 -https://www.oceanexpert.org/event/1325 -https://www.oceanexpert.org/expert/32901 -https://www.oceanexpert.org/expert/42069 -https://www.oceanexpert.org/expert/19616 -https://www.oceanexpert.org/expert/35232 -https://www.oceanexpert.org/expert/46145 -https://www.oceanexpert.org/expert/16121 -https://www.oceanexpert.org/expert/20204 -https://www.oceanexpert.org/expert/30112 -https://www.oceanexpert.org/institution/19075 -https://www.oceanexpert.org/institution/12745 -https://www.oceanexpert.org/institution/20156 -https://www.oceanexpert.org/expert/36468 -https://www.oceanexpert.org/expert/30043 -https://www.oceanexpert.org/expert/27621 -https://www.oceanexpert.org/expert/42619 -https://www.oceanexpert.org/expert/6430 -https://www.oceanexpert.org/expert/27081 -https://www.oceanexpert.org/expert/34494 -https://www.oceanexpert.org/expert/26833 -https://www.oceanexpert.org/expert/23663 -https://www.oceanexpert.org/expert/22250 -https://www.oceanexpert.org/institution/13818 -https://www.oceanexpert.org/institution/21366 -https://www.oceanexpert.org/expert/43922 -https://www.oceanexpert.org/event/2265 -https://www.oceanexpert.org/expert/22341 -https://www.oceanexpert.org/expert/27114 -https://www.oceanexpert.org/expert/8596 -https://www.oceanexpert.org/expert/45343 -https://www.oceanexpert.org/expert/32520 -https://www.oceanexpert.org/expert/18152 -https://www.oceanexpert.org/institution/18786 -https://www.oceanexpert.org/expert/38180 -https://www.oceanexpert.org/event/1757 -https://www.oceanexpert.org/expert/46613 -https://www.oceanexpert.org/expert/42875 -https://www.oceanexpert.org/expert/16328 -https://www.oceanexpert.org/event/1463 -https://www.oceanexpert.org/institution/17055 -https://www.oceanexpert.org/expert/37378 -https://www.oceanexpert.org/event/303 -https://www.oceanexpert.org/expert/12063 -https://www.oceanexpert.org/expert/29583 -https://www.oceanexpert.org/institution/13860 -https://www.oceanexpert.org/expert/3743 -https://www.oceanexpert.org/expert/17362 -https://www.oceanexpert.org/institution/11029 -https://www.oceanexpert.org/expert/33653 -https://www.oceanexpert.org/event/1835 -https://www.oceanexpert.org/institution/20124 -https://www.oceanexpert.org/expert/43447 -https://www.oceanexpert.org/expert/21166 -https://www.oceanexpert.org/expert/26337 -https://www.oceanexpert.org/institution/19585 -https://www.oceanexpert.org/event/978 -https://www.oceanexpert.org/expert/14773 -https://www.oceanexpert.org/expert/31748 -https://www.oceanexpert.org/expert/30946 -https://www.oceanexpert.org/institution/19214 -https://www.oceanexpert.org/expert/36176 -https://www.oceanexpert.org/institution/19959 -https://www.oceanexpert.org/expert/37632 -https://www.oceanexpert.org/expert/40379 -https://www.oceanexpert.org/institution/20460 -https://www.oceanexpert.org/expert/1002 -https://www.oceanexpert.org/institution/4951 -https://www.oceanexpert.org/expert/29227 -https://www.oceanexpert.org/event/2614 -https://www.oceanexpert.org/expert/47232 -https://www.oceanexpert.org/expert/25153 -https://www.oceanexpert.org/event/493 -https://www.oceanexpert.org/expert/36680 -https://www.oceanexpert.org/expert/35806 -https://www.oceanexpert.org/expert/48668 -https://www.oceanexpert.org/expert/21629 -https://www.oceanexpert.org/expert/37045 -https://www.oceanexpert.org/expert/18167 -https://www.oceanexpert.org/expert/14337 -https://www.oceanexpert.org/institution/15238 -https://www.oceanexpert.org/expert/26618 -https://www.oceanexpert.org/expert/23482 -https://www.oceanexpert.org/expert/21400 -https://www.oceanexpert.org/institution/21482 -https://www.oceanexpert.org/expert/18706 -https://www.oceanexpert.org/expert/28054 -https://www.oceanexpert.org/expert/44282 -https://www.oceanexpert.org/expert/48493 -https://www.oceanexpert.org/institution/13022 -https://www.oceanexpert.org/expert/28972 -https://www.oceanexpert.org/expert/43544 -https://www.oceanexpert.org/institution/21583 -https://www.oceanexpert.org/expert/35812 -https://www.oceanexpert.org/expert/44895 -https://www.oceanexpert.org/institution/7892 -https://www.oceanexpert.org/expert/46376 -https://www.oceanexpert.org/institution/6178 -https://www.oceanexpert.org/expert/37400 -https://www.oceanexpert.org/expert/23998 -https://www.oceanexpert.org/institution/15079 -https://www.oceanexpert.org/institution/10551 -https://www.oceanexpert.org/institution/6682 -https://www.oceanexpert.org/institution/22173 -https://www.oceanexpert.org/institution/18698 -https://www.oceanexpert.org/expert/48233 -https://www.oceanexpert.org/expert/27288 -https://www.oceanexpert.org/institution/19688 -https://www.oceanexpert.org/expert/32234 -https://www.oceanexpert.org/event/1072 -https://www.oceanexpert.org/institution/20661 -https://www.oceanexpert.org/expert/42875 -https://www.oceanexpert.org/expert/33371 -https://www.oceanexpert.org/expert/24165 -https://www.oceanexpert.org/expert/1212 -https://www.oceanexpert.org/expert/31350 -https://www.oceanexpert.org/expert/36 -https://www.oceanexpert.org/institution/18946 -https://www.oceanexpert.org/expert/35419 -https://www.oceanexpert.org/event/2407 -https://www.oceanexpert.org/expert/19111 -https://www.oceanexpert.org/expert/45611 -https://www.oceanexpert.org/expert/43297 -https://www.oceanexpert.org/expert/48558 -https://www.oceanexpert.org/expert/22417 -https://www.oceanexpert.org/expert/19059 -https://www.oceanexpert.org/institution/13380 -https://www.oceanexpert.org/institution/12428 -https://www.oceanexpert.org/expert/31462 -https://www.oceanexpert.org/expert/16890 -https://www.oceanexpert.org/expert/37037 -https://www.oceanexpert.org/expert/29927 -https://www.oceanexpert.org/expert/24628 -https://www.oceanexpert.org/institution/14197 -https://www.oceanexpert.org/expert/46212 -https://www.oceanexpert.org/expert/39860 -https://www.oceanexpert.org/institution/16808 -https://www.oceanexpert.org/expert/23944 -https://www.oceanexpert.org/expert/36738 -https://www.oceanexpert.org/expert/43761 -https://www.oceanexpert.org/expert/44776 -https://www.oceanexpert.org/expert/33470 -https://www.oceanexpert.org/expert/35830 -https://www.oceanexpert.org/expert/29094 -https://www.oceanexpert.org/expert/34246 -https://www.oceanexpert.org/expert/38434 -https://www.oceanexpert.org/expert/22086 -https://www.oceanexpert.org/institution/14929 -https://www.oceanexpert.org/institution/11654 -https://www.oceanexpert.org/institution/7920 -https://www.oceanexpert.org/event/3082 -https://www.oceanexpert.org/institution/18825 -https://www.oceanexpert.org/expert/18781 -https://www.oceanexpert.org/expert/17515 -https://www.oceanexpert.org/institution/10358 -https://www.oceanexpert.org/institution/10822 -https://www.oceanexpert.org/expert/25710 -https://www.oceanexpert.org/expert/44345 -https://www.oceanexpert.org/expert/43206 -https://www.oceanexpert.org/expert/20251 -https://www.oceanexpert.org/institution/18492 -https://www.oceanexpert.org/expert/32101 -https://www.oceanexpert.org/expert/36966 -https://www.oceanexpert.org/institution/10337 -https://www.oceanexpert.org/expert/47456 -https://www.oceanexpert.org/institution/10722 -https://www.oceanexpert.org/expert/30772 -https://www.oceanexpert.org/institution/10295 -https://www.oceanexpert.org/expert/45509 -https://www.oceanexpert.org/expert/41915 -https://www.oceanexpert.org/expert/29894 -https://www.oceanexpert.org/expert/43095 -https://www.oceanexpert.org/institution/19959 -https://www.oceanexpert.org/expert/43072 -https://www.oceanexpert.org/expert/40038 -https://www.oceanexpert.org/expert/25800 -https://www.oceanexpert.org/expert/11713 -https://www.oceanexpert.org/expert/45571 -https://www.oceanexpert.org/expert/4393 -https://www.oceanexpert.org/expert/43633 -https://www.oceanexpert.org/event/259 -https://www.oceanexpert.org/expert/15419 -https://www.oceanexpert.org/expert/26900 -https://www.oceanexpert.org/institution/9361 -https://www.oceanexpert.org/expert/12461 -https://www.oceanexpert.org/institution/6753 -https://www.oceanexpert.org/institution/17127 -https://www.oceanexpert.org/expert/2570 -https://www.oceanexpert.org/institution/19001 -https://www.oceanexpert.org/institution/15025 -https://www.oceanexpert.org/institution/19264 -https://www.oceanexpert.org/expert/44373 -https://www.oceanexpert.org/expert/39999 -https://www.oceanexpert.org/expert/48170 -https://www.oceanexpert.org/expert/44211 -https://www.oceanexpert.org/institution/20529 -https://www.oceanexpert.org/expert/33440 -https://www.oceanexpert.org/institution/16122 -https://www.oceanexpert.org/expert/36325 -https://www.oceanexpert.org/institution/16803 -https://www.oceanexpert.org/institution/7363 -https://www.oceanexpert.org/expert/22258 -https://www.oceanexpert.org/expert/22518 -https://www.oceanexpert.org/expert/16321 -https://www.oceanexpert.org/expert/11300 -https://www.oceanexpert.org/institution/16489 -https://www.oceanexpert.org/institution/21185 -https://www.oceanexpert.org/expert/13485 -https://www.oceanexpert.org/institution/20944 -https://www.oceanexpert.org/institution/15727 -https://www.oceanexpert.org/expert/35155 -https://www.oceanexpert.org/expert/47830 -https://www.oceanexpert.org/expert/37385 -https://www.oceanexpert.org/event/3280 -https://www.oceanexpert.org/event/1010 -https://www.oceanexpert.org/expert/20470 -https://www.oceanexpert.org/expert/11586 -https://www.oceanexpert.org/expert/46608 -https://www.oceanexpert.org/expert/33301 -https://www.oceanexpert.org/institution/19296 -https://www.oceanexpert.org/institution/19019 -https://www.oceanexpert.org/expert/38019 -https://www.oceanexpert.org/institution/11706 -https://www.oceanexpert.org/expert/1209 -https://www.oceanexpert.org/expert/28272 -https://www.oceanexpert.org/expert/21318 -https://www.oceanexpert.org/expert/46692 -https://www.oceanexpert.org/institution/21065 -https://www.oceanexpert.org/expert/21906 -https://www.oceanexpert.org/institution/14056 -https://www.oceanexpert.org/expert/29937 -https://www.oceanexpert.org/event/485 -https://www.oceanexpert.org/event/772 -https://www.oceanexpert.org/expert/36449 -https://www.oceanexpert.org/institution/16726 -https://www.oceanexpert.org/expert/26248 -https://www.oceanexpert.org/institution/12127 -https://www.oceanexpert.org/expert/18898 -https://www.oceanexpert.org/institution/13509 -https://www.oceanexpert.org/institution/16695 -https://www.oceanexpert.org/expert/38110 -https://www.oceanexpert.org/event/434 -https://www.oceanexpert.org/event/2843 -https://www.oceanexpert.org/event/2313 -https://www.oceanexpert.org/expert/21489 -https://www.oceanexpert.org/event/1117 -https://www.oceanexpert.org/event/1395 -https://www.oceanexpert.org/expert/47843 -https://www.oceanexpert.org/expert/26622 -https://www.oceanexpert.org/institution/9499 -https://www.oceanexpert.org/expert/36178 -https://www.oceanexpert.org/expert/15366 -https://www.oceanexpert.org/expert/45046 -https://www.oceanexpert.org/institution/20394 -https://www.oceanexpert.org/expert/40563 -https://www.oceanexpert.org/institution/16217 -https://www.oceanexpert.org/expert/27251 -https://www.oceanexpert.org/expert/28967 -https://www.oceanexpert.org/expert/911 -https://www.oceanexpert.org/expert/35220 -https://www.oceanexpert.org/expert/34358 -https://www.oceanexpert.org/expert/17656 -https://www.oceanexpert.org/institution/21776 -https://www.oceanexpert.org/institution/19267 -https://www.oceanexpert.org/event/2119 -https://www.oceanexpert.org/event/2648 -https://www.oceanexpert.org/expert/48933 -https://www.oceanexpert.org/institution/12860 -https://www.oceanexpert.org/institution/5937 -https://www.oceanexpert.org/expert/40368 -https://www.oceanexpert.org/expert/25097 -https://www.oceanexpert.org/event/3032 -https://www.oceanexpert.org/expert/48134 -https://www.oceanexpert.org/institution/19932 -https://www.oceanexpert.org/institution/21398 -https://www.oceanexpert.org/expert/47753 -https://www.oceanexpert.org/institution/19241 -https://www.oceanexpert.org/expert/48170 -https://www.oceanexpert.org/institution/18227 -https://www.oceanexpert.org/expert/43156 -https://www.oceanexpert.org/expert/30316 -https://www.oceanexpert.org/expert/42706 -https://www.oceanexpert.org/expert/36499 -https://www.oceanexpert.org/institution/18638 -https://www.oceanexpert.org/expert/34763 -https://www.oceanexpert.org/institution/19887 -https://www.oceanexpert.org/event/2880 -https://www.oceanexpert.org/expert/42794 -https://www.oceanexpert.org/institution/18506 -https://www.oceanexpert.org/expert/23679 -https://www.oceanexpert.org/institution/11166 -https://www.oceanexpert.org/expert/43565 -https://www.oceanexpert.org/expert/36769 -https://www.oceanexpert.org/expert/47267 -https://www.oceanexpert.org/expert/35835 -https://www.oceanexpert.org/institution/22114 -https://www.oceanexpert.org/expert/42686 -https://www.oceanexpert.org/expert/25597 -https://www.oceanexpert.org/expert/25433 -https://www.oceanexpert.org/institution/7964 -https://www.oceanexpert.org/institution/10369 -https://www.oceanexpert.org/expert/14380 -https://www.oceanexpert.org/institution/16020 -https://www.oceanexpert.org/expert/35971 -https://www.oceanexpert.org/institution/19555 -https://www.oceanexpert.org/expert/48784 -https://www.oceanexpert.org/expert/41239 -https://www.oceanexpert.org/expert/30011 -https://www.oceanexpert.org/institution/17667 -https://www.oceanexpert.org/expert/26871 -https://www.oceanexpert.org/expert/36994 -https://www.oceanexpert.org/event/1497 -https://www.oceanexpert.org/event/2870 -https://www.oceanexpert.org/institution/14607 -https://www.oceanexpert.org/expert/11572 -https://www.oceanexpert.org/expert/48674 -https://www.oceanexpert.org/event/2463 -https://www.oceanexpert.org/expert/13194 -https://www.oceanexpert.org/expert/45722 -https://www.oceanexpert.org/expert/36628 -https://www.oceanexpert.org/institution/11454 -https://www.oceanexpert.org/expert/29960 -https://www.oceanexpert.org/expert/32059 -https://www.oceanexpert.org/expert/43190 -https://www.oceanexpert.org/expert/16533 -https://www.oceanexpert.org/expert/48321 -https://www.oceanexpert.org/institution/19867 -https://www.oceanexpert.org/expert/35840 -https://www.oceanexpert.org/expert/44831 -https://www.oceanexpert.org/expert/40315 -https://www.oceanexpert.org/expert/20944 -https://www.oceanexpert.org/institution/17785 -https://www.oceanexpert.org/institution/19701 -https://www.oceanexpert.org/expert/13390 -https://www.oceanexpert.org/event/2200 -https://www.oceanexpert.org/institution/20815 -https://www.oceanexpert.org/expert/25404 -https://www.oceanexpert.org/expert/19264 -https://www.oceanexpert.org/expert/39907 -https://www.oceanexpert.org/institution/14700 -https://www.oceanexpert.org/expert/22909 -https://www.oceanexpert.org/expert/43724 -https://www.oceanexpert.org/event/956 -https://www.oceanexpert.org/expert/37247 -https://www.oceanexpert.org/institution/22002 -https://www.oceanexpert.org/expert/46802 -https://www.oceanexpert.org/expert/17594 -https://www.oceanexpert.org/expert/37514 -https://www.oceanexpert.org/expert/22826 -https://www.oceanexpert.org/expert/2553 -https://www.oceanexpert.org/expert/23044 -https://www.oceanexpert.org/institution/7736 -https://www.oceanexpert.org/institution/19471 -https://www.oceanexpert.org/expert/37241 -https://www.oceanexpert.org/expert/19987 -https://www.oceanexpert.org/expert/21908 -https://www.oceanexpert.org/institution/5053 -https://www.oceanexpert.org/institution/12726 -https://www.oceanexpert.org/expert/31428 -https://www.oceanexpert.org/institution/21670 -https://www.oceanexpert.org/expert/27023 -https://www.oceanexpert.org/event/2521 -https://www.oceanexpert.org/expert/31374 -https://www.oceanexpert.org/institution/19027 -https://www.oceanexpert.org/institution/22048 -https://www.oceanexpert.org/event/2989 -https://www.oceanexpert.org/expert/23419 -https://www.oceanexpert.org/expert/12578 -https://www.oceanexpert.org/expert/44761 -https://www.oceanexpert.org/institution/21925 -https://www.oceanexpert.org/institution/12563 -https://www.oceanexpert.org/expert/18555 -https://www.oceanexpert.org/expert/47270 -https://www.oceanexpert.org/institution/20088 -https://www.oceanexpert.org/expert/35806 -https://www.oceanexpert.org/expert/2370 -https://www.oceanexpert.org/expert/777 -https://www.oceanexpert.org/institution/13852 -https://www.oceanexpert.org/expert/45703 -https://www.oceanexpert.org/expert/27302 -https://www.oceanexpert.org/institution/11599 -https://www.oceanexpert.org/event/722 -https://www.oceanexpert.org/expert/25347 -https://www.oceanexpert.org/expert/35223 -https://www.oceanexpert.org/expert/26714 -https://www.oceanexpert.org/institution/15443 -https://www.oceanexpert.org/expert/13033 -https://www.oceanexpert.org/institution/20098 -https://www.oceanexpert.org/expert/43044 -https://www.oceanexpert.org/expert/42217 -https://www.oceanexpert.org/expert/29195 -https://www.oceanexpert.org/expert/24060 -https://www.oceanexpert.org/expert/42545 -https://www.oceanexpert.org/expert/8820 -https://www.oceanexpert.org/expert/38240 -https://www.oceanexpert.org/event/780 -https://www.oceanexpert.org/expert/47856 -https://www.oceanexpert.org/expert/25527 -https://www.oceanexpert.org/expert/27381 -https://www.oceanexpert.org/expert/19032 -https://www.oceanexpert.org/expert/37616 -https://www.oceanexpert.org/expert/16394 -https://www.oceanexpert.org/expert/23250 -https://www.oceanexpert.org/institution/16183 -https://www.oceanexpert.org/institution/19997 -https://www.oceanexpert.org/expert/42908 -https://www.oceanexpert.org/institution/12961 -https://www.oceanexpert.org/expert/38050 -https://www.oceanexpert.org/event/2268 -https://www.oceanexpert.org/expert/45963 -https://www.oceanexpert.org/expert/25333 -https://www.oceanexpert.org/institution/19506 -https://www.oceanexpert.org/event/385 -https://www.oceanexpert.org/expert/16696 -https://www.oceanexpert.org/expert/22589 -https://www.oceanexpert.org/institution/6795 -https://www.oceanexpert.org/expert/45041 -https://www.oceanexpert.org/expert/27058 -https://www.oceanexpert.org/institution/10759 -https://www.oceanexpert.org/institution/14408 -https://www.oceanexpert.org/expert/19993 -https://www.oceanexpert.org/expert/47501 -https://www.oceanexpert.org/expert/43818 -https://www.oceanexpert.org/expert/36320 -https://www.oceanexpert.org/expert/19389 -https://www.oceanexpert.org/expert/37744 -https://www.oceanexpert.org/expert/30047 -https://www.oceanexpert.org/expert/19109 -https://www.oceanexpert.org/expert/23112 -https://www.oceanexpert.org/expert/22709 -https://www.oceanexpert.org/expert/40250 -https://www.oceanexpert.org/expert/43427 -https://www.oceanexpert.org/expert/23475 -https://www.oceanexpert.org/expert/25273 -https://www.oceanexpert.org/expert/26063 -https://www.oceanexpert.org/expert/26550 -https://www.oceanexpert.org/institution/21235 -https://www.oceanexpert.org/expert/23676 -https://www.oceanexpert.org/institution/18865 -https://www.oceanexpert.org/institution/19835 -https://www.oceanexpert.org/expert/19304 -https://www.oceanexpert.org/institution/19926 -https://www.oceanexpert.org/expert/34532 -https://www.oceanexpert.org/expert/904 -https://www.oceanexpert.org/expert/46758 -https://www.oceanexpert.org/expert/34829 -https://www.oceanexpert.org/expert/38011 -https://www.oceanexpert.org/event/3080 -https://www.oceanexpert.org/expert/26778 -https://www.oceanexpert.org/event/104 -https://www.oceanexpert.org/expert/31619 -https://www.oceanexpert.org/institution/19430 -https://www.oceanexpert.org/event/1604 -https://www.oceanexpert.org/institution/11221 -https://www.oceanexpert.org/expert/19246 -https://www.oceanexpert.org/expert/48786 -https://www.oceanexpert.org/institution/11364 -https://www.oceanexpert.org/expert/44869 -https://www.oceanexpert.org/expert/8181 -https://www.oceanexpert.org/event/2379 -https://www.oceanexpert.org/expert/17513 -https://www.oceanexpert.org/expert/19797 -https://www.oceanexpert.org/expert/33632 -https://www.oceanexpert.org/expert/11277 -https://www.oceanexpert.org/expert/21107 -https://www.oceanexpert.org/expert/31535 -https://www.oceanexpert.org/expert/12877 -https://www.oceanexpert.org/institution/10895 -https://www.oceanexpert.org/institution/14496 -https://www.oceanexpert.org/expert/47046 -https://www.oceanexpert.org/expert/21222 -https://www.oceanexpert.org/expert/24905 -https://www.oceanexpert.org/expert/19280 -https://www.oceanexpert.org/expert/20245 -https://www.oceanexpert.org/institution/20196 -https://www.oceanexpert.org/event/1862 -https://www.oceanexpert.org/expert/18998 -https://www.oceanexpert.org/expert/32748 -https://www.oceanexpert.org/institution/14407 -https://www.oceanexpert.org/event/1132 -https://www.oceanexpert.org/expert/16638 -https://www.oceanexpert.org/expert/44526 -https://www.oceanexpert.org/event/2356 -https://www.oceanexpert.org/expert/31416 -https://www.oceanexpert.org/expert/48256 -https://www.oceanexpert.org/expert/15511 -https://www.oceanexpert.org/expert/25385 -https://www.oceanexpert.org/institution/20525 -https://www.oceanexpert.org/expert/27965 -https://www.oceanexpert.org/institution/12158 -https://www.oceanexpert.org/expert/25422 -https://www.oceanexpert.org/institution/19073 -https://www.oceanexpert.org/expert/21982 -https://www.oceanexpert.org/expert/38447 -https://www.oceanexpert.org/expert/30187 -https://www.oceanexpert.org/institution/20477 -https://www.oceanexpert.org/expert/36354 -https://www.oceanexpert.org/expert/43805 -https://www.oceanexpert.org/expert/8724 -https://www.oceanexpert.org/event/964 -https://www.oceanexpert.org/expert/26843 -https://www.oceanexpert.org/expert/48484 -https://www.oceanexpert.org/expert/43953 -https://www.oceanexpert.org/expert/48643 -https://www.oceanexpert.org/expert/24976 -https://www.oceanexpert.org/institution/13896 -https://www.oceanexpert.org/expert/44424 -https://www.oceanexpert.org/expert/21753 -https://www.oceanexpert.org/expert/27333 -https://www.oceanexpert.org/institution/21722 -https://www.oceanexpert.org/institution/17851 -https://www.oceanexpert.org/expert/19905 -https://www.oceanexpert.org/expert/20396 -https://www.oceanexpert.org/expert/33997 -https://www.oceanexpert.org/expert/24899 -https://www.oceanexpert.org/event/1271 -https://www.oceanexpert.org/institution/11420 -https://www.oceanexpert.org/expert/47174 -https://www.oceanexpert.org/expert/3650 -https://www.oceanexpert.org/event/2199 -https://www.oceanexpert.org/expert/26990 -https://www.oceanexpert.org/expert/19521 -https://www.oceanexpert.org/institution/12278 -https://www.oceanexpert.org/expert/45321 -https://www.oceanexpert.org/expert/24678 -https://www.oceanexpert.org/expert/21163 -https://www.oceanexpert.org/event/2554 -https://www.oceanexpert.org/institution/5105 -https://www.oceanexpert.org/expert/32311 -https://www.oceanexpert.org/expert/32596 -https://www.oceanexpert.org/expert/36991 -https://www.oceanexpert.org/expert/14765 -https://www.oceanexpert.org/expert/36963 -https://www.oceanexpert.org/expert/42991 -https://www.oceanexpert.org/expert/24386 -https://www.oceanexpert.org/institution/13004 -https://www.oceanexpert.org/event/2416 -https://www.oceanexpert.org/expert/2451 -https://www.oceanexpert.org/expert/47915 -https://www.oceanexpert.org/expert/10112 -https://www.oceanexpert.org/expert/30808 -https://www.oceanexpert.org/institution/18554 -https://www.oceanexpert.org/expert/1900 -https://www.oceanexpert.org/expert/43111 -https://www.oceanexpert.org/expert/34034 -https://www.oceanexpert.org/expert/13710 -https://www.oceanexpert.org/expert/14876 -https://www.oceanexpert.org/expert/32527 -https://www.oceanexpert.org/institution/20408 -https://www.oceanexpert.org/institution/18059 -https://www.oceanexpert.org/expert/48231 -https://www.oceanexpert.org/expert/687 -https://www.oceanexpert.org/expert/35946 -https://www.oceanexpert.org/expert/25823 -https://www.oceanexpert.org/event/1161 -https://www.oceanexpert.org/expert/43676 -https://www.oceanexpert.org/expert/27026 -https://www.oceanexpert.org/institution/21509 -https://www.oceanexpert.org/institution/21578 -https://www.oceanexpert.org/expert/10780 -https://www.oceanexpert.org/expert/31278 -https://www.oceanexpert.org/institution/19954 -https://www.oceanexpert.org/expert/48052 -https://www.oceanexpert.org/expert/48131 -https://www.oceanexpert.org/expert/3175 -https://www.oceanexpert.org/expert/38285 -https://www.oceanexpert.org/expert/14570 -https://www.oceanexpert.org/expert/32891 -https://www.oceanexpert.org/expert/27426 -https://www.oceanexpert.org/expert/26708 -https://www.oceanexpert.org/expert/23604 -https://www.oceanexpert.org/institution/19308 -https://www.oceanexpert.org/expert/34242 -https://www.oceanexpert.org/expert/48081 -https://www.oceanexpert.org/event/806 -https://www.oceanexpert.org/expert/13585 -https://www.oceanexpert.org/expert/33122 -https://www.oceanexpert.org/expert/15680 -https://www.oceanexpert.org/expert/4455 -https://www.oceanexpert.org/expert/47561 -https://www.oceanexpert.org/event/3067 -https://www.oceanexpert.org/expert/19957 -https://www.oceanexpert.org/institution/14371 -https://www.oceanexpert.org/expert/42820 -https://www.oceanexpert.org/expert/12609 -https://www.oceanexpert.org/institution/20949 -https://www.oceanexpert.org/expert/46703 -https://www.oceanexpert.org/expert/14053 -https://www.oceanexpert.org/institution/19013 -https://www.oceanexpert.org/institution/12427 -https://www.oceanexpert.org/expert/19077 -https://www.oceanexpert.org/institution/18453 -https://www.oceanexpert.org/institution/20866 -https://www.oceanexpert.org/institution/4997 -https://www.oceanexpert.org/expert/43082 -https://www.oceanexpert.org/expert/21997 -https://www.oceanexpert.org/expert/22601 -https://www.oceanexpert.org/expert/42641 -https://www.oceanexpert.org/expert/20965 -https://www.oceanexpert.org/expert/18051 -https://www.oceanexpert.org/expert/33679 -https://www.oceanexpert.org/event/1890 -https://www.oceanexpert.org/expert/2284 -https://www.oceanexpert.org/expert/26756 -https://www.oceanexpert.org/expert/27678 -https://www.oceanexpert.org/expert/33467 -https://www.oceanexpert.org/expert/32094 -https://www.oceanexpert.org/institution/12534 -https://www.oceanexpert.org/institution/18077 -https://www.oceanexpert.org/event/2980 -https://www.oceanexpert.org/expert/31576 -https://www.oceanexpert.org/expert/19216 -https://www.oceanexpert.org/expert/18324 -https://www.oceanexpert.org/expert/28275 -https://www.oceanexpert.org/institution/11460 -https://www.oceanexpert.org/institution/14083 -https://www.oceanexpert.org/expert/33172 -https://www.oceanexpert.org/expert/29455 -https://www.oceanexpert.org/expert/42722 -https://www.oceanexpert.org/event/2984 -https://www.oceanexpert.org/expert/27487 -https://www.oceanexpert.org/expert/24054 -https://www.oceanexpert.org/expert/17880 -https://www.oceanexpert.org/expert/7426 -https://www.oceanexpert.org/expert/2846 -https://www.oceanexpert.org/expert/44409 -https://www.oceanexpert.org/expert/47073 -https://www.oceanexpert.org/event/1696 -https://www.oceanexpert.org/expert/45408 -https://www.oceanexpert.org/institution/21796 -https://www.oceanexpert.org/expert/43726 -https://www.oceanexpert.org/institution/17822 -https://www.oceanexpert.org/event/664 -https://www.oceanexpert.org/expert/23302 -https://www.oceanexpert.org/expert/48597 -https://www.oceanexpert.org/expert/13614 -https://www.oceanexpert.org/institution/12980 -https://www.oceanexpert.org/expert/22777 -https://www.oceanexpert.org/expert/34282 -https://www.oceanexpert.org/expert/22282 -https://www.oceanexpert.org/expert/35332 -https://www.oceanexpert.org/expert/21892 -https://www.oceanexpert.org/expert/22714 -https://www.oceanexpert.org/expert/37821 -https://www.oceanexpert.org/expert/33321 -https://www.oceanexpert.org/institution/20126 -https://www.oceanexpert.org/expert/16280 -https://www.oceanexpert.org/expert/39520 -https://www.oceanexpert.org/expert/20675 -https://www.oceanexpert.org/expert/14439 -https://www.oceanexpert.org/expert/28494 -https://www.oceanexpert.org/expert/19632 -https://www.oceanexpert.org/institution/13613 -https://www.oceanexpert.org/institution/19085 -https://www.oceanexpert.org/expert/14417 -https://www.oceanexpert.org/institution/5041 -https://www.oceanexpert.org/expert/29566 -https://www.oceanexpert.org/expert/20169 -https://www.oceanexpert.org/expert/12810 -https://www.oceanexpert.org/expert/20633 -https://www.oceanexpert.org/expert/43661 -https://www.oceanexpert.org/expert/38653 -https://www.oceanexpert.org/expert/42618 -https://www.oceanexpert.org/expert/32609 -https://www.oceanexpert.org/expert/41047 -https://www.oceanexpert.org/expert/43201 -https://www.oceanexpert.org/expert/29024 -https://www.oceanexpert.org/expert/34859 -https://www.oceanexpert.org/expert/23260 -https://www.oceanexpert.org/expert/39635 -https://www.oceanexpert.org/expert/34467 -https://www.oceanexpert.org/expert/29917 -https://www.oceanexpert.org/expert/22584 -https://www.oceanexpert.org/institution/21412 -https://www.oceanexpert.org/expert/19430 -https://www.oceanexpert.org/expert/24221 -https://www.oceanexpert.org/expert/36905 -https://www.oceanexpert.org/institution/18338 -https://www.oceanexpert.org/expert/40977 -https://www.oceanexpert.org/expert/20469 -https://www.oceanexpert.org/expert/21209 -https://www.oceanexpert.org/expert/40030 -https://www.oceanexpert.org/expert/27020 -https://www.oceanexpert.org/expert/20523 -https://www.oceanexpert.org/institution/13100 -https://www.oceanexpert.org/institution/10307 -https://www.oceanexpert.org/expert/30044 -https://www.oceanexpert.org/expert/21628 -https://www.oceanexpert.org/expert/29773 -https://www.oceanexpert.org/institution/7004 -https://www.oceanexpert.org/expert/30309 -https://www.oceanexpert.org/expert/25837 -https://www.oceanexpert.org/institution/22069 -https://www.oceanexpert.org/expert/12360 -https://www.oceanexpert.org/expert/24463 -https://www.oceanexpert.org/expert/37370 -https://www.oceanexpert.org/institution/16361 -https://www.oceanexpert.org/event/722 -https://www.oceanexpert.org/institution/18924 -https://www.oceanexpert.org/expert/48816 -https://www.oceanexpert.org/expert/20867 -https://www.oceanexpert.org/expert/43924 -https://www.oceanexpert.org/expert/24540 -https://www.oceanexpert.org/event/477 -https://www.oceanexpert.org/institution/9868 -https://www.oceanexpert.org/expert/39651 -https://www.oceanexpert.org/event/1637 -https://www.oceanexpert.org/institution/21208 -https://www.oceanexpert.org/event/892 -https://www.oceanexpert.org/institution/18592 -https://www.oceanexpert.org/expert/45190 -https://www.oceanexpert.org/expert/43085 -https://www.oceanexpert.org/event/2435 -https://www.oceanexpert.org/expert/33424 -https://www.oceanexpert.org/institution/21363 -https://www.oceanexpert.org/expert/18628 -https://www.oceanexpert.org/institution/18437 -https://www.oceanexpert.org/expert/33826 -https://www.oceanexpert.org/expert/18982 -https://www.oceanexpert.org/expert/43256 -https://www.oceanexpert.org/expert/39162 -https://www.oceanexpert.org/expert/36499 -https://www.oceanexpert.org/expert/22186 -https://www.oceanexpert.org/institution/11706 -https://www.oceanexpert.org/expert/36695 -https://www.oceanexpert.org/expert/35005 -https://www.oceanexpert.org/expert/16354 -https://www.oceanexpert.org/expert/6879 -https://www.oceanexpert.org/institution/21520 -https://www.oceanexpert.org/expert/45495 -https://www.oceanexpert.org/expert/14570 -https://www.oceanexpert.org/expert/40350 -https://www.oceanexpert.org/institution/21552 -https://www.oceanexpert.org/expert/33083 -https://www.oceanexpert.org/expert/30860 -https://www.oceanexpert.org/expert/45410 -https://www.oceanexpert.org/institution/20833 -https://www.oceanexpert.org/expert/25439 -https://www.oceanexpert.org/expert/43590 -https://www.oceanexpert.org/expert/34382 -https://www.oceanexpert.org/expert/36438 -https://www.oceanexpert.org/expert/40981 -https://www.oceanexpert.org/event/46 -https://www.oceanexpert.org/expert/23468 -https://www.oceanexpert.org/expert/24665 -https://www.oceanexpert.org/expert/20002 -https://www.oceanexpert.org/institution/9279 -https://www.oceanexpert.org/institution/11415 -https://www.oceanexpert.org/expert/1971 -https://www.oceanexpert.org/expert/36108 -https://www.oceanexpert.org/expert/43348 -https://www.oceanexpert.org/expert/22602 -https://www.oceanexpert.org/event/773 -https://www.oceanexpert.org/institution/11285 -https://www.oceanexpert.org/expert/24465 -https://www.oceanexpert.org/expert/44124 -https://www.oceanexpert.org/institution/21549 -https://www.oceanexpert.org/expert/23477 -https://www.oceanexpert.org/event/2965 -https://www.oceanexpert.org/institution/20273 -https://www.oceanexpert.org/expert/38834 -https://www.oceanexpert.org/expert/24400 -https://www.oceanexpert.org/expert/2924 -https://www.oceanexpert.org/expert/48457 -https://www.oceanexpert.org/expert/46224 -https://www.oceanexpert.org/expert/48878 -https://www.oceanexpert.org/expert/42637 -https://www.oceanexpert.org/expert/3476 -https://www.oceanexpert.org/expert/26804 -https://www.oceanexpert.org/institution/8289 -https://www.oceanexpert.org/expert/46446 -https://www.oceanexpert.org/expert/35343 -https://www.oceanexpert.org/expert/36740 -https://www.oceanexpert.org/expert/34878 -https://www.oceanexpert.org/event/2745 -https://www.oceanexpert.org/institution/6362 -https://www.oceanexpert.org/event/2603 -https://www.oceanexpert.org/expert/46807 -https://www.oceanexpert.org/expert/47971 -https://www.oceanexpert.org/expert/30014 -https://www.oceanexpert.org/expert/22206 -https://www.oceanexpert.org/expert/26713 -https://www.oceanexpert.org/expert/13043 -https://www.oceanexpert.org/institution/21304 -https://www.oceanexpert.org/expert/34741 -https://www.oceanexpert.org/expert/44875 -https://www.oceanexpert.org/expert/17035 -https://www.oceanexpert.org/expert/29703 -https://www.oceanexpert.org/expert/24791 -https://www.oceanexpert.org/expert/45222 -https://www.oceanexpert.org/expert/30749 -https://www.oceanexpert.org/expert/25306 -https://www.oceanexpert.org/expert/1883 -https://www.oceanexpert.org/expert/27171 -https://www.oceanexpert.org/institution/18223 -https://www.oceanexpert.org/expert/26640 -https://www.oceanexpert.org/expert/48577 -https://www.oceanexpert.org/institution/21881 -https://www.oceanexpert.org/institution/11666 -https://www.oceanexpert.org/expert/13258 -https://www.oceanexpert.org/institution/19229 -https://www.oceanexpert.org/institution/18759 -https://www.oceanexpert.org/institution/13570 -https://www.oceanexpert.org/institution/21879 -https://www.oceanexpert.org/institution/17043 -https://www.oceanexpert.org/expert/27758 -https://www.oceanexpert.org/expert/16053 -https://www.oceanexpert.org/expert/4212 -https://www.oceanexpert.org/institution/18462 -https://www.oceanexpert.org/institution/12461 -https://www.oceanexpert.org/expert/26925 -https://www.oceanexpert.org/expert/22781 -https://www.oceanexpert.org/event/1956 -https://www.oceanexpert.org/expert/2046 -https://www.oceanexpert.org/expert/48096 -https://www.oceanexpert.org/expert/25287 -https://www.oceanexpert.org/expert/47432 -https://www.oceanexpert.org/expert/37242 -https://www.oceanexpert.org/expert/35668 -https://www.oceanexpert.org/institution/18257 -https://www.oceanexpert.org/expert/20344 -https://www.oceanexpert.org/expert/24064 -https://www.oceanexpert.org/expert/26513 -https://www.oceanexpert.org/event/2118 -https://www.oceanexpert.org/expert/30176 -https://www.oceanexpert.org/institution/16096 -https://www.oceanexpert.org/expert/19114 -https://www.oceanexpert.org/event/2985 -https://www.oceanexpert.org/institution/12175 -https://www.oceanexpert.org/institution/20885 -https://www.oceanexpert.org/expert/17112 -https://www.oceanexpert.org/expert/32930 -https://www.oceanexpert.org/expert/291 -https://www.oceanexpert.org/institution/13803 -https://www.oceanexpert.org/expert/20349 -https://www.oceanexpert.org/expert/6235 -https://www.oceanexpert.org/expert/38227 -https://www.oceanexpert.org/expert/19346 -https://www.oceanexpert.org/expert/43930 -https://www.oceanexpert.org/expert/14425 -https://www.oceanexpert.org/institution/22087 -https://www.oceanexpert.org/expert/7990 -https://www.oceanexpert.org/expert/31593 -https://www.oceanexpert.org/institution/12984 -https://www.oceanexpert.org/event/1929 -https://www.oceanexpert.org/expert/39415 -https://www.oceanexpert.org/expert/29746 -https://www.oceanexpert.org/expert/7395 -https://www.oceanexpert.org/expert/47610 -https://www.oceanexpert.org/institution/6731 -https://www.oceanexpert.org/institution/22170 -https://www.oceanexpert.org/expert/1575 -https://www.oceanexpert.org/expert/48380 -https://www.oceanexpert.org/expert/23201 -https://www.oceanexpert.org/expert/43367 -https://www.oceanexpert.org/event/3081 -https://www.oceanexpert.org/expert/17211 -https://www.oceanexpert.org/event/325 -https://www.oceanexpert.org/expert/6322 -https://www.oceanexpert.org/expert/46503 -https://www.oceanexpert.org/expert/47561 -https://www.oceanexpert.org/expert/43145 -https://www.oceanexpert.org/institution/19004 -https://www.oceanexpert.org/expert/26479 -https://www.oceanexpert.org/expert/39270 -https://www.oceanexpert.org/event/2279 -https://www.oceanexpert.org/expert/30546 -https://www.oceanexpert.org/institution/18365 -https://www.oceanexpert.org/expert/32444 -https://www.oceanexpert.org/expert/43430 -https://www.oceanexpert.org/expert/25061 -https://www.oceanexpert.org/institution/13604 -https://www.oceanexpert.org/institution/19659 -https://www.oceanexpert.org/expert/34428 -https://www.oceanexpert.org/institution/17037 -https://www.oceanexpert.org/institution/13412 -https://www.oceanexpert.org/expert/45686 -https://www.oceanexpert.org/expert/44421 -https://www.oceanexpert.org/expert/15837 -https://www.oceanexpert.org/expert/34893 -https://www.oceanexpert.org/institution/7631 -https://www.oceanexpert.org/institution/16927 -https://www.oceanexpert.org/event/1899 -https://www.oceanexpert.org/institution/6080 -https://www.oceanexpert.org/expert/26136 -https://www.oceanexpert.org/expert/47395 -https://www.oceanexpert.org/institution/11486 -https://www.oceanexpert.org/expert/21477 -https://www.oceanexpert.org/institution/6753 -https://www.oceanexpert.org/expert/46243 -https://www.oceanexpert.org/expert/48802 -https://www.oceanexpert.org/event/1965 -https://www.oceanexpert.org/institution/18863 -https://www.oceanexpert.org/expert/39050 -https://www.oceanexpert.org/expert/37053 -https://www.oceanexpert.org/expert/32059 -https://www.oceanexpert.org/expert/48535 -https://www.oceanexpert.org/institution/21019 -https://www.oceanexpert.org/expert/18371 -https://www.oceanexpert.org/expert/9310 -https://www.oceanexpert.org/expert/27084 -https://www.oceanexpert.org/expert/39167 -https://www.oceanexpert.org/institution/11762 -https://www.oceanexpert.org/institution/18703 -https://www.oceanexpert.org/expert/48906 -https://www.oceanexpert.org/expert/21857 -https://www.oceanexpert.org/expert/21768 -https://www.oceanexpert.org/expert/43805 -https://www.oceanexpert.org/expert/36676 -https://www.oceanexpert.org/expert/45335 -https://www.oceanexpert.org/institution/16461 -https://www.oceanexpert.org/expert/23192 -https://www.oceanexpert.org/institution/10296 -https://www.oceanexpert.org/expert/33265 -https://www.oceanexpert.org/expert/48948 -https://www.oceanexpert.org/expert/7203 -https://www.oceanexpert.org/institution/21170 -https://www.oceanexpert.org/expert/26703 -https://www.oceanexpert.org/expert/46008 -https://www.oceanexpert.org/expert/22530 -https://www.oceanexpert.org/event/715 -https://www.oceanexpert.org/expert/44611 -https://www.oceanexpert.org/event/2362 -https://www.oceanexpert.org/expert/13086 -https://www.oceanexpert.org/institution/10719 -https://www.oceanexpert.org/expert/20029 -https://www.oceanexpert.org/expert/48758 -https://www.oceanexpert.org/event/501 -https://www.oceanexpert.org/expert/22750 -https://www.oceanexpert.org/expert/19936 -https://www.oceanexpert.org/expert/45434 -https://www.oceanexpert.org/expert/22040 -https://www.oceanexpert.org/institution/12488 -https://www.oceanexpert.org/expert/48952 -https://www.oceanexpert.org/expert/37520 -https://www.oceanexpert.org/expert/26163 -https://www.oceanexpert.org/expert/7038 -https://www.oceanexpert.org/expert/35367 -https://www.oceanexpert.org/expert/29434 -https://www.oceanexpert.org/expert/18689 -https://www.oceanexpert.org/expert/23883 -https://www.oceanexpert.org/event/1837 -https://www.oceanexpert.org/institution/19363 -https://www.oceanexpert.org/expert/20566 -https://www.oceanexpert.org/expert/44430 -https://www.oceanexpert.org/event/1255 -https://www.oceanexpert.org/institution/7227 -https://www.oceanexpert.org/institution/20145 -https://www.oceanexpert.org/expert/34776 -https://www.oceanexpert.org/expert/23291 -https://www.oceanexpert.org/expert/33440 -https://www.oceanexpert.org/institution/18508 -https://www.oceanexpert.org/institution/21242 -https://www.oceanexpert.org/institution/21789 -https://www.oceanexpert.org/expert/27186 -https://www.oceanexpert.org/institution/20892 -https://www.oceanexpert.org/institution/11609 -https://www.oceanexpert.org/event/2701 -https://www.oceanexpert.org/expert/24427 -https://www.oceanexpert.org/expert/46710 -https://www.oceanexpert.org/expert/25438 -https://www.oceanexpert.org/expert/34541 -https://www.oceanexpert.org/institution/18975 -https://www.oceanexpert.org/institution/21907 -https://www.oceanexpert.org/expert/44040 -https://www.oceanexpert.org/institution/14558 -https://www.oceanexpert.org/expert/47057 -https://www.oceanexpert.org/institution/18550 -https://www.oceanexpert.org/expert/23962 -https://www.oceanexpert.org/institution/18470 -https://www.oceanexpert.org/institution/9142 -https://www.oceanexpert.org/expert/24238 -https://www.oceanexpert.org/event/1646 -https://www.oceanexpert.org/institution/16460 -https://www.oceanexpert.org/event/937 -https://www.oceanexpert.org/event/1717 -https://www.oceanexpert.org/expert/25698 -https://www.oceanexpert.org/expert/45674 -https://www.oceanexpert.org/expert/13992 -https://www.oceanexpert.org/expert/36457 -https://www.oceanexpert.org/event/2926 -https://www.oceanexpert.org/institution/20771 -https://www.oceanexpert.org/expert/18071 -https://www.oceanexpert.org/expert/45204 -https://www.oceanexpert.org/expert/25970 -https://www.oceanexpert.org/institution/20969 -https://www.oceanexpert.org/institution/18203 -https://www.oceanexpert.org/expert/6235 -https://www.oceanexpert.org/expert/44412 -https://www.oceanexpert.org/expert/44477 -https://www.oceanexpert.org/institution/17669 -https://www.oceanexpert.org/event/1333 -https://www.oceanexpert.org/expert/31036 -https://www.oceanexpert.org/expert/26403 -https://www.oceanexpert.org/expert/7039 -https://www.oceanexpert.org/expert/35630 -https://www.oceanexpert.org/expert/1085 -https://www.oceanexpert.org/expert/27331 -https://www.oceanexpert.org/expert/32234 -https://www.oceanexpert.org/expert/17029 -https://www.oceanexpert.org/expert/24948 -https://www.oceanexpert.org/expert/38470 -https://www.oceanexpert.org/expert/47671 -https://www.oceanexpert.org/expert/25861 -https://www.oceanexpert.org/expert/20000 -https://www.oceanexpert.org/institution/21528 -https://www.oceanexpert.org/institution/17980 -https://www.oceanexpert.org/expert/40294 -https://www.oceanexpert.org/expert/45077 -https://www.oceanexpert.org/expert/33465 -https://www.oceanexpert.org/expert/23800 -https://www.oceanexpert.org/expert/27075 -https://www.oceanexpert.org/institution/18218 -https://www.oceanexpert.org/expert/16486 -https://www.oceanexpert.org/institution/19564 -https://www.oceanexpert.org/expert/27828 -https://www.oceanexpert.org/expert/42546 -https://www.oceanexpert.org/institution/15860 -https://www.oceanexpert.org/expert/3650 -https://www.oceanexpert.org/institution/20414 -https://www.oceanexpert.org/event/1868 -https://www.oceanexpert.org/institution/5805 -https://www.oceanexpert.org/expert/32808 -https://www.oceanexpert.org/expert/37260 -https://www.oceanexpert.org/expert/29702 -https://www.oceanexpert.org/institution/19258 -https://www.oceanexpert.org/expert/21250 -https://www.oceanexpert.org/expert/23370 -https://www.oceanexpert.org/expert/26508 -https://www.oceanexpert.org/expert/42934 -https://www.oceanexpert.org/expert/1947 -https://www.oceanexpert.org/expert/17664 -https://www.oceanexpert.org/expert/47816 -https://www.oceanexpert.org/institution/6676 -https://www.oceanexpert.org/institution/20620 -https://www.oceanexpert.org/expert/36649 -https://www.oceanexpert.org/expert/10941 -https://www.oceanexpert.org/expert/30197 -https://www.oceanexpert.org/institution/9824 -https://www.oceanexpert.org/expert/37359 -https://www.oceanexpert.org/expert/19068 -https://www.oceanexpert.org/institution/12447 -https://www.oceanexpert.org/institution/20606 -https://www.oceanexpert.org/expert/46159 -https://www.oceanexpert.org/expert/21310 -https://www.oceanexpert.org/expert/31326 -https://www.oceanexpert.org/institution/19596 -https://www.oceanexpert.org/expert/23744 -https://www.oceanexpert.org/expert/45150 -https://www.oceanexpert.org/event/2334 -https://www.oceanexpert.org/expert/43332 -https://www.oceanexpert.org/expert/38865 -https://www.oceanexpert.org/expert/24813 -https://www.oceanexpert.org/institution/10324 -https://www.oceanexpert.org/expert/27630 -https://www.oceanexpert.org/expert/23503 -https://www.oceanexpert.org/expert/33862 -https://www.oceanexpert.org/expert/7745 -https://www.oceanexpert.org/expert/31948 -https://www.oceanexpert.org/expert/20958 -https://www.oceanexpert.org/expert/35115 -https://www.oceanexpert.org/expert/4618 -https://www.oceanexpert.org/expert/46166 -https://www.oceanexpert.org/expert/20432 -https://www.oceanexpert.org/expert/37482 -https://www.oceanexpert.org/expert/36436 -https://www.oceanexpert.org/expert/30190 -https://www.oceanexpert.org/expert/43089 -https://www.oceanexpert.org/expert/45406 -https://www.oceanexpert.org/expert/26661 -https://www.oceanexpert.org/expert/43568 -https://www.oceanexpert.org/expert/34549 -https://www.oceanexpert.org/expert/24721 -https://www.oceanexpert.org/expert/7196 -https://www.oceanexpert.org/expert/28093 -https://www.oceanexpert.org/expert/23992 -https://www.oceanexpert.org/expert/36448 -https://www.oceanexpert.org/expert/42772 -https://www.oceanexpert.org/expert/28848 -https://www.oceanexpert.org/event/951 -https://www.oceanexpert.org/event/1892 -https://www.oceanexpert.org/institution/7534 -https://www.oceanexpert.org/expert/13169 -https://www.oceanexpert.org/event/1896 -https://www.oceanexpert.org/expert/44503 -https://www.oceanexpert.org/expert/24513 -https://www.oceanexpert.org/expert/26786 -https://www.oceanexpert.org/expert/30190 -https://www.oceanexpert.org/expert/47384 -https://www.oceanexpert.org/institution/20364 -https://www.oceanexpert.org/expert/20133 -https://www.oceanexpert.org/institution/19375 -https://www.oceanexpert.org/expert/33557 -https://www.oceanexpert.org/expert/12644 -https://www.oceanexpert.org/expert/11217 -https://www.oceanexpert.org/expert/20921 -https://www.oceanexpert.org/event/2588 -https://www.oceanexpert.org/event/2907 -https://www.oceanexpert.org/expert/40892 -https://www.oceanexpert.org/event/3137 -https://www.oceanexpert.org/expert/19625 -https://www.oceanexpert.org/expert/37941 -https://www.oceanexpert.org/expert/30909 -https://www.oceanexpert.org/expert/36341 -https://www.oceanexpert.org/institution/18578 -https://www.oceanexpert.org/expert/8105 -https://www.oceanexpert.org/expert/45932 -https://www.oceanexpert.org/expert/48225 -https://www.oceanexpert.org/institution/5352 -https://www.oceanexpert.org/expert/19427 -https://www.oceanexpert.org/institution/17759 -https://www.oceanexpert.org/expert/21110 -https://www.oceanexpert.org/expert/31059 -https://www.oceanexpert.org/expert/22560 -https://www.oceanexpert.org/expert/35392 -https://www.oceanexpert.org/expert/47271 -https://www.oceanexpert.org/expert/47862 -https://www.oceanexpert.org/expert/47488 -https://www.oceanexpert.org/expert/2164 -https://www.oceanexpert.org/expert/48317 -https://www.oceanexpert.org/institution/21160 -https://www.oceanexpert.org/expert/2225 -https://www.oceanexpert.org/expert/33226 -https://www.oceanexpert.org/expert/18820 -https://www.oceanexpert.org/expert/34427 -https://www.oceanexpert.org/expert/12123 -https://www.oceanexpert.org/expert/36827 -https://www.oceanexpert.org/expert/186 -https://www.oceanexpert.org/expert/40285 -https://www.oceanexpert.org/institution/18737 -https://www.oceanexpert.org/institution/13086 -https://www.oceanexpert.org/expert/26476 -https://www.oceanexpert.org/expert/29155 -https://www.oceanexpert.org/expert/17584 -https://www.oceanexpert.org/expert/42802 -https://www.oceanexpert.org/expert/34697 -https://www.oceanexpert.org/expert/1342 -https://www.oceanexpert.org/expert/26148 -https://www.oceanexpert.org/expert/20319 -https://www.oceanexpert.org/event/1466 -https://www.oceanexpert.org/expert/48861 -https://www.oceanexpert.org/expert/44608 -https://www.oceanexpert.org/expert/17805 -https://www.oceanexpert.org/institution/14107 -https://www.oceanexpert.org/expert/47834 -https://www.oceanexpert.org/expert/28349 -https://www.oceanexpert.org/expert/45857 -https://www.oceanexpert.org/expert/47737 -https://www.oceanexpert.org/institution/12258 -https://www.oceanexpert.org/expert/18742 -https://www.oceanexpert.org/event/3268 -https://www.oceanexpert.org/institution/16026 -https://www.oceanexpert.org/event/468 -https://www.oceanexpert.org/expert/40482 -https://www.oceanexpert.org/expert/40678 -https://www.oceanexpert.org/institution/20664 -https://www.oceanexpert.org/institution/11879 -https://www.oceanexpert.org/expert/43873 -https://www.oceanexpert.org/expert/37651 -https://www.oceanexpert.org/expert/23067 -https://www.oceanexpert.org/expert/34200 -https://www.oceanexpert.org/expert/24969 -https://www.oceanexpert.org/expert/47650 -https://www.oceanexpert.org/expert/27492 -https://www.oceanexpert.org/institution/14377 -https://www.oceanexpert.org/expert/38273 -https://www.oceanexpert.org/institution/21053 -https://www.oceanexpert.org/expert/24164 -https://www.oceanexpert.org/institution/12795 -https://www.oceanexpert.org/institution/19832 -https://www.oceanexpert.org/expert/48487 -https://www.oceanexpert.org/expert/46829 -https://www.oceanexpert.org/expert/24466 -https://www.oceanexpert.org/institution/20689 -https://www.oceanexpert.org/expert/11284 -https://www.oceanexpert.org/expert/48882 -https://www.oceanexpert.org/institution/18938 -https://www.oceanexpert.org/institution/13276 -https://www.oceanexpert.org/expert/45432 -https://www.oceanexpert.org/expert/27407 -https://www.oceanexpert.org/expert/24949 -https://www.oceanexpert.org/expert/18703 -https://www.oceanexpert.org/expert/24976 -https://www.oceanexpert.org/expert/42664 -https://www.oceanexpert.org/expert/968 -https://www.oceanexpert.org/expert/44987 -https://www.oceanexpert.org/expert/4326 -https://www.oceanexpert.org/expert/30893 -https://www.oceanexpert.org/expert/48763 -https://www.oceanexpert.org/expert/24256 -https://www.oceanexpert.org/expert/27033 -https://www.oceanexpert.org/expert/30175 -https://www.oceanexpert.org/expert/44031 -https://www.oceanexpert.org/institution/18433 -https://www.oceanexpert.org/expert/16000 -https://www.oceanexpert.org/expert/45690 -https://www.oceanexpert.org/institution/12751 -https://www.oceanexpert.org/expert/1067 -https://www.oceanexpert.org/expert/4675 -https://www.oceanexpert.org/expert/13174 -https://www.oceanexpert.org/expert/26334 -https://www.oceanexpert.org/expert/27301 -https://www.oceanexpert.org/expert/26774 -https://www.oceanexpert.org/expert/19990 -https://www.oceanexpert.org/expert/47254 -https://www.oceanexpert.org/institution/15246 -https://www.oceanexpert.org/expert/23021 -https://www.oceanexpert.org/expert/37867 -https://www.oceanexpert.org/expert/20925 -https://www.oceanexpert.org/institution/19662 -https://www.oceanexpert.org/expert/33876 -https://www.oceanexpert.org/expert/37012 -https://www.oceanexpert.org/institution/8884 -https://www.oceanexpert.org/expert/44603 -https://www.oceanexpert.org/expert/11834 -https://www.oceanexpert.org/expert/21735 -https://www.oceanexpert.org/expert/26119 -https://www.oceanexpert.org/expert/38546 -https://www.oceanexpert.org/expert/31335 -https://www.oceanexpert.org/expert/31017 -https://www.oceanexpert.org/expert/46965 -https://www.oceanexpert.org/expert/21032 -https://www.oceanexpert.org/expert/26273 -https://www.oceanexpert.org/expert/47074 -https://www.oceanexpert.org/institution/11172 -https://www.oceanexpert.org/institution/9119 -https://www.oceanexpert.org/expert/48925 -https://www.oceanexpert.org/expert/26844 -https://www.oceanexpert.org/expert/33815 -https://www.oceanexpert.org/expert/26215 -https://www.oceanexpert.org/institution/19289 -https://www.oceanexpert.org/expert/47504 -https://www.oceanexpert.org/expert/34995 -https://www.oceanexpert.org/expert/44547 -https://www.oceanexpert.org/expert/25487 -https://www.oceanexpert.org/expert/44099 -https://www.oceanexpert.org/expert/37599 -https://www.oceanexpert.org/institution/19535 -https://www.oceanexpert.org/expert/20281 -https://www.oceanexpert.org/institution/13496 -https://www.oceanexpert.org/institution/21394 -https://www.oceanexpert.org/institution/6931 -https://www.oceanexpert.org/institution/7719 -https://www.oceanexpert.org/expert/21649 -https://www.oceanexpert.org/expert/20912 -https://www.oceanexpert.org/expert/33132 -https://www.oceanexpert.org/expert/22520 -https://www.oceanexpert.org/event/3283 -https://www.oceanexpert.org/expert/26621 -https://www.oceanexpert.org/expert/17356 -https://www.oceanexpert.org/expert/26012 -https://www.oceanexpert.org/institution/21501 -https://www.oceanexpert.org/institution/21625 -https://www.oceanexpert.org/expert/23074 -https://www.oceanexpert.org/event/1898 -https://www.oceanexpert.org/institution/9231 -https://www.oceanexpert.org/institution/16208 -https://www.oceanexpert.org/institution/17107 -https://www.oceanexpert.org/event/988 -https://www.oceanexpert.org/expert/14585 -https://www.oceanexpert.org/expert/16454 -https://www.oceanexpert.org/event/1848 -https://www.oceanexpert.org/institution/20103 -https://www.oceanexpert.org/expert/30409 -https://www.oceanexpert.org/expert/9273 -https://www.oceanexpert.org/institution/13545 -https://www.oceanexpert.org/institution/17829 -https://www.oceanexpert.org/expert/1076 -https://www.oceanexpert.org/expert/45561 -https://www.oceanexpert.org/expert/36682 -https://www.oceanexpert.org/institution/12770 -https://www.oceanexpert.org/expert/42869 -https://www.oceanexpert.org/expert/35495 -https://www.oceanexpert.org/expert/25006 -https://www.oceanexpert.org/institution/11025 -https://www.oceanexpert.org/expert/19429 -https://www.oceanexpert.org/institution/13080 -https://www.oceanexpert.org/expert/34507 -https://www.oceanexpert.org/expert/26702 -https://www.oceanexpert.org/event/1875 -https://www.oceanexpert.org/expert/25827 -https://www.oceanexpert.org/expert/25966 -https://www.oceanexpert.org/institution/12040 -https://www.oceanexpert.org/event/947 -https://www.oceanexpert.org/expert/4675 -https://www.oceanexpert.org/expert/44764 -https://www.oceanexpert.org/expert/44068 -https://www.oceanexpert.org/expert/25601 -https://www.oceanexpert.org/expert/48514 -https://www.oceanexpert.org/expert/24525 -https://www.oceanexpert.org/expert/12447 -https://www.oceanexpert.org/expert/27236 -https://www.oceanexpert.org/expert/29303 -https://www.oceanexpert.org/event/2007 -https://www.oceanexpert.org/expert/36795 -https://www.oceanexpert.org/expert/25092 -https://www.oceanexpert.org/institution/13829 -https://www.oceanexpert.org/expert/38017 -https://www.oceanexpert.org/expert/45347 -https://www.oceanexpert.org/expert/12253 -https://www.oceanexpert.org/event/1667 -https://www.oceanexpert.org/expert/23274 -https://www.oceanexpert.org/institution/17432 -https://www.oceanexpert.org/expert/6209 -https://www.oceanexpert.org/expert/40597 -https://www.oceanexpert.org/expert/19609 -https://www.oceanexpert.org/expert/36347 -https://www.oceanexpert.org/institution/20460 -https://www.oceanexpert.org/expert/26523 -https://www.oceanexpert.org/expert/35835 -https://www.oceanexpert.org/event/1035 -https://www.oceanexpert.org/expert/17468 -https://www.oceanexpert.org/institution/19017 -https://www.oceanexpert.org/expert/42897 -https://www.oceanexpert.org/institution/14880 -https://www.oceanexpert.org/event/1878 -https://www.oceanexpert.org/expert/40045 -https://www.oceanexpert.org/event/1057 -https://www.oceanexpert.org/expert/25677 -https://www.oceanexpert.org/expert/25791 -https://www.oceanexpert.org/expert/46722 -https://www.oceanexpert.org/expert/23764 -https://www.oceanexpert.org/institution/15888 -https://www.oceanexpert.org/expert/25477 -https://www.oceanexpert.org/institution/18279 -https://www.oceanexpert.org/expert/35098 -https://www.oceanexpert.org/expert/23591 -https://www.oceanexpert.org/expert/32526 -https://www.oceanexpert.org/expert/16645 -https://www.oceanexpert.org/expert/48946 -https://www.oceanexpert.org/institution/10259 -https://www.oceanexpert.org/expert/30043 -https://www.oceanexpert.org/expert/179 -https://www.oceanexpert.org/expert/17401 -https://www.oceanexpert.org/expert/36273 -https://www.oceanexpert.org/institution/21734 -https://www.oceanexpert.org/institution/12615 -https://www.oceanexpert.org/expert/35957 -https://www.oceanexpert.org/institution/18679 -https://www.oceanexpert.org/expert/29739 -https://www.oceanexpert.org/institution/7684 -https://www.oceanexpert.org/expert/30937 -https://www.oceanexpert.org/expert/44680 -https://www.oceanexpert.org/expert/44971 -https://www.oceanexpert.org/event/548 -https://www.oceanexpert.org/expert/13909 -https://www.oceanexpert.org/institution/14731 -https://www.oceanexpert.org/expert/36720 -https://www.oceanexpert.org/expert/12238 -https://www.oceanexpert.org/expert/47660 -https://www.oceanexpert.org/event/477 -https://www.oceanexpert.org/expert/7615 -https://www.oceanexpert.org/expert/2977 -https://www.oceanexpert.org/event/626 -https://www.oceanexpert.org/expert/26771 -https://www.oceanexpert.org/event/388 -https://www.oceanexpert.org/event/905 -https://www.oceanexpert.org/expert/1423 -https://www.oceanexpert.org/expert/28231 -https://www.oceanexpert.org/expert/25231 -https://www.oceanexpert.org/event/2691 -https://www.oceanexpert.org/expert/18820 -https://www.oceanexpert.org/expert/38420 -https://www.oceanexpert.org/expert/13440 -https://www.oceanexpert.org/expert/18402 -https://www.oceanexpert.org/institution/21693 -https://www.oceanexpert.org/expert/32516 -https://www.oceanexpert.org/institution/20957 -https://www.oceanexpert.org/institution/17090 -https://www.oceanexpert.org/expert/32288 -https://www.oceanexpert.org/expert/18352 -https://www.oceanexpert.org/institution/21212 -https://www.oceanexpert.org/expert/2519 -https://www.oceanexpert.org/institution/17224 -https://www.oceanexpert.org/expert/45714 -https://www.oceanexpert.org/expert/42998 -https://www.oceanexpert.org/event/2505 -https://www.oceanexpert.org/event/2158 -https://www.oceanexpert.org/expert/34770 -https://www.oceanexpert.org/event/2865 -https://www.oceanexpert.org/expert/36585 -https://www.oceanexpert.org/event/1067 -https://www.oceanexpert.org/institution/21933 -https://www.oceanexpert.org/institution/17899 -https://www.oceanexpert.org/expert/19077 -https://www.oceanexpert.org/expert/11273 -https://www.oceanexpert.org/institution/20513 -https://www.oceanexpert.org/institution/8011 -https://www.oceanexpert.org/expert/32977 -https://www.oceanexpert.org/expert/48562 -https://www.oceanexpert.org/institution/15215 -https://www.oceanexpert.org/expert/22766 -https://www.oceanexpert.org/expert/22095 -https://www.oceanexpert.org/expert/25833 -https://www.oceanexpert.org/expert/43436 -https://www.oceanexpert.org/expert/46780 -https://www.oceanexpert.org/institution/18510 -https://www.oceanexpert.org/expert/42925 -https://www.oceanexpert.org/institution/20401 -https://www.oceanexpert.org/institution/9235 -https://www.oceanexpert.org/expert/33352 -https://www.oceanexpert.org/expert/38002 -https://www.oceanexpert.org/expert/26391 -https://www.oceanexpert.org/expert/48561 -https://www.oceanexpert.org/expert/23017 -https://www.oceanexpert.org/expert/8526 -https://www.oceanexpert.org/expert/31101 -https://www.oceanexpert.org/institution/18331 -https://www.oceanexpert.org/institution/15890 -https://www.oceanexpert.org/expert/10383 -https://www.oceanexpert.org/institution/19133 -https://www.oceanexpert.org/expert/20103 -https://www.oceanexpert.org/expert/20019 -https://www.oceanexpert.org/institution/20750 -https://www.oceanexpert.org/institution/15030 -https://www.oceanexpert.org/institution/17774 -https://www.oceanexpert.org/event/24 -https://www.oceanexpert.org/institution/21697 -https://www.oceanexpert.org/expert/22037 -https://www.oceanexpert.org/expert/42783 -https://www.oceanexpert.org/expert/6785 -https://www.oceanexpert.org/institution/11544 -https://www.oceanexpert.org/expert/19619 -https://www.oceanexpert.org/expert/12690 -https://www.oceanexpert.org/expert/18513 -https://www.oceanexpert.org/institution/14737 -https://www.oceanexpert.org/expert/37494 -https://www.oceanexpert.org/expert/42634 -https://www.oceanexpert.org/institution/20644 -https://www.oceanexpert.org/expert/36043 -https://www.oceanexpert.org/institution/17158 -https://www.oceanexpert.org/expert/20393 -https://www.oceanexpert.org/expert/43128 -https://www.oceanexpert.org/expert/41921 -https://www.oceanexpert.org/expert/28270 -https://www.oceanexpert.org/expert/48735 -https://www.oceanexpert.org/expert/40242 -https://www.oceanexpert.org/institution/13100 -https://www.oceanexpert.org/expert/32284 -https://www.oceanexpert.org/expert/16017 -https://www.oceanexpert.org/institution/14014 -https://www.oceanexpert.org/event/1555 -https://www.oceanexpert.org/expert/44050 -https://www.oceanexpert.org/expert/45828 -https://www.oceanexpert.org/expert/23626 -https://www.oceanexpert.org/expert/23421 -https://www.oceanexpert.org/expert/30574 -https://www.oceanexpert.org/institution/21000 -https://www.oceanexpert.org/expert/49006 -https://www.oceanexpert.org/expert/2254 -https://www.oceanexpert.org/expert/17776 -https://www.oceanexpert.org/expert/22574 -https://www.oceanexpert.org/expert/46354 -https://www.oceanexpert.org/expert/48187 -https://www.oceanexpert.org/expert/18848 -https://www.oceanexpert.org/expert/19094 -https://www.oceanexpert.org/expert/12806 -https://www.oceanexpert.org/expert/30837 -https://www.oceanexpert.org/expert/21000 -https://www.oceanexpert.org/event/2328 -https://www.oceanexpert.org/expert/8068 -https://www.oceanexpert.org/event/2826 -https://www.oceanexpert.org/expert/26005 -https://www.oceanexpert.org/expert/18603 -https://www.oceanexpert.org/expert/16980 -https://www.oceanexpert.org/institution/14752 -https://www.oceanexpert.org/expert/46550 -https://www.oceanexpert.org/institution/18602 -https://www.oceanexpert.org/expert/44154 -https://www.oceanexpert.org/institution/18901 -https://www.oceanexpert.org/expert/42476 -https://www.oceanexpert.org/institution/10708 -https://www.oceanexpert.org/expert/39176 -https://www.oceanexpert.org/expert/33150 -https://www.oceanexpert.org/expert/19392 -https://www.oceanexpert.org/expert/19288 -https://www.oceanexpert.org/expert/38458 -https://www.oceanexpert.org/institution/6717 -https://www.oceanexpert.org/institution/6639 -https://www.oceanexpert.org/expert/20980 -https://www.oceanexpert.org/institution/6586 -https://www.oceanexpert.org/expert/27520 -https://www.oceanexpert.org/expert/42973 -https://www.oceanexpert.org/institution/8299 -https://www.oceanexpert.org/event/464 -https://www.oceanexpert.org/institution/15824 -https://www.oceanexpert.org/expert/44520 -https://www.oceanexpert.org/expert/36414 -https://www.oceanexpert.org/expert/37247 -https://www.oceanexpert.org/expert/36330 -https://www.oceanexpert.org/expert/23653 -https://www.oceanexpert.org/institution/16397 -https://www.oceanexpert.org/event/981 -https://www.oceanexpert.org/expert/38766 -https://www.oceanexpert.org/expert/7379 -https://www.oceanexpert.org/expert/46414 -https://www.oceanexpert.org/expert/30338 -https://www.oceanexpert.org/event/2406 -https://www.oceanexpert.org/event/2905 -https://www.oceanexpert.org/event/337 -https://www.oceanexpert.org/expert/27984 -https://www.oceanexpert.org/expert/21871 -https://www.oceanexpert.org/event/1365 -https://www.oceanexpert.org/expert/20366 -https://www.oceanexpert.org/expert/42192 -https://www.oceanexpert.org/expert/22317 -https://www.oceanexpert.org/event/1318 -https://www.oceanexpert.org/expert/38555 -https://www.oceanexpert.org/expert/47048 -https://www.oceanexpert.org/expert/16045 -https://www.oceanexpert.org/institution/13075 -https://www.oceanexpert.org/expert/17334 -https://www.oceanexpert.org/expert/8059 -https://www.oceanexpert.org/expert/36949 -https://www.oceanexpert.org/expert/37508 -https://www.oceanexpert.org/expert/47576 -https://www.oceanexpert.org/institution/18627 -https://www.oceanexpert.org/expert/22218 -https://www.oceanexpert.org/expert/44373 -https://www.oceanexpert.org/expert/23964 -https://www.oceanexpert.org/event/225 -https://www.oceanexpert.org/expert/15048 -https://www.oceanexpert.org/expert/42905 -https://www.oceanexpert.org/expert/22234 -https://www.oceanexpert.org/expert/31205 -https://www.oceanexpert.org/expert/28055 -https://www.oceanexpert.org/expert/38236 -https://www.oceanexpert.org/expert/22015 -https://www.oceanexpert.org/expert/13635 -https://www.oceanexpert.org/expert/19337 -https://www.oceanexpert.org/expert/11858 -https://www.oceanexpert.org/expert/11515 -https://www.oceanexpert.org/institution/11242 -https://www.oceanexpert.org/event/2285 -https://www.oceanexpert.org/expert/47055 -https://www.oceanexpert.org/expert/43369 -https://www.oceanexpert.org/event/3053 -https://www.oceanexpert.org/institution/13264 -https://www.oceanexpert.org/expert/2860 -https://www.oceanexpert.org/event/2239 -https://www.oceanexpert.org/institution/19763 -https://www.oceanexpert.org/expert/47187 -https://www.oceanexpert.org/expert/18679 -https://www.oceanexpert.org/event/2219 -https://www.oceanexpert.org/expert/24496 -https://www.oceanexpert.org/institution/8663 -https://www.oceanexpert.org/institution/18162 -https://www.oceanexpert.org/institution/16023 -https://www.oceanexpert.org/expert/26423 -https://www.oceanexpert.org/expert/28348 -https://www.oceanexpert.org/expert/11524 -https://www.oceanexpert.org/expert/34246 -https://www.oceanexpert.org/expert/45901 -https://www.oceanexpert.org/expert/24354 -https://www.oceanexpert.org/expert/37369 -https://www.oceanexpert.org/institution/12150 -https://www.oceanexpert.org/event/1073 -https://www.oceanexpert.org/expert/27042 -https://www.oceanexpert.org/expert/34981 -https://www.oceanexpert.org/expert/45039 -https://www.oceanexpert.org/institution/14283 -https://www.oceanexpert.org/expert/45405 -https://www.oceanexpert.org/institution/15503 -https://www.oceanexpert.org/expert/37789 -https://www.oceanexpert.org/expert/25508 -https://www.oceanexpert.org/institution/18102 -https://www.oceanexpert.org/expert/1189 -https://www.oceanexpert.org/expert/22731 -https://www.oceanexpert.org/expert/29989 -https://www.oceanexpert.org/expert/46800 -https://www.oceanexpert.org/expert/33848 -https://www.oceanexpert.org/expert/23205 -https://www.oceanexpert.org/institution/18359 -https://www.oceanexpert.org/institution/17912 -https://www.oceanexpert.org/institution/16843 -https://www.oceanexpert.org/expert/33269 -https://www.oceanexpert.org/expert/7578 -https://www.oceanexpert.org/expert/23419 -https://www.oceanexpert.org/expert/20941 -https://www.oceanexpert.org/institution/20614 -https://www.oceanexpert.org/expert/23882 -https://www.oceanexpert.org/expert/29097 -https://www.oceanexpert.org/institution/21162 -https://www.oceanexpert.org/institution/19987 -https://www.oceanexpert.org/expert/40670 -https://www.oceanexpert.org/expert/3784 -https://www.oceanexpert.org/expert/26840 -https://www.oceanexpert.org/expert/27303 -https://www.oceanexpert.org/expert/16546 -https://www.oceanexpert.org/institution/14338 -https://www.oceanexpert.org/expert/33248 -https://www.oceanexpert.org/expert/18660 -https://www.oceanexpert.org/institution/21936 -https://www.oceanexpert.org/expert/32306 -https://www.oceanexpert.org/expert/22823 -https://www.oceanexpert.org/institution/19296 -https://www.oceanexpert.org/institution/18409 -https://www.oceanexpert.org/expert/30388 -https://www.oceanexpert.org/expert/29563 -https://www.oceanexpert.org/institution/12053 -https://www.oceanexpert.org/expert/47030 -https://www.oceanexpert.org/expert/32528 -https://www.oceanexpert.org/expert/34235 -https://www.oceanexpert.org/expert/24458 -https://www.oceanexpert.org/expert/25239 -https://www.oceanexpert.org/event/187 -https://www.oceanexpert.org/expert/36409 -https://www.oceanexpert.org/expert/24195 -https://www.oceanexpert.org/event/1145 -https://www.oceanexpert.org/expert/46394 -https://www.oceanexpert.org/expert/15311 -https://www.oceanexpert.org/expert/18828 -https://www.oceanexpert.org/expert/37401 -https://www.oceanexpert.org/institution/5872 -https://www.oceanexpert.org/expert/13974 -https://www.oceanexpert.org/expert/39032 -https://www.oceanexpert.org/institution/6815 -https://www.oceanexpert.org/expert/29510 -https://www.oceanexpert.org/expert/18054 -https://www.oceanexpert.org/expert/48807 -https://www.oceanexpert.org/expert/40350 -https://www.oceanexpert.org/expert/22451 -https://www.oceanexpert.org/expert/27427 -https://www.oceanexpert.org/institution/21792 -https://www.oceanexpert.org/expert/7821 -https://www.oceanexpert.org/institution/18944 -https://www.oceanexpert.org/expert/6897 -https://www.oceanexpert.org/expert/22632 -https://www.oceanexpert.org/expert/34776 -https://www.oceanexpert.org/institution/10268 -https://www.oceanexpert.org/institution/20876 -https://www.oceanexpert.org/expert/8704 -https://www.oceanexpert.org/expert/7650 -https://www.oceanexpert.org/expert/25245 -https://www.oceanexpert.org/institution/12030 -https://www.oceanexpert.org/institution/10413 -https://www.oceanexpert.org/expert/26575 -https://www.oceanexpert.org/expert/17820 -https://www.oceanexpert.org/expert/13495 -https://www.oceanexpert.org/expert/44196 -https://www.oceanexpert.org/expert/13861 -https://www.oceanexpert.org/expert/34493 -https://www.oceanexpert.org/expert/32323 -https://www.oceanexpert.org/expert/46215 -https://www.oceanexpert.org/institution/5893 -https://www.oceanexpert.org/expert/22623 -https://www.oceanexpert.org/institution/21299 -https://www.oceanexpert.org/expert/13923 -https://www.oceanexpert.org/event/1532 -https://www.oceanexpert.org/expert/14148 -https://www.oceanexpert.org/expert/44850 -https://www.oceanexpert.org/expert/23435 -https://www.oceanexpert.org/event/2401 -https://www.oceanexpert.org/expert/24209 -https://www.oceanexpert.org/expert/37506 -https://www.oceanexpert.org/institution/16616 -https://www.oceanexpert.org/institution/20450 -https://www.oceanexpert.org/expert/35384 -https://www.oceanexpert.org/institution/16247 -https://www.oceanexpert.org/expert/27956 -https://www.oceanexpert.org/institution/20222 -https://www.oceanexpert.org/expert/48570 -https://www.oceanexpert.org/institution/17573 -https://www.oceanexpert.org/expert/36774 -https://www.oceanexpert.org/institution/21706 -https://www.oceanexpert.org/institution/12919 -https://www.oceanexpert.org/institution/17778 -https://www.oceanexpert.org/event/1070 -https://www.oceanexpert.org/expert/36395 -https://www.oceanexpert.org/institution/21198 -https://www.oceanexpert.org/expert/22030 -https://www.oceanexpert.org/expert/14129 -https://www.oceanexpert.org/expert/33373 -https://www.oceanexpert.org/expert/8066 -https://www.oceanexpert.org/expert/35395 -https://www.oceanexpert.org/institution/19007 -https://www.oceanexpert.org/institution/11145 -https://www.oceanexpert.org/event/705 -https://www.oceanexpert.org/institution/13107 -https://www.oceanexpert.org/expert/46292 -https://www.oceanexpert.org/expert/38013 -https://www.oceanexpert.org/expert/42640 -https://www.oceanexpert.org/expert/27489 -https://www.oceanexpert.org/institution/12171 -https://www.oceanexpert.org/institution/20968 -https://www.oceanexpert.org/expert/21098 -https://www.oceanexpert.org/expert/19674 -https://www.oceanexpert.org/event/1579 -https://www.oceanexpert.org/event/2946 -https://www.oceanexpert.org/event/267 -https://www.oceanexpert.org/expert/45417 -https://www.oceanexpert.org/expert/42672 -https://www.oceanexpert.org/expert/35509 -https://www.oceanexpert.org/institution/12461 -https://www.oceanexpert.org/institution/21155 -https://www.oceanexpert.org/expert/32619 -https://www.oceanexpert.org/institution/21992 -https://www.oceanexpert.org/expert/18637 -https://www.oceanexpert.org/institution/5804 -https://www.oceanexpert.org/expert/46405 -https://www.oceanexpert.org/institution/21972 -https://www.oceanexpert.org/institution/13556 -https://www.oceanexpert.org/expert/29323 -https://www.oceanexpert.org/expert/27622 -https://www.oceanexpert.org/expert/26310 -https://www.oceanexpert.org/event/2522 -https://www.oceanexpert.org/expert/43093 -https://www.oceanexpert.org/institution/10577 -https://www.oceanexpert.org/expert/14663 -https://www.oceanexpert.org/expert/45375 -https://www.oceanexpert.org/expert/27264 -https://www.oceanexpert.org/expert/20782 -https://www.oceanexpert.org/expert/24212 -https://www.oceanexpert.org/event/1166 -https://www.oceanexpert.org/expert/21114 -https://www.oceanexpert.org/expert/20129 -https://www.oceanexpert.org/institution/19061 -https://www.oceanexpert.org/expert/37368 -https://www.oceanexpert.org/institution/21698 -https://www.oceanexpert.org/institution/21268 -https://www.oceanexpert.org/event/1410 -https://www.oceanexpert.org/institution/16269 -https://www.oceanexpert.org/institution/16121 -https://www.oceanexpert.org/expert/28872 -https://www.oceanexpert.org/expert/44604 -https://www.oceanexpert.org/institution/19387 -https://www.oceanexpert.org/expert/19934 -https://www.oceanexpert.org/institution/12089 -https://www.oceanexpert.org/expert/45699 -https://www.oceanexpert.org/expert/23663 -https://www.oceanexpert.org/expert/46251 -https://www.oceanexpert.org/expert/24203 -https://www.oceanexpert.org/institution/22001 -https://www.oceanexpert.org/expert/36044 -https://www.oceanexpert.org/expert/48860 -https://www.oceanexpert.org/expert/27779 -https://www.oceanexpert.org/institution/13959 -https://www.oceanexpert.org/expert/28150 -https://www.oceanexpert.org/expert/47313 -https://www.oceanexpert.org/expert/47902 -https://www.oceanexpert.org/expert/48628 -https://www.oceanexpert.org/expert/45607 -https://www.oceanexpert.org/expert/35671 -https://www.oceanexpert.org/expert/45997 -https://www.oceanexpert.org/expert/37695 -https://www.oceanexpert.org/institution/17044 -https://www.oceanexpert.org/expert/28453 -https://www.oceanexpert.org/institution/21931 -https://www.oceanexpert.org/institution/7197 -https://www.oceanexpert.org/expert/26512 -https://www.oceanexpert.org/expert/2047 -https://www.oceanexpert.org/institution/9142 -https://www.oceanexpert.org/expert/46734 -https://www.oceanexpert.org/expert/28495 -https://www.oceanexpert.org/institution/19760 -https://www.oceanexpert.org/expert/21743 -https://www.oceanexpert.org/expert/35698 -https://www.oceanexpert.org/institution/20281 -https://www.oceanexpert.org/expert/26298 -https://www.oceanexpert.org/expert/44906 -https://www.oceanexpert.org/expert/28013 -https://www.oceanexpert.org/institution/9140 -https://www.oceanexpert.org/expert/23127 -https://www.oceanexpert.org/institution/10555 -https://www.oceanexpert.org/expert/36663 -https://www.oceanexpert.org/institution/20180 -https://www.oceanexpert.org/expert/46244 -https://www.oceanexpert.org/expert/36104 -https://www.oceanexpert.org/expert/23124 -https://www.oceanexpert.org/expert/8105 -https://www.oceanexpert.org/expert/19493 -https://www.oceanexpert.org/expert/36259 -https://www.oceanexpert.org/expert/29582 -https://www.oceanexpert.org/institution/12956 -https://www.oceanexpert.org/expert/36166 -https://www.oceanexpert.org/event/614 -https://www.oceanexpert.org/expert/35461 -https://www.oceanexpert.org/expert/16102 -https://www.oceanexpert.org/expert/43218 -https://www.oceanexpert.org/event/2271 -https://www.oceanexpert.org/expert/21519 -https://www.oceanexpert.org/event/2981 -https://www.oceanexpert.org/expert/23306 -https://www.oceanexpert.org/expert/2736 -https://www.oceanexpert.org/expert/11449 -https://www.oceanexpert.org/expert/37125 -https://www.oceanexpert.org/expert/29632 -https://www.oceanexpert.org/expert/25475 -https://www.oceanexpert.org/expert/29097 -https://www.oceanexpert.org/expert/22239 -https://www.oceanexpert.org/expert/24208 -https://www.oceanexpert.org/expert/29689 -https://www.oceanexpert.org/expert/38196 -https://www.oceanexpert.org/expert/24828 -https://www.oceanexpert.org/expert/27297 -https://www.oceanexpert.org/expert/17895 -https://www.oceanexpert.org/expert/29246 -https://www.oceanexpert.org/institution/10758 -https://www.oceanexpert.org/institution/14825 -https://www.oceanexpert.org/expert/28094 -https://www.oceanexpert.org/expert/11401 -https://www.oceanexpert.org/expert/45432 -https://www.oceanexpert.org/expert/31302 -https://www.oceanexpert.org/expert/35294 -https://www.oceanexpert.org/expert/21601 -https://www.oceanexpert.org/institution/18255 -https://www.oceanexpert.org/expert/48256 -https://www.oceanexpert.org/expert/12698 -https://www.oceanexpert.org/event/510 -https://www.oceanexpert.org/institution/11989 -https://www.oceanexpert.org/institution/19912 -https://www.oceanexpert.org/institution/20833 -https://www.oceanexpert.org/institution/11323 -https://www.oceanexpert.org/institution/18755 -https://www.oceanexpert.org/expert/32237 -https://www.oceanexpert.org/expert/30278 -https://www.oceanexpert.org/event/1986 -https://www.oceanexpert.org/institution/17503 -https://www.oceanexpert.org/institution/20923 -https://www.oceanexpert.org/expert/23430 -https://www.oceanexpert.org/expert/34762 -https://www.oceanexpert.org/expert/42731 -https://www.oceanexpert.org/institution/10695 -https://www.oceanexpert.org/expert/30210 -https://www.oceanexpert.org/institution/13401 -https://www.oceanexpert.org/institution/8739 -https://www.oceanexpert.org/expert/37596 -https://www.oceanexpert.org/expert/24704 -https://www.oceanexpert.org/expert/23537 -https://www.oceanexpert.org/institution/19300 -https://www.oceanexpert.org/institution/15380 -https://www.oceanexpert.org/expert/42585 -https://www.oceanexpert.org/expert/17108 -https://www.oceanexpert.org/event/1053 -https://www.oceanexpert.org/expert/11643 -https://www.oceanexpert.org/expert/37633 -https://www.oceanexpert.org/event/2919 -https://www.oceanexpert.org/expert/34498 -https://www.oceanexpert.org/expert/18060 -https://www.oceanexpert.org/institution/12114 -https://www.oceanexpert.org/expert/6791 -https://www.oceanexpert.org/institution/6124 -https://www.oceanexpert.org/institution/5839 -https://www.oceanexpert.org/event/1539 -https://www.oceanexpert.org/event/1672 -https://www.oceanexpert.org/expert/523 -https://www.oceanexpert.org/expert/10566 -https://www.oceanexpert.org/event/10 -https://www.oceanexpert.org/expert/43200 -https://www.oceanexpert.org/expert/12734 -https://www.oceanexpert.org/expert/18131 -https://www.oceanexpert.org/institution/12727 -https://www.oceanexpert.org/expert/48445 -https://www.oceanexpert.org/event/236 -https://www.oceanexpert.org/expert/24619 -https://www.oceanexpert.org/expert/46653 -https://www.oceanexpert.org/expert/20401 -https://www.oceanexpert.org/institution/12365 -https://www.oceanexpert.org/expert/48822 -https://www.oceanexpert.org/institution/13172 -https://www.oceanexpert.org/expert/26396 -https://www.oceanexpert.org/expert/18030 -https://www.oceanexpert.org/expert/23806 -https://www.oceanexpert.org/expert/35436 -https://www.oceanexpert.org/expert/32728 -https://www.oceanexpert.org/institution/19824 -https://www.oceanexpert.org/expert/22074 -https://www.oceanexpert.org/expert/46315 -https://www.oceanexpert.org/institution/11707 -https://www.oceanexpert.org/event/988 -https://www.oceanexpert.org/expert/24749 -https://www.oceanexpert.org/institution/18237 -https://www.oceanexpert.org/institution/16800 -https://www.oceanexpert.org/institution/20899 -https://www.oceanexpert.org/expert/27423 -https://www.oceanexpert.org/expert/48769 -https://www.oceanexpert.org/expert/38905 -https://www.oceanexpert.org/expert/35996 -https://www.oceanexpert.org/expert/35072 -https://www.oceanexpert.org/event/3181 -https://www.oceanexpert.org/event/251 -https://www.oceanexpert.org/expert/22916 -https://www.oceanexpert.org/expert/18990 -https://www.oceanexpert.org/expert/32752 -https://www.oceanexpert.org/event/54 -https://www.oceanexpert.org/expert/23787 -https://www.oceanexpert.org/expert/34308 -https://www.oceanexpert.org/expert/21698 -https://www.oceanexpert.org/expert/27937 -https://www.oceanexpert.org/institution/21539 -https://www.oceanexpert.org/expert/12444 -https://www.oceanexpert.org/expert/37183 -https://www.oceanexpert.org/expert/28990 -https://www.oceanexpert.org/expert/22449 -https://www.oceanexpert.org/institution/17427 -https://www.oceanexpert.org/expert/13054 -https://www.oceanexpert.org/expert/16999 -https://www.oceanexpert.org/expert/48628 -https://www.oceanexpert.org/event/1020 -https://www.oceanexpert.org/expert/29669 -https://www.oceanexpert.org/expert/23155 -https://www.oceanexpert.org/expert/29286 -https://www.oceanexpert.org/expert/38892 -https://www.oceanexpert.org/expert/42630 -https://www.oceanexpert.org/expert/45920 -https://www.oceanexpert.org/institution/13747 -https://www.oceanexpert.org/expert/13315 -https://www.oceanexpert.org/expert/30327 -https://www.oceanexpert.org/expert/8877 -https://www.oceanexpert.org/expert/32848 -https://www.oceanexpert.org/expert/35474 -https://www.oceanexpert.org/event/758 -https://www.oceanexpert.org/expert/35732 -https://www.oceanexpert.org/expert/18303 -https://www.oceanexpert.org/institution/12497 -https://www.oceanexpert.org/event/2340 -https://www.oceanexpert.org/expert/7740 -https://www.oceanexpert.org/institution/19197 -https://www.oceanexpert.org/expert/47296 -https://www.oceanexpert.org/event/2664 -https://www.oceanexpert.org/expert/48018 -https://www.oceanexpert.org/expert/25391 -https://www.oceanexpert.org/event/835 -https://www.oceanexpert.org/institution/11997 -https://www.oceanexpert.org/event/760 -https://www.oceanexpert.org/expert/20561 -https://www.oceanexpert.org/expert/15542 -https://www.oceanexpert.org/expert/8600 -https://www.oceanexpert.org/institution/19321 -https://www.oceanexpert.org/expert/23451 -https://www.oceanexpert.org/institution/18261 -https://www.oceanexpert.org/expert/43971 -https://www.oceanexpert.org/event/2305 -https://www.oceanexpert.org/expert/29937 -https://www.oceanexpert.org/event/1160 -https://www.oceanexpert.org/expert/18284 -https://www.oceanexpert.org/expert/6552 -https://www.oceanexpert.org/expert/34717 -https://www.oceanexpert.org/expert/40868 -https://www.oceanexpert.org/institution/22174 -https://www.oceanexpert.org/institution/20500 -https://www.oceanexpert.org/expert/18117 -https://www.oceanexpert.org/expert/20024 -https://www.oceanexpert.org/expert/48662 -https://www.oceanexpert.org/expert/15048 -https://www.oceanexpert.org/institution/19278 -https://www.oceanexpert.org/event/398 -https://www.oceanexpert.org/expert/45559 -https://www.oceanexpert.org/expert/46237 -https://www.oceanexpert.org/institution/18965 -https://www.oceanexpert.org/expert/19927 -https://www.oceanexpert.org/expert/48877 -https://www.oceanexpert.org/expert/48121 -https://www.oceanexpert.org/expert/30762 -https://www.oceanexpert.org/expert/5406 -https://www.oceanexpert.org/expert/2559 -https://www.oceanexpert.org/event/2059 -https://www.oceanexpert.org/event/1047 -https://www.oceanexpert.org/expert/47256 -https://www.oceanexpert.org/expert/44930 -https://www.oceanexpert.org/expert/44801 -https://www.oceanexpert.org/expert/26215 -https://www.oceanexpert.org/expert/32769 -https://www.oceanexpert.org/institution/17195 -https://www.oceanexpert.org/expert/44516 -https://www.oceanexpert.org/expert/23816 -https://www.oceanexpert.org/expert/47415 -https://www.oceanexpert.org/event/298 -https://www.oceanexpert.org/expert/29676 -https://www.oceanexpert.org/expert/17334 -https://www.oceanexpert.org/event/363 -https://www.oceanexpert.org/expert/16837 -https://www.oceanexpert.org/expert/41098 -https://www.oceanexpert.org/expert/20923 -https://www.oceanexpert.org/institution/18005 -https://www.oceanexpert.org/expert/3807 -https://www.oceanexpert.org/expert/30600 -https://www.oceanexpert.org/expert/34086 -https://www.oceanexpert.org/expert/26440 -https://www.oceanexpert.org/expert/17983 -https://www.oceanexpert.org/expert/37095 -https://www.oceanexpert.org/expert/36395 -https://www.oceanexpert.org/expert/17576 -https://www.oceanexpert.org/expert/23694 -https://www.oceanexpert.org/institution/19803 -https://www.oceanexpert.org/institution/19219 -https://www.oceanexpert.org/event/645 -https://www.oceanexpert.org/expert/43221 -https://www.oceanexpert.org/institution/15262 -https://www.oceanexpert.org/event/2165 -https://www.oceanexpert.org/institution/21046 -https://www.oceanexpert.org/institution/14903 -https://www.oceanexpert.org/expert/46879 -https://www.oceanexpert.org/institution/21567 -https://www.oceanexpert.org/expert/37323 -https://www.oceanexpert.org/expert/3060 -https://www.oceanexpert.org/expert/30838 -https://www.oceanexpert.org/expert/23830 -https://www.oceanexpert.org/institution/8877 -https://www.oceanexpert.org/institution/18048 -https://www.oceanexpert.org/event/1336 -https://www.oceanexpert.org/expert/45864 -https://www.oceanexpert.org/institution/19570 -https://www.oceanexpert.org/institution/18772 -https://www.oceanexpert.org/institution/22081 -https://www.oceanexpert.org/expert/24116 -https://www.oceanexpert.org/expert/17457 -https://www.oceanexpert.org/institution/4997 -https://www.oceanexpert.org/expert/19278 -https://www.oceanexpert.org/expert/24671 -https://www.oceanexpert.org/expert/30298 -https://www.oceanexpert.org/expert/14315 -https://www.oceanexpert.org/institution/14409 -https://www.oceanexpert.org/expert/48706 -https://www.oceanexpert.org/expert/29920 -https://www.oceanexpert.org/institution/16194 -https://www.oceanexpert.org/expert/21846 -https://www.oceanexpert.org/expert/47546 -https://www.oceanexpert.org/expert/22481 -https://www.oceanexpert.org/expert/45173 -https://www.oceanexpert.org/expert/34618 -https://www.oceanexpert.org/event/424 -https://www.oceanexpert.org/expert/35962 -https://www.oceanexpert.org/event/967 -https://www.oceanexpert.org/expert/35867 -https://www.oceanexpert.org/expert/15982 -https://www.oceanexpert.org/institution/15675 -https://www.oceanexpert.org/expert/20700 -https://www.oceanexpert.org/expert/20250 -https://www.oceanexpert.org/expert/66 -https://www.oceanexpert.org/expert/46529 -https://www.oceanexpert.org/expert/47193 -https://www.oceanexpert.org/expert/46136 -https://www.oceanexpert.org/expert/24601 -https://www.oceanexpert.org/expert/45197 -https://www.oceanexpert.org/expert/38110 -https://www.oceanexpert.org/expert/37524 -https://www.oceanexpert.org/expert/45539 -https://www.oceanexpert.org/event/3269 -https://www.oceanexpert.org/expert/20716 -https://www.oceanexpert.org/institution/13593 -https://www.oceanexpert.org/event/250 -https://www.oceanexpert.org/expert/4693 -https://www.oceanexpert.org/expert/17092 -https://www.oceanexpert.org/expert/29866 -https://www.oceanexpert.org/expert/49044 -https://www.oceanexpert.org/expert/36833 -https://www.oceanexpert.org/expert/11763 -https://www.oceanexpert.org/expert/6688 -https://www.oceanexpert.org/event/1422 -https://www.oceanexpert.org/expert/21798 -https://www.oceanexpert.org/expert/32180 -https://www.oceanexpert.org/expert/16633 -https://www.oceanexpert.org/expert/18256 -https://www.oceanexpert.org/expert/34341 -https://www.oceanexpert.org/expert/24721 -https://www.oceanexpert.org/expert/31559 -https://www.oceanexpert.org/event/92 -https://www.oceanexpert.org/expert/25827 -https://www.oceanexpert.org/expert/47606 -https://www.oceanexpert.org/expert/22301 -https://www.oceanexpert.org/expert/20260 -https://www.oceanexpert.org/expert/20918 -https://www.oceanexpert.org/institution/19045 -https://www.oceanexpert.org/expert/46724 -https://www.oceanexpert.org/event/3076 -https://www.oceanexpert.org/institution/14364 -https://www.oceanexpert.org/institution/18168 -https://www.oceanexpert.org/expert/35255 -https://www.oceanexpert.org/expert/43881 -https://www.oceanexpert.org/expert/24058 -https://www.oceanexpert.org/institution/10091 -https://www.oceanexpert.org/institution/16907 -https://www.oceanexpert.org/event/860 -https://www.oceanexpert.org/event/1379 -https://www.oceanexpert.org/expert/44821 -https://www.oceanexpert.org/expert/48765 -https://www.oceanexpert.org/institution/5168 -https://www.oceanexpert.org/institution/19837 -https://www.oceanexpert.org/expert/26507 -https://www.oceanexpert.org/event/1302 -https://www.oceanexpert.org/institution/21533 -https://www.oceanexpert.org/expert/24166 -https://www.oceanexpert.org/event/678 -https://www.oceanexpert.org/event/2014 -https://www.oceanexpert.org/institution/20112 -https://www.oceanexpert.org/institution/11024 -https://www.oceanexpert.org/expert/35516 -https://www.oceanexpert.org/expert/23975 -https://www.oceanexpert.org/expert/23632 -https://www.oceanexpert.org/institution/13231 -https://www.oceanexpert.org/expert/48590 -https://www.oceanexpert.org/expert/35665 -https://www.oceanexpert.org/expert/32773 -https://www.oceanexpert.org/expert/21181 -https://www.oceanexpert.org/expert/14343 -https://www.oceanexpert.org/expert/27343 -https://www.oceanexpert.org/expert/45076 -https://www.oceanexpert.org/expert/20378 -https://www.oceanexpert.org/institution/8650 -https://www.oceanexpert.org/expert/37293 -https://www.oceanexpert.org/expert/32705 -https://www.oceanexpert.org/institution/19675 -https://www.oceanexpert.org/institution/10642 -https://www.oceanexpert.org/expert/33652 -https://www.oceanexpert.org/institution/18268 -https://www.oceanexpert.org/institution/20074 -https://www.oceanexpert.org/institution/18635 -https://www.oceanexpert.org/expert/46948 -https://www.oceanexpert.org/expert/26092 -https://www.oceanexpert.org/expert/43396 -https://www.oceanexpert.org/expert/1050 -https://www.oceanexpert.org/institution/18071 -https://www.oceanexpert.org/expert/36368 -https://www.oceanexpert.org/institution/7488 -https://www.oceanexpert.org/expert/13525 -https://www.oceanexpert.org/institution/18014 -https://www.oceanexpert.org/expert/38218 -https://www.oceanexpert.org/expert/46028 -https://www.oceanexpert.org/expert/1900 -https://www.oceanexpert.org/institution/17270 -https://www.oceanexpert.org/event/2548 -https://www.oceanexpert.org/event/2669 -https://www.oceanexpert.org/expert/21257 -https://www.oceanexpert.org/institution/17959 -https://www.oceanexpert.org/expert/26625 -https://www.oceanexpert.org/expert/40597 -https://www.oceanexpert.org/expert/42586 -https://www.oceanexpert.org/expert/34147 -https://www.oceanexpert.org/expert/47761 -https://www.oceanexpert.org/expert/36485 -https://www.oceanexpert.org/expert/26326 -https://www.oceanexpert.org/expert/43680 -https://www.oceanexpert.org/expert/35662 -https://www.oceanexpert.org/expert/48881 -https://www.oceanexpert.org/expert/19581 -https://www.oceanexpert.org/event/696 -https://www.oceanexpert.org/expert/37469 -https://www.oceanexpert.org/expert/48507 -https://www.oceanexpert.org/expert/31873 -https://www.oceanexpert.org/expert/42997 -https://www.oceanexpert.org/expert/25793 -https://www.oceanexpert.org/expert/22941 -https://www.oceanexpert.org/expert/38449 -https://www.oceanexpert.org/expert/20598 -https://www.oceanexpert.org/expert/23434 -https://www.oceanexpert.org/expert/20848 -https://www.oceanexpert.org/institution/20347 -https://www.oceanexpert.org/event/194 -https://www.oceanexpert.org/expert/3868 -https://www.oceanexpert.org/expert/5625 -https://www.oceanexpert.org/expert/31061 -https://www.oceanexpert.org/institution/5895 -https://www.oceanexpert.org/institution/11489 -https://www.oceanexpert.org/expert/14410 -https://www.oceanexpert.org/event/178 -https://www.oceanexpert.org/expert/47352 -https://www.oceanexpert.org/expert/29532 -https://www.oceanexpert.org/expert/47644 -https://www.oceanexpert.org/expert/24630 -https://www.oceanexpert.org/expert/8949 -https://www.oceanexpert.org/institution/11585 -https://www.oceanexpert.org/expert/40897 -https://www.oceanexpert.org/expert/6837 -https://www.oceanexpert.org/expert/24018 -https://www.oceanexpert.org/expert/40604 -https://www.oceanexpert.org/event/1986 -https://www.oceanexpert.org/event/847 -https://www.oceanexpert.org/expert/48053 -https://www.oceanexpert.org/expert/24744 -https://www.oceanexpert.org/institution/21903 -https://www.oceanexpert.org/expert/44886 -https://www.oceanexpert.org/expert/19685 -https://www.oceanexpert.org/institution/19362 -https://www.oceanexpert.org/institution/18172 -https://www.oceanexpert.org/expert/46255 -https://www.oceanexpert.org/expert/19294 -https://www.oceanexpert.org/expert/25029 -https://www.oceanexpert.org/expert/28001 -https://www.oceanexpert.org/institution/20612 -https://www.oceanexpert.org/institution/12742 -https://www.oceanexpert.org/expert/46143 -https://www.oceanexpert.org/expert/42509 -https://www.oceanexpert.org/expert/23522 -https://www.oceanexpert.org/expert/26594 -https://www.oceanexpert.org/expert/44173 -https://www.oceanexpert.org/institution/21341 -https://www.oceanexpert.org/expert/30 -https://www.oceanexpert.org/expert/25901 -https://www.oceanexpert.org/expert/25660 -https://www.oceanexpert.org/expert/26737 -https://www.oceanexpert.org/expert/27162 -https://www.oceanexpert.org/institution/19796 -https://www.oceanexpert.org/institution/15810 -https://www.oceanexpert.org/expert/34639 -https://www.oceanexpert.org/institution/10426 -https://www.oceanexpert.org/expert/16872 -https://www.oceanexpert.org/expert/43782 -https://www.oceanexpert.org/expert/47629 -https://www.oceanexpert.org/expert/17510 -https://www.oceanexpert.org/expert/48658 -https://www.oceanexpert.org/expert/34701 -https://www.oceanexpert.org/institution/18963 -https://www.oceanexpert.org/expert/39137 -https://www.oceanexpert.org/event/2537 -https://www.oceanexpert.org/expert/38882 -https://www.oceanexpert.org/expert/1375 -https://www.oceanexpert.org/expert/16730 -https://www.oceanexpert.org/expert/27080 -https://www.oceanexpert.org/institution/9306 -https://www.oceanexpert.org/institution/15965 -https://www.oceanexpert.org/expert/36262 -https://www.oceanexpert.org/event/1107 -https://www.oceanexpert.org/institution/11940 -https://www.oceanexpert.org/expert/35288 -https://www.oceanexpert.org/institution/8998 -https://www.oceanexpert.org/expert/21500 -https://www.oceanexpert.org/event/1102 -https://www.oceanexpert.org/expert/23249 -https://www.oceanexpert.org/expert/46343 -https://www.oceanexpert.org/expert/19906 -https://www.oceanexpert.org/expert/11098 -https://www.oceanexpert.org/expert/27065 -https://www.oceanexpert.org/expert/46564 -https://www.oceanexpert.org/expert/23976 -https://www.oceanexpert.org/institution/13323 -https://www.oceanexpert.org/expert/16711 -https://www.oceanexpert.org/expert/20107 -https://www.oceanexpert.org/expert/19715 -https://www.oceanexpert.org/expert/19978 -https://www.oceanexpert.org/expert/9041 -https://www.oceanexpert.org/expert/29009 -https://www.oceanexpert.org/institution/13140 -https://www.oceanexpert.org/expert/29744 -https://www.oceanexpert.org/expert/29497 -https://www.oceanexpert.org/expert/23817 -https://www.oceanexpert.org/expert/18227 -https://www.oceanexpert.org/institution/18853 -https://www.oceanexpert.org/event/2538 -https://www.oceanexpert.org/institution/5387 -https://www.oceanexpert.org/expert/35489 -https://www.oceanexpert.org/institution/16704 -https://www.oceanexpert.org/expert/46904 -https://www.oceanexpert.org/expert/48343 -https://www.oceanexpert.org/institution/6860 -https://www.oceanexpert.org/expert/16749 -https://www.oceanexpert.org/event/885 -https://www.oceanexpert.org/expert/35360 -https://www.oceanexpert.org/expert/24424 -https://www.oceanexpert.org/institution/21179 -https://www.oceanexpert.org/expert/47135 -https://www.oceanexpert.org/event/166 -https://www.oceanexpert.org/institution/19686 -https://www.oceanexpert.org/expert/45620 -https://www.oceanexpert.org/expert/24167 -https://www.oceanexpert.org/event/2639 -https://www.oceanexpert.org/event/467 -https://www.oceanexpert.org/expert/1819 -https://www.oceanexpert.org/expert/20520 -https://www.oceanexpert.org/expert/7027 -https://www.oceanexpert.org/expert/7802 -https://www.oceanexpert.org/expert/32696 -https://www.oceanexpert.org/expert/11173 -https://www.oceanexpert.org/expert/38006 -https://www.oceanexpert.org/institution/5583 -https://www.oceanexpert.org/expert/21273 -https://www.oceanexpert.org/event/2690 -https://www.oceanexpert.org/expert/38305 -https://www.oceanexpert.org/institution/15388 -https://www.oceanexpert.org/event/1900 -https://www.oceanexpert.org/institution/19379 -https://www.oceanexpert.org/expert/10675 -https://www.oceanexpert.org/expert/20508 -https://www.oceanexpert.org/institution/13982 -https://www.oceanexpert.org/expert/43290 -https://www.oceanexpert.org/institution/19070 -https://www.oceanexpert.org/institution/19390 -https://www.oceanexpert.org/expert/26677 -https://www.oceanexpert.org/expert/48308 -https://www.oceanexpert.org/expert/38909 -https://www.oceanexpert.org/institution/17204 -https://www.oceanexpert.org/institution/15750 -https://www.oceanexpert.org/expert/29361 -https://www.oceanexpert.org/expert/20392 -https://www.oceanexpert.org/expert/11373 -https://www.oceanexpert.org/institution/17924 -https://www.oceanexpert.org/institution/19809 -https://www.oceanexpert.org/expert/14609 -https://www.oceanexpert.org/expert/13162 -https://www.oceanexpert.org/expert/25065 -https://www.oceanexpert.org/expert/19112 -https://www.oceanexpert.org/expert/23287 -https://www.oceanexpert.org/institution/18646 -https://www.oceanexpert.org/expert/44045 -https://www.oceanexpert.org/expert/47099 -https://www.oceanexpert.org/expert/35423 -https://www.oceanexpert.org/event/1507 -https://www.oceanexpert.org/event/2333 -https://www.oceanexpert.org/expert/45962 -https://www.oceanexpert.org/institution/22181 -https://www.oceanexpert.org/institution/19082 -https://www.oceanexpert.org/expert/23913 -https://www.oceanexpert.org/expert/15402 -https://www.oceanexpert.org/institution/14037 -https://www.oceanexpert.org/expert/36453 -https://www.oceanexpert.org/expert/34886 -https://www.oceanexpert.org/expert/29932 -https://www.oceanexpert.org/expert/43918 -https://www.oceanexpert.org/expert/39166 -https://www.oceanexpert.org/expert/23877 -https://www.oceanexpert.org/expert/22519 -https://www.oceanexpert.org/expert/23921 -https://www.oceanexpert.org/expert/25876 -https://www.oceanexpert.org/institution/15430 -https://www.oceanexpert.org/expert/26071 -https://www.oceanexpert.org/expert/2862 -https://www.oceanexpert.org/expert/48163 -https://www.oceanexpert.org/expert/35574 -https://www.oceanexpert.org/institution/18918 -https://www.oceanexpert.org/expert/38407 -https://www.oceanexpert.org/expert/36555 -https://www.oceanexpert.org/institution/14028 -https://www.oceanexpert.org/expert/25101 -https://www.oceanexpert.org/expert/32792 -https://www.oceanexpert.org/expert/23120 -https://www.oceanexpert.org/event/2247 -https://www.oceanexpert.org/expert/38178 -https://www.oceanexpert.org/expert/37833 -https://www.oceanexpert.org/institution/19935 -https://www.oceanexpert.org/expert/11193 -https://www.oceanexpert.org/expert/38407 -https://www.oceanexpert.org/institution/17768 -https://www.oceanexpert.org/expert/27102 -https://www.oceanexpert.org/expert/24543 -https://www.oceanexpert.org/expert/21988 -https://www.oceanexpert.org/expert/11527 -https://www.oceanexpert.org/expert/19166 -https://www.oceanexpert.org/institution/10218 -https://www.oceanexpert.org/expert/36663 -https://www.oceanexpert.org/expert/46139 -https://www.oceanexpert.org/expert/44724 -https://www.oceanexpert.org/institution/18774 -https://www.oceanexpert.org/expert/12244 -https://www.oceanexpert.org/expert/27663 -https://www.oceanexpert.org/institution/8848 -https://www.oceanexpert.org/institution/10848 -https://www.oceanexpert.org/expert/13204 -https://www.oceanexpert.org/institution/12283 -https://www.oceanexpert.org/expert/44389 -https://www.oceanexpert.org/expert/37773 -https://www.oceanexpert.org/expert/19844 -https://www.oceanexpert.org/institution/20482 -https://www.oceanexpert.org/expert/31064 -https://www.oceanexpert.org/institution/13072 -https://www.oceanexpert.org/institution/6349 -https://www.oceanexpert.org/expert/12117 -https://www.oceanexpert.org/institution/9989 -https://www.oceanexpert.org/expert/36808 -https://www.oceanexpert.org/expert/28274 -https://www.oceanexpert.org/expert/24974 -https://www.oceanexpert.org/institution/21931 -https://www.oceanexpert.org/institution/19211 -https://www.oceanexpert.org/expert/31334 -https://www.oceanexpert.org/expert/1454 -https://www.oceanexpert.org/expert/35022 -https://www.oceanexpert.org/expert/26557 -https://www.oceanexpert.org/event/451 -https://www.oceanexpert.org/expert/25502 -https://www.oceanexpert.org/expert/13339 -https://www.oceanexpert.org/institution/20950 -https://www.oceanexpert.org/expert/4496 -https://www.oceanexpert.org/institution/13884 -https://www.oceanexpert.org/expert/39368 -https://www.oceanexpert.org/institution/20308 -https://www.oceanexpert.org/expert/3201 -https://www.oceanexpert.org/expert/8267 -https://www.oceanexpert.org/institution/19070 -https://www.oceanexpert.org/expert/34048 -https://www.oceanexpert.org/institution/20823 -https://www.oceanexpert.org/event/2088 -https://www.oceanexpert.org/institution/10285 -https://www.oceanexpert.org/institution/14050 -https://www.oceanexpert.org/expert/43923 -https://www.oceanexpert.org/expert/8309 -https://www.oceanexpert.org/institution/9868 -https://www.oceanexpert.org/expert/34000 -https://www.oceanexpert.org/event/3074 -https://www.oceanexpert.org/expert/22747 -https://www.oceanexpert.org/institution/7029 -https://www.oceanexpert.org/institution/12561 -https://www.oceanexpert.org/expert/2451 -https://www.oceanexpert.org/expert/44449 -https://www.oceanexpert.org/institution/15296 -https://www.oceanexpert.org/expert/14269 -https://www.oceanexpert.org/event/546 -https://www.oceanexpert.org/institution/14696 -https://www.oceanexpert.org/expert/32552 -https://www.oceanexpert.org/expert/20216 -https://www.oceanexpert.org/expert/34218 -https://www.oceanexpert.org/expert/35301 -https://www.oceanexpert.org/expert/33498 -https://www.oceanexpert.org/expert/24043 -https://www.oceanexpert.org/expert/13885 -https://www.oceanexpert.org/expert/25536 -https://www.oceanexpert.org/expert/46542 -https://www.oceanexpert.org/expert/21669 -https://www.oceanexpert.org/institution/9752 -https://www.oceanexpert.org/institution/16849 -https://www.oceanexpert.org/expert/42150 -https://www.oceanexpert.org/institution/10640 -https://www.oceanexpert.org/institution/8241 -https://www.oceanexpert.org/expert/24943 -https://www.oceanexpert.org/event/1649 -https://www.oceanexpert.org/expert/46338 -https://www.oceanexpert.org/expert/19548 -https://www.oceanexpert.org/institution/7788 -https://www.oceanexpert.org/expert/12780 -https://www.oceanexpert.org/institution/16181 -https://www.oceanexpert.org/expert/35203 -https://www.oceanexpert.org/institution/18951 -https://www.oceanexpert.org/institution/21676 -https://www.oceanexpert.org/institution/6874 -https://www.oceanexpert.org/expert/16160 -https://www.oceanexpert.org/expert/48657 -https://www.oceanexpert.org/expert/13256 -https://www.oceanexpert.org/expert/36042 -https://www.oceanexpert.org/institution/18633 -https://www.oceanexpert.org/expert/44032 -https://www.oceanexpert.org/expert/16870 -https://www.oceanexpert.org/expert/33465 -https://www.oceanexpert.org/expert/42385 -https://www.oceanexpert.org/expert/44309 -https://www.oceanexpert.org/expert/17324 -https://www.oceanexpert.org/expert/47412 -https://www.oceanexpert.org/institution/8884 -https://www.oceanexpert.org/institution/19564 -https://www.oceanexpert.org/expert/33911 -https://www.oceanexpert.org/institution/19519 -https://www.oceanexpert.org/institution/18864 -https://www.oceanexpert.org/institution/19766 -https://www.oceanexpert.org/expert/35736 -https://www.oceanexpert.org/expert/35242 -https://www.oceanexpert.org/expert/3222 -https://www.oceanexpert.org/expert/44188 -https://www.oceanexpert.org/expert/1702 -https://www.oceanexpert.org/expert/20208 -https://www.oceanexpert.org/expert/37173 -https://www.oceanexpert.org/event/166 -https://www.oceanexpert.org/expert/45592 -https://www.oceanexpert.org/institution/21666 -https://www.oceanexpert.org/expert/34037 -https://www.oceanexpert.org/expert/45853 -https://www.oceanexpert.org/expert/19962 -https://www.oceanexpert.org/institution/14002 -https://www.oceanexpert.org/expert/16767 -https://www.oceanexpert.org/expert/14895 -https://www.oceanexpert.org/expert/48025 -https://www.oceanexpert.org/expert/19030 -https://www.oceanexpert.org/expert/38043 -https://www.oceanexpert.org/institution/18175 -https://www.oceanexpert.org/event/1478 -https://www.oceanexpert.org/expert/44596 -https://www.oceanexpert.org/expert/45304 -https://www.oceanexpert.org/expert/27536 -https://www.oceanexpert.org/event/2039 -https://www.oceanexpert.org/expert/17422 -https://www.oceanexpert.org/institution/20887 -https://www.oceanexpert.org/institution/15430 -https://www.oceanexpert.org/event/788 -https://www.oceanexpert.org/expert/24791 -https://www.oceanexpert.org/event/2484 -https://www.oceanexpert.org/expert/33575 -https://www.oceanexpert.org/expert/25605 -https://www.oceanexpert.org/event/2746 -https://www.oceanexpert.org/expert/18513 -https://www.oceanexpert.org/expert/13954 -https://www.oceanexpert.org/expert/37973 -https://www.oceanexpert.org/expert/31641 -https://www.oceanexpert.org/institution/17416 -https://www.oceanexpert.org/expert/29714 -https://www.oceanexpert.org/expert/23245 -https://www.oceanexpert.org/expert/37775 -https://www.oceanexpert.org/expert/31194 -https://www.oceanexpert.org/expert/46413 -https://www.oceanexpert.org/event/2508 -https://www.oceanexpert.org/event/2973 -https://www.oceanexpert.org/institution/20592 -https://www.oceanexpert.org/expert/45492 -https://www.oceanexpert.org/event/2646 -https://www.oceanexpert.org/expert/19786 -https://www.oceanexpert.org/expert/35904 -https://www.oceanexpert.org/expert/16425 -https://www.oceanexpert.org/expert/26202 -https://www.oceanexpert.org/expert/43069 -https://www.oceanexpert.org/expert/18956 -https://www.oceanexpert.org/expert/18055 -https://www.oceanexpert.org/expert/35448 -https://www.oceanexpert.org/institution/11619 -https://www.oceanexpert.org/expert/47904 -https://www.oceanexpert.org/institution/14916 -https://www.oceanexpert.org/institution/18820 -https://www.oceanexpert.org/expert/662 -https://www.oceanexpert.org/expert/8001 -https://www.oceanexpert.org/institution/20716 -https://www.oceanexpert.org/expert/32530 -https://www.oceanexpert.org/event/2300 -https://www.oceanexpert.org/expert/43827 -https://www.oceanexpert.org/expert/48093 -https://www.oceanexpert.org/expert/32878 -https://www.oceanexpert.org/event/2406 -https://www.oceanexpert.org/expert/29503 -https://www.oceanexpert.org/expert/32564 -https://www.oceanexpert.org/expert/28332 -https://www.oceanexpert.org/expert/25311 -https://www.oceanexpert.org/expert/15573 -https://www.oceanexpert.org/expert/48820 -https://www.oceanexpert.org/expert/20391 -https://www.oceanexpert.org/expert/24749 -https://www.oceanexpert.org/institution/20186 -https://www.oceanexpert.org/expert/38536 -https://www.oceanexpert.org/expert/19229 -https://www.oceanexpert.org/institution/11203 -https://www.oceanexpert.org/institution/15525 -https://www.oceanexpert.org/expert/35297 -https://www.oceanexpert.org/expert/17279 -https://www.oceanexpert.org/expert/37694 -https://www.oceanexpert.org/institution/20470 -https://www.oceanexpert.org/institution/18653 -https://www.oceanexpert.org/event/1744 -https://www.oceanexpert.org/expert/5418 -https://www.oceanexpert.org/expert/35466 -https://www.oceanexpert.org/expert/280 -https://www.oceanexpert.org/institution/18681 -https://www.oceanexpert.org/expert/7147 -https://www.oceanexpert.org/expert/28278 -https://www.oceanexpert.org/expert/39420 -https://www.oceanexpert.org/expert/22238 -https://www.oceanexpert.org/expert/47358 -https://www.oceanexpert.org/institution/14072 -https://www.oceanexpert.org/expert/26441 -https://www.oceanexpert.org/expert/7412 -https://www.oceanexpert.org/expert/23405 -https://www.oceanexpert.org/expert/1911 -https://www.oceanexpert.org/institution/17235 -https://www.oceanexpert.org/expert/44095 -https://www.oceanexpert.org/expert/29997 -https://www.oceanexpert.org/expert/44694 -https://www.oceanexpert.org/expert/8298 -https://www.oceanexpert.org/expert/16877 -https://www.oceanexpert.org/expert/31082 -https://www.oceanexpert.org/expert/31718 -https://www.oceanexpert.org/expert/48548 -https://www.oceanexpert.org/expert/23252 -https://www.oceanexpert.org/expert/46536 -https://www.oceanexpert.org/event/2255 -https://www.oceanexpert.org/expert/20379 -https://www.oceanexpert.org/expert/48220 -https://www.oceanexpert.org/event/1204 -https://www.oceanexpert.org/expert/45231 -https://www.oceanexpert.org/institution/21142 -https://www.oceanexpert.org/expert/43049 -https://www.oceanexpert.org/expert/43306 -https://www.oceanexpert.org/institution/15110 -https://www.oceanexpert.org/expert/29836 -https://www.oceanexpert.org/expert/19695 -https://www.oceanexpert.org/expert/22894 -https://www.oceanexpert.org/expert/27691 -https://www.oceanexpert.org/expert/34425 -https://www.oceanexpert.org/expert/22526 -https://www.oceanexpert.org/institution/20290 -https://www.oceanexpert.org/event/1783 -https://www.oceanexpert.org/expert/47386 -https://www.oceanexpert.org/expert/22589 -https://www.oceanexpert.org/expert/46504 -https://www.oceanexpert.org/expert/12454 -https://www.oceanexpert.org/expert/39968 -https://www.oceanexpert.org/event/1355 -https://www.oceanexpert.org/institution/12094 -https://www.oceanexpert.org/expert/37866 -https://www.oceanexpert.org/expert/23904 -https://www.oceanexpert.org/expert/27517 -https://www.oceanexpert.org/expert/45918 -https://www.oceanexpert.org/expert/29668 -https://www.oceanexpert.org/expert/45307 -https://www.oceanexpert.org/expert/2071 -https://www.oceanexpert.org/expert/15058 -https://www.oceanexpert.org/expert/22680 -https://www.oceanexpert.org/expert/20561 -https://www.oceanexpert.org/expert/26965 -https://www.oceanexpert.org/institution/14019 -https://www.oceanexpert.org/expert/21103 -https://www.oceanexpert.org/institution/20450 -https://www.oceanexpert.org/institution/5176 -https://www.oceanexpert.org/expert/47129 -https://www.oceanexpert.org/event/88 -https://www.oceanexpert.org/expert/45529 -https://www.oceanexpert.org/expert/28083 -https://www.oceanexpert.org/institution/18346 -https://www.oceanexpert.org/expert/42423 -https://www.oceanexpert.org/event/2711 -https://www.oceanexpert.org/expert/37403 -https://www.oceanexpert.org/institution/21452 -https://www.oceanexpert.org/expert/35239 -https://www.oceanexpert.org/event/2110 -https://www.oceanexpert.org/institution/18439 -https://www.oceanexpert.org/expert/21751 -https://www.oceanexpert.org/expert/36630 -https://www.oceanexpert.org/institution/4969 -https://www.oceanexpert.org/expert/24572 -https://www.oceanexpert.org/expert/8757 -https://www.oceanexpert.org/expert/4230 -https://www.oceanexpert.org/institution/11626 -https://www.oceanexpert.org/expert/29580 -https://www.oceanexpert.org/institution/18915 -https://www.oceanexpert.org/institution/18611 -https://www.oceanexpert.org/institution/11218 -https://www.oceanexpert.org/expert/36213 -https://www.oceanexpert.org/expert/19566 -https://www.oceanexpert.org/institution/6223 -https://www.oceanexpert.org/event/2985 -https://www.oceanexpert.org/institution/15544 -https://www.oceanexpert.org/expert/33063 -https://www.oceanexpert.org/institution/18510 -https://www.oceanexpert.org/expert/43331 -https://www.oceanexpert.org/expert/45470 -https://www.oceanexpert.org/institution/19557 -https://www.oceanexpert.org/expert/26834 -https://www.oceanexpert.org/expert/20032 -https://www.oceanexpert.org/expert/23788 -https://www.oceanexpert.org/expert/10052 -https://www.oceanexpert.org/expert/26538 -https://www.oceanexpert.org/expert/34878 -https://www.oceanexpert.org/institution/21786 -https://www.oceanexpert.org/expert/46848 -https://www.oceanexpert.org/expert/105 -https://www.oceanexpert.org/institution/13617 -https://www.oceanexpert.org/institution/19821 -https://www.oceanexpert.org/institution/13611 -https://www.oceanexpert.org/institution/13359 -https://www.oceanexpert.org/institution/5953 -https://www.oceanexpert.org/expert/29139 -https://www.oceanexpert.org/expert/16345 -https://www.oceanexpert.org/expert/16885 -https://www.oceanexpert.org/expert/23210 -https://www.oceanexpert.org/expert/2006 -https://www.oceanexpert.org/expert/43428 -https://www.oceanexpert.org/expert/25485 -https://www.oceanexpert.org/expert/36795 -https://www.oceanexpert.org/expert/25692 -https://www.oceanexpert.org/institution/7381 -https://www.oceanexpert.org/institution/21553 -https://www.oceanexpert.org/expert/38430 -https://www.oceanexpert.org/event/766 -https://www.oceanexpert.org/institution/18258 -https://www.oceanexpert.org/institution/21382 -https://www.oceanexpert.org/institution/12001 -https://www.oceanexpert.org/event/2754 -https://www.oceanexpert.org/expert/947 -https://www.oceanexpert.org/expert/19193 -https://www.oceanexpert.org/institution/12382 -https://www.oceanexpert.org/expert/25813 -https://www.oceanexpert.org/expert/48797 -https://www.oceanexpert.org/expert/45112 -https://www.oceanexpert.org/expert/22764 -https://www.oceanexpert.org/expert/19561 -https://www.oceanexpert.org/expert/19809 -https://www.oceanexpert.org/institution/19888 -https://www.oceanexpert.org/expert/28069 -https://www.oceanexpert.org/institution/16758 -https://www.oceanexpert.org/expert/48954 -https://www.oceanexpert.org/expert/21598 -https://www.oceanexpert.org/expert/31052 -https://www.oceanexpert.org/event/733 -https://www.oceanexpert.org/event/213 -https://www.oceanexpert.org/expert/27169 -https://www.oceanexpert.org/institution/20047 -https://www.oceanexpert.org/institution/10331 -https://www.oceanexpert.org/expert/15771 -https://www.oceanexpert.org/expert/20273 -https://www.oceanexpert.org/institution/17977 -https://www.oceanexpert.org/expert/20404 -https://www.oceanexpert.org/institution/20366 -https://www.oceanexpert.org/institution/13564 -https://www.oceanexpert.org/institution/17449 -https://www.oceanexpert.org/expert/40045 -https://www.oceanexpert.org/expert/22030 -https://www.oceanexpert.org/expert/23716 -https://www.oceanexpert.org/expert/23154 -https://www.oceanexpert.org/expert/44967 -https://www.oceanexpert.org/institution/18976 -https://www.oceanexpert.org/event/2861 -https://www.oceanexpert.org/expert/31098 -https://www.oceanexpert.org/institution/11379 -https://www.oceanexpert.org/expert/22493 -https://www.oceanexpert.org/expert/27376 -https://www.oceanexpert.org/expert/36610 -https://www.oceanexpert.org/expert/27243 -https://www.oceanexpert.org/expert/43287 -https://www.oceanexpert.org/expert/34287 -https://www.oceanexpert.org/expert/22551 -https://www.oceanexpert.org/expert/8819 -https://www.oceanexpert.org/expert/22145 -https://www.oceanexpert.org/expert/40119 -https://www.oceanexpert.org/institution/17928 -https://www.oceanexpert.org/event/707 -https://www.oceanexpert.org/expert/16417 -https://www.oceanexpert.org/expert/27012 -https://www.oceanexpert.org/expert/15874 -https://www.oceanexpert.org/expert/32797 -https://www.oceanexpert.org/expert/36266 -https://www.oceanexpert.org/institution/20725 -https://www.oceanexpert.org/institution/16217 -https://www.oceanexpert.org/expert/38150 -https://www.oceanexpert.org/institution/17433 -https://www.oceanexpert.org/expert/36375 -https://www.oceanexpert.org/institution/12917 -https://www.oceanexpert.org/expert/21344 -https://www.oceanexpert.org/institution/13398 -https://www.oceanexpert.org/expert/25989 -https://www.oceanexpert.org/expert/25204 -https://www.oceanexpert.org/expert/34337 -https://www.oceanexpert.org/expert/17595 -https://www.oceanexpert.org/expert/18714 -https://www.oceanexpert.org/expert/47792 -https://www.oceanexpert.org/expert/47346 -https://www.oceanexpert.org/institution/19493 -https://www.oceanexpert.org/institution/18921 -https://www.oceanexpert.org/expert/17049 -https://www.oceanexpert.org/expert/24565 -https://www.oceanexpert.org/expert/34924 -https://www.oceanexpert.org/expert/29143 -https://www.oceanexpert.org/expert/26988 -https://www.oceanexpert.org/expert/33405 -https://www.oceanexpert.org/expert/19998 -https://www.oceanexpert.org/expert/35048 -https://www.oceanexpert.org/expert/42758 -https://www.oceanexpert.org/expert/21256 -https://www.oceanexpert.org/expert/29762 -https://www.oceanexpert.org/institution/15656 -https://www.oceanexpert.org/expert/24596 -https://www.oceanexpert.org/expert/45092 -https://www.oceanexpert.org/expert/34637 -https://www.oceanexpert.org/expert/44759 -https://www.oceanexpert.org/institution/12679 -https://www.oceanexpert.org/event/2629 -https://www.oceanexpert.org/expert/21294 -https://www.oceanexpert.org/institution/18926 -https://www.oceanexpert.org/expert/39578 -https://www.oceanexpert.org/event/1403 -https://www.oceanexpert.org/expert/1567 -https://www.oceanexpert.org/expert/25190 -https://www.oceanexpert.org/expert/35825 -https://www.oceanexpert.org/expert/17629 -https://www.oceanexpert.org/expert/45906 -https://www.oceanexpert.org/institution/12028 -https://www.oceanexpert.org/institution/5591 -https://www.oceanexpert.org/institution/15936 -https://www.oceanexpert.org/event/929 -https://www.oceanexpert.org/event/1317 -https://www.oceanexpert.org/institution/18202 -https://www.oceanexpert.org/expert/38631 -https://www.oceanexpert.org/expert/30176 -https://www.oceanexpert.org/event/3131 -https://www.oceanexpert.org/expert/36795 -https://www.oceanexpert.org/institution/18389 -https://www.oceanexpert.org/expert/36999 -https://www.oceanexpert.org/expert/26613 -https://www.oceanexpert.org/expert/20338 -https://www.oceanexpert.org/expert/42488 -https://www.oceanexpert.org/event/810 -https://www.oceanexpert.org/expert/20292 -https://www.oceanexpert.org/institution/11762 -https://www.oceanexpert.org/institution/19554 -https://www.oceanexpert.org/event/282 -https://www.oceanexpert.org/expert/43427 -https://www.oceanexpert.org/institution/15293 -https://www.oceanexpert.org/expert/27260 -https://www.oceanexpert.org/event/1225 -https://www.oceanexpert.org/expert/35574 -https://www.oceanexpert.org/expert/43508 -https://www.oceanexpert.org/institution/18039 -https://www.oceanexpert.org/expert/21904 -https://www.oceanexpert.org/expert/24880 -https://www.oceanexpert.org/expert/36816 -https://www.oceanexpert.org/institution/10711 -https://www.oceanexpert.org/expert/26135 -https://www.oceanexpert.org/expert/45372 -https://www.oceanexpert.org/expert/25392 -https://www.oceanexpert.org/expert/34900 -https://www.oceanexpert.org/expert/44514 -https://www.oceanexpert.org/expert/43398 -https://www.oceanexpert.org/expert/27152 -https://www.oceanexpert.org/expert/33198 -https://www.oceanexpert.org/expert/15076 -https://www.oceanexpert.org/expert/25223 -https://www.oceanexpert.org/institution/16488 -https://www.oceanexpert.org/institution/21909 -https://www.oceanexpert.org/event/584 -https://www.oceanexpert.org/institution/19834 -https://www.oceanexpert.org/institution/19480 -https://www.oceanexpert.org/expert/34565 -https://www.oceanexpert.org/expert/33064 -https://www.oceanexpert.org/institution/8423 -https://www.oceanexpert.org/expert/27621 -https://www.oceanexpert.org/expert/1299 -https://www.oceanexpert.org/institution/21089 -https://www.oceanexpert.org/expert/26290 -https://www.oceanexpert.org/institution/16124 -https://www.oceanexpert.org/expert/30750 -https://www.oceanexpert.org/expert/46462 -https://www.oceanexpert.org/institution/7489 -https://www.oceanexpert.org/expert/17706 -https://www.oceanexpert.org/expert/6762 -https://www.oceanexpert.org/event/706 -https://www.oceanexpert.org/expert/33653 -https://www.oceanexpert.org/expert/42660 -https://www.oceanexpert.org/institution/8724 -https://www.oceanexpert.org/expert/26420 -https://www.oceanexpert.org/expert/17452 -https://www.oceanexpert.org/expert/39565 -https://www.oceanexpert.org/expert/43537 -https://www.oceanexpert.org/expert/8786 -https://www.oceanexpert.org/institution/21772 -https://www.oceanexpert.org/institution/19992 -https://www.oceanexpert.org/event/513 -https://www.oceanexpert.org/institution/18064 -https://www.oceanexpert.org/expert/35824 -https://www.oceanexpert.org/expert/20685 -https://www.oceanexpert.org/institution/14931 -https://www.oceanexpert.org/expert/20316 -https://www.oceanexpert.org/institution/7255 -https://www.oceanexpert.org/institution/21962 -https://www.oceanexpert.org/expert/43517 -https://www.oceanexpert.org/institution/21229 -https://www.oceanexpert.org/expert/279 -https://www.oceanexpert.org/expert/25428 -https://www.oceanexpert.org/event/2505 -https://www.oceanexpert.org/event/2625 -https://www.oceanexpert.org/expert/17795 -https://www.oceanexpert.org/expert/24688 -https://www.oceanexpert.org/expert/21750 -https://www.oceanexpert.org/institution/20939 -https://www.oceanexpert.org/event/1589 -https://www.oceanexpert.org/expert/46249 -https://www.oceanexpert.org/expert/33271 -https://www.oceanexpert.org/expert/36932 -https://www.oceanexpert.org/expert/18209 -https://www.oceanexpert.org/expert/23013 -https://www.oceanexpert.org/event/2249 -https://www.oceanexpert.org/institution/15745 -https://www.oceanexpert.org/expert/38061 -https://www.oceanexpert.org/institution/20238 -https://www.oceanexpert.org/expert/12502 -https://www.oceanexpert.org/expert/38372 -https://www.oceanexpert.org/institution/17515 -https://www.oceanexpert.org/expert/18149 -https://www.oceanexpert.org/expert/30749 -https://www.oceanexpert.org/institution/17100 -https://www.oceanexpert.org/expert/26124 -https://www.oceanexpert.org/institution/15158 -https://www.oceanexpert.org/expert/35294 -https://www.oceanexpert.org/expert/36919 -https://www.oceanexpert.org/institution/10457 -https://www.oceanexpert.org/expert/96 -https://www.oceanexpert.org/institution/5467 -https://www.oceanexpert.org/institution/11992 -https://www.oceanexpert.org/event/3242 -https://www.oceanexpert.org/expert/45642 -https://www.oceanexpert.org/expert/26950 -https://www.oceanexpert.org/expert/988 -https://www.oceanexpert.org/institution/14379 -https://www.oceanexpert.org/expert/15376 -https://www.oceanexpert.org/expert/6921 -https://www.oceanexpert.org/expert/39635 -https://www.oceanexpert.org/institution/11012 -https://www.oceanexpert.org/institution/16128 -https://www.oceanexpert.org/expert/1961 -https://www.oceanexpert.org/expert/47572 -https://www.oceanexpert.org/expert/49023 -https://www.oceanexpert.org/expert/32778 -https://www.oceanexpert.org/expert/25313 -https://www.oceanexpert.org/institution/11650 -https://www.oceanexpert.org/expert/7449 -https://www.oceanexpert.org/institution/21536 -https://www.oceanexpert.org/expert/44728 -https://www.oceanexpert.org/institution/19673 -https://www.oceanexpert.org/expert/39670 -https://www.oceanexpert.org/event/3085 -https://www.oceanexpert.org/institution/12917 -https://www.oceanexpert.org/institution/13228 -https://www.oceanexpert.org/expert/26518 -https://www.oceanexpert.org/expert/40133 -https://www.oceanexpert.org/expert/36106 -https://www.oceanexpert.org/expert/26390 -https://www.oceanexpert.org/expert/37717 -https://www.oceanexpert.org/expert/14043 -https://www.oceanexpert.org/expert/21087 -https://www.oceanexpert.org/expert/43403 -https://www.oceanexpert.org/expert/26178 -https://www.oceanexpert.org/institution/17936 -https://www.oceanexpert.org/expert/36263 -https://www.oceanexpert.org/expert/17474 -https://www.oceanexpert.org/institution/15685 -https://www.oceanexpert.org/expert/21096 -https://www.oceanexpert.org/event/1984 -https://www.oceanexpert.org/institution/21330 -https://www.oceanexpert.org/expert/26020 -https://www.oceanexpert.org/expert/21662 -https://www.oceanexpert.org/expert/44190 -https://www.oceanexpert.org/institution/20491 -https://www.oceanexpert.org/event/1003 -https://www.oceanexpert.org/expert/23223 -https://www.oceanexpert.org/expert/21698 -https://www.oceanexpert.org/institution/18429 -https://www.oceanexpert.org/expert/1437 -https://www.oceanexpert.org/expert/47652 -https://www.oceanexpert.org/expert/29093 -https://www.oceanexpert.org/expert/37456 -https://www.oceanexpert.org/expert/3956 -https://www.oceanexpert.org/event/1952 -https://www.oceanexpert.org/expert/29533 -https://www.oceanexpert.org/institution/17838 -https://www.oceanexpert.org/event/147 -https://www.oceanexpert.org/expert/20732 -https://www.oceanexpert.org/institution/16695 -https://www.oceanexpert.org/expert/26682 -https://www.oceanexpert.org/event/1788 -https://www.oceanexpert.org/expert/7416 -https://www.oceanexpert.org/institution/5156 -https://www.oceanexpert.org/expert/29838 -https://www.oceanexpert.org/expert/44613 -https://www.oceanexpert.org/institution/16267 -https://www.oceanexpert.org/institution/16802 -https://www.oceanexpert.org/institution/17882 -https://www.oceanexpert.org/expert/30793 -https://www.oceanexpert.org/expert/48408 -https://www.oceanexpert.org/expert/24768 -https://www.oceanexpert.org/expert/38331 -https://www.oceanexpert.org/institution/6698 -https://www.oceanexpert.org/expert/29091 -https://www.oceanexpert.org/expert/20367 -https://www.oceanexpert.org/expert/26966 -https://www.oceanexpert.org/institution/17930 -https://www.oceanexpert.org/expert/13741 -https://www.oceanexpert.org/event/3085 -https://www.oceanexpert.org/institution/12423 -https://www.oceanexpert.org/institution/21117 -https://www.oceanexpert.org/expert/22650 -https://www.oceanexpert.org/institution/18162 -https://www.oceanexpert.org/expert/36867 -https://www.oceanexpert.org/institution/15000 -https://www.oceanexpert.org/expert/7160 -https://www.oceanexpert.org/expert/45482 -https://www.oceanexpert.org/institution/21886 -https://www.oceanexpert.org/expert/25455 -https://www.oceanexpert.org/expert/47266 -https://www.oceanexpert.org/institution/17947 -https://www.oceanexpert.org/expert/42517 -https://www.oceanexpert.org/expert/15899 -https://www.oceanexpert.org/institution/14233 -https://www.oceanexpert.org/institution/18876 -https://www.oceanexpert.org/expert/21764 -https://www.oceanexpert.org/institution/19947 -https://www.oceanexpert.org/expert/44918 -https://www.oceanexpert.org/expert/26553 -https://www.oceanexpert.org/expert/1659 -https://www.oceanexpert.org/expert/18834 -https://www.oceanexpert.org/expert/20143 -https://www.oceanexpert.org/institution/14645 -https://www.oceanexpert.org/expert/2817 -https://www.oceanexpert.org/expert/4333 -https://www.oceanexpert.org/expert/34980 -https://www.oceanexpert.org/expert/18830 -https://www.oceanexpert.org/expert/36381 -https://www.oceanexpert.org/expert/33409 -https://www.oceanexpert.org/event/2378 -https://www.oceanexpert.org/expert/48706 -https://www.oceanexpert.org/expert/43549 -https://www.oceanexpert.org/expert/44115 -https://www.oceanexpert.org/institution/19984 -https://www.oceanexpert.org/institution/19252 -https://www.oceanexpert.org/institution/20906 -https://www.oceanexpert.org/expert/11234 -https://www.oceanexpert.org/expert/12967 -https://www.oceanexpert.org/expert/31721 -https://www.oceanexpert.org/expert/37156 -https://www.oceanexpert.org/expert/25691 -https://www.oceanexpert.org/expert/20634 -https://www.oceanexpert.org/expert/21658 -https://www.oceanexpert.org/expert/24641 -https://www.oceanexpert.org/expert/14982 -https://www.oceanexpert.org/expert/27629 -https://www.oceanexpert.org/institution/20171 -https://www.oceanexpert.org/expert/20380 -https://www.oceanexpert.org/institution/18173 -https://www.oceanexpert.org/expert/40625 -https://www.oceanexpert.org/institution/10739 -https://www.oceanexpert.org/expert/42651 -https://www.oceanexpert.org/institution/4942 -https://www.oceanexpert.org/event/2256 -https://www.oceanexpert.org/expert/46713 -https://www.oceanexpert.org/institution/6786 -https://www.oceanexpert.org/expert/33434 -https://www.oceanexpert.org/institution/19075 -https://www.oceanexpert.org/expert/48246 -https://www.oceanexpert.org/institution/11569 -https://www.oceanexpert.org/expert/44862 -https://www.oceanexpert.org/expert/32616 -https://www.oceanexpert.org/expert/18206 -https://www.oceanexpert.org/expert/16868 -https://www.oceanexpert.org/expert/22770 -https://www.oceanexpert.org/expert/38369 -https://www.oceanexpert.org/expert/44687 -https://www.oceanexpert.org/expert/45560 -https://www.oceanexpert.org/institution/18569 -https://www.oceanexpert.org/institution/15398 -https://www.oceanexpert.org/expert/22653 -https://www.oceanexpert.org/institution/17199 -https://www.oceanexpert.org/expert/47000 -https://www.oceanexpert.org/institution/18970 -https://www.oceanexpert.org/institution/16828 -https://www.oceanexpert.org/institution/20187 -https://www.oceanexpert.org/expert/17444 -https://www.oceanexpert.org/expert/28124 -https://www.oceanexpert.org/expert/24994 -https://www.oceanexpert.org/expert/17856 -https://www.oceanexpert.org/expert/27075 -https://www.oceanexpert.org/expert/42455 -https://www.oceanexpert.org/event/3035 -https://www.oceanexpert.org/event/375 -https://www.oceanexpert.org/institution/19346 -https://www.oceanexpert.org/expert/32243 -https://www.oceanexpert.org/expert/10697 -https://www.oceanexpert.org/expert/26507 -https://www.oceanexpert.org/expert/15380 -https://www.oceanexpert.org/expert/9177 -https://www.oceanexpert.org/expert/48059 -https://www.oceanexpert.org/institution/21856 -https://www.oceanexpert.org/expert/43032 -https://www.oceanexpert.org/expert/46817 -https://www.oceanexpert.org/expert/38001 -https://www.oceanexpert.org/institution/17962 -https://www.oceanexpert.org/expert/17320 -https://www.oceanexpert.org/event/2473 -https://www.oceanexpert.org/expert/35883 -https://www.oceanexpert.org/expert/14102 -https://www.oceanexpert.org/institution/18 -https://www.oceanexpert.org/expert/11799 -https://www.oceanexpert.org/expert/25008 -https://www.oceanexpert.org/expert/16794 -https://www.oceanexpert.org/event/2228 -https://www.oceanexpert.org/institution/5389 -https://www.oceanexpert.org/institution/22045 -https://www.oceanexpert.org/institution/20785 -https://www.oceanexpert.org/expert/16429 -https://www.oceanexpert.org/expert/21674 -https://www.oceanexpert.org/expert/29800 -https://www.oceanexpert.org/event/1862 -https://www.oceanexpert.org/expert/17325 -https://www.oceanexpert.org/expert/15366 -https://www.oceanexpert.org/institution/19722 -https://www.oceanexpert.org/institution/17980 -https://www.oceanexpert.org/expert/22025 -https://www.oceanexpert.org/expert/36380 -https://www.oceanexpert.org/institution/19633 -https://www.oceanexpert.org/expert/22992 -https://www.oceanexpert.org/expert/25296 -https://www.oceanexpert.org/expert/36707 -https://www.oceanexpert.org/expert/22839 -https://www.oceanexpert.org/institution/13525 -https://www.oceanexpert.org/expert/40337 -https://www.oceanexpert.org/expert/47267 -https://www.oceanexpert.org/expert/45933 -https://www.oceanexpert.org/event/2795 -https://www.oceanexpert.org/expert/18470 -https://www.oceanexpert.org/expert/11530 -https://www.oceanexpert.org/expert/19381 -https://www.oceanexpert.org/expert/42765 -https://www.oceanexpert.org/institution/20578 -https://www.oceanexpert.org/expert/45848 -https://www.oceanexpert.org/institution/20411 -https://www.oceanexpert.org/expert/1131 -https://www.oceanexpert.org/institution/12316 -https://www.oceanexpert.org/expert/47032 -https://www.oceanexpert.org/institution/14407 -https://www.oceanexpert.org/event/664 -https://www.oceanexpert.org/event/1445 -https://www.oceanexpert.org/expert/40260 -https://www.oceanexpert.org/expert/33374 -https://www.oceanexpert.org/institution/7510 -https://www.oceanexpert.org/expert/42492 -https://www.oceanexpert.org/institution/19743 -https://www.oceanexpert.org/expert/42644 -https://www.oceanexpert.org/expert/7416 -https://www.oceanexpert.org/expert/24745 -https://www.oceanexpert.org/expert/32487 -https://www.oceanexpert.org/expert/36221 -https://www.oceanexpert.org/expert/21751 -https://www.oceanexpert.org/expert/19346 -https://www.oceanexpert.org/expert/24975 -https://www.oceanexpert.org/expert/1007 -https://www.oceanexpert.org/expert/48037 -https://www.oceanexpert.org/institution/15294 -https://www.oceanexpert.org/expert/38808 -https://www.oceanexpert.org/expert/37070 -https://www.oceanexpert.org/institution/19406 -https://www.oceanexpert.org/institution/12392 -https://www.oceanexpert.org/institution/18529 -https://www.oceanexpert.org/institution/8323 -https://www.oceanexpert.org/expert/18264 -https://www.oceanexpert.org/institution/19310 -https://www.oceanexpert.org/expert/44368 -https://www.oceanexpert.org/expert/36301 -https://www.oceanexpert.org/institution/21416 -https://www.oceanexpert.org/expert/11300 -https://www.oceanexpert.org/expert/31906 -https://www.oceanexpert.org/expert/8373 -https://www.oceanexpert.org/expert/25478 -https://www.oceanexpert.org/expert/46755 -https://www.oceanexpert.org/expert/37223 -https://www.oceanexpert.org/expert/18389 -https://www.oceanexpert.org/expert/19161 -https://www.oceanexpert.org/institution/6194 -https://www.oceanexpert.org/event/195 -https://www.oceanexpert.org/institution/21266 -https://www.oceanexpert.org/expert/37184 -https://www.oceanexpert.org/expert/29653 -https://www.oceanexpert.org/expert/44635 -https://www.oceanexpert.org/expert/32817 -https://www.oceanexpert.org/expert/44067 -https://www.oceanexpert.org/institution/7029 -https://www.oceanexpert.org/expert/32736 -https://www.oceanexpert.org/expert/23436 -https://www.oceanexpert.org/expert/34056 -https://www.oceanexpert.org/institution/21014 -https://www.oceanexpert.org/institution/18211 -https://www.oceanexpert.org/expert/19755 -https://www.oceanexpert.org/expert/17261 -https://www.oceanexpert.org/institution/5550 -https://www.oceanexpert.org/institution/21845 -https://www.oceanexpert.org/expert/22343 -https://www.oceanexpert.org/institution/12043 -https://www.oceanexpert.org/event/2514 -https://www.oceanexpert.org/expert/32185 -https://www.oceanexpert.org/expert/24296 -https://www.oceanexpert.org/institution/18422 -https://www.oceanexpert.org/expert/44124 -https://www.oceanexpert.org/expert/39597 -https://www.oceanexpert.org/expert/24714 -https://www.oceanexpert.org/institution/18572 -https://www.oceanexpert.org/institution/14814 -https://www.oceanexpert.org/expert/37506 -https://www.oceanexpert.org/expert/25316 -https://www.oceanexpert.org/institution/18596 -https://www.oceanexpert.org/expert/33654 -https://www.oceanexpert.org/expert/26268 -https://www.oceanexpert.org/expert/18988 -https://www.oceanexpert.org/expert/36849 -https://www.oceanexpert.org/expert/28420 -https://www.oceanexpert.org/institution/15786 -https://www.oceanexpert.org/expert/31949 -https://www.oceanexpert.org/expert/26344 -https://www.oceanexpert.org/expert/968 -https://www.oceanexpert.org/expert/24276 -https://www.oceanexpert.org/expert/36625 -https://www.oceanexpert.org/expert/44848 -https://www.oceanexpert.org/institution/20620 -https://www.oceanexpert.org/expert/45204 -https://www.oceanexpert.org/expert/47063 -https://www.oceanexpert.org/expert/25833 -https://www.oceanexpert.org/expert/25927 -https://www.oceanexpert.org/expert/36826 -https://www.oceanexpert.org/expert/33789 -https://www.oceanexpert.org/institution/17852 -https://www.oceanexpert.org/expert/6270 -https://www.oceanexpert.org/event/2746 -https://www.oceanexpert.org/expert/15471 -https://www.oceanexpert.org/expert/27661 -https://www.oceanexpert.org/expert/36917 -https://www.oceanexpert.org/institution/15911 -https://www.oceanexpert.org/event/2432 -https://www.oceanexpert.org/institution/20888 -https://www.oceanexpert.org/expert/44234 -https://www.oceanexpert.org/institution/13053 -https://www.oceanexpert.org/expert/45837 -https://www.oceanexpert.org/expert/22431 -https://www.oceanexpert.org/institution/19642 -https://www.oceanexpert.org/event/835 -https://www.oceanexpert.org/event/2504 -https://www.oceanexpert.org/institution/19434 -https://www.oceanexpert.org/event/947 -https://www.oceanexpert.org/expert/23905 -https://www.oceanexpert.org/institution/11723 -https://www.oceanexpert.org/expert/36120 -https://www.oceanexpert.org/expert/34885 -https://www.oceanexpert.org/expert/17384 -https://www.oceanexpert.org/institution/19311 -https://www.oceanexpert.org/institution/16125 -https://www.oceanexpert.org/institution/21586 -https://www.oceanexpert.org/expert/47829 -https://www.oceanexpert.org/expert/46565 -https://www.oceanexpert.org/expert/44665 -https://www.oceanexpert.org/expert/17563 -https://www.oceanexpert.org/expert/46681 -https://www.oceanexpert.org/expert/13293 -https://www.oceanexpert.org/event/2988 -https://www.oceanexpert.org/expert/25074 -https://www.oceanexpert.org/expert/20567 -https://www.oceanexpert.org/expert/20471 -https://www.oceanexpert.org/expert/44561 -https://www.oceanexpert.org/expert/30031 -https://www.oceanexpert.org/expert/37367 -https://www.oceanexpert.org/expert/46306 -https://www.oceanexpert.org/institution/11759 -https://www.oceanexpert.org/expert/17249 -https://www.oceanexpert.org/expert/14190 -https://www.oceanexpert.org/expert/25451 -https://www.oceanexpert.org/expert/25880 -https://www.oceanexpert.org/expert/23391 -https://www.oceanexpert.org/expert/45838 -https://www.oceanexpert.org/event/1234 -https://www.oceanexpert.org/expert/39237 -https://www.oceanexpert.org/event/3163 -https://www.oceanexpert.org/expert/43719 -https://www.oceanexpert.org/institution/20844 -https://www.oceanexpert.org/expert/15835 -https://www.oceanexpert.org/institution/13491 -https://www.oceanexpert.org/expert/47819 -https://www.oceanexpert.org/expert/36713 -https://www.oceanexpert.org/expert/26036 -https://www.oceanexpert.org/expert/43654 -https://www.oceanexpert.org/event/3016 -https://www.oceanexpert.org/expert/40273 -https://www.oceanexpert.org/expert/20732 -https://www.oceanexpert.org/expert/29632 -https://www.oceanexpert.org/expert/45950 -https://www.oceanexpert.org/institution/13024 -https://www.oceanexpert.org/institution/18505 -https://www.oceanexpert.org/institution/15282 -https://www.oceanexpert.org/expert/18455 -https://www.oceanexpert.org/expert/24873 -https://www.oceanexpert.org/expert/20454 -https://www.oceanexpert.org/expert/23905 -https://www.oceanexpert.org/expert/18886 -https://www.oceanexpert.org/expert/20703 -https://www.oceanexpert.org/expert/36667 -https://www.oceanexpert.org/expert/19886 -https://www.oceanexpert.org/expert/38884 -https://www.oceanexpert.org/institution/19700 -https://www.oceanexpert.org/expert/35845 -https://www.oceanexpert.org/event/1435 -https://www.oceanexpert.org/institution/16228 -https://www.oceanexpert.org/expert/44296 -https://www.oceanexpert.org/expert/46108 -https://www.oceanexpert.org/expert/25668 -https://www.oceanexpert.org/expert/12620 -https://www.oceanexpert.org/event/2293 -https://www.oceanexpert.org/expert/43176 -https://www.oceanexpert.org/institution/16805 -https://www.oceanexpert.org/expert/25664 -https://www.oceanexpert.org/expert/26198 -https://www.oceanexpert.org/expert/37897 -https://www.oceanexpert.org/expert/20079 -https://www.oceanexpert.org/institution/21524 -https://www.oceanexpert.org/expert/39243 -https://www.oceanexpert.org/expert/18980 -https://www.oceanexpert.org/event/2619 -https://www.oceanexpert.org/institution/20975 -https://www.oceanexpert.org/expert/48609 -https://www.oceanexpert.org/expert/44329 -https://www.oceanexpert.org/institution/11020 -https://www.oceanexpert.org/expert/28269 -https://www.oceanexpert.org/expert/37911 -https://www.oceanexpert.org/expert/15849 -https://www.oceanexpert.org/expert/3587 -https://www.oceanexpert.org/expert/41678 -https://www.oceanexpert.org/expert/35096 -https://www.oceanexpert.org/expert/25761 -https://www.oceanexpert.org/institution/21923 -https://www.oceanexpert.org/institution/21557 -https://www.oceanexpert.org/expert/38476 -https://www.oceanexpert.org/event/1872 -https://www.oceanexpert.org/event/99 -https://www.oceanexpert.org/expert/2454 -https://www.oceanexpert.org/expert/38983 -https://www.oceanexpert.org/expert/39383 -https://www.oceanexpert.org/expert/36414 -https://www.oceanexpert.org/institution/20818 -https://www.oceanexpert.org/expert/17249 -https://www.oceanexpert.org/expert/26078 -https://www.oceanexpert.org/institution/11356 -https://www.oceanexpert.org/institution/19365 -https://www.oceanexpert.org/expert/36472 -https://www.oceanexpert.org/event/2942 -https://www.oceanexpert.org/expert/26435 -https://www.oceanexpert.org/expert/17016 -https://www.oceanexpert.org/event/2725 -https://www.oceanexpert.org/event/2719 -https://www.oceanexpert.org/expert/27274 -https://www.oceanexpert.org/expert/33175 -https://www.oceanexpert.org/expert/20462 -https://www.oceanexpert.org/institution/20241 -https://www.oceanexpert.org/expert/24374 -https://www.oceanexpert.org/expert/46921 -https://www.oceanexpert.org/expert/20499 -https://www.oceanexpert.org/event/1932 -https://www.oceanexpert.org/expert/14780 -https://www.oceanexpert.org/institution/16689 -https://www.oceanexpert.org/expert/13566 -https://www.oceanexpert.org/institution/11256 -https://www.oceanexpert.org/institution/20626 -https://www.oceanexpert.org/expert/44787 -https://www.oceanexpert.org/expert/20063 -https://www.oceanexpert.org/expert/43517 -https://www.oceanexpert.org/expert/25716 -https://www.oceanexpert.org/institution/15707 -https://www.oceanexpert.org/institution/19382 -https://www.oceanexpert.org/event/501 -https://www.oceanexpert.org/expert/14037 -https://www.oceanexpert.org/expert/20228 -https://www.oceanexpert.org/expert/11541 -https://www.oceanexpert.org/expert/32665 -https://www.oceanexpert.org/expert/6936 -https://www.oceanexpert.org/expert/26819 -https://www.oceanexpert.org/institution/12751 -https://www.oceanexpert.org/institution/13360 -https://www.oceanexpert.org/expert/17176 -https://www.oceanexpert.org/expert/44734 -https://www.oceanexpert.org/institution/7851 -https://www.oceanexpert.org/expert/44651 -https://www.oceanexpert.org/expert/31394 -https://www.oceanexpert.org/expert/26559 -https://www.oceanexpert.org/expert/3807 -https://www.oceanexpert.org/expert/33288 -https://www.oceanexpert.org/event/2577 -https://www.oceanexpert.org/event/2778 -https://www.oceanexpert.org/institution/19719 -https://www.oceanexpert.org/expert/59 -https://www.oceanexpert.org/event/2741 -https://www.oceanexpert.org/institution/20267 -https://www.oceanexpert.org/institution/21185 -https://www.oceanexpert.org/expert/48701 -https://www.oceanexpert.org/event/693 -https://www.oceanexpert.org/expert/24093 -https://www.oceanexpert.org/expert/45474 -https://www.oceanexpert.org/institution/18577 -https://www.oceanexpert.org/expert/34063 -https://www.oceanexpert.org/expert/46645 -https://www.oceanexpert.org/institution/18708 -https://www.oceanexpert.org/institution/15876 -https://www.oceanexpert.org/expert/44185 -https://www.oceanexpert.org/expert/43868 -https://www.oceanexpert.org/expert/43148 -https://www.oceanexpert.org/institution/19442 -https://www.oceanexpert.org/expert/3103 -https://www.oceanexpert.org/institution/12629 -https://www.oceanexpert.org/expert/48824 -https://www.oceanexpert.org/expert/35986 -https://www.oceanexpert.org/institution/11836 -https://www.oceanexpert.org/expert/27037 -https://www.oceanexpert.org/expert/22964 -https://www.oceanexpert.org/expert/27415 -https://www.oceanexpert.org/expert/19887 -https://www.oceanexpert.org/expert/20941 -https://www.oceanexpert.org/expert/37533 -https://www.oceanexpert.org/expert/37358 -https://www.oceanexpert.org/expert/37435 -https://www.oceanexpert.org/event/2785 -https://www.oceanexpert.org/expert/16985 -https://www.oceanexpert.org/institution/6641 -https://www.oceanexpert.org/expert/35429 -https://www.oceanexpert.org/expert/31965 -https://www.oceanexpert.org/expert/37048 -https://www.oceanexpert.org/expert/16674 -https://www.oceanexpert.org/expert/16101 -https://www.oceanexpert.org/expert/48465 -https://www.oceanexpert.org/event/3027 -https://www.oceanexpert.org/expert/35275 -https://www.oceanexpert.org/expert/23312 -https://www.oceanexpert.org/expert/22876 -https://www.oceanexpert.org/event/3087 -https://www.oceanexpert.org/expert/22952 -https://www.oceanexpert.org/expert/26719 -https://www.oceanexpert.org/expert/35345 -https://www.oceanexpert.org/event/2052 -https://www.oceanexpert.org/expert/33002 -https://www.oceanexpert.org/institution/16416 -https://www.oceanexpert.org/event/3002 -https://www.oceanexpert.org/expert/33524 -https://www.oceanexpert.org/expert/17813 -https://www.oceanexpert.org/institution/7757 -https://www.oceanexpert.org/expert/31087 -https://www.oceanexpert.org/expert/19983 -https://www.oceanexpert.org/expert/19253 -https://www.oceanexpert.org/expert/39396 -https://www.oceanexpert.org/expert/3806 -https://www.oceanexpert.org/expert/33579 -https://www.oceanexpert.org/expert/30728 -https://www.oceanexpert.org/expert/1445 -https://www.oceanexpert.org/institution/13142 -https://www.oceanexpert.org/expert/43612 -https://www.oceanexpert.org/expert/46050 -https://www.oceanexpert.org/expert/36094 -https://www.oceanexpert.org/expert/23862 -https://www.oceanexpert.org/institution/21239 -https://www.oceanexpert.org/expert/29739 -https://www.oceanexpert.org/event/57 -https://www.oceanexpert.org/institution/18456 -https://www.oceanexpert.org/expert/21162 -https://www.oceanexpert.org/expert/31125 -https://www.oceanexpert.org/event/2951 -https://www.oceanexpert.org/expert/39288 -https://www.oceanexpert.org/expert/26784 -https://www.oceanexpert.org/expert/32577 -https://www.oceanexpert.org/expert/29259 -https://www.oceanexpert.org/institution/21537 -https://www.oceanexpert.org/expert/33848 -https://www.oceanexpert.org/expert/24792 -https://www.oceanexpert.org/institution/12726 -https://www.oceanexpert.org/expert/43239 -https://www.oceanexpert.org/institution/22082 -https://www.oceanexpert.org/expert/12758 -https://www.oceanexpert.org/expert/28829 -https://www.oceanexpert.org/event/1760 -https://www.oceanexpert.org/institution/19935 -https://www.oceanexpert.org/expert/31066 -https://www.oceanexpert.org/expert/44861 -https://www.oceanexpert.org/expert/17938 -https://www.oceanexpert.org/expert/42163 -https://www.oceanexpert.org/expert/20455 -https://www.oceanexpert.org/expert/13588 -https://www.oceanexpert.org/expert/17852 -https://www.oceanexpert.org/expert/1520 -https://www.oceanexpert.org/event/2779 -https://www.oceanexpert.org/expert/25149 -https://www.oceanexpert.org/expert/20409 -https://www.oceanexpert.org/expert/13926 -https://www.oceanexpert.org/expert/1943 -https://www.oceanexpert.org/expert/18213 -https://www.oceanexpert.org/institution/14492 -https://www.oceanexpert.org/expert/47573 -https://www.oceanexpert.org/expert/45374 -https://www.oceanexpert.org/expert/16664 -https://www.oceanexpert.org/expert/34461 -https://www.oceanexpert.org/expert/27751 -https://www.oceanexpert.org/expert/7902 -https://www.oceanexpert.org/institution/10770 -https://www.oceanexpert.org/institution/21894 -https://www.oceanexpert.org/institution/17804 -https://www.oceanexpert.org/expert/48727 -https://www.oceanexpert.org/expert/37809 -https://www.oceanexpert.org/expert/19888 -https://www.oceanexpert.org/institution/21777 -https://www.oceanexpert.org/event/831 -https://www.oceanexpert.org/event/2086 -https://www.oceanexpert.org/institution/20851 -https://www.oceanexpert.org/expert/25862 -https://www.oceanexpert.org/institution/17644 -https://www.oceanexpert.org/expert/32525 -https://www.oceanexpert.org/expert/36426 -https://www.oceanexpert.org/expert/22502 -https://www.oceanexpert.org/institution/19604 -https://www.oceanexpert.org/expert/36662 -https://www.oceanexpert.org/institution/17670 -https://www.oceanexpert.org/institution/16763 -https://www.oceanexpert.org/event/2521 -https://www.oceanexpert.org/expert/46711 -https://www.oceanexpert.org/expert/32495 -https://www.oceanexpert.org/expert/10780 -https://www.oceanexpert.org/expert/44676 -https://www.oceanexpert.org/institution/21045 -https://www.oceanexpert.org/expert/38433 -https://www.oceanexpert.org/expert/34768 -https://www.oceanexpert.org/expert/31018 -https://www.oceanexpert.org/expert/39281 -https://www.oceanexpert.org/expert/33064 -https://www.oceanexpert.org/expert/45847 -https://www.oceanexpert.org/expert/39171 -https://www.oceanexpert.org/institution/8928 -https://www.oceanexpert.org/expert/19395 -https://www.oceanexpert.org/expert/24451 -https://www.oceanexpert.org/event/1606 -https://www.oceanexpert.org/expert/8522 -https://www.oceanexpert.org/expert/2015 -https://www.oceanexpert.org/institution/18116 -https://www.oceanexpert.org/expert/46529 -https://www.oceanexpert.org/expert/36157 -https://www.oceanexpert.org/expert/39826 -https://www.oceanexpert.org/institution/20852 -https://www.oceanexpert.org/institution/11872 -https://www.oceanexpert.org/institution/17061 -https://www.oceanexpert.org/expert/15374 -https://www.oceanexpert.org/expert/21551 -https://www.oceanexpert.org/expert/15959 -https://www.oceanexpert.org/expert/28109 -https://www.oceanexpert.org/institution/21340 -https://www.oceanexpert.org/institution/12661 -https://www.oceanexpert.org/expert/13320 -https://www.oceanexpert.org/expert/17610 -https://www.oceanexpert.org/expert/20857 -https://www.oceanexpert.org/expert/23674 -https://www.oceanexpert.org/expert/36330 -https://www.oceanexpert.org/expert/29915 -https://www.oceanexpert.org/institution/21580 -https://www.oceanexpert.org/expert/21554 -https://www.oceanexpert.org/expert/27182 -https://www.oceanexpert.org/expert/12441 -https://www.oceanexpert.org/expert/42411 -https://www.oceanexpert.org/event/2169 -https://www.oceanexpert.org/expert/21198 -https://www.oceanexpert.org/institution/5572 -https://www.oceanexpert.org/expert/37360 -https://www.oceanexpert.org/event/1090 -https://www.oceanexpert.org/expert/32208 -https://www.oceanexpert.org/expert/38752 -https://www.oceanexpert.org/expert/32453 -https://www.oceanexpert.org/expert/43644 -https://www.oceanexpert.org/institution/10429 -https://www.oceanexpert.org/expert/7270 -https://www.oceanexpert.org/expert/25283 -https://www.oceanexpert.org/expert/19951 -https://www.oceanexpert.org/event/2415 -https://www.oceanexpert.org/expert/23269 -https://www.oceanexpert.org/expert/45814 -https://www.oceanexpert.org/institution/13518 -https://www.oceanexpert.org/expert/26561 -https://www.oceanexpert.org/expert/24179 -https://www.oceanexpert.org/event/3098 -https://www.oceanexpert.org/institution/19040 -https://www.oceanexpert.org/expert/35070 -https://www.oceanexpert.org/event/1422 -https://www.oceanexpert.org/event/2819 -https://www.oceanexpert.org/institution/16254 -https://www.oceanexpert.org/expert/19523 -https://www.oceanexpert.org/institution/14803 -https://www.oceanexpert.org/institution/19668 -https://www.oceanexpert.org/institution/21328 -https://www.oceanexpert.org/event/2195 -https://www.oceanexpert.org/institution/20819 -https://www.oceanexpert.org/institution/20273 -https://www.oceanexpert.org/expert/36686 -https://www.oceanexpert.org/institution/18488 -https://www.oceanexpert.org/expert/16192 -https://www.oceanexpert.org/expert/44499 -https://www.oceanexpert.org/event/97 -https://www.oceanexpert.org/expert/26021 -https://www.oceanexpert.org/expert/21815 -https://www.oceanexpert.org/expert/20817 -https://www.oceanexpert.org/event/946 -https://www.oceanexpert.org/expert/31235 -https://www.oceanexpert.org/institution/5198 -https://www.oceanexpert.org/expert/18533 -https://www.oceanexpert.org/expert/19802 -https://www.oceanexpert.org/institution/21509 -https://www.oceanexpert.org/institution/18473 -https://www.oceanexpert.org/institution/21046 -https://www.oceanexpert.org/expert/23753 -https://www.oceanexpert.org/expert/4558 -https://www.oceanexpert.org/expert/23566 -https://www.oceanexpert.org/expert/38353 -https://www.oceanexpert.org/expert/37248 -https://www.oceanexpert.org/expert/11554 -https://www.oceanexpert.org/institution/12085 -https://www.oceanexpert.org/expert/27424 -https://www.oceanexpert.org/expert/11857 -https://www.oceanexpert.org/event/2218 -https://www.oceanexpert.org/expert/16625 -https://www.oceanexpert.org/expert/5210 -https://www.oceanexpert.org/expert/24585 -https://www.oceanexpert.org/expert/27398 -https://www.oceanexpert.org/expert/27568 -https://www.oceanexpert.org/expert/23125 -https://www.oceanexpert.org/expert/40330 -https://www.oceanexpert.org/expert/19342 -https://www.oceanexpert.org/event/1774 -https://www.oceanexpert.org/expert/46512 -https://www.oceanexpert.org/event/1721 -https://www.oceanexpert.org/institution/19164 -https://www.oceanexpert.org/institution/18630 -https://www.oceanexpert.org/event/2802 -https://www.oceanexpert.org/expert/43452 -https://www.oceanexpert.org/expert/44167 -https://www.oceanexpert.org/expert/21842 -https://www.oceanexpert.org/institution/17472 -https://www.oceanexpert.org/expert/36192 -https://www.oceanexpert.org/expert/34053 -https://www.oceanexpert.org/institution/18726 -https://www.oceanexpert.org/expert/45079 -https://www.oceanexpert.org/expert/32244 -https://www.oceanexpert.org/institution/11773 -https://www.oceanexpert.org/expert/40574 -https://www.oceanexpert.org/expert/35488 -https://www.oceanexpert.org/expert/47467 -https://www.oceanexpert.org/expert/43734 -https://www.oceanexpert.org/expert/43686 -https://www.oceanexpert.org/expert/36937 -https://www.oceanexpert.org/expert/23188 -https://www.oceanexpert.org/institution/17905 -https://www.oceanexpert.org/event/1282 -https://www.oceanexpert.org/institution/18105 -https://www.oceanexpert.org/expert/4525 -https://www.oceanexpert.org/expert/37258 -https://www.oceanexpert.org/institution/9870 -https://www.oceanexpert.org/institution/22028 -https://www.oceanexpert.org/expert/20674 -https://www.oceanexpert.org/event/2683 -https://www.oceanexpert.org/institution/20462 -https://www.oceanexpert.org/expert/40093 -https://www.oceanexpert.org/expert/42639 -https://www.oceanexpert.org/expert/47154 -https://www.oceanexpert.org/expert/47432 -https://www.oceanexpert.org/institution/9878 -https://www.oceanexpert.org/expert/17907 -https://www.oceanexpert.org/institution/18995 -https://www.oceanexpert.org/expert/26906 -https://www.oceanexpert.org/event/175 -https://www.oceanexpert.org/expert/23905 -https://www.oceanexpert.org/expert/26260 -https://www.oceanexpert.org/expert/22296 -https://www.oceanexpert.org/expert/41410 -https://www.oceanexpert.org/event/2812 -https://www.oceanexpert.org/expert/38269 -https://www.oceanexpert.org/expert/27725 -https://www.oceanexpert.org/expert/46894 -https://www.oceanexpert.org/expert/32059 -https://www.oceanexpert.org/expert/10257 -https://www.oceanexpert.org/expert/42546 -https://www.oceanexpert.org/expert/46396 -https://www.oceanexpert.org/expert/3210 -https://www.oceanexpert.org/institution/17779 -https://www.oceanexpert.org/expert/38212 -https://www.oceanexpert.org/expert/38105 -https://www.oceanexpert.org/expert/19278 -https://www.oceanexpert.org/expert/31119 -https://www.oceanexpert.org/event/1671 -https://www.oceanexpert.org/expert/27822 -https://www.oceanexpert.org/institution/17282 -https://www.oceanexpert.org/event/1639 -https://www.oceanexpert.org/institution/9132 -https://www.oceanexpert.org/expert/6691 -https://www.oceanexpert.org/expert/45445 -https://www.oceanexpert.org/expert/15610 -https://www.oceanexpert.org/expert/38629 -https://www.oceanexpert.org/event/211 -https://www.oceanexpert.org/expert/46880 -https://www.oceanexpert.org/expert/43575 -https://www.oceanexpert.org/expert/46000 -https://www.oceanexpert.org/event/693 -https://www.oceanexpert.org/institution/18812 -https://www.oceanexpert.org/expert/14992 -https://www.oceanexpert.org/expert/24268 -https://www.oceanexpert.org/expert/7154 -https://www.oceanexpert.org/event/606 -https://www.oceanexpert.org/expert/30246 -https://www.oceanexpert.org/expert/26988 -https://www.oceanexpert.org/institution/17690 -https://www.oceanexpert.org/expert/46731 -https://www.oceanexpert.org/expert/42426 -https://www.oceanexpert.org/expert/20968 -https://www.oceanexpert.org/expert/17209 -https://www.oceanexpert.org/expert/17299 -https://www.oceanexpert.org/institution/18400 -https://www.oceanexpert.org/expert/35665 -https://www.oceanexpert.org/expert/26839 -https://www.oceanexpert.org/expert/44154 -https://www.oceanexpert.org/expert/13144 -https://www.oceanexpert.org/institution/14459 -https://www.oceanexpert.org/institution/7860 -https://www.oceanexpert.org/expert/43056 -https://www.oceanexpert.org/expert/47020 -https://www.oceanexpert.org/expert/32382 -https://www.oceanexpert.org/institution/8666 -https://www.oceanexpert.org/institution/8002 -https://www.oceanexpert.org/institution/18699 -https://www.oceanexpert.org/expert/48879 -https://www.oceanexpert.org/expert/33652 -https://www.oceanexpert.org/institution/16411 -https://www.oceanexpert.org/expert/19764 -https://www.oceanexpert.org/expert/22171 -https://www.oceanexpert.org/expert/28149 -https://www.oceanexpert.org/expert/25607 -https://www.oceanexpert.org/expert/14419 -https://www.oceanexpert.org/event/2864 -https://www.oceanexpert.org/institution/13964 -https://www.oceanexpert.org/expert/28032 -https://www.oceanexpert.org/institution/11705 -https://www.oceanexpert.org/institution/17721 -https://www.oceanexpert.org/expert/2001 -https://www.oceanexpert.org/expert/45776 -https://www.oceanexpert.org/expert/22053 -https://www.oceanexpert.org/expert/17909 -https://www.oceanexpert.org/expert/36865 -https://www.oceanexpert.org/institution/17734 -https://www.oceanexpert.org/expert/44845 -https://www.oceanexpert.org/expert/31684 -https://www.oceanexpert.org/expert/25452 -https://www.oceanexpert.org/expert/46895 -https://www.oceanexpert.org/expert/26475 -https://www.oceanexpert.org/expert/44581 -https://www.oceanexpert.org/expert/47618 -https://www.oceanexpert.org/expert/42832 -https://www.oceanexpert.org/institution/18292 -https://www.oceanexpert.org/expert/19155 -https://www.oceanexpert.org/expert/35588 -https://www.oceanexpert.org/expert/21135 -https://www.oceanexpert.org/institution/19141 -https://www.oceanexpert.org/expert/32065 -https://www.oceanexpert.org/institution/9557 -https://www.oceanexpert.org/institution/12736 -https://www.oceanexpert.org/expert/27032 -https://www.oceanexpert.org/expert/25792 -https://www.oceanexpert.org/expert/43087 -https://www.oceanexpert.org/expert/46030 -https://www.oceanexpert.org/expert/35673 -https://www.oceanexpert.org/expert/28332 -https://www.oceanexpert.org/expert/16960 -https://www.oceanexpert.org/expert/18575 -https://www.oceanexpert.org/expert/6821 -https://www.oceanexpert.org/expert/13257 -https://www.oceanexpert.org/expert/43320 -https://www.oceanexpert.org/expert/15840 -https://www.oceanexpert.org/expert/45547 -https://www.oceanexpert.org/institution/21825 -https://www.oceanexpert.org/expert/23969 -https://www.oceanexpert.org/event/684 -https://www.oceanexpert.org/institution/13696 -https://www.oceanexpert.org/expert/19651 -https://www.oceanexpert.org/expert/43374 -https://www.oceanexpert.org/expert/27438 -https://www.oceanexpert.org/expert/21994 -https://www.oceanexpert.org/expert/22749 -https://www.oceanexpert.org/expert/44679 -https://www.oceanexpert.org/event/1693 -https://www.oceanexpert.org/expert/47176 -https://www.oceanexpert.org/expert/22671 -https://www.oceanexpert.org/expert/34797 -https://www.oceanexpert.org/expert/29701 -https://www.oceanexpert.org/institution/11558 -https://www.oceanexpert.org/expert/26010 -https://www.oceanexpert.org/expert/42987 -https://www.oceanexpert.org/institution/7131 -https://www.oceanexpert.org/institution/16043 -https://www.oceanexpert.org/institution/21685 -https://www.oceanexpert.org/expert/45693 -https://www.oceanexpert.org/expert/47070 -https://www.oceanexpert.org/institution/8393 -https://www.oceanexpert.org/expert/36898 -https://www.oceanexpert.org/expert/43060 -https://www.oceanexpert.org/expert/22415 -https://www.oceanexpert.org/institution/16924 -https://www.oceanexpert.org/expert/888 -https://www.oceanexpert.org/expert/37711 -https://www.oceanexpert.org/institution/13903 -https://www.oceanexpert.org/expert/3475 -https://www.oceanexpert.org/expert/24600 -https://www.oceanexpert.org/event/2041 -https://www.oceanexpert.org/expert/14850 -https://www.oceanexpert.org/expert/21630 -https://www.oceanexpert.org/institution/17027 -https://www.oceanexpert.org/institution/18766 -https://www.oceanexpert.org/institution/13321 -https://www.oceanexpert.org/expert/45607 -https://www.oceanexpert.org/institution/21594 -https://www.oceanexpert.org/expert/16808 -https://www.oceanexpert.org/institution/17098 -https://www.oceanexpert.org/expert/24045 -https://www.oceanexpert.org/expert/44830 -https://www.oceanexpert.org/expert/43664 -https://www.oceanexpert.org/expert/34717 -https://www.oceanexpert.org/institution/21486 -https://www.oceanexpert.org/event/1758 -https://www.oceanexpert.org/expert/23587 -https://www.oceanexpert.org/event/1663 -https://www.oceanexpert.org/expert/45883 -https://www.oceanexpert.org/institution/18990 -https://www.oceanexpert.org/expert/20864 -https://www.oceanexpert.org/institution/10405 -https://www.oceanexpert.org/institution/18428 -https://www.oceanexpert.org/expert/13131 -https://www.oceanexpert.org/expert/11542 -https://www.oceanexpert.org/expert/24322 -https://www.oceanexpert.org/expert/16730 -https://www.oceanexpert.org/expert/38540 -https://www.oceanexpert.org/expert/48419 -https://www.oceanexpert.org/event/3281 -https://www.oceanexpert.org/event/3248 -https://www.oceanexpert.org/event/257 -https://www.oceanexpert.org/expert/48468 -https://www.oceanexpert.org/expert/988 -https://www.oceanexpert.org/expert/21310 -https://www.oceanexpert.org/institution/20763 -https://www.oceanexpert.org/expert/18493 -https://www.oceanexpert.org/event/1787 -https://www.oceanexpert.org/expert/47898 -https://www.oceanexpert.org/expert/8010 -https://www.oceanexpert.org/expert/22337 -https://www.oceanexpert.org/expert/27283 -https://www.oceanexpert.org/institution/21130 -https://www.oceanexpert.org/expert/37184 -https://www.oceanexpert.org/institution/19213 -https://www.oceanexpert.org/event/2346 -https://www.oceanexpert.org/expert/45522 -https://www.oceanexpert.org/expert/45854 -https://www.oceanexpert.org/expert/21696 -https://www.oceanexpert.org/expert/47392 -https://www.oceanexpert.org/expert/42949 -https://www.oceanexpert.org/expert/23860 -https://www.oceanexpert.org/institution/19497 -https://www.oceanexpert.org/expert/31721 -https://www.oceanexpert.org/expert/10162 -https://www.oceanexpert.org/event/1688 -https://www.oceanexpert.org/expert/17284 -https://www.oceanexpert.org/expert/18304 -https://www.oceanexpert.org/expert/18540 -https://www.oceanexpert.org/expert/35437 -https://www.oceanexpert.org/expert/43049 -https://www.oceanexpert.org/expert/18143 -https://www.oceanexpert.org/institution/21101 -https://www.oceanexpert.org/institution/21712 -https://www.oceanexpert.org/expert/9648 -https://www.oceanexpert.org/institution/15804 -https://www.oceanexpert.org/expert/23664 -https://www.oceanexpert.org/institution/14808 -https://www.oceanexpert.org/expert/48001 -https://www.oceanexpert.org/event/1264 -https://www.oceanexpert.org/expert/20760 -https://www.oceanexpert.org/expert/16977 -https://www.oceanexpert.org/institution/6020 -https://www.oceanexpert.org/expert/45343 -https://www.oceanexpert.org/institution/13810 -https://www.oceanexpert.org/institution/18072 -https://www.oceanexpert.org/event/1589 -https://www.oceanexpert.org/expert/8445 -https://www.oceanexpert.org/expert/20899 -https://www.oceanexpert.org/expert/22566 -https://www.oceanexpert.org/expert/44568 -https://www.oceanexpert.org/expert/21223 -https://www.oceanexpert.org/expert/32999 -https://www.oceanexpert.org/expert/3865 -https://www.oceanexpert.org/expert/43681 -https://www.oceanexpert.org/expert/35821 -https://www.oceanexpert.org/expert/36831 -https://www.oceanexpert.org/expert/19005 -https://www.oceanexpert.org/event/3062 -https://www.oceanexpert.org/institution/17318 -https://www.oceanexpert.org/expert/2252 -https://www.oceanexpert.org/expert/35123 -https://www.oceanexpert.org/expert/21358 -https://www.oceanexpert.org/expert/31389 -https://www.oceanexpert.org/event/1474 -https://www.oceanexpert.org/expert/30516 -https://www.oceanexpert.org/institution/9032 -https://www.oceanexpert.org/expert/6199 -https://www.oceanexpert.org/expert/27163 -https://www.oceanexpert.org/expert/28170 -https://www.oceanexpert.org/expert/2490 -https://www.oceanexpert.org/institution/11491 -https://www.oceanexpert.org/expert/25098 -https://www.oceanexpert.org/expert/24400 -https://www.oceanexpert.org/expert/24503 -https://www.oceanexpert.org/institution/9186 -https://www.oceanexpert.org/expert/35521 -https://www.oceanexpert.org/institution/15295 -https://www.oceanexpert.org/event/955 -https://www.oceanexpert.org/expert/34587 -https://www.oceanexpert.org/expert/36304 -https://www.oceanexpert.org/expert/36915 -https://www.oceanexpert.org/expert/21447 -https://www.oceanexpert.org/event/663 -https://www.oceanexpert.org/expert/26655 -https://www.oceanexpert.org/event/1602 -https://www.oceanexpert.org/expert/30182 -https://www.oceanexpert.org/expert/6342 -https://www.oceanexpert.org/expert/28275 -https://www.oceanexpert.org/institution/16128 -https://www.oceanexpert.org/expert/21450 -https://www.oceanexpert.org/expert/30136 -https://www.oceanexpert.org/expert/46831 -https://www.oceanexpert.org/expert/48824 -https://www.oceanexpert.org/expert/22986 -https://www.oceanexpert.org/expert/47897 -https://www.oceanexpert.org/expert/26755 -https://www.oceanexpert.org/institution/20594 -https://www.oceanexpert.org/expert/39367 -https://www.oceanexpert.org/expert/43148 -https://www.oceanexpert.org/expert/24887 -https://www.oceanexpert.org/institution/20875 -https://www.oceanexpert.org/institution/16046 -https://www.oceanexpert.org/institution/12349 -https://www.oceanexpert.org/institution/18393 -https://www.oceanexpert.org/expert/36464 -https://www.oceanexpert.org/event/269 -https://www.oceanexpert.org/event/1804 -https://www.oceanexpert.org/expert/46005 -https://www.oceanexpert.org/expert/45692 -https://www.oceanexpert.org/expert/30109 -https://www.oceanexpert.org/expert/40015 -https://www.oceanexpert.org/expert/8654 -https://www.oceanexpert.org/expert/33407 -https://www.oceanexpert.org/expert/36402 -https://www.oceanexpert.org/expert/43341 -https://www.oceanexpert.org/institution/19455 -https://www.oceanexpert.org/expert/22792 -https://www.oceanexpert.org/expert/46743 -https://www.oceanexpert.org/expert/39097 -https://www.oceanexpert.org/institution/21350 -https://www.oceanexpert.org/expert/29531 -https://www.oceanexpert.org/event/976 -https://www.oceanexpert.org/expert/46178 -https://www.oceanexpert.org/event/1234 -https://www.oceanexpert.org/expert/3498 -https://www.oceanexpert.org/event/1591 -https://www.oceanexpert.org/expert/46749 -https://www.oceanexpert.org/institution/12382 -https://www.oceanexpert.org/institution/15047 -https://www.oceanexpert.org/expert/31451 -https://www.oceanexpert.org/institution/12495 -https://www.oceanexpert.org/expert/33000 -https://www.oceanexpert.org/expert/18885 -https://www.oceanexpert.org/expert/24232 -https://www.oceanexpert.org/institution/11101 -https://www.oceanexpert.org/expert/35410 -https://www.oceanexpert.org/expert/43542 -https://www.oceanexpert.org/expert/34341 -https://www.oceanexpert.org/institution/14193 -https://www.oceanexpert.org/expert/45686 -https://www.oceanexpert.org/expert/47544 -https://www.oceanexpert.org/expert/32797 -https://www.oceanexpert.org/expert/43266 -https://www.oceanexpert.org/expert/3862 -https://www.oceanexpert.org/expert/31222 -https://www.oceanexpert.org/expert/26501 -https://www.oceanexpert.org/expert/37553 -https://www.oceanexpert.org/institution/18828 -https://www.oceanexpert.org/expert/39322 -https://www.oceanexpert.org/expert/18377 -https://www.oceanexpert.org/expert/26933 -https://www.oceanexpert.org/institution/10582 -https://www.oceanexpert.org/expert/46269 -https://www.oceanexpert.org/expert/40336 -https://www.oceanexpert.org/institution/20898 -https://www.oceanexpert.org/expert/26074 -https://www.oceanexpert.org/expert/39035 -https://www.oceanexpert.org/institution/13750 -https://www.oceanexpert.org/institution/13446 -https://www.oceanexpert.org/expert/32529 -https://www.oceanexpert.org/expert/34115 -https://www.oceanexpert.org/expert/35274 -https://www.oceanexpert.org/institution/7997 -https://www.oceanexpert.org/expert/9484 -https://www.oceanexpert.org/institution/12432 -https://www.oceanexpert.org/expert/1277 -https://www.oceanexpert.org/expert/23126 -https://www.oceanexpert.org/institution/21002 -https://www.oceanexpert.org/expert/48365 -https://www.oceanexpert.org/expert/35371 -https://www.oceanexpert.org/institution/20209 -https://www.oceanexpert.org/expert/26448 -https://www.oceanexpert.org/event/3047 -https://www.oceanexpert.org/expert/45572 -https://www.oceanexpert.org/expert/11282 -https://www.oceanexpert.org/expert/43707 -https://www.oceanexpert.org/expert/17970 -https://www.oceanexpert.org/expert/37322 -https://www.oceanexpert.org/institution/18105 -https://www.oceanexpert.org/event/1146 -https://www.oceanexpert.org/expert/45874 -https://www.oceanexpert.org/expert/26930 -https://www.oceanexpert.org/expert/20707 -https://www.oceanexpert.org/institution/7775 -https://www.oceanexpert.org/institution/19646 -https://www.oceanexpert.org/institution/12878 -https://www.oceanexpert.org/expert/36328 -https://www.oceanexpert.org/expert/47536 -https://www.oceanexpert.org/expert/20445 -https://www.oceanexpert.org/expert/20739 -https://www.oceanexpert.org/expert/43646 -https://www.oceanexpert.org/expert/43303 -https://www.oceanexpert.org/expert/38164 -https://www.oceanexpert.org/expert/11217 -https://www.oceanexpert.org/expert/23709 -https://www.oceanexpert.org/institution/20440 -https://www.oceanexpert.org/institution/13144 -https://www.oceanexpert.org/event/2606 -https://www.oceanexpert.org/expert/40871 -https://www.oceanexpert.org/expert/23836 -https://www.oceanexpert.org/expert/36784 -https://www.oceanexpert.org/institution/9130 -https://www.oceanexpert.org/expert/30881 -https://www.oceanexpert.org/event/108 -https://www.oceanexpert.org/event/2818 -https://www.oceanexpert.org/institution/12604 -https://www.oceanexpert.org/expert/44890 -https://www.oceanexpert.org/expert/20246 -https://www.oceanexpert.org/expert/42668 -https://www.oceanexpert.org/institution/18110 -https://www.oceanexpert.org/expert/45663 -https://www.oceanexpert.org/expert/23279 -https://www.oceanexpert.org/expert/32441 -https://www.oceanexpert.org/institution/22115 -https://www.oceanexpert.org/expert/10936 -https://www.oceanexpert.org/expert/39562 -https://www.oceanexpert.org/institution/14461 -https://www.oceanexpert.org/expert/30072 -https://www.oceanexpert.org/expert/29463 -https://www.oceanexpert.org/expert/19744 -https://www.oceanexpert.org/expert/23732 -https://www.oceanexpert.org/expert/24628 -https://www.oceanexpert.org/expert/20414 -https://www.oceanexpert.org/expert/46728 -https://www.oceanexpert.org/expert/20333 -https://www.oceanexpert.org/expert/48187 -https://www.oceanexpert.org/institution/21662 -https://www.oceanexpert.org/expert/43214 -https://www.oceanexpert.org/event/1110 -https://www.oceanexpert.org/expert/22745 -https://www.oceanexpert.org/institution/14163 -https://www.oceanexpert.org/expert/22929 -https://www.oceanexpert.org/institution/6664 -https://www.oceanexpert.org/expert/42838 -https://www.oceanexpert.org/expert/26872 -https://www.oceanexpert.org/expert/45378 -https://www.oceanexpert.org/expert/29529 -https://www.oceanexpert.org/expert/35474 -https://www.oceanexpert.org/institution/18837 -https://www.oceanexpert.org/expert/10989 -https://www.oceanexpert.org/expert/23183 -https://www.oceanexpert.org/expert/21713 -https://www.oceanexpert.org/institution/21290 -https://www.oceanexpert.org/institution/17929 -https://www.oceanexpert.org/institution/20936 -https://www.oceanexpert.org/institution/18295 -https://www.oceanexpert.org/expert/23890 -https://www.oceanexpert.org/institution/6396 -https://www.oceanexpert.org/expert/18019 -https://www.oceanexpert.org/event/1360 -https://www.oceanexpert.org/institution/10230 -https://www.oceanexpert.org/expert/24054 -https://www.oceanexpert.org/expert/3095 -https://www.oceanexpert.org/expert/46501 -https://www.oceanexpert.org/expert/42752 -https://www.oceanexpert.org/expert/23150 -https://www.oceanexpert.org/expert/31372 -https://www.oceanexpert.org/expert/6912 -https://www.oceanexpert.org/expert/35407 -https://www.oceanexpert.org/expert/24175 -https://www.oceanexpert.org/expert/17879 -https://www.oceanexpert.org/expert/17497 -https://www.oceanexpert.org/expert/12151 -https://www.oceanexpert.org/expert/43317 -https://www.oceanexpert.org/event/1369 -https://www.oceanexpert.org/expert/28284 -https://www.oceanexpert.org/institution/18768 -https://www.oceanexpert.org/event/1014 -https://www.oceanexpert.org/expert/11956 -https://www.oceanexpert.org/institution/22050 -https://www.oceanexpert.org/institution/10610 -https://www.oceanexpert.org/event/1611 -https://www.oceanexpert.org/event/1891 -https://www.oceanexpert.org/expert/22989 -https://www.oceanexpert.org/expert/25166 -https://www.oceanexpert.org/expert/26637 -https://www.oceanexpert.org/expert/7611 -https://www.oceanexpert.org/expert/19509 -https://www.oceanexpert.org/institution/18769 -https://www.oceanexpert.org/expert/25828 -https://www.oceanexpert.org/expert/47794 -https://www.oceanexpert.org/expert/22413 -https://www.oceanexpert.org/expert/32620 -https://www.oceanexpert.org/expert/20522 -https://www.oceanexpert.org/expert/33386 -https://www.oceanexpert.org/expert/37195 -https://www.oceanexpert.org/institution/9140 -https://www.oceanexpert.org/expert/22258 -https://www.oceanexpert.org/institution/21088 -https://www.oceanexpert.org/expert/16631 -https://www.oceanexpert.org/expert/47568 -https://www.oceanexpert.org/expert/34906 -https://www.oceanexpert.org/event/855 -https://www.oceanexpert.org/expert/20366 -https://www.oceanexpert.org/institution/8688 -https://www.oceanexpert.org/institution/21710 -https://www.oceanexpert.org/expert/12638 -https://www.oceanexpert.org/institution/18387 -https://www.oceanexpert.org/expert/16187 -https://www.oceanexpert.org/expert/35096 -https://www.oceanexpert.org/institution/20660 -https://www.oceanexpert.org/expert/18878 -https://www.oceanexpert.org/expert/38055 -https://www.oceanexpert.org/institution/11727 -https://www.oceanexpert.org/expert/24419 -https://www.oceanexpert.org/expert/18206 -https://www.oceanexpert.org/expert/19324 -https://www.oceanexpert.org/expert/32494 -https://www.oceanexpert.org/institution/14437 -https://www.oceanexpert.org/institution/12193 -https://www.oceanexpert.org/institution/21653 -https://www.oceanexpert.org/institution/16744 -https://www.oceanexpert.org/institution/20528 -https://www.oceanexpert.org/institution/18895 -https://www.oceanexpert.org/institution/15714 -https://www.oceanexpert.org/expert/45604 -https://www.oceanexpert.org/expert/45460 -https://www.oceanexpert.org/expert/22259 -https://www.oceanexpert.org/expert/42454 -https://www.oceanexpert.org/expert/18206 -https://www.oceanexpert.org/expert/23882 -https://www.oceanexpert.org/institution/21948 -https://www.oceanexpert.org/expert/19455 -https://www.oceanexpert.org/expert/34610 -https://www.oceanexpert.org/institution/12757 -https://www.oceanexpert.org/event/2957 -https://www.oceanexpert.org/expert/35340 -https://www.oceanexpert.org/expert/23018 -https://www.oceanexpert.org/expert/35417 -https://www.oceanexpert.org/expert/48838 -https://www.oceanexpert.org/institution/13121 -https://www.oceanexpert.org/expert/45683 -https://www.oceanexpert.org/institution/19202 -https://www.oceanexpert.org/institution/8166 -https://www.oceanexpert.org/expert/24420 -https://www.oceanexpert.org/expert/45681 -https://www.oceanexpert.org/event/2449 -https://www.oceanexpert.org/expert/32608 -https://www.oceanexpert.org/expert/26784 -https://www.oceanexpert.org/expert/35126 -https://www.oceanexpert.org/expert/48169 -https://www.oceanexpert.org/expert/42725 -https://www.oceanexpert.org/expert/48663 -https://www.oceanexpert.org/institution/21275 -https://www.oceanexpert.org/expert/36003 -https://www.oceanexpert.org/expert/21137 -https://www.oceanexpert.org/expert/30201 -https://www.oceanexpert.org/expert/23981 -https://www.oceanexpert.org/institution/20446 -https://www.oceanexpert.org/event/901 -https://www.oceanexpert.org/event/2949 -https://www.oceanexpert.org/expert/6776 -https://www.oceanexpert.org/institution/18366 -https://www.oceanexpert.org/expert/44635 -https://www.oceanexpert.org/expert/12330 -https://www.oceanexpert.org/expert/25003 -https://www.oceanexpert.org/expert/19498 -https://www.oceanexpert.org/expert/24460 -https://www.oceanexpert.org/expert/22921 -https://www.oceanexpert.org/expert/21653 -https://www.oceanexpert.org/expert/26138 -https://www.oceanexpert.org/institution/20332 -https://www.oceanexpert.org/event/2281 -https://www.oceanexpert.org/expert/21910 -https://www.oceanexpert.org/expert/8401 -https://www.oceanexpert.org/institution/19874 -https://www.oceanexpert.org/expert/23034 -https://www.oceanexpert.org/expert/21177 -https://www.oceanexpert.org/expert/25030 -https://www.oceanexpert.org/expert/32199 -https://www.oceanexpert.org/expert/35284 -https://www.oceanexpert.org/expert/24242 -https://www.oceanexpert.org/institution/10078 -https://www.oceanexpert.org/expert/27610 -https://www.oceanexpert.org/expert/46426 -https://www.oceanexpert.org/institution/14106 -https://www.oceanexpert.org/expert/35540 -https://www.oceanexpert.org/expert/42671 -https://www.oceanexpert.org/expert/29835 -https://www.oceanexpert.org/expert/27103 -https://www.oceanexpert.org/institution/19407 -https://www.oceanexpert.org/expert/26611 -https://www.oceanexpert.org/event/1046 -https://www.oceanexpert.org/expert/10549 -https://www.oceanexpert.org/expert/43990 -https://www.oceanexpert.org/institution/20942 -https://www.oceanexpert.org/expert/18693 -https://www.oceanexpert.org/expert/45901 -https://www.oceanexpert.org/expert/46216 -https://www.oceanexpert.org/expert/34085 -https://www.oceanexpert.org/expert/30211 -https://www.oceanexpert.org/expert/27690 -https://www.oceanexpert.org/expert/27301 -https://www.oceanexpert.org/institution/8909 -https://www.oceanexpert.org/institution/11200 -https://www.oceanexpert.org/expert/26361 -https://www.oceanexpert.org/expert/45716 -https://www.oceanexpert.org/expert/17133 -https://www.oceanexpert.org/expert/43323 -https://www.oceanexpert.org/institution/20307 -https://www.oceanexpert.org/expert/44813 -https://www.oceanexpert.org/institution/19598 -https://www.oceanexpert.org/expert/48813 -https://www.oceanexpert.org/event/588 -https://www.oceanexpert.org/expert/36094 -https://www.oceanexpert.org/institution/18753 -https://www.oceanexpert.org/event/1299 -https://www.oceanexpert.org/expert/38865 -https://www.oceanexpert.org/expert/34268 -https://www.oceanexpert.org/institution/19081 -https://www.oceanexpert.org/expert/37986 -https://www.oceanexpert.org/event/1559 -https://www.oceanexpert.org/expert/14040 -https://www.oceanexpert.org/expert/12553 -https://www.oceanexpert.org/event/1534 -https://www.oceanexpert.org/expert/2202 -https://www.oceanexpert.org/expert/20141 -https://www.oceanexpert.org/expert/31328 -https://www.oceanexpert.org/expert/24333 -https://www.oceanexpert.org/expert/15636 -https://www.oceanexpert.org/expert/48150 -https://www.oceanexpert.org/expert/44664 -https://www.oceanexpert.org/expert/19906 -https://www.oceanexpert.org/institution/17701 -https://www.oceanexpert.org/institution/20381 -https://www.oceanexpert.org/expert/42843 -https://www.oceanexpert.org/institution/19182 -https://www.oceanexpert.org/expert/19509 -https://www.oceanexpert.org/expert/27665 -https://www.oceanexpert.org/expert/32370 -https://www.oceanexpert.org/expert/20062 -https://www.oceanexpert.org/expert/20030 -https://www.oceanexpert.org/expert/5534 -https://www.oceanexpert.org/expert/46315 -https://www.oceanexpert.org/institution/14803 -https://www.oceanexpert.org/expert/32963 -https://www.oceanexpert.org/expert/26256 -https://www.oceanexpert.org/expert/36607 -https://www.oceanexpert.org/expert/45193 -https://www.oceanexpert.org/expert/15430 -https://www.oceanexpert.org/expert/37542 -https://www.oceanexpert.org/institution/7905 -https://www.oceanexpert.org/expert/17170 -https://www.oceanexpert.org/institution/16718 -https://www.oceanexpert.org/expert/23394 -https://www.oceanexpert.org/expert/46105 -https://www.oceanexpert.org/expert/34348 -https://www.oceanexpert.org/expert/42484 -https://www.oceanexpert.org/institution/14835 -https://www.oceanexpert.org/institution/17138 -https://www.oceanexpert.org/expert/45161 -https://www.oceanexpert.org/expert/45669 -https://www.oceanexpert.org/expert/42839 -https://www.oceanexpert.org/expert/19028 -https://www.oceanexpert.org/expert/27914 -https://www.oceanexpert.org/institution/17921 -https://www.oceanexpert.org/expert/44564 -https://www.oceanexpert.org/expert/20377 -https://www.oceanexpert.org/expert/17969 -https://www.oceanexpert.org/event/3057 -https://www.oceanexpert.org/expert/36241 -https://www.oceanexpert.org/institution/14614 -https://www.oceanexpert.org/institution/18239 -https://www.oceanexpert.org/institution/9816 -https://www.oceanexpert.org/expert/45590 -https://www.oceanexpert.org/expert/6321 -https://www.oceanexpert.org/expert/36566 -https://www.oceanexpert.org/expert/21818 -https://www.oceanexpert.org/institution/16987 -https://www.oceanexpert.org/institution/19425 -https://www.oceanexpert.org/expert/48860 -https://www.oceanexpert.org/institution/5702 -https://www.oceanexpert.org/event/1633 -https://www.oceanexpert.org/expert/27481 -https://www.oceanexpert.org/event/207 -https://www.oceanexpert.org/institution/15295 -https://www.oceanexpert.org/expert/24736 -https://www.oceanexpert.org/expert/38345 -https://www.oceanexpert.org/expert/10696 -https://www.oceanexpert.org/institution/11863 -https://www.oceanexpert.org/institution/18892 -https://www.oceanexpert.org/expert/47110 -https://www.oceanexpert.org/institution/18422 -https://www.oceanexpert.org/institution/19217 -https://www.oceanexpert.org/expert/47179 -https://www.oceanexpert.org/expert/48420 -https://www.oceanexpert.org/expert/48652 -https://www.oceanexpert.org/institution/17738 -https://www.oceanexpert.org/expert/36461 -https://www.oceanexpert.org/institution/21895 -https://www.oceanexpert.org/institution/16763 -https://www.oceanexpert.org/expert/26831 -https://www.oceanexpert.org/institution/19982 -https://www.oceanexpert.org/expert/24161 -https://www.oceanexpert.org/institution/20982 -https://www.oceanexpert.org/expert/17425 -https://www.oceanexpert.org/expert/26055 -https://www.oceanexpert.org/expert/27953 -https://www.oceanexpert.org/institution/19123 -https://www.oceanexpert.org/expert/43260 -https://www.oceanexpert.org/expert/37909 -https://www.oceanexpert.org/expert/46711 -https://www.oceanexpert.org/expert/34608 -https://www.oceanexpert.org/expert/26836 -https://www.oceanexpert.org/expert/35438 -https://www.oceanexpert.org/institution/21719 -https://www.oceanexpert.org/event/1062 -https://www.oceanexpert.org/institution/21749 -https://www.oceanexpert.org/expert/30563 -https://www.oceanexpert.org/expert/47110 -https://www.oceanexpert.org/expert/19773 -https://www.oceanexpert.org/expert/3155 -https://www.oceanexpert.org/institution/14185 -https://www.oceanexpert.org/institution/15892 -https://www.oceanexpert.org/institution/18178 -https://www.oceanexpert.org/expert/47403 -https://www.oceanexpert.org/expert/26087 -https://www.oceanexpert.org/expert/43763 -https://www.oceanexpert.org/expert/48477 -https://www.oceanexpert.org/expert/27308 -https://www.oceanexpert.org/expert/45979 -https://www.oceanexpert.org/institution/13086 -https://www.oceanexpert.org/event/520 -https://www.oceanexpert.org/expert/31618 -https://www.oceanexpert.org/expert/24021 -https://www.oceanexpert.org/expert/30804 -https://www.oceanexpert.org/expert/26176 -https://www.oceanexpert.org/expert/29122 -https://www.oceanexpert.org/expert/34835 -https://www.oceanexpert.org/institution/15387 -https://www.oceanexpert.org/event/811 -https://www.oceanexpert.org/expert/36913 -https://www.oceanexpert.org/event/1705 -https://www.oceanexpert.org/expert/4864 -https://www.oceanexpert.org/expert/42835 -https://www.oceanexpert.org/expert/21328 -https://www.oceanexpert.org/expert/21343 -https://www.oceanexpert.org/expert/20488 -https://www.oceanexpert.org/institution/21787 -https://www.oceanexpert.org/expert/23922 -https://www.oceanexpert.org/expert/25287 -https://www.oceanexpert.org/event/1601 -https://www.oceanexpert.org/event/1557 -https://www.oceanexpert.org/institution/21866 -https://www.oceanexpert.org/institution/18844 -https://www.oceanexpert.org/expert/38986 -https://www.oceanexpert.org/institution/11992 -https://www.oceanexpert.org/expert/46758 -https://www.oceanexpert.org/expert/26867 -https://www.oceanexpert.org/expert/28045 -https://www.oceanexpert.org/institution/22010 -https://www.oceanexpert.org/expert/45077 -https://www.oceanexpert.org/expert/25247 -https://www.oceanexpert.org/expert/18916 -https://www.oceanexpert.org/expert/1561 -https://www.oceanexpert.org/expert/37446 -https://www.oceanexpert.org/institution/21802 -https://www.oceanexpert.org/expert/1609 -https://www.oceanexpert.org/expert/19188 -https://www.oceanexpert.org/expert/18770 -https://www.oceanexpert.org/expert/44076 -https://www.oceanexpert.org/event/297 -https://www.oceanexpert.org/expert/19343 -https://www.oceanexpert.org/institution/14581 -https://www.oceanexpert.org/event/2681 -https://www.oceanexpert.org/expert/48563 -https://www.oceanexpert.org/expert/8863 -https://www.oceanexpert.org/expert/18377 -https://www.oceanexpert.org/expert/18235 -https://www.oceanexpert.org/expert/42489 -https://www.oceanexpert.org/expert/20639 -https://www.oceanexpert.org/expert/23396 -https://www.oceanexpert.org/expert/49039 -https://www.oceanexpert.org/institution/13031 -https://www.oceanexpert.org/institution/16431 -https://www.oceanexpert.org/expert/36627 -https://www.oceanexpert.org/expert/36674 -https://www.oceanexpert.org/event/736 -https://www.oceanexpert.org/expert/23027 -https://www.oceanexpert.org/expert/38619 -https://www.oceanexpert.org/expert/16228 -https://www.oceanexpert.org/expert/30091 -https://www.oceanexpert.org/expert/40645 -https://www.oceanexpert.org/expert/16167 -https://www.oceanexpert.org/expert/45407 -https://www.oceanexpert.org/expert/43701 -https://www.oceanexpert.org/expert/7110 -https://www.oceanexpert.org/expert/19959 -https://www.oceanexpert.org/expert/19161 -https://www.oceanexpert.org/institution/20765 -https://www.oceanexpert.org/expert/39826 -https://www.oceanexpert.org/institution/11566 -https://www.oceanexpert.org/institution/21714 -https://www.oceanexpert.org/expert/13828 -https://www.oceanexpert.org/expert/464 -https://www.oceanexpert.org/expert/36963 -https://www.oceanexpert.org/institution/17764 -https://www.oceanexpert.org/institution/20066 -https://www.oceanexpert.org/expert/31881 -https://www.oceanexpert.org/institution/17471 -https://www.oceanexpert.org/institution/19030 -https://www.oceanexpert.org/institution/19037 -https://www.oceanexpert.org/institution/18022 -https://www.oceanexpert.org/institution/14251 -https://www.oceanexpert.org/event/2223 -https://www.oceanexpert.org/expert/16794 -https://www.oceanexpert.org/expert/34677 -https://www.oceanexpert.org/expert/46824 -https://www.oceanexpert.org/expert/16721 -https://www.oceanexpert.org/expert/45829 -https://www.oceanexpert.org/expert/38233 -https://www.oceanexpert.org/expert/37236 -https://www.oceanexpert.org/event/1188 -https://www.oceanexpert.org/expert/15367 -https://www.oceanexpert.org/expert/32182 -https://www.oceanexpert.org/event/2451 -https://www.oceanexpert.org/expert/4420 -https://www.oceanexpert.org/institution/5107 -https://www.oceanexpert.org/expert/3869 -https://www.oceanexpert.org/event/3287 -https://www.oceanexpert.org/institution/18615 -https://www.oceanexpert.org/expert/47533 -https://www.oceanexpert.org/expert/2177 -https://www.oceanexpert.org/institution/5963 -https://www.oceanexpert.org/expert/44209 -https://www.oceanexpert.org/event/254 -https://www.oceanexpert.org/expert/27248 -https://www.oceanexpert.org/institution/21460 -https://www.oceanexpert.org/expert/29688 -https://www.oceanexpert.org/expert/47516 -https://www.oceanexpert.org/expert/45468 -https://www.oceanexpert.org/institution/20053 -https://www.oceanexpert.org/expert/27292 -https://www.oceanexpert.org/expert/26475 -https://www.oceanexpert.org/expert/42994 -https://www.oceanexpert.org/expert/44499 -https://www.oceanexpert.org/expert/31156 -https://www.oceanexpert.org/expert/38377 -https://www.oceanexpert.org/expert/18338 -https://www.oceanexpert.org/institution/16851 -https://www.oceanexpert.org/expert/43410 -https://www.oceanexpert.org/expert/28422 -https://www.oceanexpert.org/expert/29121 -https://www.oceanexpert.org/expert/47308 -https://www.oceanexpert.org/expert/19489 -https://www.oceanexpert.org/institution/21800 -https://www.oceanexpert.org/event/717 -https://www.oceanexpert.org/expert/39868 -https://www.oceanexpert.org/expert/13566 -https://www.oceanexpert.org/institution/6676 -https://www.oceanexpert.org/expert/29078 -https://www.oceanexpert.org/expert/30888 -https://www.oceanexpert.org/expert/18243 -https://www.oceanexpert.org/expert/48761 -https://www.oceanexpert.org/expert/19735 -https://www.oceanexpert.org/institution/19983 -https://www.oceanexpert.org/institution/18257 -https://www.oceanexpert.org/expert/35898 -https://www.oceanexpert.org/institution/20372 -https://www.oceanexpert.org/institution/20136 -https://www.oceanexpert.org/expert/32639 -https://www.oceanexpert.org/event/1003 -https://www.oceanexpert.org/expert/29322 -https://www.oceanexpert.org/expert/30914 -https://www.oceanexpert.org/expert/4345 -https://www.oceanexpert.org/expert/24001 -https://www.oceanexpert.org/expert/36830 -https://www.oceanexpert.org/expert/22267 -https://www.oceanexpert.org/institution/14181 -https://www.oceanexpert.org/institution/18447 -https://www.oceanexpert.org/event/649 -https://www.oceanexpert.org/expert/16667 -https://www.oceanexpert.org/expert/23258 -https://www.oceanexpert.org/institution/15306 -https://www.oceanexpert.org/expert/36489 -https://www.oceanexpert.org/expert/24401 -https://www.oceanexpert.org/institution/12652 -https://www.oceanexpert.org/expert/22753 -https://www.oceanexpert.org/expert/35542 -https://www.oceanexpert.org/expert/47314 -https://www.oceanexpert.org/institution/18624 -https://www.oceanexpert.org/expert/20674 -https://www.oceanexpert.org/institution/18621 -https://www.oceanexpert.org/expert/13398 -https://www.oceanexpert.org/expert/32845 -https://www.oceanexpert.org/expert/665 -https://www.oceanexpert.org/institution/16816 -https://www.oceanexpert.org/expert/27560 -https://www.oceanexpert.org/expert/36487 -https://www.oceanexpert.org/expert/20816 -https://www.oceanexpert.org/institution/17663 -https://www.oceanexpert.org/institution/16519 -https://www.oceanexpert.org/expert/28403 -https://www.oceanexpert.org/expert/39668 -https://www.oceanexpert.org/expert/15314 -https://www.oceanexpert.org/expert/15636 -https://www.oceanexpert.org/expert/26571 -https://www.oceanexpert.org/expert/34431 -https://www.oceanexpert.org/expert/43501 -https://www.oceanexpert.org/expert/23696 -https://www.oceanexpert.org/expert/22619 -https://www.oceanexpert.org/expert/31748 -https://www.oceanexpert.org/expert/26759 -https://www.oceanexpert.org/expert/22726 -https://www.oceanexpert.org/expert/38130 -https://www.oceanexpert.org/expert/23479 -https://www.oceanexpert.org/institution/9825 -https://www.oceanexpert.org/expert/48811 -https://www.oceanexpert.org/institution/17158 -https://www.oceanexpert.org/expert/48576 -https://www.oceanexpert.org/expert/8373 -https://www.oceanexpert.org/expert/24828 -https://www.oceanexpert.org/institution/21683 -https://www.oceanexpert.org/expert/19578 -https://www.oceanexpert.org/institution/11209 -https://www.oceanexpert.org/expert/27690 -https://www.oceanexpert.org/event/2086 -https://www.oceanexpert.org/event/239 -https://www.oceanexpert.org/expert/46396 -https://www.oceanexpert.org/institution/19517 -https://www.oceanexpert.org/institution/10885 -https://www.oceanexpert.org/expert/25202 -https://www.oceanexpert.org/event/2329 -https://www.oceanexpert.org/institution/12044 -https://www.oceanexpert.org/expert/16703 -https://www.oceanexpert.org/expert/11466 -https://www.oceanexpert.org/expert/16674 -https://www.oceanexpert.org/institution/13391 -https://www.oceanexpert.org/institution/19472 -https://www.oceanexpert.org/expert/34784 -https://www.oceanexpert.org/expert/25223 -https://www.oceanexpert.org/expert/27691 -https://www.oceanexpert.org/expert/44254 -https://www.oceanexpert.org/expert/26354 -https://www.oceanexpert.org/expert/37110 -https://www.oceanexpert.org/expert/32244 -https://www.oceanexpert.org/institution/19691 -https://www.oceanexpert.org/expert/38219 -https://www.oceanexpert.org/expert/22921 -https://www.oceanexpert.org/expert/47283 -https://www.oceanexpert.org/event/143 -https://www.oceanexpert.org/institution/17695 -https://www.oceanexpert.org/expert/23969 -https://www.oceanexpert.org/expert/17104 -https://www.oceanexpert.org/expert/22937 -https://www.oceanexpert.org/institution/21077 -https://www.oceanexpert.org/institution/20046 -https://www.oceanexpert.org/expert/21946 -https://www.oceanexpert.org/expert/39318 -https://www.oceanexpert.org/institution/20914 -https://www.oceanexpert.org/institution/5904 -https://www.oceanexpert.org/expert/32250 -https://www.oceanexpert.org/expert/38528 -https://www.oceanexpert.org/expert/22567 -https://www.oceanexpert.org/expert/35439 -https://www.oceanexpert.org/expert/16175 -https://www.oceanexpert.org/expert/13733 -https://www.oceanexpert.org/expert/28841 -https://www.oceanexpert.org/expert/17725 -https://www.oceanexpert.org/expert/11091 -https://www.oceanexpert.org/expert/18392 -https://www.oceanexpert.org/expert/18402 -https://www.oceanexpert.org/expert/866 -https://www.oceanexpert.org/expert/29789 -https://www.oceanexpert.org/expert/27343 -https://www.oceanexpert.org/expert/32128 -https://www.oceanexpert.org/institution/20107 -https://www.oceanexpert.org/expert/13816 -https://www.oceanexpert.org/expert/37409 -https://www.oceanexpert.org/expert/36133 -https://www.oceanexpert.org/institution/18103 -https://www.oceanexpert.org/event/855 -https://www.oceanexpert.org/expert/1830 -https://www.oceanexpert.org/institution/19088 -https://www.oceanexpert.org/institution/20844 -https://www.oceanexpert.org/institution/21564 -https://www.oceanexpert.org/institution/18484 -https://www.oceanexpert.org/expert/12267 -https://www.oceanexpert.org/expert/45826 -https://www.oceanexpert.org/expert/30120 -https://www.oceanexpert.org/expert/29851 -https://www.oceanexpert.org/event/2920 -https://www.oceanexpert.org/institution/10646 -https://www.oceanexpert.org/expert/22979 -https://www.oceanexpert.org/expert/7281 -https://www.oceanexpert.org/event/309 -https://www.oceanexpert.org/expert/45184 -https://www.oceanexpert.org/institution/21981 -https://www.oceanexpert.org/expert/26739 -https://www.oceanexpert.org/expert/36274 -https://www.oceanexpert.org/expert/11848 -https://www.oceanexpert.org/institution/12809 -https://www.oceanexpert.org/expert/46943 -https://www.oceanexpert.org/expert/13022 -https://www.oceanexpert.org/expert/39804 -https://www.oceanexpert.org/expert/20475 -https://www.oceanexpert.org/event/2087 -https://www.oceanexpert.org/expert/168 -https://www.oceanexpert.org/institution/19454 -https://www.oceanexpert.org/expert/47192 -https://www.oceanexpert.org/expert/42668 -https://www.oceanexpert.org/expert/26462 -https://www.oceanexpert.org/event/845 -https://www.oceanexpert.org/expert/1445 -https://www.oceanexpert.org/expert/1945 -https://www.oceanexpert.org/expert/35714 -https://www.oceanexpert.org/expert/39229 -https://www.oceanexpert.org/expert/34726 -https://www.oceanexpert.org/institution/21297 -https://www.oceanexpert.org/institution/15338 -https://www.oceanexpert.org/expert/27122 -https://www.oceanexpert.org/expert/48454 -https://www.oceanexpert.org/event/781 -https://www.oceanexpert.org/institution/15811 -https://www.oceanexpert.org/expert/28054 -https://www.oceanexpert.org/expert/12202 -https://www.oceanexpert.org/institution/5417 -https://www.oceanexpert.org/expert/35115 -https://www.oceanexpert.org/expert/44030 -https://www.oceanexpert.org/event/981 -https://www.oceanexpert.org/event/859 -https://www.oceanexpert.org/event/1746 -https://www.oceanexpert.org/institution/18374 -https://www.oceanexpert.org/expert/29900 -https://www.oceanexpert.org/expert/12256 -https://www.oceanexpert.org/expert/21217 -https://www.oceanexpert.org/expert/19059 -https://www.oceanexpert.org/institution/18459 -https://www.oceanexpert.org/institution/14365 -https://www.oceanexpert.org/expert/43743 -https://www.oceanexpert.org/institution/20798 -https://www.oceanexpert.org/institution/12295 -https://www.oceanexpert.org/expert/14705 -https://www.oceanexpert.org/expert/28956 -https://www.oceanexpert.org/institution/19838 -https://www.oceanexpert.org/institution/21542 -https://www.oceanexpert.org/expert/42559 -https://www.oceanexpert.org/expert/44464 -https://www.oceanexpert.org/institution/15810 -https://www.oceanexpert.org/expert/37800 -https://www.oceanexpert.org/institution/14671 -https://www.oceanexpert.org/expert/44109 -https://www.oceanexpert.org/expert/20762 -https://www.oceanexpert.org/expert/12879 -https://www.oceanexpert.org/expert/30865 -https://www.oceanexpert.org/institution/15851 -https://www.oceanexpert.org/institution/20491 -https://www.oceanexpert.org/expert/45774 -https://www.oceanexpert.org/expert/22082 -https://www.oceanexpert.org/expert/36114 -https://www.oceanexpert.org/institution/14356 -https://www.oceanexpert.org/institution/15986 -https://www.oceanexpert.org/event/1563 -https://www.oceanexpert.org/expert/37885 -https://www.oceanexpert.org/expert/16389 -https://www.oceanexpert.org/expert/817 -https://www.oceanexpert.org/expert/24030 -https://www.oceanexpert.org/expert/548 -https://www.oceanexpert.org/institution/18919 -https://www.oceanexpert.org/expert/30179 -https://www.oceanexpert.org/expert/45930 -https://www.oceanexpert.org/expert/47609 -https://www.oceanexpert.org/expert/24518 -https://www.oceanexpert.org/institution/11587 -https://www.oceanexpert.org/expert/31875 -https://www.oceanexpert.org/expert/30993 -https://www.oceanexpert.org/institution/17806 -https://www.oceanexpert.org/event/1770 -https://www.oceanexpert.org/expert/37841 -https://www.oceanexpert.org/expert/22696 -https://www.oceanexpert.org/expert/20439 -https://www.oceanexpert.org/expert/28882 -https://www.oceanexpert.org/expert/47877 -https://www.oceanexpert.org/event/1916 -https://www.oceanexpert.org/expert/31675 -https://www.oceanexpert.org/expert/25530 -https://www.oceanexpert.org/institution/19602 -https://www.oceanexpert.org/expert/27279 -https://www.oceanexpert.org/expert/40068 -https://www.oceanexpert.org/expert/46045 -https://www.oceanexpert.org/expert/46231 -https://www.oceanexpert.org/expert/19925 -https://www.oceanexpert.org/expert/35277 -https://www.oceanexpert.org/event/3185 -https://www.oceanexpert.org/institution/18078 -https://www.oceanexpert.org/expert/46444 -https://www.oceanexpert.org/expert/48623 -https://www.oceanexpert.org/institution/18793 -https://www.oceanexpert.org/institution/18371 -https://www.oceanexpert.org/expert/45393 -https://www.oceanexpert.org/expert/46795 -https://www.oceanexpert.org/institution/20836 -https://www.oceanexpert.org/expert/24474 -https://www.oceanexpert.org/expert/19848 -https://www.oceanexpert.org/expert/14233 -https://www.oceanexpert.org/expert/35946 -https://www.oceanexpert.org/institution/18146 -https://www.oceanexpert.org/expert/32708 -https://www.oceanexpert.org/institution/20893 -https://www.oceanexpert.org/institution/18900 -https://www.oceanexpert.org/expert/14934 -https://www.oceanexpert.org/event/846 -https://www.oceanexpert.org/event/1113 -https://www.oceanexpert.org/event/1244 -https://www.oceanexpert.org/expert/25493 -https://www.oceanexpert.org/expert/38879 -https://www.oceanexpert.org/expert/24295 -https://www.oceanexpert.org/expert/25061 -https://www.oceanexpert.org/institution/19433 -https://www.oceanexpert.org/institution/12495 -https://www.oceanexpert.org/expert/25690 -https://www.oceanexpert.org/expert/26742 -https://www.oceanexpert.org/institution/14334 -https://www.oceanexpert.org/expert/32841 -https://www.oceanexpert.org/event/230 -https://www.oceanexpert.org/expert/48825 -https://www.oceanexpert.org/event/3185 -https://www.oceanexpert.org/expert/31508 -https://www.oceanexpert.org/expert/6212 -https://www.oceanexpert.org/expert/21962 -https://www.oceanexpert.org/institution/17695 -https://www.oceanexpert.org/expert/37458 -https://www.oceanexpert.org/expert/37007 -https://www.oceanexpert.org/expert/46240 -https://www.oceanexpert.org/expert/36117 -https://www.oceanexpert.org/expert/44197 -https://www.oceanexpert.org/institution/22000 -https://www.oceanexpert.org/expert/21043 -https://www.oceanexpert.org/event/217 -https://www.oceanexpert.org/expert/26136 -https://www.oceanexpert.org/expert/32075 -https://www.oceanexpert.org/institution/10429 -https://www.oceanexpert.org/event/590 -https://www.oceanexpert.org/expert/24008 -https://www.oceanexpert.org/expert/12997 -https://www.oceanexpert.org/expert/46867 -https://www.oceanexpert.org/expert/19201 -https://www.oceanexpert.org/institution/18838 -https://www.oceanexpert.org/expert/45110 -https://www.oceanexpert.org/expert/25993 -https://www.oceanexpert.org/expert/23151 -https://www.oceanexpert.org/expert/1307 -https://www.oceanexpert.org/expert/43296 -https://www.oceanexpert.org/event/3079 -https://www.oceanexpert.org/expert/36332 -https://www.oceanexpert.org/expert/13174 -https://www.oceanexpert.org/institution/19242 -https://www.oceanexpert.org/institution/19027 -https://www.oceanexpert.org/expert/27507 -https://www.oceanexpert.org/expert/47915 -https://www.oceanexpert.org/expert/24068 -https://www.oceanexpert.org/expert/28880 -https://www.oceanexpert.org/institution/19497 -https://www.oceanexpert.org/institution/13253 -https://www.oceanexpert.org/expert/45433 -https://www.oceanexpert.org/expert/20591 -https://www.oceanexpert.org/expert/4943 -https://www.oceanexpert.org/event/672 -https://www.oceanexpert.org/expert/45940 -https://www.oceanexpert.org/expert/46886 -https://www.oceanexpert.org/expert/18693 -https://www.oceanexpert.org/institution/18435 -https://www.oceanexpert.org/institution/20884 -https://www.oceanexpert.org/expert/23435 -https://www.oceanexpert.org/institution/21568 -https://www.oceanexpert.org/expert/21263 -https://www.oceanexpert.org/expert/10813 -https://www.oceanexpert.org/expert/23972 -https://www.oceanexpert.org/expert/19891 -https://www.oceanexpert.org/institution/21980 -https://www.oceanexpert.org/expert/26948 -https://www.oceanexpert.org/expert/28197 -https://www.oceanexpert.org/institution/16519 -https://www.oceanexpert.org/expert/46798 -https://www.oceanexpert.org/expert/36397 -https://www.oceanexpert.org/expert/36500 -https://www.oceanexpert.org/expert/46835 -https://www.oceanexpert.org/institution/17440 -https://www.oceanexpert.org/expert/11835 -https://www.oceanexpert.org/institution/21178 -https://www.oceanexpert.org/expert/15030 -https://www.oceanexpert.org/expert/47612 -https://www.oceanexpert.org/expert/19099 -https://www.oceanexpert.org/expert/36215 -https://www.oceanexpert.org/event/1143 -https://www.oceanexpert.org/expert/25447 -https://www.oceanexpert.org/expert/37246 -https://www.oceanexpert.org/expert/48279 -https://www.oceanexpert.org/institution/9408 -https://www.oceanexpert.org/expert/25536 -https://www.oceanexpert.org/expert/11946 -https://www.oceanexpert.org/institution/17690 -https://www.oceanexpert.org/expert/21541 -https://www.oceanexpert.org/institution/18543 -https://www.oceanexpert.org/expert/19129 -https://www.oceanexpert.org/institution/14719 -https://www.oceanexpert.org/institution/17684 -https://www.oceanexpert.org/expert/16785 -https://www.oceanexpert.org/expert/32408 -https://www.oceanexpert.org/expert/26702 -https://www.oceanexpert.org/expert/37380 -https://www.oceanexpert.org/expert/44921 -https://www.oceanexpert.org/expert/24124 -https://www.oceanexpert.org/expert/44056 -https://www.oceanexpert.org/expert/37926 -https://www.oceanexpert.org/expert/17193 -https://www.oceanexpert.org/expert/26320 -https://www.oceanexpert.org/expert/26714 -https://www.oceanexpert.org/expert/20129 -https://www.oceanexpert.org/expert/28305 -https://www.oceanexpert.org/expert/42832 -https://www.oceanexpert.org/institution/21149 -https://www.oceanexpert.org/institution/11068 -https://www.oceanexpert.org/expert/22458 -https://www.oceanexpert.org/expert/42465 -https://www.oceanexpert.org/institution/12307 -https://www.oceanexpert.org/expert/32308 -https://www.oceanexpert.org/institution/20031 -https://www.oceanexpert.org/expert/20555 -https://www.oceanexpert.org/expert/23886 -https://www.oceanexpert.org/expert/5302 -https://www.oceanexpert.org/expert/25032 -https://www.oceanexpert.org/institution/19492 -https://www.oceanexpert.org/institution/13294 -https://www.oceanexpert.org/expert/37174 -https://www.oceanexpert.org/expert/47193 -https://www.oceanexpert.org/expert/10699 -https://www.oceanexpert.org/expert/45479 -https://www.oceanexpert.org/expert/35444 -https://www.oceanexpert.org/expert/33351 -https://www.oceanexpert.org/institution/21294 -https://www.oceanexpert.org/expert/34955 -https://www.oceanexpert.org/expert/26800 -https://www.oceanexpert.org/expert/26684 -https://www.oceanexpert.org/expert/29563 -https://www.oceanexpert.org/expert/20696 -https://www.oceanexpert.org/expert/24085 -https://www.oceanexpert.org/expert/44712 -https://www.oceanexpert.org/expert/24322 -https://www.oceanexpert.org/expert/24335 -https://www.oceanexpert.org/expert/23850 -https://www.oceanexpert.org/expert/13662 -https://www.oceanexpert.org/expert/21950 -https://www.oceanexpert.org/institution/15131 -https://www.oceanexpert.org/institution/16221 -https://www.oceanexpert.org/expert/24162 -https://www.oceanexpert.org/institution/6704 -https://www.oceanexpert.org/expert/29200 -https://www.oceanexpert.org/event/3133 -https://www.oceanexpert.org/expert/23086 -https://www.oceanexpert.org/event/674 -https://www.oceanexpert.org/expert/15295 -https://www.oceanexpert.org/institution/15300 -https://www.oceanexpert.org/event/2292 -https://www.oceanexpert.org/expert/34883 -https://www.oceanexpert.org/institution/13174 -https://www.oceanexpert.org/expert/30223 -https://www.oceanexpert.org/expert/33274 -https://www.oceanexpert.org/expert/30577 -https://www.oceanexpert.org/event/1380 -https://www.oceanexpert.org/expert/20984 -https://www.oceanexpert.org/expert/29322 -https://www.oceanexpert.org/event/3171 -https://www.oceanexpert.org/expert/43375 -https://www.oceanexpert.org/institution/20319 -https://www.oceanexpert.org/institution/18440 -https://www.oceanexpert.org/expert/35371 -https://www.oceanexpert.org/expert/20951 -https://www.oceanexpert.org/expert/18664 -https://www.oceanexpert.org/institution/5264 -https://www.oceanexpert.org/expert/19340 -https://www.oceanexpert.org/event/1765 -https://www.oceanexpert.org/expert/16812 -https://www.oceanexpert.org/expert/24928 -https://www.oceanexpert.org/institution/18492 -https://www.oceanexpert.org/expert/24389 -https://www.oceanexpert.org/expert/31186 -https://www.oceanexpert.org/expert/34766 -https://www.oceanexpert.org/expert/21674 -https://www.oceanexpert.org/expert/43225 -https://www.oceanexpert.org/expert/22783 -https://www.oceanexpert.org/expert/46781 -https://www.oceanexpert.org/institution/17446 -https://www.oceanexpert.org/institution/18294 -https://www.oceanexpert.org/expert/30309 -https://www.oceanexpert.org/expert/25994 -https://www.oceanexpert.org/expert/20819 -https://www.oceanexpert.org/event/2406 -https://www.oceanexpert.org/expert/33212 -https://www.oceanexpert.org/expert/27538 -https://www.oceanexpert.org/event/705 -https://www.oceanexpert.org/expert/2669 -https://www.oceanexpert.org/expert/13559 -https://www.oceanexpert.org/expert/18520 -https://www.oceanexpert.org/expert/12950 -https://www.oceanexpert.org/expert/26839 -https://www.oceanexpert.org/expert/39169 -https://www.oceanexpert.org/expert/45470 -https://www.oceanexpert.org/expert/19875 -https://www.oceanexpert.org/expert/27029 -https://www.oceanexpert.org/expert/22637 -https://www.oceanexpert.org/expert/24421 -https://www.oceanexpert.org/expert/25912 -https://www.oceanexpert.org/event/2630 -https://www.oceanexpert.org/expert/15559 -https://www.oceanexpert.org/institution/15069 -https://www.oceanexpert.org/institution/20014 -https://www.oceanexpert.org/expert/17791 -https://www.oceanexpert.org/expert/44604 -https://www.oceanexpert.org/institution/15436 -https://www.oceanexpert.org/institution/10491 -https://www.oceanexpert.org/institution/16265 -https://www.oceanexpert.org/event/431 -https://www.oceanexpert.org/institution/19875 -https://www.oceanexpert.org/event/1182 -https://www.oceanexpert.org/expert/45372 -https://www.oceanexpert.org/expert/21755 -https://www.oceanexpert.org/institution/10434 -https://www.oceanexpert.org/event/1983 -https://www.oceanexpert.org/expert/4113 -https://www.oceanexpert.org/event/2679 -https://www.oceanexpert.org/expert/16870 -https://www.oceanexpert.org/expert/35457 -https://www.oceanexpert.org/expert/26943 -https://www.oceanexpert.org/expert/42537 -https://www.oceanexpert.org/expert/38911 -https://www.oceanexpert.org/expert/46701 -https://www.oceanexpert.org/expert/45028 -https://www.oceanexpert.org/institution/15794 -https://www.oceanexpert.org/expert/47169 -https://www.oceanexpert.org/institution/21148 -https://www.oceanexpert.org/expert/15358 -https://www.oceanexpert.org/expert/27463 -https://www.oceanexpert.org/expert/39288 -https://www.oceanexpert.org/event/3258 -https://www.oceanexpert.org/expert/19056 -https://www.oceanexpert.org/expert/26522 -https://www.oceanexpert.org/expert/47689 -https://www.oceanexpert.org/institution/20933 -https://www.oceanexpert.org/expert/48737 -https://www.oceanexpert.org/institution/18601 -https://www.oceanexpert.org/expert/21747 -https://www.oceanexpert.org/expert/13905 -https://www.oceanexpert.org/expert/42154 -https://www.oceanexpert.org/expert/13616 -https://www.oceanexpert.org/event/626 -https://www.oceanexpert.org/expert/45522 -https://www.oceanexpert.org/expert/31141 -https://www.oceanexpert.org/expert/30907 -https://www.oceanexpert.org/expert/47871 -https://www.oceanexpert.org/expert/39224 -https://www.oceanexpert.org/expert/44834 -https://www.oceanexpert.org/expert/24190 -https://www.oceanexpert.org/expert/21514 -https://www.oceanexpert.org/expert/15044 -https://www.oceanexpert.org/institution/12511 -https://www.oceanexpert.org/expert/18386 -https://www.oceanexpert.org/expert/44387 -https://www.oceanexpert.org/institution/22080 -https://www.oceanexpert.org/institution/11640 -https://www.oceanexpert.org/expert/29094 -https://www.oceanexpert.org/institution/13879 -https://www.oceanexpert.org/event/1111 -https://www.oceanexpert.org/expert/11411 -https://www.oceanexpert.org/expert/24041 -https://www.oceanexpert.org/expert/44946 -https://www.oceanexpert.org/expert/24915 -https://www.oceanexpert.org/institution/19116 -https://www.oceanexpert.org/expert/8677 -https://www.oceanexpert.org/expert/23570 -https://www.oceanexpert.org/expert/39245 -https://www.oceanexpert.org/expert/13156 -https://www.oceanexpert.org/expert/27095 -https://www.oceanexpert.org/expert/27778 -https://www.oceanexpert.org/expert/38264 -https://www.oceanexpert.org/institution/21202 -https://www.oceanexpert.org/expert/4190 -https://www.oceanexpert.org/expert/22201 -https://www.oceanexpert.org/expert/19065 -https://www.oceanexpert.org/institution/19211 -https://www.oceanexpert.org/expert/37494 -https://www.oceanexpert.org/institution/20908 -https://www.oceanexpert.org/expert/35395 -https://www.oceanexpert.org/expert/10177 -https://www.oceanexpert.org/expert/11577 -https://www.oceanexpert.org/expert/26417 -https://www.oceanexpert.org/event/1937 -https://www.oceanexpert.org/expert/8243 -https://www.oceanexpert.org/expert/11014 -https://www.oceanexpert.org/expert/19661 -https://www.oceanexpert.org/expert/23029 -https://www.oceanexpert.org/expert/47456 -https://www.oceanexpert.org/expert/46455 -https://www.oceanexpert.org/expert/24932 -https://www.oceanexpert.org/expert/13014 -https://www.oceanexpert.org/expert/37388 -https://www.oceanexpert.org/expert/17566 -https://www.oceanexpert.org/expert/26496 -https://www.oceanexpert.org/expert/27562 -https://www.oceanexpert.org/institution/12010 -https://www.oceanexpert.org/expert/719 -https://www.oceanexpert.org/expert/48743 -https://www.oceanexpert.org/institution/20402 -https://www.oceanexpert.org/institution/19555 -https://www.oceanexpert.org/expert/43183 -https://www.oceanexpert.org/expert/44995 -https://www.oceanexpert.org/expert/26753 -https://www.oceanexpert.org/expert/13554 -https://www.oceanexpert.org/institution/17151 -https://www.oceanexpert.org/expert/541 -https://www.oceanexpert.org/expert/17162 -https://www.oceanexpert.org/expert/21459 -https://www.oceanexpert.org/expert/33958 -https://www.oceanexpert.org/expert/36120 -https://www.oceanexpert.org/expert/16239 -https://www.oceanexpert.org/expert/42888 -https://www.oceanexpert.org/expert/47327 -https://www.oceanexpert.org/expert/28027 -https://www.oceanexpert.org/institution/12858 -https://www.oceanexpert.org/expert/2559 -https://www.oceanexpert.org/expert/36827 -https://www.oceanexpert.org/institution/20861 -https://www.oceanexpert.org/expert/34554 -https://www.oceanexpert.org/expert/48473 -https://www.oceanexpert.org/expert/37401 -https://www.oceanexpert.org/expert/33464 -https://www.oceanexpert.org/expert/46834 -https://www.oceanexpert.org/expert/46492 -https://www.oceanexpert.org/expert/18509 -https://www.oceanexpert.org/expert/19869 -https://www.oceanexpert.org/event/1159 -https://www.oceanexpert.org/expert/17325 -https://www.oceanexpert.org/expert/27730 -https://www.oceanexpert.org/expert/31565 -https://www.oceanexpert.org/event/986 -https://www.oceanexpert.org/event/3109 -https://www.oceanexpert.org/expert/19657 -https://www.oceanexpert.org/expert/2570 -https://www.oceanexpert.org/institution/21807 -https://www.oceanexpert.org/expert/18476 -https://www.oceanexpert.org/institution/18935 -https://www.oceanexpert.org/expert/38480 -https://www.oceanexpert.org/expert/16775 -https://www.oceanexpert.org/expert/25897 -https://www.oceanexpert.org/institution/18989 -https://www.oceanexpert.org/expert/43606 -https://www.oceanexpert.org/expert/49061 -https://www.oceanexpert.org/expert/26616 -https://www.oceanexpert.org/event/2858 -https://www.oceanexpert.org/expert/25936 -https://www.oceanexpert.org/institution/19668 -https://www.oceanexpert.org/institution/11011 -https://www.oceanexpert.org/event/2796 -https://www.oceanexpert.org/expert/34391 -https://www.oceanexpert.org/expert/22520 -https://www.oceanexpert.org/expert/25040 -https://www.oceanexpert.org/institution/13589 -https://www.oceanexpert.org/expert/40260 -https://www.oceanexpert.org/expert/37290 -https://www.oceanexpert.org/expert/40277 -https://www.oceanexpert.org/expert/42929 -https://www.oceanexpert.org/expert/44751 -https://www.oceanexpert.org/expert/23036 -https://www.oceanexpert.org/institution/21249 -https://www.oceanexpert.org/expert/33995 -https://www.oceanexpert.org/expert/6552 -https://www.oceanexpert.org/event/1244 -https://www.oceanexpert.org/expert/46836 -https://www.oceanexpert.org/event/197 -https://www.oceanexpert.org/event/2116 -https://www.oceanexpert.org/expert/18338 -https://www.oceanexpert.org/institution/8681 -https://www.oceanexpert.org/expert/26959 -https://www.oceanexpert.org/institution/17086 -https://www.oceanexpert.org/expert/18262 -https://www.oceanexpert.org/institution/20111 -https://www.oceanexpert.org/event/826 -https://www.oceanexpert.org/expert/19444 -https://www.oceanexpert.org/institution/17214 -https://www.oceanexpert.org/expert/24989 -https://www.oceanexpert.org/institution/13433 -https://www.oceanexpert.org/event/2341 -https://www.oceanexpert.org/expert/47853 -https://www.oceanexpert.org/institution/18961 -https://www.oceanexpert.org/expert/9092 -https://www.oceanexpert.org/expert/48009 -https://www.oceanexpert.org/expert/22713 -https://www.oceanexpert.org/expert/23593 -https://www.oceanexpert.org/expert/10052 -https://www.oceanexpert.org/expert/3480 -https://www.oceanexpert.org/expert/17362 -https://www.oceanexpert.org/expert/12885 -https://www.oceanexpert.org/institution/16324 -https://www.oceanexpert.org/expert/26758 -https://www.oceanexpert.org/institution/19096 -https://www.oceanexpert.org/expert/16628 -https://www.oceanexpert.org/institution/17908 -https://www.oceanexpert.org/expert/39477 -https://www.oceanexpert.org/expert/28434 -https://www.oceanexpert.org/expert/6583 -https://www.oceanexpert.org/expert/31219 -https://www.oceanexpert.org/expert/46275 -https://www.oceanexpert.org/institution/20076 -https://www.oceanexpert.org/expert/19735 -https://www.oceanexpert.org/expert/47336 -https://www.oceanexpert.org/expert/20648 -https://www.oceanexpert.org/institution/19246 -https://www.oceanexpert.org/expert/26795 -https://www.oceanexpert.org/expert/6356 -https://www.oceanexpert.org/expert/31646 -https://www.oceanexpert.org/institution/18127 -https://www.oceanexpert.org/institution/21281 -https://www.oceanexpert.org/expert/46030 -https://www.oceanexpert.org/institution/10235 -https://www.oceanexpert.org/institution/7905 -https://www.oceanexpert.org/expert/16968 -https://www.oceanexpert.org/institution/17664 -https://www.oceanexpert.org/event/96 -https://www.oceanexpert.org/expert/30388 -https://www.oceanexpert.org/institution/20690 -https://www.oceanexpert.org/expert/42385 -https://www.oceanexpert.org/institution/21155 -https://www.oceanexpert.org/expert/48002 -https://www.oceanexpert.org/expert/34312 -https://www.oceanexpert.org/expert/12757 -https://www.oceanexpert.org/expert/48996 -https://www.oceanexpert.org/expert/48115 -https://www.oceanexpert.org/expert/32743 -https://www.oceanexpert.org/institution/21345 -https://www.oceanexpert.org/expert/43262 -https://www.oceanexpert.org/expert/27114 -https://www.oceanexpert.org/institution/20689 -https://www.oceanexpert.org/event/3282 -https://www.oceanexpert.org/institution/22161 -https://www.oceanexpert.org/expert/27825 -https://www.oceanexpert.org/expert/8639 -https://www.oceanexpert.org/event/1273 -https://www.oceanexpert.org/expert/668 -https://www.oceanexpert.org/event/2555 -https://www.oceanexpert.org/expert/27571 -https://www.oceanexpert.org/expert/46555 -https://www.oceanexpert.org/institution/8616 -https://www.oceanexpert.org/institution/21557 -https://www.oceanexpert.org/expert/22879 -https://www.oceanexpert.org/expert/30091 -https://www.oceanexpert.org/expert/37943 -https://www.oceanexpert.org/expert/11937 -https://www.oceanexpert.org/expert/47879 -https://www.oceanexpert.org/expert/25863 -https://www.oceanexpert.org/expert/16881 -https://www.oceanexpert.org/expert/33501 -https://www.oceanexpert.org/event/3293 -https://www.oceanexpert.org/expert/43796 -https://www.oceanexpert.org/event/1706 -https://www.oceanexpert.org/expert/24884 -https://www.oceanexpert.org/expert/33405 -https://www.oceanexpert.org/institution/13210 -https://www.oceanexpert.org/institution/6204 -https://www.oceanexpert.org/expert/20259 -https://www.oceanexpert.org/expert/27216 -https://www.oceanexpert.org/expert/23099 -https://www.oceanexpert.org/expert/32692 -https://www.oceanexpert.org/institution/12998 -https://www.oceanexpert.org/institution/16101 -https://www.oceanexpert.org/expert/35044 -https://www.oceanexpert.org/expert/33410 -https://www.oceanexpert.org/expert/28128 -https://www.oceanexpert.org/institution/17545 -https://www.oceanexpert.org/expert/47708 -https://www.oceanexpert.org/event/1250 -https://www.oceanexpert.org/expert/43353 -https://www.oceanexpert.org/expert/25566 -https://www.oceanexpert.org/institution/20129 -https://www.oceanexpert.org/event/1856 -https://www.oceanexpert.org/expert/27588 -https://www.oceanexpert.org/event/2485 -https://www.oceanexpert.org/institution/21366 -https://www.oceanexpert.org/expert/31750 -https://www.oceanexpert.org/institution/6668 -https://www.oceanexpert.org/expert/10744 -https://www.oceanexpert.org/expert/33435 -https://www.oceanexpert.org/expert/16742 -https://www.oceanexpert.org/event/1853 -https://www.oceanexpert.org/expert/17473 -https://www.oceanexpert.org/expert/31509 -https://www.oceanexpert.org/expert/24924 -https://www.oceanexpert.org/expert/44637 -https://www.oceanexpert.org/expert/33438 -https://www.oceanexpert.org/expert/20958 -https://www.oceanexpert.org/expert/21048 -https://www.oceanexpert.org/event/1994 -https://www.oceanexpert.org/expert/47497 -https://www.oceanexpert.org/institution/21638 -https://www.oceanexpert.org/expert/44362 -https://www.oceanexpert.org/expert/44856 -https://www.oceanexpert.org/expert/36833 -https://www.oceanexpert.org/expert/23715 -https://www.oceanexpert.org/expert/36427 -https://www.oceanexpert.org/expert/37556 -https://www.oceanexpert.org/expert/24212 -https://www.oceanexpert.org/institution/7909 -https://www.oceanexpert.org/expert/126 -https://www.oceanexpert.org/expert/23533 -https://www.oceanexpert.org/expert/24199 -https://www.oceanexpert.org/expert/18230 -https://www.oceanexpert.org/expert/37976 -https://www.oceanexpert.org/expert/21980 -https://www.oceanexpert.org/expert/38901 -https://www.oceanexpert.org/expert/990 -https://www.oceanexpert.org/expert/48559 -https://www.oceanexpert.org/institution/6304 -https://www.oceanexpert.org/expert/34108 -https://www.oceanexpert.org/institution/20692 -https://www.oceanexpert.org/institution/17079 -https://www.oceanexpert.org/event/401 -https://www.oceanexpert.org/institution/21498 -https://www.oceanexpert.org/expert/3531 -https://www.oceanexpert.org/expert/15926 -https://www.oceanexpert.org/expert/20015 -https://www.oceanexpert.org/institution/12156 -https://www.oceanexpert.org/expert/13950 -https://www.oceanexpert.org/event/2939 -https://www.oceanexpert.org/expert/21171 -https://www.oceanexpert.org/expert/45845 -https://www.oceanexpert.org/expert/29703 -https://www.oceanexpert.org/expert/46525 -https://www.oceanexpert.org/institution/16436 -https://www.oceanexpert.org/institution/10971 -https://www.oceanexpert.org/expert/17795 -https://www.oceanexpert.org/expert/33552 -https://www.oceanexpert.org/expert/36328 -https://www.oceanexpert.org/institution/19211 -https://www.oceanexpert.org/expert/42402 -https://www.oceanexpert.org/expert/4574 -https://www.oceanexpert.org/event/2152 -https://www.oceanexpert.org/expert/47970 -https://www.oceanexpert.org/expert/29774 -https://www.oceanexpert.org/institution/11293 -https://www.oceanexpert.org/expert/31802 -https://www.oceanexpert.org/expert/25010 -https://www.oceanexpert.org/expert/31257 -https://www.oceanexpert.org/expert/40536 -https://www.oceanexpert.org/expert/28340 -https://www.oceanexpert.org/expert/33523 -https://www.oceanexpert.org/expert/18171 -https://www.oceanexpert.org/event/2775 -https://www.oceanexpert.org/institution/11335 -https://www.oceanexpert.org/expert/33304 -https://www.oceanexpert.org/institution/10895 -https://www.oceanexpert.org/institution/17942 -https://www.oceanexpert.org/institution/21117 -https://www.oceanexpert.org/institution/12692 -https://www.oceanexpert.org/expert/20580 -https://www.oceanexpert.org/institution/18838 -https://www.oceanexpert.org/expert/47104 -https://www.oceanexpert.org/expert/16922 -https://www.oceanexpert.org/expert/20481 -https://www.oceanexpert.org/expert/30533 -https://www.oceanexpert.org/institution/8719 -https://www.oceanexpert.org/expert/22900 -https://www.oceanexpert.org/expert/45304 -https://www.oceanexpert.org/expert/36525 -https://www.oceanexpert.org/expert/16424 -https://www.oceanexpert.org/expert/42461 -https://www.oceanexpert.org/expert/35728 -https://www.oceanexpert.org/institution/20858 -https://www.oceanexpert.org/expert/42614 -https://www.oceanexpert.org/institution/16174 -https://www.oceanexpert.org/expert/46998 -https://www.oceanexpert.org/expert/36179 -https://www.oceanexpert.org/institution/19421 -https://www.oceanexpert.org/expert/26667 -https://www.oceanexpert.org/expert/15707 -https://www.oceanexpert.org/expert/48404 -https://www.oceanexpert.org/institution/10761 -https://www.oceanexpert.org/expert/27030 -https://www.oceanexpert.org/event/1660 -https://www.oceanexpert.org/expert/42610 -https://www.oceanexpert.org/expert/17332 -https://www.oceanexpert.org/institution/20323 -https://www.oceanexpert.org/expert/29721 -https://www.oceanexpert.org/institution/11687 -https://www.oceanexpert.org/expert/27561 -https://www.oceanexpert.org/event/2532 -https://www.oceanexpert.org/expert/43350 -https://www.oceanexpert.org/institution/16377 -https://www.oceanexpert.org/expert/45152 -https://www.oceanexpert.org/expert/21623 -https://www.oceanexpert.org/institution/21323 -https://www.oceanexpert.org/expert/34916 -https://www.oceanexpert.org/event/192 -https://www.oceanexpert.org/expert/37323 -https://www.oceanexpert.org/institution/20321 -https://www.oceanexpert.org/institution/18535 -https://www.oceanexpert.org/expert/35283 -https://www.oceanexpert.org/expert/48917 -https://www.oceanexpert.org/expert/26453 -https://www.oceanexpert.org/expert/13277 -https://www.oceanexpert.org/expert/46359 -https://www.oceanexpert.org/event/1563 -https://www.oceanexpert.org/institution/19330 -https://www.oceanexpert.org/expert/27551 -https://www.oceanexpert.org/expert/6504 -https://www.oceanexpert.org/expert/4212 -https://www.oceanexpert.org/expert/43735 -https://www.oceanexpert.org/expert/28787 -https://www.oceanexpert.org/expert/36265 -https://www.oceanexpert.org/event/230 -https://www.oceanexpert.org/expert/29158 -https://www.oceanexpert.org/expert/44531 -https://www.oceanexpert.org/event/2318 -https://www.oceanexpert.org/expert/22659 -https://www.oceanexpert.org/expert/20535 -https://www.oceanexpert.org/expert/20272 -https://www.oceanexpert.org/institution/19299 -https://www.oceanexpert.org/expert/46315 -https://www.oceanexpert.org/institution/21011 -https://www.oceanexpert.org/event/2334 -https://www.oceanexpert.org/expert/29169 -https://www.oceanexpert.org/institution/7901 -https://www.oceanexpert.org/expert/36401 -https://www.oceanexpert.org/event/1088 -https://www.oceanexpert.org/event/2425 -https://www.oceanexpert.org/expert/34268 -https://www.oceanexpert.org/expert/40288 -https://www.oceanexpert.org/expert/38257 -https://www.oceanexpert.org/expert/23020 -https://www.oceanexpert.org/expert/22260 -https://www.oceanexpert.org/expert/33869 -https://www.oceanexpert.org/institution/18818 -https://www.oceanexpert.org/institution/7692 -https://www.oceanexpert.org/expert/34162 -https://www.oceanexpert.org/expert/36426 -https://www.oceanexpert.org/expert/27385 -https://www.oceanexpert.org/expert/47283 -https://www.oceanexpert.org/expert/777 -https://www.oceanexpert.org/expert/6721 -https://www.oceanexpert.org/expert/47924 -https://www.oceanexpert.org/expert/14619 -https://www.oceanexpert.org/expert/27494 -https://www.oceanexpert.org/institution/10229 -https://www.oceanexpert.org/expert/22531 -https://www.oceanexpert.org/expert/19651 -https://www.oceanexpert.org/event/2599 -https://www.oceanexpert.org/expert/17211 -https://www.oceanexpert.org/expert/1329 -https://www.oceanexpert.org/event/1966 -https://www.oceanexpert.org/event/2486 -https://www.oceanexpert.org/expert/17360 -https://www.oceanexpert.org/expert/35494 -https://www.oceanexpert.org/expert/35381 -https://www.oceanexpert.org/expert/23764 -https://www.oceanexpert.org/expert/24903 -https://www.oceanexpert.org/expert/11586 -https://www.oceanexpert.org/expert/30972 -https://www.oceanexpert.org/expert/44838 -https://www.oceanexpert.org/institution/18845 -https://www.oceanexpert.org/institution/9142 -https://www.oceanexpert.org/event/3247 -https://www.oceanexpert.org/institution/20102 -https://www.oceanexpert.org/expert/4627 -https://www.oceanexpert.org/expert/44110 -https://www.oceanexpert.org/expert/30328 -https://www.oceanexpert.org/expert/18742 -https://www.oceanexpert.org/expert/19630 -https://www.oceanexpert.org/expert/48017 -https://www.oceanexpert.org/expert/33851 -https://www.oceanexpert.org/expert/23959 -https://www.oceanexpert.org/institution/14589 -https://www.oceanexpert.org/expert/23824 -https://www.oceanexpert.org/expert/26247 -https://www.oceanexpert.org/event/2365 -https://www.oceanexpert.org/institution/19575 -https://www.oceanexpert.org/expert/47890 -https://www.oceanexpert.org/expert/12664 -https://www.oceanexpert.org/expert/27370 -https://www.oceanexpert.org/event/3294 -https://www.oceanexpert.org/expert/33101 -https://www.oceanexpert.org/expert/43251 -https://www.oceanexpert.org/expert/43670 -https://www.oceanexpert.org/expert/34738 -https://www.oceanexpert.org/expert/24079 -https://www.oceanexpert.org/expert/37910 -https://www.oceanexpert.org/expert/42754 -https://www.oceanexpert.org/event/158 -https://www.oceanexpert.org/expert/11301 -https://www.oceanexpert.org/expert/47521 -https://www.oceanexpert.org/expert/44342 -https://www.oceanexpert.org/expert/22120 -https://www.oceanexpert.org/expert/12605 -https://www.oceanexpert.org/expert/24610 -https://www.oceanexpert.org/expert/27438 -https://www.oceanexpert.org/expert/32713 -https://www.oceanexpert.org/expert/24547 -https://www.oceanexpert.org/expert/18982 -https://www.oceanexpert.org/expert/46784 -https://www.oceanexpert.org/expert/32558 -https://www.oceanexpert.org/institution/18893 -https://www.oceanexpert.org/event/1836 -https://www.oceanexpert.org/institution/12585 -https://www.oceanexpert.org/expert/14791 -https://www.oceanexpert.org/expert/22844 -https://www.oceanexpert.org/expert/25246 -https://www.oceanexpert.org/expert/13306 -https://www.oceanexpert.org/expert/46753 -https://www.oceanexpert.org/institution/16568 -https://www.oceanexpert.org/expert/42912 -https://www.oceanexpert.org/institution/20804 -https://www.oceanexpert.org/institution/18793 -https://www.oceanexpert.org/expert/27496 -https://www.oceanexpert.org/institution/18359 -https://www.oceanexpert.org/expert/31887 -https://www.oceanexpert.org/event/1258 -https://www.oceanexpert.org/expert/41407 -https://www.oceanexpert.org/expert/40250 -https://www.oceanexpert.org/institution/22039 -https://www.oceanexpert.org/expert/34126 -https://www.oceanexpert.org/institution/6544 -https://www.oceanexpert.org/expert/44868 -https://www.oceanexpert.org/expert/32950 -https://www.oceanexpert.org/event/2626 -https://www.oceanexpert.org/expert/37220 -https://www.oceanexpert.org/expert/2142 -https://www.oceanexpert.org/institution/21901 -https://www.oceanexpert.org/expert/25200 -https://www.oceanexpert.org/expert/31375 -https://www.oceanexpert.org/expert/23205 -https://www.oceanexpert.org/expert/21866 -https://www.oceanexpert.org/expert/4966 -https://www.oceanexpert.org/institution/11802 -https://www.oceanexpert.org/institution/6649 -https://www.oceanexpert.org/expert/15026 -https://www.oceanexpert.org/expert/18915 -https://www.oceanexpert.org/expert/37012 -https://www.oceanexpert.org/institution/15509 -https://www.oceanexpert.org/institution/13286 -https://www.oceanexpert.org/expert/38092 -https://www.oceanexpert.org/expert/19285 -https://www.oceanexpert.org/expert/47088 -https://www.oceanexpert.org/expert/26353 -https://www.oceanexpert.org/expert/43716 -https://www.oceanexpert.org/expert/36488 -https://www.oceanexpert.org/expert/21456 -https://www.oceanexpert.org/event/1244 -https://www.oceanexpert.org/expert/48930 -https://www.oceanexpert.org/expert/15827 -https://www.oceanexpert.org/institution/22066 -https://www.oceanexpert.org/institution/16246 -https://www.oceanexpert.org/expert/5926 -https://www.oceanexpert.org/institution/14815 -https://www.oceanexpert.org/event/2075 -https://www.oceanexpert.org/institution/11201 -https://www.oceanexpert.org/expert/1546 -https://www.oceanexpert.org/expert/13490 -https://www.oceanexpert.org/expert/27280 -https://www.oceanexpert.org/expert/27661 -https://www.oceanexpert.org/expert/40641 -https://www.oceanexpert.org/expert/17612 -https://www.oceanexpert.org/expert/24251 -https://www.oceanexpert.org/institution/17023 -https://www.oceanexpert.org/expert/18712 -https://www.oceanexpert.org/institution/14375 -https://www.oceanexpert.org/expert/28387 -https://www.oceanexpert.org/expert/17262 -https://www.oceanexpert.org/expert/35523 -https://www.oceanexpert.org/expert/17507 -https://www.oceanexpert.org/institution/21838 -https://www.oceanexpert.org/expert/189 -https://www.oceanexpert.org/expert/11003 -https://www.oceanexpert.org/expert/48270 -https://www.oceanexpert.org/expert/23615 -https://www.oceanexpert.org/expert/35953 -https://www.oceanexpert.org/expert/29246 -https://www.oceanexpert.org/expert/20320 -https://www.oceanexpert.org/expert/47501 -https://www.oceanexpert.org/expert/26241 -https://www.oceanexpert.org/expert/29110 -https://www.oceanexpert.org/institution/9523 -https://www.oceanexpert.org/expert/45249 -https://www.oceanexpert.org/expert/29694 -https://www.oceanexpert.org/expert/42937 -https://www.oceanexpert.org/institution/14445 -https://www.oceanexpert.org/expert/42954 -https://www.oceanexpert.org/expert/16727 -https://www.oceanexpert.org/institution/16800 -https://www.oceanexpert.org/expert/37316 -https://www.oceanexpert.org/expert/46238 -https://www.oceanexpert.org/expert/27953 -https://www.oceanexpert.org/event/520 -https://www.oceanexpert.org/expert/21028 -https://www.oceanexpert.org/expert/32186 -https://www.oceanexpert.org/institution/17836 -https://www.oceanexpert.org/institution/19374 -https://www.oceanexpert.org/expert/7031 -https://www.oceanexpert.org/expert/20987 -https://www.oceanexpert.org/institution/5224 -https://www.oceanexpert.org/expert/36601 -https://www.oceanexpert.org/expert/19466 -https://www.oceanexpert.org/expert/36268 -https://www.oceanexpert.org/institution/19019 -https://www.oceanexpert.org/institution/13608 -https://www.oceanexpert.org/expert/21262 -https://www.oceanexpert.org/expert/21773 -https://www.oceanexpert.org/expert/46992 -https://www.oceanexpert.org/institution/11571 -https://www.oceanexpert.org/expert/35593 -https://www.oceanexpert.org/expert/14207 -https://www.oceanexpert.org/event/2337 -https://www.oceanexpert.org/event/2871 -https://www.oceanexpert.org/institution/12218 -https://www.oceanexpert.org/expert/19364 -https://www.oceanexpert.org/institution/13896 -https://www.oceanexpert.org/institution/20827 -https://www.oceanexpert.org/institution/21431 -https://www.oceanexpert.org/institution/21236 -https://www.oceanexpert.org/institution/19527 -https://www.oceanexpert.org/expert/26259 -https://www.oceanexpert.org/institution/6671 -https://www.oceanexpert.org/expert/47754 -https://www.oceanexpert.org/expert/22805 -https://www.oceanexpert.org/expert/19818 -https://www.oceanexpert.org/institution/19251 -https://www.oceanexpert.org/institution/18145 -https://www.oceanexpert.org/institution/21035 -https://www.oceanexpert.org/expert/33731 -https://www.oceanexpert.org/expert/17716 -https://www.oceanexpert.org/institution/12249 -https://www.oceanexpert.org/event/2774 -https://www.oceanexpert.org/expert/27509 -https://www.oceanexpert.org/expert/1351 -https://www.oceanexpert.org/expert/34778 -https://www.oceanexpert.org/expert/11848 -https://www.oceanexpert.org/expert/9549 -https://www.oceanexpert.org/expert/44841 -https://www.oceanexpert.org/expert/36546 -https://www.oceanexpert.org/expert/18356 -https://www.oceanexpert.org/expert/37693 -https://www.oceanexpert.org/expert/12952 -https://www.oceanexpert.org/institution/13061 -https://www.oceanexpert.org/expert/43327 -https://www.oceanexpert.org/event/325 -https://www.oceanexpert.org/event/986 -https://www.oceanexpert.org/expert/27172 -https://www.oceanexpert.org/expert/29272 -https://www.oceanexpert.org/expert/33344 -https://www.oceanexpert.org/institution/13996 -https://www.oceanexpert.org/expert/1607 -https://www.oceanexpert.org/expert/43191 -https://www.oceanexpert.org/event/73 -https://www.oceanexpert.org/institution/8025 -https://www.oceanexpert.org/expert/42497 -https://www.oceanexpert.org/expert/4424 -https://www.oceanexpert.org/expert/36685 -https://www.oceanexpert.org/institution/19943 -https://www.oceanexpert.org/expert/34974 -https://www.oceanexpert.org/expert/36826 -https://www.oceanexpert.org/event/2710 -https://www.oceanexpert.org/institution/6715 -https://www.oceanexpert.org/event/2310 -https://www.oceanexpert.org/institution/11025 -https://www.oceanexpert.org/expert/34134 -https://www.oceanexpert.org/expert/25370 -https://www.oceanexpert.org/expert/47646 -https://www.oceanexpert.org/institution/16241 -https://www.oceanexpert.org/event/1725 -https://www.oceanexpert.org/institution/20765 -https://www.oceanexpert.org/expert/13238 -https://www.oceanexpert.org/institution/13237 -https://www.oceanexpert.org/expert/42775 -https://www.oceanexpert.org/institution/19823 -https://www.oceanexpert.org/expert/45508 -https://www.oceanexpert.org/institution/20107 -https://www.oceanexpert.org/expert/38071 -https://www.oceanexpert.org/expert/46313 -https://www.oceanexpert.org/expert/44205 -https://www.oceanexpert.org/expert/31746 -https://www.oceanexpert.org/expert/38358 -https://www.oceanexpert.org/expert/44575 -https://www.oceanexpert.org/institution/16997 -https://www.oceanexpert.org/institution/19955 -https://www.oceanexpert.org/expert/29225 -https://www.oceanexpert.org/institution/12596 -https://www.oceanexpert.org/expert/46832 -https://www.oceanexpert.org/institution/11645 -https://www.oceanexpert.org/expert/32514 -https://www.oceanexpert.org/expert/38196 -https://www.oceanexpert.org/expert/46300 -https://www.oceanexpert.org/institution/21480 -https://www.oceanexpert.org/institution/11569 -https://www.oceanexpert.org/institution/21446 -https://www.oceanexpert.org/institution/19833 -https://www.oceanexpert.org/expert/36331 -https://www.oceanexpert.org/expert/27036 -https://www.oceanexpert.org/expert/26931 -https://www.oceanexpert.org/institution/17106 -https://www.oceanexpert.org/event/663 -https://www.oceanexpert.org/institution/12632 -https://www.oceanexpert.org/event/624 -https://www.oceanexpert.org/expert/26611 -https://www.oceanexpert.org/expert/13803 -https://www.oceanexpert.org/expert/3497 -https://www.oceanexpert.org/expert/30201 -https://www.oceanexpert.org/expert/22450 -https://www.oceanexpert.org/expert/25425 -https://www.oceanexpert.org/expert/45881 -https://www.oceanexpert.org/institution/5702 -https://www.oceanexpert.org/expert/26597 -https://www.oceanexpert.org/expert/22050 -https://www.oceanexpert.org/expert/37211 -https://www.oceanexpert.org/event/98 -https://www.oceanexpert.org/expert/28101 -https://www.oceanexpert.org/expert/42799 -https://www.oceanexpert.org/event/2203 -https://www.oceanexpert.org/expert/36522 -https://www.oceanexpert.org/expert/32586 -https://www.oceanexpert.org/institution/15007 -https://www.oceanexpert.org/expert/16624 -https://www.oceanexpert.org/expert/48558 -https://www.oceanexpert.org/expert/781 -https://www.oceanexpert.org/event/2901 -https://www.oceanexpert.org/expert/17856 -https://www.oceanexpert.org/expert/21546 -https://www.oceanexpert.org/expert/17611 -https://www.oceanexpert.org/institution/12769 -https://www.oceanexpert.org/expert/3562 -https://www.oceanexpert.org/expert/16725 -https://www.oceanexpert.org/institution/21514 -https://www.oceanexpert.org/expert/40480 -https://www.oceanexpert.org/expert/47863 -https://www.oceanexpert.org/institution/8570 -https://www.oceanexpert.org/institution/12512 -https://www.oceanexpert.org/expert/4218 -https://www.oceanexpert.org/expert/29715 -https://www.oceanexpert.org/institution/19338 -https://www.oceanexpert.org/expert/30035 -https://www.oceanexpert.org/institution/20419 -https://www.oceanexpert.org/expert/19247 -https://www.oceanexpert.org/expert/35272 -https://www.oceanexpert.org/institution/12380 -https://www.oceanexpert.org/expert/23582 -https://www.oceanexpert.org/expert/34421 -https://www.oceanexpert.org/institution/19122 -https://www.oceanexpert.org/institution/15954 -https://www.oceanexpert.org/institution/11895 -https://www.oceanexpert.org/institution/10480 -https://www.oceanexpert.org/expert/49009 -https://www.oceanexpert.org/event/850 -https://www.oceanexpert.org/expert/44819 -https://www.oceanexpert.org/event/1343 -https://www.oceanexpert.org/expert/36 -https://www.oceanexpert.org/expert/44850 -https://www.oceanexpert.org/expert/46563 -https://www.oceanexpert.org/expert/37293 -https://www.oceanexpert.org/expert/11203 -https://www.oceanexpert.org/institution/20841 -https://www.oceanexpert.org/expert/39092 -https://www.oceanexpert.org/institution/21751 -https://www.oceanexpert.org/expert/1907 -https://www.oceanexpert.org/expert/14823 -https://www.oceanexpert.org/expert/39883 -https://www.oceanexpert.org/expert/44556 -https://www.oceanexpert.org/event/1896 -https://www.oceanexpert.org/expert/5715 -https://www.oceanexpert.org/expert/34523 -https://www.oceanexpert.org/expert/37189 -https://www.oceanexpert.org/institution/20571 -https://www.oceanexpert.org/institution/20120 -https://www.oceanexpert.org/institution/6970 -https://www.oceanexpert.org/expert/37135 -https://www.oceanexpert.org/expert/3680 -https://www.oceanexpert.org/event/363 -https://www.oceanexpert.org/event/2633 -https://www.oceanexpert.org/expert/46701 -https://www.oceanexpert.org/expert/37639 -https://www.oceanexpert.org/expert/36268 -https://www.oceanexpert.org/expert/45650 -https://www.oceanexpert.org/expert/44188 -https://www.oceanexpert.org/expert/36450 -https://www.oceanexpert.org/event/1722 -https://www.oceanexpert.org/expert/42810 -https://www.oceanexpert.org/institution/15923 -https://www.oceanexpert.org/expert/16131 -https://www.oceanexpert.org/event/2785 -https://www.oceanexpert.org/expert/36559 -https://www.oceanexpert.org/expert/43337 -https://www.oceanexpert.org/institution/12004 -https://www.oceanexpert.org/expert/45616 -https://www.oceanexpert.org/institution/10983 -https://www.oceanexpert.org/institution/16600 -https://www.oceanexpert.org/expert/48279 -https://www.oceanexpert.org/event/2061 -https://www.oceanexpert.org/expert/48328 -https://www.oceanexpert.org/expert/35593 -https://www.oceanexpert.org/expert/43718 -https://www.oceanexpert.org/expert/32862 -https://www.oceanexpert.org/expert/13586 -https://www.oceanexpert.org/expert/19533 -https://www.oceanexpert.org/expert/19109 -https://www.oceanexpert.org/institution/13727 -https://www.oceanexpert.org/expert/26792 -https://www.oceanexpert.org/expert/33939 -https://www.oceanexpert.org/expert/17129 -https://www.oceanexpert.org/expert/46815 -https://www.oceanexpert.org/institution/13678 -https://www.oceanexpert.org/expert/20852 -https://www.oceanexpert.org/expert/27067 -https://www.oceanexpert.org/expert/19482 -https://www.oceanexpert.org/expert/26122 -https://www.oceanexpert.org/institution/18187 -https://www.oceanexpert.org/event/947 -https://www.oceanexpert.org/event/1239 -https://www.oceanexpert.org/institution/18521 -https://www.oceanexpert.org/event/2510 -https://www.oceanexpert.org/expert/24817 -https://www.oceanexpert.org/expert/20093 -https://www.oceanexpert.org/institution/16338 -https://www.oceanexpert.org/event/2785 -https://www.oceanexpert.org/expert/43519 -https://www.oceanexpert.org/expert/19988 -https://www.oceanexpert.org/expert/44112 -https://www.oceanexpert.org/expert/37008 -https://www.oceanexpert.org/event/1562 -https://www.oceanexpert.org/institution/20465 -https://www.oceanexpert.org/expert/38864 -https://www.oceanexpert.org/expert/37292 -https://www.oceanexpert.org/expert/34670 -https://www.oceanexpert.org/expert/33378 -https://www.oceanexpert.org/expert/40556 -https://www.oceanexpert.org/institution/19833 -https://www.oceanexpert.org/expert/43701 -https://www.oceanexpert.org/institution/11057 -https://www.oceanexpert.org/expert/32637 -https://www.oceanexpert.org/expert/19104 -https://www.oceanexpert.org/event/470 -https://www.oceanexpert.org/expert/35057 -https://www.oceanexpert.org/expert/21629 -https://www.oceanexpert.org/expert/36562 -https://www.oceanexpert.org/expert/28258 -https://www.oceanexpert.org/institution/18642 -https://www.oceanexpert.org/expert/39652 -https://www.oceanexpert.org/expert/28158 -https://www.oceanexpert.org/expert/33827 -https://www.oceanexpert.org/expert/44649 -https://www.oceanexpert.org/expert/19107 -https://www.oceanexpert.org/expert/10808 -https://www.oceanexpert.org/institution/14903 -https://www.oceanexpert.org/expert/40655 -https://www.oceanexpert.org/expert/43658 -https://www.oceanexpert.org/expert/39055 -https://www.oceanexpert.org/expert/25841 -https://www.oceanexpert.org/institution/9279 -https://www.oceanexpert.org/institution/12833 -https://www.oceanexpert.org/expert/22381 -https://www.oceanexpert.org/expert/15609 -https://www.oceanexpert.org/expert/23324 -https://www.oceanexpert.org/institution/19720 -https://www.oceanexpert.org/expert/26117 -https://www.oceanexpert.org/expert/47565 -https://www.oceanexpert.org/expert/24922 -https://www.oceanexpert.org/expert/29607 -https://www.oceanexpert.org/institution/20414 -https://www.oceanexpert.org/institution/21087 -https://www.oceanexpert.org/institution/14371 -https://www.oceanexpert.org/expert/37148 -https://www.oceanexpert.org/institution/9526 -https://www.oceanexpert.org/expert/46044 -https://www.oceanexpert.org/expert/29140 -https://www.oceanexpert.org/expert/36772 -https://www.oceanexpert.org/expert/7023 -https://www.oceanexpert.org/expert/46933 -https://www.oceanexpert.org/expert/32553 -https://www.oceanexpert.org/institution/21883 -https://www.oceanexpert.org/institution/19940 -https://www.oceanexpert.org/expert/21161 -https://www.oceanexpert.org/expert/25828 -https://www.oceanexpert.org/event/1276 -https://www.oceanexpert.org/expert/16921 -https://www.oceanexpert.org/expert/27648 -https://www.oceanexpert.org/expert/35276 -https://www.oceanexpert.org/institution/21899 -https://www.oceanexpert.org/event/636 -https://www.oceanexpert.org/expert/26507 -https://www.oceanexpert.org/expert/47942 -https://www.oceanexpert.org/event/1263 -https://www.oceanexpert.org/institution/11081 -https://www.oceanexpert.org/expert/17790 -https://www.oceanexpert.org/expert/20516 -https://www.oceanexpert.org/expert/37894 -https://www.oceanexpert.org/expert/12575 -https://www.oceanexpert.org/institution/19331 -https://www.oceanexpert.org/expert/789 -https://www.oceanexpert.org/expert/27309 -https://www.oceanexpert.org/event/1590 -https://www.oceanexpert.org/expert/48470 -https://www.oceanexpert.org/expert/42672 -https://www.oceanexpert.org/expert/40079 -https://www.oceanexpert.org/expert/35304 -https://www.oceanexpert.org/institution/22018 -https://www.oceanexpert.org/institution/20206 -https://www.oceanexpert.org/institution/20603 -https://www.oceanexpert.org/expert/25894 -https://www.oceanexpert.org/institution/14289 -https://www.oceanexpert.org/expert/18222 -https://www.oceanexpert.org/event/1727 -https://www.oceanexpert.org/institution/18515 -https://www.oceanexpert.org/event/1740 -https://www.oceanexpert.org/expert/31523 -https://www.oceanexpert.org/expert/24656 -https://www.oceanexpert.org/expert/43827 -https://www.oceanexpert.org/institution/13397 -https://www.oceanexpert.org/expert/8047 -https://www.oceanexpert.org/expert/26503 -https://www.oceanexpert.org/expert/30120 -https://www.oceanexpert.org/expert/40177 -https://www.oceanexpert.org/expert/37944 -https://www.oceanexpert.org/expert/24002 -https://www.oceanexpert.org/expert/35581 -https://www.oceanexpert.org/expert/36531 -https://www.oceanexpert.org/event/2484 -https://www.oceanexpert.org/institution/19476 -https://www.oceanexpert.org/expert/47506 -https://www.oceanexpert.org/expert/36695 -https://www.oceanexpert.org/expert/43510 -https://www.oceanexpert.org/institution/17980 -https://www.oceanexpert.org/expert/30826 -https://www.oceanexpert.org/expert/45754 -https://www.oceanexpert.org/institution/15665 -https://www.oceanexpert.org/institution/10889 -https://www.oceanexpert.org/expert/46220 -https://www.oceanexpert.org/expert/37393 -https://www.oceanexpert.org/expert/46283 -https://www.oceanexpert.org/expert/12861 -https://www.oceanexpert.org/event/2851 -https://www.oceanexpert.org/institution/21125 -https://www.oceanexpert.org/expert/25584 -https://www.oceanexpert.org/expert/9047 -https://www.oceanexpert.org/expert/48661 -https://www.oceanexpert.org/expert/18619 -https://www.oceanexpert.org/expert/27452 -https://www.oceanexpert.org/expert/29148 -https://www.oceanexpert.org/institution/18811 -https://www.oceanexpert.org/expert/39268 -https://www.oceanexpert.org/expert/42895 -https://www.oceanexpert.org/institution/13983 -https://www.oceanexpert.org/expert/21944 -https://www.oceanexpert.org/institution/16643 -https://www.oceanexpert.org/expert/23058 -https://www.oceanexpert.org/expert/3190 -https://www.oceanexpert.org/expert/47126 -https://www.oceanexpert.org/expert/38517 -https://www.oceanexpert.org/expert/21467 -https://www.oceanexpert.org/event/210 -https://www.oceanexpert.org/institution/22037 -https://www.oceanexpert.org/expert/42830 -https://www.oceanexpert.org/institution/18560 -https://www.oceanexpert.org/expert/33855 -https://www.oceanexpert.org/institution/18772 -https://www.oceanexpert.org/institution/13675 -https://www.oceanexpert.org/expert/47301 -https://www.oceanexpert.org/expert/39741 -https://www.oceanexpert.org/expert/21224 -https://www.oceanexpert.org/institution/21687 -https://www.oceanexpert.org/event/1449 -https://www.oceanexpert.org/expert/46950 -https://www.oceanexpert.org/institution/9179 -https://www.oceanexpert.org/expert/29671 -https://www.oceanexpert.org/expert/43477 -https://www.oceanexpert.org/institution/21919 -https://www.oceanexpert.org/institution/9838 -https://www.oceanexpert.org/institution/21163 -https://www.oceanexpert.org/institution/19455 -https://www.oceanexpert.org/expert/36535 -https://www.oceanexpert.org/institution/19076 -https://www.oceanexpert.org/expert/48435 -https://www.oceanexpert.org/expert/36570 -https://www.oceanexpert.org/institution/15825 -https://www.oceanexpert.org/expert/45898 -https://www.oceanexpert.org/expert/33704 -https://www.oceanexpert.org/expert/26793 -https://www.oceanexpert.org/expert/49055 -https://www.oceanexpert.org/expert/25717 -https://www.oceanexpert.org/expert/15314 -https://www.oceanexpert.org/expert/26574 -https://www.oceanexpert.org/expert/46400 -https://www.oceanexpert.org/expert/23788 -https://www.oceanexpert.org/expert/25763 -https://www.oceanexpert.org/expert/36652 -https://www.oceanexpert.org/expert/23142 -https://www.oceanexpert.org/institution/18281 -https://www.oceanexpert.org/expert/36061 -https://www.oceanexpert.org/expert/17809 -https://www.oceanexpert.org/expert/44934 -https://www.oceanexpert.org/institution/21058 -https://www.oceanexpert.org/expert/47103 -https://www.oceanexpert.org/institution/17434 -https://www.oceanexpert.org/expert/17909 -https://www.oceanexpert.org/event/1826 -https://www.oceanexpert.org/expert/18614 -https://www.oceanexpert.org/event/597 -https://www.oceanexpert.org/expert/44067 -https://www.oceanexpert.org/expert/23549 -https://www.oceanexpert.org/expert/31010 -https://www.oceanexpert.org/institution/17435 -https://www.oceanexpert.org/expert/22951 -https://www.oceanexpert.org/expert/23779 -https://www.oceanexpert.org/expert/13678 -https://www.oceanexpert.org/expert/26349 -https://www.oceanexpert.org/institution/16741 -https://www.oceanexpert.org/expert/40675 -https://www.oceanexpert.org/expert/12378 -https://www.oceanexpert.org/expert/35462 -https://www.oceanexpert.org/expert/48669 -https://www.oceanexpert.org/expert/4863 -https://www.oceanexpert.org/expert/19014 -https://www.oceanexpert.org/event/3032 -https://www.oceanexpert.org/expert/23522 -https://www.oceanexpert.org/expert/29126 -https://www.oceanexpert.org/expert/47125 -https://www.oceanexpert.org/expert/43283 -https://www.oceanexpert.org/institution/19916 -https://www.oceanexpert.org/expert/38002 -https://www.oceanexpert.org/expert/42583 -https://www.oceanexpert.org/expert/30183 -https://www.oceanexpert.org/event/387 -https://www.oceanexpert.org/expert/26947 -https://www.oceanexpert.org/expert/4943 -https://www.oceanexpert.org/expert/15615 -https://www.oceanexpert.org/expert/37048 -https://www.oceanexpert.org/expert/45932 -https://www.oceanexpert.org/expert/24707 -https://www.oceanexpert.org/expert/42579 -https://www.oceanexpert.org/expert/33172 -https://www.oceanexpert.org/event/3291 -https://www.oceanexpert.org/institution/20129 -https://www.oceanexpert.org/expert/33447 -https://www.oceanexpert.org/expert/23503 -https://www.oceanexpert.org/expert/44582 -https://www.oceanexpert.org/expert/38021 -https://www.oceanexpert.org/institution/14252 -https://www.oceanexpert.org/institution/20420 -https://www.oceanexpert.org/expert/36216 -https://www.oceanexpert.org/expert/44339 -https://www.oceanexpert.org/institution/16484 -https://www.oceanexpert.org/institution/19786 -https://www.oceanexpert.org/institution/17556 -https://www.oceanexpert.org/expert/31235 -https://www.oceanexpert.org/event/638 -https://www.oceanexpert.org/institution/18812 -https://www.oceanexpert.org/expert/26330 -https://www.oceanexpert.org/expert/35661 -https://www.oceanexpert.org/expert/46799 -https://www.oceanexpert.org/expert/1992 -https://www.oceanexpert.org/expert/9198 -https://www.oceanexpert.org/institution/19214 -https://www.oceanexpert.org/expert/48511 -https://www.oceanexpert.org/expert/14922 -https://www.oceanexpert.org/expert/26496 -https://www.oceanexpert.org/event/92 -https://www.oceanexpert.org/expert/26123 -https://www.oceanexpert.org/expert/29682 -https://www.oceanexpert.org/expert/44666 -https://www.oceanexpert.org/expert/17048 -https://www.oceanexpert.org/expert/38160 -https://www.oceanexpert.org/event/2893 -https://www.oceanexpert.org/expert/47108 -https://www.oceanexpert.org/expert/25262 -https://www.oceanexpert.org/expert/47347 -https://www.oceanexpert.org/expert/33775 -https://www.oceanexpert.org/expert/45579 -https://www.oceanexpert.org/event/1654 -https://www.oceanexpert.org/expert/33731 -https://www.oceanexpert.org/expert/40043 -https://www.oceanexpert.org/expert/22670 -https://www.oceanexpert.org/expert/33205 -https://www.oceanexpert.org/expert/34916 -https://www.oceanexpert.org/expert/34167 -https://www.oceanexpert.org/institution/13766 -https://www.oceanexpert.org/expert/42054 -https://www.oceanexpert.org/expert/35213 -https://www.oceanexpert.org/expert/45142 -https://www.oceanexpert.org/institution/17834 -https://www.oceanexpert.org/expert/43257 -https://www.oceanexpert.org/expert/29138 -https://www.oceanexpert.org/institution/20136 -https://www.oceanexpert.org/expert/46617 -https://www.oceanexpert.org/expert/22558 -https://www.oceanexpert.org/expert/19705 -https://www.oceanexpert.org/expert/23025 -https://www.oceanexpert.org/institution/19321 -https://www.oceanexpert.org/expert/32140 -https://www.oceanexpert.org/expert/45639 -https://www.oceanexpert.org/event/633 -https://www.oceanexpert.org/expert/20762 -https://www.oceanexpert.org/expert/27249 -https://www.oceanexpert.org/expert/47406 -https://www.oceanexpert.org/expert/40120 -https://www.oceanexpert.org/expert/42912 -https://www.oceanexpert.org/institution/21443 -https://www.oceanexpert.org/expert/18610 -https://www.oceanexpert.org/expert/32161 -https://www.oceanexpert.org/expert/39155 -https://www.oceanexpert.org/institution/18876 -https://www.oceanexpert.org/institution/16472 -https://www.oceanexpert.org/expert/32310 -https://www.oceanexpert.org/expert/19036 -https://www.oceanexpert.org/expert/24431 -https://www.oceanexpert.org/expert/24783 -https://www.oceanexpert.org/expert/36709 -https://www.oceanexpert.org/expert/11159 -https://www.oceanexpert.org/expert/47817 -https://www.oceanexpert.org/expert/33706 -https://www.oceanexpert.org/institution/18832 -https://www.oceanexpert.org/expert/47251 -https://www.oceanexpert.org/expert/24406 -https://www.oceanexpert.org/expert/25292 -https://www.oceanexpert.org/expert/43167 -https://www.oceanexpert.org/expert/32433 -https://www.oceanexpert.org/institution/21938 -https://www.oceanexpert.org/expert/19468 -https://www.oceanexpert.org/institution/14501 -https://www.oceanexpert.org/expert/27311 -https://www.oceanexpert.org/expert/39245 -https://www.oceanexpert.org/institution/18270 -https://www.oceanexpert.org/expert/24398 -https://www.oceanexpert.org/expert/31203 -https://www.oceanexpert.org/institution/20831 -https://www.oceanexpert.org/expert/32436 -https://www.oceanexpert.org/expert/36750 -https://www.oceanexpert.org/expert/38328 -https://www.oceanexpert.org/expert/19203 -https://www.oceanexpert.org/expert/30047 -https://www.oceanexpert.org/expert/26120 -https://www.oceanexpert.org/expert/23656 -https://www.oceanexpert.org/event/1356 -https://www.oceanexpert.org/event/1065 -https://www.oceanexpert.org/institution/19316 -https://www.oceanexpert.org/expert/26606 -https://www.oceanexpert.org/expert/13964 -https://www.oceanexpert.org/expert/19776 -https://www.oceanexpert.org/institution/11316 -https://www.oceanexpert.org/expert/27383 -https://www.oceanexpert.org/institution/21903 -https://www.oceanexpert.org/institution/13150 -https://www.oceanexpert.org/institution/16128 -https://www.oceanexpert.org/institution/11693 -https://www.oceanexpert.org/expert/44297 -https://www.oceanexpert.org/expert/46037 -https://www.oceanexpert.org/institution/11408 -https://www.oceanexpert.org/expert/20695 -https://www.oceanexpert.org/expert/36995 -https://www.oceanexpert.org/institution/13139 -https://www.oceanexpert.org/expert/3397 -https://www.oceanexpert.org/expert/14207 -https://www.oceanexpert.org/expert/26558 -https://www.oceanexpert.org/expert/34167 -https://www.oceanexpert.org/institution/21130 -https://www.oceanexpert.org/expert/28718 -https://www.oceanexpert.org/expert/14098 -https://www.oceanexpert.org/expert/47676 -https://www.oceanexpert.org/expert/46708 -https://www.oceanexpert.org/expert/25077 -https://www.oceanexpert.org/expert/18287 -https://www.oceanexpert.org/expert/32284 -https://www.oceanexpert.org/expert/39597 -https://www.oceanexpert.org/expert/24797 -https://www.oceanexpert.org/expert/37466 -https://www.oceanexpert.org/expert/23797 -https://www.oceanexpert.org/event/1758 -https://www.oceanexpert.org/institution/11227 -https://www.oceanexpert.org/institution/22156 -https://www.oceanexpert.org/expert/32503 -https://www.oceanexpert.org/expert/32866 -https://www.oceanexpert.org/expert/10943 -https://www.oceanexpert.org/expert/34230 -https://www.oceanexpert.org/expert/15374 -https://www.oceanexpert.org/institution/14717 -https://www.oceanexpert.org/event/193 -https://www.oceanexpert.org/expert/4763 -https://www.oceanexpert.org/event/393 -https://www.oceanexpert.org/expert/25690 -https://www.oceanexpert.org/institution/11176 -https://www.oceanexpert.org/expert/38050 -https://www.oceanexpert.org/institution/18408 -https://www.oceanexpert.org/institution/17876 -https://www.oceanexpert.org/expert/17585 -https://www.oceanexpert.org/event/1765 -https://www.oceanexpert.org/institution/15813 -https://www.oceanexpert.org/institution/12084 -https://www.oceanexpert.org/expert/17653 -https://www.oceanexpert.org/institution/20869 -https://www.oceanexpert.org/event/295 -https://www.oceanexpert.org/institution/15570 -https://www.oceanexpert.org/institution/19788 -https://www.oceanexpert.org/expert/36661 -https://www.oceanexpert.org/expert/47880 -https://www.oceanexpert.org/expert/24479 -https://www.oceanexpert.org/expert/29840 -https://www.oceanexpert.org/expert/2255 -https://www.oceanexpert.org/institution/19544 -https://www.oceanexpert.org/institution/20351 -https://www.oceanexpert.org/expert/43610 -https://www.oceanexpert.org/expert/42084 -https://www.oceanexpert.org/expert/47465 -https://www.oceanexpert.org/event/470 -https://www.oceanexpert.org/expert/20840 -https://www.oceanexpert.org/institution/19560 -https://www.oceanexpert.org/event/3030 -https://www.oceanexpert.org/event/113 -https://www.oceanexpert.org/expert/26972 -https://www.oceanexpert.org/institution/18176 -https://www.oceanexpert.org/institution/18798 -https://www.oceanexpert.org/institution/20050 -https://www.oceanexpert.org/expert/22451 -https://www.oceanexpert.org/expert/17435 -https://www.oceanexpert.org/institution/20555 -https://www.oceanexpert.org/expert/39741 -https://www.oceanexpert.org/expert/17939 -https://www.oceanexpert.org/institution/17899 -https://www.oceanexpert.org/expert/2281 -https://www.oceanexpert.org/expert/44429 -https://www.oceanexpert.org/institution/21707 -https://www.oceanexpert.org/expert/9544 -https://www.oceanexpert.org/event/3 -https://www.oceanexpert.org/expert/48290 -https://www.oceanexpert.org/expert/32433 -https://www.oceanexpert.org/expert/17772 -https://www.oceanexpert.org/expert/36624 -https://www.oceanexpert.org/institution/18691 -https://www.oceanexpert.org/expert/34337 -https://www.oceanexpert.org/expert/45133 -https://www.oceanexpert.org/expert/23602 -https://www.oceanexpert.org/event/943 -https://www.oceanexpert.org/expert/16693 -https://www.oceanexpert.org/institution/15653 -https://www.oceanexpert.org/expert/27054 -https://www.oceanexpert.org/institution/12757 -https://www.oceanexpert.org/expert/45618 -https://www.oceanexpert.org/expert/43021 -https://www.oceanexpert.org/institution/16194 -https://www.oceanexpert.org/expert/33884 -https://www.oceanexpert.org/event/2901 -https://www.oceanexpert.org/expert/28221 -https://www.oceanexpert.org/expert/4714 -https://www.oceanexpert.org/expert/26472 -https://www.oceanexpert.org/event/1952 -https://www.oceanexpert.org/institution/8032 -https://www.oceanexpert.org/institution/14703 -https://www.oceanexpert.org/expert/12005 -https://www.oceanexpert.org/expert/26333 -https://www.oceanexpert.org/expert/23931 -https://www.oceanexpert.org/expert/28045 -https://www.oceanexpert.org/expert/35394 -https://www.oceanexpert.org/institution/21933 -https://www.oceanexpert.org/expert/24640 -https://www.oceanexpert.org/expert/21509 -https://www.oceanexpert.org/institution/14904 -https://www.oceanexpert.org/expert/21953 -https://www.oceanexpert.org/expert/38650 -https://www.oceanexpert.org/expert/48012 -https://www.oceanexpert.org/expert/43483 -https://www.oceanexpert.org/expert/14555 -https://www.oceanexpert.org/expert/32211 -https://www.oceanexpert.org/expert/31956 -https://www.oceanexpert.org/institution/20313 -https://www.oceanexpert.org/expert/24232 -https://www.oceanexpert.org/expert/43555 -https://www.oceanexpert.org/expert/46850 -https://www.oceanexpert.org/expert/36239 -https://www.oceanexpert.org/expert/22954 -https://www.oceanexpert.org/expert/26342 -https://www.oceanexpert.org/institution/19459 -https://www.oceanexpert.org/expert/40758 -https://www.oceanexpert.org/institution/19456 -https://www.oceanexpert.org/expert/34256 -https://www.oceanexpert.org/institution/5377 -https://www.oceanexpert.org/institution/15066 -https://www.oceanexpert.org/event/1660 -https://www.oceanexpert.org/expert/26542 -https://www.oceanexpert.org/expert/32682 -https://www.oceanexpert.org/expert/22567 -https://www.oceanexpert.org/institution/13651 -https://www.oceanexpert.org/institution/12012 -https://www.oceanexpert.org/expert/48261 -https://www.oceanexpert.org/expert/4770 -https://www.oceanexpert.org/expert/26539 -https://www.oceanexpert.org/expert/46338 -https://www.oceanexpert.org/event/1083 -https://www.oceanexpert.org/institution/21057 -https://www.oceanexpert.org/event/1128 -https://www.oceanexpert.org/expert/26747 -https://www.oceanexpert.org/institution/13465 -https://www.oceanexpert.org/institution/13149 -https://www.oceanexpert.org/event/1449 -https://www.oceanexpert.org/institution/21926 -https://www.oceanexpert.org/expert/47526 -https://www.oceanexpert.org/institution/13751 -https://www.oceanexpert.org/expert/46402 -https://www.oceanexpert.org/event/1058 -https://www.oceanexpert.org/expert/36380 -https://www.oceanexpert.org/expert/15659 -https://www.oceanexpert.org/event/406 -https://www.oceanexpert.org/institution/19129 -https://www.oceanexpert.org/event/1248 -https://www.oceanexpert.org/expert/39242 -https://www.oceanexpert.org/institution/9485 -https://www.oceanexpert.org/institution/9279 -https://www.oceanexpert.org/institution/18983 -https://www.oceanexpert.org/institution/13935 -https://www.oceanexpert.org/expert/48746 -https://www.oceanexpert.org/institution/13445 -https://www.oceanexpert.org/event/3087 -https://www.oceanexpert.org/expert/12071 -https://www.oceanexpert.org/institution/8675 -https://www.oceanexpert.org/expert/24561 -https://www.oceanexpert.org/institution/19580 -https://www.oceanexpert.org/expert/43880 -https://www.oceanexpert.org/institution/19740 -https://www.oceanexpert.org/expert/20942 -https://www.oceanexpert.org/expert/36622 -https://www.oceanexpert.org/expert/21109 -https://www.oceanexpert.org/institution/13834 -https://www.oceanexpert.org/expert/36949 -https://www.oceanexpert.org/expert/7528 -https://www.oceanexpert.org/expert/30852 -https://www.oceanexpert.org/expert/38007 -https://www.oceanexpert.org/expert/45930 -https://www.oceanexpert.org/expert/34799 -https://www.oceanexpert.org/expert/1983 -https://www.oceanexpert.org/expert/45467 -https://www.oceanexpert.org/institution/16375 -https://www.oceanexpert.org/institution/17682 -https://www.oceanexpert.org/event/1250 -https://www.oceanexpert.org/event/2155 -https://www.oceanexpert.org/expert/43012 -https://www.oceanexpert.org/expert/41394 -https://www.oceanexpert.org/institution/15363 -https://www.oceanexpert.org/expert/27232 -https://www.oceanexpert.org/expert/10177 -https://www.oceanexpert.org/expert/47510 -https://www.oceanexpert.org/event/21 -https://www.oceanexpert.org/event/2282 -https://www.oceanexpert.org/event/1335 -https://www.oceanexpert.org/institution/20548 -https://www.oceanexpert.org/expert/47731 -https://www.oceanexpert.org/event/2074 -https://www.oceanexpert.org/expert/43637 -https://www.oceanexpert.org/institution/15185 -https://www.oceanexpert.org/expert/44387 -https://www.oceanexpert.org/expert/46860 -https://www.oceanexpert.org/expert/47211 -https://www.oceanexpert.org/expert/7272 -https://www.oceanexpert.org/expert/20049 -https://www.oceanexpert.org/event/642 -https://www.oceanexpert.org/expert/37596 -https://www.oceanexpert.org/expert/35610 -https://www.oceanexpert.org/event/713 -https://www.oceanexpert.org/institution/17415 -https://www.oceanexpert.org/expert/25907 -https://www.oceanexpert.org/expert/22830 -https://www.oceanexpert.org/expert/2791 -https://www.oceanexpert.org/institution/18378 -https://www.oceanexpert.org/expert/11101 -https://www.oceanexpert.org/institution/15657 -https://www.oceanexpert.org/expert/11706 -https://www.oceanexpert.org/institution/20542 -https://www.oceanexpert.org/expert/25081 -https://www.oceanexpert.org/expert/32507 -https://www.oceanexpert.org/expert/24625 -https://www.oceanexpert.org/expert/30894 -https://www.oceanexpert.org/expert/24235 -https://www.oceanexpert.org/expert/30110 -https://www.oceanexpert.org/institution/15050 -https://www.oceanexpert.org/institution/20748 -https://www.oceanexpert.org/expert/17579 -https://www.oceanexpert.org/expert/35263 -https://www.oceanexpert.org/expert/26331 -https://www.oceanexpert.org/event/1772 -https://www.oceanexpert.org/expert/44052 -https://www.oceanexpert.org/expert/46892 -https://www.oceanexpert.org/expert/39345 -https://www.oceanexpert.org/expert/42836 -https://www.oceanexpert.org/institution/18495 -https://www.oceanexpert.org/expert/40583 -https://www.oceanexpert.org/event/2089 -https://www.oceanexpert.org/expert/24700 -https://www.oceanexpert.org/institution/20021 -https://www.oceanexpert.org/event/3018 -https://www.oceanexpert.org/institution/21451 -https://www.oceanexpert.org/expert/28472 -https://www.oceanexpert.org/event/454 -https://www.oceanexpert.org/expert/17558 -https://www.oceanexpert.org/expert/21524 -https://www.oceanexpert.org/institution/20395 -https://www.oceanexpert.org/institution/11310 -https://www.oceanexpert.org/expert/536 -https://www.oceanexpert.org/expert/47745 -https://www.oceanexpert.org/expert/44550 -https://www.oceanexpert.org/expert/47739 -https://www.oceanexpert.org/expert/32182 -https://www.oceanexpert.org/expert/36522 -https://www.oceanexpert.org/expert/44503 -https://www.oceanexpert.org/institution/13270 -https://www.oceanexpert.org/expert/24797 -https://www.oceanexpert.org/institution/19152 -https://www.oceanexpert.org/expert/13932 -https://www.oceanexpert.org/event/2760 -https://www.oceanexpert.org/expert/43304 -https://www.oceanexpert.org/expert/34790 -https://www.oceanexpert.org/event/1537 -https://www.oceanexpert.org/expert/18606 -https://www.oceanexpert.org/event/192 -https://www.oceanexpert.org/expert/39907 -https://www.oceanexpert.org/expert/33059 -https://www.oceanexpert.org/expert/8641 -https://www.oceanexpert.org/expert/11298 -https://www.oceanexpert.org/expert/36641 -https://www.oceanexpert.org/expert/38851 -https://www.oceanexpert.org/expert/19870 -https://www.oceanexpert.org/expert/48718 -https://www.oceanexpert.org/institution/12169 -https://www.oceanexpert.org/institution/10807 -https://www.oceanexpert.org/expert/48366 -https://www.oceanexpert.org/expert/20254 -https://www.oceanexpert.org/institution/21340 -https://www.oceanexpert.org/expert/38893 -https://www.oceanexpert.org/institution/15879 -https://www.oceanexpert.org/expert/22737 -https://www.oceanexpert.org/event/1393 -https://www.oceanexpert.org/event/830 -https://www.oceanexpert.org/expert/28349 -https://www.oceanexpert.org/expert/44859 -https://www.oceanexpert.org/event/72 -https://www.oceanexpert.org/expert/21994 -https://www.oceanexpert.org/expert/35010 -https://www.oceanexpert.org/expert/19073 -https://www.oceanexpert.org/expert/27212 -https://www.oceanexpert.org/expert/34214 -https://www.oceanexpert.org/expert/22126 -https://www.oceanexpert.org/expert/4857 -https://www.oceanexpert.org/institution/20872 -https://www.oceanexpert.org/expert/12967 -https://www.oceanexpert.org/event/2196 -https://www.oceanexpert.org/expert/47164 -https://www.oceanexpert.org/institution/21228 -https://www.oceanexpert.org/expert/13273 -https://www.oceanexpert.org/institution/16482 -https://www.oceanexpert.org/expert/37018 -https://www.oceanexpert.org/institution/6026 -https://www.oceanexpert.org/expert/25440 -https://www.oceanexpert.org/expert/20606 -https://www.oceanexpert.org/expert/28147 -https://www.oceanexpert.org/expert/25961 -https://www.oceanexpert.org/expert/30449 -https://www.oceanexpert.org/expert/18669 -https://www.oceanexpert.org/expert/42801 -https://www.oceanexpert.org/expert/44370 -https://www.oceanexpert.org/expert/25702 -https://www.oceanexpert.org/expert/35386 -https://www.oceanexpert.org/expert/24005 -https://www.oceanexpert.org/expert/605 -https://www.oceanexpert.org/expert/35291 -https://www.oceanexpert.org/expert/32313 -https://www.oceanexpert.org/event/2835 -https://www.oceanexpert.org/expert/46613 -https://www.oceanexpert.org/expert/48790 -https://www.oceanexpert.org/expert/24597 -https://www.oceanexpert.org/expert/29514 -https://www.oceanexpert.org/institution/18402 -https://www.oceanexpert.org/institution/14094 -https://www.oceanexpert.org/event/444 -https://www.oceanexpert.org/expert/27539 -https://www.oceanexpert.org/expert/14597 -https://www.oceanexpert.org/institution/20437 -https://www.oceanexpert.org/expert/27350 -https://www.oceanexpert.org/institution/18717 -https://www.oceanexpert.org/expert/38360 -https://www.oceanexpert.org/expert/23677 -https://www.oceanexpert.org/institution/21696 -https://www.oceanexpert.org/institution/19150 -https://www.oceanexpert.org/expert/37029 -https://www.oceanexpert.org/institution/6766 -https://www.oceanexpert.org/expert/32999 -https://www.oceanexpert.org/expert/48919 -https://www.oceanexpert.org/event/1523 -https://www.oceanexpert.org/institution/8795 -https://www.oceanexpert.org/expert/36787 -https://www.oceanexpert.org/expert/44844 -https://www.oceanexpert.org/expert/25000 -https://www.oceanexpert.org/expert/34607 -https://www.oceanexpert.org/event/968 -https://www.oceanexpert.org/expert/17515 -https://www.oceanexpert.org/expert/40924 -https://www.oceanexpert.org/expert/45178 -https://www.oceanexpert.org/expert/37820 -https://www.oceanexpert.org/expert/17991 -https://www.oceanexpert.org/expert/15076 -https://www.oceanexpert.org/expert/30182 -https://www.oceanexpert.org/event/686 -https://www.oceanexpert.org/expert/22828 -https://www.oceanexpert.org/expert/35678 -https://www.oceanexpert.org/expert/44083 -https://www.oceanexpert.org/expert/48800 -https://www.oceanexpert.org/event/1983 -https://www.oceanexpert.org/expert/30261 -https://www.oceanexpert.org/expert/43328 -https://www.oceanexpert.org/institution/12208 -https://www.oceanexpert.org/expert/46342 -https://www.oceanexpert.org/expert/45102 -https://www.oceanexpert.org/expert/44883 -https://www.oceanexpert.org/event/2319 -https://www.oceanexpert.org/institution/18348 -https://www.oceanexpert.org/expert/18941 -https://www.oceanexpert.org/expert/29518 -https://www.oceanexpert.org/event/2467 -https://www.oceanexpert.org/event/3102 -https://www.oceanexpert.org/expert/14736 -https://www.oceanexpert.org/expert/24581 -https://www.oceanexpert.org/expert/20434 -https://www.oceanexpert.org/institution/10261 -https://www.oceanexpert.org/institution/18848 -https://www.oceanexpert.org/expert/43754 -https://www.oceanexpert.org/institution/22033 -https://www.oceanexpert.org/expert/14676 -https://www.oceanexpert.org/expert/24199 -https://www.oceanexpert.org/expert/37133 -https://www.oceanexpert.org/expert/26860 -https://www.oceanexpert.org/expert/33082 -https://www.oceanexpert.org/event/1412 -https://www.oceanexpert.org/expert/27434 -https://www.oceanexpert.org/expert/8902 -https://www.oceanexpert.org/expert/39861 -https://www.oceanexpert.org/expert/18393 -https://www.oceanexpert.org/expert/8733 -https://www.oceanexpert.org/expert/33076 -https://www.oceanexpert.org/expert/37367 -https://www.oceanexpert.org/institution/22120 -https://www.oceanexpert.org/expert/26203 -https://www.oceanexpert.org/expert/45076 -https://www.oceanexpert.org/institution/19358 -https://www.oceanexpert.org/expert/17221 -https://www.oceanexpert.org/expert/19492 -https://www.oceanexpert.org/institution/19556 -https://www.oceanexpert.org/expert/24210 -https://www.oceanexpert.org/expert/45014 -https://www.oceanexpert.org/institution/17015 -https://www.oceanexpert.org/expert/37563 -https://www.oceanexpert.org/expert/27018 -https://www.oceanexpert.org/expert/24928 -https://www.oceanexpert.org/expert/48128 -https://www.oceanexpert.org/expert/28821 -https://www.oceanexpert.org/event/1831 -https://www.oceanexpert.org/expert/25003 -https://www.oceanexpert.org/event/2984 -https://www.oceanexpert.org/expert/38026 -https://www.oceanexpert.org/expert/38352 -https://www.oceanexpert.org/expert/21024 -https://www.oceanexpert.org/expert/28485 -https://www.oceanexpert.org/institution/18496 -https://www.oceanexpert.org/expert/45891 -https://www.oceanexpert.org/expert/43939 -https://www.oceanexpert.org/expert/42934 -https://www.oceanexpert.org/expert/26880 -https://www.oceanexpert.org/institution/17126 -https://www.oceanexpert.org/expert/35287 -https://www.oceanexpert.org/expert/30488 -https://www.oceanexpert.org/event/2459 -https://www.oceanexpert.org/expert/34028 -https://www.oceanexpert.org/expert/32531 -https://www.oceanexpert.org/event/2569 -https://www.oceanexpert.org/expert/24450 -https://www.oceanexpert.org/institution/19618 -https://www.oceanexpert.org/expert/26856 -https://www.oceanexpert.org/expert/25996 -https://www.oceanexpert.org/expert/23201 -https://www.oceanexpert.org/event/224 -https://www.oceanexpert.org/expert/41066 -https://www.oceanexpert.org/institution/16970 -https://www.oceanexpert.org/institution/6349 -https://www.oceanexpert.org/expert/2362 -https://www.oceanexpert.org/expert/46764 -https://www.oceanexpert.org/expert/18155 -https://www.oceanexpert.org/institution/22167 -https://www.oceanexpert.org/expert/5406 -https://www.oceanexpert.org/expert/14865 -https://www.oceanexpert.org/expert/17845 -https://www.oceanexpert.org/expert/17298 -https://www.oceanexpert.org/institution/18117 -https://www.oceanexpert.org/expert/15031 -https://www.oceanexpert.org/expert/44672 -https://www.oceanexpert.org/expert/25769 -https://www.oceanexpert.org/expert/31650 -https://www.oceanexpert.org/expert/7118 -https://www.oceanexpert.org/expert/30221 -https://www.oceanexpert.org/expert/31319 -https://www.oceanexpert.org/expert/45382 -https://www.oceanexpert.org/expert/659 -https://www.oceanexpert.org/expert/36492 -https://www.oceanexpert.org/expert/39097 -https://www.oceanexpert.org/event/1665 -https://www.oceanexpert.org/expert/17265 -https://www.oceanexpert.org/institution/19802 -https://www.oceanexpert.org/expert/46099 -https://www.oceanexpert.org/expert/48072 -https://www.oceanexpert.org/expert/7860 -https://www.oceanexpert.org/expert/31872 -https://www.oceanexpert.org/expert/16865 -https://www.oceanexpert.org/institution/15045 -https://www.oceanexpert.org/expert/12019 -https://www.oceanexpert.org/expert/45420 -https://www.oceanexpert.org/expert/31727 -https://www.oceanexpert.org/institution/8841 -https://www.oceanexpert.org/expert/6907 -https://www.oceanexpert.org/expert/29928 -https://www.oceanexpert.org/institution/17347 -https://www.oceanexpert.org/event/248 -https://www.oceanexpert.org/expert/37412 -https://www.oceanexpert.org/institution/17409 -https://www.oceanexpert.org/institution/21586 -https://www.oceanexpert.org/expert/16717 -https://www.oceanexpert.org/expert/38271 -https://www.oceanexpert.org/expert/23709 -https://www.oceanexpert.org/institution/18039 -https://www.oceanexpert.org/expert/42769 -https://www.oceanexpert.org/event/809 -https://www.oceanexpert.org/institution/9375 -https://www.oceanexpert.org/expert/37084 -https://www.oceanexpert.org/institution/20121 -https://www.oceanexpert.org/expert/47181 -https://www.oceanexpert.org/expert/37631 -https://www.oceanexpert.org/institution/20581 -https://www.oceanexpert.org/event/161 -https://www.oceanexpert.org/expert/19654 -https://www.oceanexpert.org/institution/10178 -https://www.oceanexpert.org/expert/21298 -https://www.oceanexpert.org/expert/44130 -https://www.oceanexpert.org/expert/37058 -https://www.oceanexpert.org/expert/21087 -https://www.oceanexpert.org/expert/15960 -https://www.oceanexpert.org/expert/45931 -https://www.oceanexpert.org/expert/29172 -https://www.oceanexpert.org/event/1805 -https://www.oceanexpert.org/institution/12145 -https://www.oceanexpert.org/expert/39231 -https://www.oceanexpert.org/expert/6908 -https://www.oceanexpert.org/institution/18504 -https://www.oceanexpert.org/institution/11573 -https://www.oceanexpert.org/institution/5579 -https://www.oceanexpert.org/institution/18086 -https://www.oceanexpert.org/expert/27334 -https://www.oceanexpert.org/expert/19045 -https://www.oceanexpert.org/event/1410 -https://www.oceanexpert.org/expert/32704 -https://www.oceanexpert.org/expert/29537 -https://www.oceanexpert.org/expert/31121 -https://www.oceanexpert.org/expert/27482 -https://www.oceanexpert.org/expert/22218 -https://www.oceanexpert.org/event/1967 -https://www.oceanexpert.org/expert/547 -https://www.oceanexpert.org/expert/35027 -https://www.oceanexpert.org/institution/14199 -https://www.oceanexpert.org/expert/22964 -https://www.oceanexpert.org/expert/20251 -https://www.oceanexpert.org/expert/559 -https://www.oceanexpert.org/expert/16647 -https://www.oceanexpert.org/expert/26141 -https://www.oceanexpert.org/expert/19530 -https://www.oceanexpert.org/event/281 -https://www.oceanexpert.org/expert/34762 -https://www.oceanexpert.org/institution/21869 -https://www.oceanexpert.org/expert/14835 -https://www.oceanexpert.org/expert/47117 -https://www.oceanexpert.org/event/1457 -https://www.oceanexpert.org/expert/19872 -https://www.oceanexpert.org/expert/7200 -https://www.oceanexpert.org/expert/11641 -https://www.oceanexpert.org/event/797 -https://www.oceanexpert.org/expert/21137 -https://www.oceanexpert.org/expert/15610 -https://www.oceanexpert.org/institution/18830 -https://www.oceanexpert.org/expert/13253 -https://www.oceanexpert.org/expert/11498 -https://www.oceanexpert.org/expert/43750 -https://www.oceanexpert.org/expert/37288 -https://www.oceanexpert.org/expert/28029 -https://www.oceanexpert.org/institution/11688 -https://www.oceanexpert.org/institution/19258 -https://www.oceanexpert.org/event/980 -https://www.oceanexpert.org/event/2202 -https://www.oceanexpert.org/expert/44622 -https://www.oceanexpert.org/expert/11761 -https://www.oceanexpert.org/institution/19616 -https://www.oceanexpert.org/expert/13256 -https://www.oceanexpert.org/expert/16607 -https://www.oceanexpert.org/expert/39388 -https://www.oceanexpert.org/expert/18431 -https://www.oceanexpert.org/expert/45465 -https://www.oceanexpert.org/event/1717 -https://www.oceanexpert.org/expert/23654 -https://www.oceanexpert.org/expert/38904 -https://www.oceanexpert.org/expert/24003 -https://www.oceanexpert.org/expert/6802 -https://www.oceanexpert.org/expert/15693 -https://www.oceanexpert.org/institution/17767 -https://www.oceanexpert.org/expert/17922 -https://www.oceanexpert.org/expert/42438 -https://www.oceanexpert.org/expert/29630 -https://www.oceanexpert.org/institution/9744 -https://www.oceanexpert.org/expert/43149 -https://www.oceanexpert.org/expert/37249 -https://www.oceanexpert.org/expert/30059 -https://www.oceanexpert.org/expert/16763 -https://www.oceanexpert.org/expert/36671 -https://www.oceanexpert.org/institution/19192 -https://www.oceanexpert.org/expert/40659 -https://www.oceanexpert.org/institution/11146 -https://www.oceanexpert.org/event/1816 -https://www.oceanexpert.org/institution/12446 -https://www.oceanexpert.org/event/599 -https://www.oceanexpert.org/expert/48356 -https://www.oceanexpert.org/institution/10573 -https://www.oceanexpert.org/event/2537 -https://www.oceanexpert.org/institution/19030 -https://www.oceanexpert.org/expert/34925 -https://www.oceanexpert.org/expert/36661 -https://www.oceanexpert.org/expert/23935 -https://www.oceanexpert.org/expert/10848 -https://www.oceanexpert.org/institution/15802 -https://www.oceanexpert.org/expert/36525 -https://www.oceanexpert.org/event/2373 -https://www.oceanexpert.org/event/1042 -https://www.oceanexpert.org/expert/25395 -https://www.oceanexpert.org/event/2772 -https://www.oceanexpert.org/institution/15398 -https://www.oceanexpert.org/expert/25371 -https://www.oceanexpert.org/expert/30292 -https://www.oceanexpert.org/expert/16506 -https://www.oceanexpert.org/expert/36263 -https://www.oceanexpert.org/expert/1992 -https://www.oceanexpert.org/expert/45291 -https://www.oceanexpert.org/expert/48882 -https://www.oceanexpert.org/expert/29833 -https://www.oceanexpert.org/expert/32457 -https://www.oceanexpert.org/institution/12155 -https://www.oceanexpert.org/expert/29397 -https://www.oceanexpert.org/institution/17416 -https://www.oceanexpert.org/expert/48250 -https://www.oceanexpert.org/expert/45589 -https://www.oceanexpert.org/expert/33269 -https://www.oceanexpert.org/event/2140 -https://www.oceanexpert.org/expert/8250 -https://www.oceanexpert.org/institution/18318 -https://www.oceanexpert.org/expert/32875 -https://www.oceanexpert.org/institution/11802 -https://www.oceanexpert.org/event/2376 -https://www.oceanexpert.org/expert/14430 -https://www.oceanexpert.org/institution/20541 -https://www.oceanexpert.org/expert/11192 -https://www.oceanexpert.org/expert/48125 -https://www.oceanexpert.org/expert/48720 -https://www.oceanexpert.org/expert/16000 -https://www.oceanexpert.org/institution/20152 -https://www.oceanexpert.org/expert/11192 -https://www.oceanexpert.org/institution/19096 -https://www.oceanexpert.org/event/2005 -https://www.oceanexpert.org/institution/13549 -https://www.oceanexpert.org/expert/37980 -https://www.oceanexpert.org/institution/16235 -https://www.oceanexpert.org/event/1427 -https://www.oceanexpert.org/expert/21524 -https://www.oceanexpert.org/institution/13367 -https://www.oceanexpert.org/institution/8203 -https://www.oceanexpert.org/expert/42583 -https://www.oceanexpert.org/event/3185 -https://www.oceanexpert.org/expert/45789 -https://www.oceanexpert.org/institution/14908 -https://www.oceanexpert.org/expert/21898 -https://www.oceanexpert.org/expert/30530 -https://www.oceanexpert.org/expert/21957 -https://www.oceanexpert.org/event/2469 -https://www.oceanexpert.org/expert/43510 -https://www.oceanexpert.org/event/1469 -https://www.oceanexpert.org/institution/21529 -https://www.oceanexpert.org/expert/27363 -https://www.oceanexpert.org/event/1850 -https://www.oceanexpert.org/expert/35002 -https://www.oceanexpert.org/institution/15921 -https://www.oceanexpert.org/expert/35027 -https://www.oceanexpert.org/expert/20693 -https://www.oceanexpert.org/expert/46150 -https://www.oceanexpert.org/expert/36356 -https://www.oceanexpert.org/institution/18026 -https://www.oceanexpert.org/expert/18666 -https://www.oceanexpert.org/expert/38252 -https://www.oceanexpert.org/expert/26873 -https://www.oceanexpert.org/expert/33689 -https://www.oceanexpert.org/expert/12039 -https://www.oceanexpert.org/expert/45649 -https://www.oceanexpert.org/event/3020 -https://www.oceanexpert.org/institution/12021 -https://www.oceanexpert.org/institution/17032 -https://www.oceanexpert.org/institution/20301 -https://www.oceanexpert.org/expert/8329 -https://www.oceanexpert.org/expert/18266 -https://www.oceanexpert.org/expert/46440 -https://www.oceanexpert.org/expert/38593 -https://www.oceanexpert.org/institution/17954 -https://www.oceanexpert.org/institution/21280 -https://www.oceanexpert.org/expert/25040 -https://www.oceanexpert.org/expert/38901 -https://www.oceanexpert.org/expert/41425 -https://www.oceanexpert.org/expert/47297 -https://www.oceanexpert.org/expert/43094 -https://www.oceanexpert.org/expert/30978 -https://www.oceanexpert.org/event/2382 -https://www.oceanexpert.org/expert/29754 -https://www.oceanexpert.org/institution/10577 -https://www.oceanexpert.org/expert/37402 -https://www.oceanexpert.org/expert/18736 -https://www.oceanexpert.org/expert/25762 -https://www.oceanexpert.org/expert/35885 -https://www.oceanexpert.org/expert/5731 -https://www.oceanexpert.org/institution/21368 -https://www.oceanexpert.org/event/1781 -https://www.oceanexpert.org/expert/42449 -https://www.oceanexpert.org/expert/35261 -https://www.oceanexpert.org/expert/14175 -https://www.oceanexpert.org/expert/20004 -https://www.oceanexpert.org/event/1453 -https://www.oceanexpert.org/expert/6475 -https://www.oceanexpert.org/expert/48330 -https://www.oceanexpert.org/expert/35410 -https://www.oceanexpert.org/expert/25052 -https://www.oceanexpert.org/institution/12335 -https://www.oceanexpert.org/expert/28788 -https://www.oceanexpert.org/expert/37444 -https://www.oceanexpert.org/expert/35462 -https://www.oceanexpert.org/expert/37018 -https://www.oceanexpert.org/event/1736 -https://www.oceanexpert.org/expert/47814 -https://www.oceanexpert.org/expert/22572 -https://www.oceanexpert.org/expert/16328 -https://www.oceanexpert.org/expert/24829 -https://www.oceanexpert.org/institution/14030 -https://www.oceanexpert.org/expert/23594 -https://www.oceanexpert.org/expert/32274 -https://www.oceanexpert.org/event/2290 -https://www.oceanexpert.org/expert/48313 -https://www.oceanexpert.org/expert/35994 -https://www.oceanexpert.org/institution/6160 -https://www.oceanexpert.org/expert/37038 -https://www.oceanexpert.org/institution/18428 -https://www.oceanexpert.org/institution/12028 -https://www.oceanexpert.org/event/2605 -https://www.oceanexpert.org/expert/29225 -https://www.oceanexpert.org/institution/7991 -https://www.oceanexpert.org/expert/37349 -https://www.oceanexpert.org/expert/37156 -https://www.oceanexpert.org/expert/21680 -https://www.oceanexpert.org/expert/43561 -https://www.oceanexpert.org/event/266 -https://www.oceanexpert.org/expert/1962 -https://www.oceanexpert.org/expert/24226 -https://www.oceanexpert.org/expert/25135 -https://www.oceanexpert.org/expert/27052 -https://www.oceanexpert.org/expert/44541 -https://www.oceanexpert.org/expert/23117 -https://www.oceanexpert.org/expert/32210 -https://www.oceanexpert.org/expert/26997 -https://www.oceanexpert.org/expert/17143 -https://www.oceanexpert.org/institution/7488 -https://www.oceanexpert.org/expert/48659 -https://www.oceanexpert.org/institution/18986 -https://www.oceanexpert.org/expert/18174 -https://www.oceanexpert.org/institution/14593 -https://www.oceanexpert.org/expert/23282 -https://www.oceanexpert.org/expert/24496 -https://www.oceanexpert.org/expert/44833 -https://www.oceanexpert.org/institution/17960 -https://www.oceanexpert.org/institution/17978 -https://www.oceanexpert.org/expert/27650 -https://www.oceanexpert.org/expert/37813 -https://www.oceanexpert.org/expert/26220 -https://www.oceanexpert.org/expert/43403 -https://www.oceanexpert.org/expert/1272 -https://www.oceanexpert.org/expert/26936 -https://www.oceanexpert.org/expert/29368 -https://www.oceanexpert.org/expert/27410 -https://www.oceanexpert.org/expert/27224 -https://www.oceanexpert.org/expert/18844 -https://www.oceanexpert.org/expert/42557 -https://www.oceanexpert.org/institution/7676 -https://www.oceanexpert.org/expert/39290 -https://www.oceanexpert.org/expert/27272 -https://www.oceanexpert.org/expert/20236 -https://www.oceanexpert.org/expert/29493 -https://www.oceanexpert.org/event/260 -https://www.oceanexpert.org/institution/17370 -https://www.oceanexpert.org/event/2185 -https://www.oceanexpert.org/event/1376 -https://www.oceanexpert.org/event/2321 -https://www.oceanexpert.org/expert/18137 -https://www.oceanexpert.org/event/661 -https://www.oceanexpert.org/event/1151 -https://www.oceanexpert.org/expert/46021 -https://www.oceanexpert.org/institution/11007 -https://www.oceanexpert.org/expert/47753 -https://www.oceanexpert.org/expert/32191 -https://www.oceanexpert.org/expert/34571 -https://www.oceanexpert.org/institution/21595 -https://www.oceanexpert.org/expert/19495 -https://www.oceanexpert.org/expert/45479 -https://www.oceanexpert.org/expert/18709 -https://www.oceanexpert.org/expert/17533 -https://www.oceanexpert.org/expert/25444 -https://www.oceanexpert.org/expert/26942 -https://www.oceanexpert.org/expert/195 -https://www.oceanexpert.org/expert/738 -https://www.oceanexpert.org/expert/7489 -https://www.oceanexpert.org/institution/18851 -https://www.oceanexpert.org/expert/11578 -https://www.oceanexpert.org/expert/24368 -https://www.oceanexpert.org/expert/37443 -https://www.oceanexpert.org/institution/9776 -https://www.oceanexpert.org/event/1462 -https://www.oceanexpert.org/expert/35179 -https://www.oceanexpert.org/expert/31026 -https://www.oceanexpert.org/expert/31725 -https://www.oceanexpert.org/expert/26702 -https://www.oceanexpert.org/event/1952 -https://www.oceanexpert.org/expert/48029 -https://www.oceanexpert.org/expert/45541 -https://www.oceanexpert.org/expert/48499 -https://www.oceanexpert.org/expert/42859 -https://www.oceanexpert.org/expert/20699 -https://www.oceanexpert.org/expert/26004 -https://www.oceanexpert.org/expert/26289 -https://www.oceanexpert.org/expert/34478 -https://www.oceanexpert.org/expert/7423 -https://www.oceanexpert.org/expert/17629 -https://www.oceanexpert.org/expert/24618 -https://www.oceanexpert.org/institution/17797 -https://www.oceanexpert.org/expert/11265 -https://www.oceanexpert.org/expert/23416 -https://www.oceanexpert.org/expert/28273 -https://www.oceanexpert.org/expert/40396 -https://www.oceanexpert.org/institution/9570 -https://www.oceanexpert.org/institution/18842 -https://www.oceanexpert.org/institution/19069 -https://www.oceanexpert.org/expert/16657 -https://www.oceanexpert.org/institution/16058 -https://www.oceanexpert.org/expert/45672 -https://www.oceanexpert.org/event/268 -https://www.oceanexpert.org/expert/27430 -https://www.oceanexpert.org/expert/23549 -https://www.oceanexpert.org/expert/45558 -https://www.oceanexpert.org/institution/13768 -https://www.oceanexpert.org/expert/46206 -https://www.oceanexpert.org/expert/46468 -https://www.oceanexpert.org/expert/31877 -https://www.oceanexpert.org/expert/30036 -https://www.oceanexpert.org/institution/18683 -https://www.oceanexpert.org/expert/13287 -https://www.oceanexpert.org/institution/18276 -https://www.oceanexpert.org/expert/35331 -https://www.oceanexpert.org/expert/48290 -https://www.oceanexpert.org/event/114 -https://www.oceanexpert.org/institution/19317 -https://www.oceanexpert.org/event/1786 -https://www.oceanexpert.org/institution/18555 -https://www.oceanexpert.org/expert/44523 -https://www.oceanexpert.org/event/681 -https://www.oceanexpert.org/expert/17122 -https://www.oceanexpert.org/event/1561 -https://www.oceanexpert.org/expert/19955 -https://www.oceanexpert.org/expert/36049 -https://www.oceanexpert.org/expert/47504 -https://www.oceanexpert.org/expert/48369 -https://www.oceanexpert.org/institution/14728 -https://www.oceanexpert.org/expert/25162 -https://www.oceanexpert.org/expert/40299 -https://www.oceanexpert.org/institution/10324 -https://www.oceanexpert.org/expert/27019 -https://www.oceanexpert.org/institution/20653 -https://www.oceanexpert.org/expert/6378 -https://www.oceanexpert.org/event/2423 -https://www.oceanexpert.org/expert/25004 -https://www.oceanexpert.org/institution/7634 -https://www.oceanexpert.org/expert/44191 -https://www.oceanexpert.org/institution/20498 -https://www.oceanexpert.org/event/1832 -https://www.oceanexpert.org/expert/34791 -https://www.oceanexpert.org/expert/25489 -https://www.oceanexpert.org/expert/14705 -https://www.oceanexpert.org/expert/26638 -https://www.oceanexpert.org/expert/44653 -https://www.oceanexpert.org/expert/47844 -https://www.oceanexpert.org/expert/37236 -https://www.oceanexpert.org/institution/19642 -https://www.oceanexpert.org/institution/13727 -https://www.oceanexpert.org/institution/9192 -https://www.oceanexpert.org/expert/38227 -https://www.oceanexpert.org/expert/21448 -https://www.oceanexpert.org/expert/26542 -https://www.oceanexpert.org/expert/47603 -https://www.oceanexpert.org/institution/6142 -https://www.oceanexpert.org/expert/45109 -https://www.oceanexpert.org/expert/44935 -https://www.oceanexpert.org/expert/22659 -https://www.oceanexpert.org/expert/20097 -https://www.oceanexpert.org/institution/19441 -https://www.oceanexpert.org/expert/31218 -https://www.oceanexpert.org/expert/39035 -https://www.oceanexpert.org/expert/10383 -https://www.oceanexpert.org/expert/34678 -https://www.oceanexpert.org/expert/23289 -https://www.oceanexpert.org/institution/11533 -https://www.oceanexpert.org/event/509 -https://www.oceanexpert.org/expert/35817 -https://www.oceanexpert.org/expert/27678 -https://www.oceanexpert.org/expert/42896 -https://www.oceanexpert.org/expert/42690 -https://www.oceanexpert.org/event/463 -https://www.oceanexpert.org/institution/9130 -https://www.oceanexpert.org/institution/12498 -https://www.oceanexpert.org/expert/31364 -https://www.oceanexpert.org/institution/15568 -https://www.oceanexpert.org/event/1163 -https://www.oceanexpert.org/expert/37046 -https://www.oceanexpert.org/expert/44165 -https://www.oceanexpert.org/expert/25343 -https://www.oceanexpert.org/institution/20426 -https://www.oceanexpert.org/institution/11462 -https://www.oceanexpert.org/expert/33294 -https://www.oceanexpert.org/expert/37734 -https://www.oceanexpert.org/expert/22332 -https://www.oceanexpert.org/event/2733 -https://www.oceanexpert.org/institution/21384 -https://www.oceanexpert.org/event/2974 -https://www.oceanexpert.org/expert/38017 -https://www.oceanexpert.org/expert/39234 -https://www.oceanexpert.org/institution/17642 -https://www.oceanexpert.org/expert/27166 -https://www.oceanexpert.org/institution/21011 -https://www.oceanexpert.org/expert/23883 -https://www.oceanexpert.org/institution/18010 -https://www.oceanexpert.org/institution/20954 -https://www.oceanexpert.org/institution/14825 -https://www.oceanexpert.org/institution/10333 -https://www.oceanexpert.org/expert/17076 -https://www.oceanexpert.org/event/2318 -https://www.oceanexpert.org/expert/6928 -https://www.oceanexpert.org/expert/44655 -https://www.oceanexpert.org/expert/37191 -https://www.oceanexpert.org/expert/38434 -https://www.oceanexpert.org/institution/20903 -https://www.oceanexpert.org/institution/6271 -https://www.oceanexpert.org/institution/21389 -https://www.oceanexpert.org/expert/25892 -https://www.oceanexpert.org/expert/31419 -https://www.oceanexpert.org/institution/20889 -https://www.oceanexpert.org/institution/16158 -https://www.oceanexpert.org/institution/20015 -https://www.oceanexpert.org/expert/16152 -https://www.oceanexpert.org/institution/19006 -https://www.oceanexpert.org/expert/16083 -https://www.oceanexpert.org/expert/26785 -https://www.oceanexpert.org/expert/35600 -https://www.oceanexpert.org/expert/34904 -https://www.oceanexpert.org/expert/25036 -https://www.oceanexpert.org/expert/29278 -https://www.oceanexpert.org/expert/28351 -https://www.oceanexpert.org/expert/6660 -https://www.oceanexpert.org/expert/40636 -https://www.oceanexpert.org/institution/20223 -https://www.oceanexpert.org/expert/48301 -https://www.oceanexpert.org/expert/43828 -https://www.oceanexpert.org/institution/18481 -https://www.oceanexpert.org/expert/21696 -https://www.oceanexpert.org/expert/20948 -https://www.oceanexpert.org/expert/33704 -https://www.oceanexpert.org/expert/24705 -https://www.oceanexpert.org/institution/22125 -https://www.oceanexpert.org/expert/24057 -https://www.oceanexpert.org/expert/45715 -https://www.oceanexpert.org/expert/18031 -https://www.oceanexpert.org/expert/18347 -https://www.oceanexpert.org/expert/38476 -https://www.oceanexpert.org/expert/25808 -https://www.oceanexpert.org/expert/39162 -https://www.oceanexpert.org/expert/33262 -https://www.oceanexpert.org/expert/33438 -https://www.oceanexpert.org/expert/23245 -https://www.oceanexpert.org/institution/16416 -https://www.oceanexpert.org/expert/39059 -https://www.oceanexpert.org/institution/16788 -https://www.oceanexpert.org/event/2429 -https://www.oceanexpert.org/expert/46860 -https://www.oceanexpert.org/expert/12040 -https://www.oceanexpert.org/institution/18293 -https://www.oceanexpert.org/expert/6705 -https://www.oceanexpert.org/institution/7770 -https://www.oceanexpert.org/institution/14193 -https://www.oceanexpert.org/institution/18811 -https://www.oceanexpert.org/institution/21421 -https://www.oceanexpert.org/expert/48479 -https://www.oceanexpert.org/institution/21553 -https://www.oceanexpert.org/expert/44632 -https://www.oceanexpert.org/expert/48553 -https://www.oceanexpert.org/expert/22876 -https://www.oceanexpert.org/expert/26949 -https://www.oceanexpert.org/institution/15306 -https://www.oceanexpert.org/expert/37076 -https://www.oceanexpert.org/expert/7574 -https://www.oceanexpert.org/expert/11968 -https://www.oceanexpert.org/expert/47402 -https://www.oceanexpert.org/expert/45067 -https://www.oceanexpert.org/expert/36167 -https://www.oceanexpert.org/expert/45557 -https://www.oceanexpert.org/expert/1718 -https://www.oceanexpert.org/expert/20666 -https://www.oceanexpert.org/expert/13611 -https://www.oceanexpert.org/institution/20118 -https://www.oceanexpert.org/institution/14053 -https://www.oceanexpert.org/expert/41415 -https://www.oceanexpert.org/event/1346 -https://www.oceanexpert.org/expert/27529 -https://www.oceanexpert.org/expert/20523 -https://www.oceanexpert.org/expert/13853 -https://www.oceanexpert.org/expert/43092 -https://www.oceanexpert.org/institution/10803 -https://www.oceanexpert.org/institution/11740 -https://www.oceanexpert.org/institution/5644 -https://www.oceanexpert.org/institution/12989 -https://www.oceanexpert.org/event/2213 -https://www.oceanexpert.org/expert/47601 -https://www.oceanexpert.org/expert/18966 -https://www.oceanexpert.org/institution/13673 -https://www.oceanexpert.org/expert/44368 -https://www.oceanexpert.org/expert/45122 -https://www.oceanexpert.org/expert/47783 -https://www.oceanexpert.org/expert/48225 -https://www.oceanexpert.org/expert/18686 -https://www.oceanexpert.org/expert/11061 -https://www.oceanexpert.org/expert/24368 -https://www.oceanexpert.org/expert/44263 -https://www.oceanexpert.org/institution/11046 -https://www.oceanexpert.org/institution/20424 -https://www.oceanexpert.org/institution/4969 -https://www.oceanexpert.org/institution/4996 -https://www.oceanexpert.org/expert/28367 -https://www.oceanexpert.org/expert/34398 -https://www.oceanexpert.org/expert/45943 -https://www.oceanexpert.org/event/628 -https://www.oceanexpert.org/expert/37445 -https://www.oceanexpert.org/expert/32224 -https://www.oceanexpert.org/institution/15000 -https://www.oceanexpert.org/expert/18985 -https://www.oceanexpert.org/event/2770 -https://www.oceanexpert.org/institution/18411 -https://www.oceanexpert.org/expert/25141 -https://www.oceanexpert.org/expert/22897 -https://www.oceanexpert.org/expert/48014 -https://www.oceanexpert.org/institution/10143 -https://www.oceanexpert.org/expert/47854 -https://www.oceanexpert.org/expert/35073 -https://www.oceanexpert.org/expert/7031 -https://www.oceanexpert.org/institution/8162 -https://www.oceanexpert.org/expert/47489 -https://www.oceanexpert.org/institution/21723 -https://www.oceanexpert.org/expert/28485 -https://www.oceanexpert.org/expert/11249 -https://www.oceanexpert.org/event/2212 -https://www.oceanexpert.org/expert/24618 -https://www.oceanexpert.org/expert/34267 -https://www.oceanexpert.org/institution/15570 -https://www.oceanexpert.org/expert/1183 -https://www.oceanexpert.org/institution/20669 -https://www.oceanexpert.org/expert/11583 -https://www.oceanexpert.org/expert/24222 -https://www.oceanexpert.org/institution/13082 -https://www.oceanexpert.org/event/1427 -https://www.oceanexpert.org/expert/24838 -https://www.oceanexpert.org/institution/22003 -https://www.oceanexpert.org/expert/15892 -https://www.oceanexpert.org/institution/5944 -https://www.oceanexpert.org/expert/38059 -https://www.oceanexpert.org/expert/35478 -https://www.oceanexpert.org/expert/34310 -https://www.oceanexpert.org/expert/19193 -https://www.oceanexpert.org/institution/12227 -https://www.oceanexpert.org/expert/35611 -https://www.oceanexpert.org/expert/31061 -https://www.oceanexpert.org/institution/13157 -https://www.oceanexpert.org/expert/45495 -https://www.oceanexpert.org/expert/47048 -https://www.oceanexpert.org/institution/14607 -https://www.oceanexpert.org/institution/12455 -https://www.oceanexpert.org/expert/17928 -https://www.oceanexpert.org/expert/43140 -https://www.oceanexpert.org/expert/45601 -https://www.oceanexpert.org/expert/23519 -https://www.oceanexpert.org/expert/41045 -https://www.oceanexpert.org/expert/38010 -https://www.oceanexpert.org/expert/30750 -https://www.oceanexpert.org/institution/18972 -https://www.oceanexpert.org/institution/21580 -https://www.oceanexpert.org/institution/12150 -https://www.oceanexpert.org/expert/35013 -https://www.oceanexpert.org/institution/19300 -https://www.oceanexpert.org/expert/44683 -https://www.oceanexpert.org/expert/8578 -https://www.oceanexpert.org/expert/26303 -https://www.oceanexpert.org/institution/21634 -https://www.oceanexpert.org/event/472 -https://www.oceanexpert.org/expert/17292 -https://www.oceanexpert.org/event/2710 -https://www.oceanexpert.org/expert/38913 -https://www.oceanexpert.org/event/1687 -https://www.oceanexpert.org/expert/48045 -https://www.oceanexpert.org/expert/17936 -https://www.oceanexpert.org/institution/12593 -https://www.oceanexpert.org/expert/40056 -https://www.oceanexpert.org/expert/42515 -https://www.oceanexpert.org/event/2211 -https://www.oceanexpert.org/expert/36978 -https://www.oceanexpert.org/expert/6801 -https://www.oceanexpert.org/event/699 -https://www.oceanexpert.org/expert/19518 -https://www.oceanexpert.org/institution/21514 -https://www.oceanexpert.org/expert/33095 -https://www.oceanexpert.org/expert/46234 -https://www.oceanexpert.org/expert/47859 -https://www.oceanexpert.org/institution/18794 -https://www.oceanexpert.org/expert/43054 -https://www.oceanexpert.org/expert/42706 -https://www.oceanexpert.org/institution/13002 -https://www.oceanexpert.org/event/2877 -https://www.oceanexpert.org/expert/12715 -https://www.oceanexpert.org/expert/28441 -https://www.oceanexpert.org/expert/26110 -https://www.oceanexpert.org/expert/23742 -https://www.oceanexpert.org/expert/18147 -https://www.oceanexpert.org/expert/48123 -https://www.oceanexpert.org/expert/42208 -https://www.oceanexpert.org/event/75 -https://www.oceanexpert.org/expert/25055 -https://www.oceanexpert.org/event/972 -https://www.oceanexpert.org/expert/37797 -https://www.oceanexpert.org/expert/26828 -https://www.oceanexpert.org/expert/1964 -https://www.oceanexpert.org/expert/35952 -https://www.oceanexpert.org/institution/19154 -https://www.oceanexpert.org/expert/17429 -https://www.oceanexpert.org/expert/34330 -https://www.oceanexpert.org/expert/37198 -https://www.oceanexpert.org/expert/19864 -https://www.oceanexpert.org/institution/22002 -https://www.oceanexpert.org/expert/32283 -https://www.oceanexpert.org/expert/758 -https://www.oceanexpert.org/expert/36398 -https://www.oceanexpert.org/institution/10091 -https://www.oceanexpert.org/expert/47781 -https://www.oceanexpert.org/event/1908 -https://www.oceanexpert.org/expert/43019 -https://www.oceanexpert.org/expert/46377 -https://www.oceanexpert.org/expert/23900 -https://www.oceanexpert.org/expert/3969 -https://www.oceanexpert.org/expert/43226 -https://www.oceanexpert.org/expert/42941 -https://www.oceanexpert.org/expert/19935 -https://www.oceanexpert.org/institution/19509 -https://www.oceanexpert.org/expert/27395 -https://www.oceanexpert.org/expert/20118 -https://www.oceanexpert.org/expert/32702 -https://www.oceanexpert.org/expert/20286 -https://www.oceanexpert.org/expert/46480 -https://www.oceanexpert.org/event/865 -https://www.oceanexpert.org/expert/47305 -https://www.oceanexpert.org/expert/18484 -https://www.oceanexpert.org/institution/20688 -https://www.oceanexpert.org/expert/46242 -https://www.oceanexpert.org/institution/19360 -https://www.oceanexpert.org/institution/6509 -https://www.oceanexpert.org/expert/17927 -https://www.oceanexpert.org/expert/38121 -https://www.oceanexpert.org/institution/22183 -https://www.oceanexpert.org/expert/44942 -https://www.oceanexpert.org/expert/27484 -https://www.oceanexpert.org/event/1623 -https://www.oceanexpert.org/expert/18185 -https://www.oceanexpert.org/expert/40002 -https://www.oceanexpert.org/expert/39171 -https://www.oceanexpert.org/institution/18799 -https://www.oceanexpert.org/institution/13121 -https://www.oceanexpert.org/event/635 -https://www.oceanexpert.org/expert/46202 -https://www.oceanexpert.org/expert/28365 -https://www.oceanexpert.org/expert/2311 -https://www.oceanexpert.org/expert/22908 -https://www.oceanexpert.org/expert/20625 -https://www.oceanexpert.org/expert/46979 -https://www.oceanexpert.org/institution/11252 -https://www.oceanexpert.org/event/663 -https://www.oceanexpert.org/expert/33272 -https://www.oceanexpert.org/expert/38362 -https://www.oceanexpert.org/event/3167 -https://www.oceanexpert.org/institution/5247 -https://www.oceanexpert.org/expert/22270 -https://www.oceanexpert.org/institution/14198 -https://www.oceanexpert.org/expert/2142 -https://www.oceanexpert.org/expert/20117 -https://www.oceanexpert.org/expert/22497 -https://www.oceanexpert.org/expert/47358 -https://www.oceanexpert.org/institution/5244 -https://www.oceanexpert.org/expert/12007 -https://www.oceanexpert.org/expert/44540 -https://www.oceanexpert.org/expert/16152 -https://www.oceanexpert.org/expert/18190 -https://www.oceanexpert.org/institution/13545 -https://www.oceanexpert.org/expert/13215 -https://www.oceanexpert.org/event/582 -https://www.oceanexpert.org/expert/33293 -https://www.oceanexpert.org/expert/18340 -https://www.oceanexpert.org/expert/17071 -https://www.oceanexpert.org/expert/16593 -https://www.oceanexpert.org/expert/21257 -https://www.oceanexpert.org/expert/32809 -https://www.oceanexpert.org/event/651 -https://www.oceanexpert.org/expert/29529 -https://www.oceanexpert.org/expert/20757 -https://www.oceanexpert.org/institution/14489 -https://www.oceanexpert.org/expert/31882 -https://www.oceanexpert.org/event/2527 -https://www.oceanexpert.org/expert/27956 -https://www.oceanexpert.org/institution/20034 -https://www.oceanexpert.org/event/1597 -https://www.oceanexpert.org/expert/20950 -https://www.oceanexpert.org/expert/19191 -https://www.oceanexpert.org/expert/42503 -https://www.oceanexpert.org/expert/26896 -https://www.oceanexpert.org/expert/44893 -https://www.oceanexpert.org/expert/45697 -https://www.oceanexpert.org/institution/5374 -https://www.oceanexpert.org/expert/38061 -https://www.oceanexpert.org/expert/35434 -https://www.oceanexpert.org/expert/36654 -https://www.oceanexpert.org/expert/33543 -https://www.oceanexpert.org/event/808 -https://www.oceanexpert.org/institution/20955 -https://www.oceanexpert.org/expert/24698 -https://www.oceanexpert.org/expert/20919 -https://www.oceanexpert.org/expert/45448 -https://www.oceanexpert.org/expert/18198 -https://www.oceanexpert.org/expert/9059 -https://www.oceanexpert.org/institution/21225 -https://www.oceanexpert.org/institution/18671 -https://www.oceanexpert.org/expert/21739 -https://www.oceanexpert.org/institution/18756 -https://www.oceanexpert.org/institution/8338 -https://www.oceanexpert.org/expert/12938 -https://www.oceanexpert.org/institution/14329 -https://www.oceanexpert.org/expert/43549 -https://www.oceanexpert.org/expert/32393 -https://www.oceanexpert.org/expert/15754 -https://www.oceanexpert.org/expert/21039 -https://www.oceanexpert.org/institution/9119 -https://www.oceanexpert.org/expert/24050 -https://www.oceanexpert.org/expert/41259 -https://www.oceanexpert.org/institution/8631 -https://www.oceanexpert.org/expert/34375 -https://www.oceanexpert.org/expert/26308 -https://www.oceanexpert.org/institution/21765 -https://www.oceanexpert.org/expert/45334 -https://www.oceanexpert.org/expert/10847 -https://www.oceanexpert.org/institution/14393 -https://www.oceanexpert.org/expert/16840 -https://www.oceanexpert.org/institution/14723 -https://www.oceanexpert.org/expert/25459 -https://www.oceanexpert.org/institution/11680 -https://www.oceanexpert.org/expert/38334 -https://www.oceanexpert.org/expert/36104 -https://www.oceanexpert.org/expert/21704 -https://www.oceanexpert.org/event/345 -https://www.oceanexpert.org/expert/14653 -https://www.oceanexpert.org/expert/26156 -https://www.oceanexpert.org/institution/21736 -https://www.oceanexpert.org/expert/27060 -https://www.oceanexpert.org/event/1727 -https://www.oceanexpert.org/expert/27369 -https://www.oceanexpert.org/expert/2196 -https://www.oceanexpert.org/expert/32512 -https://www.oceanexpert.org/event/1492 -https://www.oceanexpert.org/institution/13129 -https://www.oceanexpert.org/expert/11104 -https://www.oceanexpert.org/expert/48995 -https://www.oceanexpert.org/expert/19519 -https://www.oceanexpert.org/expert/34136 -https://www.oceanexpert.org/expert/44700 -https://www.oceanexpert.org/institution/16429 -https://www.oceanexpert.org/expert/36563 -https://www.oceanexpert.org/expert/21810 -https://www.oceanexpert.org/expert/46749 -https://www.oceanexpert.org/expert/35948 -https://www.oceanexpert.org/institution/14687 -https://www.oceanexpert.org/expert/42413 -https://www.oceanexpert.org/event/127 -https://www.oceanexpert.org/expert/17721 -https://www.oceanexpert.org/expert/33511 -https://www.oceanexpert.org/expert/35837 -https://www.oceanexpert.org/event/2520 -https://www.oceanexpert.org/institution/15121 -https://www.oceanexpert.org/institution/15688 -https://www.oceanexpert.org/event/2597 -https://www.oceanexpert.org/expert/32453 -https://www.oceanexpert.org/institution/21388 -https://www.oceanexpert.org/institution/20871 -https://www.oceanexpert.org/event/3279 -https://www.oceanexpert.org/expert/37631 -https://www.oceanexpert.org/expert/1756 -https://www.oceanexpert.org/institution/19048 -https://www.oceanexpert.org/expert/35289 -https://www.oceanexpert.org/expert/45412 -https://www.oceanexpert.org/expert/29380 -https://www.oceanexpert.org/expert/37519 -https://www.oceanexpert.org/expert/18197 -https://www.oceanexpert.org/institution/14875 -https://www.oceanexpert.org/expert/27514 -https://www.oceanexpert.org/institution/5168 -https://www.oceanexpert.org/institution/11528 -https://www.oceanexpert.org/expert/29371 -https://www.oceanexpert.org/institution/6834 -https://www.oceanexpert.org/institution/20378 -https://www.oceanexpert.org/institution/22140 -https://www.oceanexpert.org/institution/19853 -https://www.oceanexpert.org/expert/46980 -https://www.oceanexpert.org/expert/42828 -https://www.oceanexpert.org/institution/6102 -https://www.oceanexpert.org/expert/36154 -https://www.oceanexpert.org/institution/19676 -https://www.oceanexpert.org/event/2986 -https://www.oceanexpert.org/expert/46535 -https://www.oceanexpert.org/expert/36623 -https://www.oceanexpert.org/institution/18749 -https://www.oceanexpert.org/expert/2629 -https://www.oceanexpert.org/expert/26403 -https://www.oceanexpert.org/institution/18266 -https://www.oceanexpert.org/expert/16676 -https://www.oceanexpert.org/expert/26707 -https://www.oceanexpert.org/expert/12378 -https://www.oceanexpert.org/expert/18399 -https://www.oceanexpert.org/expert/43675 -https://www.oceanexpert.org/expert/31089 -https://www.oceanexpert.org/expert/22531 -https://www.oceanexpert.org/expert/30967 -https://www.oceanexpert.org/expert/45603 -https://www.oceanexpert.org/expert/38128 -https://www.oceanexpert.org/expert/36732 -https://www.oceanexpert.org/expert/38518 -https://www.oceanexpert.org/expert/44462 -https://www.oceanexpert.org/expert/15489 -https://www.oceanexpert.org/expert/14903 -https://www.oceanexpert.org/expert/44649 -https://www.oceanexpert.org/expert/44319 -https://www.oceanexpert.org/institution/12978 -https://www.oceanexpert.org/expert/44433 -https://www.oceanexpert.org/institution/10510 -https://www.oceanexpert.org/institution/22094 -https://www.oceanexpert.org/expert/20817 -https://www.oceanexpert.org/expert/31621 -https://www.oceanexpert.org/expert/24068 -https://www.oceanexpert.org/institution/18126 -https://www.oceanexpert.org/event/2409 -https://www.oceanexpert.org/expert/3487 -https://www.oceanexpert.org/institution/17910 -https://www.oceanexpert.org/expert/27892 -https://www.oceanexpert.org/expert/23782 -https://www.oceanexpert.org/expert/27156 -https://www.oceanexpert.org/expert/23785 -https://www.oceanexpert.org/institution/18866 -https://www.oceanexpert.org/expert/45532 -https://www.oceanexpert.org/expert/34467 -https://www.oceanexpert.org/expert/19191 -https://www.oceanexpert.org/expert/16045 -https://www.oceanexpert.org/institution/21730 -https://www.oceanexpert.org/institution/13485 -https://www.oceanexpert.org/expert/27104 -https://www.oceanexpert.org/expert/21060 -https://www.oceanexpert.org/institution/15066 -https://www.oceanexpert.org/expert/46626 -https://www.oceanexpert.org/expert/21815 -https://www.oceanexpert.org/expert/19788 -https://www.oceanexpert.org/expert/43067 -https://www.oceanexpert.org/institution/10272 -https://www.oceanexpert.org/expert/26772 -https://www.oceanexpert.org/expert/46684 -https://www.oceanexpert.org/expert/45366 -https://www.oceanexpert.org/expert/36572 -https://www.oceanexpert.org/expert/43344 -https://www.oceanexpert.org/event/1302 -https://www.oceanexpert.org/expert/26637 -https://www.oceanexpert.org/expert/42908 -https://www.oceanexpert.org/institution/14004 -https://www.oceanexpert.org/expert/6776 -https://www.oceanexpert.org/expert/7785 -https://www.oceanexpert.org/expert/17913 -https://www.oceanexpert.org/institution/21971 -https://www.oceanexpert.org/event/2010 -https://www.oceanexpert.org/expert/11713 -https://www.oceanexpert.org/expert/43161 -https://www.oceanexpert.org/expert/28435 -https://www.oceanexpert.org/expert/16323 -https://www.oceanexpert.org/expert/2202 -https://www.oceanexpert.org/institution/18736 -https://www.oceanexpert.org/expert/34879 -https://www.oceanexpert.org/expert/25335 -https://www.oceanexpert.org/event/2992 -https://www.oceanexpert.org/expert/23535 -https://www.oceanexpert.org/expert/30488 -https://www.oceanexpert.org/expert/37992 -https://www.oceanexpert.org/expert/27395 -https://www.oceanexpert.org/institution/18608 -https://www.oceanexpert.org/institution/19387 -https://www.oceanexpert.org/expert/47053 -https://www.oceanexpert.org/institution/19576 -https://www.oceanexpert.org/expert/46211 -https://www.oceanexpert.org/expert/2134 -https://www.oceanexpert.org/expert/33463 -https://www.oceanexpert.org/institution/13684 -https://www.oceanexpert.org/expert/34986 -https://www.oceanexpert.org/expert/13886 -https://www.oceanexpert.org/expert/40672 -https://www.oceanexpert.org/expert/35290 -https://www.oceanexpert.org/expert/14422 -https://www.oceanexpert.org/expert/44142 -https://www.oceanexpert.org/institution/13083 -https://www.oceanexpert.org/expert/37989 -https://www.oceanexpert.org/institution/20508 -https://www.oceanexpert.org/expert/8437 -https://www.oceanexpert.org/expert/33806 -https://www.oceanexpert.org/expert/17318 -https://www.oceanexpert.org/expert/26683 -https://www.oceanexpert.org/expert/14102 -https://www.oceanexpert.org/expert/19276 -https://www.oceanexpert.org/expert/33115 -https://www.oceanexpert.org/event/565 -https://www.oceanexpert.org/expert/16733 -https://www.oceanexpert.org/expert/20586 -https://www.oceanexpert.org/institution/12715 -https://www.oceanexpert.org/expert/41921 -https://www.oceanexpert.org/expert/44243 -https://www.oceanexpert.org/institution/15222 -https://www.oceanexpert.org/event/249 -https://www.oceanexpert.org/expert/39331 -https://www.oceanexpert.org/institution/19277 -https://www.oceanexpert.org/expert/12267 -https://www.oceanexpert.org/expert/45665 -https://www.oceanexpert.org/expert/17931 -https://www.oceanexpert.org/expert/26521 -https://www.oceanexpert.org/event/2924 -https://www.oceanexpert.org/institution/11034 -https://www.oceanexpert.org/expert/1522 -https://www.oceanexpert.org/institution/20646 -https://www.oceanexpert.org/expert/27999 -https://www.oceanexpert.org/expert/36124 -https://www.oceanexpert.org/expert/31162 -https://www.oceanexpert.org/expert/911 -https://www.oceanexpert.org/expert/25667 -https://www.oceanexpert.org/institution/17797 -https://www.oceanexpert.org/institution/11756 -https://www.oceanexpert.org/expert/24374 -https://www.oceanexpert.org/expert/44114 -https://www.oceanexpert.org/expert/37812 -https://www.oceanexpert.org/expert/17268 -https://www.oceanexpert.org/expert/48993 -https://www.oceanexpert.org/institution/19191 -https://www.oceanexpert.org/event/1026 -https://www.oceanexpert.org/expert/35064 -https://www.oceanexpert.org/expert/35769 -https://www.oceanexpert.org/institution/20779 -https://www.oceanexpert.org/expert/29714 -https://www.oceanexpert.org/event/2077 -https://www.oceanexpert.org/institution/14193 -https://www.oceanexpert.org/expert/43155 -https://www.oceanexpert.org/expert/2236 -https://www.oceanexpert.org/expert/17202 -https://www.oceanexpert.org/expert/45918 -https://www.oceanexpert.org/expert/18656 -https://www.oceanexpert.org/expert/43524 -https://www.oceanexpert.org/expert/23692 -https://www.oceanexpert.org/institution/21574 -https://www.oceanexpert.org/expert/26064 -https://www.oceanexpert.org/expert/22422 -https://www.oceanexpert.org/institution/13187 -https://www.oceanexpert.org/expert/34445 -https://www.oceanexpert.org/expert/280 -https://www.oceanexpert.org/expert/39322 -https://www.oceanexpert.org/event/1271 -https://www.oceanexpert.org/expert/19049 -https://www.oceanexpert.org/expert/36741 -https://www.oceanexpert.org/institution/21069 -https://www.oceanexpert.org/expert/10046 -https://www.oceanexpert.org/expert/25851 -https://www.oceanexpert.org/expert/46953 -https://www.oceanexpert.org/expert/21866 -https://www.oceanexpert.org/institution/21567 -https://www.oceanexpert.org/expert/48384 -https://www.oceanexpert.org/expert/7935 -https://www.oceanexpert.org/institution/18758 -https://www.oceanexpert.org/expert/28258 -https://www.oceanexpert.org/institution/12090 -https://www.oceanexpert.org/expert/30452 -https://www.oceanexpert.org/expert/19619 -https://www.oceanexpert.org/event/1142 -https://www.oceanexpert.org/expert/46225 -https://www.oceanexpert.org/institution/18787 -https://www.oceanexpert.org/expert/26621 -https://www.oceanexpert.org/expert/19600 -https://www.oceanexpert.org/institution/6142 -https://www.oceanexpert.org/expert/48876 -https://www.oceanexpert.org/event/64 -https://www.oceanexpert.org/institution/19409 -https://www.oceanexpert.org/expert/7569 -https://www.oceanexpert.org/expert/33205 -https://www.oceanexpert.org/expert/28100 -https://www.oceanexpert.org/expert/15659 -https://www.oceanexpert.org/expert/46728 -https://www.oceanexpert.org/institution/18096 -https://www.oceanexpert.org/expert/11777 -https://www.oceanexpert.org/expert/43045 -https://www.oceanexpert.org/expert/48036 -https://www.oceanexpert.org/expert/14503 -https://www.oceanexpert.org/expert/27320 -https://www.oceanexpert.org/expert/26475 -https://www.oceanexpert.org/expert/38014 -https://www.oceanexpert.org/expert/23317 -https://www.oceanexpert.org/expert/36696 -https://www.oceanexpert.org/expert/36267 -https://www.oceanexpert.org/event/2452 -https://www.oceanexpert.org/expert/23629 -https://www.oceanexpert.org/expert/22024 -https://www.oceanexpert.org/expert/15474 -https://www.oceanexpert.org/expert/7725 -https://www.oceanexpert.org/expert/43391 -https://www.oceanexpert.org/expert/18235 -https://www.oceanexpert.org/institution/20873 -https://www.oceanexpert.org/institution/19511 -https://www.oceanexpert.org/expert/44594 -https://www.oceanexpert.org/expert/45067 -https://www.oceanexpert.org/expert/25273 -https://www.oceanexpert.org/expert/19999 -https://www.oceanexpert.org/expert/34637 -https://www.oceanexpert.org/expert/34972 -https://www.oceanexpert.org/expert/24228 -https://www.oceanexpert.org/event/2757 -https://www.oceanexpert.org/event/2567 -https://www.oceanexpert.org/expert/13574 -https://www.oceanexpert.org/expert/23588 -https://www.oceanexpert.org/institution/16918 -https://www.oceanexpert.org/institution/12438 -https://www.oceanexpert.org/expert/34903 -https://www.oceanexpert.org/expert/21029 -https://www.oceanexpert.org/expert/46596 -https://www.oceanexpert.org/institution/19246 -https://www.oceanexpert.org/institution/18003 -https://www.oceanexpert.org/event/2168 -https://www.oceanexpert.org/institution/15603 -https://www.oceanexpert.org/institution/12742 -https://www.oceanexpert.org/expert/29787 -https://www.oceanexpert.org/expert/24562 -https://www.oceanexpert.org/expert/34886 -https://www.oceanexpert.org/institution/19748 -https://www.oceanexpert.org/expert/33467 -https://www.oceanexpert.org/expert/18476 -https://www.oceanexpert.org/institution/18696 -https://www.oceanexpert.org/institution/15416 -https://www.oceanexpert.org/expert/48663 -https://www.oceanexpert.org/expert/32446 -https://www.oceanexpert.org/expert/24554 -https://www.oceanexpert.org/institution/18700 -https://www.oceanexpert.org/institution/5995 -https://www.oceanexpert.org/expert/25842 -https://www.oceanexpert.org/expert/27744 -https://www.oceanexpert.org/expert/32476 -https://www.oceanexpert.org/expert/24570 -https://www.oceanexpert.org/expert/46044 -https://www.oceanexpert.org/institution/18652 -https://www.oceanexpert.org/institution/21834 -https://www.oceanexpert.org/expert/47421 -https://www.oceanexpert.org/institution/7541 -https://www.oceanexpert.org/expert/161 -https://www.oceanexpert.org/expert/24274 -https://www.oceanexpert.org/institution/19380 -https://www.oceanexpert.org/expert/18287 -https://www.oceanexpert.org/institution/17095 -https://www.oceanexpert.org/expert/21777 -https://www.oceanexpert.org/expert/19119 -https://www.oceanexpert.org/event/3160 -https://www.oceanexpert.org/institution/21813 -https://www.oceanexpert.org/event/209 -https://www.oceanexpert.org/expert/45665 -https://www.oceanexpert.org/expert/9310 -https://www.oceanexpert.org/institution/17903 -https://www.oceanexpert.org/expert/46360 -https://www.oceanexpert.org/institution/20901 -https://www.oceanexpert.org/event/1814 -https://www.oceanexpert.org/expert/35657 -https://www.oceanexpert.org/expert/22671 -https://www.oceanexpert.org/expert/27171 -https://www.oceanexpert.org/expert/44835 -https://www.oceanexpert.org/event/1407 -https://www.oceanexpert.org/expert/3777 -https://www.oceanexpert.org/expert/30543 -https://www.oceanexpert.org/event/1795 -https://www.oceanexpert.org/expert/44984 -https://www.oceanexpert.org/expert/34848 -https://www.oceanexpert.org/expert/45064 -https://www.oceanexpert.org/expert/33988 -https://www.oceanexpert.org/event/2876 -https://www.oceanexpert.org/expert/29893 -https://www.oceanexpert.org/expert/46808 -https://www.oceanexpert.org/institution/5942 -https://www.oceanexpert.org/institution/20091 -https://www.oceanexpert.org/institution/19074 -https://www.oceanexpert.org/expert/32955 -https://www.oceanexpert.org/expert/25568 -https://www.oceanexpert.org/expert/44659 -https://www.oceanexpert.org/expert/9160 -https://www.oceanexpert.org/expert/44802 -https://www.oceanexpert.org/expert/20958 -https://www.oceanexpert.org/institution/14002 -https://www.oceanexpert.org/expert/11041 -https://www.oceanexpert.org/expert/32517 -https://www.oceanexpert.org/expert/23084 -https://www.oceanexpert.org/institution/19617 -https://www.oceanexpert.org/expert/44103 -https://www.oceanexpert.org/institution/18960 -https://www.oceanexpert.org/institution/16823 -https://www.oceanexpert.org/expert/39137 -https://www.oceanexpert.org/event/3091 -https://www.oceanexpert.org/expert/14344 -https://www.oceanexpert.org/expert/22429 -https://www.oceanexpert.org/expert/19873 -https://www.oceanexpert.org/expert/44773 -https://www.oceanexpert.org/institution/15601 -https://www.oceanexpert.org/expert/17574 -https://www.oceanexpert.org/expert/22236 -https://www.oceanexpert.org/expert/35319 -https://www.oceanexpert.org/expert/25081 -https://www.oceanexpert.org/institution/21102 -https://www.oceanexpert.org/expert/22094 -https://www.oceanexpert.org/expert/25386 -https://www.oceanexpert.org/institution/10874 -https://www.oceanexpert.org/expert/43928 -https://www.oceanexpert.org/expert/23583 -https://www.oceanexpert.org/event/320 -https://www.oceanexpert.org/institution/10347 -https://www.oceanexpert.org/expert/25596 -https://www.oceanexpert.org/expert/1528 -https://www.oceanexpert.org/event/697 -https://www.oceanexpert.org/expert/22563 -https://www.oceanexpert.org/event/2450 -https://www.oceanexpert.org/expert/34445 -https://www.oceanexpert.org/expert/30772 -https://www.oceanexpert.org/institution/18911 -https://www.oceanexpert.org/expert/23964 -https://www.oceanexpert.org/expert/32188 -https://www.oceanexpert.org/expert/12870 -https://www.oceanexpert.org/institution/18339 -https://www.oceanexpert.org/institution/16297 -https://www.oceanexpert.org/expert/12241 -https://www.oceanexpert.org/expert/1183 -https://www.oceanexpert.org/expert/25957 -https://www.oceanexpert.org/expert/24252 -https://www.oceanexpert.org/institution/19059 -https://www.oceanexpert.org/expert/43326 -https://www.oceanexpert.org/expert/27047 -https://www.oceanexpert.org/expert/26800 -https://www.oceanexpert.org/institution/18563 -https://www.oceanexpert.org/expert/38381 -https://www.oceanexpert.org/expert/24437 -https://www.oceanexpert.org/expert/12151 -https://www.oceanexpert.org/expert/21203 -https://www.oceanexpert.org/expert/38419 -https://www.oceanexpert.org/institution/21546 -https://www.oceanexpert.org/expert/25567 -https://www.oceanexpert.org/expert/37384 -https://www.oceanexpert.org/event/1699 -https://www.oceanexpert.org/expert/43650 -https://www.oceanexpert.org/event/2374 -https://www.oceanexpert.org/expert/28346 -https://www.oceanexpert.org/institution/15685 -https://www.oceanexpert.org/expert/45008 -https://www.oceanexpert.org/expert/7315 -https://www.oceanexpert.org/expert/25196 -https://www.oceanexpert.org/expert/26768 -https://www.oceanexpert.org/expert/32822 -https://www.oceanexpert.org/expert/37135 -https://www.oceanexpert.org/expert/20232 -https://www.oceanexpert.org/institution/19803 -https://www.oceanexpert.org/institution/18496 -https://www.oceanexpert.org/event/430 -https://www.oceanexpert.org/expert/11249 -https://www.oceanexpert.org/expert/25262 -https://www.oceanexpert.org/institution/11518 -https://www.oceanexpert.org/institution/17435 -https://www.oceanexpert.org/expert/32704 -https://www.oceanexpert.org/expert/37898 -https://www.oceanexpert.org/event/166 -https://www.oceanexpert.org/event/1753 -https://www.oceanexpert.org/expert/28210 -https://www.oceanexpert.org/event/1799 -https://www.oceanexpert.org/expert/21483 -https://www.oceanexpert.org/institution/18405 -https://www.oceanexpert.org/institution/15330 -https://www.oceanexpert.org/expert/18218 -https://www.oceanexpert.org/expert/48685 -https://www.oceanexpert.org/expert/45572 -https://www.oceanexpert.org/institution/21774 -https://www.oceanexpert.org/expert/35755 -https://www.oceanexpert.org/institution/15192 -https://www.oceanexpert.org/expert/15854 -https://www.oceanexpert.org/expert/44177 -https://www.oceanexpert.org/expert/45649 -https://www.oceanexpert.org/expert/26807 -https://www.oceanexpert.org/event/1365 -https://www.oceanexpert.org/institution/7790 -https://www.oceanexpert.org/institution/6124 -https://www.oceanexpert.org/expert/7160 -https://www.oceanexpert.org/event/1184 -https://www.oceanexpert.org/event/127 -https://www.oceanexpert.org/institution/18263 -https://www.oceanexpert.org/expert/46673 -https://www.oceanexpert.org/expert/17959 -https://www.oceanexpert.org/event/1950 -https://www.oceanexpert.org/expert/47391 -https://www.oceanexpert.org/institution/18054 -https://www.oceanexpert.org/expert/12778 -https://www.oceanexpert.org/expert/23763 -https://www.oceanexpert.org/expert/35170 -https://www.oceanexpert.org/expert/43931 -https://www.oceanexpert.org/expert/25704 -https://www.oceanexpert.org/expert/36703 -https://www.oceanexpert.org/event/884 -https://www.oceanexpert.org/expert/27083 -https://www.oceanexpert.org/institution/14358 -https://www.oceanexpert.org/expert/48268 -https://www.oceanexpert.org/expert/48577 -https://www.oceanexpert.org/expert/21296 -https://www.oceanexpert.org/expert/20409 -https://www.oceanexpert.org/institution/17712 -https://www.oceanexpert.org/expert/48961 -https://www.oceanexpert.org/expert/31337 -https://www.oceanexpert.org/expert/47739 -https://www.oceanexpert.org/expert/17100 -https://www.oceanexpert.org/expert/2710 -https://www.oceanexpert.org/institution/13532 -https://www.oceanexpert.org/expert/16681 -https://www.oceanexpert.org/expert/10988 -https://www.oceanexpert.org/expert/36001 -https://www.oceanexpert.org/expert/42859 -https://www.oceanexpert.org/expert/13224 -https://www.oceanexpert.org/event/1706 -https://www.oceanexpert.org/institution/19426 -https://www.oceanexpert.org/institution/16267 -https://www.oceanexpert.org/expert/14277 -https://www.oceanexpert.org/expert/37922 -https://www.oceanexpert.org/expert/22775 -https://www.oceanexpert.org/expert/37910 -https://www.oceanexpert.org/expert/45151 -https://www.oceanexpert.org/expert/7000 -https://www.oceanexpert.org/expert/26597 -https://www.oceanexpert.org/expert/44016 -https://www.oceanexpert.org/expert/32511 -https://www.oceanexpert.org/institution/17775 -https://www.oceanexpert.org/expert/40977 -https://www.oceanexpert.org/institution/19633 -https://www.oceanexpert.org/expert/26298 -https://www.oceanexpert.org/expert/23235 -https://www.oceanexpert.org/institution/18940 -https://www.oceanexpert.org/institution/12249 -https://www.oceanexpert.org/expert/25700 -https://www.oceanexpert.org/expert/35475 -https://www.oceanexpert.org/expert/47965 -https://www.oceanexpert.org/expert/14254 -https://www.oceanexpert.org/institution/14516 -https://www.oceanexpert.org/expert/110 -https://www.oceanexpert.org/expert/21825 -https://www.oceanexpert.org/expert/46380 -https://www.oceanexpert.org/expert/39672 -https://www.oceanexpert.org/expert/23040 -https://www.oceanexpert.org/expert/12315 -https://www.oceanexpert.org/institution/18827 -https://www.oceanexpert.org/expert/33086 -https://www.oceanexpert.org/institution/5111 -https://www.oceanexpert.org/expert/14430 -https://www.oceanexpert.org/institution/12017 -https://www.oceanexpert.org/expert/26976 -https://www.oceanexpert.org/expert/48462 -https://www.oceanexpert.org/event/1890 -https://www.oceanexpert.org/expert/36781 -https://www.oceanexpert.org/expert/33999 -https://www.oceanexpert.org/expert/33387 -https://www.oceanexpert.org/expert/30561 -https://www.oceanexpert.org/expert/33795 -https://www.oceanexpert.org/expert/13255 -https://www.oceanexpert.org/expert/19477 -https://www.oceanexpert.org/institution/9570 -https://www.oceanexpert.org/expert/29569 -https://www.oceanexpert.org/event/1149 -https://www.oceanexpert.org/expert/37925 -https://www.oceanexpert.org/institution/13493 -https://www.oceanexpert.org/expert/29710 -https://www.oceanexpert.org/expert/40587 -https://www.oceanexpert.org/expert/22814 -https://www.oceanexpert.org/expert/22277 -https://www.oceanexpert.org/expert/3525 -https://www.oceanexpert.org/institution/19233 -https://www.oceanexpert.org/expert/35423 -https://www.oceanexpert.org/expert/17813 -https://www.oceanexpert.org/institution/15672 -https://www.oceanexpert.org/expert/19716 -https://www.oceanexpert.org/institution/19570 -https://www.oceanexpert.org/expert/33056 -https://www.oceanexpert.org/institution/7492 -https://www.oceanexpert.org/event/3079 -https://www.oceanexpert.org/expert/46862 -https://www.oceanexpert.org/expert/33806 -https://www.oceanexpert.org/expert/20793 -https://www.oceanexpert.org/expert/6656 -https://www.oceanexpert.org/expert/27908 -https://www.oceanexpert.org/expert/18310 -https://www.oceanexpert.org/institution/19432 -https://www.oceanexpert.org/expert/17421 -https://www.oceanexpert.org/expert/47754 -https://www.oceanexpert.org/institution/22064 -https://www.oceanexpert.org/event/3259 -https://www.oceanexpert.org/expert/288 -https://www.oceanexpert.org/event/153 -https://www.oceanexpert.org/institution/13806 -https://www.oceanexpert.org/expert/17136 -https://www.oceanexpert.org/expert/46838 -https://www.oceanexpert.org/institution/21212 -https://www.oceanexpert.org/institution/20356 -https://www.oceanexpert.org/expert/26470 -https://www.oceanexpert.org/institution/18241 -https://www.oceanexpert.org/expert/45048 -https://www.oceanexpert.org/expert/43376 -https://www.oceanexpert.org/institution/11132 -https://www.oceanexpert.org/institution/11309 -https://www.oceanexpert.org/expert/32766 -https://www.oceanexpert.org/expert/42887 -https://www.oceanexpert.org/event/1334 -https://www.oceanexpert.org/institution/18958 -https://www.oceanexpert.org/expert/34310 -https://www.oceanexpert.org/expert/28368 -https://www.oceanexpert.org/expert/30291 -https://www.oceanexpert.org/expert/19925 -https://www.oceanexpert.org/institution/12001 -https://www.oceanexpert.org/expert/22186 -https://www.oceanexpert.org/event/2918 -https://www.oceanexpert.org/expert/26549 -https://www.oceanexpert.org/institution/10864 -https://www.oceanexpert.org/expert/42412 -https://www.oceanexpert.org/expert/20206 -https://www.oceanexpert.org/expert/37328 -https://www.oceanexpert.org/expert/39276 -https://www.oceanexpert.org/expert/16806 -https://www.oceanexpert.org/institution/14395 -https://www.oceanexpert.org/expert/20009 -https://www.oceanexpert.org/institution/5053 -https://www.oceanexpert.org/expert/34940 -https://www.oceanexpert.org/institution/20979 -https://www.oceanexpert.org/expert/35650 -https://www.oceanexpert.org/institution/18712 -https://www.oceanexpert.org/institution/9574 -https://www.oceanexpert.org/institution/12455 -https://www.oceanexpert.org/expert/19571 -https://www.oceanexpert.org/expert/18240 -https://www.oceanexpert.org/institution/4889 -https://www.oceanexpert.org/expert/34433 -https://www.oceanexpert.org/expert/27050 -https://www.oceanexpert.org/institution/17506 -https://www.oceanexpert.org/expert/43296 -https://www.oceanexpert.org/expert/27679 -https://www.oceanexpert.org/event/2706 -https://www.oceanexpert.org/expert/48900 -https://www.oceanexpert.org/institution/15792 -https://www.oceanexpert.org/event/578 -https://www.oceanexpert.org/institution/15179 -https://www.oceanexpert.org/expert/46114 -https://www.oceanexpert.org/institution/21199 -https://www.oceanexpert.org/expert/23656 -https://www.oceanexpert.org/expert/45656 -https://www.oceanexpert.org/institution/21695 -https://www.oceanexpert.org/institution/20217 -https://www.oceanexpert.org/expert/30311 -https://www.oceanexpert.org/institution/20397 -https://www.oceanexpert.org/expert/22035 -https://www.oceanexpert.org/institution/21404 -https://www.oceanexpert.org/expert/24326 -https://www.oceanexpert.org/event/429 -https://www.oceanexpert.org/institution/8113 -https://www.oceanexpert.org/expert/26744 -https://www.oceanexpert.org/expert/17305 -https://www.oceanexpert.org/expert/33748 -https://www.oceanexpert.org/institution/12666 -https://www.oceanexpert.org/expert/22664 -https://www.oceanexpert.org/institution/18556 -https://www.oceanexpert.org/expert/22576 -https://www.oceanexpert.org/institution/14192 -https://www.oceanexpert.org/expert/48374 -https://www.oceanexpert.org/institution/20466 -https://www.oceanexpert.org/institution/12058 -https://www.oceanexpert.org/expert/25385 -https://www.oceanexpert.org/expert/14632 -https://www.oceanexpert.org/event/1174 -https://www.oceanexpert.org/institution/7559 -https://www.oceanexpert.org/expert/23099 -https://www.oceanexpert.org/institution/21541 -https://www.oceanexpert.org/expert/22032 -https://www.oceanexpert.org/expert/22277 -https://www.oceanexpert.org/expert/36539 -https://www.oceanexpert.org/expert/44044 -https://www.oceanexpert.org/institution/13084 -https://www.oceanexpert.org/expert/47392 -https://www.oceanexpert.org/event/824 -https://www.oceanexpert.org/event/2425 -https://www.oceanexpert.org/expert/15298 -https://www.oceanexpert.org/expert/26483 -https://www.oceanexpert.org/expert/1434 -https://www.oceanexpert.org/institution/18377 -https://www.oceanexpert.org/institution/21569 -https://www.oceanexpert.org/expert/47401 -https://www.oceanexpert.org/expert/47230 -https://www.oceanexpert.org/expert/13451 -https://www.oceanexpert.org/institution/15064 -https://www.oceanexpert.org/expert/43762 -https://www.oceanexpert.org/institution/11377 -https://www.oceanexpert.org/institution/14803 -https://www.oceanexpert.org/expert/41993 -https://www.oceanexpert.org/institution/18767 -https://www.oceanexpert.org/expert/15123 -https://www.oceanexpert.org/expert/4523 -https://www.oceanexpert.org/institution/16392 -https://www.oceanexpert.org/expert/48477 -https://www.oceanexpert.org/institution/17184 -https://www.oceanexpert.org/event/2829 -https://www.oceanexpert.org/expert/19427 -https://www.oceanexpert.org/expert/25735 -https://www.oceanexpert.org/institution/15867 -https://www.oceanexpert.org/expert/46380 -https://www.oceanexpert.org/expert/29844 -https://www.oceanexpert.org/expert/23298 -https://www.oceanexpert.org/institution/18142 -https://www.oceanexpert.org/expert/30932 -https://www.oceanexpert.org/expert/35106 -https://www.oceanexpert.org/institution/19358 -https://www.oceanexpert.org/expert/4384 -https://www.oceanexpert.org/expert/30556 -https://www.oceanexpert.org/expert/47602 -https://www.oceanexpert.org/institution/7532 -https://www.oceanexpert.org/expert/47510 -https://www.oceanexpert.org/expert/20364 -https://www.oceanexpert.org/expert/28121 -https://www.oceanexpert.org/expert/27409 -https://www.oceanexpert.org/expert/21170 -https://www.oceanexpert.org/expert/11335 -https://www.oceanexpert.org/institution/13491 -https://www.oceanexpert.org/expert/44833 -https://www.oceanexpert.org/expert/1867 -https://www.oceanexpert.org/institution/15250 -https://www.oceanexpert.org/expert/26104 -https://www.oceanexpert.org/institution/13208 -https://www.oceanexpert.org/institution/5637 -https://www.oceanexpert.org/expert/47128 -https://www.oceanexpert.org/expert/28203 -https://www.oceanexpert.org/expert/12152 -https://www.oceanexpert.org/expert/30574 -https://www.oceanexpert.org/expert/44071 -https://www.oceanexpert.org/expert/34591 -https://www.oceanexpert.org/expert/47989 -https://www.oceanexpert.org/institution/21798 -https://www.oceanexpert.org/expert/26099 -https://www.oceanexpert.org/institution/20706 -https://www.oceanexpert.org/expert/27114 -https://www.oceanexpert.org/institution/19181 -https://www.oceanexpert.org/institution/8666 -https://www.oceanexpert.org/expert/36463 -https://www.oceanexpert.org/expert/14765 -https://www.oceanexpert.org/institution/10428 -https://www.oceanexpert.org/expert/29058 -https://www.oceanexpert.org/institution/18243 -https://www.oceanexpert.org/institution/21807 -https://www.oceanexpert.org/expert/8270 -https://www.oceanexpert.org/expert/22285 -https://www.oceanexpert.org/expert/43465 -https://www.oceanexpert.org/institution/21756 -https://www.oceanexpert.org/expert/3958 -https://www.oceanexpert.org/institution/20283 -https://www.oceanexpert.org/expert/28109 -https://www.oceanexpert.org/expert/38052 -https://www.oceanexpert.org/expert/39288 -https://www.oceanexpert.org/expert/16611 -https://www.oceanexpert.org/expert/19320 -https://www.oceanexpert.org/institution/21381 -https://www.oceanexpert.org/expert/23989 -https://www.oceanexpert.org/expert/13831 -https://www.oceanexpert.org/institution/13842 -https://www.oceanexpert.org/expert/38217 -https://www.oceanexpert.org/expert/24044 -https://www.oceanexpert.org/institution/20964 -https://www.oceanexpert.org/expert/45339 -https://www.oceanexpert.org/institution/22011 -https://www.oceanexpert.org/institution/8994 -https://www.oceanexpert.org/institution/11660 -https://www.oceanexpert.org/institution/19178 -https://www.oceanexpert.org/expert/37845 -https://www.oceanexpert.org/expert/31164 -https://www.oceanexpert.org/event/2976 -https://www.oceanexpert.org/institution/11493 -https://www.oceanexpert.org/expert/43622 -https://www.oceanexpert.org/expert/6813 -https://www.oceanexpert.org/expert/30090 -https://www.oceanexpert.org/expert/30782 -https://www.oceanexpert.org/expert/43972 -https://www.oceanexpert.org/event/3096 -https://www.oceanexpert.org/event/2806 -https://www.oceanexpert.org/institution/21102 -https://www.oceanexpert.org/expert/687 -https://www.oceanexpert.org/expert/4618 -https://www.oceanexpert.org/expert/29775 -https://www.oceanexpert.org/event/2324 -https://www.oceanexpert.org/institution/11459 -https://www.oceanexpert.org/event/2388 -https://www.oceanexpert.org/expert/25265 -https://www.oceanexpert.org/expert/983 -https://www.oceanexpert.org/expert/23912 -https://www.oceanexpert.org/institution/10514 -https://www.oceanexpert.org/event/1417 -https://www.oceanexpert.org/expert/15306 -https://www.oceanexpert.org/institution/19626 -https://www.oceanexpert.org/expert/11453 -https://www.oceanexpert.org/expert/24107 -https://www.oceanexpert.org/institution/20365 -https://www.oceanexpert.org/expert/13248 -https://www.oceanexpert.org/event/2995 -https://www.oceanexpert.org/expert/20839 -https://www.oceanexpert.org/institution/21347 -https://www.oceanexpert.org/expert/47123 -https://www.oceanexpert.org/event/3060 -https://www.oceanexpert.org/institution/10968 -https://www.oceanexpert.org/expert/33235 -https://www.oceanexpert.org/expert/42938 -https://www.oceanexpert.org/expert/2388 -https://www.oceanexpert.org/expert/38367 -https://www.oceanexpert.org/event/858 -https://www.oceanexpert.org/expert/17444 -https://www.oceanexpert.org/expert/22057 -https://www.oceanexpert.org/expert/547 -https://www.oceanexpert.org/expert/30525 -https://www.oceanexpert.org/institution/19723 -https://www.oceanexpert.org/institution/5868 -https://www.oceanexpert.org/institution/21507 -https://www.oceanexpert.org/expert/31914 -https://www.oceanexpert.org/expert/14924 -https://www.oceanexpert.org/expert/35457 -https://www.oceanexpert.org/expert/23387 -https://www.oceanexpert.org/expert/35650 -https://www.oceanexpert.org/expert/16290 -https://www.oceanexpert.org/expert/17256 -https://www.oceanexpert.org/institution/21343 -https://www.oceanexpert.org/institution/12668 -https://www.oceanexpert.org/expert/29439 -https://www.oceanexpert.org/expert/36262 -https://www.oceanexpert.org/expert/14705 -https://www.oceanexpert.org/institution/17615 -https://www.oceanexpert.org/expert/40588 -https://www.oceanexpert.org/expert/35579 -https://www.oceanexpert.org/expert/45475 -https://www.oceanexpert.org/expert/27228 -https://www.oceanexpert.org/expert/13256 -https://www.oceanexpert.org/institution/20181 -https://www.oceanexpert.org/expert/30680 -https://www.oceanexpert.org/event/1525 -https://www.oceanexpert.org/institution/20909 -https://www.oceanexpert.org/expert/47243 -https://www.oceanexpert.org/institution/8921 -https://www.oceanexpert.org/expert/20878 -https://www.oceanexpert.org/event/1429 -https://www.oceanexpert.org/expert/7831 -https://www.oceanexpert.org/expert/29913 -https://www.oceanexpert.org/expert/12088 -https://www.oceanexpert.org/expert/29740 -https://www.oceanexpert.org/expert/45925 -https://www.oceanexpert.org/institution/12455 -https://www.oceanexpert.org/institution/15567 -https://www.oceanexpert.org/expert/48721 -https://www.oceanexpert.org/event/207 -https://www.oceanexpert.org/expert/38655 -https://www.oceanexpert.org/expert/24111 -https://www.oceanexpert.org/institution/20926 -https://www.oceanexpert.org/expert/36358 -https://www.oceanexpert.org/institution/11082 -https://www.oceanexpert.org/institution/12597 -https://www.oceanexpert.org/expert/21566 -https://www.oceanexpert.org/expert/22657 -https://www.oceanexpert.org/event/3 -https://www.oceanexpert.org/expert/25206 -https://www.oceanexpert.org/institution/18271 -https://www.oceanexpert.org/expert/44863 -https://www.oceanexpert.org/expert/43437 -https://www.oceanexpert.org/expert/33351 -https://www.oceanexpert.org/institution/20640 -https://www.oceanexpert.org/institution/19176 -https://www.oceanexpert.org/expert/32122 -https://www.oceanexpert.org/expert/35997 -https://www.oceanexpert.org/expert/20123 -https://www.oceanexpert.org/institution/7201 -https://www.oceanexpert.org/expert/23084 -https://www.oceanexpert.org/expert/25861 -https://www.oceanexpert.org/institution/13222 -https://www.oceanexpert.org/institution/19790 -https://www.oceanexpert.org/institution/20126 -https://www.oceanexpert.org/institution/10582 -https://www.oceanexpert.org/expert/46360 -https://www.oceanexpert.org/institution/6360 -https://www.oceanexpert.org/expert/27760 -https://www.oceanexpert.org/expert/24005 -https://www.oceanexpert.org/expert/40123 -https://www.oceanexpert.org/institution/8681 -https://www.oceanexpert.org/expert/40260 -https://www.oceanexpert.org/institution/17857 -https://www.oceanexpert.org/institution/14822 -https://www.oceanexpert.org/expert/8662 -https://www.oceanexpert.org/institution/18042 -https://www.oceanexpert.org/institution/18123 -https://www.oceanexpert.org/institution/21769 -https://www.oceanexpert.org/expert/45656 -https://www.oceanexpert.org/institution/18291 -https://www.oceanexpert.org/expert/18478 -https://www.oceanexpert.org/expert/32510 -https://www.oceanexpert.org/expert/28188 -https://www.oceanexpert.org/institution/18512 -https://www.oceanexpert.org/institution/19068 -https://www.oceanexpert.org/expert/14534 -https://www.oceanexpert.org/expert/29120 -https://www.oceanexpert.org/institution/19278 -https://www.oceanexpert.org/expert/26880 -https://www.oceanexpert.org/expert/45446 -https://www.oceanexpert.org/institution/5525 -https://www.oceanexpert.org/expert/13159 -https://www.oceanexpert.org/institution/6334 -https://www.oceanexpert.org/expert/12775 -https://www.oceanexpert.org/expert/19656 -https://www.oceanexpert.org/expert/44109 -https://www.oceanexpert.org/expert/26443 -https://www.oceanexpert.org/expert/20261 -https://www.oceanexpert.org/expert/49027 -https://www.oceanexpert.org/expert/48199 -https://www.oceanexpert.org/institution/12837 -https://www.oceanexpert.org/expert/30120 -https://www.oceanexpert.org/expert/20587 -https://www.oceanexpert.org/expert/1067 -https://www.oceanexpert.org/event/1619 -https://www.oceanexpert.org/institution/19097 -https://www.oceanexpert.org/expert/44548 -https://www.oceanexpert.org/institution/5014 -https://www.oceanexpert.org/expert/35308 -https://www.oceanexpert.org/event/2994 -https://www.oceanexpert.org/expert/24476 -https://www.oceanexpert.org/institution/20476 -https://www.oceanexpert.org/expert/20331 -https://www.oceanexpert.org/expert/8695 -https://www.oceanexpert.org/institution/11651 -https://www.oceanexpert.org/expert/36533 -https://www.oceanexpert.org/institution/9337 -https://www.oceanexpert.org/expert/24526 -https://www.oceanexpert.org/institution/14366 -https://www.oceanexpert.org/expert/12179 -https://www.oceanexpert.org/institution/18858 -https://www.oceanexpert.org/expert/27157 -https://www.oceanexpert.org/institution/10106 -https://www.oceanexpert.org/expert/25701 -https://www.oceanexpert.org/expert/46803 -https://www.oceanexpert.org/expert/40566 -https://www.oceanexpert.org/event/1709 -https://www.oceanexpert.org/institution/20094 -https://www.oceanexpert.org/expert/26588 -https://www.oceanexpert.org/expert/11749 -https://www.oceanexpert.org/event/1152 -https://www.oceanexpert.org/expert/34468 -https://www.oceanexpert.org/event/3042 -https://www.oceanexpert.org/expert/26575 -https://www.oceanexpert.org/expert/23410 -https://www.oceanexpert.org/event/326 -https://www.oceanexpert.org/expert/29382 -https://www.oceanexpert.org/expert/37134 -https://www.oceanexpert.org/expert/44213 -https://www.oceanexpert.org/institution/19035 -https://www.oceanexpert.org/expert/44989 -https://www.oceanexpert.org/institution/21099 -https://www.oceanexpert.org/expert/45664 -https://www.oceanexpert.org/institution/20257 -https://www.oceanexpert.org/expert/14199 -https://www.oceanexpert.org/institution/19857 -https://www.oceanexpert.org/expert/45457 -https://www.oceanexpert.org/event/1713 -https://www.oceanexpert.org/expert/29834 -https://www.oceanexpert.org/expert/16571 -https://www.oceanexpert.org/expert/38205 -https://www.oceanexpert.org/expert/44683 -https://www.oceanexpert.org/expert/27980 -https://www.oceanexpert.org/institution/6451 -https://www.oceanexpert.org/institution/18527 -https://www.oceanexpert.org/event/3004 -https://www.oceanexpert.org/expert/24330 -https://www.oceanexpert.org/expert/23629 -https://www.oceanexpert.org/expert/19242 -https://www.oceanexpert.org/institution/15763 -https://www.oceanexpert.org/expert/46253 -https://www.oceanexpert.org/event/229 -https://www.oceanexpert.org/expert/15982 -https://www.oceanexpert.org/expert/5102 -https://www.oceanexpert.org/institution/14178 -https://www.oceanexpert.org/institution/10054 -https://www.oceanexpert.org/expert/20809 -https://www.oceanexpert.org/expert/38162 -https://www.oceanexpert.org/expert/25381 -https://www.oceanexpert.org/expert/46682 -https://www.oceanexpert.org/expert/16555 -https://www.oceanexpert.org/expert/19263 -https://www.oceanexpert.org/expert/21139 -https://www.oceanexpert.org/expert/34854 -https://www.oceanexpert.org/expert/16859 -https://www.oceanexpert.org/expert/37922 -https://www.oceanexpert.org/expert/17229 -https://www.oceanexpert.org/event/1419 -https://www.oceanexpert.org/expert/47743 -https://www.oceanexpert.org/expert/42896 -https://www.oceanexpert.org/expert/8001 -https://www.oceanexpert.org/expert/12012 -https://www.oceanexpert.org/institution/20991 -https://www.oceanexpert.org/expert/30814 -https://www.oceanexpert.org/expert/20686 -https://www.oceanexpert.org/expert/25004 -https://www.oceanexpert.org/expert/26452 -https://www.oceanexpert.org/expert/43402 -https://www.oceanexpert.org/institution/16077 -https://www.oceanexpert.org/institution/6824 -https://www.oceanexpert.org/expert/9389 -https://www.oceanexpert.org/institution/14112 -https://www.oceanexpert.org/expert/32173 -https://www.oceanexpert.org/expert/44460 -https://www.oceanexpert.org/expert/19883 -https://www.oceanexpert.org/expert/16861 -https://www.oceanexpert.org/expert/44022 -https://www.oceanexpert.org/expert/18905 -https://www.oceanexpert.org/institution/21864 -https://www.oceanexpert.org/institution/12641 -https://www.oceanexpert.org/expert/31005 -https://www.oceanexpert.org/expert/31353 -https://www.oceanexpert.org/expert/36840 -https://www.oceanexpert.org/event/228 -https://www.oceanexpert.org/expert/20990 -https://www.oceanexpert.org/institution/5176 -https://www.oceanexpert.org/event/1106 -https://www.oceanexpert.org/institution/5404 -https://www.oceanexpert.org/expert/44059 -https://www.oceanexpert.org/event/1828 -https://www.oceanexpert.org/expert/30811 -https://www.oceanexpert.org/expert/37447 -https://www.oceanexpert.org/institution/21583 -https://www.oceanexpert.org/expert/29112 -https://www.oceanexpert.org/expert/39255 -https://www.oceanexpert.org/expert/32494 -https://www.oceanexpert.org/institution/5193 -https://www.oceanexpert.org/expert/12175 -https://www.oceanexpert.org/expert/32489 -https://www.oceanexpert.org/institution/12152 -https://www.oceanexpert.org/expert/41443 -https://www.oceanexpert.org/institution/13193 -https://www.oceanexpert.org/expert/14070 -https://www.oceanexpert.org/expert/43343 -https://www.oceanexpert.org/expert/43291 -https://www.oceanexpert.org/expert/21971 -https://www.oceanexpert.org/expert/24638 -https://www.oceanexpert.org/expert/7694 -https://www.oceanexpert.org/expert/36030 -https://www.oceanexpert.org/expert/32746 -https://www.oceanexpert.org/expert/30824 -https://www.oceanexpert.org/event/1560 -https://www.oceanexpert.org/expert/30110 -https://www.oceanexpert.org/institution/20848 -https://www.oceanexpert.org/event/2895 -https://www.oceanexpert.org/institution/20095 -https://www.oceanexpert.org/institution/17514 -https://www.oceanexpert.org/institution/8227 -https://www.oceanexpert.org/expert/20520 -https://www.oceanexpert.org/expert/30645 -https://www.oceanexpert.org/event/441 -https://www.oceanexpert.org/expert/26233 -https://www.oceanexpert.org/expert/38172 -https://www.oceanexpert.org/event/2903 -https://www.oceanexpert.org/expert/40620 -https://www.oceanexpert.org/expert/48151 -https://www.oceanexpert.org/event/1759 -https://www.oceanexpert.org/expert/16381 -https://www.oceanexpert.org/expert/45474 -https://www.oceanexpert.org/expert/21987 -https://www.oceanexpert.org/institution/10759 -https://www.oceanexpert.org/event/529 -https://www.oceanexpert.org/expert/47798 -https://www.oceanexpert.org/event/689 -https://www.oceanexpert.org/expert/46927 -https://www.oceanexpert.org/institution/5467 -https://www.oceanexpert.org/expert/19005 -https://www.oceanexpert.org/expert/25007 -https://www.oceanexpert.org/expert/47092 -https://www.oceanexpert.org/expert/23844 -https://www.oceanexpert.org/expert/13130 -https://www.oceanexpert.org/expert/4317 -https://www.oceanexpert.org/expert/36114 -https://www.oceanexpert.org/expert/21316 -https://www.oceanexpert.org/expert/18994 -https://www.oceanexpert.org/expert/12254 -https://www.oceanexpert.org/expert/30930 -https://www.oceanexpert.org/expert/34922 -https://www.oceanexpert.org/expert/23556 -https://www.oceanexpert.org/expert/33355 -https://www.oceanexpert.org/expert/45468 -https://www.oceanexpert.org/expert/1234 -https://www.oceanexpert.org/expert/35204 -https://www.oceanexpert.org/expert/34648 -https://www.oceanexpert.org/expert/44222 -https://www.oceanexpert.org/institution/13402 -https://www.oceanexpert.org/institution/11377 -https://www.oceanexpert.org/expert/37505 -https://www.oceanexpert.org/expert/24055 -https://www.oceanexpert.org/institution/19811 -https://www.oceanexpert.org/institution/13969 -https://www.oceanexpert.org/institution/11285 -https://www.oceanexpert.org/expert/36656 -https://www.oceanexpert.org/expert/46312 -https://www.oceanexpert.org/expert/39214 -https://www.oceanexpert.org/expert/34663 -https://www.oceanexpert.org/expert/14891 -https://www.oceanexpert.org/expert/46284 -https://www.oceanexpert.org/expert/35903 -https://www.oceanexpert.org/expert/46574 -https://www.oceanexpert.org/event/1280 -https://www.oceanexpert.org/expert/48097 -https://www.oceanexpert.org/institution/20143 -https://www.oceanexpert.org/expert/31572 -https://www.oceanexpert.org/institution/14493 -https://www.oceanexpert.org/expert/12437 -https://www.oceanexpert.org/expert/22787 -https://www.oceanexpert.org/institution/21159 -https://www.oceanexpert.org/event/1402 -https://www.oceanexpert.org/expert/23074 -https://www.oceanexpert.org/institution/14950 -https://www.oceanexpert.org/expert/7782 -https://www.oceanexpert.org/expert/31980 -https://www.oceanexpert.org/expert/20421 -https://www.oceanexpert.org/institution/18299 -https://www.oceanexpert.org/expert/25436 -https://www.oceanexpert.org/expert/22992 -https://www.oceanexpert.org/expert/25786 -https://www.oceanexpert.org/expert/16609 -https://www.oceanexpert.org/institution/19624 -https://www.oceanexpert.org/institution/12186 -https://www.oceanexpert.org/expert/27355 -https://www.oceanexpert.org/expert/22725 -https://www.oceanexpert.org/event/1542 -https://www.oceanexpert.org/expert/36449 -https://www.oceanexpert.org/institution/20324 -https://www.oceanexpert.org/expert/19619 -https://www.oceanexpert.org/event/1097 -https://www.oceanexpert.org/expert/43045 -https://www.oceanexpert.org/event/1799 -https://www.oceanexpert.org/expert/48268 -https://www.oceanexpert.org/institution/9038 -https://www.oceanexpert.org/expert/21464 -https://www.oceanexpert.org/expert/23622 -https://www.oceanexpert.org/expert/45131 -https://www.oceanexpert.org/institution/11614 -https://www.oceanexpert.org/expert/27107 -https://www.oceanexpert.org/expert/13276 -https://www.oceanexpert.org/institution/6547 -https://www.oceanexpert.org/expert/37424 -https://www.oceanexpert.org/expert/16693 -https://www.oceanexpert.org/expert/17242 -https://www.oceanexpert.org/institution/12122 -https://www.oceanexpert.org/event/2624 -https://www.oceanexpert.org/expert/47361 -https://www.oceanexpert.org/institution/19731 -https://www.oceanexpert.org/expert/37104 -https://www.oceanexpert.org/expert/18823 -https://www.oceanexpert.org/institution/19380 -https://www.oceanexpert.org/event/2967 -https://www.oceanexpert.org/institution/21639 -https://www.oceanexpert.org/expert/13500 -https://www.oceanexpert.org/institution/13277 -https://www.oceanexpert.org/expert/48766 -https://www.oceanexpert.org/institution/6334 -https://www.oceanexpert.org/expert/43008 -https://www.oceanexpert.org/institution/7723 -https://www.oceanexpert.org/expert/1299 -https://www.oceanexpert.org/event/334 -https://www.oceanexpert.org/institution/11408 -https://www.oceanexpert.org/expert/27422 -https://www.oceanexpert.org/expert/27521 -https://www.oceanexpert.org/expert/46990 -https://www.oceanexpert.org/institution/15825 -https://www.oceanexpert.org/institution/11067 -https://www.oceanexpert.org/institution/18716 -https://www.oceanexpert.org/expert/36903 -https://www.oceanexpert.org/expert/26301 -https://www.oceanexpert.org/expert/23907 -https://www.oceanexpert.org/institution/17283 -https://www.oceanexpert.org/institution/22047 -https://www.oceanexpert.org/expert/21764 -https://www.oceanexpert.org/expert/29594 -https://www.oceanexpert.org/institution/17036 -https://www.oceanexpert.org/institution/10237 -https://www.oceanexpert.org/expert/40333 -https://www.oceanexpert.org/expert/39225 -https://www.oceanexpert.org/expert/44095 -https://www.oceanexpert.org/institution/21933 -https://www.oceanexpert.org/expert/7172 -https://www.oceanexpert.org/expert/36579 -https://www.oceanexpert.org/expert/44191 -https://www.oceanexpert.org/expert/1317 -https://www.oceanexpert.org/institution/22064 -https://www.oceanexpert.org/institution/21402 -https://www.oceanexpert.org/institution/17829 -https://www.oceanexpert.org/institution/20091 -https://www.oceanexpert.org/institution/17437 -https://www.oceanexpert.org/expert/48777 -https://www.oceanexpert.org/institution/13120 -https://www.oceanexpert.org/expert/24598 -https://www.oceanexpert.org/expert/16913 -https://www.oceanexpert.org/expert/22413 -https://www.oceanexpert.org/expert/15346 -https://www.oceanexpert.org/institution/18002 -https://www.oceanexpert.org/institution/13272 -https://www.oceanexpert.org/institution/21020 -https://www.oceanexpert.org/expert/42926 -https://www.oceanexpert.org/institution/15275 -https://www.oceanexpert.org/expert/47053 -https://www.oceanexpert.org/expert/43131 -https://www.oceanexpert.org/institution/5582 -https://www.oceanexpert.org/expert/16858 -https://www.oceanexpert.org/expert/11243 -https://www.oceanexpert.org/institution/11644 -https://www.oceanexpert.org/institution/14409 -https://www.oceanexpert.org/event/353 -https://www.oceanexpert.org/expert/35521 -https://www.oceanexpert.org/expert/47258 -https://www.oceanexpert.org/event/1409 -https://www.oceanexpert.org/institution/22154 -https://www.oceanexpert.org/institution/22142 -https://www.oceanexpert.org/expert/40258 -https://www.oceanexpert.org/expert/24857 -https://www.oceanexpert.org/expert/8887 -https://www.oceanexpert.org/institution/17046 -https://www.oceanexpert.org/institution/21083 -https://www.oceanexpert.org/expert/18977 -https://www.oceanexpert.org/expert/46940 -https://www.oceanexpert.org/event/3042 -https://www.oceanexpert.org/expert/20287 -https://www.oceanexpert.org/expert/36660 -https://www.oceanexpert.org/expert/44909 -https://www.oceanexpert.org/expert/34626 -https://www.oceanexpert.org/expert/36858 -https://www.oceanexpert.org/expert/21031 -https://www.oceanexpert.org/institution/19242 -https://www.oceanexpert.org/institution/18248 -https://www.oceanexpert.org/expert/42986 -https://www.oceanexpert.org/expert/48709 -https://www.oceanexpert.org/expert/29721 -https://www.oceanexpert.org/expert/43998 -https://www.oceanexpert.org/institution/21309 -https://www.oceanexpert.org/institution/18159 -https://www.oceanexpert.org/expert/45562 -https://www.oceanexpert.org/expert/45048 -https://www.oceanexpert.org/expert/31907 -https://www.oceanexpert.org/event/2972 -https://www.oceanexpert.org/expert/35728 -https://www.oceanexpert.org/expert/19484 -https://www.oceanexpert.org/expert/1685 -https://www.oceanexpert.org/expert/25786 -https://www.oceanexpert.org/expert/5592 -https://www.oceanexpert.org/expert/36697 -https://www.oceanexpert.org/institution/18560 -https://www.oceanexpert.org/expert/16486 -https://www.oceanexpert.org/institution/20835 -https://www.oceanexpert.org/event/1490 -https://www.oceanexpert.org/expert/33289 -https://www.oceanexpert.org/expert/29697 -https://www.oceanexpert.org/expert/4482 -https://www.oceanexpert.org/expert/21124 -https://www.oceanexpert.org/expert/37200 -https://www.oceanexpert.org/expert/27625 -https://www.oceanexpert.org/expert/29909 -https://www.oceanexpert.org/institution/21417 -https://www.oceanexpert.org/expert/38821 -https://www.oceanexpert.org/institution/21346 -https://www.oceanexpert.org/event/1556 -https://www.oceanexpert.org/expert/35064 -https://www.oceanexpert.org/event/277 -https://www.oceanexpert.org/institution/13714 -https://www.oceanexpert.org/expert/17334 -https://www.oceanexpert.org/expert/18480 -https://www.oceanexpert.org/institution/10978 -https://www.oceanexpert.org/expert/26711 -https://www.oceanexpert.org/expert/44583 -https://www.oceanexpert.org/event/595 -https://www.oceanexpert.org/expert/34036 -https://www.oceanexpert.org/institution/21235 -https://www.oceanexpert.org/expert/36498 -https://www.oceanexpert.org/expert/27762 -https://www.oceanexpert.org/institution/18905 -https://www.oceanexpert.org/expert/18241 -https://www.oceanexpert.org/institution/12963 -https://www.oceanexpert.org/expert/18398 -https://www.oceanexpert.org/expert/26067 -https://www.oceanexpert.org/expert/23184 -https://www.oceanexpert.org/expert/24280 -https://www.oceanexpert.org/expert/4190 -https://www.oceanexpert.org/expert/28341 -https://www.oceanexpert.org/expert/9148 -https://www.oceanexpert.org/event/2245 -https://www.oceanexpert.org/institution/19317 -https://www.oceanexpert.org/institution/18134 -https://www.oceanexpert.org/expert/24642 -https://www.oceanexpert.org/expert/14658 -https://www.oceanexpert.org/expert/40043 -https://www.oceanexpert.org/expert/42503 -https://www.oceanexpert.org/expert/15791 -https://www.oceanexpert.org/expert/18278 -https://www.oceanexpert.org/expert/16042 -https://www.oceanexpert.org/institution/22165 -https://www.oceanexpert.org/expert/19720 -https://www.oceanexpert.org/event/615 -https://www.oceanexpert.org/expert/23187 -https://www.oceanexpert.org/event/294 -https://www.oceanexpert.org/expert/48024 -https://www.oceanexpert.org/expert/26708 -https://www.oceanexpert.org/expert/43590 -https://www.oceanexpert.org/expert/35926 -https://www.oceanexpert.org/expert/44108 -https://www.oceanexpert.org/expert/21990 -https://www.oceanexpert.org/expert/8706 -https://www.oceanexpert.org/expert/32136 -https://www.oceanexpert.org/institution/19115 -https://www.oceanexpert.org/institution/7764 -https://www.oceanexpert.org/expert/5519 -https://www.oceanexpert.org/institution/14493 -https://www.oceanexpert.org/event/998 -https://www.oceanexpert.org/expert/26188 -https://www.oceanexpert.org/institution/18561 -https://www.oceanexpert.org/event/42 -https://www.oceanexpert.org/expert/25130 -https://www.oceanexpert.org/expert/24799 -https://www.oceanexpert.org/expert/35369 -https://www.oceanexpert.org/expert/48388 -https://www.oceanexpert.org/expert/36816 -https://www.oceanexpert.org/expert/34431 -https://www.oceanexpert.org/institution/14031 -https://www.oceanexpert.org/expert/21965 -https://www.oceanexpert.org/institution/21870 -https://www.oceanexpert.org/expert/47132 -https://www.oceanexpert.org/expert/24883 -https://www.oceanexpert.org/expert/45886 -https://www.oceanexpert.org/expert/37388 -https://www.oceanexpert.org/event/2559 -https://www.oceanexpert.org/institution/16431 -https://www.oceanexpert.org/expert/4765 -https://www.oceanexpert.org/expert/108 -https://www.oceanexpert.org/expert/31885 -https://www.oceanexpert.org/institution/9375 -https://www.oceanexpert.org/expert/47152 -https://www.oceanexpert.org/institution/20344 -https://www.oceanexpert.org/expert/14639 -https://www.oceanexpert.org/expert/37376 -https://www.oceanexpert.org/expert/19673 -https://www.oceanexpert.org/event/2319 -https://www.oceanexpert.org/expert/38630 -https://www.oceanexpert.org/expert/19910 -https://www.oceanexpert.org/expert/36993 -https://www.oceanexpert.org/event/300 -https://www.oceanexpert.org/event/2799 -https://www.oceanexpert.org/expert/45812 -https://www.oceanexpert.org/expert/47718 -https://www.oceanexpert.org/expert/36437 -https://www.oceanexpert.org/institution/8706 -https://www.oceanexpert.org/institution/20077 -https://www.oceanexpert.org/institution/20917 -https://www.oceanexpert.org/event/1953 -https://www.oceanexpert.org/institution/10278 -https://www.oceanexpert.org/expert/20391 -https://www.oceanexpert.org/expert/16360 -https://www.oceanexpert.org/expert/47820 -https://www.oceanexpert.org/expert/45022 -https://www.oceanexpert.org/expert/34116 -https://www.oceanexpert.org/event/37 -https://www.oceanexpert.org/event/1518 -https://www.oceanexpert.org/expert/46970 -https://www.oceanexpert.org/expert/12765 -https://www.oceanexpert.org/event/1295 -https://www.oceanexpert.org/expert/45971 -https://www.oceanexpert.org/event/483 -https://www.oceanexpert.org/expert/31913 -https://www.oceanexpert.org/institution/15409 -https://www.oceanexpert.org/expert/47718 -https://www.oceanexpert.org/institution/20817 -https://www.oceanexpert.org/expert/28441 -https://www.oceanexpert.org/expert/19222 -https://www.oceanexpert.org/expert/31145 -https://www.oceanexpert.org/institution/18597 -https://www.oceanexpert.org/institution/22174 -https://www.oceanexpert.org/expert/45789 -https://www.oceanexpert.org/institution/15809 -https://www.oceanexpert.org/expert/11818 -https://www.oceanexpert.org/event/2147 -https://www.oceanexpert.org/expert/26423 -https://www.oceanexpert.org/expert/24612 -https://www.oceanexpert.org/expert/15573 -https://www.oceanexpert.org/expert/47784 -https://www.oceanexpert.org/expert/39340 -https://www.oceanexpert.org/expert/30359 -https://www.oceanexpert.org/event/1734 -https://www.oceanexpert.org/expert/28841 -https://www.oceanexpert.org/institution/19151 -https://www.oceanexpert.org/expert/13027 -https://www.oceanexpert.org/expert/47205 -https://www.oceanexpert.org/expert/40037 -https://www.oceanexpert.org/expert/16977 -https://www.oceanexpert.org/expert/11648 -https://www.oceanexpert.org/expert/46959 -https://www.oceanexpert.org/expert/9574 -https://www.oceanexpert.org/expert/48277 -https://www.oceanexpert.org/expert/30862 -https://www.oceanexpert.org/expert/20001 -https://www.oceanexpert.org/institution/14040 -https://www.oceanexpert.org/expert/46349 -https://www.oceanexpert.org/institution/13368 -https://www.oceanexpert.org/expert/12454 -https://www.oceanexpert.org/expert/47432 -https://www.oceanexpert.org/expert/24608 -https://www.oceanexpert.org/expert/20286 -https://www.oceanexpert.org/institution/18026 -https://www.oceanexpert.org/institution/18410 -https://www.oceanexpert.org/expert/22598 -https://www.oceanexpert.org/institution/19007 -https://www.oceanexpert.org/institution/18020 -https://www.oceanexpert.org/institution/17931 -https://www.oceanexpert.org/institution/15049 -https://www.oceanexpert.org/institution/18124 -https://www.oceanexpert.org/expert/36643 -https://www.oceanexpert.org/institution/14820 -https://www.oceanexpert.org/expert/30878 -https://www.oceanexpert.org/institution/9178 -https://www.oceanexpert.org/institution/21026 -https://www.oceanexpert.org/expert/16304 -https://www.oceanexpert.org/event/1086 -https://www.oceanexpert.org/expert/14921 -https://www.oceanexpert.org/expert/42789 -https://www.oceanexpert.org/expert/32477 -https://www.oceanexpert.org/expert/27030 -https://www.oceanexpert.org/expert/24892 -https://www.oceanexpert.org/expert/14808 -https://www.oceanexpert.org/expert/35461 -https://www.oceanexpert.org/expert/30667 -https://www.oceanexpert.org/expert/34110 -https://www.oceanexpert.org/expert/19168 -https://www.oceanexpert.org/expert/27575 -https://www.oceanexpert.org/institution/21689 -https://www.oceanexpert.org/expert/36811 -https://www.oceanexpert.org/event/2924 -https://www.oceanexpert.org/expert/45473 -https://www.oceanexpert.org/expert/1272 -https://www.oceanexpert.org/expert/21785 -https://www.oceanexpert.org/institution/12092 -https://www.oceanexpert.org/expert/18587 -https://www.oceanexpert.org/institution/18293 -https://www.oceanexpert.org/expert/32813 -https://www.oceanexpert.org/expert/44407 -https://www.oceanexpert.org/institution/21658 -https://www.oceanexpert.org/expert/30797 -https://www.oceanexpert.org/expert/22103 -https://www.oceanexpert.org/expert/37005 -https://www.oceanexpert.org/institution/18312 -https://www.oceanexpert.org/institution/21150 -https://www.oceanexpert.org/institution/21613 -https://www.oceanexpert.org/institution/18089 -https://www.oceanexpert.org/expert/30967 -https://www.oceanexpert.org/expert/25704 -https://www.oceanexpert.org/expert/20232 -https://www.oceanexpert.org/institution/14361 -https://www.oceanexpert.org/institution/14304 -https://www.oceanexpert.org/expert/24873 -https://www.oceanexpert.org/expert/45531 -https://www.oceanexpert.org/expert/23805 -https://www.oceanexpert.org/expert/18716 -https://www.oceanexpert.org/expert/11295 -https://www.oceanexpert.org/expert/42865 -https://www.oceanexpert.org/event/478 -https://www.oceanexpert.org/expert/41237 -https://www.oceanexpert.org/expert/28313 -https://www.oceanexpert.org/institution/20608 -https://www.oceanexpert.org/expert/19228 -https://www.oceanexpert.org/expert/45760 -https://www.oceanexpert.org/expert/40886 -https://www.oceanexpert.org/expert/46456 -https://www.oceanexpert.org/expert/6863 -https://www.oceanexpert.org/institution/20847 -https://www.oceanexpert.org/expert/43615 -https://www.oceanexpert.org/expert/11138 -https://www.oceanexpert.org/expert/26815 -https://www.oceanexpert.org/expert/3822 -https://www.oceanexpert.org/expert/26705 -https://www.oceanexpert.org/expert/2310 -https://www.oceanexpert.org/expert/23676 -https://www.oceanexpert.org/expert/27577 -https://www.oceanexpert.org/expert/36279 -https://www.oceanexpert.org/event/3194 -https://www.oceanexpert.org/institution/18099 -https://www.oceanexpert.org/expert/985 -https://www.oceanexpert.org/institution/17122 -https://www.oceanexpert.org/institution/20771 -https://www.oceanexpert.org/institution/15192 -https://www.oceanexpert.org/expert/16094 -https://www.oceanexpert.org/expert/26705 -https://www.oceanexpert.org/expert/45412 -https://www.oceanexpert.org/expert/35721 -https://www.oceanexpert.org/expert/14745 -https://www.oceanexpert.org/institution/20932 -https://www.oceanexpert.org/expert/19394 -https://www.oceanexpert.org/institution/21142 -https://www.oceanexpert.org/expert/24553 -https://www.oceanexpert.org/expert/47145 -https://www.oceanexpert.org/expert/33062 -https://www.oceanexpert.org/expert/35902 -https://www.oceanexpert.org/expert/19777 -https://www.oceanexpert.org/institution/19863 -https://www.oceanexpert.org/expert/7232 -https://www.oceanexpert.org/expert/19092 -https://www.oceanexpert.org/expert/35237 -https://www.oceanexpert.org/expert/39010 -https://www.oceanexpert.org/institution/18679 -https://www.oceanexpert.org/expert/32357 -https://www.oceanexpert.org/expert/8961 -https://www.oceanexpert.org/institution/20498 -https://www.oceanexpert.org/expert/29368 -https://www.oceanexpert.org/expert/13169 -https://www.oceanexpert.org/expert/3487 -https://www.oceanexpert.org/event/1710 -https://www.oceanexpert.org/expert/39928 -https://www.oceanexpert.org/expert/35154 -https://www.oceanexpert.org/institution/15674 -https://www.oceanexpert.org/institution/16829 -https://www.oceanexpert.org/expert/33260 -https://www.oceanexpert.org/expert/16267 -https://www.oceanexpert.org/expert/14759 -https://www.oceanexpert.org/expert/29532 -https://www.oceanexpert.org/institution/17914 -https://www.oceanexpert.org/expert/26049 -https://www.oceanexpert.org/expert/12577 -https://www.oceanexpert.org/institution/12447 -https://www.oceanexpert.org/expert/27503 -https://www.oceanexpert.org/expert/24062 -https://www.oceanexpert.org/expert/6007 -https://www.oceanexpert.org/expert/43792 -https://www.oceanexpert.org/expert/21827 -https://www.oceanexpert.org/expert/19855 -https://www.oceanexpert.org/institution/19552 -https://www.oceanexpert.org/expert/10728 -https://www.oceanexpert.org/event/1657 -https://www.oceanexpert.org/event/414 -https://www.oceanexpert.org/institution/10992 -https://www.oceanexpert.org/institution/18075 -https://www.oceanexpert.org/institution/18075 -https://www.oceanexpert.org/expert/27164 -https://www.oceanexpert.org/institution/20093 -https://www.oceanexpert.org/event/2274 -https://www.oceanexpert.org/expert/18757 -https://www.oceanexpert.org/expert/36539 -https://www.oceanexpert.org/event/2575 -https://www.oceanexpert.org/expert/44736 -https://www.oceanexpert.org/expert/18453 -https://www.oceanexpert.org/event/1905 -https://www.oceanexpert.org/expert/35441 -https://www.oceanexpert.org/institution/20840 -https://www.oceanexpert.org/institution/18789 -https://www.oceanexpert.org/expert/35334 -https://www.oceanexpert.org/expert/32458 -https://www.oceanexpert.org/expert/20571 -https://www.oceanexpert.org/event/1389 -https://www.oceanexpert.org/expert/24978 -https://www.oceanexpert.org/expert/26052 -https://www.oceanexpert.org/institution/15442 -https://www.oceanexpert.org/event/1566 -https://www.oceanexpert.org/expert/28284 -https://www.oceanexpert.org/event/1972 -https://www.oceanexpert.org/event/2211 -https://www.oceanexpert.org/expert/22439 -https://www.oceanexpert.org/expert/43638 -https://www.oceanexpert.org/event/523 -https://www.oceanexpert.org/expert/26055 -https://www.oceanexpert.org/expert/11947 -https://www.oceanexpert.org/expert/44064 -https://www.oceanexpert.org/expert/36313 -https://www.oceanexpert.org/institution/21825 -https://www.oceanexpert.org/institution/4980 -https://www.oceanexpert.org/institution/20006 -https://www.oceanexpert.org/expert/27037 -https://www.oceanexpert.org/expert/46015 -https://www.oceanexpert.org/expert/24891 -https://www.oceanexpert.org/expert/16547 -https://www.oceanexpert.org/institution/11061 -https://www.oceanexpert.org/expert/25727 -https://www.oceanexpert.org/expert/11217 -https://www.oceanexpert.org/institution/9814 -https://www.oceanexpert.org/institution/18244 -https://www.oceanexpert.org/expert/47493 -https://www.oceanexpert.org/expert/30698 -https://www.oceanexpert.org/expert/22746 -https://www.oceanexpert.org/institution/16889 -https://www.oceanexpert.org/institution/20486 -https://www.oceanexpert.org/event/2687 -https://www.oceanexpert.org/expert/32222 -https://www.oceanexpert.org/expert/16621 -https://www.oceanexpert.org/expert/47050 -https://www.oceanexpert.org/expert/48731 -https://www.oceanexpert.org/expert/26836 -https://www.oceanexpert.org/institution/15889 -https://www.oceanexpert.org/institution/21819 -https://www.oceanexpert.org/expert/36641 -https://www.oceanexpert.org/expert/26136 -https://www.oceanexpert.org/expert/2923 -https://www.oceanexpert.org/institution/21718 -https://www.oceanexpert.org/expert/26180 -https://www.oceanexpert.org/expert/5622 -https://www.oceanexpert.org/expert/38430 -https://www.oceanexpert.org/expert/33220 -https://www.oceanexpert.org/expert/11171 -https://www.oceanexpert.org/expert/20450 -https://www.oceanexpert.org/expert/19565 -https://www.oceanexpert.org/expert/26561 -https://www.oceanexpert.org/expert/12725 -https://www.oceanexpert.org/expert/15715 -https://www.oceanexpert.org/expert/42643 -https://www.oceanexpert.org/institution/17613 -https://www.oceanexpert.org/expert/18437 -https://www.oceanexpert.org/expert/42805 -https://www.oceanexpert.org/expert/29122 -https://www.oceanexpert.org/expert/21129 -https://www.oceanexpert.org/expert/548 -https://www.oceanexpert.org/event/1606 -https://www.oceanexpert.org/institution/6997 -https://www.oceanexpert.org/event/2028 -https://www.oceanexpert.org/expert/22663 -https://www.oceanexpert.org/expert/39940 -https://www.oceanexpert.org/expert/27876 -https://www.oceanexpert.org/institution/5049 -https://www.oceanexpert.org/expert/18606 -https://www.oceanexpert.org/expert/46707 -https://www.oceanexpert.org/expert/6577 -https://www.oceanexpert.org/institution/20742 -https://www.oceanexpert.org/event/2367 -https://www.oceanexpert.org/institution/19288 -https://www.oceanexpert.org/institution/19172 -https://www.oceanexpert.org/institution/20108 -https://www.oceanexpert.org/institution/19567 -https://www.oceanexpert.org/expert/18513 -https://www.oceanexpert.org/expert/45708 -https://www.oceanexpert.org/event/2286 -https://www.oceanexpert.org/expert/37407 -https://www.oceanexpert.org/expert/14684 -https://www.oceanexpert.org/expert/26672 -https://www.oceanexpert.org/event/2106 -https://www.oceanexpert.org/expert/37969 -https://www.oceanexpert.org/expert/13574 -https://www.oceanexpert.org/expert/30972 -https://www.oceanexpert.org/expert/26183 -https://www.oceanexpert.org/institution/20695 -https://www.oceanexpert.org/expert/19419 -https://www.oceanexpert.org/expert/35981 -https://www.oceanexpert.org/expert/42574 -https://www.oceanexpert.org/expert/17902 -https://www.oceanexpert.org/expert/30405 -https://www.oceanexpert.org/expert/48283 -https://www.oceanexpert.org/institution/20482 -https://www.oceanexpert.org/expert/27498 -https://www.oceanexpert.org/institution/20229 -https://www.oceanexpert.org/expert/42618 -https://www.oceanexpert.org/institution/19469 -https://www.oceanexpert.org/expert/17697 -https://www.oceanexpert.org/expert/12952 -https://www.oceanexpert.org/event/1271 -https://www.oceanexpert.org/expert/33203 -https://www.oceanexpert.org/expert/44162 -https://www.oceanexpert.org/expert/47866 -https://www.oceanexpert.org/expert/506 -https://www.oceanexpert.org/expert/22913 -https://www.oceanexpert.org/expert/37966 -https://www.oceanexpert.org/institution/6727 -https://www.oceanexpert.org/expert/18565 -https://www.oceanexpert.org/institution/19554 -https://www.oceanexpert.org/expert/42537 -https://www.oceanexpert.org/institution/19514 -https://www.oceanexpert.org/expert/44650 -https://www.oceanexpert.org/expert/24856 -https://www.oceanexpert.org/expert/11706 -https://www.oceanexpert.org/expert/33761 -https://www.oceanexpert.org/institution/20717 -https://www.oceanexpert.org/expert/21356 -https://www.oceanexpert.org/institution/22185 -https://www.oceanexpert.org/institution/19048 -https://www.oceanexpert.org/expert/43035 -https://www.oceanexpert.org/expert/24509 -https://www.oceanexpert.org/event/984 -https://www.oceanexpert.org/expert/20408 -https://www.oceanexpert.org/institution/17228 -https://www.oceanexpert.org/expert/39344 -https://www.oceanexpert.org/expert/18921 -https://www.oceanexpert.org/expert/25376 -https://www.oceanexpert.org/institution/11016 -https://www.oceanexpert.org/expert/25699 -https://www.oceanexpert.org/expert/46184 -https://www.oceanexpert.org/institution/19084 -https://www.oceanexpert.org/expert/34153 -https://www.oceanexpert.org/expert/12609 -https://www.oceanexpert.org/expert/38788 -https://www.oceanexpert.org/institution/19400 -https://www.oceanexpert.org/expert/47232 -https://www.oceanexpert.org/expert/44877 -https://www.oceanexpert.org/expert/48084 -https://www.oceanexpert.org/expert/16293 -https://www.oceanexpert.org/expert/19033 -https://www.oceanexpert.org/institution/19571 -https://www.oceanexpert.org/expert/6911 -https://www.oceanexpert.org/expert/30736 -https://www.oceanexpert.org/institution/5021 -https://www.oceanexpert.org/institution/18556 -https://www.oceanexpert.org/expert/23918 -https://www.oceanexpert.org/expert/9194 -https://www.oceanexpert.org/expert/33535 -https://www.oceanexpert.org/event/3252 -https://www.oceanexpert.org/institution/18835 -https://www.oceanexpert.org/expert/11401 -https://www.oceanexpert.org/expert/9567 -https://www.oceanexpert.org/expert/28098 -https://www.oceanexpert.org/expert/21753 -https://www.oceanexpert.org/expert/11027 -https://www.oceanexpert.org/expert/29879 -https://www.oceanexpert.org/expert/47699 -https://www.oceanexpert.org/expert/18145 -https://www.oceanexpert.org/institution/10460 -https://www.oceanexpert.org/institution/13341 -https://www.oceanexpert.org/event/3033 -https://www.oceanexpert.org/institution/21261 -https://www.oceanexpert.org/expert/35169 -https://www.oceanexpert.org/expert/38181 -https://www.oceanexpert.org/expert/15346 -https://www.oceanexpert.org/expert/38483 -https://www.oceanexpert.org/expert/44963 -https://www.oceanexpert.org/event/2946 -https://www.oceanexpert.org/institution/20398 -https://www.oceanexpert.org/expert/29695 -https://www.oceanexpert.org/expert/12241 -https://www.oceanexpert.org/expert/24713 -https://www.oceanexpert.org/expert/13802 -https://www.oceanexpert.org/institution/13971 -https://www.oceanexpert.org/expert/25974 -https://www.oceanexpert.org/expert/21959 -https://www.oceanexpert.org/event/507 -https://www.oceanexpert.org/expert/29696 -https://www.oceanexpert.org/expert/37544 -https://www.oceanexpert.org/expert/40644 -https://www.oceanexpert.org/expert/43072 -https://www.oceanexpert.org/expert/44738 -https://www.oceanexpert.org/expert/31187 -https://www.oceanexpert.org/expert/28088 -https://www.oceanexpert.org/expert/45004 -https://www.oceanexpert.org/expert/31190 -https://www.oceanexpert.org/expert/534 -https://www.oceanexpert.org/institution/10172 -https://www.oceanexpert.org/expert/24274 -https://www.oceanexpert.org/expert/29366 -https://www.oceanexpert.org/institution/21764 -https://www.oceanexpert.org/institution/11797 -https://www.oceanexpert.org/expert/29823 -https://www.oceanexpert.org/expert/31371 -https://www.oceanexpert.org/event/2579 -https://www.oceanexpert.org/expert/31235 -https://www.oceanexpert.org/institution/18761 -https://www.oceanexpert.org/expert/18097 -https://www.oceanexpert.org/expert/36698 -https://www.oceanexpert.org/expert/44533 -https://www.oceanexpert.org/expert/39204 -https://www.oceanexpert.org/expert/36635 -https://www.oceanexpert.org/institution/17775 -https://www.oceanexpert.org/expert/46569 -https://www.oceanexpert.org/institution/17972 -https://www.oceanexpert.org/expert/21704 -https://www.oceanexpert.org/institution/18602 -https://www.oceanexpert.org/institution/14869 -https://www.oceanexpert.org/expert/44119 -https://www.oceanexpert.org/expert/22685 -https://www.oceanexpert.org/expert/19270 -https://www.oceanexpert.org/expert/11298 -https://www.oceanexpert.org/expert/11443 -https://www.oceanexpert.org/expert/37837 -https://www.oceanexpert.org/institution/18760 -https://www.oceanexpert.org/expert/31873 -https://www.oceanexpert.org/expert/35875 -https://www.oceanexpert.org/expert/24282 -https://www.oceanexpert.org/institution/18910 -https://www.oceanexpert.org/expert/18001 -https://www.oceanexpert.org/expert/27589 -https://www.oceanexpert.org/institution/20074 -https://www.oceanexpert.org/expert/12729 -https://www.oceanexpert.org/expert/47818 -https://www.oceanexpert.org/institution/18757 -https://www.oceanexpert.org/expert/25058 -https://www.oceanexpert.org/expert/4886 -https://www.oceanexpert.org/expert/27556 -https://www.oceanexpert.org/event/2138 -https://www.oceanexpert.org/expert/38268 -https://www.oceanexpert.org/expert/33609 -https://www.oceanexpert.org/expert/11013 -https://www.oceanexpert.org/expert/19435 -https://www.oceanexpert.org/expert/19887 -https://www.oceanexpert.org/expert/29059 -https://www.oceanexpert.org/expert/18488 -https://www.oceanexpert.org/institution/21413 -https://www.oceanexpert.org/expert/5429 -https://www.oceanexpert.org/expert/44471 -https://www.oceanexpert.org/institution/17611 -https://www.oceanexpert.org/expert/36701 -https://www.oceanexpert.org/event/1347 -https://www.oceanexpert.org/expert/26262 -https://www.oceanexpert.org/expert/27665 -https://www.oceanexpert.org/expert/6430 -https://www.oceanexpert.org/expert/23570 -https://www.oceanexpert.org/event/3053 -https://www.oceanexpert.org/institution/21639 -https://www.oceanexpert.org/expert/36711 -https://www.oceanexpert.org/institution/13243 -https://www.oceanexpert.org/event/2529 -https://www.oceanexpert.org/event/3027 -https://www.oceanexpert.org/expert/29419 -https://www.oceanexpert.org/institution/16321 -https://www.oceanexpert.org/expert/6726 -https://www.oceanexpert.org/expert/32461 -https://www.oceanexpert.org/expert/47496 -https://www.oceanexpert.org/expert/13298 -https://www.oceanexpert.org/event/2153 -https://www.oceanexpert.org/expert/42593 -https://www.oceanexpert.org/expert/37349 -https://www.oceanexpert.org/expert/34554 -https://www.oceanexpert.org/expert/22088 -https://www.oceanexpert.org/expert/35835 -https://www.oceanexpert.org/expert/22647 -https://www.oceanexpert.org/institution/12365 -https://www.oceanexpert.org/institution/12616 -https://www.oceanexpert.org/expert/21106 -https://www.oceanexpert.org/institution/6801 -https://www.oceanexpert.org/expert/33795 -https://www.oceanexpert.org/expert/44963 -https://www.oceanexpert.org/expert/44170 -https://www.oceanexpert.org/expert/37935 -https://www.oceanexpert.org/expert/31331 -https://www.oceanexpert.org/expert/36894 -https://www.oceanexpert.org/expert/46172 -https://www.oceanexpert.org/expert/24529 -https://www.oceanexpert.org/expert/47341 -https://www.oceanexpert.org/expert/18791 -https://www.oceanexpert.org/expert/45534 -https://www.oceanexpert.org/expert/35366 -https://www.oceanexpert.org/event/3024 -https://www.oceanexpert.org/expert/32283 -https://www.oceanexpert.org/institution/16808 -https://www.oceanexpert.org/expert/21838 -https://www.oceanexpert.org/institution/19579 -https://www.oceanexpert.org/expert/46619 -https://www.oceanexpert.org/expert/37295 -https://www.oceanexpert.org/event/1903 -https://www.oceanexpert.org/expert/43825 -https://www.oceanexpert.org/institution/10704 -https://www.oceanexpert.org/expert/47558 -https://www.oceanexpert.org/expert/14739 -https://www.oceanexpert.org/expert/48020 -https://www.oceanexpert.org/expert/44024 -https://www.oceanexpert.org/expert/25370 -https://www.oceanexpert.org/event/2873 -https://www.oceanexpert.org/expert/34955 -https://www.oceanexpert.org/expert/46186 -https://www.oceanexpert.org/expert/46054 -https://www.oceanexpert.org/expert/37721 -https://www.oceanexpert.org/expert/19295 -https://www.oceanexpert.org/institution/11067 -https://www.oceanexpert.org/expert/29062 -https://www.oceanexpert.org/event/1433 -https://www.oceanexpert.org/expert/18632 -https://www.oceanexpert.org/expert/21756 -https://www.oceanexpert.org/expert/25147 -https://www.oceanexpert.org/expert/47023 -https://www.oceanexpert.org/expert/14132 -https://www.oceanexpert.org/expert/25826 -https://www.oceanexpert.org/expert/18332 -https://www.oceanexpert.org/expert/46326 -https://www.oceanexpert.org/event/1342 -https://www.oceanexpert.org/expert/30222 -https://www.oceanexpert.org/expert/47402 -https://www.oceanexpert.org/institution/19351 -https://www.oceanexpert.org/institution/21210 -https://www.oceanexpert.org/institution/9974 -https://www.oceanexpert.org/expert/30417 -https://www.oceanexpert.org/institution/19488 -https://www.oceanexpert.org/expert/43721 -https://www.oceanexpert.org/expert/26850 -https://www.oceanexpert.org/expert/46210 -https://www.oceanexpert.org/expert/35186 -https://www.oceanexpert.org/institution/20398 -https://www.oceanexpert.org/expert/36927 -https://www.oceanexpert.org/expert/11945 -https://www.oceanexpert.org/expert/14619 -https://www.oceanexpert.org/expert/19879 -https://www.oceanexpert.org/expert/46643 -https://www.oceanexpert.org/expert/26607 -https://www.oceanexpert.org/expert/43098 -https://www.oceanexpert.org/expert/32615 -https://www.oceanexpert.org/expert/5059 -https://www.oceanexpert.org/expert/31685 -https://www.oceanexpert.org/expert/27958 -https://www.oceanexpert.org/expert/37916 -https://www.oceanexpert.org/institution/18945 -https://www.oceanexpert.org/expert/32445 -https://www.oceanexpert.org/expert/23528 -https://www.oceanexpert.org/expert/15367 -https://www.oceanexpert.org/expert/47942 -https://www.oceanexpert.org/expert/8066 -https://www.oceanexpert.org/event/1852 -https://www.oceanexpert.org/expert/11073 -https://www.oceanexpert.org/institution/16464 -https://www.oceanexpert.org/expert/43093 -https://www.oceanexpert.org/institution/21894 -https://www.oceanexpert.org/event/1782 -https://www.oceanexpert.org/institution/9358 -https://www.oceanexpert.org/expert/21284 -https://www.oceanexpert.org/expert/18644 -https://www.oceanexpert.org/expert/33741 -https://www.oceanexpert.org/expert/40048 -https://www.oceanexpert.org/expert/32396 -https://www.oceanexpert.org/expert/27167 -https://www.oceanexpert.org/expert/31678 -https://www.oceanexpert.org/expert/47303 -https://www.oceanexpert.org/expert/16823 -https://www.oceanexpert.org/expert/17370 -https://www.oceanexpert.org/expert/38372 -https://www.oceanexpert.org/expert/10796 -https://www.oceanexpert.org/expert/25606 -https://www.oceanexpert.org/expert/36551 -https://www.oceanexpert.org/expert/46684 -https://www.oceanexpert.org/expert/16616 -https://www.oceanexpert.org/expert/18582 -https://www.oceanexpert.org/event/1027 -https://www.oceanexpert.org/expert/21307 -https://www.oceanexpert.org/institution/21835 -https://www.oceanexpert.org/institution/20390 -https://www.oceanexpert.org/expert/25007 -https://www.oceanexpert.org/expert/17703 -https://www.oceanexpert.org/expert/18652 -https://www.oceanexpert.org/expert/12725 -https://www.oceanexpert.org/expert/19350 -https://www.oceanexpert.org/expert/46572 -https://www.oceanexpert.org/expert/38500 -https://www.oceanexpert.org/institution/13283 -https://www.oceanexpert.org/expert/39587 -https://www.oceanexpert.org/institution/16484 -https://www.oceanexpert.org/expert/12967 -https://www.oceanexpert.org/expert/23731 -https://www.oceanexpert.org/institution/17783 -https://www.oceanexpert.org/event/1707 -https://www.oceanexpert.org/expert/47387 -https://www.oceanexpert.org/institution/19144 -https://www.oceanexpert.org/expert/34623 -https://www.oceanexpert.org/expert/22074 -https://www.oceanexpert.org/expert/33879 -https://www.oceanexpert.org/expert/26935 -https://www.oceanexpert.org/expert/25391 -https://www.oceanexpert.org/expert/8949 -https://www.oceanexpert.org/expert/37402 -https://www.oceanexpert.org/event/350 -https://www.oceanexpert.org/expert/37470 -https://www.oceanexpert.org/expert/13964 -https://www.oceanexpert.org/event/2670 -https://www.oceanexpert.org/institution/20827 -https://www.oceanexpert.org/expert/23307 -https://www.oceanexpert.org/expert/37506 -https://www.oceanexpert.org/expert/17608 -https://www.oceanexpert.org/expert/44541 -https://www.oceanexpert.org/expert/17228 -https://www.oceanexpert.org/institution/20573 -https://www.oceanexpert.org/event/2043 -https://www.oceanexpert.org/event/1319 -https://www.oceanexpert.org/expert/33351 -https://www.oceanexpert.org/institution/17599 -https://www.oceanexpert.org/expert/46859 -https://www.oceanexpert.org/expert/14720 -https://www.oceanexpert.org/expert/46475 -https://www.oceanexpert.org/expert/40544 -https://www.oceanexpert.org/expert/36476 -https://www.oceanexpert.org/institution/18784 -https://www.oceanexpert.org/expert/46595 -https://www.oceanexpert.org/institution/17839 -https://www.oceanexpert.org/event/1930 -https://www.oceanexpert.org/institution/19648 -https://www.oceanexpert.org/expert/7017 -https://www.oceanexpert.org/expert/42605 -https://www.oceanexpert.org/expert/25703 -https://www.oceanexpert.org/institution/14671 -https://www.oceanexpert.org/expert/35160 -https://www.oceanexpert.org/expert/29268 -https://www.oceanexpert.org/institution/13078 -https://www.oceanexpert.org/expert/38520 -https://www.oceanexpert.org/expert/45586 -https://www.oceanexpert.org/institution/7612 -https://www.oceanexpert.org/expert/38719 -https://www.oceanexpert.org/institution/18319 -https://www.oceanexpert.org/event/2126 -https://www.oceanexpert.org/institution/19378 -https://www.oceanexpert.org/expert/18857 -https://www.oceanexpert.org/expert/45119 -https://www.oceanexpert.org/expert/43010 -https://www.oceanexpert.org/expert/19067 -https://www.oceanexpert.org/institution/6632 -https://www.oceanexpert.org/expert/3428 -https://www.oceanexpert.org/expert/26598 -https://www.oceanexpert.org/expert/34622 -https://www.oceanexpert.org/event/2144 -https://www.oceanexpert.org/expert/30669 -https://www.oceanexpert.org/event/2409 -https://www.oceanexpert.org/institution/14622 -https://www.oceanexpert.org/expert/13486 -https://www.oceanexpert.org/expert/31646 -https://www.oceanexpert.org/expert/48348 -https://www.oceanexpert.org/expert/7205 -https://www.oceanexpert.org/institution/17386 -https://www.oceanexpert.org/expert/35401 -https://www.oceanexpert.org/expert/13557 -https://www.oceanexpert.org/expert/20292 -https://www.oceanexpert.org/expert/18865 -https://www.oceanexpert.org/institution/21120 -https://www.oceanexpert.org/institution/17644 -https://www.oceanexpert.org/expert/44494 -https://www.oceanexpert.org/expert/20443 -https://www.oceanexpert.org/expert/44207 -https://www.oceanexpert.org/expert/43678 -https://www.oceanexpert.org/institution/9244 -https://www.oceanexpert.org/expert/36943 -https://www.oceanexpert.org/expert/25927 -https://www.oceanexpert.org/expert/27522 -https://www.oceanexpert.org/expert/45945 -https://www.oceanexpert.org/event/3182 -https://www.oceanexpert.org/expert/5394 -https://www.oceanexpert.org/event/2019 -https://www.oceanexpert.org/event/1047 -https://www.oceanexpert.org/institution/20614 -https://www.oceanexpert.org/expert/17391 -https://www.oceanexpert.org/event/2077 -https://www.oceanexpert.org/expert/27538 -https://www.oceanexpert.org/expert/23606 -https://www.oceanexpert.org/expert/22068 -https://www.oceanexpert.org/event/1980 -https://www.oceanexpert.org/institution/10157 -https://www.oceanexpert.org/expert/200 -https://www.oceanexpert.org/event/1364 -https://www.oceanexpert.org/institution/18818 -https://www.oceanexpert.org/institution/17738 -https://www.oceanexpert.org/expert/46341 -https://www.oceanexpert.org/institution/12345 -https://www.oceanexpert.org/event/375 -https://www.oceanexpert.org/expert/21223 -https://www.oceanexpert.org/expert/27484 -https://www.oceanexpert.org/event/2689 -https://www.oceanexpert.org/expert/16300 -https://www.oceanexpert.org/institution/21214 -https://www.oceanexpert.org/expert/38353 -https://www.oceanexpert.org/expert/23589 -https://www.oceanexpert.org/expert/46782 -https://www.oceanexpert.org/expert/19632 -https://www.oceanexpert.org/institution/21305 -https://www.oceanexpert.org/expert/17514 -https://www.oceanexpert.org/institution/20960 -https://www.oceanexpert.org/institution/6020 -https://www.oceanexpert.org/expert/47586 -https://www.oceanexpert.org/expert/23025 -https://www.oceanexpert.org/expert/25200 -https://www.oceanexpert.org/expert/31124 -https://www.oceanexpert.org/expert/23060 -https://www.oceanexpert.org/expert/23274 -https://www.oceanexpert.org/event/1689 -https://www.oceanexpert.org/event/560 -https://www.oceanexpert.org/event/135 -https://www.oceanexpert.org/institution/21884 -https://www.oceanexpert.org/institution/18010 -https://www.oceanexpert.org/institution/21344 -https://www.oceanexpert.org/expert/48358 -https://www.oceanexpert.org/expert/8957 -https://www.oceanexpert.org/institution/19805 -https://www.oceanexpert.org/expert/26937 -https://www.oceanexpert.org/expert/45565 -https://www.oceanexpert.org/institution/19135 -https://www.oceanexpert.org/expert/16774 -https://www.oceanexpert.org/expert/34532 -https://www.oceanexpert.org/expert/42922 -https://www.oceanexpert.org/expert/29777 -https://www.oceanexpert.org/expert/20193 -https://www.oceanexpert.org/expert/47666 -https://www.oceanexpert.org/institution/13040 -https://www.oceanexpert.org/event/1969 -https://www.oceanexpert.org/expert/35611 -https://www.oceanexpert.org/expert/21200 -https://www.oceanexpert.org/expert/48122 -https://www.oceanexpert.org/expert/1098 -https://www.oceanexpert.org/institution/14082 -https://www.oceanexpert.org/event/747 -https://www.oceanexpert.org/institution/13323 -https://www.oceanexpert.org/expert/46728 -https://www.oceanexpert.org/expert/26849 -https://www.oceanexpert.org/institution/17021 -https://www.oceanexpert.org/expert/24011 -https://www.oceanexpert.org/institution/16060 -https://www.oceanexpert.org/event/2805 -https://www.oceanexpert.org/institution/19381 -https://www.oceanexpert.org/expert/49035 -https://www.oceanexpert.org/institution/17913 -https://www.oceanexpert.org/institution/10848 -https://www.oceanexpert.org/expert/36932 -https://www.oceanexpert.org/event/494 -https://www.oceanexpert.org/expert/42836 -https://www.oceanexpert.org/expert/45723 -https://www.oceanexpert.org/expert/16137 -https://www.oceanexpert.org/expert/184 -https://www.oceanexpert.org/expert/32510 -https://www.oceanexpert.org/institution/13818 -https://www.oceanexpert.org/expert/25251 -https://www.oceanexpert.org/expert/36827 -https://www.oceanexpert.org/expert/14791 -https://www.oceanexpert.org/expert/34856 -https://www.oceanexpert.org/expert/43326 -https://www.oceanexpert.org/expert/32127 -https://www.oceanexpert.org/institution/20182 -https://www.oceanexpert.org/expert/33384 -https://www.oceanexpert.org/institution/19776 -https://www.oceanexpert.org/expert/26225 -https://www.oceanexpert.org/expert/23771 -https://www.oceanexpert.org/event/986 -https://www.oceanexpert.org/event/2810 -https://www.oceanexpert.org/expert/22285 -https://www.oceanexpert.org/expert/48900 -https://www.oceanexpert.org/expert/46950 -https://www.oceanexpert.org/expert/39791 -https://www.oceanexpert.org/institution/9383 -https://www.oceanexpert.org/expert/35575 -https://www.oceanexpert.org/institution/11778 -https://www.oceanexpert.org/expert/18777 -https://www.oceanexpert.org/expert/35374 -https://www.oceanexpert.org/expert/29394 -https://www.oceanexpert.org/expert/27994 -https://www.oceanexpert.org/expert/18393 -https://www.oceanexpert.org/expert/18286 -https://www.oceanexpert.org/institution/20665 -https://www.oceanexpert.org/institution/17958 -https://www.oceanexpert.org/event/312 -https://www.oceanexpert.org/expert/46840 -https://www.oceanexpert.org/institution/17035 -https://www.oceanexpert.org/expert/21331 -https://www.oceanexpert.org/expert/45509 -https://www.oceanexpert.org/expert/43341 -https://www.oceanexpert.org/expert/26455 -https://www.oceanexpert.org/expert/46876 -https://www.oceanexpert.org/expert/17391 -https://www.oceanexpert.org/event/2153 -https://www.oceanexpert.org/expert/33256 -https://www.oceanexpert.org/expert/43101 -https://www.oceanexpert.org/institution/17141 -https://www.oceanexpert.org/expert/33910 -https://www.oceanexpert.org/institution/21147 -https://www.oceanexpert.org/expert/40307 -https://www.oceanexpert.org/expert/16155 -https://www.oceanexpert.org/expert/24422 -https://www.oceanexpert.org/expert/33007 -https://www.oceanexpert.org/institution/18035 -https://www.oceanexpert.org/expert/37032 -https://www.oceanexpert.org/expert/7180 -https://www.oceanexpert.org/expert/40624 -https://www.oceanexpert.org/institution/8768 -https://www.oceanexpert.org/expert/27663 -https://www.oceanexpert.org/expert/47469 -https://www.oceanexpert.org/expert/20683 -https://www.oceanexpert.org/expert/27034 -https://www.oceanexpert.org/expert/31671 -https://www.oceanexpert.org/expert/19642 -https://www.oceanexpert.org/expert/25373 -https://www.oceanexpert.org/event/2914 -https://www.oceanexpert.org/institution/21474 -https://www.oceanexpert.org/expert/23789 -https://www.oceanexpert.org/institution/19478 -https://www.oceanexpert.org/expert/37364 -https://www.oceanexpert.org/expert/48469 -https://www.oceanexpert.org/expert/45836 -https://www.oceanexpert.org/expert/48820 -https://www.oceanexpert.org/institution/18917 -https://www.oceanexpert.org/expert/38264 -https://www.oceanexpert.org/event/2310 -https://www.oceanexpert.org/expert/48401 -https://www.oceanexpert.org/expert/24021 -https://www.oceanexpert.org/institution/21168 -https://www.oceanexpert.org/institution/18113 -https://www.oceanexpert.org/expert/16697 -https://www.oceanexpert.org/expert/23626 -https://www.oceanexpert.org/expert/34610 -https://www.oceanexpert.org/expert/27258 -https://www.oceanexpert.org/expert/35731 -https://www.oceanexpert.org/expert/26970 -https://www.oceanexpert.org/expert/25446 -https://www.oceanexpert.org/expert/32203 -https://www.oceanexpert.org/expert/30312 -https://www.oceanexpert.org/institution/18360 -https://www.oceanexpert.org/expert/16132 -https://www.oceanexpert.org/institution/20813 -https://www.oceanexpert.org/expert/34843 -https://www.oceanexpert.org/event/1366 -https://www.oceanexpert.org/expert/1276 -https://www.oceanexpert.org/institution/6795 -https://www.oceanexpert.org/expert/44249 -https://www.oceanexpert.org/expert/20042 -https://www.oceanexpert.org/event/301 -https://www.oceanexpert.org/institution/15030 -https://www.oceanexpert.org/expert/21937 -https://www.oceanexpert.org/expert/32511 -https://www.oceanexpert.org/expert/37470 -https://www.oceanexpert.org/expert/22398 -https://www.oceanexpert.org/expert/29381 -https://www.oceanexpert.org/expert/20313 -https://www.oceanexpert.org/expert/216 -https://www.oceanexpert.org/expert/44716 -https://www.oceanexpert.org/expert/21631 -https://www.oceanexpert.org/expert/44324 -https://www.oceanexpert.org/institution/6316 -https://www.oceanexpert.org/expert/26725 -https://www.oceanexpert.org/institution/21084 -https://www.oceanexpert.org/expert/45640 -https://www.oceanexpert.org/institution/19673 -https://www.oceanexpert.org/expert/45137 -https://www.oceanexpert.org/expert/43617 -https://www.oceanexpert.org/expert/18338 -https://www.oceanexpert.org/institution/7132 -https://www.oceanexpert.org/event/2224 -https://www.oceanexpert.org/expert/34409 -https://www.oceanexpert.org/event/2897 -https://www.oceanexpert.org/institution/19035 -https://www.oceanexpert.org/expert/22887 -https://www.oceanexpert.org/event/2192 -https://www.oceanexpert.org/expert/20714 -https://www.oceanexpert.org/event/388 -https://www.oceanexpert.org/expert/5166 -https://www.oceanexpert.org/expert/47819 -https://www.oceanexpert.org/expert/6762 -https://www.oceanexpert.org/expert/17495 -https://www.oceanexpert.org/expert/31014 -https://www.oceanexpert.org/expert/26503 -https://www.oceanexpert.org/expert/39331 -https://www.oceanexpert.org/institution/13556 -https://www.oceanexpert.org/expert/26855 -https://www.oceanexpert.org/institution/20097 -https://www.oceanexpert.org/expert/47811 -https://www.oceanexpert.org/institution/19108 -https://www.oceanexpert.org/expert/25902 -https://www.oceanexpert.org/expert/32601 -https://www.oceanexpert.org/expert/22735 -https://www.oceanexpert.org/expert/49068 -https://www.oceanexpert.org/expert/35283 -https://www.oceanexpert.org/expert/22660 -https://www.oceanexpert.org/expert/29828 -https://www.oceanexpert.org/event/1444 -https://www.oceanexpert.org/expert/18712 -https://www.oceanexpert.org/event/1085 -https://www.oceanexpert.org/expert/48536 -https://www.oceanexpert.org/expert/25131 -https://www.oceanexpert.org/expert/17706 -https://www.oceanexpert.org/expert/29810 -https://www.oceanexpert.org/expert/604 -https://www.oceanexpert.org/institution/14385 -https://www.oceanexpert.org/expert/32455 -https://www.oceanexpert.org/expert/28337 -https://www.oceanexpert.org/expert/14279 -https://www.oceanexpert.org/event/2706 -https://www.oceanexpert.org/expert/42827 -https://www.oceanexpert.org/event/2071 -https://www.oceanexpert.org/expert/36798 -https://www.oceanexpert.org/expert/22951 -https://www.oceanexpert.org/expert/32493 -https://www.oceanexpert.org/institution/16297 -https://www.oceanexpert.org/expert/4652 -https://www.oceanexpert.org/expert/38076 -https://www.oceanexpert.org/expert/40348 -https://www.oceanexpert.org/institution/15614 -https://www.oceanexpert.org/expert/36019 -https://www.oceanexpert.org/event/2965 -https://www.oceanexpert.org/expert/36362 -https://www.oceanexpert.org/institution/17635 -https://www.oceanexpert.org/expert/29829 -https://www.oceanexpert.org/expert/16874 -https://www.oceanexpert.org/expert/19404 -https://www.oceanexpert.org/expert/4384 -https://www.oceanexpert.org/expert/1050 -https://www.oceanexpert.org/expert/47295 -https://www.oceanexpert.org/institution/20529 -https://www.oceanexpert.org/expert/22611 -https://www.oceanexpert.org/expert/45788 -https://www.oceanexpert.org/institution/11981 -https://www.oceanexpert.org/expert/18941 -https://www.oceanexpert.org/expert/37515 -https://www.oceanexpert.org/expert/30525 -https://www.oceanexpert.org/expert/22919 -https://www.oceanexpert.org/institution/13295 -https://www.oceanexpert.org/expert/30983 -https://www.oceanexpert.org/expert/43154 -https://www.oceanexpert.org/expert/22884 -https://www.oceanexpert.org/expert/18617 -https://www.oceanexpert.org/event/503 -https://www.oceanexpert.org/expert/14281 -https://www.oceanexpert.org/expert/101 -https://www.oceanexpert.org/event/1825 -https://www.oceanexpert.org/expert/22838 -https://www.oceanexpert.org/institution/19122 -https://www.oceanexpert.org/expert/23647 -https://www.oceanexpert.org/institution/11863 -https://www.oceanexpert.org/expert/43158 -https://www.oceanexpert.org/institution/19394 -https://www.oceanexpert.org/expert/6839 -https://www.oceanexpert.org/expert/13324 -https://www.oceanexpert.org/expert/22239 -https://www.oceanexpert.org/institution/15748 -https://www.oceanexpert.org/expert/25823 -https://www.oceanexpert.org/expert/48758 -https://www.oceanexpert.org/expert/20192 -https://www.oceanexpert.org/expert/48392 -https://www.oceanexpert.org/event/1802 -https://www.oceanexpert.org/expert/45842 -https://www.oceanexpert.org/expert/12907 -https://www.oceanexpert.org/expert/19272 -https://www.oceanexpert.org/institution/12585 -https://www.oceanexpert.org/expert/8270 -https://www.oceanexpert.org/expert/12608 -https://www.oceanexpert.org/event/182 -https://www.oceanexpert.org/expert/34584 -https://www.oceanexpert.org/expert/1516 -https://www.oceanexpert.org/event/199 -https://www.oceanexpert.org/expert/44331 -https://www.oceanexpert.org/expert/45975 -https://www.oceanexpert.org/expert/44223 -https://www.oceanexpert.org/expert/39621 -https://www.oceanexpert.org/expert/25898 -https://www.oceanexpert.org/expert/32637 -https://www.oceanexpert.org/expert/39266 -https://www.oceanexpert.org/event/2633 -https://www.oceanexpert.org/expert/18292 -https://www.oceanexpert.org/expert/38158 -https://www.oceanexpert.org/event/866 -https://www.oceanexpert.org/institution/21274 -https://www.oceanexpert.org/expert/38312 -https://www.oceanexpert.org/institution/21762 -https://www.oceanexpert.org/expert/29806 -https://www.oceanexpert.org/expert/21287 -https://www.oceanexpert.org/expert/45255 -https://www.oceanexpert.org/institution/13033 -https://www.oceanexpert.org/expert/37189 -https://www.oceanexpert.org/expert/45952 -https://www.oceanexpert.org/expert/33063 -https://www.oceanexpert.org/expert/31774 -https://www.oceanexpert.org/expert/7034 -https://www.oceanexpert.org/event/1455 -https://www.oceanexpert.org/event/3194 -https://www.oceanexpert.org/institution/18531 -https://www.oceanexpert.org/expert/18828 -https://www.oceanexpert.org/institution/5389 -https://www.oceanexpert.org/expert/61 -https://www.oceanexpert.org/expert/19890 -https://www.oceanexpert.org/institution/10761 -https://www.oceanexpert.org/institution/8967 -https://www.oceanexpert.org/expert/30325 -https://www.oceanexpert.org/event/792 -https://www.oceanexpert.org/institution/5934 -https://www.oceanexpert.org/expert/23875 -https://www.oceanexpert.org/expert/6270 -https://www.oceanexpert.org/expert/45433 -https://www.oceanexpert.org/institution/15735 -https://www.oceanexpert.org/expert/43597 -https://www.oceanexpert.org/expert/47692 -https://www.oceanexpert.org/expert/36737 -https://www.oceanexpert.org/expert/37885 -https://www.oceanexpert.org/event/1060 -https://www.oceanexpert.org/institution/17547 -https://www.oceanexpert.org/expert/23303 -https://www.oceanexpert.org/institution/19364 -https://www.oceanexpert.org/event/1155 -https://www.oceanexpert.org/expert/23789 -https://www.oceanexpert.org/expert/27600 -https://www.oceanexpert.org/expert/30406 -https://www.oceanexpert.org/expert/45997 -https://www.oceanexpert.org/expert/47665 -https://www.oceanexpert.org/institution/13220 -https://www.oceanexpert.org/expert/37434 -https://www.oceanexpert.org/event/1897 -https://www.oceanexpert.org/event/1488 -https://www.oceanexpert.org/expert/25564 -https://www.oceanexpert.org/institution/12218 -https://www.oceanexpert.org/expert/42456 -https://www.oceanexpert.org/event/332 -https://www.oceanexpert.org/institution/20066 -https://www.oceanexpert.org/expert/7532 -https://www.oceanexpert.org/expert/30273 -https://www.oceanexpert.org/expert/22706 -https://www.oceanexpert.org/institution/18379 -https://www.oceanexpert.org/expert/48701 -https://www.oceanexpert.org/expert/46713 -https://www.oceanexpert.org/expert/39477 -https://www.oceanexpert.org/institution/11126 -https://www.oceanexpert.org/expert/26169 -https://www.oceanexpert.org/expert/14923 -https://www.oceanexpert.org/expert/46568 -https://www.oceanexpert.org/expert/44584 -https://www.oceanexpert.org/expert/29078 -https://www.oceanexpert.org/expert/30059 -https://www.oceanexpert.org/institution/18352 -https://www.oceanexpert.org/expert/23556 -https://www.oceanexpert.org/institution/21453 -https://www.oceanexpert.org/institution/18524 -https://www.oceanexpert.org/expert/39952 -https://www.oceanexpert.org/event/2760 -https://www.oceanexpert.org/expert/30187 -https://www.oceanexpert.org/expert/20272 -https://www.oceanexpert.org/expert/36609 -https://www.oceanexpert.org/expert/26875 -https://www.oceanexpert.org/event/1401 -https://www.oceanexpert.org/expert/24441 -https://www.oceanexpert.org/expert/43504 -https://www.oceanexpert.org/institution/21129 -https://www.oceanexpert.org/event/1849 -https://www.oceanexpert.org/expert/47058 -https://www.oceanexpert.org/expert/35071 -https://www.oceanexpert.org/expert/30476 -https://www.oceanexpert.org/expert/44373 -https://www.oceanexpert.org/expert/40352 -https://www.oceanexpert.org/expert/2258 -https://www.oceanexpert.org/institution/9303 -https://www.oceanexpert.org/expert/22523 -https://www.oceanexpert.org/expert/38546 -https://www.oceanexpert.org/expert/30073 -https://www.oceanexpert.org/institution/19455 -https://www.oceanexpert.org/event/1373 -https://www.oceanexpert.org/event/1113 -https://www.oceanexpert.org/institution/18144 -https://www.oceanexpert.org/expert/36961 -https://www.oceanexpert.org/expert/19894 -https://www.oceanexpert.org/institution/17985 -https://www.oceanexpert.org/expert/44534 -https://www.oceanexpert.org/institution/12875 -https://www.oceanexpert.org/institution/18296 -https://www.oceanexpert.org/expert/32792 -https://www.oceanexpert.org/expert/27332 -https://www.oceanexpert.org/expert/37194 -https://www.oceanexpert.org/expert/46999 -https://www.oceanexpert.org/expert/21836 -https://www.oceanexpert.org/expert/41731 -https://www.oceanexpert.org/expert/48526 -https://www.oceanexpert.org/expert/39320 -https://www.oceanexpert.org/expert/29880 -https://www.oceanexpert.org/expert/44213 -https://www.oceanexpert.org/expert/36746 -https://www.oceanexpert.org/expert/19510 -https://www.oceanexpert.org/institution/13045 -https://www.oceanexpert.org/event/808 -https://www.oceanexpert.org/institution/22131 -https://www.oceanexpert.org/expert/24778 -https://www.oceanexpert.org/expert/27637 -https://www.oceanexpert.org/expert/17356 -https://www.oceanexpert.org/expert/31661 -https://www.oceanexpert.org/expert/23277 -https://www.oceanexpert.org/expert/17303 -https://www.oceanexpert.org/institution/14393 -https://www.oceanexpert.org/institution/22071 -https://www.oceanexpert.org/institution/15398 -https://www.oceanexpert.org/expert/17041 -https://www.oceanexpert.org/institution/17029 -https://www.oceanexpert.org/institution/15453 -https://www.oceanexpert.org/expert/24395 -https://www.oceanexpert.org/expert/25593 -https://www.oceanexpert.org/institution/17898 -https://www.oceanexpert.org/expert/49057 -https://www.oceanexpert.org/expert/37154 -https://www.oceanexpert.org/event/1300 -https://www.oceanexpert.org/event/1529 -https://www.oceanexpert.org/institution/16310 -https://www.oceanexpert.org/expert/43531 -https://www.oceanexpert.org/expert/24330 -https://www.oceanexpert.org/expert/23878 -https://www.oceanexpert.org/expert/35000 -https://www.oceanexpert.org/expert/22982 -https://www.oceanexpert.org/expert/27676 -https://www.oceanexpert.org/expert/20163 -https://www.oceanexpert.org/expert/18327 -https://www.oceanexpert.org/expert/23244 -https://www.oceanexpert.org/event/1206 -https://www.oceanexpert.org/expert/19047 -https://www.oceanexpert.org/expert/38352 -https://www.oceanexpert.org/expert/33505 -https://www.oceanexpert.org/event/2100 -https://www.oceanexpert.org/expert/7270 -https://www.oceanexpert.org/expert/40923 -https://www.oceanexpert.org/institution/14962 -https://www.oceanexpert.org/institution/15675 -https://www.oceanexpert.org/expert/26078 -https://www.oceanexpert.org/expert/21360 -https://www.oceanexpert.org/expert/35731 -https://www.oceanexpert.org/institution/17774 -https://www.oceanexpert.org/institution/20031 -https://www.oceanexpert.org/expert/17281 -https://www.oceanexpert.org/expert/24220 -https://www.oceanexpert.org/institution/20617 -https://www.oceanexpert.org/expert/47541 -https://www.oceanexpert.org/institution/18167 -https://www.oceanexpert.org/expert/17988 -https://www.oceanexpert.org/expert/36552 -https://www.oceanexpert.org/expert/10828 -https://www.oceanexpert.org/expert/22928 -https://www.oceanexpert.org/expert/37813 -https://www.oceanexpert.org/institution/19825 -https://www.oceanexpert.org/institution/10178 -https://www.oceanexpert.org/expert/23639 -https://www.oceanexpert.org/expert/45182 -https://www.oceanexpert.org/institution/18498 -https://www.oceanexpert.org/expert/7263 -https://www.oceanexpert.org/expert/25569 -https://www.oceanexpert.org/institution/16212 -https://www.oceanexpert.org/expert/20607 -https://www.oceanexpert.org/event/1166 -https://www.oceanexpert.org/expert/7740 -https://www.oceanexpert.org/expert/38355 -https://www.oceanexpert.org/expert/45887 -https://www.oceanexpert.org/expert/46988 -https://www.oceanexpert.org/expert/43024 -https://www.oceanexpert.org/expert/39032 -https://www.oceanexpert.org/expert/32473 -https://www.oceanexpert.org/expert/15286 -https://www.oceanexpert.org/expert/31550 -https://www.oceanexpert.org/event/2116 -https://www.oceanexpert.org/expert/44205 -https://www.oceanexpert.org/institution/14737 -https://www.oceanexpert.org/expert/16573 -https://www.oceanexpert.org/expert/48037 -https://www.oceanexpert.org/expert/16957 -https://www.oceanexpert.org/expert/21089 -https://www.oceanexpert.org/institution/20116 -https://www.oceanexpert.org/expert/13602 -https://www.oceanexpert.org/institution/11227 -https://www.oceanexpert.org/expert/33703 -https://www.oceanexpert.org/expert/34291 -https://www.oceanexpert.org/event/1121 -https://www.oceanexpert.org/expert/44250 -https://www.oceanexpert.org/expert/25578 -https://www.oceanexpert.org/institution/10751 -https://www.oceanexpert.org/expert/4086 -https://www.oceanexpert.org/institution/19384 -https://www.oceanexpert.org/expert/24441 -https://www.oceanexpert.org/expert/7360 -https://www.oceanexpert.org/expert/20829 -https://www.oceanexpert.org/expert/36019 -https://www.oceanexpert.org/institution/19344 -https://www.oceanexpert.org/expert/20781 -https://www.oceanexpert.org/expert/22037 -https://www.oceanexpert.org/expert/47546 -https://www.oceanexpert.org/institution/9235 -https://www.oceanexpert.org/event/2311 -https://www.oceanexpert.org/event/3071 -https://www.oceanexpert.org/expert/29962 -https://www.oceanexpert.org/expert/48871 -https://www.oceanexpert.org/expert/19765 -https://www.oceanexpert.org/event/1413 -https://www.oceanexpert.org/expert/24005 -https://www.oceanexpert.org/expert/33358 -https://www.oceanexpert.org/institution/6713 -https://www.oceanexpert.org/expert/1943 -https://www.oceanexpert.org/expert/46948 -https://www.oceanexpert.org/expert/36683 -https://www.oceanexpert.org/expert/14050 -https://www.oceanexpert.org/expert/23654 -https://www.oceanexpert.org/institution/9816 -https://www.oceanexpert.org/institution/21979 -https://www.oceanexpert.org/institution/18929 -https://www.oceanexpert.org/expert/35541 -https://www.oceanexpert.org/expert/16967 -https://www.oceanexpert.org/expert/18712 -https://www.oceanexpert.org/institution/9089 -https://www.oceanexpert.org/expert/25338 -https://www.oceanexpert.org/expert/38171 -https://www.oceanexpert.org/expert/21543 -https://www.oceanexpert.org/institution/13020 -https://www.oceanexpert.org/expert/17380 -https://www.oceanexpert.org/institution/21857 -https://www.oceanexpert.org/expert/39567 -https://www.oceanexpert.org/expert/4664 -https://www.oceanexpert.org/expert/20244 -https://www.oceanexpert.org/expert/27151 -https://www.oceanexpert.org/expert/30370 -https://www.oceanexpert.org/expert/23692 -https://www.oceanexpert.org/expert/22364 -https://www.oceanexpert.org/institution/13524 -https://www.oceanexpert.org/expert/17026 -https://www.oceanexpert.org/expert/46955 -https://www.oceanexpert.org/expert/44803 -https://www.oceanexpert.org/expert/172 -https://www.oceanexpert.org/event/3300 -https://www.oceanexpert.org/expert/27449 -https://www.oceanexpert.org/institution/13986 -https://www.oceanexpert.org/expert/42717 -https://www.oceanexpert.org/expert/23423 -https://www.oceanexpert.org/expert/12847 -https://www.oceanexpert.org/expert/25916 -https://www.oceanexpert.org/expert/21416 -https://www.oceanexpert.org/expert/26692 -https://www.oceanexpert.org/expert/42436 -https://www.oceanexpert.org/event/1437 -https://www.oceanexpert.org/expert/23420 -https://www.oceanexpert.org/expert/27618 -https://www.oceanexpert.org/expert/43683 -https://www.oceanexpert.org/expert/23606 -https://www.oceanexpert.org/institution/19274 -https://www.oceanexpert.org/expert/34458 -https://www.oceanexpert.org/expert/17272 -https://www.oceanexpert.org/expert/27207 -https://www.oceanexpert.org/institution/16324 -https://www.oceanexpert.org/institution/13256 -https://www.oceanexpert.org/expert/45406 -https://www.oceanexpert.org/institution/17120 -https://www.oceanexpert.org/expert/32203 -https://www.oceanexpert.org/expert/1981 -https://www.oceanexpert.org/expert/27822 -https://www.oceanexpert.org/expert/46479 -https://www.oceanexpert.org/expert/12330 -https://www.oceanexpert.org/event/1560 -https://www.oceanexpert.org/expert/36626 -https://www.oceanexpert.org/expert/33091 -https://www.oceanexpert.org/expert/22480 -https://www.oceanexpert.org/institution/13083 -https://www.oceanexpert.org/expert/44111 -https://www.oceanexpert.org/expert/34536 -https://www.oceanexpert.org/expert/13539 -https://www.oceanexpert.org/event/164 -https://www.oceanexpert.org/institution/19281 -https://www.oceanexpert.org/expert/24423 -https://www.oceanexpert.org/institution/19522 -https://www.oceanexpert.org/institution/12860 -https://www.oceanexpert.org/expert/46540 -https://www.oceanexpert.org/expert/19203 -https://www.oceanexpert.org/expert/37309 -https://www.oceanexpert.org/event/2489 -https://www.oceanexpert.org/expert/33000 -https://www.oceanexpert.org/institution/14885 -https://www.oceanexpert.org/expert/36952 -https://www.oceanexpert.org/expert/34269 -https://www.oceanexpert.org/expert/27422 -https://www.oceanexpert.org/expert/47925 -https://www.oceanexpert.org/expert/44095 -https://www.oceanexpert.org/expert/30672 -https://www.oceanexpert.org/expert/47575 -https://www.oceanexpert.org/expert/17385 -https://www.oceanexpert.org/expert/25363 -https://www.oceanexpert.org/institution/12687 -https://www.oceanexpert.org/expert/25280 -https://www.oceanexpert.org/expert/31866 -https://www.oceanexpert.org/institution/21696 -https://www.oceanexpert.org/expert/17644 -https://www.oceanexpert.org/expert/34511 -https://www.oceanexpert.org/event/210 -https://www.oceanexpert.org/institution/10263 -https://www.oceanexpert.org/expert/37242 -https://www.oceanexpert.org/institution/11571 -https://www.oceanexpert.org/expert/44514 -https://www.oceanexpert.org/event/322 -https://www.oceanexpert.org/institution/19803 -https://www.oceanexpert.org/expert/24478 -https://www.oceanexpert.org/expert/25735 -https://www.oceanexpert.org/expert/47358 -https://www.oceanexpert.org/expert/33347 -https://www.oceanexpert.org/expert/2620 -https://www.oceanexpert.org/event/3299 -https://www.oceanexpert.org/institution/21572 -https://www.oceanexpert.org/expert/46647 -https://www.oceanexpert.org/expert/44495 -https://www.oceanexpert.org/institution/19341 -https://www.oceanexpert.org/event/1326 -https://www.oceanexpert.org/expert/29495 -https://www.oceanexpert.org/expert/28402 -https://www.oceanexpert.org/expert/17150 -https://www.oceanexpert.org/institution/14067 -https://www.oceanexpert.org/expert/32470 -https://www.oceanexpert.org/expert/32564 -https://www.oceanexpert.org/expert/45351 -https://www.oceanexpert.org/expert/34139 -https://www.oceanexpert.org/event/181 -https://www.oceanexpert.org/expert/45722 -https://www.oceanexpert.org/institution/20078 -https://www.oceanexpert.org/institution/19731 -https://www.oceanexpert.org/expert/44917 -https://www.oceanexpert.org/event/2178 -https://www.oceanexpert.org/expert/21977 -https://www.oceanexpert.org/expert/16912 -https://www.oceanexpert.org/institution/15497 -https://www.oceanexpert.org/expert/29481 -https://www.oceanexpert.org/expert/750 -https://www.oceanexpert.org/institution/10663 -https://www.oceanexpert.org/expert/29857 -https://www.oceanexpert.org/expert/23609 -https://www.oceanexpert.org/institution/18504 -https://www.oceanexpert.org/expert/12485 -https://www.oceanexpert.org/expert/48302 -https://www.oceanexpert.org/expert/37017 -https://www.oceanexpert.org/expert/46689 -https://www.oceanexpert.org/expert/32456 -https://www.oceanexpert.org/event/2963 -https://www.oceanexpert.org/expert/30012 -https://www.oceanexpert.org/expert/31052 -https://www.oceanexpert.org/expert/17997 -https://www.oceanexpert.org/expert/24520 -https://www.oceanexpert.org/expert/32372 -https://www.oceanexpert.org/institution/16211 -https://www.oceanexpert.org/expert/15574 -https://www.oceanexpert.org/expert/14897 -https://www.oceanexpert.org/expert/40884 -https://www.oceanexpert.org/expert/4529 -https://www.oceanexpert.org/expert/224 -https://www.oceanexpert.org/expert/15855 -https://www.oceanexpert.org/expert/20560 -https://www.oceanexpert.org/expert/42753 -https://www.oceanexpert.org/expert/32557 -https://www.oceanexpert.org/expert/21748 -https://www.oceanexpert.org/expert/36256 -https://www.oceanexpert.org/event/411 -https://www.oceanexpert.org/expert/20021 -https://www.oceanexpert.org/expert/19199 -https://www.oceanexpert.org/expert/17355 -https://www.oceanexpert.org/institution/13279 -https://www.oceanexpert.org/expert/5843 -https://www.oceanexpert.org/expert/9660 -https://www.oceanexpert.org/expert/731 -https://www.oceanexpert.org/institution/19341 -https://www.oceanexpert.org/institution/20832 -https://www.oceanexpert.org/institution/11309 -https://www.oceanexpert.org/institution/20082 -https://www.oceanexpert.org/event/1120 -https://www.oceanexpert.org/expert/21307 -https://www.oceanexpert.org/expert/14822 -https://www.oceanexpert.org/expert/34786 -https://www.oceanexpert.org/institution/16187 -https://www.oceanexpert.org/expert/21157 -https://www.oceanexpert.org/expert/22184 -https://www.oceanexpert.org/institution/20124 -https://www.oceanexpert.org/expert/25372 -https://www.oceanexpert.org/expert/37932 -https://www.oceanexpert.org/expert/14155 -https://www.oceanexpert.org/expert/48537 -https://www.oceanexpert.org/expert/31857 -https://www.oceanexpert.org/expert/25817 -https://www.oceanexpert.org/expert/39435 -https://www.oceanexpert.org/expert/12680 -https://www.oceanexpert.org/institution/17785 -https://www.oceanexpert.org/expert/4136 -https://www.oceanexpert.org/expert/48400 -https://www.oceanexpert.org/event/671 -https://www.oceanexpert.org/institution/21869 -https://www.oceanexpert.org/expert/29202 -https://www.oceanexpert.org/expert/46673 -https://www.oceanexpert.org/expert/43074 -https://www.oceanexpert.org/expert/26411 -https://www.oceanexpert.org/expert/48337 -https://www.oceanexpert.org/expert/6514 -https://www.oceanexpert.org/institution/12317 -https://www.oceanexpert.org/expert/9501 -https://www.oceanexpert.org/expert/34064 -https://www.oceanexpert.org/expert/39918 -https://www.oceanexpert.org/expert/32000 -https://www.oceanexpert.org/expert/22938 -https://www.oceanexpert.org/institution/10599 -https://www.oceanexpert.org/institution/20564 -https://www.oceanexpert.org/expert/21789 -https://www.oceanexpert.org/institution/15927 -https://www.oceanexpert.org/expert/34842 -https://www.oceanexpert.org/expert/13900 -https://www.oceanexpert.org/expert/16144 -https://www.oceanexpert.org/event/3267 -https://www.oceanexpert.org/expert/36044 -https://www.oceanexpert.org/institution/11510 -https://www.oceanexpert.org/expert/26008 -https://www.oceanexpert.org/expert/44852 -https://www.oceanexpert.org/institution/21144 -https://www.oceanexpert.org/expert/17135 -https://www.oceanexpert.org/expert/27154 -https://www.oceanexpert.org/event/90 -https://www.oceanexpert.org/event/1203 -https://www.oceanexpert.org/expert/46447 -https://www.oceanexpert.org/institution/17957 -https://www.oceanexpert.org/expert/29818 -https://www.oceanexpert.org/expert/24832 -https://www.oceanexpert.org/expert/7010 -https://www.oceanexpert.org/institution/10140 -https://www.oceanexpert.org/event/810 -https://www.oceanexpert.org/expert/28435 -https://www.oceanexpert.org/institution/19612 -https://www.oceanexpert.org/expert/24279 -https://www.oceanexpert.org/institution/17633 -https://www.oceanexpert.org/expert/12166 -https://www.oceanexpert.org/expert/40271 -https://www.oceanexpert.org/institution/15152 -https://www.oceanexpert.org/expert/45801 -https://www.oceanexpert.org/expert/33230 -https://www.oceanexpert.org/expert/21043 -https://www.oceanexpert.org/institution/21200 -https://www.oceanexpert.org/expert/24640 -https://www.oceanexpert.org/event/292 -https://www.oceanexpert.org/expert/20681 -https://www.oceanexpert.org/expert/19166 -https://www.oceanexpert.org/institution/19431 -https://www.oceanexpert.org/expert/10832 -https://www.oceanexpert.org/expert/27233 -https://www.oceanexpert.org/expert/19578 -https://www.oceanexpert.org/event/342 -https://www.oceanexpert.org/institution/16154 -https://www.oceanexpert.org/expert/23319 -https://www.oceanexpert.org/expert/19284 -https://www.oceanexpert.org/institution/14236 -https://www.oceanexpert.org/expert/640 -https://www.oceanexpert.org/expert/31831 -https://www.oceanexpert.org/institution/10656 -https://www.oceanexpert.org/institution/12951 -https://www.oceanexpert.org/institution/21922 -https://www.oceanexpert.org/expert/8784 -https://www.oceanexpert.org/expert/30132 -https://www.oceanexpert.org/expert/12461 -https://www.oceanexpert.org/expert/3827 -https://www.oceanexpert.org/expert/24891 -https://www.oceanexpert.org/institution/7409 -https://www.oceanexpert.org/expert/29857 -https://www.oceanexpert.org/expert/47659 -https://www.oceanexpert.org/expert/36473 -https://www.oceanexpert.org/expert/23418 -https://www.oceanexpert.org/expert/18844 -https://www.oceanexpert.org/institution/19529 -https://www.oceanexpert.org/expert/43800 -https://www.oceanexpert.org/institution/21572 -https://www.oceanexpert.org/expert/10285 -https://www.oceanexpert.org/expert/35200 -https://www.oceanexpert.org/expert/43061 -https://www.oceanexpert.org/expert/5200 -https://www.oceanexpert.org/expert/38606 -https://www.oceanexpert.org/expert/19436 -https://www.oceanexpert.org/expert/30181 -https://www.oceanexpert.org/expert/44657 -https://www.oceanexpert.org/expert/39918 -https://www.oceanexpert.org/expert/45065 -https://www.oceanexpert.org/event/265 -https://www.oceanexpert.org/expert/29554 -https://www.oceanexpert.org/event/1847 -https://www.oceanexpert.org/expert/38858 -https://www.oceanexpert.org/event/443 -https://www.oceanexpert.org/expert/14285 -https://www.oceanexpert.org/expert/28491 -https://www.oceanexpert.org/institution/17138 -https://www.oceanexpert.org/expert/3428 -https://www.oceanexpert.org/expert/21160 -https://www.oceanexpert.org/expert/37982 -https://www.oceanexpert.org/institution/11578 -https://www.oceanexpert.org/institution/8371 -https://www.oceanexpert.org/expert/18211 -https://www.oceanexpert.org/expert/34207 -https://www.oceanexpert.org/event/1667 -https://www.oceanexpert.org/expert/35003 -https://www.oceanexpert.org/expert/8232 -https://www.oceanexpert.org/institution/9986 -https://www.oceanexpert.org/expert/34365 -https://www.oceanexpert.org/event/2605 -https://www.oceanexpert.org/institution/17012 -https://www.oceanexpert.org/expert/12448 -https://www.oceanexpert.org/institution/14185 -https://www.oceanexpert.org/institution/14105 -https://www.oceanexpert.org/expert/25191 -https://www.oceanexpert.org/expert/19967 -https://www.oceanexpert.org/expert/36780 -https://www.oceanexpert.org/expert/27586 -https://www.oceanexpert.org/expert/30858 -https://www.oceanexpert.org/expert/46028 -https://www.oceanexpert.org/expert/38703 -https://www.oceanexpert.org/expert/23851 -https://www.oceanexpert.org/expert/24102 -https://www.oceanexpert.org/expert/20523 -https://www.oceanexpert.org/expert/44736 -https://www.oceanexpert.org/expert/6909 -https://www.oceanexpert.org/institution/16366 -https://www.oceanexpert.org/expert/47736 -https://www.oceanexpert.org/event/695 -https://www.oceanexpert.org/expert/48185 -https://www.oceanexpert.org/event/251 -https://www.oceanexpert.org/expert/48032 -https://www.oceanexpert.org/expert/32546 -https://www.oceanexpert.org/expert/29672 -https://www.oceanexpert.org/expert/34055 -https://www.oceanexpert.org/expert/22625 -https://www.oceanexpert.org/institution/18533 -https://www.oceanexpert.org/expert/698 -https://www.oceanexpert.org/expert/19628 -https://www.oceanexpert.org/expert/15407 -https://www.oceanexpert.org/expert/38252 -https://www.oceanexpert.org/expert/48425 -https://www.oceanexpert.org/expert/37137 -https://www.oceanexpert.org/expert/6919 -https://www.oceanexpert.org/institution/15983 -https://www.oceanexpert.org/expert/38864 -https://www.oceanexpert.org/expert/47260 -https://www.oceanexpert.org/expert/31628 -https://www.oceanexpert.org/expert/34014 -https://www.oceanexpert.org/expert/45901 -https://www.oceanexpert.org/expert/2775 -https://www.oceanexpert.org/event/3285 -https://www.oceanexpert.org/expert/20535 -https://www.oceanexpert.org/expert/32545 -https://www.oceanexpert.org/event/1191 -https://www.oceanexpert.org/expert/11443 -https://www.oceanexpert.org/expert/44876 -https://www.oceanexpert.org/expert/30931 -https://www.oceanexpert.org/expert/812 -https://www.oceanexpert.org/expert/32650 -https://www.oceanexpert.org/institution/7301 -https://www.oceanexpert.org/expert/35520 -https://www.oceanexpert.org/institution/13943 -https://www.oceanexpert.org/institution/21355 -https://www.oceanexpert.org/event/1322 -https://www.oceanexpert.org/expert/1132 -https://www.oceanexpert.org/expert/42585 -https://www.oceanexpert.org/expert/21160 -https://www.oceanexpert.org/expert/35055 -https://www.oceanexpert.org/event/46 -https://www.oceanexpert.org/institution/7341 -https://www.oceanexpert.org/expert/33560 -https://www.oceanexpert.org/expert/47026 -https://www.oceanexpert.org/expert/43531 -https://www.oceanexpert.org/expert/18276 -https://www.oceanexpert.org/expert/45086 -https://www.oceanexpert.org/institution/17599 -https://www.oceanexpert.org/expert/40256 -https://www.oceanexpert.org/expert/32244 -https://www.oceanexpert.org/institution/19377 -https://www.oceanexpert.org/expert/47278 -https://www.oceanexpert.org/expert/42495 -https://www.oceanexpert.org/expert/45522 -https://www.oceanexpert.org/event/3066 -https://www.oceanexpert.org/expert/8862 -https://www.oceanexpert.org/expert/20822 -https://www.oceanexpert.org/expert/32213 -https://www.oceanexpert.org/expert/33065 -https://www.oceanexpert.org/institution/11067 -https://www.oceanexpert.org/expert/20834 -https://www.oceanexpert.org/expert/33777 -https://www.oceanexpert.org/institution/15238 -https://www.oceanexpert.org/expert/20309 -https://www.oceanexpert.org/expert/47207 -https://www.oceanexpert.org/expert/23665 -https://www.oceanexpert.org/expert/8007 -https://www.oceanexpert.org/expert/40294 -https://www.oceanexpert.org/expert/46881 -https://www.oceanexpert.org/institution/17008 -https://www.oceanexpert.org/institution/12872 -https://www.oceanexpert.org/expert/11386 -https://www.oceanexpert.org/expert/6664 -https://www.oceanexpert.org/expert/42785 -https://www.oceanexpert.org/event/386 -https://www.oceanexpert.org/expert/14696 -https://www.oceanexpert.org/expert/29983 -https://www.oceanexpert.org/expert/26565 -https://www.oceanexpert.org/institution/18307 -https://www.oceanexpert.org/expert/42566 -https://www.oceanexpert.org/expert/11993 -https://www.oceanexpert.org/expert/16496 -https://www.oceanexpert.org/expert/28155 -https://www.oceanexpert.org/expert/21790 -https://www.oceanexpert.org/expert/27948 -https://www.oceanexpert.org/institution/16857 -https://www.oceanexpert.org/institution/14266 -https://www.oceanexpert.org/expert/42816 -https://www.oceanexpert.org/expert/235 -https://www.oceanexpert.org/expert/33241 -https://www.oceanexpert.org/institution/18837 -https://www.oceanexpert.org/expert/34340 -https://www.oceanexpert.org/expert/5059 -https://www.oceanexpert.org/expert/13995 -https://www.oceanexpert.org/event/1216 -https://www.oceanexpert.org/expert/6537 -https://www.oceanexpert.org/expert/36427 -https://www.oceanexpert.org/event/1895 -https://www.oceanexpert.org/expert/20656 -https://www.oceanexpert.org/institution/7432 -https://www.oceanexpert.org/expert/42938 -https://www.oceanexpert.org/expert/24549 -https://www.oceanexpert.org/expert/36807 -https://www.oceanexpert.org/expert/29106 -https://www.oceanexpert.org/expert/758 -https://www.oceanexpert.org/expert/34597 -https://www.oceanexpert.org/expert/18873 -https://www.oceanexpert.org/event/468 -https://www.oceanexpert.org/expert/14294 -https://www.oceanexpert.org/institution/14085 -https://www.oceanexpert.org/expert/22383 -https://www.oceanexpert.org/institution/18117 -https://www.oceanexpert.org/event/414 -https://www.oceanexpert.org/expert/32714 -https://www.oceanexpert.org/expert/43799 -https://www.oceanexpert.org/expert/18646 -https://www.oceanexpert.org/expert/39579 -https://www.oceanexpert.org/expert/35188 -https://www.oceanexpert.org/institution/18611 -https://www.oceanexpert.org/expert/26265 -https://www.oceanexpert.org/institution/21821 -https://www.oceanexpert.org/expert/44355 -https://www.oceanexpert.org/expert/19783 -https://www.oceanexpert.org/expert/36674 -https://www.oceanexpert.org/event/1154 -https://www.oceanexpert.org/expert/19304 -https://www.oceanexpert.org/expert/36438 -https://www.oceanexpert.org/expert/16971 -https://www.oceanexpert.org/event/2787 -https://www.oceanexpert.org/expert/25048 -https://www.oceanexpert.org/expert/7510 -https://www.oceanexpert.org/institution/13698 -https://www.oceanexpert.org/expert/20702 -https://www.oceanexpert.org/expert/35076 -https://www.oceanexpert.org/expert/37100 -https://www.oceanexpert.org/expert/27040 -https://www.oceanexpert.org/institution/11843 -https://www.oceanexpert.org/expert/38358 -https://www.oceanexpert.org/institution/20579 -https://www.oceanexpert.org/expert/21521 -https://www.oceanexpert.org/expert/42816 -https://www.oceanexpert.org/expert/20091 -https://www.oceanexpert.org/institution/20256 -https://www.oceanexpert.org/institution/19876 -https://www.oceanexpert.org/institution/21190 -https://www.oceanexpert.org/expert/43896 -https://www.oceanexpert.org/expert/19022 -https://www.oceanexpert.org/institution/11836 -https://www.oceanexpert.org/expert/46700 -https://www.oceanexpert.org/institution/18211 -https://www.oceanexpert.org/expert/25341 -https://www.oceanexpert.org/expert/39408 -https://www.oceanexpert.org/expert/48313 -https://www.oceanexpert.org/expert/22221 -https://www.oceanexpert.org/expert/45844 -https://www.oceanexpert.org/expert/37327 -https://www.oceanexpert.org/institution/13209 -https://www.oceanexpert.org/institution/18050 -https://www.oceanexpert.org/expert/46542 -https://www.oceanexpert.org/expert/19355 -https://www.oceanexpert.org/expert/28383 -https://www.oceanexpert.org/event/295 -https://www.oceanexpert.org/expert/25481 -https://www.oceanexpert.org/expert/43256 -https://www.oceanexpert.org/expert/26042 -https://www.oceanexpert.org/expert/36963 -https://www.oceanexpert.org/institution/17610 -https://www.oceanexpert.org/expert/20143 -https://www.oceanexpert.org/institution/10319 -https://www.oceanexpert.org/event/475 -https://www.oceanexpert.org/event/3172 -https://www.oceanexpert.org/event/1147 -https://www.oceanexpert.org/expert/22721 -https://www.oceanexpert.org/institution/9825 -https://www.oceanexpert.org/expert/26603 -https://www.oceanexpert.org/expert/12639 -https://www.oceanexpert.org/event/1129 -https://www.oceanexpert.org/expert/17096 -https://www.oceanexpert.org/expert/26496 -https://www.oceanexpert.org/institution/20619 -https://www.oceanexpert.org/expert/11743 -https://www.oceanexpert.org/expert/42550 -https://www.oceanexpert.org/expert/22032 -https://www.oceanexpert.org/expert/34696 -https://www.oceanexpert.org/expert/22162 -https://www.oceanexpert.org/expert/24572 -https://www.oceanexpert.org/institution/16875 -https://www.oceanexpert.org/expert/34532 -https://www.oceanexpert.org/expert/32061 -https://www.oceanexpert.org/institution/20067 -https://www.oceanexpert.org/expert/17377 -https://www.oceanexpert.org/institution/6332 -https://www.oceanexpert.org/institution/21766 -https://www.oceanexpert.org/institution/19785 -https://www.oceanexpert.org/expert/34792 -https://www.oceanexpert.org/expert/38114 -https://www.oceanexpert.org/expert/28253 -https://www.oceanexpert.org/institution/19104 -https://www.oceanexpert.org/institution/10864 -https://www.oceanexpert.org/expert/47879 -https://www.oceanexpert.org/institution/19991 -https://www.oceanexpert.org/expert/45690 -https://www.oceanexpert.org/event/2630 -https://www.oceanexpert.org/expert/25750 -https://www.oceanexpert.org/institution/21474 -https://www.oceanexpert.org/expert/39408 -https://www.oceanexpert.org/expert/37907 -https://www.oceanexpert.org/expert/19099 -https://www.oceanexpert.org/expert/17398 -https://www.oceanexpert.org/expert/16485 -https://www.oceanexpert.org/event/2130 -https://www.oceanexpert.org/expert/37302 -https://www.oceanexpert.org/expert/9163 -https://www.oceanexpert.org/expert/48098 -https://www.oceanexpert.org/institution/18018 -https://www.oceanexpert.org/expert/27917 -https://www.oceanexpert.org/expert/46871 -https://www.oceanexpert.org/expert/30327 -https://www.oceanexpert.org/institution/15667 -https://www.oceanexpert.org/expert/4401 -https://www.oceanexpert.org/expert/20744 -https://www.oceanexpert.org/expert/24390 -https://www.oceanexpert.org/institution/19347 -https://www.oceanexpert.org/expert/12096 -https://www.oceanexpert.org/expert/42845 -https://www.oceanexpert.org/expert/34947 -https://www.oceanexpert.org/institution/13295 -https://www.oceanexpert.org/expert/31060 -https://www.oceanexpert.org/expert/19801 -https://www.oceanexpert.org/expert/21447 -https://www.oceanexpert.org/event/2243 -https://www.oceanexpert.org/expert/168 -https://www.oceanexpert.org/expert/20721 -https://www.oceanexpert.org/expert/18592 -https://www.oceanexpert.org/expert/42758 -https://www.oceanexpert.org/expert/28121 -https://www.oceanexpert.org/expert/25483 -https://www.oceanexpert.org/institution/18574 -https://www.oceanexpert.org/institution/21597 -https://www.oceanexpert.org/institution/6993 -https://www.oceanexpert.org/expert/48600 -https://www.oceanexpert.org/event/2113 -https://www.oceanexpert.org/institution/18081 -https://www.oceanexpert.org/expert/48259 -https://www.oceanexpert.org/institution/19302 -https://www.oceanexpert.org/institution/19863 -https://www.oceanexpert.org/event/2942 -https://www.oceanexpert.org/expert/36518 -https://www.oceanexpert.org/institution/21435 -https://www.oceanexpert.org/expert/45752 -https://www.oceanexpert.org/institution/14500 -https://www.oceanexpert.org/institution/12668 -https://www.oceanexpert.org/event/2030 -https://www.oceanexpert.org/institution/16991 -https://www.oceanexpert.org/expert/20237 -https://www.oceanexpert.org/expert/26622 -https://www.oceanexpert.org/expert/44250 -https://www.oceanexpert.org/expert/19075 -https://www.oceanexpert.org/expert/48093 -https://www.oceanexpert.org/expert/11925 -https://www.oceanexpert.org/expert/37026 -https://www.oceanexpert.org/event/3032 -https://www.oceanexpert.org/expert/35383 -https://www.oceanexpert.org/expert/46534 -https://www.oceanexpert.org/institution/18961 -https://www.oceanexpert.org/institution/12116 -https://www.oceanexpert.org/event/1504 -https://www.oceanexpert.org/event/3241 -https://www.oceanexpert.org/expert/36903 -https://www.oceanexpert.org/expert/21707 -https://www.oceanexpert.org/expert/35479 -https://www.oceanexpert.org/event/2931 -https://www.oceanexpert.org/expert/25860 -https://www.oceanexpert.org/expert/35765 -https://www.oceanexpert.org/expert/34116 -https://www.oceanexpert.org/expert/785 -https://www.oceanexpert.org/expert/22926 -https://www.oceanexpert.org/expert/42926 -https://www.oceanexpert.org/expert/19443 -https://www.oceanexpert.org/expert/27037 -https://www.oceanexpert.org/expert/20689 -https://www.oceanexpert.org/expert/32696 -https://www.oceanexpert.org/expert/45610 -https://www.oceanexpert.org/expert/17527 -https://www.oceanexpert.org/event/1811 -https://www.oceanexpert.org/expert/29080 -https://www.oceanexpert.org/institution/14414 -https://www.oceanexpert.org/expert/48131 -https://www.oceanexpert.org/institution/19304 -https://www.oceanexpert.org/expert/43219 -https://www.oceanexpert.org/expert/27749 -https://www.oceanexpert.org/event/1564 -https://www.oceanexpert.org/expert/36723 -https://www.oceanexpert.org/expert/25378 -https://www.oceanexpert.org/expert/46961 -https://www.oceanexpert.org/institution/11046 -https://www.oceanexpert.org/expert/46852 -https://www.oceanexpert.org/expert/19762 -https://www.oceanexpert.org/expert/25409 -https://www.oceanexpert.org/expert/47754 -https://www.oceanexpert.org/institution/21240 -https://www.oceanexpert.org/institution/15770 -https://www.oceanexpert.org/institution/18185 -https://www.oceanexpert.org/expert/26686 -https://www.oceanexpert.org/expert/15978 -https://www.oceanexpert.org/expert/20664 -https://www.oceanexpert.org/institution/13851 -https://www.oceanexpert.org/expert/24844 -https://www.oceanexpert.org/expert/48364 -https://www.oceanexpert.org/event/482 -https://www.oceanexpert.org/expert/20891 -https://www.oceanexpert.org/expert/22364 -https://www.oceanexpert.org/expert/34619 -https://www.oceanexpert.org/expert/19177 -https://www.oceanexpert.org/expert/11245 -https://www.oceanexpert.org/expert/27570 -https://www.oceanexpert.org/institution/17499 -https://www.oceanexpert.org/institution/9055 -https://www.oceanexpert.org/institution/21558 -https://www.oceanexpert.org/institution/21358 -https://www.oceanexpert.org/expert/7569 -https://www.oceanexpert.org/institution/15047 -https://www.oceanexpert.org/expert/13747 -https://www.oceanexpert.org/expert/2056 -https://www.oceanexpert.org/expert/32591 -https://www.oceanexpert.org/event/189 -https://www.oceanexpert.org/expert/36682 -https://www.oceanexpert.org/expert/17592 -https://www.oceanexpert.org/expert/47328 -https://www.oceanexpert.org/expert/4863 -https://www.oceanexpert.org/expert/13559 -https://www.oceanexpert.org/expert/2707 -https://www.oceanexpert.org/event/2394 -https://www.oceanexpert.org/expert/38653 -https://www.oceanexpert.org/expert/45062 -https://www.oceanexpert.org/institution/20082 -https://www.oceanexpert.org/expert/43764 -https://www.oceanexpert.org/expert/11592 -https://www.oceanexpert.org/event/865 -https://www.oceanexpert.org/institution/18866 -https://www.oceanexpert.org/expert/21203 -https://www.oceanexpert.org/expert/35788 -https://www.oceanexpert.org/expert/28434 -https://www.oceanexpert.org/expert/20532 -https://www.oceanexpert.org/event/1568 -https://www.oceanexpert.org/event/1930 -https://www.oceanexpert.org/expert/42879 -https://www.oceanexpert.org/event/700 -https://www.oceanexpert.org/institution/11124 -https://www.oceanexpert.org/institution/21616 -https://www.oceanexpert.org/expert/27414 -https://www.oceanexpert.org/expert/7270 -https://www.oceanexpert.org/expert/30031 -https://www.oceanexpert.org/institution/6675 -https://www.oceanexpert.org/expert/37198 -https://www.oceanexpert.org/expert/31576 -https://www.oceanexpert.org/expert/18243 -https://www.oceanexpert.org/institution/18050 -https://www.oceanexpert.org/event/3019 -https://www.oceanexpert.org/institution/13220 -https://www.oceanexpert.org/expert/34729 -https://www.oceanexpert.org/expert/26689 -https://www.oceanexpert.org/event/1145 -https://www.oceanexpert.org/expert/37625 -https://www.oceanexpert.org/expert/35099 -https://www.oceanexpert.org/event/1164 -https://www.oceanexpert.org/expert/20326 -https://www.oceanexpert.org/institution/7028 -https://www.oceanexpert.org/expert/33707 -https://www.oceanexpert.org/expert/24166 -https://www.oceanexpert.org/institution/19066 -https://www.oceanexpert.org/institution/8463 -https://www.oceanexpert.org/expert/42996 -https://www.oceanexpert.org/expert/44266 -https://www.oceanexpert.org/expert/21074 -https://www.oceanexpert.org/institution/9566 -https://www.oceanexpert.org/expert/33175 -https://www.oceanexpert.org/expert/21219 -https://www.oceanexpert.org/expert/44627 -https://www.oceanexpert.org/expert/47566 -https://www.oceanexpert.org/institution/18247 -https://www.oceanexpert.org/expert/27082 -https://www.oceanexpert.org/expert/23737 -https://www.oceanexpert.org/expert/25009 -https://www.oceanexpert.org/institution/7783 -https://www.oceanexpert.org/event/2536 -https://www.oceanexpert.org/expert/18131 -https://www.oceanexpert.org/institution/6834 -https://www.oceanexpert.org/expert/45736 -https://www.oceanexpert.org/expert/43366 -https://www.oceanexpert.org/event/1050 -https://www.oceanexpert.org/expert/42883 -https://www.oceanexpert.org/institution/10343 -https://www.oceanexpert.org/expert/11455 -https://www.oceanexpert.org/expert/13950 -https://www.oceanexpert.org/expert/25879 -https://www.oceanexpert.org/institution/22141 -https://www.oceanexpert.org/expert/5492 -https://www.oceanexpert.org/expert/36372 -https://www.oceanexpert.org/expert/21198 -https://www.oceanexpert.org/expert/43286 -https://www.oceanexpert.org/event/822 -https://www.oceanexpert.org/expert/13489 -https://www.oceanexpert.org/expert/32214 -https://www.oceanexpert.org/institution/16020 -https://www.oceanexpert.org/institution/7783 -https://www.oceanexpert.org/expert/10303 -https://www.oceanexpert.org/institution/7769 -https://www.oceanexpert.org/institution/11307 -https://www.oceanexpert.org/expert/44251 -https://www.oceanexpert.org/expert/34750 -https://www.oceanexpert.org/expert/44571 -https://www.oceanexpert.org/expert/21570 -https://www.oceanexpert.org/expert/21950 -https://www.oceanexpert.org/institution/20190 -https://www.oceanexpert.org/expert/36192 -https://www.oceanexpert.org/event/2155 -https://www.oceanexpert.org/expert/25751 -https://www.oceanexpert.org/institution/20523 -https://www.oceanexpert.org/expert/24620 -https://www.oceanexpert.org/event/359 -https://www.oceanexpert.org/expert/36528 -https://www.oceanexpert.org/institution/19800 -https://www.oceanexpert.org/institution/9426 -https://www.oceanexpert.org/event/2733 -https://www.oceanexpert.org/event/1523 -https://www.oceanexpert.org/expert/47308 -https://www.oceanexpert.org/institution/11519 -https://www.oceanexpert.org/expert/26120 -https://www.oceanexpert.org/institution/7221 -https://www.oceanexpert.org/expert/3666 -https://www.oceanexpert.org/event/2792 -https://www.oceanexpert.org/expert/24802 -https://www.oceanexpert.org/expert/22622 -https://www.oceanexpert.org/expert/28455 -https://www.oceanexpert.org/expert/36448 -https://www.oceanexpert.org/expert/22890 -https://www.oceanexpert.org/expert/30647 -https://www.oceanexpert.org/expert/31641 -https://www.oceanexpert.org/expert/24567 -https://www.oceanexpert.org/expert/33366 -https://www.oceanexpert.org/institution/6698 -https://www.oceanexpert.org/expert/44607 -https://www.oceanexpert.org/event/724 -https://www.oceanexpert.org/expert/15259 -https://www.oceanexpert.org/expert/23456 -https://www.oceanexpert.org/expert/37355 -https://www.oceanexpert.org/expert/43188 -https://www.oceanexpert.org/institution/10283 -https://www.oceanexpert.org/expert/22446 -https://www.oceanexpert.org/expert/27267 -https://www.oceanexpert.org/expert/23572 -https://www.oceanexpert.org/expert/17249 -https://www.oceanexpert.org/expert/37546 -https://www.oceanexpert.org/expert/20271 -https://www.oceanexpert.org/expert/15887 -https://www.oceanexpert.org/expert/37842 -https://www.oceanexpert.org/expert/37503 -https://www.oceanexpert.org/expert/16610 -https://www.oceanexpert.org/institution/21636 -https://www.oceanexpert.org/event/3244 -https://www.oceanexpert.org/institution/15044 -https://www.oceanexpert.org/expert/44723 -https://www.oceanexpert.org/event/438 -https://www.oceanexpert.org/expert/36975 -https://www.oceanexpert.org/expert/3143 -https://www.oceanexpert.org/institution/12130 -https://www.oceanexpert.org/expert/13050 -https://www.oceanexpert.org/expert/1747 -https://www.oceanexpert.org/expert/35885 -https://www.oceanexpert.org/expert/24524 -https://www.oceanexpert.org/expert/27076 -https://www.oceanexpert.org/institution/20872 -https://www.oceanexpert.org/expert/13660 -https://www.oceanexpert.org/expert/43820 -https://www.oceanexpert.org/expert/27534 -https://www.oceanexpert.org/expert/47150 -https://www.oceanexpert.org/event/3298 -https://www.oceanexpert.org/expert/6332 -https://www.oceanexpert.org/event/1459 -https://www.oceanexpert.org/expert/24717 -https://www.oceanexpert.org/expert/48807 -https://www.oceanexpert.org/expert/31374 -https://www.oceanexpert.org/institution/11362 -https://www.oceanexpert.org/expert/18646 -https://www.oceanexpert.org/expert/31944 -https://www.oceanexpert.org/expert/30942 -https://www.oceanexpert.org/expert/43748 -https://www.oceanexpert.org/expert/26931 -https://www.oceanexpert.org/expert/13923 -https://www.oceanexpert.org/institution/18139 -https://www.oceanexpert.org/institution/19179 -https://www.oceanexpert.org/expert/48971 -https://www.oceanexpert.org/expert/24658 -https://www.oceanexpert.org/institution/16247 -https://www.oceanexpert.org/institution/13611 -https://www.oceanexpert.org/expert/24887 -https://www.oceanexpert.org/expert/22641 -https://www.oceanexpert.org/expert/24037 -https://www.oceanexpert.org/institution/18331 -https://www.oceanexpert.org/institution/9725 -https://www.oceanexpert.org/event/1737 -https://www.oceanexpert.org/expert/24168 -https://www.oceanexpert.org/expert/37829 -https://www.oceanexpert.org/expert/22309 -https://www.oceanexpert.org/institution/18835 -https://www.oceanexpert.org/expert/40529 -https://www.oceanexpert.org/expert/36976 -https://www.oceanexpert.org/expert/13662 -https://www.oceanexpert.org/expert/23778 -https://www.oceanexpert.org/expert/41819 -https://www.oceanexpert.org/expert/24960 -https://www.oceanexpert.org/expert/38208 -https://www.oceanexpert.org/expert/48038 -https://www.oceanexpert.org/event/1042 -https://www.oceanexpert.org/expert/31885 -https://www.oceanexpert.org/institution/21408 -https://www.oceanexpert.org/institution/18408 -https://www.oceanexpert.org/institution/21879 -https://www.oceanexpert.org/expert/34509 -https://www.oceanexpert.org/expert/20072 -https://www.oceanexpert.org/expert/33021 -https://www.oceanexpert.org/expert/32476 -https://www.oceanexpert.org/institution/17480 -https://www.oceanexpert.org/expert/16969 -https://www.oceanexpert.org/event/3094 -https://www.oceanexpert.org/event/3006 -https://www.oceanexpert.org/expert/17758 -https://www.oceanexpert.org/institution/10992 -https://www.oceanexpert.org/expert/22979 -https://www.oceanexpert.org/expert/44821 -https://www.oceanexpert.org/expert/46166 -https://www.oceanexpert.org/expert/44624 -https://www.oceanexpert.org/expert/17250 -https://www.oceanexpert.org/institution/19574 -https://www.oceanexpert.org/expert/42949 -https://www.oceanexpert.org/institution/17180 -https://www.oceanexpert.org/expert/28335 -https://www.oceanexpert.org/event/2022 -https://www.oceanexpert.org/institution/20446 -https://www.oceanexpert.org/expert/37598 -https://www.oceanexpert.org/event/2914 -https://www.oceanexpert.org/expert/47559 -https://www.oceanexpert.org/expert/24875 -https://www.oceanexpert.org/expert/26450 -https://www.oceanexpert.org/expert/34693 -https://www.oceanexpert.org/institution/4915 -https://www.oceanexpert.org/event/172 -https://www.oceanexpert.org/expert/23066 -https://www.oceanexpert.org/institution/17786 -https://www.oceanexpert.org/expert/21532 -https://www.oceanexpert.org/event/2757 -https://www.oceanexpert.org/expert/23785 -https://www.oceanexpert.org/expert/1375 -https://www.oceanexpert.org/expert/26652 -https://www.oceanexpert.org/institution/20375 -https://www.oceanexpert.org/expert/33754 -https://www.oceanexpert.org/expert/17741 -https://www.oceanexpert.org/expert/47340 -https://www.oceanexpert.org/institution/20020 -https://www.oceanexpert.org/institution/20526 -https://www.oceanexpert.org/institution/19688 -https://www.oceanexpert.org/institution/11462 -https://www.oceanexpert.org/expert/24833 -https://www.oceanexpert.org/expert/30128 -https://www.oceanexpert.org/expert/20777 -https://www.oceanexpert.org/expert/17495 -https://www.oceanexpert.org/institution/18736 -https://www.oceanexpert.org/institution/7562 -https://www.oceanexpert.org/expert/19151 -https://www.oceanexpert.org/institution/18239 -https://www.oceanexpert.org/institution/12553 -https://www.oceanexpert.org/expert/24271 -https://www.oceanexpert.org/expert/20208 -https://www.oceanexpert.org/institution/16927 -https://www.oceanexpert.org/expert/28150 -https://www.oceanexpert.org/expert/43279 -https://www.oceanexpert.org/expert/26301 -https://www.oceanexpert.org/expert/31108 -https://www.oceanexpert.org/expert/26535 -https://www.oceanexpert.org/expert/25206 -https://www.oceanexpert.org/expert/26100 -https://www.oceanexpert.org/expert/16409 -https://www.oceanexpert.org/expert/45811 -https://www.oceanexpert.org/expert/38377 -https://www.oceanexpert.org/expert/44287 -https://www.oceanexpert.org/expert/19295 -https://www.oceanexpert.org/expert/11606 -https://www.oceanexpert.org/institution/19103 -https://www.oceanexpert.org/expert/24228 -https://www.oceanexpert.org/expert/26544 -https://www.oceanexpert.org/expert/22226 -https://www.oceanexpert.org/expert/40297 -https://www.oceanexpert.org/institution/14881 -https://www.oceanexpert.org/event/3245 -https://www.oceanexpert.org/institution/19229 -https://www.oceanexpert.org/expert/43784 -https://www.oceanexpert.org/expert/37631 -https://www.oceanexpert.org/expert/33759 -https://www.oceanexpert.org/event/2905 -https://www.oceanexpert.org/expert/21946 -https://www.oceanexpert.org/expert/48876 -https://www.oceanexpert.org/institution/13680 -https://www.oceanexpert.org/expert/43764 -https://www.oceanexpert.org/expert/27374 -https://www.oceanexpert.org/expert/20471 -https://www.oceanexpert.org/expert/26488 -https://www.oceanexpert.org/event/1918 -https://www.oceanexpert.org/expert/25794 -https://www.oceanexpert.org/expert/36797 -https://www.oceanexpert.org/institution/11773 -https://www.oceanexpert.org/expert/23792 -https://www.oceanexpert.org/institution/13589 -https://www.oceanexpert.org/expert/37116 -https://www.oceanexpert.org/expert/38235 -https://www.oceanexpert.org/expert/29513 -https://www.oceanexpert.org/expert/30795 -https://www.oceanexpert.org/expert/1087 -https://www.oceanexpert.org/expert/27298 -https://www.oceanexpert.org/expert/45517 -https://www.oceanexpert.org/expert/18648 -https://www.oceanexpert.org/institution/7485 -https://www.oceanexpert.org/expert/18120 -https://www.oceanexpert.org/institution/9977 -https://www.oceanexpert.org/expert/47313 -https://www.oceanexpert.org/expert/26238 -https://www.oceanexpert.org/expert/42670 -https://www.oceanexpert.org/expert/4326 -https://www.oceanexpert.org/event/293 -https://www.oceanexpert.org/expert/40059 -https://www.oceanexpert.org/expert/22627 -https://www.oceanexpert.org/expert/44644 -https://www.oceanexpert.org/expert/45478 -https://www.oceanexpert.org/expert/39741 -https://www.oceanexpert.org/institution/20834 -https://www.oceanexpert.org/expert/20510 -https://www.oceanexpert.org/expert/120 -https://www.oceanexpert.org/expert/28289 -https://www.oceanexpert.org/event/2718 -https://www.oceanexpert.org/institution/21212 -https://www.oceanexpert.org/expert/8688 -https://www.oceanexpert.org/expert/24167 -https://www.oceanexpert.org/expert/39538 -https://www.oceanexpert.org/expert/19707 -https://www.oceanexpert.org/expert/43990 -https://www.oceanexpert.org/expert/22711 -https://www.oceanexpert.org/expert/46340 -https://www.oceanexpert.org/institution/12316 -https://www.oceanexpert.org/expert/6992 -https://www.oceanexpert.org/event/2762 -https://www.oceanexpert.org/expert/22818 -https://www.oceanexpert.org/institution/18755 -https://www.oceanexpert.org/expert/14103 -https://www.oceanexpert.org/institution/13200 -https://www.oceanexpert.org/expert/44142 -https://www.oceanexpert.org/expert/20036 -https://www.oceanexpert.org/expert/31238 -https://www.oceanexpert.org/expert/47323 -https://www.oceanexpert.org/expert/15609 -https://www.oceanexpert.org/expert/42960 -https://www.oceanexpert.org/institution/12217 -https://www.oceanexpert.org/expert/39640 -https://www.oceanexpert.org/expert/18122 -https://www.oceanexpert.org/expert/36373 -https://www.oceanexpert.org/institution/7778 -https://www.oceanexpert.org/event/1814 -https://www.oceanexpert.org/institution/20899 -https://www.oceanexpert.org/institution/21081 -https://www.oceanexpert.org/expert/40022 -https://www.oceanexpert.org/institution/6451 -https://www.oceanexpert.org/expert/43528 -https://www.oceanexpert.org/expert/46337 -https://www.oceanexpert.org/institution/20509 -https://www.oceanexpert.org/expert/38343 -https://www.oceanexpert.org/expert/43183 -https://www.oceanexpert.org/institution/20534 -https://www.oceanexpert.org/expert/8764 -https://www.oceanexpert.org/expert/8053 -https://www.oceanexpert.org/institution/21875 -https://www.oceanexpert.org/institution/21010 -https://www.oceanexpert.org/expert/15838 -https://www.oceanexpert.org/expert/46251 -https://www.oceanexpert.org/institution/13550 -https://www.oceanexpert.org/expert/48403 -https://www.oceanexpert.org/institution/14206 -https://www.oceanexpert.org/expert/36603 -https://www.oceanexpert.org/institution/19404 -https://www.oceanexpert.org/event/2430 -https://www.oceanexpert.org/expert/32822 -https://www.oceanexpert.org/institution/18851 -https://www.oceanexpert.org/expert/45865 -https://www.oceanexpert.org/expert/26181 -https://www.oceanexpert.org/expert/46346 -https://www.oceanexpert.org/institution/19126 -https://www.oceanexpert.org/expert/17999 -https://www.oceanexpert.org/institution/19496 -https://www.oceanexpert.org/expert/47730 -https://www.oceanexpert.org/expert/42489 -https://www.oceanexpert.org/expert/25876 -https://www.oceanexpert.org/expert/27044 -https://www.oceanexpert.org/expert/37461 -https://www.oceanexpert.org/expert/47186 -https://www.oceanexpert.org/institution/22017 -https://www.oceanexpert.org/event/145 -https://www.oceanexpert.org/expert/6600 -https://www.oceanexpert.org/expert/34160 -https://www.oceanexpert.org/expert/30871 -https://www.oceanexpert.org/institution/16055 -https://www.oceanexpert.org/institution/12727 -https://www.oceanexpert.org/expert/28469 -https://www.oceanexpert.org/institution/18132 -https://www.oceanexpert.org/expert/39598 -https://www.oceanexpert.org/event/2744 -https://www.oceanexpert.org/institution/15389 -https://www.oceanexpert.org/expert/17936 -https://www.oceanexpert.org/expert/19387 -https://www.oceanexpert.org/expert/12447 -https://www.oceanexpert.org/expert/31256 -https://www.oceanexpert.org/expert/19082 -https://www.oceanexpert.org/expert/33439 -https://www.oceanexpert.org/expert/36878 -https://www.oceanexpert.org/institution/6349 -https://www.oceanexpert.org/expert/24707 -https://www.oceanexpert.org/expert/16220 -https://www.oceanexpert.org/expert/34471 -https://www.oceanexpert.org/expert/46258 -https://www.oceanexpert.org/expert/42526 -https://www.oceanexpert.org/expert/43147 -https://www.oceanexpert.org/expert/27440 -https://www.oceanexpert.org/institution/18943 -https://www.oceanexpert.org/institution/12370 -https://www.oceanexpert.org/event/1969 -https://www.oceanexpert.org/event/3068 -https://www.oceanexpert.org/expert/13204 -https://www.oceanexpert.org/expert/11652 -https://www.oceanexpert.org/expert/38487 -https://www.oceanexpert.org/expert/13611 -https://www.oceanexpert.org/expert/20928 -https://www.oceanexpert.org/expert/25474 -https://www.oceanexpert.org/expert/17409 -https://www.oceanexpert.org/expert/38501 -https://www.oceanexpert.org/institution/13109 -https://www.oceanexpert.org/expert/48419 -https://www.oceanexpert.org/event/3190 -https://www.oceanexpert.org/expert/19472 -https://www.oceanexpert.org/expert/24301 -https://www.oceanexpert.org/expert/22885 -https://www.oceanexpert.org/event/764 -https://www.oceanexpert.org/expert/47296 -https://www.oceanexpert.org/event/1436 -https://www.oceanexpert.org/expert/27022 -https://www.oceanexpert.org/event/292 -https://www.oceanexpert.org/expert/26996 -https://www.oceanexpert.org/expert/7743 -https://www.oceanexpert.org/event/2862 -https://www.oceanexpert.org/expert/21021 -https://www.oceanexpert.org/expert/990 -https://www.oceanexpert.org/institution/14489 -https://www.oceanexpert.org/expert/31180 -https://www.oceanexpert.org/expert/27206 -https://www.oceanexpert.org/institution/7559 -https://www.oceanexpert.org/expert/37944 -https://www.oceanexpert.org/expert/14864 -https://www.oceanexpert.org/institution/19343 -https://www.oceanexpert.org/expert/45765 -https://www.oceanexpert.org/institution/15067 -https://www.oceanexpert.org/expert/7578 -https://www.oceanexpert.org/institution/8433 -https://www.oceanexpert.org/expert/21669 -https://www.oceanexpert.org/expert/10257 -https://www.oceanexpert.org/expert/21056 -https://www.oceanexpert.org/expert/21533 -https://www.oceanexpert.org/institution/14904 -https://www.oceanexpert.org/expert/42556 -https://www.oceanexpert.org/expert/26752 -https://www.oceanexpert.org/event/2898 -https://www.oceanexpert.org/expert/21083 -https://www.oceanexpert.org/expert/37873 -https://www.oceanexpert.org/event/3011 -https://www.oceanexpert.org/institution/12512 -https://www.oceanexpert.org/event/1455 -https://www.oceanexpert.org/event/2339 -https://www.oceanexpert.org/institution/21460 -https://www.oceanexpert.org/institution/10299 -https://www.oceanexpert.org/event/1079 -https://www.oceanexpert.org/expert/26264 -https://www.oceanexpert.org/expert/26440 -https://www.oceanexpert.org/institution/14354 -https://www.oceanexpert.org/expert/30214 -https://www.oceanexpert.org/expert/6207 -https://www.oceanexpert.org/expert/24963 -https://www.oceanexpert.org/expert/40352 -https://www.oceanexpert.org/event/3092 -https://www.oceanexpert.org/expert/34857 -https://www.oceanexpert.org/expert/37049 -https://www.oceanexpert.org/event/91 -https://www.oceanexpert.org/expert/6863 -https://www.oceanexpert.org/institution/13496 -https://www.oceanexpert.org/expert/27093 -https://www.oceanexpert.org/event/1327 -https://www.oceanexpert.org/expert/27909 -https://www.oceanexpert.org/expert/26563 -https://www.oceanexpert.org/institution/18153 -https://www.oceanexpert.org/institution/20161 -https://www.oceanexpert.org/event/202 -https://www.oceanexpert.org/institution/13922 -https://www.oceanexpert.org/expert/34771 -https://www.oceanexpert.org/expert/3546 -https://www.oceanexpert.org/expert/45062 -https://www.oceanexpert.org/expert/32926 -https://www.oceanexpert.org/expert/14614 -https://www.oceanexpert.org/expert/18997 -https://www.oceanexpert.org/institution/22130 -https://www.oceanexpert.org/expert/40871 -https://www.oceanexpert.org/expert/329 -https://www.oceanexpert.org/expert/16612 -https://www.oceanexpert.org/institution/14335 -https://www.oceanexpert.org/expert/21844 -https://www.oceanexpert.org/expert/44526 -https://www.oceanexpert.org/expert/37369 -https://www.oceanexpert.org/institution/5202 -https://www.oceanexpert.org/institution/19909 -https://www.oceanexpert.org/expert/45934 -https://www.oceanexpert.org/expert/16053 -https://www.oceanexpert.org/event/945 -https://www.oceanexpert.org/expert/17015 -https://www.oceanexpert.org/expert/43933 -https://www.oceanexpert.org/expert/4085 -https://www.oceanexpert.org/expert/25727 -https://www.oceanexpert.org/expert/26005 -https://www.oceanexpert.org/expert/33798 -https://www.oceanexpert.org/expert/45805 -https://www.oceanexpert.org/expert/27462 -https://www.oceanexpert.org/institution/7424 -https://www.oceanexpert.org/expert/38199 -https://www.oceanexpert.org/expert/45155 -https://www.oceanexpert.org/expert/49078 -https://www.oceanexpert.org/institution/11166 -https://www.oceanexpert.org/institution/10448 -https://www.oceanexpert.org/expert/47077 -https://www.oceanexpert.org/expert/46424 -https://www.oceanexpert.org/expert/14853 -https://www.oceanexpert.org/expert/43920 -https://www.oceanexpert.org/expert/23279 -https://www.oceanexpert.org/expert/36403 -https://www.oceanexpert.org/event/2954 -https://www.oceanexpert.org/expert/20499 -https://www.oceanexpert.org/expert/47146 -https://www.oceanexpert.org/expert/16765 -https://www.oceanexpert.org/expert/16352 -https://www.oceanexpert.org/expert/36015 -https://www.oceanexpert.org/institution/19676 -https://www.oceanexpert.org/expert/45156 -https://www.oceanexpert.org/expert/12029 -https://www.oceanexpert.org/event/120 -https://www.oceanexpert.org/expert/23510 -https://www.oceanexpert.org/expert/23040 -https://www.oceanexpert.org/expert/27893 -https://www.oceanexpert.org/institution/18228 -https://www.oceanexpert.org/institution/15888 -https://www.oceanexpert.org/expert/27237 -https://www.oceanexpert.org/institution/21214 -https://www.oceanexpert.org/expert/17572 -https://www.oceanexpert.org/expert/21256 -https://www.oceanexpert.org/expert/33841 -https://www.oceanexpert.org/expert/24719 -https://www.oceanexpert.org/expert/42669 -https://www.oceanexpert.org/expert/4061 -https://www.oceanexpert.org/expert/21959 -https://www.oceanexpert.org/expert/16606 -https://www.oceanexpert.org/expert/41909 -https://www.oceanexpert.org/institution/12941 -https://www.oceanexpert.org/expert/28303 -https://www.oceanexpert.org/event/712 -https://www.oceanexpert.org/institution/19749 -https://www.oceanexpert.org/expert/21882 -https://www.oceanexpert.org/institution/17093 -https://www.oceanexpert.org/expert/42603 -https://www.oceanexpert.org/expert/38908 -https://www.oceanexpert.org/expert/39132 -https://www.oceanexpert.org/expert/45109 -https://www.oceanexpert.org/institution/16786 -https://www.oceanexpert.org/expert/21874 -https://www.oceanexpert.org/expert/47956 -https://www.oceanexpert.org/institution/17227 -https://www.oceanexpert.org/expert/12409 -https://www.oceanexpert.org/expert/18736 -https://www.oceanexpert.org/institution/17833 -https://www.oceanexpert.org/event/2887 -https://www.oceanexpert.org/expert/36750 -https://www.oceanexpert.org/expert/48571 -https://www.oceanexpert.org/institution/18675 -https://www.oceanexpert.org/institution/10355 -https://www.oceanexpert.org/expert/17597 -https://www.oceanexpert.org/expert/11525 -https://www.oceanexpert.org/expert/24865 -https://www.oceanexpert.org/institution/12016 -https://www.oceanexpert.org/expert/45093 -https://www.oceanexpert.org/expert/16379 -https://www.oceanexpert.org/expert/20917 -https://www.oceanexpert.org/institution/21207 -https://www.oceanexpert.org/expert/16731 -https://www.oceanexpert.org/expert/23384 -https://www.oceanexpert.org/event/2766 -https://www.oceanexpert.org/expert/10943 -https://www.oceanexpert.org/expert/13419 -https://www.oceanexpert.org/expert/19565 -https://www.oceanexpert.org/institution/10681 -https://www.oceanexpert.org/expert/29808 -https://www.oceanexpert.org/expert/35898 -https://www.oceanexpert.org/expert/45004 -https://www.oceanexpert.org/expert/4565 -https://www.oceanexpert.org/expert/42420 -https://www.oceanexpert.org/expert/38270 -https://www.oceanexpert.org/expert/6129 -https://www.oceanexpert.org/expert/15380 -https://www.oceanexpert.org/expert/29576 -https://www.oceanexpert.org/expert/35589 -https://www.oceanexpert.org/expert/42520 -https://www.oceanexpert.org/expert/16811 -https://www.oceanexpert.org/expert/8006 -https://www.oceanexpert.org/expert/22086 -https://www.oceanexpert.org/event/692 -https://www.oceanexpert.org/expert/42631 -https://www.oceanexpert.org/institution/17895 -https://www.oceanexpert.org/expert/25689 -https://www.oceanexpert.org/expert/25520 -https://www.oceanexpert.org/institution/12119 -https://www.oceanexpert.org/institution/18552 -https://www.oceanexpert.org/institution/18390 -https://www.oceanexpert.org/expert/37827 -https://www.oceanexpert.org/institution/12062 -https://www.oceanexpert.org/expert/32177 -https://www.oceanexpert.org/expert/12554 -https://www.oceanexpert.org/expert/34805 -https://www.oceanexpert.org/expert/36362 -https://www.oceanexpert.org/expert/17087 -https://www.oceanexpert.org/expert/6007 -https://www.oceanexpert.org/expert/45586 -https://www.oceanexpert.org/expert/47295 -https://www.oceanexpert.org/expert/40117 -https://www.oceanexpert.org/expert/11234 -https://www.oceanexpert.org/expert/27398 -https://www.oceanexpert.org/expert/7990 -https://www.oceanexpert.org/expert/7611 -https://www.oceanexpert.org/expert/38904 -https://www.oceanexpert.org/expert/8633 -https://www.oceanexpert.org/expert/33575 -https://www.oceanexpert.org/expert/22741 -https://www.oceanexpert.org/expert/21826 -https://www.oceanexpert.org/expert/19809 -https://www.oceanexpert.org/institution/75 -https://www.oceanexpert.org/institution/19139 -https://www.oceanexpert.org/expert/45897 -https://www.oceanexpert.org/expert/33245 -https://www.oceanexpert.org/expert/45817 -https://www.oceanexpert.org/expert/31474 -https://www.oceanexpert.org/event/2156 -https://www.oceanexpert.org/expert/46054 -https://www.oceanexpert.org/expert/9102 -https://www.oceanexpert.org/expert/46143 -https://www.oceanexpert.org/expert/18292 -https://www.oceanexpert.org/institution/11460 -https://www.oceanexpert.org/expert/12778 -https://www.oceanexpert.org/expert/39368 -https://www.oceanexpert.org/expert/36730 -https://www.oceanexpert.org/event/1679 -https://www.oceanexpert.org/expert/17460 -https://www.oceanexpert.org/expert/44623 -https://www.oceanexpert.org/institution/19968 -https://www.oceanexpert.org/expert/43253 -https://www.oceanexpert.org/expert/24657 -https://www.oceanexpert.org/event/3134 -https://www.oceanexpert.org/expert/32747 -https://www.oceanexpert.org/institution/21655 -https://www.oceanexpert.org/institution/20806 -https://www.oceanexpert.org/expert/25954 -https://www.oceanexpert.org/expert/25269 -https://www.oceanexpert.org/expert/36558 -https://www.oceanexpert.org/expert/45920 -https://www.oceanexpert.org/event/113 -https://www.oceanexpert.org/institution/20556 -https://www.oceanexpert.org/institution/21511 -https://www.oceanexpert.org/event/2488 -https://www.oceanexpert.org/expert/4916 -https://www.oceanexpert.org/institution/14511 -https://www.oceanexpert.org/expert/48924 -https://www.oceanexpert.org/expert/11682 -https://www.oceanexpert.org/event/596 -https://www.oceanexpert.org/institution/13597 -https://www.oceanexpert.org/event/2927 -https://www.oceanexpert.org/expert/26555 -https://www.oceanexpert.org/expert/47103 -https://www.oceanexpert.org/expert/16884 -https://www.oceanexpert.org/expert/22818 -https://www.oceanexpert.org/expert/1662 -https://www.oceanexpert.org/expert/26954 -https://www.oceanexpert.org/expert/8764 -https://www.oceanexpert.org/institution/18607 -https://www.oceanexpert.org/expert/24759 -https://www.oceanexpert.org/expert/16340 -https://www.oceanexpert.org/institution/21365 -https://www.oceanexpert.org/expert/11763 -https://www.oceanexpert.org/expert/36003 -https://www.oceanexpert.org/event/612 -https://www.oceanexpert.org/expert/43806 -https://www.oceanexpert.org/expert/25845 -https://www.oceanexpert.org/expert/20527 -https://www.oceanexpert.org/expert/36013 -https://www.oceanexpert.org/event/2457 -https://www.oceanexpert.org/institution/16281 -https://www.oceanexpert.org/expert/34099 -https://www.oceanexpert.org/expert/17579 -https://www.oceanexpert.org/expert/35540 -https://www.oceanexpert.org/institution/22076 -https://www.oceanexpert.org/expert/11157 -https://www.oceanexpert.org/event/3191 -https://www.oceanexpert.org/institution/8663 -https://www.oceanexpert.org/expert/12886 -https://www.oceanexpert.org/institution/21959 -https://www.oceanexpert.org/event/2821 -https://www.oceanexpert.org/expert/2519 -https://www.oceanexpert.org/expert/21541 -https://www.oceanexpert.org/expert/24900 -https://www.oceanexpert.org/expert/35867 -https://www.oceanexpert.org/expert/18932 -https://www.oceanexpert.org/event/1852 -https://www.oceanexpert.org/institution/19357 -https://www.oceanexpert.org/expert/34929 -https://www.oceanexpert.org/institution/11817 -https://www.oceanexpert.org/expert/26346 -https://www.oceanexpert.org/event/648 -https://www.oceanexpert.org/expert/46458 -https://www.oceanexpert.org/expert/20692 -https://www.oceanexpert.org/institution/18909 -https://www.oceanexpert.org/expert/45293 -https://www.oceanexpert.org/expert/32550 -https://www.oceanexpert.org/expert/29241 -https://www.oceanexpert.org/expert/9510 -https://www.oceanexpert.org/expert/21067 -https://www.oceanexpert.org/expert/27206 -https://www.oceanexpert.org/institution/13136 -https://www.oceanexpert.org/event/2231 -https://www.oceanexpert.org/expert/44987 -https://www.oceanexpert.org/expert/36237 -https://www.oceanexpert.org/expert/47855 -https://www.oceanexpert.org/expert/12572 -https://www.oceanexpert.org/institution/21245 -https://www.oceanexpert.org/institution/5377 -https://www.oceanexpert.org/institution/16618 -https://www.oceanexpert.org/expert/45103 -https://www.oceanexpert.org/institution/20858 -https://www.oceanexpert.org/expert/16323 -https://www.oceanexpert.org/expert/21061 -https://www.oceanexpert.org/institution/21755 -https://www.oceanexpert.org/event/529 -https://www.oceanexpert.org/expert/32182 -https://www.oceanexpert.org/event/1064 -https://www.oceanexpert.org/expert/15833 -https://www.oceanexpert.org/expert/10551 -https://www.oceanexpert.org/expert/38241 -https://www.oceanexpert.org/expert/4198 -https://www.oceanexpert.org/event/314 -https://www.oceanexpert.org/institution/21814 -https://www.oceanexpert.org/institution/18734 -https://www.oceanexpert.org/expert/19385 -https://www.oceanexpert.org/expert/22856 -https://www.oceanexpert.org/expert/33884 -https://www.oceanexpert.org/expert/24103 -https://www.oceanexpert.org/event/3240 -https://www.oceanexpert.org/expert/29574 -https://www.oceanexpert.org/institution/18759 -https://www.oceanexpert.org/expert/8685 -https://www.oceanexpert.org/expert/20628 -https://www.oceanexpert.org/institution/12366 -https://www.oceanexpert.org/expert/3521 -https://www.oceanexpert.org/expert/8103 -https://www.oceanexpert.org/expert/24570 -https://www.oceanexpert.org/expert/237 -https://www.oceanexpert.org/expert/47399 -https://www.oceanexpert.org/expert/42486 -https://www.oceanexpert.org/institution/20511 -https://www.oceanexpert.org/expert/3235 -https://www.oceanexpert.org/expert/30888 -https://www.oceanexpert.org/expert/14458 -https://www.oceanexpert.org/event/2206 -https://www.oceanexpert.org/expert/20019 -https://www.oceanexpert.org/expert/48258 -https://www.oceanexpert.org/expert/35666 -https://www.oceanexpert.org/expert/36659 -https://www.oceanexpert.org/expert/33955 -https://www.oceanexpert.org/expert/44807 -https://www.oceanexpert.org/expert/43229 -https://www.oceanexpert.org/institution/18260 -https://www.oceanexpert.org/expert/30210 -https://www.oceanexpert.org/expert/13440 -https://www.oceanexpert.org/expert/31121 -https://www.oceanexpert.org/institution/8844 -https://www.oceanexpert.org/expert/14273 -https://www.oceanexpert.org/expert/31661 -https://www.oceanexpert.org/expert/43544 -https://www.oceanexpert.org/expert/44685 -https://www.oceanexpert.org/institution/10855 -https://www.oceanexpert.org/expert/29381 -https://www.oceanexpert.org/event/2662 -https://www.oceanexpert.org/expert/26776 -https://www.oceanexpert.org/expert/19170 -https://www.oceanexpert.org/expert/44375 -https://www.oceanexpert.org/expert/46467 -https://www.oceanexpert.org/expert/20708 -https://www.oceanexpert.org/expert/44024 -https://www.oceanexpert.org/expert/12052 -https://www.oceanexpert.org/institution/10235 -https://www.oceanexpert.org/expert/37033 -https://www.oceanexpert.org/expert/44203 -https://www.oceanexpert.org/expert/37690 -https://www.oceanexpert.org/institution/12661 -https://www.oceanexpert.org/institution/12955 -https://www.oceanexpert.org/expert/44338 -https://www.oceanexpert.org/event/1604 -https://www.oceanexpert.org/expert/2406 -https://www.oceanexpert.org/expert/14247 -https://www.oceanexpert.org/expert/1307 -https://www.oceanexpert.org/expert/44999 -https://www.oceanexpert.org/expert/17844 -https://www.oceanexpert.org/expert/24391 -https://www.oceanexpert.org/expert/16769 -https://www.oceanexpert.org/expert/28309 -https://www.oceanexpert.org/institution/18747 -https://www.oceanexpert.org/expert/30203 -https://www.oceanexpert.org/expert/42868 -https://www.oceanexpert.org/expert/31777 -https://www.oceanexpert.org/event/946 -https://www.oceanexpert.org/institution/22176 -https://www.oceanexpert.org/expert/37894 -https://www.oceanexpert.org/expert/47174 -https://www.oceanexpert.org/expert/38518 -https://www.oceanexpert.org/institution/21730 -https://www.oceanexpert.org/institution/6126 -https://www.oceanexpert.org/expert/36934 -https://www.oceanexpert.org/institution/15160 -https://www.oceanexpert.org/expert/20041 -https://www.oceanexpert.org/institution/5537 -https://www.oceanexpert.org/expert/36725 -https://www.oceanexpert.org/institution/18412 -https://www.oceanexpert.org/institution/6354 -https://www.oceanexpert.org/expert/24370 -https://www.oceanexpert.org/expert/26579 -https://www.oceanexpert.org/expert/25226 -https://www.oceanexpert.org/expert/40284 -https://www.oceanexpert.org/institution/11871 -https://www.oceanexpert.org/expert/23880 -https://www.oceanexpert.org/expert/15490 -https://www.oceanexpert.org/expert/42585 -https://www.oceanexpert.org/expert/44722 -https://www.oceanexpert.org/expert/15648 -https://www.oceanexpert.org/expert/47993 -https://www.oceanexpert.org/expert/46563 -https://www.oceanexpert.org/expert/12757 -https://www.oceanexpert.org/expert/3785 -https://www.oceanexpert.org/expert/3200 -https://www.oceanexpert.org/institution/18345 -https://www.oceanexpert.org/expert/24777 -https://www.oceanexpert.org/expert/44442 -https://www.oceanexpert.org/institution/21875 -https://www.oceanexpert.org/event/3003 -https://www.oceanexpert.org/expert/36502 -https://www.oceanexpert.org/institution/16857 -https://www.oceanexpert.org/expert/48034 -https://www.oceanexpert.org/expert/26862 -https://www.oceanexpert.org/expert/24664 -https://www.oceanexpert.org/expert/34722 -https://www.oceanexpert.org/expert/24335 -https://www.oceanexpert.org/institution/19009 -https://www.oceanexpert.org/expert/46362 -https://www.oceanexpert.org/expert/20286 -https://www.oceanexpert.org/expert/34687 -https://www.oceanexpert.org/expert/44779 -https://www.oceanexpert.org/institution/13678 -https://www.oceanexpert.org/expert/17488 -https://www.oceanexpert.org/expert/14902 -https://www.oceanexpert.org/expert/1804 -https://www.oceanexpert.org/expert/48305 -https://www.oceanexpert.org/expert/33323 -https://www.oceanexpert.org/expert/26845 -https://www.oceanexpert.org/institution/21287 -https://www.oceanexpert.org/expert/39474 -https://www.oceanexpert.org/expert/43129 -https://www.oceanexpert.org/expert/43224 -https://www.oceanexpert.org/expert/28972 -https://www.oceanexpert.org/institution/9275 -https://www.oceanexpert.org/event/443 -https://www.oceanexpert.org/expert/27149 -https://www.oceanexpert.org/institution/18433 -https://www.oceanexpert.org/expert/39443 -https://www.oceanexpert.org/expert/34228 -https://www.oceanexpert.org/event/1752 -https://www.oceanexpert.org/expert/44588 -https://www.oceanexpert.org/expert/35211 -https://www.oceanexpert.org/expert/18539 -https://www.oceanexpert.org/expert/33939 -https://www.oceanexpert.org/expert/35669 -https://www.oceanexpert.org/event/2200 -https://www.oceanexpert.org/institution/18875 -https://www.oceanexpert.org/expert/44176 -https://www.oceanexpert.org/expert/18380 -https://www.oceanexpert.org/expert/36646 -https://www.oceanexpert.org/expert/19864 -https://www.oceanexpert.org/institution/19042 -https://www.oceanexpert.org/expert/43338 -https://www.oceanexpert.org/expert/27744 -https://www.oceanexpert.org/expert/37010 -https://www.oceanexpert.org/expert/3992 -https://www.oceanexpert.org/expert/43250 -https://www.oceanexpert.org/expert/19662 -https://www.oceanexpert.org/expert/44411 -https://www.oceanexpert.org/expert/24914 -https://www.oceanexpert.org/expert/37045 -https://www.oceanexpert.org/expert/23725 -https://www.oceanexpert.org/institution/13166 -https://www.oceanexpert.org/expert/5516 -https://www.oceanexpert.org/expert/34059 -https://www.oceanexpert.org/expert/45931 -https://www.oceanexpert.org/expert/20367 -https://www.oceanexpert.org/expert/44518 -https://www.oceanexpert.org/expert/48332 -https://www.oceanexpert.org/expert/25984 -https://www.oceanexpert.org/expert/12957 -https://www.oceanexpert.org/institution/19710 -https://www.oceanexpert.org/expert/18443 -https://www.oceanexpert.org/expert/11242 -https://www.oceanexpert.org/institution/16464 -https://www.oceanexpert.org/expert/14432 -https://www.oceanexpert.org/institution/11849 -https://www.oceanexpert.org/expert/20705 -https://www.oceanexpert.org/expert/713 -https://www.oceanexpert.org/institution/12596 -https://www.oceanexpert.org/expert/24670 -https://www.oceanexpert.org/expert/47667 -https://www.oceanexpert.org/expert/36844 -https://www.oceanexpert.org/expert/13612 -https://www.oceanexpert.org/expert/45577 -https://www.oceanexpert.org/institution/19412 -https://www.oceanexpert.org/expert/25466 -https://www.oceanexpert.org/institution/19334 -https://www.oceanexpert.org/event/3054 -https://www.oceanexpert.org/institution/19043 -https://www.oceanexpert.org/expert/18476 -https://www.oceanexpert.org/expert/9278 -https://www.oceanexpert.org/expert/18832 -https://www.oceanexpert.org/institution/10287 -https://www.oceanexpert.org/institution/19802 -https://www.oceanexpert.org/expert/1423 -https://www.oceanexpert.org/expert/6920 -https://www.oceanexpert.org/expert/39830 -https://www.oceanexpert.org/expert/1218 -https://www.oceanexpert.org/expert/39371 -https://www.oceanexpert.org/expert/2164 -https://www.oceanexpert.org/institution/21455 -https://www.oceanexpert.org/expert/43737 -https://www.oceanexpert.org/expert/44666 -https://www.oceanexpert.org/expert/1743 -https://www.oceanexpert.org/institution/7553 -https://www.oceanexpert.org/expert/13663 -https://www.oceanexpert.org/expert/22245 -https://www.oceanexpert.org/expert/24085 -https://www.oceanexpert.org/expert/904 -https://www.oceanexpert.org/expert/46551 -https://www.oceanexpert.org/expert/20864 -https://www.oceanexpert.org/expert/44309 -https://www.oceanexpert.org/expert/8747 -https://www.oceanexpert.org/expert/44714 -https://www.oceanexpert.org/expert/4530 -https://www.oceanexpert.org/expert/6623 -https://www.oceanexpert.org/expert/45951 -https://www.oceanexpert.org/expert/26294 -https://www.oceanexpert.org/event/1893 -https://www.oceanexpert.org/expert/17823 -https://www.oceanexpert.org/expert/22393 -https://www.oceanexpert.org/expert/48652 -https://www.oceanexpert.org/expert/34961 -https://www.oceanexpert.org/event/2588 -https://www.oceanexpert.org/institution/19061 -https://www.oceanexpert.org/event/318 -https://www.oceanexpert.org/expert/26806 -https://www.oceanexpert.org/institution/20982 -https://www.oceanexpert.org/expert/30197 -https://www.oceanexpert.org/institution/22011 -https://www.oceanexpert.org/expert/35761 -https://www.oceanexpert.org/expert/7006 -https://www.oceanexpert.org/expert/16340 -https://www.oceanexpert.org/institution/18913 -https://www.oceanexpert.org/expert/47738 -https://www.oceanexpert.org/expert/16946 -https://www.oceanexpert.org/expert/44344 -https://www.oceanexpert.org/expert/45416 -https://www.oceanexpert.org/expert/27507 -https://www.oceanexpert.org/expert/22617 -https://www.oceanexpert.org/institution/9275 -https://www.oceanexpert.org/expert/21626 -https://www.oceanexpert.org/expert/31705 -https://www.oceanexpert.org/expert/43254 -https://www.oceanexpert.org/institution/20020 -https://www.oceanexpert.org/expert/43475 -https://www.oceanexpert.org/expert/24860 -https://www.oceanexpert.org/expert/39341 -https://www.oceanexpert.org/institution/8496 -https://www.oceanexpert.org/expert/30842 -https://www.oceanexpert.org/expert/47901 -https://www.oceanexpert.org/event/723 -https://www.oceanexpert.org/institution/20929 -https://www.oceanexpert.org/expert/19451 -https://www.oceanexpert.org/expert/34259 -https://www.oceanexpert.org/institution/20231 -https://www.oceanexpert.org/expert/23287 -https://www.oceanexpert.org/expert/18864 -https://www.oceanexpert.org/institution/9801 -https://www.oceanexpert.org/expert/33252 -https://www.oceanexpert.org/expert/33075 -https://www.oceanexpert.org/institution/10833 -https://www.oceanexpert.org/expert/26732 -https://www.oceanexpert.org/institution/9738 -https://www.oceanexpert.org/expert/37517 -https://www.oceanexpert.org/expert/31375 -https://www.oceanexpert.org/expert/47686 -https://www.oceanexpert.org/expert/25475 -https://www.oceanexpert.org/expert/5419 -https://www.oceanexpert.org/expert/38853 -https://www.oceanexpert.org/expert/16160 -https://www.oceanexpert.org/expert/35266 -https://www.oceanexpert.org/institution/20557 -https://www.oceanexpert.org/expert/5182 -https://www.oceanexpert.org/expert/44992 -https://www.oceanexpert.org/expert/27155 -https://www.oceanexpert.org/institution/21684 -https://www.oceanexpert.org/expert/39668 -https://www.oceanexpert.org/expert/26056 -https://www.oceanexpert.org/expert/16071 -https://www.oceanexpert.org/expert/36837 -https://www.oceanexpert.org/institution/6535 -https://www.oceanexpert.org/institution/18594 -https://www.oceanexpert.org/expert/27265 -https://www.oceanexpert.org/expert/47558 -https://www.oceanexpert.org/expert/12604 -https://www.oceanexpert.org/institution/19507 -https://www.oceanexpert.org/expert/9222 -https://www.oceanexpert.org/event/601 -https://www.oceanexpert.org/expert/37230 -https://www.oceanexpert.org/expert/22933 -https://www.oceanexpert.org/expert/22377 -https://www.oceanexpert.org/institution/5169 -https://www.oceanexpert.org/expert/38197 -https://www.oceanexpert.org/expert/45952 -https://www.oceanexpert.org/institution/18452 -https://www.oceanexpert.org/event/2446 -https://www.oceanexpert.org/expert/35412 -https://www.oceanexpert.org/institution/16295 -https://www.oceanexpert.org/expert/18216 -https://www.oceanexpert.org/expert/34465 -https://www.oceanexpert.org/expert/16099 -https://www.oceanexpert.org/event/2469 -https://www.oceanexpert.org/institution/21348 -https://www.oceanexpert.org/expert/1276 -https://www.oceanexpert.org/institution/9078 -https://www.oceanexpert.org/expert/18858 -https://www.oceanexpert.org/expert/24709 -https://www.oceanexpert.org/expert/406 -https://www.oceanexpert.org/event/1788 -https://www.oceanexpert.org/institution/14296 -https://www.oceanexpert.org/expert/37055 -https://www.oceanexpert.org/institution/10706 -https://www.oceanexpert.org/expert/32276 -https://www.oceanexpert.org/event/1604 -https://www.oceanexpert.org/expert/47681 -https://www.oceanexpert.org/expert/24521 -https://www.oceanexpert.org/expert/35098 -https://www.oceanexpert.org/expert/48072 -https://www.oceanexpert.org/expert/17508 -https://www.oceanexpert.org/expert/15693 -https://www.oceanexpert.org/expert/18997 -https://www.oceanexpert.org/expert/22629 -https://www.oceanexpert.org/expert/45682 -https://www.oceanexpert.org/institution/17731 -https://www.oceanexpert.org/expert/25802 -https://www.oceanexpert.org/institution/22029 -https://www.oceanexpert.org/expert/29141 -https://www.oceanexpert.org/expert/14977 -https://www.oceanexpert.org/institution/21387 -https://www.oceanexpert.org/expert/32637 -https://www.oceanexpert.org/expert/16635 -https://www.oceanexpert.org/institution/13659 -https://www.oceanexpert.org/institution/11831 -https://www.oceanexpert.org/institution/18056 -https://www.oceanexpert.org/expert/32651 -https://www.oceanexpert.org/event/501 -https://www.oceanexpert.org/expert/48061 -https://www.oceanexpert.org/institution/18351 -https://www.oceanexpert.org/expert/40887 -https://www.oceanexpert.org/expert/34343 -https://www.oceanexpert.org/expert/34266 -https://www.oceanexpert.org/expert/25381 -https://www.oceanexpert.org/expert/31108 -https://www.oceanexpert.org/expert/35593 -https://www.oceanexpert.org/institution/17686 -https://www.oceanexpert.org/expert/36595 -https://www.oceanexpert.org/expert/25965 -https://www.oceanexpert.org/expert/23605 -https://www.oceanexpert.org/expert/31550 -https://www.oceanexpert.org/expert/26240 -https://www.oceanexpert.org/institution/21628 -https://www.oceanexpert.org/expert/43061 -https://www.oceanexpert.org/event/1837 -https://www.oceanexpert.org/expert/21724 -https://www.oceanexpert.org/expert/34106 -https://www.oceanexpert.org/expert/24160 -https://www.oceanexpert.org/expert/42762 -https://www.oceanexpert.org/expert/48243 -https://www.oceanexpert.org/expert/48490 -https://www.oceanexpert.org/event/1038 -https://www.oceanexpert.org/expert/38029 -https://www.oceanexpert.org/expert/30641 -https://www.oceanexpert.org/expert/23394 -https://www.oceanexpert.org/expert/48832 -https://www.oceanexpert.org/expert/23363 -https://www.oceanexpert.org/expert/16789 -https://www.oceanexpert.org/expert/31064 -https://www.oceanexpert.org/expert/19281 -https://www.oceanexpert.org/expert/31090 -https://www.oceanexpert.org/expert/43433 -https://www.oceanexpert.org/expert/28494 -https://www.oceanexpert.org/expert/37632 -https://www.oceanexpert.org/institution/18869 -https://www.oceanexpert.org/expert/20967 -https://www.oceanexpert.org/expert/26545 -https://www.oceanexpert.org/institution/18852 -https://www.oceanexpert.org/expert/789 -https://www.oceanexpert.org/expert/18387 -https://www.oceanexpert.org/institution/5028 -https://www.oceanexpert.org/institution/12915 -https://www.oceanexpert.org/expert/25402 -https://www.oceanexpert.org/expert/33035 -https://www.oceanexpert.org/expert/31132 -https://www.oceanexpert.org/expert/47547 -https://www.oceanexpert.org/expert/19617 -https://www.oceanexpert.org/institution/7769 -https://www.oceanexpert.org/expert/29385 -https://www.oceanexpert.org/expert/14895 -https://www.oceanexpert.org/institution/20721 -https://www.oceanexpert.org/expert/9622 -https://www.oceanexpert.org/expert/19393 -https://www.oceanexpert.org/expert/43470 -https://www.oceanexpert.org/expert/36932 -https://www.oceanexpert.org/expert/17978 -https://www.oceanexpert.org/expert/48256 -https://www.oceanexpert.org/expert/36583 -https://www.oceanexpert.org/institution/18836 -https://www.oceanexpert.org/expert/47180 -https://www.oceanexpert.org/expert/18997 -https://www.oceanexpert.org/expert/26027 -https://www.oceanexpert.org/expert/47924 -https://www.oceanexpert.org/expert/42401 -https://www.oceanexpert.org/institution/11582 -https://www.oceanexpert.org/institution/11700 -https://www.oceanexpert.org/institution/20866 -https://www.oceanexpert.org/expert/20168 -https://www.oceanexpert.org/institution/19757 -https://www.oceanexpert.org/institution/10298 -https://www.oceanexpert.org/expert/18370 -https://www.oceanexpert.org/expert/22032 -https://www.oceanexpert.org/expert/44645 -https://www.oceanexpert.org/expert/47480 -https://www.oceanexpert.org/event/2102 -https://www.oceanexpert.org/expert/15911 -https://www.oceanexpert.org/event/2940 -https://www.oceanexpert.org/institution/17483 -https://www.oceanexpert.org/expert/37866 -https://www.oceanexpert.org/expert/14839 -https://www.oceanexpert.org/expert/22218 -https://www.oceanexpert.org/expert/38695 -https://www.oceanexpert.org/expert/35974 -https://www.oceanexpert.org/expert/1943 -https://www.oceanexpert.org/expert/16967 -https://www.oceanexpert.org/event/1942 -https://www.oceanexpert.org/expert/42940 -https://www.oceanexpert.org/expert/38340 -https://www.oceanexpert.org/expert/33013 -https://www.oceanexpert.org/expert/46272 -https://www.oceanexpert.org/institution/21456 -https://www.oceanexpert.org/institution/21866 -https://www.oceanexpert.org/institution/20261 -https://www.oceanexpert.org/expert/32553 -https://www.oceanexpert.org/expert/35858 -https://www.oceanexpert.org/institution/8239 -https://www.oceanexpert.org/institution/10119 -https://www.oceanexpert.org/expert/35094 -https://www.oceanexpert.org/institution/6126 -https://www.oceanexpert.org/event/2522 -https://www.oceanexpert.org/event/1712 -https://www.oceanexpert.org/expert/29607 -https://www.oceanexpert.org/expert/37427 -https://www.oceanexpert.org/expert/42699 -https://www.oceanexpert.org/expert/25435 -https://www.oceanexpert.org/expert/26780 -https://www.oceanexpert.org/institution/22008 -https://www.oceanexpert.org/expert/32874 -https://www.oceanexpert.org/expert/23963 -https://www.oceanexpert.org/expert/43705 -https://www.oceanexpert.org/expert/26370 -https://www.oceanexpert.org/expert/33863 -https://www.oceanexpert.org/event/2166 -https://www.oceanexpert.org/expert/36215 -https://www.oceanexpert.org/expert/34999 -https://www.oceanexpert.org/expert/35854 -https://www.oceanexpert.org/expert/12868 -https://www.oceanexpert.org/expert/46712 -https://www.oceanexpert.org/expert/38104 -https://www.oceanexpert.org/event/1949 -https://www.oceanexpert.org/expert/1947 -https://www.oceanexpert.org/expert/32879 -https://www.oceanexpert.org/institution/18085 -https://www.oceanexpert.org/expert/31857 -https://www.oceanexpert.org/institution/13630 -https://www.oceanexpert.org/expert/44552 -https://www.oceanexpert.org/expert/38616 -https://www.oceanexpert.org/expert/26752 -https://www.oceanexpert.org/expert/46586 -https://www.oceanexpert.org/expert/27162 -https://www.oceanexpert.org/expert/32958 -https://www.oceanexpert.org/institution/6304 -https://www.oceanexpert.org/expert/24117 -https://www.oceanexpert.org/expert/25145 -https://www.oceanexpert.org/expert/20135 -https://www.oceanexpert.org/expert/19117 -https://www.oceanexpert.org/expert/22849 -https://www.oceanexpert.org/expert/18759 -https://www.oceanexpert.org/expert/44526 -https://www.oceanexpert.org/expert/23585 -https://www.oceanexpert.org/event/463 -https://www.oceanexpert.org/expert/43548 -https://www.oceanexpert.org/expert/11711 -https://www.oceanexpert.org/expert/34837 -https://www.oceanexpert.org/expert/1423 -https://www.oceanexpert.org/expert/23754 -https://www.oceanexpert.org/event/333 -https://www.oceanexpert.org/institution/10308 -https://www.oceanexpert.org/institution/17126 -https://www.oceanexpert.org/expert/29308 -https://www.oceanexpert.org/expert/32638 -https://www.oceanexpert.org/event/508 -https://www.oceanexpert.org/expert/35031 -https://www.oceanexpert.org/expert/38046 -https://www.oceanexpert.org/expert/45541 -https://www.oceanexpert.org/institution/13181 -https://www.oceanexpert.org/institution/17501 -https://www.oceanexpert.org/expert/35348 -https://www.oceanexpert.org/expert/37605 -https://www.oceanexpert.org/expert/42409 -https://www.oceanexpert.org/expert/45658 -https://www.oceanexpert.org/expert/47985 -https://www.oceanexpert.org/institution/21966 -https://www.oceanexpert.org/expert/23920 -https://www.oceanexpert.org/institution/15895 -https://www.oceanexpert.org/institution/15687 -https://www.oceanexpert.org/expert/31126 -https://www.oceanexpert.org/expert/6641 -https://www.oceanexpert.org/expert/19955 -https://www.oceanexpert.org/expert/27324 -https://www.oceanexpert.org/expert/24636 -https://www.oceanexpert.org/institution/12089 -https://www.oceanexpert.org/expert/37312 -https://www.oceanexpert.org/expert/37642 -https://www.oceanexpert.org/institution/19063 -https://www.oceanexpert.org/expert/36872 -https://www.oceanexpert.org/institution/12655 -https://www.oceanexpert.org/institution/14582 -https://www.oceanexpert.org/expert/34967 -https://www.oceanexpert.org/expert/40353 -https://www.oceanexpert.org/institution/15611 -https://www.oceanexpert.org/event/22 -https://www.oceanexpert.org/expert/40353 -https://www.oceanexpert.org/expert/8020 -https://www.oceanexpert.org/institution/19188 -https://www.oceanexpert.org/expert/21521 -https://www.oceanexpert.org/institution/8496 -https://www.oceanexpert.org/institution/19027 -https://www.oceanexpert.org/institution/11119 -https://www.oceanexpert.org/institution/18088 -https://www.oceanexpert.org/expert/25560 -https://www.oceanexpert.org/expert/36345 -https://www.oceanexpert.org/expert/47976 -https://www.oceanexpert.org/institution/14589 -https://www.oceanexpert.org/expert/45669 -https://www.oceanexpert.org/expert/44926 -https://www.oceanexpert.org/expert/42699 -https://www.oceanexpert.org/institution/18226 -https://www.oceanexpert.org/institution/20199 -https://www.oceanexpert.org/expert/18928 -https://www.oceanexpert.org/expert/35352 -https://www.oceanexpert.org/institution/19420 -https://www.oceanexpert.org/expert/18033 -https://www.oceanexpert.org/expert/35055 -https://www.oceanexpert.org/expert/42429 -https://www.oceanexpert.org/event/429 -https://www.oceanexpert.org/expert/23485 -https://www.oceanexpert.org/expert/39280 -https://www.oceanexpert.org/expert/44631 -https://www.oceanexpert.org/expert/35136 -https://www.oceanexpert.org/institution/6243 -https://www.oceanexpert.org/institution/20791 -https://www.oceanexpert.org/event/537 -https://www.oceanexpert.org/institution/18690 -https://www.oceanexpert.org/institution/19898 -https://www.oceanexpert.org/expert/32754 -https://www.oceanexpert.org/institution/21823 -https://www.oceanexpert.org/expert/27048 -https://www.oceanexpert.org/expert/17243 -https://www.oceanexpert.org/expert/43050 -https://www.oceanexpert.org/expert/40622 -https://www.oceanexpert.org/institution/20644 -https://www.oceanexpert.org/expert/43933 -https://www.oceanexpert.org/institution/18199 -https://www.oceanexpert.org/expert/18540 -https://www.oceanexpert.org/institution/15861 -https://www.oceanexpert.org/expert/18432 -https://www.oceanexpert.org/expert/23645 -https://www.oceanexpert.org/expert/44666 -https://www.oceanexpert.org/institution/13943 -https://www.oceanexpert.org/institution/21407 -https://www.oceanexpert.org/expert/11180 -https://www.oceanexpert.org/expert/33628 -https://www.oceanexpert.org/expert/24160 -https://www.oceanexpert.org/expert/18286 -https://www.oceanexpert.org/expert/31691 -https://www.oceanexpert.org/institution/18684 -https://www.oceanexpert.org/expert/21549 -https://www.oceanexpert.org/expert/24842 -https://www.oceanexpert.org/expert/30107 -https://www.oceanexpert.org/expert/48116 -https://www.oceanexpert.org/expert/23815 -https://www.oceanexpert.org/institution/6802 -https://www.oceanexpert.org/expert/23713 -https://www.oceanexpert.org/expert/44134 -https://www.oceanexpert.org/expert/34067 -https://www.oceanexpert.org/expert/43687 -https://www.oceanexpert.org/expert/43246 -https://www.oceanexpert.org/institution/17184 -https://www.oceanexpert.org/expert/48103 -https://www.oceanexpert.org/expert/14090 -https://www.oceanexpert.org/expert/18490 -https://www.oceanexpert.org/institution/18135 -https://www.oceanexpert.org/institution/13035 -https://www.oceanexpert.org/institution/12651 -https://www.oceanexpert.org/event/164 -https://www.oceanexpert.org/expert/29497 -https://www.oceanexpert.org/expert/20919 -https://www.oceanexpert.org/expert/25993 -https://www.oceanexpert.org/expert/15609 -https://www.oceanexpert.org/expert/35246 -https://www.oceanexpert.org/expert/4617 -https://www.oceanexpert.org/institution/20555 -https://www.oceanexpert.org/expert/38547 -https://www.oceanexpert.org/expert/9199 -https://www.oceanexpert.org/expert/21912 -https://www.oceanexpert.org/expert/40664 -https://www.oceanexpert.org/expert/43074 -https://www.oceanexpert.org/expert/39720 -https://www.oceanexpert.org/expert/38089 -https://www.oceanexpert.org/expert/45723 -https://www.oceanexpert.org/expert/27883 -https://www.oceanexpert.org/institution/20898 -https://www.oceanexpert.org/expert/19227 -https://www.oceanexpert.org/event/799 -https://www.oceanexpert.org/expert/38197 -https://www.oceanexpert.org/expert/20705 -https://www.oceanexpert.org/expert/3438 -https://www.oceanexpert.org/expert/8170 -https://www.oceanexpert.org/event/1222 -https://www.oceanexpert.org/expert/19191 -https://www.oceanexpert.org/institution/12035 -https://www.oceanexpert.org/institution/21252 -https://www.oceanexpert.org/institution/12706 -https://www.oceanexpert.org/expert/44352 -https://www.oceanexpert.org/expert/45969 -https://www.oceanexpert.org/expert/777 -https://www.oceanexpert.org/institution/14622 -https://www.oceanexpert.org/expert/19975 -https://www.oceanexpert.org/expert/8330 -https://www.oceanexpert.org/expert/24973 -https://www.oceanexpert.org/expert/26631 -https://www.oceanexpert.org/institution/8369 -https://www.oceanexpert.org/expert/40613 -https://www.oceanexpert.org/expert/6595 -https://www.oceanexpert.org/expert/38498 -https://www.oceanexpert.org/institution/21346 -https://www.oceanexpert.org/expert/39621 -https://www.oceanexpert.org/institution/19957 -https://www.oceanexpert.org/expert/25831 -https://www.oceanexpert.org/institution/13920 -https://www.oceanexpert.org/expert/6187 -https://www.oceanexpert.org/expert/22804 -https://www.oceanexpert.org/expert/38291 -https://www.oceanexpert.org/expert/17790 -https://www.oceanexpert.org/expert/28091 -https://www.oceanexpert.org/event/2135 -https://www.oceanexpert.org/event/1918 -https://www.oceanexpert.org/expert/25023 -https://www.oceanexpert.org/institution/19594 -https://www.oceanexpert.org/expert/47621 -https://www.oceanexpert.org/institution/12106 -https://www.oceanexpert.org/expert/41098 -https://www.oceanexpert.org/institution/14355 -https://www.oceanexpert.org/institution/13239 -https://www.oceanexpert.org/expert/28272 -https://www.oceanexpert.org/expert/45715 -https://www.oceanexpert.org/expert/19457 -https://www.oceanexpert.org/expert/45556 -https://www.oceanexpert.org/institution/21236 -https://www.oceanexpert.org/expert/32447 -https://www.oceanexpert.org/expert/40284 -https://www.oceanexpert.org/expert/17385 -https://www.oceanexpert.org/expert/16086 -https://www.oceanexpert.org/institution/9337 -https://www.oceanexpert.org/expert/32469 -https://www.oceanexpert.org/expert/38354 -https://www.oceanexpert.org/expert/47065 -https://www.oceanexpert.org/expert/25311 -https://www.oceanexpert.org/expert/31610 -https://www.oceanexpert.org/institution/22155 -https://www.oceanexpert.org/expert/24416 -https://www.oceanexpert.org/expert/40285 -https://www.oceanexpert.org/expert/42660 -https://www.oceanexpert.org/expert/39304 -https://www.oceanexpert.org/expert/23904 -https://www.oceanexpert.org/institution/22065 -https://www.oceanexpert.org/expert/35288 -https://www.oceanexpert.org/institution/13918 -https://www.oceanexpert.org/expert/37463 -https://www.oceanexpert.org/expert/21987 -https://www.oceanexpert.org/expert/27252 -https://www.oceanexpert.org/event/963 -https://www.oceanexpert.org/expert/44394 -https://www.oceanexpert.org/institution/12795 -https://www.oceanexpert.org/expert/48992 -https://www.oceanexpert.org/institution/20181 -https://www.oceanexpert.org/expert/6729 -https://www.oceanexpert.org/expert/44813 -https://www.oceanexpert.org/expert/30600 -https://www.oceanexpert.org/expert/24612 -https://www.oceanexpert.org/expert/11610 -https://www.oceanexpert.org/institution/20671 -https://www.oceanexpert.org/expert/16852 -https://www.oceanexpert.org/institution/21753 -https://www.oceanexpert.org/institution/12626 -https://www.oceanexpert.org/expert/36842 -https://www.oceanexpert.org/expert/48553 -https://www.oceanexpert.org/expert/21682 -https://www.oceanexpert.org/institution/8623 -https://www.oceanexpert.org/expert/11592 -https://www.oceanexpert.org/institution/16179 -https://www.oceanexpert.org/expert/35398 -https://www.oceanexpert.org/expert/46597 -https://www.oceanexpert.org/expert/38237 -https://www.oceanexpert.org/expert/32219 -https://www.oceanexpert.org/expert/43403 -https://www.oceanexpert.org/event/1879 -https://www.oceanexpert.org/expert/33916 -https://www.oceanexpert.org/expert/26638 -https://www.oceanexpert.org/expert/30392 -https://www.oceanexpert.org/expert/44331 -https://www.oceanexpert.org/expert/24275 -https://www.oceanexpert.org/expert/22499 -https://www.oceanexpert.org/expert/18570 -https://www.oceanexpert.org/expert/24949 -https://www.oceanexpert.org/expert/14307 -https://www.oceanexpert.org/event/2241 -https://www.oceanexpert.org/expert/25710 -https://www.oceanexpert.org/event/1559 -https://www.oceanexpert.org/institution/22163 -https://www.oceanexpert.org/expert/39237 -https://www.oceanexpert.org/expert/45172 -https://www.oceanexpert.org/expert/19102 -https://www.oceanexpert.org/institution/18959 -https://www.oceanexpert.org/institution/19706 -https://www.oceanexpert.org/expert/36505 -https://www.oceanexpert.org/institution/14072 -https://www.oceanexpert.org/expert/24437 -https://www.oceanexpert.org/expert/17549 -https://www.oceanexpert.org/expert/44704 -https://www.oceanexpert.org/expert/25058 -https://www.oceanexpert.org/expert/48946 -https://www.oceanexpert.org/expert/8333 -https://www.oceanexpert.org/expert/17812 -https://www.oceanexpert.org/institution/20094 -https://www.oceanexpert.org/expert/24626 -https://www.oceanexpert.org/expert/11549 -https://www.oceanexpert.org/institution/5041 -https://www.oceanexpert.org/expert/46932 -https://www.oceanexpert.org/expert/39059 -https://www.oceanexpert.org/expert/47424 -https://www.oceanexpert.org/expert/26531 -https://www.oceanexpert.org/expert/24993 -https://www.oceanexpert.org/expert/38207 -https://www.oceanexpert.org/expert/48034 -https://www.oceanexpert.org/institution/12488 -https://www.oceanexpert.org/expert/23436 -https://www.oceanexpert.org/expert/45517 -https://www.oceanexpert.org/institution/14260 -https://www.oceanexpert.org/expert/46731 -https://www.oceanexpert.org/expert/14527 -https://www.oceanexpert.org/expert/19879 -https://www.oceanexpert.org/institution/22097 -https://www.oceanexpert.org/expert/27302 -https://www.oceanexpert.org/expert/16968 -https://www.oceanexpert.org/expert/4722 -https://www.oceanexpert.org/expert/11701 -https://www.oceanexpert.org/expert/32804 -https://www.oceanexpert.org/expert/18688 -https://www.oceanexpert.org/expert/16594 -https://www.oceanexpert.org/event/834 -https://www.oceanexpert.org/expert/14858 -https://www.oceanexpert.org/expert/23371 -https://www.oceanexpert.org/institution/15131 -https://www.oceanexpert.org/institution/9342 -https://www.oceanexpert.org/expert/4278 -https://www.oceanexpert.org/expert/24242 -https://www.oceanexpert.org/expert/39969 -https://www.oceanexpert.org/expert/44412 -https://www.oceanexpert.org/expert/43516 -https://www.oceanexpert.org/event/1953 -https://www.oceanexpert.org/expert/42631 -https://www.oceanexpert.org/expert/13682 -https://www.oceanexpert.org/expert/32652 -https://www.oceanexpert.org/institution/19483 -https://www.oceanexpert.org/expert/42999 -https://www.oceanexpert.org/expert/44485 -https://www.oceanexpert.org/expert/24656 -https://www.oceanexpert.org/institution/22158 -https://www.oceanexpert.org/expert/19221 -https://www.oceanexpert.org/institution/19745 -https://www.oceanexpert.org/expert/18877 -https://www.oceanexpert.org/expert/28034 -https://www.oceanexpert.org/event/2770 -https://www.oceanexpert.org/institution/19538 -https://www.oceanexpert.org/expert/32457 -https://www.oceanexpert.org/event/1508 -https://www.oceanexpert.org/expert/27562 -https://www.oceanexpert.org/expert/37967 -https://www.oceanexpert.org/expert/16348 -https://www.oceanexpert.org/expert/8738 -https://www.oceanexpert.org/institution/21269 -https://www.oceanexpert.org/expert/16903 -https://www.oceanexpert.org/institution/19202 -https://www.oceanexpert.org/expert/38291 -https://www.oceanexpert.org/expert/25698 -https://www.oceanexpert.org/expert/16417 -https://www.oceanexpert.org/expert/38016 -https://www.oceanexpert.org/event/3090 -https://www.oceanexpert.org/expert/44350 -https://www.oceanexpert.org/expert/20820 -https://www.oceanexpert.org/expert/20682 -https://www.oceanexpert.org/institution/5074 -https://www.oceanexpert.org/expert/45910 -https://www.oceanexpert.org/institution/19156 -https://www.oceanexpert.org/institution/19431 -https://www.oceanexpert.org/institution/20993 -https://www.oceanexpert.org/expert/26545 -https://www.oceanexpert.org/expert/44345 -https://www.oceanexpert.org/institution/5852 -https://www.oceanexpert.org/expert/19073 -https://www.oceanexpert.org/expert/26913 -https://www.oceanexpert.org/expert/31619 -https://www.oceanexpert.org/expert/26290 -https://www.oceanexpert.org/expert/24856 -https://www.oceanexpert.org/event/1751 -https://www.oceanexpert.org/institution/18287 -https://www.oceanexpert.org/expert/1513 -https://www.oceanexpert.org/institution/13652 -https://www.oceanexpert.org/expert/2281 -https://www.oceanexpert.org/expert/44014 -https://www.oceanexpert.org/expert/24059 -https://www.oceanexpert.org/event/2477 -https://www.oceanexpert.org/institution/10981 -https://www.oceanexpert.org/event/1378 -https://www.oceanexpert.org/expert/44901 -https://www.oceanexpert.org/expert/43311 -https://www.oceanexpert.org/expert/44936 -https://www.oceanexpert.org/expert/44910 -https://www.oceanexpert.org/expert/20525 -https://www.oceanexpert.org/institution/18955 -https://www.oceanexpert.org/expert/34048 -https://www.oceanexpert.org/expert/26848 -https://www.oceanexpert.org/institution/20405 -https://www.oceanexpert.org/expert/48686 -https://www.oceanexpert.org/institution/20578 -https://www.oceanexpert.org/expert/25865 -https://www.oceanexpert.org/institution/9625 -https://www.oceanexpert.org/expert/48055 -https://www.oceanexpert.org/expert/22130 -https://www.oceanexpert.org/expert/13698 -https://www.oceanexpert.org/expert/19119 -https://www.oceanexpert.org/expert/21017 -https://www.oceanexpert.org/event/1664 -https://www.oceanexpert.org/expert/27335 -https://www.oceanexpert.org/event/1060 -https://www.oceanexpert.org/institution/17765 -https://www.oceanexpert.org/expert/11214 -https://www.oceanexpert.org/expert/47644 -https://www.oceanexpert.org/expert/29607 -https://www.oceanexpert.org/expert/20034 -https://www.oceanexpert.org/institution/21525 -https://www.oceanexpert.org/event/1267 -https://www.oceanexpert.org/institution/19976 -https://www.oceanexpert.org/expert/44362 -https://www.oceanexpert.org/expert/43644 -https://www.oceanexpert.org/institution/21294 -https://www.oceanexpert.org/institution/14257 -https://www.oceanexpert.org/expert/6908 -https://www.oceanexpert.org/expert/25357 -https://www.oceanexpert.org/institution/20088 -https://www.oceanexpert.org/expert/38213 -https://www.oceanexpert.org/expert/27031 -https://www.oceanexpert.org/expert/36659 -https://www.oceanexpert.org/institution/11144 -https://www.oceanexpert.org/institution/20470 -https://www.oceanexpert.org/expert/12440 -https://www.oceanexpert.org/expert/18934 -https://www.oceanexpert.org/expert/1085 -https://www.oceanexpert.org/expert/29200 -https://www.oceanexpert.org/expert/38899 -https://www.oceanexpert.org/expert/38914 -https://www.oceanexpert.org/expert/23561 -https://www.oceanexpert.org/institution/18977 -https://www.oceanexpert.org/expert/31740 -https://www.oceanexpert.org/expert/43396 -https://www.oceanexpert.org/expert/42474 -https://www.oceanexpert.org/expert/16338 -https://www.oceanexpert.org/expert/506 -https://www.oceanexpert.org/expert/45839 -https://www.oceanexpert.org/expert/39235 -https://www.oceanexpert.org/event/1197 -https://www.oceanexpert.org/expert/29371 -https://www.oceanexpert.org/expert/25901 -https://www.oceanexpert.org/event/3076 -https://www.oceanexpert.org/expert/36122 -https://www.oceanexpert.org/expert/18843 -https://www.oceanexpert.org/event/1386 -https://www.oceanexpert.org/expert/44719 -https://www.oceanexpert.org/institution/19424 -https://www.oceanexpert.org/event/1209 -https://www.oceanexpert.org/institution/18498 -https://www.oceanexpert.org/expert/4319 -https://www.oceanexpert.org/expert/19275 -https://www.oceanexpert.org/institution/19240 -https://www.oceanexpert.org/expert/14057 -https://www.oceanexpert.org/expert/33499 -https://www.oceanexpert.org/institution/13985 -https://www.oceanexpert.org/expert/19103 -https://www.oceanexpert.org/expert/14906 -https://www.oceanexpert.org/expert/39824 -https://www.oceanexpert.org/expert/34852 -https://www.oceanexpert.org/expert/23305 -https://www.oceanexpert.org/expert/25156 -https://www.oceanexpert.org/expert/37390 -https://www.oceanexpert.org/expert/48570 -https://www.oceanexpert.org/expert/37313 -https://www.oceanexpert.org/expert/26460 -https://www.oceanexpert.org/expert/11559 -https://www.oceanexpert.org/expert/32870 -https://www.oceanexpert.org/event/1545 -https://www.oceanexpert.org/expert/23952 -https://www.oceanexpert.org/expert/15960 -https://www.oceanexpert.org/institution/9801 -https://www.oceanexpert.org/expert/43878 -https://www.oceanexpert.org/event/1025 -https://www.oceanexpert.org/expert/20026 -https://www.oceanexpert.org/institution/12598 -https://www.oceanexpert.org/expert/32151 -https://www.oceanexpert.org/expert/29172 -https://www.oceanexpert.org/expert/21055 -https://www.oceanexpert.org/expert/26255 -https://www.oceanexpert.org/institution/21150 -https://www.oceanexpert.org/expert/31205 -https://www.oceanexpert.org/expert/27366 -https://www.oceanexpert.org/expert/21824 -https://www.oceanexpert.org/expert/7444 -https://www.oceanexpert.org/expert/37625 -https://www.oceanexpert.org/institution/18155 -https://www.oceanexpert.org/expert/47105 -https://www.oceanexpert.org/institution/6172 -https://www.oceanexpert.org/expert/26282 -https://www.oceanexpert.org/institution/14289 -https://www.oceanexpert.org/institution/21948 -https://www.oceanexpert.org/institution/19058 -https://www.oceanexpert.org/expert/13970 -https://www.oceanexpert.org/institution/12833 -https://www.oceanexpert.org/institution/7442 -https://www.oceanexpert.org/expert/39258 -https://www.oceanexpert.org/expert/20981 -https://www.oceanexpert.org/institution/21872 -https://www.oceanexpert.org/expert/43783 -https://www.oceanexpert.org/institution/21221 -https://www.oceanexpert.org/institution/19652 -https://www.oceanexpert.org/institution/13428 -https://www.oceanexpert.org/institution/18743 -https://www.oceanexpert.org/expert/22199 -https://www.oceanexpert.org/event/188 -https://www.oceanexpert.org/expert/33611 -https://www.oceanexpert.org/expert/22142 -https://www.oceanexpert.org/institution/17864 -https://www.oceanexpert.org/expert/14207 -https://www.oceanexpert.org/expert/16192 -https://www.oceanexpert.org/expert/29120 -https://www.oceanexpert.org/expert/45031 -https://www.oceanexpert.org/expert/16435 -https://www.oceanexpert.org/expert/35156 -https://www.oceanexpert.org/event/2430 -https://www.oceanexpert.org/expert/13494 -https://www.oceanexpert.org/institution/21899 -https://www.oceanexpert.org/institution/17660 -https://www.oceanexpert.org/expert/25010 -https://www.oceanexpert.org/expert/22670 -https://www.oceanexpert.org/institution/21924 -https://www.oceanexpert.org/event/1578 -https://www.oceanexpert.org/expert/44708 -https://www.oceanexpert.org/institution/11875 -https://www.oceanexpert.org/institution/17905 -https://www.oceanexpert.org/institution/8233 -https://www.oceanexpert.org/expert/27830 -https://www.oceanexpert.org/expert/42553 -https://www.oceanexpert.org/expert/47424 -https://www.oceanexpert.org/institution/9373 -https://www.oceanexpert.org/expert/33001 -https://www.oceanexpert.org/expert/44127 -https://www.oceanexpert.org/expert/45613 -https://www.oceanexpert.org/institution/8154 -https://www.oceanexpert.org/expert/16177 -https://www.oceanexpert.org/expert/25768 -https://www.oceanexpert.org/expert/26068 -https://www.oceanexpert.org/institution/18529 -https://www.oceanexpert.org/institution/7598 -https://www.oceanexpert.org/expert/22524 -https://www.oceanexpert.org/institution/21266 -https://www.oceanexpert.org/expert/32092 -https://www.oceanexpert.org/expert/25393 -https://www.oceanexpert.org/institution/21227 -https://www.oceanexpert.org/institution/19454 -https://www.oceanexpert.org/institution/10755 -https://www.oceanexpert.org/expert/25146 -https://www.oceanexpert.org/event/762 -https://www.oceanexpert.org/expert/21477 -https://www.oceanexpert.org/institution/8031 -https://www.oceanexpert.org/expert/22297 -https://www.oceanexpert.org/event/1676 -https://www.oceanexpert.org/expert/36297 -https://www.oceanexpert.org/event/515 -https://www.oceanexpert.org/expert/20640 -https://www.oceanexpert.org/institution/22059 -https://www.oceanexpert.org/expert/640 -https://www.oceanexpert.org/expert/46789 -https://www.oceanexpert.org/expert/25517 -https://www.oceanexpert.org/expert/21493 -https://www.oceanexpert.org/expert/43271 -https://www.oceanexpert.org/expert/33315 -https://www.oceanexpert.org/institution/18451 -https://www.oceanexpert.org/expert/38358 -https://www.oceanexpert.org/expert/42560 -https://www.oceanexpert.org/expert/19357 -https://www.oceanexpert.org/institution/18839 -https://www.oceanexpert.org/expert/25755 -https://www.oceanexpert.org/institution/13238 -https://www.oceanexpert.org/expert/22886 -https://www.oceanexpert.org/institution/17621 -https://www.oceanexpert.org/expert/32920 -https://www.oceanexpert.org/institution/5788 -https://www.oceanexpert.org/expert/24292 -https://www.oceanexpert.org/expert/21885 -https://www.oceanexpert.org/expert/23810 -https://www.oceanexpert.org/expert/37331 -https://www.oceanexpert.org/expert/29691 -https://www.oceanexpert.org/expert/26734 -https://www.oceanexpert.org/expert/35339 -https://www.oceanexpert.org/expert/46296 -https://www.oceanexpert.org/expert/32978 -https://www.oceanexpert.org/expert/46714 -https://www.oceanexpert.org/expert/18319 -https://www.oceanexpert.org/expert/43975 -https://www.oceanexpert.org/expert/39730 -https://www.oceanexpert.org/expert/40813 -https://www.oceanexpert.org/institution/16834 -https://www.oceanexpert.org/expert/29367 -https://www.oceanexpert.org/expert/22366 -https://www.oceanexpert.org/expert/24948 -https://www.oceanexpert.org/expert/19719 -https://www.oceanexpert.org/expert/27956 -https://www.oceanexpert.org/expert/35842 -https://www.oceanexpert.org/expert/43731 -https://www.oceanexpert.org/expert/43277 -https://www.oceanexpert.org/expert/24087 -https://www.oceanexpert.org/expert/27482 -https://www.oceanexpert.org/expert/45559 -https://www.oceanexpert.org/expert/26245 -https://www.oceanexpert.org/event/275 -https://www.oceanexpert.org/institution/18764 -https://www.oceanexpert.org/institution/12446 -https://www.oceanexpert.org/expert/39551 -https://www.oceanexpert.org/expert/46973 -https://www.oceanexpert.org/expert/44063 -https://www.oceanexpert.org/expert/36821 -https://www.oceanexpert.org/event/1016 -https://www.oceanexpert.org/institution/11079 -https://www.oceanexpert.org/expert/32125 -https://www.oceanexpert.org/expert/33826 -https://www.oceanexpert.org/institution/20048 -https://www.oceanexpert.org/expert/23725 -https://www.oceanexpert.org/expert/27174 -https://www.oceanexpert.org/expert/31418 -https://www.oceanexpert.org/expert/24876 -https://www.oceanexpert.org/institution/19527 -https://www.oceanexpert.org/institution/9732 -https://www.oceanexpert.org/institution/16317 -https://www.oceanexpert.org/expert/25082 -https://www.oceanexpert.org/expert/26365 -https://www.oceanexpert.org/expert/23512 -https://www.oceanexpert.org/institution/8663 -https://www.oceanexpert.org/institution/14428 -https://www.oceanexpert.org/institution/21962 -https://www.oceanexpert.org/expert/36495 -https://www.oceanexpert.org/expert/25447 -https://www.oceanexpert.org/institution/18267 -https://www.oceanexpert.org/expert/24027 -https://www.oceanexpert.org/expert/18892 -https://www.oceanexpert.org/institution/21609 -https://www.oceanexpert.org/institution/20155 -https://www.oceanexpert.org/expert/47129 -https://www.oceanexpert.org/institution/21996 -https://www.oceanexpert.org/institution/5222 -https://www.oceanexpert.org/event/709 -https://www.oceanexpert.org/expert/4879 -https://www.oceanexpert.org/institution/9732 -https://www.oceanexpert.org/expert/40574 -https://www.oceanexpert.org/expert/23953 -https://www.oceanexpert.org/institution/21645 -https://www.oceanexpert.org/expert/24964 -https://www.oceanexpert.org/expert/22958 -https://www.oceanexpert.org/expert/44075 -https://www.oceanexpert.org/expert/15475 -https://www.oceanexpert.org/expert/32273 -https://www.oceanexpert.org/expert/46623 -https://www.oceanexpert.org/institution/14198 -https://www.oceanexpert.org/expert/25415 -https://www.oceanexpert.org/expert/24664 -https://www.oceanexpert.org/institution/21653 -https://www.oceanexpert.org/institution/18412 -https://www.oceanexpert.org/institution/11191 -https://www.oceanexpert.org/expert/1240 -https://www.oceanexpert.org/institution/10941 -https://www.oceanexpert.org/expert/35734 -https://www.oceanexpert.org/expert/33266 -https://www.oceanexpert.org/expert/46150 -https://www.oceanexpert.org/expert/26431 -https://www.oceanexpert.org/institution/20927 -https://www.oceanexpert.org/expert/3185 -https://www.oceanexpert.org/expert/40891 -https://www.oceanexpert.org/expert/40107 -https://www.oceanexpert.org/expert/12950 -https://www.oceanexpert.org/event/3028 -https://www.oceanexpert.org/expert/24963 -https://www.oceanexpert.org/institution/14233 -https://www.oceanexpert.org/expert/28788 -https://www.oceanexpert.org/institution/20633 -https://www.oceanexpert.org/expert/594 -https://www.oceanexpert.org/expert/39326 -https://www.oceanexpert.org/expert/45754 -https://www.oceanexpert.org/event/2802 -https://www.oceanexpert.org/expert/43667 -https://www.oceanexpert.org/expert/28374 -https://www.oceanexpert.org/event/882 -https://www.oceanexpert.org/expert/38165 -https://www.oceanexpert.org/expert/31574 -https://www.oceanexpert.org/expert/46876 -https://www.oceanexpert.org/institution/19679 -https://www.oceanexpert.org/institution/20825 -https://www.oceanexpert.org/event/962 -https://www.oceanexpert.org/institution/17701 -https://www.oceanexpert.org/expert/45537 -https://www.oceanexpert.org/expert/19104 -https://www.oceanexpert.org/expert/27337 -https://www.oceanexpert.org/institution/11738 -https://www.oceanexpert.org/expert/31961 -https://www.oceanexpert.org/expert/19154 -https://www.oceanexpert.org/expert/11291 -https://www.oceanexpert.org/institution/16234 -https://www.oceanexpert.org/expert/46615 -https://www.oceanexpert.org/institution/18828 -https://www.oceanexpert.org/expert/48585 -https://www.oceanexpert.org/institution/20186 -https://www.oceanexpert.org/expert/33267 -https://www.oceanexpert.org/expert/30170 -https://www.oceanexpert.org/institution/19840 -https://www.oceanexpert.org/expert/24552 -https://www.oceanexpert.org/expert/37575 -https://www.oceanexpert.org/expert/37358 -https://www.oceanexpert.org/event/567 -https://www.oceanexpert.org/expert/22836 -https://www.oceanexpert.org/expert/21912 -https://www.oceanexpert.org/event/2569 -https://www.oceanexpert.org/expert/23644 -https://www.oceanexpert.org/institution/19395 -https://www.oceanexpert.org/institution/20174 -https://www.oceanexpert.org/institution/15923 -https://www.oceanexpert.org/event/561 -https://www.oceanexpert.org/institution/21787 -https://www.oceanexpert.org/institution/14301 -https://www.oceanexpert.org/expert/26556 -https://www.oceanexpert.org/expert/26334 -https://www.oceanexpert.org/expert/42977 -https://www.oceanexpert.org/institution/18099 -https://www.oceanexpert.org/expert/11427 -https://www.oceanexpert.org/event/1657 -https://www.oceanexpert.org/expert/13295 -https://www.oceanexpert.org/event/1633 -https://www.oceanexpert.org/expert/19603 -https://www.oceanexpert.org/expert/7275 -https://www.oceanexpert.org/expert/26799 -https://www.oceanexpert.org/expert/42535 -https://www.oceanexpert.org/institution/21082 -https://www.oceanexpert.org/expert/35303 -https://www.oceanexpert.org/expert/27835 -https://www.oceanexpert.org/institution/16046 -https://www.oceanexpert.org/expert/28373 -https://www.oceanexpert.org/expert/11223 -https://www.oceanexpert.org/institution/20489 -https://www.oceanexpert.org/expert/46734 -https://www.oceanexpert.org/expert/18805 -https://www.oceanexpert.org/expert/11956 -https://www.oceanexpert.org/expert/19427 -https://www.oceanexpert.org/expert/24235 -https://www.oceanexpert.org/expert/21135 -https://www.oceanexpert.org/expert/15407 -https://www.oceanexpert.org/expert/19610 -https://www.oceanexpert.org/expert/36937 -https://www.oceanexpert.org/expert/37386 -https://www.oceanexpert.org/expert/16111 -https://www.oceanexpert.org/event/1462 -https://www.oceanexpert.org/expert/30449 -https://www.oceanexpert.org/expert/46330 -https://www.oceanexpert.org/expert/27288 -https://www.oceanexpert.org/institution/18491 -https://www.oceanexpert.org/expert/34056 -https://www.oceanexpert.org/event/1737 -https://www.oceanexpert.org/expert/44964 -https://www.oceanexpert.org/expert/22938 -https://www.oceanexpert.org/expert/14497 -https://www.oceanexpert.org/expert/36748 -https://www.oceanexpert.org/expert/18980 -https://www.oceanexpert.org/expert/25126 -https://www.oceanexpert.org/event/2826 -https://www.oceanexpert.org/institution/18901 -https://www.oceanexpert.org/institution/17932 -https://www.oceanexpert.org/expert/11945 -https://www.oceanexpert.org/expert/16377 -https://www.oceanexpert.org/expert/7006 -https://www.oceanexpert.org/institution/12101 -https://www.oceanexpert.org/expert/28129 -https://www.oceanexpert.org/expert/29957 -https://www.oceanexpert.org/expert/20861 -https://www.oceanexpert.org/institution/18853 -https://www.oceanexpert.org/institution/13530 -https://www.oceanexpert.org/expert/21967 -https://www.oceanexpert.org/institution/18753 -https://www.oceanexpert.org/expert/23822 -https://www.oceanexpert.org/expert/19245 -https://www.oceanexpert.org/expert/21248 -https://www.oceanexpert.org/expert/19754 -https://www.oceanexpert.org/institution/18695 -https://www.oceanexpert.org/institution/18280 -https://www.oceanexpert.org/expert/26894 -https://www.oceanexpert.org/expert/29964 -https://www.oceanexpert.org/expert/15558 -https://www.oceanexpert.org/expert/17329 -https://www.oceanexpert.org/expert/12122 -https://www.oceanexpert.org/expert/21447 -https://www.oceanexpert.org/expert/35158 -https://www.oceanexpert.org/institution/13380 -https://www.oceanexpert.org/expert/36369 -https://www.oceanexpert.org/institution/19336 -https://www.oceanexpert.org/expert/22367 -https://www.oceanexpert.org/expert/3206 -https://www.oceanexpert.org/expert/17834 -https://www.oceanexpert.org/expert/35705 -https://www.oceanexpert.org/expert/23729 -https://www.oceanexpert.org/expert/42500 -https://www.oceanexpert.org/expert/48432 -https://www.oceanexpert.org/institution/20912 -https://www.oceanexpert.org/expert/41 -https://www.oceanexpert.org/expert/18185 -https://www.oceanexpert.org/institution/13359 -https://www.oceanexpert.org/institution/18785 -https://www.oceanexpert.org/institution/13602 -https://www.oceanexpert.org/expert/35768 -https://www.oceanexpert.org/expert/27291 -https://www.oceanexpert.org/event/2398 -https://www.oceanexpert.org/expert/35843 -https://www.oceanexpert.org/institution/13935 -https://www.oceanexpert.org/institution/19067 -https://www.oceanexpert.org/expert/16244 -https://www.oceanexpert.org/expert/47060 -https://www.oceanexpert.org/institution/15746 -https://www.oceanexpert.org/expert/35559 -https://www.oceanexpert.org/expert/31523 -https://www.oceanexpert.org/expert/25299 -https://www.oceanexpert.org/expert/17327 -https://www.oceanexpert.org/institution/19436 -https://www.oceanexpert.org/expert/23573 -https://www.oceanexpert.org/institution/19498 -https://www.oceanexpert.org/institution/19559 -https://www.oceanexpert.org/expert/20697 -https://www.oceanexpert.org/expert/43719 -https://www.oceanexpert.org/expert/24513 -https://www.oceanexpert.org/expert/25167 -https://www.oceanexpert.org/expert/46718 -https://www.oceanexpert.org/institution/20513 -https://www.oceanexpert.org/expert/16849 -https://www.oceanexpert.org/expert/10975 -https://www.oceanexpert.org/expert/27100 -https://www.oceanexpert.org/expert/36788 -https://www.oceanexpert.org/expert/31580 -https://www.oceanexpert.org/institution/19335 -https://www.oceanexpert.org/expert/44149 -https://www.oceanexpert.org/expert/13856 -https://www.oceanexpert.org/institution/17224 -https://www.oceanexpert.org/expert/44348 -https://www.oceanexpert.org/institution/17944 -https://www.oceanexpert.org/expert/32594 -https://www.oceanexpert.org/expert/35740 -https://www.oceanexpert.org/institution/13266 -https://www.oceanexpert.org/institution/14124 -https://www.oceanexpert.org/event/1752 -https://www.oceanexpert.org/expert/30253 -https://www.oceanexpert.org/event/2693 -https://www.oceanexpert.org/expert/22836 -https://www.oceanexpert.org/institution/15827 -https://www.oceanexpert.org/event/2845 -https://www.oceanexpert.org/institution/16330 -https://www.oceanexpert.org/expert/30325 -https://www.oceanexpert.org/institution/11229 -https://www.oceanexpert.org/expert/36895 -https://www.oceanexpert.org/expert/37818 -https://www.oceanexpert.org/expert/25822 -https://www.oceanexpert.org/event/23 -https://www.oceanexpert.org/expert/35256 -https://www.oceanexpert.org/expert/15463 -https://www.oceanexpert.org/event/1863 -https://www.oceanexpert.org/expert/44808 -https://www.oceanexpert.org/expert/34806 -https://www.oceanexpert.org/institution/18509 -https://www.oceanexpert.org/institution/15145 -https://www.oceanexpert.org/institution/7909 -https://www.oceanexpert.org/expert/7449 -https://www.oceanexpert.org/institution/18530 -https://www.oceanexpert.org/event/2273 -https://www.oceanexpert.org/expert/29760 -https://www.oceanexpert.org/institution/11480 -https://www.oceanexpert.org/expert/15564 -https://www.oceanexpert.org/institution/20920 -https://www.oceanexpert.org/expert/24412 -https://www.oceanexpert.org/institution/16067 -https://www.oceanexpert.org/institution/18866 -https://www.oceanexpert.org/institution/14362 -https://www.oceanexpert.org/expert/42709 -https://www.oceanexpert.org/expert/30738 -https://www.oceanexpert.org/expert/42638 -https://www.oceanexpert.org/expert/30288 -https://www.oceanexpert.org/expert/47622 -https://www.oceanexpert.org/expert/29246 -https://www.oceanexpert.org/expert/26049 -https://www.oceanexpert.org/expert/46742 -https://www.oceanexpert.org/expert/20701 -https://www.oceanexpert.org/expert/36372 -https://www.oceanexpert.org/expert/22668 -https://www.oceanexpert.org/expert/24330 -https://www.oceanexpert.org/institution/21748 -https://www.oceanexpert.org/expert/2126 -https://www.oceanexpert.org/institution/11610 -https://www.oceanexpert.org/expert/25122 -https://www.oceanexpert.org/expert/18549 -https://www.oceanexpert.org/expert/30848 -https://www.oceanexpert.org/expert/34615 -https://www.oceanexpert.org/event/1215 -https://www.oceanexpert.org/event/3109 -https://www.oceanexpert.org/event/1598 -https://www.oceanexpert.org/expert/36902 -https://www.oceanexpert.org/expert/46632 -https://www.oceanexpert.org/event/112 -https://www.oceanexpert.org/expert/12324 -https://www.oceanexpert.org/event/2917 -https://www.oceanexpert.org/expert/19883 -https://www.oceanexpert.org/institution/17122 -https://www.oceanexpert.org/expert/39587 -https://www.oceanexpert.org/expert/43048 -https://www.oceanexpert.org/expert/42719 -https://www.oceanexpert.org/expert/37217 -https://www.oceanexpert.org/expert/23140 -https://www.oceanexpert.org/expert/13339 -https://www.oceanexpert.org/event/144 -https://www.oceanexpert.org/event/1971 -https://www.oceanexpert.org/expert/20366 -https://www.oceanexpert.org/expert/18340 -https://www.oceanexpert.org/institution/21763 -https://www.oceanexpert.org/event/3260 -https://www.oceanexpert.org/event/306 -https://www.oceanexpert.org/expert/44708 -https://www.oceanexpert.org/expert/43971 -https://www.oceanexpert.org/expert/13932 -https://www.oceanexpert.org/expert/38751 -https://www.oceanexpert.org/institution/10362 -https://www.oceanexpert.org/expert/23969 -https://www.oceanexpert.org/institution/18885 -https://www.oceanexpert.org/institution/13484 -https://www.oceanexpert.org/expert/43882 -https://www.oceanexpert.org/institution/6531 -https://www.oceanexpert.org/expert/33027 -https://www.oceanexpert.org/expert/14092 -https://www.oceanexpert.org/event/1155 -https://www.oceanexpert.org/event/1622 -https://www.oceanexpert.org/expert/28171 -https://www.oceanexpert.org/expert/45930 -https://www.oceanexpert.org/expert/24493 -https://www.oceanexpert.org/expert/23899 -https://www.oceanexpert.org/expert/32274 -https://www.oceanexpert.org/expert/45979 -https://www.oceanexpert.org/institution/19573 -https://www.oceanexpert.org/expert/14460 -https://www.oceanexpert.org/expert/27598 -https://www.oceanexpert.org/institution/5459 -https://www.oceanexpert.org/expert/33761 -https://www.oceanexpert.org/institution/16676 -https://www.oceanexpert.org/expert/21098 -https://www.oceanexpert.org/expert/25164 -https://www.oceanexpert.org/expert/17015 -https://www.oceanexpert.org/institution/15179 -https://www.oceanexpert.org/expert/48102 -https://www.oceanexpert.org/institution/21798 -https://www.oceanexpert.org/event/2493 -https://www.oceanexpert.org/institution/16008 -https://www.oceanexpert.org/expert/23015 -https://www.oceanexpert.org/expert/18535 -https://www.oceanexpert.org/expert/14865 -https://www.oceanexpert.org/expert/17026 -https://www.oceanexpert.org/event/12 -https://www.oceanexpert.org/event/1089 -https://www.oceanexpert.org/institution/16384 -https://www.oceanexpert.org/expert/37968 -https://www.oceanexpert.org/expert/33729 -https://www.oceanexpert.org/expert/26524 -https://www.oceanexpert.org/expert/32574 -https://www.oceanexpert.org/expert/45180 -https://www.oceanexpert.org/expert/3643 -https://www.oceanexpert.org/expert/48753 -https://www.oceanexpert.org/institution/14260 -https://www.oceanexpert.org/institution/18652 -https://www.oceanexpert.org/institution/11544 -https://www.oceanexpert.org/institution/14101 -https://www.oceanexpert.org/expert/45529 -https://www.oceanexpert.org/expert/23336 -https://www.oceanexpert.org/event/3131 -https://www.oceanexpert.org/expert/3868 -https://www.oceanexpert.org/event/2608 -https://www.oceanexpert.org/expert/16069 -https://www.oceanexpert.org/expert/23169 -https://www.oceanexpert.org/expert/3473 -https://www.oceanexpert.org/expert/16887 -https://www.oceanexpert.org/expert/31392 -https://www.oceanexpert.org/institution/18751 -https://www.oceanexpert.org/expert/14463 -https://www.oceanexpert.org/expert/24276 -https://www.oceanexpert.org/expert/19548 -https://www.oceanexpert.org/expert/24520 -https://www.oceanexpert.org/expert/20367 -https://www.oceanexpert.org/institution/6048 -https://www.oceanexpert.org/institution/21675 -https://www.oceanexpert.org/expert/34771 -https://www.oceanexpert.org/expert/13318 -https://www.oceanexpert.org/institution/15908 -https://www.oceanexpert.org/institution/6636 -https://www.oceanexpert.org/event/2720 -https://www.oceanexpert.org/expert/17423 -https://www.oceanexpert.org/expert/47885 -https://www.oceanexpert.org/expert/35221 -https://www.oceanexpert.org/event/380 -https://www.oceanexpert.org/expert/7657 -https://www.oceanexpert.org/expert/26809 -https://www.oceanexpert.org/expert/9059 -https://www.oceanexpert.org/expert/15983 -https://www.oceanexpert.org/expert/25116 -https://www.oceanexpert.org/expert/39566 -https://www.oceanexpert.org/expert/38226 -https://www.oceanexpert.org/expert/17394 -https://www.oceanexpert.org/institution/11275 -https://www.oceanexpert.org/expert/48895 -https://www.oceanexpert.org/expert/13257 -https://www.oceanexpert.org/expert/48728 -https://www.oceanexpert.org/event/816 -https://www.oceanexpert.org/expert/27042 -https://www.oceanexpert.org/expert/7186 -https://www.oceanexpert.org/institution/17899 -https://www.oceanexpert.org/expert/44103 -https://www.oceanexpert.org/institution/19187 -https://www.oceanexpert.org/expert/37957 -https://www.oceanexpert.org/expert/34241 -https://www.oceanexpert.org/expert/44996 -https://www.oceanexpert.org/expert/35168 -https://www.oceanexpert.org/expert/37986 -https://www.oceanexpert.org/expert/36178 -https://www.oceanexpert.org/expert/33842 -https://www.oceanexpert.org/expert/43799 -https://www.oceanexpert.org/expert/29632 -https://www.oceanexpert.org/expert/27730 -https://www.oceanexpert.org/institution/21744 -https://www.oceanexpert.org/expert/45089 -https://www.oceanexpert.org/expert/13477 -https://www.oceanexpert.org/expert/14981 -https://www.oceanexpert.org/expert/44780 -https://www.oceanexpert.org/expert/38943 -https://www.oceanexpert.org/expert/12951 -https://www.oceanexpert.org/institution/11419 -https://www.oceanexpert.org/institution/20845 -https://www.oceanexpert.org/expert/22814 -https://www.oceanexpert.org/expert/44026 -https://www.oceanexpert.org/expert/19484 -https://www.oceanexpert.org/expert/15922 -https://www.oceanexpert.org/expert/39980 -https://www.oceanexpert.org/expert/29786 -https://www.oceanexpert.org/expert/47270 -https://www.oceanexpert.org/expert/37858 -https://www.oceanexpert.org/expert/44758 -https://www.oceanexpert.org/expert/27356 -https://www.oceanexpert.org/expert/11467 -https://www.oceanexpert.org/expert/48792 -https://www.oceanexpert.org/expert/27320 -https://www.oceanexpert.org/event/3109 -https://www.oceanexpert.org/event/2750 -https://www.oceanexpert.org/expert/45144 -https://www.oceanexpert.org/expert/36776 -https://www.oceanexpert.org/institution/22019 -https://www.oceanexpert.org/expert/43537 -https://www.oceanexpert.org/institution/5836 -https://www.oceanexpert.org/institution/12930 -https://www.oceanexpert.org/expert/47679 -https://www.oceanexpert.org/expert/35279 -https://www.oceanexpert.org/institution/21505 -https://www.oceanexpert.org/expert/8049 -https://www.oceanexpert.org/institution/8230 -https://www.oceanexpert.org/institution/18771 -https://www.oceanexpert.org/expert/48277 -https://www.oceanexpert.org/expert/47725 -https://www.oceanexpert.org/expert/23532 -https://www.oceanexpert.org/expert/20349 -https://www.oceanexpert.org/expert/23190 -https://www.oceanexpert.org/expert/27852 -https://www.oceanexpert.org/expert/32266 -https://www.oceanexpert.org/institution/20912 -https://www.oceanexpert.org/expert/44033 -https://www.oceanexpert.org/institution/19667 -https://www.oceanexpert.org/event/3255 -https://www.oceanexpert.org/institution/11693 -https://www.oceanexpert.org/expert/37470 -https://www.oceanexpert.org/expert/43291 -https://www.oceanexpert.org/institution/20076 -https://www.oceanexpert.org/expert/31193 -https://www.oceanexpert.org/expert/36594 -https://www.oceanexpert.org/expert/34614 -https://www.oceanexpert.org/expert/37495 -https://www.oceanexpert.org/expert/9273 -https://www.oceanexpert.org/institution/12214 -https://www.oceanexpert.org/institution/13019 -https://www.oceanexpert.org/expert/19341 -https://www.oceanexpert.org/expert/19222 -https://www.oceanexpert.org/expert/15922 -https://www.oceanexpert.org/expert/19799 -https://www.oceanexpert.org/expert/23090 -https://www.oceanexpert.org/event/1870 -https://www.oceanexpert.org/expert/26720 -https://www.oceanexpert.org/institution/21371 -https://www.oceanexpert.org/expert/26387 -https://www.oceanexpert.org/event/1970 -https://www.oceanexpert.org/expert/34286 -https://www.oceanexpert.org/expert/22943 -https://www.oceanexpert.org/expert/40124 -https://www.oceanexpert.org/event/2818 -https://www.oceanexpert.org/expert/47915 -https://www.oceanexpert.org/expert/44997 -https://www.oceanexpert.org/institution/19307 -https://www.oceanexpert.org/institution/17515 -https://www.oceanexpert.org/institution/11277 -https://www.oceanexpert.org/event/2001 -https://www.oceanexpert.org/institution/16716 -https://www.oceanexpert.org/institution/15296 -https://www.oceanexpert.org/expert/31910 -https://www.oceanexpert.org/expert/21797 -https://www.oceanexpert.org/institution/20134 -https://www.oceanexpert.org/expert/47896 -https://www.oceanexpert.org/expert/35734 -https://www.oceanexpert.org/event/1637 -https://www.oceanexpert.org/expert/23017 -https://www.oceanexpert.org/expert/29484 -https://www.oceanexpert.org/institution/19262 -https://www.oceanexpert.org/expert/46007 -https://www.oceanexpert.org/expert/25879 -https://www.oceanexpert.org/expert/19648 -https://www.oceanexpert.org/expert/20054 -https://www.oceanexpert.org/institution/17984 -https://www.oceanexpert.org/expert/36764 -https://www.oceanexpert.org/expert/34851 -https://www.oceanexpert.org/institution/20428 -https://www.oceanexpert.org/expert/40273 -https://www.oceanexpert.org/institution/22086 -https://www.oceanexpert.org/expert/44504 -https://www.oceanexpert.org/expert/33341 -https://www.oceanexpert.org/institution/6008 -https://www.oceanexpert.org/expert/30323 -https://www.oceanexpert.org/event/1735 -https://www.oceanexpert.org/expert/46453 -https://www.oceanexpert.org/expert/26490 -https://www.oceanexpert.org/expert/25246 -https://www.oceanexpert.org/expert/8784 -https://www.oceanexpert.org/expert/48674 -https://www.oceanexpert.org/institution/14334 -https://www.oceanexpert.org/institution/21883 -https://www.oceanexpert.org/event/424 -https://www.oceanexpert.org/expert/26167 -https://www.oceanexpert.org/expert/42500 -https://www.oceanexpert.org/expert/2643 -https://www.oceanexpert.org/expert/1272 -https://www.oceanexpert.org/expert/25125 -https://www.oceanexpert.org/institution/19814 -https://www.oceanexpert.org/event/1064 -https://www.oceanexpert.org/expert/24120 -https://www.oceanexpert.org/expert/45310 -https://www.oceanexpert.org/expert/34957 -https://www.oceanexpert.org/expert/17212 -https://www.oceanexpert.org/institution/20842 -https://www.oceanexpert.org/institution/21804 -https://www.oceanexpert.org/expert/43126 -https://www.oceanexpert.org/institution/16284 -https://www.oceanexpert.org/expert/21745 -https://www.oceanexpert.org/expert/43281 -https://www.oceanexpert.org/expert/44326 -https://www.oceanexpert.org/event/2726 -https://www.oceanexpert.org/expert/46623 -https://www.oceanexpert.org/expert/42864 -https://www.oceanexpert.org/event/949 -https://www.oceanexpert.org/institution/6941 -https://www.oceanexpert.org/expert/19795 -https://www.oceanexpert.org/institution/21862 -https://www.oceanexpert.org/event/2461 -https://www.oceanexpert.org/institution/9854 -https://www.oceanexpert.org/expert/30455 -https://www.oceanexpert.org/expert/13872 -https://www.oceanexpert.org/expert/12201 -https://www.oceanexpert.org/expert/46966 -https://www.oceanexpert.org/institution/10394 -https://www.oceanexpert.org/expert/27509 -https://www.oceanexpert.org/institution/18230 -https://www.oceanexpert.org/expert/34873 -https://www.oceanexpert.org/event/189 -https://www.oceanexpert.org/expert/45181 -https://www.oceanexpert.org/expert/27274 -https://www.oceanexpert.org/expert/23662 -https://www.oceanexpert.org/institution/19758 -https://www.oceanexpert.org/institution/20855 -https://www.oceanexpert.org/expert/47471 -https://www.oceanexpert.org/expert/48766 -https://www.oceanexpert.org/expert/45113 -https://www.oceanexpert.org/expert/42938 -https://www.oceanexpert.org/expert/43977 -https://www.oceanexpert.org/institution/22117 -https://www.oceanexpert.org/expert/20440 -https://www.oceanexpert.org/institution/20282 -https://www.oceanexpert.org/expert/38177 -https://www.oceanexpert.org/expert/14156 -https://www.oceanexpert.org/expert/16651 -https://www.oceanexpert.org/expert/33627 -https://www.oceanexpert.org/event/2738 -https://www.oceanexpert.org/institution/10573 -https://www.oceanexpert.org/expert/48964 -https://www.oceanexpert.org/expert/3438 -https://www.oceanexpert.org/expert/38184 -https://www.oceanexpert.org/expert/31937 -https://www.oceanexpert.org/expert/4918 -https://www.oceanexpert.org/expert/29971 -https://www.oceanexpert.org/institution/21754 -https://www.oceanexpert.org/expert/26627 -https://www.oceanexpert.org/expert/43321 -https://www.oceanexpert.org/event/1901 -https://www.oceanexpert.org/event/2230 -https://www.oceanexpert.org/institution/12963 -https://www.oceanexpert.org/expert/24477 -https://www.oceanexpert.org/institution/14168 -https://www.oceanexpert.org/expert/36706 -https://www.oceanexpert.org/institution/15273 -https://www.oceanexpert.org/event/1011 -https://www.oceanexpert.org/institution/21779 -https://www.oceanexpert.org/expert/34878 -https://www.oceanexpert.org/expert/45615 -https://www.oceanexpert.org/expert/47753 -https://www.oceanexpert.org/expert/29685 -https://www.oceanexpert.org/institution/17712 -https://www.oceanexpert.org/expert/34028 -https://www.oceanexpert.org/institution/16374 -https://www.oceanexpert.org/expert/47701 -https://www.oceanexpert.org/expert/33822 -https://www.oceanexpert.org/expert/23866 -https://www.oceanexpert.org/expert/2977 -https://www.oceanexpert.org/expert/44412 -https://www.oceanexpert.org/institution/13863 -https://www.oceanexpert.org/expert/21738 -https://www.oceanexpert.org/expert/25327 -https://www.oceanexpert.org/expert/35801 -https://www.oceanexpert.org/expert/44708 -https://www.oceanexpert.org/institution/16779 -https://www.oceanexpert.org/expert/27254 -https://www.oceanexpert.org/expert/19672 -https://www.oceanexpert.org/institution/18698 -https://www.oceanexpert.org/institution/13750 -https://www.oceanexpert.org/expert/41647 -https://www.oceanexpert.org/expert/45732 -https://www.oceanexpert.org/expert/32577 -https://www.oceanexpert.org/institution/19251 -https://www.oceanexpert.org/expert/47153 -https://www.oceanexpert.org/expert/18606 -https://www.oceanexpert.org/expert/37423 -https://www.oceanexpert.org/institution/18197 -https://www.oceanexpert.org/institution/21445 -https://www.oceanexpert.org/expert/18342 -https://www.oceanexpert.org/expert/26082 -https://www.oceanexpert.org/expert/48611 -https://www.oceanexpert.org/expert/27051 -https://www.oceanexpert.org/expert/26223 -https://www.oceanexpert.org/expert/29676 -https://www.oceanexpert.org/expert/16182 -https://www.oceanexpert.org/expert/37809 -https://www.oceanexpert.org/expert/26627 -https://www.oceanexpert.org/expert/32233 -https://www.oceanexpert.org/expert/40928 -https://www.oceanexpert.org/expert/40000 -https://www.oceanexpert.org/expert/15878 -https://www.oceanexpert.org/expert/44426 -https://www.oceanexpert.org/expert/22574 -https://www.oceanexpert.org/expert/6879 -https://www.oceanexpert.org/expert/45648 -https://www.oceanexpert.org/expert/48631 -https://www.oceanexpert.org/expert/8814 -https://www.oceanexpert.org/expert/37497 -https://www.oceanexpert.org/expert/29638 -https://www.oceanexpert.org/institution/21854 -https://www.oceanexpert.org/expert/48372 -https://www.oceanexpert.org/expert/38374 -https://www.oceanexpert.org/expert/17218 -https://www.oceanexpert.org/event/1674 -https://www.oceanexpert.org/event/1842 -https://www.oceanexpert.org/institution/12624 -https://www.oceanexpert.org/event/1989 -https://www.oceanexpert.org/expert/34510 -https://www.oceanexpert.org/institution/13210 -https://www.oceanexpert.org/institution/13169 -https://www.oceanexpert.org/expert/23009 -https://www.oceanexpert.org/expert/44961 -https://www.oceanexpert.org/expert/21189 -https://www.oceanexpert.org/institution/20182 -https://www.oceanexpert.org/expert/31521 -https://www.oceanexpert.org/expert/22278 -https://www.oceanexpert.org/expert/37415 -https://www.oceanexpert.org/expert/44892 -https://www.oceanexpert.org/expert/47154 -https://www.oceanexpert.org/expert/19010 -https://www.oceanexpert.org/event/80 -https://www.oceanexpert.org/expert/16822 -https://www.oceanexpert.org/expert/18196 -https://www.oceanexpert.org/expert/35036 -https://www.oceanexpert.org/event/897 -https://www.oceanexpert.org/institution/11853 -https://www.oceanexpert.org/institution/18410 -https://www.oceanexpert.org/institution/21837 -https://www.oceanexpert.org/expert/900 -https://www.oceanexpert.org/expert/24839 -https://www.oceanexpert.org/expert/11643 -https://www.oceanexpert.org/expert/45420 -https://www.oceanexpert.org/expert/45312 -https://www.oceanexpert.org/expert/36714 -https://www.oceanexpert.org/expert/40300 -https://www.oceanexpert.org/event/239 -https://www.oceanexpert.org/institution/21837 -https://www.oceanexpert.org/expert/33613 -https://www.oceanexpert.org/institution/6704 -https://www.oceanexpert.org/expert/35367 -https://www.oceanexpert.org/event/1898 -https://www.oceanexpert.org/event/496 -https://www.oceanexpert.org/expert/48751 -https://www.oceanexpert.org/expert/43292 -https://www.oceanexpert.org/expert/19545 -https://www.oceanexpert.org/expert/43521 -https://www.oceanexpert.org/expert/48961 -https://www.oceanexpert.org/expert/26169 -https://www.oceanexpert.org/institution/18548 -https://www.oceanexpert.org/expert/21852 -https://www.oceanexpert.org/expert/25495 -https://www.oceanexpert.org/expert/33349 -https://www.oceanexpert.org/institution/19911 -https://www.oceanexpert.org/institution/18587 -https://www.oceanexpert.org/expert/47430 -https://www.oceanexpert.org/expert/26289 -https://www.oceanexpert.org/expert/24406 -https://www.oceanexpert.org/expert/26904 -https://www.oceanexpert.org/expert/6720 -https://www.oceanexpert.org/event/2721 -https://www.oceanexpert.org/expert/46337 -https://www.oceanexpert.org/event/1275 -https://www.oceanexpert.org/institution/12813 -https://www.oceanexpert.org/expert/48639 -https://www.oceanexpert.org/institution/12376 -https://www.oceanexpert.org/expert/32702 -https://www.oceanexpert.org/expert/35073 -https://www.oceanexpert.org/event/1947 -https://www.oceanexpert.org/institution/20856 -https://www.oceanexpert.org/expert/38611 -https://www.oceanexpert.org/expert/23595 -https://www.oceanexpert.org/expert/12978 -https://www.oceanexpert.org/expert/38667 -https://www.oceanexpert.org/expert/34674 -https://www.oceanexpert.org/expert/32862 -https://www.oceanexpert.org/expert/19625 -https://www.oceanexpert.org/institution/21265 -https://www.oceanexpert.org/institution/6238 -https://www.oceanexpert.org/expert/47794 -https://www.oceanexpert.org/expert/21834 -https://www.oceanexpert.org/institution/21427 -https://www.oceanexpert.org/expert/44478 -https://www.oceanexpert.org/expert/16994 -https://www.oceanexpert.org/event/2821 -https://www.oceanexpert.org/expert/33210 -https://www.oceanexpert.org/expert/39177 -https://www.oceanexpert.org/expert/5406 -https://www.oceanexpert.org/expert/21286 -https://www.oceanexpert.org/expert/8007 -https://www.oceanexpert.org/event/2304 -https://www.oceanexpert.org/institution/21362 -https://www.oceanexpert.org/event/3277 -https://www.oceanexpert.org/expert/29128 -https://www.oceanexpert.org/event/1070 -https://www.oceanexpert.org/expert/43079 -https://www.oceanexpert.org/institution/10218 -https://www.oceanexpert.org/expert/23858 -https://www.oceanexpert.org/expert/23804 -https://www.oceanexpert.org/expert/27598 -https://www.oceanexpert.org/expert/27743 -https://www.oceanexpert.org/expert/27735 -https://www.oceanexpert.org/expert/32349 -https://www.oceanexpert.org/institution/17789 -https://www.oceanexpert.org/institution/21490 -https://www.oceanexpert.org/institution/5506 -https://www.oceanexpert.org/institution/19290 -https://www.oceanexpert.org/expert/22171 -https://www.oceanexpert.org/expert/26587 -https://www.oceanexpert.org/institution/19063 -https://www.oceanexpert.org/institution/21714 -https://www.oceanexpert.org/expert/35002 -https://www.oceanexpert.org/expert/18964 -https://www.oceanexpert.org/expert/28449 -https://www.oceanexpert.org/event/1169 -https://www.oceanexpert.org/expert/19614 -https://www.oceanexpert.org/expert/2664 -https://www.oceanexpert.org/expert/37999 -https://www.oceanexpert.org/expert/23724 -https://www.oceanexpert.org/expert/26872 -https://www.oceanexpert.org/institution/16153 -https://www.oceanexpert.org/institution/15409 -https://www.oceanexpert.org/expert/44826 -https://www.oceanexpert.org/expert/46795 -https://www.oceanexpert.org/event/18 -https://www.oceanexpert.org/institution/19307 -https://www.oceanexpert.org/expert/46860 -https://www.oceanexpert.org/expert/24642 -https://www.oceanexpert.org/expert/36457 -https://www.oceanexpert.org/expert/20060 -https://www.oceanexpert.org/expert/8950 -https://www.oceanexpert.org/expert/44355 -https://www.oceanexpert.org/institution/8082 -https://www.oceanexpert.org/expert/18666 -https://www.oceanexpert.org/event/99 -https://www.oceanexpert.org/expert/22874 -https://www.oceanexpert.org/institution/9342 -https://www.oceanexpert.org/institution/18997 -https://www.oceanexpert.org/institution/21528 -https://www.oceanexpert.org/institution/21981 -https://www.oceanexpert.org/expert/21737 -https://www.oceanexpert.org/expert/23051 -https://www.oceanexpert.org/institution/12441 -https://www.oceanexpert.org/expert/18400 -https://www.oceanexpert.org/expert/46802 -https://www.oceanexpert.org/expert/44673 -https://www.oceanexpert.org/expert/4230 -https://www.oceanexpert.org/expert/33439 -https://www.oceanexpert.org/expert/46848 -https://www.oceanexpert.org/institution/16403 -https://www.oceanexpert.org/expert/23511 -https://www.oceanexpert.org/institution/14883 -https://www.oceanexpert.org/expert/22087 -https://www.oceanexpert.org/expert/26287 -https://www.oceanexpert.org/expert/34067 -https://www.oceanexpert.org/expert/34520 -https://www.oceanexpert.org/expert/560 -https://www.oceanexpert.org/expert/48081 -https://www.oceanexpert.org/expert/42457 -https://www.oceanexpert.org/expert/2938 -https://www.oceanexpert.org/expert/6235 -https://www.oceanexpert.org/expert/14424 -https://www.oceanexpert.org/expert/44491 -https://www.oceanexpert.org/expert/23872 -https://www.oceanexpert.org/expert/24189 -https://www.oceanexpert.org/expert/23105 -https://www.oceanexpert.org/institution/15717 -https://www.oceanexpert.org/expert/36736 -https://www.oceanexpert.org/expert/19533 -https://www.oceanexpert.org/expert/45581 -https://www.oceanexpert.org/expert/17092 -https://www.oceanexpert.org/expert/34993 -https://www.oceanexpert.org/expert/23689 -https://www.oceanexpert.org/expert/32511 -https://www.oceanexpert.org/expert/26256 -https://www.oceanexpert.org/expert/35295 -https://www.oceanexpert.org/expert/29507 -https://www.oceanexpert.org/institution/21260 -https://www.oceanexpert.org/event/557 -https://www.oceanexpert.org/institution/19267 -https://www.oceanexpert.org/institution/12944 -https://www.oceanexpert.org/institution/16394 -https://www.oceanexpert.org/institution/20502 -https://www.oceanexpert.org/expert/44809 -https://www.oceanexpert.org/event/784 -https://www.oceanexpert.org/expert/25386 -https://www.oceanexpert.org/event/1139 -https://www.oceanexpert.org/expert/48857 -https://www.oceanexpert.org/institution/14299 -https://www.oceanexpert.org/expert/33506 -https://www.oceanexpert.org/expert/22960 -https://www.oceanexpert.org/expert/44935 -https://www.oceanexpert.org/expert/18070 -https://www.oceanexpert.org/institution/6143 -https://www.oceanexpert.org/expert/4346 -https://www.oceanexpert.org/expert/20589 -https://www.oceanexpert.org/expert/45650 -https://www.oceanexpert.org/expert/48239 -https://www.oceanexpert.org/expert/21298 -https://www.oceanexpert.org/expert/26742 -https://www.oceanexpert.org/expert/45303 -https://www.oceanexpert.org/expert/21771 -https://www.oceanexpert.org/institution/15671 -https://www.oceanexpert.org/expert/2862 -https://www.oceanexpert.org/expert/31270 -https://www.oceanexpert.org/expert/44439 -https://www.oceanexpert.org/expert/46021 -https://www.oceanexpert.org/expert/9502 -https://www.oceanexpert.org/institution/21147 -https://www.oceanexpert.org/expert/32963 -https://www.oceanexpert.org/expert/25356 -https://www.oceanexpert.org/institution/18042 -https://www.oceanexpert.org/institution/7953 -https://www.oceanexpert.org/expert/26888 -https://www.oceanexpert.org/institution/8218 -https://www.oceanexpert.org/institution/19845 -https://www.oceanexpert.org/institution/17978 -https://www.oceanexpert.org/expert/42914 -https://www.oceanexpert.org/expert/14279 -https://www.oceanexpert.org/institution/14650 -https://www.oceanexpert.org/institution/12681 -https://www.oceanexpert.org/expert/13548 -https://www.oceanexpert.org/expert/34798 -https://www.oceanexpert.org/expert/34036 -https://www.oceanexpert.org/expert/15950 -https://www.oceanexpert.org/institution/20343 -https://www.oceanexpert.org/expert/9521 -https://www.oceanexpert.org/expert/25118 -https://www.oceanexpert.org/expert/48949 -https://www.oceanexpert.org/institution/18558 -https://www.oceanexpert.org/expert/37174 -https://www.oceanexpert.org/expert/42137 -https://www.oceanexpert.org/institution/11217 -https://www.oceanexpert.org/expert/32712 -https://www.oceanexpert.org/expert/36613 -https://www.oceanexpert.org/institution/21511 -https://www.oceanexpert.org/expert/15739 -https://www.oceanexpert.org/expert/22259 -https://www.oceanexpert.org/expert/38404 -https://www.oceanexpert.org/expert/22537 -https://www.oceanexpert.org/expert/21004 -https://www.oceanexpert.org/expert/5521 -https://www.oceanexpert.org/event/389 -https://www.oceanexpert.org/institution/18038 -https://www.oceanexpert.org/expert/43173 -https://www.oceanexpert.org/institution/19781 -https://www.oceanexpert.org/expert/31206 -https://www.oceanexpert.org/expert/49029 -https://www.oceanexpert.org/institution/21603 -https://www.oceanexpert.org/expert/31032 -https://www.oceanexpert.org/institution/20064 -https://www.oceanexpert.org/expert/42771 -https://www.oceanexpert.org/expert/36718 -https://www.oceanexpert.org/expert/25839 -https://www.oceanexpert.org/expert/32811 -https://www.oceanexpert.org/institution/11777 -https://www.oceanexpert.org/institution/21752 -https://www.oceanexpert.org/institution/15480 -https://www.oceanexpert.org/expert/13350 -https://www.oceanexpert.org/institution/12423 -https://www.oceanexpert.org/expert/24969 -https://www.oceanexpert.org/event/2935 -https://www.oceanexpert.org/institution/18610 -https://www.oceanexpert.org/expert/44185 -https://www.oceanexpert.org/expert/43691 -https://www.oceanexpert.org/event/387 -https://www.oceanexpert.org/institution/5328 -https://www.oceanexpert.org/expert/821 -https://www.oceanexpert.org/expert/37829 -https://www.oceanexpert.org/expert/44063 -https://www.oceanexpert.org/event/1372 -https://www.oceanexpert.org/event/429 -https://www.oceanexpert.org/institution/11461 -https://www.oceanexpert.org/expert/47787 -https://www.oceanexpert.org/expert/42882 -https://www.oceanexpert.org/expert/37952 -https://www.oceanexpert.org/institution/18686 -https://www.oceanexpert.org/expert/14826 -https://www.oceanexpert.org/expert/3870 -https://www.oceanexpert.org/expert/42985 -https://www.oceanexpert.org/institution/20937 -https://www.oceanexpert.org/expert/26165 -https://www.oceanexpert.org/expert/29232 -https://www.oceanexpert.org/expert/47081 -https://www.oceanexpert.org/institution/7879 -https://www.oceanexpert.org/institution/5561 -https://www.oceanexpert.org/institution/10283 -https://www.oceanexpert.org/institution/22176 -https://www.oceanexpert.org/expert/22936 -https://www.oceanexpert.org/expert/14460 -https://www.oceanexpert.org/expert/25418 -https://www.oceanexpert.org/expert/45070 -https://www.oceanexpert.org/event/1682 -https://www.oceanexpert.org/expert/39666 -https://www.oceanexpert.org/expert/18019 -https://www.oceanexpert.org/expert/48728 -https://www.oceanexpert.org/event/1540 -https://www.oceanexpert.org/event/2416 -https://www.oceanexpert.org/expert/38076 -https://www.oceanexpert.org/expert/47793 -https://www.oceanexpert.org/institution/20793 -https://www.oceanexpert.org/institution/11303 -https://www.oceanexpert.org/institution/20749 -https://www.oceanexpert.org/expert/46794 -https://www.oceanexpert.org/expert/13944 -https://www.oceanexpert.org/expert/26087 -https://www.oceanexpert.org/institution/20325 -https://www.oceanexpert.org/expert/7110 -https://www.oceanexpert.org/expert/23928 -https://www.oceanexpert.org/expert/40561 -https://www.oceanexpert.org/expert/43810 -https://www.oceanexpert.org/institution/21033 -https://www.oceanexpert.org/expert/30609 -https://www.oceanexpert.org/institution/16687 -https://www.oceanexpert.org/expert/3243 -https://www.oceanexpert.org/expert/36840 -https://www.oceanexpert.org/event/471 -https://www.oceanexpert.org/expert/34975 -https://www.oceanexpert.org/expert/25707 -https://www.oceanexpert.org/expert/726 -https://www.oceanexpert.org/institution/12912 -https://www.oceanexpert.org/expert/33062 -https://www.oceanexpert.org/expert/687 -https://www.oceanexpert.org/expert/46345 -https://www.oceanexpert.org/expert/37580 -https://www.oceanexpert.org/institution/12875 -https://www.oceanexpert.org/event/2134 -https://www.oceanexpert.org/expert/25741 -https://www.oceanexpert.org/expert/21634 -https://www.oceanexpert.org/institution/10664 -https://www.oceanexpert.org/institution/20406 -https://www.oceanexpert.org/expert/31198 -https://www.oceanexpert.org/institution/20562 -https://www.oceanexpert.org/institution/20762 -https://www.oceanexpert.org/expert/24775 -https://www.oceanexpert.org/expert/45567 -https://www.oceanexpert.org/expert/43936 -https://www.oceanexpert.org/institution/18307 -https://www.oceanexpert.org/expert/34700 -https://www.oceanexpert.org/expert/39157 -https://www.oceanexpert.org/expert/37785 -https://www.oceanexpert.org/expert/18549 -https://www.oceanexpert.org/expert/23491 -https://www.oceanexpert.org/institution/22110 -https://www.oceanexpert.org/expert/20611 -https://www.oceanexpert.org/expert/32820 -https://www.oceanexpert.org/expert/34786 -https://www.oceanexpert.org/expert/38678 -https://www.oceanexpert.org/institution/15887 -https://www.oceanexpert.org/event/1573 -https://www.oceanexpert.org/expert/26543 -https://www.oceanexpert.org/expert/27670 -https://www.oceanexpert.org/event/868 -https://www.oceanexpert.org/expert/21904 -https://www.oceanexpert.org/expert/36537 -https://www.oceanexpert.org/expert/36573 -https://www.oceanexpert.org/institution/19782 -https://www.oceanexpert.org/expert/31340 -https://www.oceanexpert.org/expert/2015 -https://www.oceanexpert.org/event/424 -https://www.oceanexpert.org/expert/15662 -https://www.oceanexpert.org/expert/34750 -https://www.oceanexpert.org/expert/14716 -https://www.oceanexpert.org/event/2978 -https://www.oceanexpert.org/expert/26399 -https://www.oceanexpert.org/expert/47361 -https://www.oceanexpert.org/expert/8258 -https://www.oceanexpert.org/institution/21793 -https://www.oceanexpert.org/expert/9250 -https://www.oceanexpert.org/expert/49035 -https://www.oceanexpert.org/institution/22067 -https://www.oceanexpert.org/expert/8786 -https://www.oceanexpert.org/expert/16667 -https://www.oceanexpert.org/event/2410 -https://www.oceanexpert.org/expert/36840 -https://www.oceanexpert.org/event/2390 -https://www.oceanexpert.org/expert/24134 -https://www.oceanexpert.org/expert/48244 -https://www.oceanexpert.org/expert/11218 -https://www.oceanexpert.org/expert/5059 -https://www.oceanexpert.org/institution/11340 -https://www.oceanexpert.org/expert/45527 -https://www.oceanexpert.org/institution/20511 -https://www.oceanexpert.org/expert/16750 -https://www.oceanexpert.org/institution/7152 -https://www.oceanexpert.org/expert/36353 -https://www.oceanexpert.org/expert/31213 -https://www.oceanexpert.org/expert/22267 -https://www.oceanexpert.org/expert/19470 -https://www.oceanexpert.org/institution/15865 -https://www.oceanexpert.org/institution/15953 -https://www.oceanexpert.org/expert/34294 -https://www.oceanexpert.org/institution/18959 -https://www.oceanexpert.org/event/2467 -https://www.oceanexpert.org/expert/19500 -https://www.oceanexpert.org/expert/19095 -https://www.oceanexpert.org/expert/20379 -https://www.oceanexpert.org/expert/19197 -https://www.oceanexpert.org/institution/20523 -https://www.oceanexpert.org/institution/21319 -https://www.oceanexpert.org/institution/17663 -https://www.oceanexpert.org/expert/20271 -https://www.oceanexpert.org/institution/16153 -https://www.oceanexpert.org/institution/20903 -https://www.oceanexpert.org/institution/21915 -https://www.oceanexpert.org/event/1810 -https://www.oceanexpert.org/expert/12332 -https://www.oceanexpert.org/expert/43608 -https://www.oceanexpert.org/expert/39168 -https://www.oceanexpert.org/institution/15232 -https://www.oceanexpert.org/expert/36170 -https://www.oceanexpert.org/expert/37790 -https://www.oceanexpert.org/institution/18568 -https://www.oceanexpert.org/institution/19715 -https://www.oceanexpert.org/institution/18997 -https://www.oceanexpert.org/institution/4941 -https://www.oceanexpert.org/expert/9477 -https://www.oceanexpert.org/event/2278 -https://www.oceanexpert.org/institution/21751 -https://www.oceanexpert.org/expert/32679 -https://www.oceanexpert.org/expert/19315 -https://www.oceanexpert.org/expert/29501 -https://www.oceanexpert.org/institution/20400 -https://www.oceanexpert.org/expert/25154 -https://www.oceanexpert.org/event/1741 -https://www.oceanexpert.org/institution/13169 -https://www.oceanexpert.org/expert/42772 -https://www.oceanexpert.org/expert/48296 -https://www.oceanexpert.org/expert/45190 -https://www.oceanexpert.org/expert/25454 -https://www.oceanexpert.org/expert/43372 -https://www.oceanexpert.org/institution/10805 -https://www.oceanexpert.org/expert/42939 -https://www.oceanexpert.org/expert/2685 -https://www.oceanexpert.org/expert/21819 -https://www.oceanexpert.org/institution/11698 -https://www.oceanexpert.org/expert/46213 -https://www.oceanexpert.org/expert/45355 -https://www.oceanexpert.org/expert/35342 -https://www.oceanexpert.org/institution/12362 -https://www.oceanexpert.org/expert/16131 -https://www.oceanexpert.org/expert/27055 -https://www.oceanexpert.org/institution/12435 -https://www.oceanexpert.org/expert/23216 -https://www.oceanexpert.org/expert/31093 -https://www.oceanexpert.org/expert/26605 -https://www.oceanexpert.org/institution/18138 -https://www.oceanexpert.org/event/2389 -https://www.oceanexpert.org/event/2645 -https://www.oceanexpert.org/event/1920 -https://www.oceanexpert.org/expert/33878 -https://www.oceanexpert.org/institution/10122 -https://www.oceanexpert.org/expert/35481 -https://www.oceanexpert.org/institution/19922 -https://www.oceanexpert.org/expert/17225 -https://www.oceanexpert.org/expert/36672 -https://www.oceanexpert.org/expert/32199 -https://www.oceanexpert.org/expert/36673 -https://www.oceanexpert.org/event/2269 -https://www.oceanexpert.org/expert/16689 -https://www.oceanexpert.org/institution/10357 -https://www.oceanexpert.org/expert/25189 -https://www.oceanexpert.org/expert/29679 -https://www.oceanexpert.org/institution/20925 -https://www.oceanexpert.org/institution/15717 -https://www.oceanexpert.org/expert/18807 -https://www.oceanexpert.org/expert/45431 -https://www.oceanexpert.org/event/2993 -https://www.oceanexpert.org/institution/22023 -https://www.oceanexpert.org/institution/21727 -https://www.oceanexpert.org/institution/11023 -https://www.oceanexpert.org/expert/33883 -https://www.oceanexpert.org/expert/42985 -https://www.oceanexpert.org/institution/18655 -https://www.oceanexpert.org/institution/19309 -https://www.oceanexpert.org/event/807 -https://www.oceanexpert.org/expert/25041 -https://www.oceanexpert.org/institution/21021 -https://www.oceanexpert.org/expert/32507 -https://www.oceanexpert.org/institution/21989 -https://www.oceanexpert.org/institution/13108 -https://www.oceanexpert.org/expert/48720 -https://www.oceanexpert.org/expert/17727 -https://www.oceanexpert.org/expert/31432 -https://www.oceanexpert.org/expert/23770 -https://www.oceanexpert.org/expert/44493 -https://www.oceanexpert.org/expert/36938 -https://www.oceanexpert.org/expert/17413 -https://www.oceanexpert.org/institution/14232 -https://www.oceanexpert.org/expert/27004 -https://www.oceanexpert.org/institution/14431 -https://www.oceanexpert.org/institution/8438 -https://www.oceanexpert.org/expert/18555 -https://www.oceanexpert.org/expert/43030 -https://www.oceanexpert.org/expert/44144 -https://www.oceanexpert.org/expert/5633 -https://www.oceanexpert.org/expert/22886 -https://www.oceanexpert.org/institution/6300 -https://www.oceanexpert.org/expert/43806 -https://www.oceanexpert.org/expert/20949 -https://www.oceanexpert.org/institution/11842 -https://www.oceanexpert.org/expert/31107 -https://www.oceanexpert.org/expert/26814 -https://www.oceanexpert.org/institution/18471 -https://www.oceanexpert.org/institution/19286 -https://www.oceanexpert.org/expert/26401 -https://www.oceanexpert.org/institution/21238 -https://www.oceanexpert.org/expert/26332 -https://www.oceanexpert.org/expert/7196 -https://www.oceanexpert.org/expert/16925 -https://www.oceanexpert.org/expert/44123 -https://www.oceanexpert.org/expert/23532 -https://www.oceanexpert.org/institution/16716 -https://www.oceanexpert.org/event/531 -https://www.oceanexpert.org/institution/21596 -https://www.oceanexpert.org/institution/13164 -https://www.oceanexpert.org/expert/27137 -https://www.oceanexpert.org/expert/46564 -https://www.oceanexpert.org/expert/46299 -https://www.oceanexpert.org/expert/28214 -https://www.oceanexpert.org/expert/17275 -https://www.oceanexpert.org/expert/8807 -https://www.oceanexpert.org/institution/19764 -https://www.oceanexpert.org/expert/18202 -https://www.oceanexpert.org/institution/6626 -https://www.oceanexpert.org/expert/13281 -https://www.oceanexpert.org/institution/21995 -https://www.oceanexpert.org/expert/37067 -https://www.oceanexpert.org/expert/17648 -https://www.oceanexpert.org/expert/40480 -https://www.oceanexpert.org/institution/19788 -https://www.oceanexpert.org/institution/21155 -https://www.oceanexpert.org/expert/30309 -https://www.oceanexpert.org/expert/17144 -https://www.oceanexpert.org/expert/39226 -https://www.oceanexpert.org/institution/14268 -https://www.oceanexpert.org/expert/31474 -https://www.oceanexpert.org/expert/36010 -https://www.oceanexpert.org/expert/37156 -https://www.oceanexpert.org/institution/15751 -https://www.oceanexpert.org/expert/35574 -https://www.oceanexpert.org/institution/21194 -https://www.oceanexpert.org/expert/41412 -https://www.oceanexpert.org/expert/23033 -https://www.oceanexpert.org/expert/20481 -https://www.oceanexpert.org/expert/14289 -https://www.oceanexpert.org/expert/47155 -https://www.oceanexpert.org/institution/19188 -https://www.oceanexpert.org/expert/29379 -https://www.oceanexpert.org/expert/36817 -https://www.oceanexpert.org/institution/12373 -https://www.oceanexpert.org/expert/22580 -https://www.oceanexpert.org/expert/24573 -https://www.oceanexpert.org/expert/35431 -https://www.oceanexpert.org/event/64 -https://www.oceanexpert.org/expert/120 -https://www.oceanexpert.org/expert/23686 -https://www.oceanexpert.org/institution/22178 -https://www.oceanexpert.org/expert/39251 -https://www.oceanexpert.org/institution/20101 -https://www.oceanexpert.org/expert/22122 -https://www.oceanexpert.org/expert/18992 -https://www.oceanexpert.org/institution/15231 -https://www.oceanexpert.org/expert/48169 -https://www.oceanexpert.org/expert/36155 -https://www.oceanexpert.org/institution/4975 -https://www.oceanexpert.org/expert/38460 -https://www.oceanexpert.org/institution/21813 -https://www.oceanexpert.org/expert/26271 -https://www.oceanexpert.org/expert/9622 -https://www.oceanexpert.org/expert/32612 -https://www.oceanexpert.org/expert/25265 -https://www.oceanexpert.org/expert/26442 -https://www.oceanexpert.org/institution/17646 -https://www.oceanexpert.org/expert/18156 -https://www.oceanexpert.org/expert/48935 -https://www.oceanexpert.org/expert/48902 -https://www.oceanexpert.org/expert/25825 -https://www.oceanexpert.org/institution/18084 -https://www.oceanexpert.org/institution/12713 -https://www.oceanexpert.org/institution/21102 -https://www.oceanexpert.org/expert/25977 -https://www.oceanexpert.org/expert/39979 -https://www.oceanexpert.org/expert/20041 -https://www.oceanexpert.org/event/2291 -https://www.oceanexpert.org/expert/21112 -https://www.oceanexpert.org/event/2838 -https://www.oceanexpert.org/institution/18019 -https://www.oceanexpert.org/expert/28133 -https://www.oceanexpert.org/expert/45204 -https://www.oceanexpert.org/institution/18405 -https://www.oceanexpert.org/expert/33169 -https://www.oceanexpert.org/expert/46186 -https://www.oceanexpert.org/expert/23745 -https://www.oceanexpert.org/institution/20898 -https://www.oceanexpert.org/institution/21128 -https://www.oceanexpert.org/expert/23762 -https://www.oceanexpert.org/event/2431 -https://www.oceanexpert.org/expert/42655 -https://www.oceanexpert.org/expert/25131 -https://www.oceanexpert.org/expert/25497 -https://www.oceanexpert.org/institution/11676 -https://www.oceanexpert.org/expert/37055 -https://www.oceanexpert.org/expert/40584 -https://www.oceanexpert.org/expert/16889 -https://www.oceanexpert.org/expert/47133 -https://www.oceanexpert.org/expert/19025 -https://www.oceanexpert.org/expert/1271 -https://www.oceanexpert.org/institution/20658 -https://www.oceanexpert.org/institution/13895 -https://www.oceanexpert.org/expert/6727 -https://www.oceanexpert.org/expert/25796 -https://www.oceanexpert.org/expert/18566 -https://www.oceanexpert.org/institution/20399 -https://www.oceanexpert.org/institution/18490 -https://www.oceanexpert.org/institution/19602 -https://www.oceanexpert.org/expert/10247 -https://www.oceanexpert.org/expert/37653 -https://www.oceanexpert.org/institution/14086 -https://www.oceanexpert.org/event/972 -https://www.oceanexpert.org/institution/20695 -https://www.oceanexpert.org/expert/30814 -https://www.oceanexpert.org/institution/9270 -https://www.oceanexpert.org/event/2339 -https://www.oceanexpert.org/institution/19304 -https://www.oceanexpert.org/event/44 -https://www.oceanexpert.org/event/1760 -https://www.oceanexpert.org/institution/18804 -https://www.oceanexpert.org/expert/44042 -https://www.oceanexpert.org/expert/27103 -https://www.oceanexpert.org/expert/15933 -https://www.oceanexpert.org/expert/25741 -https://www.oceanexpert.org/institution/18814 -https://www.oceanexpert.org/institution/6953 -https://www.oceanexpert.org/event/2476 -https://www.oceanexpert.org/institution/11580 -https://www.oceanexpert.org/expert/13277 -https://www.oceanexpert.org/expert/33125 -https://www.oceanexpert.org/institution/11837 -https://www.oceanexpert.org/expert/18215 -https://www.oceanexpert.org/expert/39295 -https://www.oceanexpert.org/expert/17005 -https://www.oceanexpert.org/expert/32280 -https://www.oceanexpert.org/expert/40043 -https://www.oceanexpert.org/event/1018 -https://www.oceanexpert.org/institution/19328 -https://www.oceanexpert.org/expert/17656 -https://www.oceanexpert.org/expert/26477 -https://www.oceanexpert.org/expert/44787 -https://www.oceanexpert.org/expert/44348 -https://www.oceanexpert.org/expert/30800 -https://www.oceanexpert.org/expert/11248 -https://www.oceanexpert.org/expert/16725 -https://www.oceanexpert.org/expert/23477 -https://www.oceanexpert.org/event/833 -https://www.oceanexpert.org/institution/19357 -https://www.oceanexpert.org/expert/48139 -https://www.oceanexpert.org/institution/20871 -https://www.oceanexpert.org/institution/10023 -https://www.oceanexpert.org/institution/20500 -https://www.oceanexpert.org/event/1033 -https://www.oceanexpert.org/expert/27133 -https://www.oceanexpert.org/expert/31672 -https://www.oceanexpert.org/expert/35164 -https://www.oceanexpert.org/expert/15407 -https://www.oceanexpert.org/expert/23775 -https://www.oceanexpert.org/event/37 -https://www.oceanexpert.org/institution/15722 -https://www.oceanexpert.org/expert/11344 -https://www.oceanexpert.org/expert/42709 -https://www.oceanexpert.org/event/2576 -https://www.oceanexpert.org/event/3025 -https://www.oceanexpert.org/expert/46755 -https://www.oceanexpert.org/institution/10405 -https://www.oceanexpert.org/expert/78 -https://www.oceanexpert.org/expert/18591 -https://www.oceanexpert.org/event/3018 -https://www.oceanexpert.org/institution/8475 -https://www.oceanexpert.org/expert/34743 -https://www.oceanexpert.org/institution/22171 -https://www.oceanexpert.org/expert/22915 -https://www.oceanexpert.org/institution/18988 -https://www.oceanexpert.org/institution/21446 -https://www.oceanexpert.org/institution/18579 -https://www.oceanexpert.org/institution/18996 -https://www.oceanexpert.org/expert/21710 -https://www.oceanexpert.org/institution/16367 -https://www.oceanexpert.org/expert/20797 -https://www.oceanexpert.org/expert/26686 -https://www.oceanexpert.org/event/2839 -https://www.oceanexpert.org/expert/33411 -https://www.oceanexpert.org/expert/48630 -https://www.oceanexpert.org/expert/27448 -https://www.oceanexpert.org/expert/48385 -https://www.oceanexpert.org/expert/21882 -https://www.oceanexpert.org/institution/21942 -https://www.oceanexpert.org/event/160 -https://www.oceanexpert.org/event/1759 -https://www.oceanexpert.org/expert/43668 -https://www.oceanexpert.org/expert/24424 -https://www.oceanexpert.org/expert/20136 -https://www.oceanexpert.org/expert/43654 -https://www.oceanexpert.org/expert/32383 -https://www.oceanexpert.org/expert/21649 -https://www.oceanexpert.org/expert/44798 -https://www.oceanexpert.org/expert/37785 -https://www.oceanexpert.org/institution/18072 -https://www.oceanexpert.org/institution/12035 -https://www.oceanexpert.org/expert/17634 -https://www.oceanexpert.org/expert/21171 -https://www.oceanexpert.org/event/1423 -https://www.oceanexpert.org/institution/13861 -https://www.oceanexpert.org/expert/35712 -https://www.oceanexpert.org/expert/36261 -https://www.oceanexpert.org/expert/36066 -https://www.oceanexpert.org/expert/16091 -https://www.oceanexpert.org/expert/21797 -https://www.oceanexpert.org/institution/21782 -https://www.oceanexpert.org/expert/20519 -https://www.oceanexpert.org/institution/18007 -https://www.oceanexpert.org/expert/6813 -https://www.oceanexpert.org/expert/18830 -https://www.oceanexpert.org/institution/5778 -https://www.oceanexpert.org/institution/20619 -https://www.oceanexpert.org/institution/20775 -https://www.oceanexpert.org/expert/35854 -https://www.oceanexpert.org/event/2805 -https://www.oceanexpert.org/expert/32621 -https://www.oceanexpert.org/expert/22599 -https://www.oceanexpert.org/institution/14036 -https://www.oceanexpert.org/expert/45538 -https://www.oceanexpert.org/expert/24923 -https://www.oceanexpert.org/institution/12205 -https://www.oceanexpert.org/expert/32698 -https://www.oceanexpert.org/expert/46185 -https://www.oceanexpert.org/expert/43225 -https://www.oceanexpert.org/expert/20885 -https://www.oceanexpert.org/expert/27917 -https://www.oceanexpert.org/expert/34554 -https://www.oceanexpert.org/expert/38579 -https://www.oceanexpert.org/expert/31079 -https://www.oceanexpert.org/event/2829 -https://www.oceanexpert.org/expert/24387 -https://www.oceanexpert.org/institution/15750 -https://www.oceanexpert.org/expert/29796 -https://www.oceanexpert.org/expert/11799 -https://www.oceanexpert.org/expert/20477 -https://www.oceanexpert.org/event/2001 -https://www.oceanexpert.org/expert/22737 -https://www.oceanexpert.org/event/1687 -https://www.oceanexpert.org/expert/46517 -https://www.oceanexpert.org/expert/42371 -https://www.oceanexpert.org/institution/18705 -https://www.oceanexpert.org/institution/7152 -https://www.oceanexpert.org/expert/30971 -https://www.oceanexpert.org/expert/26447 -https://www.oceanexpert.org/institution/14417 -https://www.oceanexpert.org/expert/45762 -https://www.oceanexpert.org/event/15 -https://www.oceanexpert.org/event/564 -https://www.oceanexpert.org/expert/25429 -https://www.oceanexpert.org/event/1822 -https://www.oceanexpert.org/expert/22165 -https://www.oceanexpert.org/expert/24975 -https://www.oceanexpert.org/institution/20877 -https://www.oceanexpert.org/expert/35531 -https://www.oceanexpert.org/institution/19623 -https://www.oceanexpert.org/event/1207 -https://www.oceanexpert.org/institution/21109 -https://www.oceanexpert.org/expert/25689 -https://www.oceanexpert.org/expert/47491 -https://www.oceanexpert.org/institution/5632 -https://www.oceanexpert.org/institution/8813 -https://www.oceanexpert.org/expert/24196 -https://www.oceanexpert.org/institution/17796 -https://www.oceanexpert.org/event/3047 -https://www.oceanexpert.org/expert/29722 -https://www.oceanexpert.org/institution/15024 -https://www.oceanexpert.org/expert/25837 -https://www.oceanexpert.org/expert/12535 -https://www.oceanexpert.org/institution/20040 -https://www.oceanexpert.org/expert/37138 -https://www.oceanexpert.org/event/2559 -https://www.oceanexpert.org/expert/38020 -https://www.oceanexpert.org/institution/16161 -https://www.oceanexpert.org/expert/38091 -https://www.oceanexpert.org/expert/34409 -https://www.oceanexpert.org/expert/18191 -https://www.oceanexpert.org/institution/5799 -https://www.oceanexpert.org/institution/5531 -https://www.oceanexpert.org/institution/11698 -https://www.oceanexpert.org/event/1195 -https://www.oceanexpert.org/event/2919 -https://www.oceanexpert.org/expert/27509 -https://www.oceanexpert.org/expert/19992 -https://www.oceanexpert.org/institution/21118 -https://www.oceanexpert.org/expert/4095 -https://www.oceanexpert.org/expert/31245 -https://www.oceanexpert.org/institution/14602 -https://www.oceanexpert.org/expert/18010 -https://www.oceanexpert.org/expert/6293 -https://www.oceanexpert.org/expert/45445 -https://www.oceanexpert.org/expert/28965 -https://www.oceanexpert.org/expert/8148 -https://www.oceanexpert.org/expert/38884 -https://www.oceanexpert.org/expert/32184 -https://www.oceanexpert.org/expert/35305 -https://www.oceanexpert.org/institution/13078 -https://www.oceanexpert.org/expert/33270 -https://www.oceanexpert.org/institution/5461 -https://www.oceanexpert.org/institution/7018 -https://www.oceanexpert.org/expert/33904 -https://www.oceanexpert.org/expert/25169 -https://www.oceanexpert.org/expert/36607 -https://www.oceanexpert.org/institution/18509 -https://www.oceanexpert.org/expert/26604 -https://www.oceanexpert.org/expert/12725 -https://www.oceanexpert.org/institution/21674 -https://www.oceanexpert.org/expert/27407 -https://www.oceanexpert.org/expert/23745 -https://www.oceanexpert.org/event/3013 -https://www.oceanexpert.org/expert/6837 -https://www.oceanexpert.org/expert/36275 -https://www.oceanexpert.org/expert/4722 -https://www.oceanexpert.org/expert/22435 -https://www.oceanexpert.org/expert/38716 -https://www.oceanexpert.org/expert/34977 -https://www.oceanexpert.org/expert/17299 -https://www.oceanexpert.org/expert/7042 -https://www.oceanexpert.org/event/191 -https://www.oceanexpert.org/institution/5731 -https://www.oceanexpert.org/event/2356 -https://www.oceanexpert.org/expert/21728 -https://www.oceanexpert.org/expert/35825 -https://www.oceanexpert.org/expert/49037 -https://www.oceanexpert.org/expert/21459 -https://www.oceanexpert.org/expert/11103 -https://www.oceanexpert.org/expert/33298 -https://www.oceanexpert.org/institution/11623 -https://www.oceanexpert.org/expert/24600 -https://www.oceanexpert.org/expert/26458 -https://www.oceanexpert.org/institution/7362 -https://www.oceanexpert.org/expert/5546 -https://www.oceanexpert.org/expert/25779 -https://www.oceanexpert.org/expert/16763 -https://www.oceanexpert.org/expert/44975 -https://www.oceanexpert.org/expert/26664 -https://www.oceanexpert.org/institution/10577 -https://www.oceanexpert.org/institution/19547 -https://www.oceanexpert.org/institution/5083 -https://www.oceanexpert.org/expert/49050 -https://www.oceanexpert.org/expert/18912 -https://www.oceanexpert.org/expert/34160 -https://www.oceanexpert.org/expert/23924 -https://www.oceanexpert.org/expert/13948 -https://www.oceanexpert.org/institution/19626 -https://www.oceanexpert.org/expert/20614 -https://www.oceanexpert.org/event/2633 -https://www.oceanexpert.org/expert/12631 -https://www.oceanexpert.org/expert/21731 -https://www.oceanexpert.org/expert/48103 -https://www.oceanexpert.org/expert/23126 -https://www.oceanexpert.org/expert/23816 -https://www.oceanexpert.org/expert/32183 -https://www.oceanexpert.org/expert/40583 -https://www.oceanexpert.org/expert/25460 -https://www.oceanexpert.org/expert/29700 -https://www.oceanexpert.org/expert/20716 -https://www.oceanexpert.org/institution/15262 -https://www.oceanexpert.org/expert/28447 -https://www.oceanexpert.org/expert/24220 -https://www.oceanexpert.org/expert/39298 -https://www.oceanexpert.org/expert/14947 -https://www.oceanexpert.org/event/3113 -https://www.oceanexpert.org/expert/23433 -https://www.oceanexpert.org/event/2121 -https://www.oceanexpert.org/expert/34378 -https://www.oceanexpert.org/expert/27648 -https://www.oceanexpert.org/event/1747 -https://www.oceanexpert.org/expert/43944 -https://www.oceanexpert.org/expert/25499 -https://www.oceanexpert.org/institution/11143 -https://www.oceanexpert.org/institution/16694 -https://www.oceanexpert.org/institution/11772 -https://www.oceanexpert.org/expert/47114 -https://www.oceanexpert.org/expert/24931 -https://www.oceanexpert.org/event/57 -https://www.oceanexpert.org/expert/36787 -https://www.oceanexpert.org/expert/23001 -https://www.oceanexpert.org/expert/37812 -https://www.oceanexpert.org/expert/19874 -https://www.oceanexpert.org/expert/10552 -https://www.oceanexpert.org/institution/21975 -https://www.oceanexpert.org/institution/17746 -https://www.oceanexpert.org/institution/12016 -https://www.oceanexpert.org/expert/47539 -https://www.oceanexpert.org/expert/8451 -https://www.oceanexpert.org/expert/20097 -https://www.oceanexpert.org/expert/33408 -https://www.oceanexpert.org/expert/20704 -https://www.oceanexpert.org/expert/26685 -https://www.oceanexpert.org/expert/11240 -https://www.oceanexpert.org/expert/8952 -https://www.oceanexpert.org/expert/33060 -https://www.oceanexpert.org/expert/18085 -https://www.oceanexpert.org/expert/22074 -https://www.oceanexpert.org/expert/31154 -https://www.oceanexpert.org/expert/42612 -https://www.oceanexpert.org/institution/13236 -https://www.oceanexpert.org/expert/11863 -https://www.oceanexpert.org/expert/44026 -https://www.oceanexpert.org/expert/22851 -https://www.oceanexpert.org/expert/21530 -https://www.oceanexpert.org/expert/42936 -https://www.oceanexpert.org/expert/26740 -https://www.oceanexpert.org/expert/33948 -https://www.oceanexpert.org/expert/43512 -https://www.oceanexpert.org/event/2899 -https://www.oceanexpert.org/expert/27182 -https://www.oceanexpert.org/event/2208 -https://www.oceanexpert.org/expert/31258 -https://www.oceanexpert.org/expert/33476 -https://www.oceanexpert.org/expert/10904 -https://www.oceanexpert.org/expert/31262 -https://www.oceanexpert.org/expert/48832 -https://www.oceanexpert.org/expert/25245 -https://www.oceanexpert.org/expert/24807 -https://www.oceanexpert.org/expert/34402 -https://www.oceanexpert.org/institution/16330 -https://www.oceanexpert.org/expert/40080 -https://www.oceanexpert.org/expert/46400 -https://www.oceanexpert.org/expert/47235 -https://www.oceanexpert.org/event/1264 -https://www.oceanexpert.org/expert/43879 -https://www.oceanexpert.org/expert/31030 -https://www.oceanexpert.org/expert/33168 -https://www.oceanexpert.org/event/3098 -https://www.oceanexpert.org/institution/5340 -https://www.oceanexpert.org/institution/18375 -https://www.oceanexpert.org/expert/46361 -https://www.oceanexpert.org/institution/17016 -https://www.oceanexpert.org/event/560 -https://www.oceanexpert.org/expert/24777 -https://www.oceanexpert.org/expert/15720 -https://www.oceanexpert.org/institution/20854 -https://www.oceanexpert.org/expert/21475 -https://www.oceanexpert.org/institution/13130 -https://www.oceanexpert.org/expert/48913 -https://www.oceanexpert.org/expert/34779 -https://www.oceanexpert.org/expert/37838 -https://www.oceanexpert.org/expert/25031 -https://www.oceanexpert.org/expert/31039 -https://www.oceanexpert.org/expert/21485 -https://www.oceanexpert.org/expert/38030 -https://www.oceanexpert.org/institution/20507 -https://www.oceanexpert.org/institution/20358 -https://www.oceanexpert.org/expert/21977 -https://www.oceanexpert.org/expert/19865 -https://www.oceanexpert.org/institution/7362 -https://www.oceanexpert.org/expert/34915 -https://www.oceanexpert.org/expert/36800 -https://www.oceanexpert.org/expert/22091 -https://www.oceanexpert.org/institution/17938 -https://www.oceanexpert.org/expert/48139 -https://www.oceanexpert.org/expert/44149 -https://www.oceanexpert.org/event/3290 -https://www.oceanexpert.org/expert/39167 -https://www.oceanexpert.org/expert/23475 -https://www.oceanexpert.org/expert/17043 -https://www.oceanexpert.org/expert/45775 -https://www.oceanexpert.org/expert/36782 -https://www.oceanexpert.org/institution/20666 -https://www.oceanexpert.org/institution/17093 -https://www.oceanexpert.org/expert/44304 -https://www.oceanexpert.org/institution/9727 -https://www.oceanexpert.org/institution/21529 -https://www.oceanexpert.org/expert/23477 -https://www.oceanexpert.org/expert/21221 -https://www.oceanexpert.org/institution/16156 -https://www.oceanexpert.org/expert/42474 -https://www.oceanexpert.org/institution/19577 -https://www.oceanexpert.org/expert/40631 -https://www.oceanexpert.org/expert/46789 -https://www.oceanexpert.org/expert/47681 -https://www.oceanexpert.org/expert/37651 -https://www.oceanexpert.org/expert/18124 -https://www.oceanexpert.org/expert/26850 -https://www.oceanexpert.org/expert/17849 -https://www.oceanexpert.org/expert/29617 -https://www.oceanexpert.org/institution/18363 -https://www.oceanexpert.org/event/1173 -https://www.oceanexpert.org/institution/10795 -https://www.oceanexpert.org/institution/22115 -https://www.oceanexpert.org/expert/43753 -https://www.oceanexpert.org/expert/45332 -https://www.oceanexpert.org/expert/33767 -https://www.oceanexpert.org/institution/11774 -https://www.oceanexpert.org/institution/17008 -https://www.oceanexpert.org/institution/16338 -https://www.oceanexpert.org/expert/12314 -https://www.oceanexpert.org/institution/18729 -https://www.oceanexpert.org/institution/21193 -https://www.oceanexpert.org/institution/20632 -https://www.oceanexpert.org/institution/19433 -https://www.oceanexpert.org/expert/44134 -https://www.oceanexpert.org/event/1926 -https://www.oceanexpert.org/expert/33789 -https://www.oceanexpert.org/institution/6626 -https://www.oceanexpert.org/expert/39774 -https://www.oceanexpert.org/expert/12052 -https://www.oceanexpert.org/institution/13136 -https://www.oceanexpert.org/institution/21623 -https://www.oceanexpert.org/institution/18342 -https://www.oceanexpert.org/expert/46478 -https://www.oceanexpert.org/expert/47820 -https://www.oceanexpert.org/event/3114 -https://www.oceanexpert.org/institution/16235 -https://www.oceanexpert.org/expert/24417 -https://www.oceanexpert.org/expert/47384 -https://www.oceanexpert.org/institution/21294 -https://www.oceanexpert.org/expert/26283 -https://www.oceanexpert.org/expert/19519 -https://www.oceanexpert.org/expert/26217 -https://www.oceanexpert.org/event/2404 -https://www.oceanexpert.org/expert/18795 -https://www.oceanexpert.org/institution/8124 -https://www.oceanexpert.org/expert/17970 -https://www.oceanexpert.org/expert/21651 -https://www.oceanexpert.org/expert/21812 -https://www.oceanexpert.org/expert/27206 -https://www.oceanexpert.org/event/2488 -https://www.oceanexpert.org/expert/13767 -https://www.oceanexpert.org/expert/40659 -https://www.oceanexpert.org/expert/30889 -https://www.oceanexpert.org/expert/19277 -https://www.oceanexpert.org/expert/44901 -https://www.oceanexpert.org/institution/7142 -https://www.oceanexpert.org/expert/17434 -https://www.oceanexpert.org/expert/21717 -https://www.oceanexpert.org/institution/20010 -https://www.oceanexpert.org/expert/26471 -https://www.oceanexpert.org/expert/5966 -https://www.oceanexpert.org/expert/46208 -https://www.oceanexpert.org/expert/19181 -https://www.oceanexpert.org/expert/26059 -https://www.oceanexpert.org/expert/39411 -https://www.oceanexpert.org/expert/33777 -https://www.oceanexpert.org/expert/48032 -https://www.oceanexpert.org/expert/29529 -https://www.oceanexpert.org/expert/40339 -https://www.oceanexpert.org/expert/13932 -https://www.oceanexpert.org/expert/46852 -https://www.oceanexpert.org/expert/45801 -https://www.oceanexpert.org/expert/33280 -https://www.oceanexpert.org/expert/8119 -https://www.oceanexpert.org/expert/28440 -https://www.oceanexpert.org/expert/11644 -https://www.oceanexpert.org/expert/54 -https://www.oceanexpert.org/expert/24815 -https://www.oceanexpert.org/expert/33385 -https://www.oceanexpert.org/institution/19388 -https://www.oceanexpert.org/institution/18688 -https://www.oceanexpert.org/institution/18584 -https://www.oceanexpert.org/expert/37555 -https://www.oceanexpert.org/expert/35735 -https://www.oceanexpert.org/expert/29241 -https://www.oceanexpert.org/event/1715 -https://www.oceanexpert.org/expert/26500 -https://www.oceanexpert.org/expert/27871 -https://www.oceanexpert.org/expert/20259 -https://www.oceanexpert.org/expert/46090 -https://www.oceanexpert.org/expert/33687 -https://www.oceanexpert.org/expert/34419 -https://www.oceanexpert.org/expert/18545 -https://www.oceanexpert.org/expert/15028 -https://www.oceanexpert.org/expert/28868 -https://www.oceanexpert.org/expert/24186 -https://www.oceanexpert.org/expert/35134 -https://www.oceanexpert.org/event/2896 -https://www.oceanexpert.org/institution/5561 -https://www.oceanexpert.org/expert/35990 -https://www.oceanexpert.org/institution/10722 -https://www.oceanexpert.org/expert/21730 -https://www.oceanexpert.org/expert/20794 -https://www.oceanexpert.org/expert/19875 -https://www.oceanexpert.org/expert/35637 -https://www.oceanexpert.org/institution/8387 -https://www.oceanexpert.org/expert/48568 -https://www.oceanexpert.org/event/1139 -https://www.oceanexpert.org/institution/19038 -https://www.oceanexpert.org/expert/25571 -https://www.oceanexpert.org/expert/48128 -https://www.oceanexpert.org/expert/22497 -https://www.oceanexpert.org/expert/24669 -https://www.oceanexpert.org/institution/13043 -https://www.oceanexpert.org/institution/16162 -https://www.oceanexpert.org/expert/26056 -https://www.oceanexpert.org/expert/31961 -https://www.oceanexpert.org/expert/37400 -https://www.oceanexpert.org/expert/13265 -https://www.oceanexpert.org/expert/32608 -https://www.oceanexpert.org/expert/22207 -https://www.oceanexpert.org/institution/19451 -https://www.oceanexpert.org/expert/44814 -https://www.oceanexpert.org/expert/26859 -https://www.oceanexpert.org/event/2519 -https://www.oceanexpert.org/expert/47206 -https://www.oceanexpert.org/expert/25014 -https://www.oceanexpert.org/institution/18044 -https://www.oceanexpert.org/expert/47541 -https://www.oceanexpert.org/expert/23132 -https://www.oceanexpert.org/expert/39134 -https://www.oceanexpert.org/expert/39820 -https://www.oceanexpert.org/institution/21611 -https://www.oceanexpert.org/institution/22088 -https://www.oceanexpert.org/expert/18009 -https://www.oceanexpert.org/expert/34091 -https://www.oceanexpert.org/institution/20832 -https://www.oceanexpert.org/institution/19010 -https://www.oceanexpert.org/expert/22381 -https://www.oceanexpert.org/expert/3060 -https://www.oceanexpert.org/expert/11648 -https://www.oceanexpert.org/expert/22540 -https://www.oceanexpert.org/expert/45541 -https://www.oceanexpert.org/institution/20971 -https://www.oceanexpert.org/expert/27130 -https://www.oceanexpert.org/institution/21086 -https://www.oceanexpert.org/expert/48212 -https://www.oceanexpert.org/expert/43963 -https://www.oceanexpert.org/expert/32483 -https://www.oceanexpert.org/expert/27300 -https://www.oceanexpert.org/expert/18612 -https://www.oceanexpert.org/expert/18706 -https://www.oceanexpert.org/event/1819 -https://www.oceanexpert.org/expert/35116 -https://www.oceanexpert.org/expert/44380 -https://www.oceanexpert.org/expert/26631 -https://www.oceanexpert.org/expert/1149 -https://www.oceanexpert.org/institution/16267 -https://www.oceanexpert.org/institution/6550 -https://www.oceanexpert.org/expert/6942 -https://www.oceanexpert.org/institution/17974 -https://www.oceanexpert.org/event/2312 -https://www.oceanexpert.org/expert/34336 -https://www.oceanexpert.org/institution/21626 -https://www.oceanexpert.org/institution/21721 -https://www.oceanexpert.org/expert/30275 -https://www.oceanexpert.org/expert/33621 -https://www.oceanexpert.org/expert/19916 -https://www.oceanexpert.org/expert/13592 -https://www.oceanexpert.org/expert/38247 -https://www.oceanexpert.org/expert/9160 -https://www.oceanexpert.org/expert/25021 -https://www.oceanexpert.org/institution/19197 -https://www.oceanexpert.org/expert/47168 -https://www.oceanexpert.org/expert/14891 -https://www.oceanexpert.org/expert/48980 -https://www.oceanexpert.org/institution/19617 -https://www.oceanexpert.org/expert/42536 -https://www.oceanexpert.org/expert/21494 -https://www.oceanexpert.org/expert/40615 -https://www.oceanexpert.org/institution/10250 -https://www.oceanexpert.org/expert/19399 -https://www.oceanexpert.org/expert/20639 -https://www.oceanexpert.org/expert/33282 -https://www.oceanexpert.org/expert/26796 -https://www.oceanexpert.org/expert/25878 -https://www.oceanexpert.org/institution/18904 -https://www.oceanexpert.org/event/1279 -https://www.oceanexpert.org/expert/8722 -https://www.oceanexpert.org/expert/6908 -https://www.oceanexpert.org/expert/18718 -https://www.oceanexpert.org/institution/12420 -https://www.oceanexpert.org/expert/35248 -https://www.oceanexpert.org/institution/19035 -https://www.oceanexpert.org/expert/19583 -https://www.oceanexpert.org/expert/36178 -https://www.oceanexpert.org/institution/21394 -https://www.oceanexpert.org/event/833 -https://www.oceanexpert.org/expert/28927 -https://www.oceanexpert.org/institution/15762 -https://www.oceanexpert.org/event/1919 -https://www.oceanexpert.org/expert/25585 -https://www.oceanexpert.org/expert/39340 -https://www.oceanexpert.org/event/3255 -https://www.oceanexpert.org/expert/35089 -https://www.oceanexpert.org/expert/43925 -https://www.oceanexpert.org/institution/13604 -https://www.oceanexpert.org/expert/1544 -https://www.oceanexpert.org/expert/47619 -https://www.oceanexpert.org/expert/47099 -https://www.oceanexpert.org/expert/39093 -https://www.oceanexpert.org/expert/25670 -https://www.oceanexpert.org/expert/18766 -https://www.oceanexpert.org/expert/19341 -https://www.oceanexpert.org/expert/6915 -https://www.oceanexpert.org/expert/45731 -https://www.oceanexpert.org/event/2967 -https://www.oceanexpert.org/expert/27159 -https://www.oceanexpert.org/expert/11748 -https://www.oceanexpert.org/institution/13193 -https://www.oceanexpert.org/institution/20771 -https://www.oceanexpert.org/expert/8342 -https://www.oceanexpert.org/expert/36308 -https://www.oceanexpert.org/expert/17309 -https://www.oceanexpert.org/institution/22166 -https://www.oceanexpert.org/expert/807 -https://www.oceanexpert.org/institution/18894 -https://www.oceanexpert.org/institution/70 -https://www.oceanexpert.org/expert/25799 -https://www.oceanexpert.org/event/3249 -https://www.oceanexpert.org/expert/35920 -https://www.oceanexpert.org/expert/13638 -https://www.oceanexpert.org/expert/19177 -https://www.oceanexpert.org/expert/39960 -https://www.oceanexpert.org/expert/4561 -https://www.oceanexpert.org/expert/24943 -https://www.oceanexpert.org/expert/16291 -https://www.oceanexpert.org/event/527 -https://www.oceanexpert.org/expert/35483 -https://www.oceanexpert.org/expert/16945 -https://www.oceanexpert.org/event/2890 -https://www.oceanexpert.org/expert/43337 -https://www.oceanexpert.org/expert/33494 -https://www.oceanexpert.org/expert/21446 -https://www.oceanexpert.org/expert/24843 -https://www.oceanexpert.org/expert/28397 -https://www.oceanexpert.org/expert/37817 -https://www.oceanexpert.org/expert/18649 -https://www.oceanexpert.org/expert/20132 -https://www.oceanexpert.org/expert/33298 -https://www.oceanexpert.org/expert/24031 -https://www.oceanexpert.org/expert/29442 -https://www.oceanexpert.org/event/836 -https://www.oceanexpert.org/institution/19276 -https://www.oceanexpert.org/institution/17770 -https://www.oceanexpert.org/expert/47565 -https://www.oceanexpert.org/expert/37503 -https://www.oceanexpert.org/expert/19429 -https://www.oceanexpert.org/expert/47222 -https://www.oceanexpert.org/institution/21616 -https://www.oceanexpert.org/institution/19248 -https://www.oceanexpert.org/expert/20802 -https://www.oceanexpert.org/expert/28414 -https://www.oceanexpert.org/expert/29303 -https://www.oceanexpert.org/expert/35651 -https://www.oceanexpert.org/institution/17058 -https://www.oceanexpert.org/expert/27786 -https://www.oceanexpert.org/institution/18239 -https://www.oceanexpert.org/institution/15442 -https://www.oceanexpert.org/expert/41672 -https://www.oceanexpert.org/institution/18490 -https://www.oceanexpert.org/expert/40123 -https://www.oceanexpert.org/expert/26967 -https://www.oceanexpert.org/expert/22600 -https://www.oceanexpert.org/expert/33913 -https://www.oceanexpert.org/expert/25203 -https://www.oceanexpert.org/expert/47777 -https://www.oceanexpert.org/expert/45293 -https://www.oceanexpert.org/event/2812 -https://www.oceanexpert.org/expert/32177 -https://www.oceanexpert.org/expert/13392 -https://www.oceanexpert.org/expert/45646 -https://www.oceanexpert.org/expert/45639 -https://www.oceanexpert.org/institution/6046 -https://www.oceanexpert.org/event/53 -https://www.oceanexpert.org/institution/6741 -https://www.oceanexpert.org/event/1341 -https://www.oceanexpert.org/institution/21770 -https://www.oceanexpert.org/expert/17352 -https://www.oceanexpert.org/expert/16957 -https://www.oceanexpert.org/expert/34402 -https://www.oceanexpert.org/institution/11759 -https://www.oceanexpert.org/expert/1083 -https://www.oceanexpert.org/expert/27874 -https://www.oceanexpert.org/expert/36040 -https://www.oceanexpert.org/event/2706 -https://www.oceanexpert.org/expert/36627 -https://www.oceanexpert.org/event/2759 -https://www.oceanexpert.org/expert/21021 -https://www.oceanexpert.org/event/2131 -https://www.oceanexpert.org/institution/12467 -https://www.oceanexpert.org/expert/30939 -https://www.oceanexpert.org/expert/7787 -https://www.oceanexpert.org/expert/37059 -https://www.oceanexpert.org/expert/38204 -https://www.oceanexpert.org/expert/32475 -https://www.oceanexpert.org/institution/22055 -https://www.oceanexpert.org/institution/12040 -https://www.oceanexpert.org/expert/29859 -https://www.oceanexpert.org/event/579 -https://www.oceanexpert.org/institution/12858 -https://www.oceanexpert.org/event/1735 -https://www.oceanexpert.org/expert/25101 -https://www.oceanexpert.org/institution/11878 -https://www.oceanexpert.org/expert/23010 -https://www.oceanexpert.org/institution/19393 -https://www.oceanexpert.org/expert/46234 -https://www.oceanexpert.org/institution/20856 -https://www.oceanexpert.org/expert/15387 -https://www.oceanexpert.org/expert/42494 -https://www.oceanexpert.org/expert/46923 -https://www.oceanexpert.org/expert/34113 -https://www.oceanexpert.org/expert/47012 -https://www.oceanexpert.org/event/2962 -https://www.oceanexpert.org/expert/20840 -https://www.oceanexpert.org/event/2637 -https://www.oceanexpert.org/expert/35433 -https://www.oceanexpert.org/expert/11191 -https://www.oceanexpert.org/event/861 -https://www.oceanexpert.org/institution/21882 -https://www.oceanexpert.org/institution/19930 -https://www.oceanexpert.org/event/1270 -https://www.oceanexpert.org/expert/35409 -https://www.oceanexpert.org/expert/40582 -https://www.oceanexpert.org/expert/42464 -https://www.oceanexpert.org/expert/47786 -https://www.oceanexpert.org/expert/22408 -https://www.oceanexpert.org/expert/44416 -https://www.oceanexpert.org/expert/24494 -https://www.oceanexpert.org/expert/48804 -https://www.oceanexpert.org/expert/16681 -https://www.oceanexpert.org/expert/42821 -https://www.oceanexpert.org/expert/23985 -https://www.oceanexpert.org/expert/42654 -https://www.oceanexpert.org/expert/48564 -https://www.oceanexpert.org/institution/7851 -https://www.oceanexpert.org/expert/28013 -https://www.oceanexpert.org/expert/45700 -https://www.oceanexpert.org/expert/44825 -https://www.oceanexpert.org/event/2986 -https://www.oceanexpert.org/institution/5170 -https://www.oceanexpert.org/expert/17463 -https://www.oceanexpert.org/institution/13014 -https://www.oceanexpert.org/expert/37162 -https://www.oceanexpert.org/expert/24084 -https://www.oceanexpert.org/expert/34802 -https://www.oceanexpert.org/event/529 -https://www.oceanexpert.org/expert/18238 -https://www.oceanexpert.org/expert/15026 -https://www.oceanexpert.org/expert/48871 -https://www.oceanexpert.org/event/1155 -https://www.oceanexpert.org/expert/16498 -https://www.oceanexpert.org/expert/33345 -https://www.oceanexpert.org/expert/28825 -https://www.oceanexpert.org/expert/38088 -https://www.oceanexpert.org/expert/11484 -https://www.oceanexpert.org/institution/17124 -https://www.oceanexpert.org/expert/32806 -https://www.oceanexpert.org/expert/44090 -https://www.oceanexpert.org/expert/24817 -https://www.oceanexpert.org/expert/3784 -https://www.oceanexpert.org/institution/10822 -https://www.oceanexpert.org/expert/15293 -https://www.oceanexpert.org/expert/24202 -https://www.oceanexpert.org/institution/20788 -https://www.oceanexpert.org/expert/24299 -https://www.oceanexpert.org/expert/36622 -https://www.oceanexpert.org/expert/27662 -https://www.oceanexpert.org/expert/21490 -https://www.oceanexpert.org/event/2904 -https://www.oceanexpert.org/expert/33437 -https://www.oceanexpert.org/institution/17224 -https://www.oceanexpert.org/expert/44567 -https://www.oceanexpert.org/institution/8166 -https://www.oceanexpert.org/expert/42102 -https://www.oceanexpert.org/expert/21485 -https://www.oceanexpert.org/expert/18654 -https://www.oceanexpert.org/institution/8082 -https://www.oceanexpert.org/expert/19558 -https://www.oceanexpert.org/expert/13494 -https://www.oceanexpert.org/expert/25948 -https://www.oceanexpert.org/institution/6260 -https://www.oceanexpert.org/expert/43988 -https://www.oceanexpert.org/expert/13202 -https://www.oceanexpert.org/institution/20218 -https://www.oceanexpert.org/institution/21539 -https://www.oceanexpert.org/expert/24800 -https://www.oceanexpert.org/expert/11268 -https://www.oceanexpert.org/expert/37901 -https://www.oceanexpert.org/institution/20093 -https://www.oceanexpert.org/institution/19298 -https://www.oceanexpert.org/institution/12833 -https://www.oceanexpert.org/expert/23042 -https://www.oceanexpert.org/expert/35276 -https://www.oceanexpert.org/expert/45967 -https://www.oceanexpert.org/expert/37029 -https://www.oceanexpert.org/expert/14467 -https://www.oceanexpert.org/expert/13548 -https://www.oceanexpert.org/expert/36043 -https://www.oceanexpert.org/expert/46813 -https://www.oceanexpert.org/expert/21218 -https://www.oceanexpert.org/expert/26532 -https://www.oceanexpert.org/expert/39368 -https://www.oceanexpert.org/expert/42961 -https://www.oceanexpert.org/institution/21760 -https://www.oceanexpert.org/expert/25860 -https://www.oceanexpert.org/expert/317 -https://www.oceanexpert.org/expert/22999 -https://www.oceanexpert.org/institution/20900 -https://www.oceanexpert.org/expert/37277 -https://www.oceanexpert.org/institution/17436 -https://www.oceanexpert.org/expert/19872 -https://www.oceanexpert.org/institution/14961 -https://www.oceanexpert.org/expert/3743 -https://www.oceanexpert.org/institution/12870 -https://www.oceanexpert.org/expert/35299 -https://www.oceanexpert.org/expert/37568 -https://www.oceanexpert.org/expert/16559 -https://www.oceanexpert.org/expert/25237 -https://www.oceanexpert.org/expert/31989 -https://www.oceanexpert.org/institution/12165 -https://www.oceanexpert.org/event/46 -https://www.oceanexpert.org/expert/21630 -https://www.oceanexpert.org/expert/27428 -https://www.oceanexpert.org/expert/23411 -https://www.oceanexpert.org/event/1677 -https://www.oceanexpert.org/expert/34062 -https://www.oceanexpert.org/expert/44792 -https://www.oceanexpert.org/expert/42835 -https://www.oceanexpert.org/expert/46379 -https://www.oceanexpert.org/expert/19657 -https://www.oceanexpert.org/institution/11474 -https://www.oceanexpert.org/event/837 -https://www.oceanexpert.org/institution/11727 -https://www.oceanexpert.org/institution/21411 -https://www.oceanexpert.org/expert/18656 -https://www.oceanexpert.org/expert/20426 -https://www.oceanexpert.org/expert/31866 -https://www.oceanexpert.org/event/1681 -https://www.oceanexpert.org/expert/48445 -https://www.oceanexpert.org/expert/31802 -https://www.oceanexpert.org/expert/29570 -https://www.oceanexpert.org/expert/25858 -https://www.oceanexpert.org/expert/24599 -https://www.oceanexpert.org/institution/14425 -https://www.oceanexpert.org/expert/48966 -https://www.oceanexpert.org/expert/28306 -https://www.oceanexpert.org/expert/19715 -https://www.oceanexpert.org/event/625 -https://www.oceanexpert.org/expert/17116 -https://www.oceanexpert.org/expert/33911 -https://www.oceanexpert.org/expert/21046 -https://www.oceanexpert.org/expert/43810 -https://www.oceanexpert.org/expert/35491 -https://www.oceanexpert.org/expert/31495 -https://www.oceanexpert.org/expert/15441 -https://www.oceanexpert.org/expert/45892 -https://www.oceanexpert.org/expert/43286 -https://www.oceanexpert.org/expert/48819 -https://www.oceanexpert.org/institution/18641 -https://www.oceanexpert.org/expert/45079 -https://www.oceanexpert.org/expert/11904 -https://www.oceanexpert.org/expert/30211 -https://www.oceanexpert.org/institution/13300 -https://www.oceanexpert.org/expert/35125 -https://www.oceanexpert.org/institution/21241 -https://www.oceanexpert.org/institution/12138 -https://www.oceanexpert.org/expert/40675 -https://www.oceanexpert.org/expert/1329 -https://www.oceanexpert.org/event/1281 -https://www.oceanexpert.org/expert/45442 -https://www.oceanexpert.org/expert/32331 -https://www.oceanexpert.org/expert/23679 -https://www.oceanexpert.org/expert/5547 -https://www.oceanexpert.org/expert/21978 -https://www.oceanexpert.org/expert/20436 -https://www.oceanexpert.org/expert/47987 -https://www.oceanexpert.org/institution/18663 -https://www.oceanexpert.org/expert/4267 -https://www.oceanexpert.org/institution/14377 -https://www.oceanexpert.org/expert/30910 -https://www.oceanexpert.org/expert/4443 -https://www.oceanexpert.org/institution/12501 -https://www.oceanexpert.org/event/2102 -https://www.oceanexpert.org/institution/12872 -https://www.oceanexpert.org/expert/37102 -https://www.oceanexpert.org/expert/36666 -https://www.oceanexpert.org/institution/21458 -https://www.oceanexpert.org/institution/15872 -https://www.oceanexpert.org/expert/20583 -https://www.oceanexpert.org/expert/25529 -https://www.oceanexpert.org/institution/21928 -https://www.oceanexpert.org/expert/21041 -https://www.oceanexpert.org/expert/45076 -https://www.oceanexpert.org/expert/26680 -https://www.oceanexpert.org/expert/41933 -https://www.oceanexpert.org/expert/25157 -https://www.oceanexpert.org/expert/21703 -https://www.oceanexpert.org/expert/23676 -https://www.oceanexpert.org/expert/17133 -https://www.oceanexpert.org/expert/43188 -https://www.oceanexpert.org/expert/31835 -https://www.oceanexpert.org/expert/27488 -https://www.oceanexpert.org/expert/37602 -https://www.oceanexpert.org/expert/26263 -https://www.oceanexpert.org/expert/42701 -https://www.oceanexpert.org/expert/43599 -https://www.oceanexpert.org/institution/20609 -https://www.oceanexpert.org/institution/15436 -https://www.oceanexpert.org/expert/46477 -https://www.oceanexpert.org/institution/19719 -https://www.oceanexpert.org/expert/36456 -https://www.oceanexpert.org/expert/20917 -https://www.oceanexpert.org/institution/14119 -https://www.oceanexpert.org/institution/18479 -https://www.oceanexpert.org/event/305 -https://www.oceanexpert.org/expert/24653 -https://www.oceanexpert.org/expert/47323 -https://www.oceanexpert.org/expert/31933 -https://www.oceanexpert.org/institution/21713 -https://www.oceanexpert.org/expert/43534 -https://www.oceanexpert.org/expert/24188 -https://www.oceanexpert.org/institution/20650 -https://www.oceanexpert.org/expert/17768 -https://www.oceanexpert.org/expert/44135 -https://www.oceanexpert.org/expert/36245 -https://www.oceanexpert.org/event/1442 -https://www.oceanexpert.org/event/3091 -https://www.oceanexpert.org/expert/37831 -https://www.oceanexpert.org/expert/21522 -https://www.oceanexpert.org/expert/34537 -https://www.oceanexpert.org/institution/21422 -https://www.oceanexpert.org/expert/21570 -https://www.oceanexpert.org/expert/22214 -https://www.oceanexpert.org/expert/7116 -https://www.oceanexpert.org/expert/36650 -https://www.oceanexpert.org/expert/23367 -https://www.oceanexpert.org/expert/39327 -https://www.oceanexpert.org/institution/10519 -https://www.oceanexpert.org/institution/14730 -https://www.oceanexpert.org/institution/10135 -https://www.oceanexpert.org/expert/44449 -https://www.oceanexpert.org/expert/32532 -https://www.oceanexpert.org/event/634 -https://www.oceanexpert.org/expert/33466 -https://www.oceanexpert.org/institution/20479 -https://www.oceanexpert.org/expert/20047 -https://www.oceanexpert.org/institution/19589 -https://www.oceanexpert.org/expert/21731 -https://www.oceanexpert.org/event/1371 -https://www.oceanexpert.org/expert/37027 -https://www.oceanexpert.org/expert/36186 -https://www.oceanexpert.org/expert/30881 -https://www.oceanexpert.org/expert/37544 -https://www.oceanexpert.org/expert/45644 -https://www.oceanexpert.org/expert/25868 -https://www.oceanexpert.org/expert/37621 -https://www.oceanexpert.org/expert/18396 -https://www.oceanexpert.org/institution/14735 -https://www.oceanexpert.org/expert/44722 -https://www.oceanexpert.org/institution/12042 -https://www.oceanexpert.org/event/267 -https://www.oceanexpert.org/event/2376 -https://www.oceanexpert.org/expert/32684 -https://www.oceanexpert.org/expert/35009 -https://www.oceanexpert.org/institution/5850 -https://www.oceanexpert.org/expert/32686 -https://www.oceanexpert.org/expert/43724 -https://www.oceanexpert.org/expert/21871 -https://www.oceanexpert.org/expert/48994 -https://www.oceanexpert.org/expert/27092 -https://www.oceanexpert.org/expert/31302 -https://www.oceanexpert.org/expert/18694 -https://www.oceanexpert.org/expert/1561 -https://www.oceanexpert.org/expert/26175 -https://www.oceanexpert.org/expert/25953 -https://www.oceanexpert.org/institution/21232 -https://www.oceanexpert.org/institution/20476 -https://www.oceanexpert.org/institution/14272 -https://www.oceanexpert.org/expert/3958 -https://www.oceanexpert.org/expert/44367 -https://www.oceanexpert.org/institution/15766 -https://www.oceanexpert.org/expert/25429 -https://www.oceanexpert.org/institution/21074 -https://www.oceanexpert.org/expert/39842 -https://www.oceanexpert.org/expert/25348 -https://www.oceanexpert.org/institution/22024 -https://www.oceanexpert.org/institution/10698 -https://www.oceanexpert.org/expert/43389 -https://www.oceanexpert.org/institution/8623 -https://www.oceanexpert.org/institution/7757 -https://www.oceanexpert.org/expert/46385 -https://www.oceanexpert.org/event/184 -https://www.oceanexpert.org/event/2301 -https://www.oceanexpert.org/expert/47988 -https://www.oceanexpert.org/institution/17119 -https://www.oceanexpert.org/institution/21200 -https://www.oceanexpert.org/event/402 -https://www.oceanexpert.org/expert/17513 -https://www.oceanexpert.org/event/1071 -https://www.oceanexpert.org/event/1310 -https://www.oceanexpert.org/event/454 -https://www.oceanexpert.org/institution/12182 -https://www.oceanexpert.org/expert/12150 -https://www.oceanexpert.org/expert/44661 -https://www.oceanexpert.org/expert/43598 -https://www.oceanexpert.org/expert/28342 -https://www.oceanexpert.org/event/1787 -https://www.oceanexpert.org/institution/15605 -https://www.oceanexpert.org/institution/5995 -https://www.oceanexpert.org/expert/44587 -https://www.oceanexpert.org/expert/7232 -https://www.oceanexpert.org/institution/6811 -https://www.oceanexpert.org/expert/27076 -https://www.oceanexpert.org/expert/43445 -https://www.oceanexpert.org/expert/46501 -https://www.oceanexpert.org/event/2980 -https://www.oceanexpert.org/expert/46841 -https://www.oceanexpert.org/expert/20509 -https://www.oceanexpert.org/institution/17816 -https://www.oceanexpert.org/expert/18584 -https://www.oceanexpert.org/expert/16119 -https://www.oceanexpert.org/institution/18567 -https://www.oceanexpert.org/expert/30065 -https://www.oceanexpert.org/expert/21707 -https://www.oceanexpert.org/expert/18118 -https://www.oceanexpert.org/event/1262 -https://www.oceanexpert.org/expert/44167 -https://www.oceanexpert.org/institution/13341 -https://www.oceanexpert.org/institution/20696 -https://www.oceanexpert.org/expert/18118 -https://www.oceanexpert.org/event/351 -https://www.oceanexpert.org/expert/21152 -https://www.oceanexpert.org/event/966 -https://www.oceanexpert.org/expert/46703 -https://www.oceanexpert.org/expert/46608 -https://www.oceanexpert.org/institution/21058 -https://www.oceanexpert.org/institution/14021 -https://www.oceanexpert.org/expert/25062 -https://www.oceanexpert.org/institution/20748 -https://www.oceanexpert.org/institution/16489 -https://www.oceanexpert.org/expert/30102 -https://www.oceanexpert.org/expert/21512 -https://www.oceanexpert.org/expert/35355 -https://www.oceanexpert.org/expert/18313 -https://www.oceanexpert.org/expert/26435 -https://www.oceanexpert.org/institution/16282 -https://www.oceanexpert.org/expert/24881 -https://www.oceanexpert.org/expert/34603 -https://www.oceanexpert.org/expert/11243 -https://www.oceanexpert.org/expert/46459 -https://www.oceanexpert.org/expert/17548 -https://www.oceanexpert.org/expert/44742 -https://www.oceanexpert.org/expert/20929 -https://www.oceanexpert.org/institution/11654 -https://www.oceanexpert.org/expert/30989 -https://www.oceanexpert.org/event/3198 -https://www.oceanexpert.org/expert/8298 -https://www.oceanexpert.org/event/3268 -https://www.oceanexpert.org/expert/28009 -https://www.oceanexpert.org/expert/43179 -https://www.oceanexpert.org/event/710 -https://www.oceanexpert.org/expert/46326 -https://www.oceanexpert.org/expert/30177 -https://www.oceanexpert.org/expert/27570 -https://www.oceanexpert.org/expert/43075 -https://www.oceanexpert.org/expert/38630 -https://www.oceanexpert.org/institution/5711 -https://www.oceanexpert.org/institution/18675 -https://www.oceanexpert.org/expert/14977 -https://www.oceanexpert.org/expert/37749 -https://www.oceanexpert.org/institution/21033 -https://www.oceanexpert.org/expert/39421 -https://www.oceanexpert.org/expert/21687 -https://www.oceanexpert.org/institution/15075 -https://www.oceanexpert.org/expert/43251 -https://www.oceanexpert.org/institution/19981 -https://www.oceanexpert.org/institution/15547 -https://www.oceanexpert.org/expert/28850 -https://www.oceanexpert.org/expert/27441 -https://www.oceanexpert.org/expert/24925 -https://www.oceanexpert.org/expert/20536 -https://www.oceanexpert.org/institution/20836 -https://www.oceanexpert.org/expert/43589 -https://www.oceanexpert.org/expert/45394 -https://www.oceanexpert.org/expert/45609 -https://www.oceanexpert.org/expert/45905 -https://www.oceanexpert.org/expert/27604 -https://www.oceanexpert.org/institution/6300 -https://www.oceanexpert.org/institution/21607 -https://www.oceanexpert.org/expert/19972 -https://www.oceanexpert.org/expert/39719 -https://www.oceanexpert.org/institution/10149 -https://www.oceanexpert.org/expert/19288 -https://www.oceanexpert.org/expert/42996 -https://www.oceanexpert.org/expert/43259 -https://www.oceanexpert.org/institution/14256 -https://www.oceanexpert.org/institution/10561 -https://www.oceanexpert.org/expert/11012 -https://www.oceanexpert.org/expert/47762 -https://www.oceanexpert.org/expert/34396 -https://www.oceanexpert.org/expert/26270 -https://www.oceanexpert.org/event/584 -https://www.oceanexpert.org/expert/42371 -https://www.oceanexpert.org/expert/10851 -https://www.oceanexpert.org/expert/14736 -https://www.oceanexpert.org/expert/28083 -https://www.oceanexpert.org/expert/47030 -https://www.oceanexpert.org/expert/5966 -https://www.oceanexpert.org/event/1631 -https://www.oceanexpert.org/event/2394 -https://www.oceanexpert.org/expert/12430 -https://www.oceanexpert.org/expert/42929 -https://www.oceanexpert.org/expert/28389 -https://www.oceanexpert.org/institution/12905 -https://www.oceanexpert.org/institution/19587 -https://www.oceanexpert.org/institution/15548 -https://www.oceanexpert.org/event/3028 -https://www.oceanexpert.org/expert/11205 -https://www.oceanexpert.org/institution/18528 -https://www.oceanexpert.org/expert/35993 -https://www.oceanexpert.org/event/1985 -https://www.oceanexpert.org/expert/47922 -https://www.oceanexpert.org/institution/22080 -https://www.oceanexpert.org/expert/38492 -https://www.oceanexpert.org/event/1482 -https://www.oceanexpert.org/expert/18483 -https://www.oceanexpert.org/expert/29846 -https://www.oceanexpert.org/expert/13142 -https://www.oceanexpert.org/institution/20972 -https://www.oceanexpert.org/expert/22618 -https://www.oceanexpert.org/event/291 -https://www.oceanexpert.org/institution/7769 -https://www.oceanexpert.org/institution/15410 -https://www.oceanexpert.org/expert/18442 -https://www.oceanexpert.org/institution/17457 -https://www.oceanexpert.org/expert/37528 -https://www.oceanexpert.org/expert/30184 -https://www.oceanexpert.org/expert/21353 -https://www.oceanexpert.org/institution/8323 -https://www.oceanexpert.org/expert/40090 -https://www.oceanexpert.org/institution/21303 -https://www.oceanexpert.org/expert/31475 -https://www.oceanexpert.org/expert/47802 -https://www.oceanexpert.org/expert/48149 -https://www.oceanexpert.org/institution/14014 -https://www.oceanexpert.org/institution/15896 -https://www.oceanexpert.org/expert/24098 -https://www.oceanexpert.org/expert/25566 -https://www.oceanexpert.org/expert/38465 -https://www.oceanexpert.org/institution/14724 -https://www.oceanexpert.org/expert/45645 -https://www.oceanexpert.org/institution/19673 -https://www.oceanexpert.org/expert/35084 -https://www.oceanexpert.org/institution/22107 -https://www.oceanexpert.org/event/1469 -https://www.oceanexpert.org/institution/21649 -https://www.oceanexpert.org/expert/14392 -https://www.oceanexpert.org/expert/6798 -https://www.oceanexpert.org/institution/15720 -https://www.oceanexpert.org/expert/26318 -https://www.oceanexpert.org/expert/22781 -https://www.oceanexpert.org/expert/47490 -https://www.oceanexpert.org/expert/32891 -https://www.oceanexpert.org/expert/23326 -https://www.oceanexpert.org/expert/31449 -https://www.oceanexpert.org/expert/17716 -https://www.oceanexpert.org/expert/12088 -https://www.oceanexpert.org/expert/11768 -https://www.oceanexpert.org/institution/15578 -https://www.oceanexpert.org/institution/19366 -https://www.oceanexpert.org/expert/22352 -https://www.oceanexpert.org/expert/21666 -https://www.oceanexpert.org/expert/42453 -https://www.oceanexpert.org/expert/45581 -https://www.oceanexpert.org/event/2906 -https://www.oceanexpert.org/institution/19682 -https://www.oceanexpert.org/event/1586 -https://www.oceanexpert.org/expert/45037 -https://www.oceanexpert.org/expert/36441 -https://www.oceanexpert.org/expert/20003 -https://www.oceanexpert.org/expert/36431 -https://www.oceanexpert.org/event/824 -https://www.oceanexpert.org/expert/42606 -https://www.oceanexpert.org/expert/14040 -https://www.oceanexpert.org/expert/21180 -https://www.oceanexpert.org/expert/27616 -https://www.oceanexpert.org/event/2500 -https://www.oceanexpert.org/expert/24215 -https://www.oceanexpert.org/event/1486 -https://www.oceanexpert.org/expert/22120 -https://www.oceanexpert.org/expert/24682 -https://www.oceanexpert.org/event/1968 -https://www.oceanexpert.org/expert/19912 -https://www.oceanexpert.org/expert/43690 -https://www.oceanexpert.org/expert/12868 -https://www.oceanexpert.org/institution/19611 -https://www.oceanexpert.org/expert/21022 -https://www.oceanexpert.org/expert/22724 -https://www.oceanexpert.org/expert/34419 -https://www.oceanexpert.org/institution/18934 -https://www.oceanexpert.org/expert/35944 -https://www.oceanexpert.org/expert/20557 -https://www.oceanexpert.org/institution/17718 -https://www.oceanexpert.org/expert/29770 -https://www.oceanexpert.org/expert/23992 -https://www.oceanexpert.org/expert/14011 -https://www.oceanexpert.org/expert/25271 -https://www.oceanexpert.org/expert/20613 -https://www.oceanexpert.org/expert/27233 -https://www.oceanexpert.org/expert/48030 -https://www.oceanexpert.org/expert/42722 -https://www.oceanexpert.org/institution/18365 -https://www.oceanexpert.org/expert/28122 -https://www.oceanexpert.org/expert/20982 -https://www.oceanexpert.org/institution/17896 -https://www.oceanexpert.org/expert/39119 -https://www.oceanexpert.org/expert/37727 -https://www.oceanexpert.org/expert/22536 -https://www.oceanexpert.org/expert/17656 -https://www.oceanexpert.org/expert/37545 -https://www.oceanexpert.org/event/1491 -https://www.oceanexpert.org/expert/22111 -https://www.oceanexpert.org/expert/13178 -https://www.oceanexpert.org/expert/27516 -https://www.oceanexpert.org/institution/21526 -https://www.oceanexpert.org/expert/23748 -https://www.oceanexpert.org/expert/20869 -https://www.oceanexpert.org/institution/18299 -https://www.oceanexpert.org/expert/34045 -https://www.oceanexpert.org/institution/18164 -https://www.oceanexpert.org/event/3261 -https://www.oceanexpert.org/expert/12265 -https://www.oceanexpert.org/expert/425 -https://www.oceanexpert.org/institution/15983 -https://www.oceanexpert.org/institution/18501 -https://www.oceanexpert.org/expert/34659 -https://www.oceanexpert.org/expert/15031 -https://www.oceanexpert.org/expert/46669 -https://www.oceanexpert.org/expert/32779 -https://www.oceanexpert.org/expert/26070 -https://www.oceanexpert.org/institution/15758 -https://www.oceanexpert.org/expert/20153 -https://www.oceanexpert.org/expert/1879 -https://www.oceanexpert.org/event/1392 -https://www.oceanexpert.org/expert/43713 -https://www.oceanexpert.org/expert/24073 -https://www.oceanexpert.org/expert/23861 -https://www.oceanexpert.org/institution/18168 -https://www.oceanexpert.org/expert/20809 -https://www.oceanexpert.org/institution/19417 -https://www.oceanexpert.org/institution/17472 -https://www.oceanexpert.org/expert/31616 -https://www.oceanexpert.org/expert/44289 -https://www.oceanexpert.org/expert/16835 -https://www.oceanexpert.org/institution/16377 -https://www.oceanexpert.org/institution/18774 -https://www.oceanexpert.org/expert/24174 -https://www.oceanexpert.org/institution/12273 -https://www.oceanexpert.org/expert/15540 -https://www.oceanexpert.org/expert/21185 -https://www.oceanexpert.org/institution/19593 -https://www.oceanexpert.org/expert/38112 -https://www.oceanexpert.org/expert/17630 -https://www.oceanexpert.org/expert/9556 -https://www.oceanexpert.org/expert/39313 -https://www.oceanexpert.org/institution/21939 -https://www.oceanexpert.org/institution/16886 -https://www.oceanexpert.org/expert/28095 -https://www.oceanexpert.org/expert/43263 -https://www.oceanexpert.org/institution/20349 -https://www.oceanexpert.org/institution/16618 -https://www.oceanexpert.org/expert/44584 -https://www.oceanexpert.org/expert/28426 -https://www.oceanexpert.org/expert/44462 -https://www.oceanexpert.org/institution/19936 -https://www.oceanexpert.org/institution/18195 -https://www.oceanexpert.org/expert/34783 -https://www.oceanexpert.org/institution/18070 -https://www.oceanexpert.org/expert/34321 -https://www.oceanexpert.org/institution/20542 -https://www.oceanexpert.org/institution/11075 -https://www.oceanexpert.org/institution/20958 -https://www.oceanexpert.org/expert/36343 -https://www.oceanexpert.org/expert/20040 -https://www.oceanexpert.org/institution/12061 -https://www.oceanexpert.org/expert/44970 -https://www.oceanexpert.org/institution/19082 -https://www.oceanexpert.org/institution/21037 -https://www.oceanexpert.org/expert/21547 -https://www.oceanexpert.org/institution/20830 -https://www.oceanexpert.org/event/558 -https://www.oceanexpert.org/expert/13365 -https://www.oceanexpert.org/institution/22150 -https://www.oceanexpert.org/institution/13042 -https://www.oceanexpert.org/expert/23332 -https://www.oceanexpert.org/institution/20704 -https://www.oceanexpert.org/institution/21240 -https://www.oceanexpert.org/event/2058 -https://www.oceanexpert.org/institution/8547 -https://www.oceanexpert.org/institution/15056 -https://www.oceanexpert.org/expert/33777 -https://www.oceanexpert.org/institution/16068 -https://www.oceanexpert.org/expert/2291 -https://www.oceanexpert.org/expert/24019 -https://www.oceanexpert.org/expert/30252 -https://www.oceanexpert.org/expert/33634 -https://www.oceanexpert.org/expert/21365 -https://www.oceanexpert.org/expert/48074 -https://www.oceanexpert.org/event/1111 -https://www.oceanexpert.org/expert/37775 -https://www.oceanexpert.org/expert/26665 -https://www.oceanexpert.org/expert/24602 -https://www.oceanexpert.org/institution/20970 -https://www.oceanexpert.org/expert/34665 -https://www.oceanexpert.org/expert/26002 -https://www.oceanexpert.org/event/2989 -https://www.oceanexpert.org/expert/19077 -https://www.oceanexpert.org/institution/10052 -https://www.oceanexpert.org/expert/12385 -https://www.oceanexpert.org/expert/37850 -https://www.oceanexpert.org/expert/47457 -https://www.oceanexpert.org/institution/20577 -https://www.oceanexpert.org/expert/39842 -https://www.oceanexpert.org/institution/9075 -https://www.oceanexpert.org/expert/29469 -https://www.oceanexpert.org/event/2260 -https://www.oceanexpert.org/expert/25123 -https://www.oceanexpert.org/institution/20020 -https://www.oceanexpert.org/expert/24552 -https://www.oceanexpert.org/institution/14441 -https://www.oceanexpert.org/expert/17579 -https://www.oceanexpert.org/expert/47180 -https://www.oceanexpert.org/expert/5699 -https://www.oceanexpert.org/expert/28972 -https://www.oceanexpert.org/expert/2384 -https://www.oceanexpert.org/expert/26947 -https://www.oceanexpert.org/institution/10700 -https://www.oceanexpert.org/event/826 -https://www.oceanexpert.org/institution/17037 -https://www.oceanexpert.org/institution/10706 -https://www.oceanexpert.org/institution/17618 -https://www.oceanexpert.org/expert/10303 -https://www.oceanexpert.org/expert/45325 -https://www.oceanexpert.org/expert/19073 -https://www.oceanexpert.org/expert/36822 -https://www.oceanexpert.org/expert/22974 -https://www.oceanexpert.org/expert/35426 -https://www.oceanexpert.org/expert/35673 -https://www.oceanexpert.org/expert/44808 -https://www.oceanexpert.org/expert/25414 -https://www.oceanexpert.org/event/2978 -https://www.oceanexpert.org/expert/23181 -https://www.oceanexpert.org/institution/19653 -https://www.oceanexpert.org/institution/18320 -https://www.oceanexpert.org/event/2549 -https://www.oceanexpert.org/expert/19434 -https://www.oceanexpert.org/expert/22357 -https://www.oceanexpert.org/expert/44244 -https://www.oceanexpert.org/event/2162 -https://www.oceanexpert.org/event/214 -https://www.oceanexpert.org/event/1857 -https://www.oceanexpert.org/expert/48124 -https://www.oceanexpert.org/expert/47685 -https://www.oceanexpert.org/institution/16991 -https://www.oceanexpert.org/expert/30930 -https://www.oceanexpert.org/event/1778 -https://www.oceanexpert.org/event/240 -https://www.oceanexpert.org/expert/46261 -https://www.oceanexpert.org/expert/25762 -https://www.oceanexpert.org/expert/40068 -https://www.oceanexpert.org/expert/17461 -https://www.oceanexpert.org/expert/19024 -https://www.oceanexpert.org/institution/18964 -https://www.oceanexpert.org/expert/24702 -https://www.oceanexpert.org/institution/13014 -https://www.oceanexpert.org/expert/23067 -https://www.oceanexpert.org/institution/9057 -https://www.oceanexpert.org/expert/31574 -https://www.oceanexpert.org/institution/13861 -https://www.oceanexpert.org/expert/26991 -https://www.oceanexpert.org/institution/19100 -https://www.oceanexpert.org/expert/31005 -https://www.oceanexpert.org/expert/43417 -https://www.oceanexpert.org/event/2735 -https://www.oceanexpert.org/expert/17425 -https://www.oceanexpert.org/institution/12150 -https://www.oceanexpert.org/expert/44722 -https://www.oceanexpert.org/expert/26330 -https://www.oceanexpert.org/expert/17844 -https://www.oceanexpert.org/expert/19045 -https://www.oceanexpert.org/institution/13891 -https://www.oceanexpert.org/expert/14897 -https://www.oceanexpert.org/expert/20257 -https://www.oceanexpert.org/institution/18695 -https://www.oceanexpert.org/institution/13714 -https://www.oceanexpert.org/institution/21890 -https://www.oceanexpert.org/expert/21001 -https://www.oceanexpert.org/expert/36868 -https://www.oceanexpert.org/institution/18141 -https://www.oceanexpert.org/event/2882 -https://www.oceanexpert.org/expert/19151 -https://www.oceanexpert.org/expert/35375 -https://www.oceanexpert.org/expert/36705 -https://www.oceanexpert.org/expert/29190 -https://www.oceanexpert.org/event/2647 -https://www.oceanexpert.org/expert/11713 -https://www.oceanexpert.org/institution/21694 -https://www.oceanexpert.org/institution/7234 -https://www.oceanexpert.org/expert/42998 -https://www.oceanexpert.org/institution/14133 -https://www.oceanexpert.org/institution/15568 -https://www.oceanexpert.org/event/592 -https://www.oceanexpert.org/expert/26313 -https://www.oceanexpert.org/expert/36902 -https://www.oceanexpert.org/expert/13741 -https://www.oceanexpert.org/expert/38491 -https://www.oceanexpert.org/expert/30993 -https://www.oceanexpert.org/expert/44639 -https://www.oceanexpert.org/expert/44816 -https://www.oceanexpert.org/institution/14309 -https://www.oceanexpert.org/expert/36359 -https://www.oceanexpert.org/institution/10197 -https://www.oceanexpert.org/expert/13861 -https://www.oceanexpert.org/expert/22394 -https://www.oceanexpert.org/event/2443 -https://www.oceanexpert.org/institution/19641 -https://www.oceanexpert.org/expert/44771 -https://www.oceanexpert.org/expert/25967 -https://www.oceanexpert.org/expert/47829 -https://www.oceanexpert.org/institution/12864 -https://www.oceanexpert.org/expert/34535 -https://www.oceanexpert.org/expert/11993 -https://www.oceanexpert.org/institution/17684 -https://www.oceanexpert.org/event/1808 -https://www.oceanexpert.org/institution/19154 -https://www.oceanexpert.org/expert/27339 -https://www.oceanexpert.org/expert/34751 -https://www.oceanexpert.org/expert/19087 -https://www.oceanexpert.org/expert/22917 -https://www.oceanexpert.org/expert/47922 -https://www.oceanexpert.org/institution/18445 -https://www.oceanexpert.org/expert/28375 -https://www.oceanexpert.org/expert/24822 -https://www.oceanexpert.org/expert/17043 -https://www.oceanexpert.org/event/437 -https://www.oceanexpert.org/institution/7967 -https://www.oceanexpert.org/institution/20284 -https://www.oceanexpert.org/event/1074 -https://www.oceanexpert.org/institution/15657 -https://www.oceanexpert.org/institution/10053 -https://www.oceanexpert.org/institution/19547 -https://www.oceanexpert.org/expert/46662 -https://www.oceanexpert.org/institution/18837 -https://www.oceanexpert.org/event/19 -https://www.oceanexpert.org/institution/21734 -https://www.oceanexpert.org/institution/10561 -https://www.oceanexpert.org/expert/23674 -https://www.oceanexpert.org/institution/19165 -https://www.oceanexpert.org/expert/25282 -https://www.oceanexpert.org/institution/15295 -https://www.oceanexpert.org/expert/47686 -https://www.oceanexpert.org/event/345 -https://www.oceanexpert.org/expert/9904 -https://www.oceanexpert.org/expert/25251 -https://www.oceanexpert.org/expert/44506 -https://www.oceanexpert.org/institution/19692 -https://www.oceanexpert.org/institution/22142 -https://www.oceanexpert.org/expert/16360 -https://www.oceanexpert.org/institution/6364 -https://www.oceanexpert.org/event/878 -https://www.oceanexpert.org/institution/12606 -https://www.oceanexpert.org/event/278 -https://www.oceanexpert.org/expert/42905 -https://www.oceanexpert.org/expert/17654 -https://www.oceanexpert.org/expert/7312 -https://www.oceanexpert.org/expert/44826 -https://www.oceanexpert.org/expert/33494 -https://www.oceanexpert.org/expert/26106 -https://www.oceanexpert.org/expert/38101 -https://www.oceanexpert.org/expert/27073 -https://www.oceanexpert.org/expert/33863 -https://www.oceanexpert.org/institution/15480 -https://www.oceanexpert.org/expert/34873 -https://www.oceanexpert.org/expert/37193 -https://www.oceanexpert.org/expert/42811 -https://www.oceanexpert.org/event/2221 -https://www.oceanexpert.org/expert/26382 -https://www.oceanexpert.org/expert/18654 -https://www.oceanexpert.org/expert/13224 -https://www.oceanexpert.org/institution/4915 -https://www.oceanexpert.org/institution/20659 -https://www.oceanexpert.org/expert/18504 -https://www.oceanexpert.org/institution/18524 -https://www.oceanexpert.org/expert/43430 -https://www.oceanexpert.org/expert/26774 -https://www.oceanexpert.org/expert/10046 -https://www.oceanexpert.org/event/1163 -https://www.oceanexpert.org/expert/29688 -https://www.oceanexpert.org/institution/21341 -https://www.oceanexpert.org/expert/21793 -https://www.oceanexpert.org/institution/8631 -https://www.oceanexpert.org/expert/24466 -https://www.oceanexpert.org/expert/47823 -https://www.oceanexpert.org/institution/21827 -https://www.oceanexpert.org/expert/35618 -https://www.oceanexpert.org/expert/8358 -https://www.oceanexpert.org/expert/27758 -https://www.oceanexpert.org/expert/42852 -https://www.oceanexpert.org/expert/43687 -https://www.oceanexpert.org/institution/8154 -https://www.oceanexpert.org/institution/17556 -https://www.oceanexpert.org/expert/42137 -https://www.oceanexpert.org/event/836 -https://www.oceanexpert.org/event/236 -https://www.oceanexpert.org/institution/19283 -https://www.oceanexpert.org/expert/7176 -https://www.oceanexpert.org/expert/32262 -https://www.oceanexpert.org/expert/3083 -https://www.oceanexpert.org/expert/20327 -https://www.oceanexpert.org/expert/25431 -https://www.oceanexpert.org/expert/8170 -https://www.oceanexpert.org/event/1495 -https://www.oceanexpert.org/expert/30863 -https://www.oceanexpert.org/event/2921 -https://www.oceanexpert.org/expert/38331 -https://www.oceanexpert.org/expert/47206 -https://www.oceanexpert.org/expert/27555 -https://www.oceanexpert.org/expert/19622 -https://www.oceanexpert.org/expert/42102 -https://www.oceanexpert.org/institution/14582 -https://www.oceanexpert.org/expert/19515 -https://www.oceanexpert.org/event/1511 -https://www.oceanexpert.org/expert/25387 -https://www.oceanexpert.org/expert/35185 -https://www.oceanexpert.org/expert/24347 -https://www.oceanexpert.org/institution/15280 -https://www.oceanexpert.org/expert/36854 -https://www.oceanexpert.org/expert/24095 -https://www.oceanexpert.org/expert/7794 -https://www.oceanexpert.org/event/2484 -https://www.oceanexpert.org/event/1483 -https://www.oceanexpert.org/expert/11226 -https://www.oceanexpert.org/expert/8744 -https://www.oceanexpert.org/expert/17162 -https://www.oceanexpert.org/institution/14142 -https://www.oceanexpert.org/expert/20709 -https://www.oceanexpert.org/event/2242 -https://www.oceanexpert.org/institution/12980 -https://www.oceanexpert.org/expert/43748 -https://www.oceanexpert.org/institution/18359 -https://www.oceanexpert.org/expert/17490 -https://www.oceanexpert.org/expert/35114 -https://www.oceanexpert.org/expert/25389 -https://www.oceanexpert.org/expert/25799 -https://www.oceanexpert.org/expert/31129 -https://www.oceanexpert.org/expert/17984 -https://www.oceanexpert.org/institution/15049 -https://www.oceanexpert.org/expert/20565 -https://www.oceanexpert.org/expert/34365 -https://www.oceanexpert.org/expert/37360 -https://www.oceanexpert.org/expert/30700 -https://www.oceanexpert.org/event/265 -https://www.oceanexpert.org/institution/19923 -https://www.oceanexpert.org/institution/16369 -https://www.oceanexpert.org/expert/26292 -https://www.oceanexpert.org/expert/20988 -https://www.oceanexpert.org/institution/21591 -https://www.oceanexpert.org/expert/11876 -https://www.oceanexpert.org/expert/17191 -https://www.oceanexpert.org/institution/21328 -https://www.oceanexpert.org/event/723 -https://www.oceanexpert.org/expert/35478 -https://www.oceanexpert.org/expert/19575 -https://www.oceanexpert.org/expert/14533 -https://www.oceanexpert.org/expert/29643 -https://www.oceanexpert.org/institution/18669 -https://www.oceanexpert.org/expert/25257 -https://www.oceanexpert.org/expert/24055 -https://www.oceanexpert.org/expert/26187 -https://www.oceanexpert.org/expert/48289 -https://www.oceanexpert.org/expert/35781 -https://www.oceanexpert.org/event/359 -https://www.oceanexpert.org/expert/23790 -https://www.oceanexpert.org/expert/46286 -https://www.oceanexpert.org/expert/47901 -https://www.oceanexpert.org/expert/44555 -https://www.oceanexpert.org/expert/22812 -https://www.oceanexpert.org/expert/39201 -https://www.oceanexpert.org/expert/33985 -https://www.oceanexpert.org/expert/21788 -https://www.oceanexpert.org/event/1421 -https://www.oceanexpert.org/expert/48718 -https://www.oceanexpert.org/institution/13174 -https://www.oceanexpert.org/event/3072 -https://www.oceanexpert.org/expert/26884 -https://www.oceanexpert.org/institution/15610 -https://www.oceanexpert.org/expert/38340 -https://www.oceanexpert.org/institution/15292 -https://www.oceanexpert.org/expert/28206 -https://www.oceanexpert.org/institution/21213 -https://www.oceanexpert.org/expert/27497 -https://www.oceanexpert.org/expert/43042 -https://www.oceanexpert.org/expert/3214 -https://www.oceanexpert.org/expert/12265 -https://www.oceanexpert.org/event/1098 -https://www.oceanexpert.org/expert/27475 -https://www.oceanexpert.org/expert/28178 -https://www.oceanexpert.org/expert/2836 -https://www.oceanexpert.org/expert/19011 -https://www.oceanexpert.org/expert/35001 -https://www.oceanexpert.org/expert/35106 -https://www.oceanexpert.org/expert/23456 -https://www.oceanexpert.org/event/350 -https://www.oceanexpert.org/expert/44730 -https://www.oceanexpert.org/expert/25865 -https://www.oceanexpert.org/expert/26436 -https://www.oceanexpert.org/expert/43378 -https://www.oceanexpert.org/expert/16564 -https://www.oceanexpert.org/institution/5328 -https://www.oceanexpert.org/expert/29202 -https://www.oceanexpert.org/expert/17251 -https://www.oceanexpert.org/expert/48329 -https://www.oceanexpert.org/institution/13419 -https://www.oceanexpert.org/institution/20138 -https://www.oceanexpert.org/expert/37290 -https://www.oceanexpert.org/institution/21561 -https://www.oceanexpert.org/expert/17032 -https://www.oceanexpert.org/event/3133 -https://www.oceanexpert.org/expert/26203 -https://www.oceanexpert.org/expert/19628 -https://www.oceanexpert.org/expert/36353 -https://www.oceanexpert.org/expert/23258 -https://www.oceanexpert.org/expert/15012 -https://www.oceanexpert.org/expert/23557 -https://www.oceanexpert.org/expert/22933 -https://www.oceanexpert.org/expert/16680 -https://www.oceanexpert.org/institution/19891 -https://www.oceanexpert.org/expert/43893 -https://www.oceanexpert.org/expert/24888 -https://www.oceanexpert.org/expert/48496 -https://www.oceanexpert.org/institution/16450 -https://www.oceanexpert.org/expert/18644 -https://www.oceanexpert.org/institution/9135 -https://www.oceanexpert.org/expert/44486 -https://www.oceanexpert.org/expert/26653 -https://www.oceanexpert.org/expert/36006 -https://www.oceanexpert.org/expert/47297 -https://www.oceanexpert.org/expert/21829 -https://www.oceanexpert.org/institution/19547 -https://www.oceanexpert.org/expert/37409 -https://www.oceanexpert.org/expert/48298 -https://www.oceanexpert.org/expert/35911 -https://www.oceanexpert.org/expert/23608 -https://www.oceanexpert.org/expert/26282 -https://www.oceanexpert.org/institution/15921 -https://www.oceanexpert.org/expert/27941 -https://www.oceanexpert.org/expert/30215 -https://www.oceanexpert.org/expert/36469 -https://www.oceanexpert.org/expert/25849 -https://www.oceanexpert.org/expert/23330 -https://www.oceanexpert.org/expert/48085 -https://www.oceanexpert.org/event/398 -https://www.oceanexpert.org/expert/48848 -https://www.oceanexpert.org/expert/19384 -https://www.oceanexpert.org/expert/48047 -https://www.oceanexpert.org/event/1347 -https://www.oceanexpert.org/expert/14674 -https://www.oceanexpert.org/event/1805 -https://www.oceanexpert.org/expert/48029 -https://www.oceanexpert.org/expert/46726 -https://www.oceanexpert.org/expert/46050 -https://www.oceanexpert.org/event/2384 -https://www.oceanexpert.org/expert/17652 -https://www.oceanexpert.org/expert/19511 -https://www.oceanexpert.org/expert/38728 -https://www.oceanexpert.org/institution/19502 -https://www.oceanexpert.org/institution/6892 -https://www.oceanexpert.org/institution/11697 -https://www.oceanexpert.org/institution/19879 -https://www.oceanexpert.org/institution/18384 -https://www.oceanexpert.org/expert/34669 -https://www.oceanexpert.org/institution/9039 -https://www.oceanexpert.org/institution/18065 -https://www.oceanexpert.org/expert/22406 -https://www.oceanexpert.org/institution/10895 -https://www.oceanexpert.org/expert/9273 -https://www.oceanexpert.org/expert/23777 -https://www.oceanexpert.org/expert/36409 -https://www.oceanexpert.org/expert/26792 -https://www.oceanexpert.org/expert/38974 -https://www.oceanexpert.org/expert/36538 -https://www.oceanexpert.org/institution/18323 -https://www.oceanexpert.org/expert/46030 -https://www.oceanexpert.org/institution/18056 -https://www.oceanexpert.org/expert/504 -https://www.oceanexpert.org/expert/20402 -https://www.oceanexpert.org/expert/36594 -https://www.oceanexpert.org/expert/10849 -https://www.oceanexpert.org/expert/7294 -https://www.oceanexpert.org/institution/18556 -https://www.oceanexpert.org/expert/23792 -https://www.oceanexpert.org/institution/5236 -https://www.oceanexpert.org/expert/13032 -https://www.oceanexpert.org/institution/11645 -https://www.oceanexpert.org/expert/37968 -https://www.oceanexpert.org/institution/20364 -https://www.oceanexpert.org/expert/20244 -https://www.oceanexpert.org/institution/19809 -https://www.oceanexpert.org/expert/36107 -https://www.oceanexpert.org/expert/36924 -https://www.oceanexpert.org/expert/4579 -https://www.oceanexpert.org/expert/34250 -https://www.oceanexpert.org/expert/20287 -https://www.oceanexpert.org/expert/32657 -https://www.oceanexpert.org/institution/16870 -https://www.oceanexpert.org/institution/10251 -https://www.oceanexpert.org/expert/16564 -https://www.oceanexpert.org/expert/48012 -https://www.oceanexpert.org/expert/13419 -https://www.oceanexpert.org/institution/21459 -https://www.oceanexpert.org/institution/21828 -https://www.oceanexpert.org/expert/9549 -https://www.oceanexpert.org/expert/14844 -https://www.oceanexpert.org/expert/6863 -https://www.oceanexpert.org/expert/47731 -https://www.oceanexpert.org/institution/21007 -https://www.oceanexpert.org/expert/26255 -https://www.oceanexpert.org/expert/23390 -https://www.oceanexpert.org/event/960 -https://www.oceanexpert.org/expert/44664 -https://www.oceanexpert.org/expert/23995 -https://www.oceanexpert.org/expert/41153 -https://www.oceanexpert.org/institution/17382 -https://www.oceanexpert.org/expert/19262 -https://www.oceanexpert.org/expert/17019 -https://www.oceanexpert.org/expert/23524 -https://www.oceanexpert.org/event/1182 -https://www.oceanexpert.org/expert/33763 -https://www.oceanexpert.org/event/1242 -https://www.oceanexpert.org/event/3071 -https://www.oceanexpert.org/expert/28147 -https://www.oceanexpert.org/expert/36150 -https://www.oceanexpert.org/expert/43979 -https://www.oceanexpert.org/expert/36838 -https://www.oceanexpert.org/event/700 -https://www.oceanexpert.org/institution/20595 -https://www.oceanexpert.org/event/1537 -https://www.oceanexpert.org/event/343 -https://www.oceanexpert.org/expert/8650 -https://www.oceanexpert.org/expert/34043 -https://www.oceanexpert.org/expert/25276 -https://www.oceanexpert.org/institution/19590 -https://www.oceanexpert.org/institution/22022 -https://www.oceanexpert.org/expert/5210 -https://www.oceanexpert.org/expert/45233 -https://www.oceanexpert.org/expert/8398 -https://www.oceanexpert.org/institution/20026 -https://www.oceanexpert.org/expert/40551 -https://www.oceanexpert.org/expert/44992 -https://www.oceanexpert.org/institution/20774 -https://www.oceanexpert.org/institution/19310 -https://www.oceanexpert.org/event/1496 -https://www.oceanexpert.org/institution/20732 -https://www.oceanexpert.org/expert/21187 -https://www.oceanexpert.org/expert/45517 -https://www.oceanexpert.org/expert/17387 -https://www.oceanexpert.org/expert/14835 -https://www.oceanexpert.org/expert/26353 -https://www.oceanexpert.org/expert/18327 -https://www.oceanexpert.org/expert/26413 -https://www.oceanexpert.org/institution/8432 -https://www.oceanexpert.org/event/1708 -https://www.oceanexpert.org/expert/40262 -https://www.oceanexpert.org/event/2599 -https://www.oceanexpert.org/expert/23371 -https://www.oceanexpert.org/expert/35195 -https://www.oceanexpert.org/expert/43023 -https://www.oceanexpert.org/expert/6700 -https://www.oceanexpert.org/expert/37607 -https://www.oceanexpert.org/event/2807 -https://www.oceanexpert.org/event/414 -https://www.oceanexpert.org/expert/20379 -https://www.oceanexpert.org/institution/18125 -https://www.oceanexpert.org/expert/23316 -https://www.oceanexpert.org/expert/34433 -https://www.oceanexpert.org/expert/35986 -https://www.oceanexpert.org/institution/20854 -https://www.oceanexpert.org/expert/14404 -https://www.oceanexpert.org/institution/21332 -https://www.oceanexpert.org/expert/21637 -https://www.oceanexpert.org/expert/31480 -https://www.oceanexpert.org/expert/25099 -https://www.oceanexpert.org/expert/30210 -https://www.oceanexpert.org/expert/20991 -https://www.oceanexpert.org/expert/23637 -https://www.oceanexpert.org/expert/18488 -https://www.oceanexpert.org/expert/25902 -https://www.oceanexpert.org/institution/12598 -https://www.oceanexpert.org/expert/42941 -https://www.oceanexpert.org/expert/27260 -https://www.oceanexpert.org/expert/17618 -https://www.oceanexpert.org/institution/11429 -https://www.oceanexpert.org/expert/24612 -https://www.oceanexpert.org/expert/28306 -https://www.oceanexpert.org/expert/37141 -https://www.oceanexpert.org/institution/14367 -https://www.oceanexpert.org/expert/29127 -https://www.oceanexpert.org/expert/29197 -https://www.oceanexpert.org/expert/45881 -https://www.oceanexpert.org/expert/3095 -https://www.oceanexpert.org/expert/20322 -https://www.oceanexpert.org/expert/28373 -https://www.oceanexpert.org/institution/21278 -https://www.oceanexpert.org/expert/36904 -https://www.oceanexpert.org/expert/32951 -https://www.oceanexpert.org/expert/43073 -https://www.oceanexpert.org/expert/17220 -https://www.oceanexpert.org/expert/11551 -https://www.oceanexpert.org/expert/36944 -https://www.oceanexpert.org/expert/942 -https://www.oceanexpert.org/expert/45886 -https://www.oceanexpert.org/expert/43060 -https://www.oceanexpert.org/expert/23923 -https://www.oceanexpert.org/expert/47232 -https://www.oceanexpert.org/expert/31810 -https://www.oceanexpert.org/expert/12673 -https://www.oceanexpert.org/expert/37873 -https://www.oceanexpert.org/expert/24898 -https://www.oceanexpert.org/expert/13492 -https://www.oceanexpert.org/expert/18329 -https://www.oceanexpert.org/institution/20838 -https://www.oceanexpert.org/expert/44086 -https://www.oceanexpert.org/expert/26756 -https://www.oceanexpert.org/expert/45635 -https://www.oceanexpert.org/expert/42637 -https://www.oceanexpert.org/expert/26319 -https://www.oceanexpert.org/expert/34104 -https://www.oceanexpert.org/institution/12172 -https://www.oceanexpert.org/expert/35566 -https://www.oceanexpert.org/expert/23227 -https://www.oceanexpert.org/expert/25157 -https://www.oceanexpert.org/institution/9998 -https://www.oceanexpert.org/expert/18690 -https://www.oceanexpert.org/expert/31768 -https://www.oceanexpert.org/event/1908 -https://www.oceanexpert.org/expert/26142 -https://www.oceanexpert.org/expert/25484 -https://www.oceanexpert.org/expert/869 -https://www.oceanexpert.org/institution/21921 -https://www.oceanexpert.org/expert/1351 -https://www.oceanexpert.org/event/2810 -https://www.oceanexpert.org/institution/14661 -https://www.oceanexpert.org/institution/7197 -https://www.oceanexpert.org/institution/9609 -https://www.oceanexpert.org/expert/47933 -https://www.oceanexpert.org/expert/24645 -https://www.oceanexpert.org/expert/45335 -https://www.oceanexpert.org/expert/3794 -https://www.oceanexpert.org/expert/30798 -https://www.oceanexpert.org/expert/38547 -https://www.oceanexpert.org/expert/20794 -https://www.oceanexpert.org/event/2580 -https://www.oceanexpert.org/expert/22144 -https://www.oceanexpert.org/event/3016 -https://www.oceanexpert.org/expert/12957 -https://www.oceanexpert.org/event/3179 -https://www.oceanexpert.org/expert/48662 -https://www.oceanexpert.org/expert/44338 -https://www.oceanexpert.org/expert/20757 -https://www.oceanexpert.org/event/2882 -https://www.oceanexpert.org/expert/24012 -https://www.oceanexpert.org/expert/10988 -https://www.oceanexpert.org/event/2063 -https://www.oceanexpert.org/expert/25735 -https://www.oceanexpert.org/expert/44864 -https://www.oceanexpert.org/institution/15539 -https://www.oceanexpert.org/expert/31059 -https://www.oceanexpert.org/expert/35499 -https://www.oceanexpert.org/institution/18668 -https://www.oceanexpert.org/expert/35988 -https://www.oceanexpert.org/expert/13199 -https://www.oceanexpert.org/institution/20343 -https://www.oceanexpert.org/institution/19010 -https://www.oceanexpert.org/institution/21312 -https://www.oceanexpert.org/expert/29966 -https://www.oceanexpert.org/expert/25891 -https://www.oceanexpert.org/expert/46857 -https://www.oceanexpert.org/expert/29617 -https://www.oceanexpert.org/expert/24173 -https://www.oceanexpert.org/institution/16166 -https://www.oceanexpert.org/expert/46397 -https://www.oceanexpert.org/expert/29589 -https://www.oceanexpert.org/expert/36244 -https://www.oceanexpert.org/expert/32881 -https://www.oceanexpert.org/expert/22912 -https://www.oceanexpert.org/expert/48203 -https://www.oceanexpert.org/event/84 -https://www.oceanexpert.org/institution/21527 -https://www.oceanexpert.org/expert/21814 -https://www.oceanexpert.org/institution/16803 -https://www.oceanexpert.org/expert/27366 -https://www.oceanexpert.org/institution/19066 -https://www.oceanexpert.org/expert/37406 -https://www.oceanexpert.org/expert/23878 -https://www.oceanexpert.org/expert/33943 -https://www.oceanexpert.org/expert/48100 -https://www.oceanexpert.org/expert/21664 -https://www.oceanexpert.org/expert/36353 -https://www.oceanexpert.org/expert/19473 -https://www.oceanexpert.org/event/2322 -https://www.oceanexpert.org/expert/22144 -https://www.oceanexpert.org/expert/41053 -https://www.oceanexpert.org/expert/27435 -https://www.oceanexpert.org/institution/17670 -https://www.oceanexpert.org/institution/18336 -https://www.oceanexpert.org/expert/14410 -https://www.oceanexpert.org/expert/19496 -https://www.oceanexpert.org/institution/21341 -https://www.oceanexpert.org/expert/36838 -https://www.oceanexpert.org/expert/48536 -https://www.oceanexpert.org/expert/33817 -https://www.oceanexpert.org/expert/18427 -https://www.oceanexpert.org/event/838 -https://www.oceanexpert.org/institution/20071 -https://www.oceanexpert.org/event/2282 -https://www.oceanexpert.org/expert/4270 -https://www.oceanexpert.org/expert/37872 -https://www.oceanexpert.org/expert/47804 -https://www.oceanexpert.org/institution/14096 -https://www.oceanexpert.org/expert/45476 -https://www.oceanexpert.org/expert/40653 -https://www.oceanexpert.org/event/3052 -https://www.oceanexpert.org/institution/21453 -https://www.oceanexpert.org/expert/30798 -https://www.oceanexpert.org/expert/14202 -https://www.oceanexpert.org/institution/17586 -https://www.oceanexpert.org/institution/19138 -https://www.oceanexpert.org/institution/20539 -https://www.oceanexpert.org/institution/22184 -https://www.oceanexpert.org/institution/16514 -https://www.oceanexpert.org/event/78 -https://www.oceanexpert.org/expert/13569 -https://www.oceanexpert.org/event/1931 -https://www.oceanexpert.org/expert/38014 -https://www.oceanexpert.org/expert/23298 -https://www.oceanexpert.org/institution/20767 -https://www.oceanexpert.org/expert/24808 -https://www.oceanexpert.org/institution/19467 -https://www.oceanexpert.org/expert/44741 -https://www.oceanexpert.org/expert/35506 -https://www.oceanexpert.org/expert/6129 -https://www.oceanexpert.org/institution/11604 -https://www.oceanexpert.org/expert/20194 -https://www.oceanexpert.org/expert/38322 -https://www.oceanexpert.org/expert/26295 -https://www.oceanexpert.org/expert/33792 -https://www.oceanexpert.org/institution/13015 -https://www.oceanexpert.org/expert/32134 -https://www.oceanexpert.org/institution/12773 -https://www.oceanexpert.org/expert/34660 -https://www.oceanexpert.org/expert/1067 -https://www.oceanexpert.org/event/1307 -https://www.oceanexpert.org/expert/18980 -https://www.oceanexpert.org/expert/20095 -https://www.oceanexpert.org/expert/9585 -https://www.oceanexpert.org/expert/35246 -https://www.oceanexpert.org/expert/40287 -https://www.oceanexpert.org/expert/12005 -https://www.oceanexpert.org/expert/20107 -https://www.oceanexpert.org/institution/9447 -https://www.oceanexpert.org/institution/15332 -https://www.oceanexpert.org/expert/44340 -https://www.oceanexpert.org/institution/10525 -https://www.oceanexpert.org/expert/41686 -https://www.oceanexpert.org/expert/21885 -https://www.oceanexpert.org/expert/35923 -https://www.oceanexpert.org/institution/20670 -https://www.oceanexpert.org/expert/42579 -https://www.oceanexpert.org/expert/31052 -https://www.oceanexpert.org/expert/2619 -https://www.oceanexpert.org/institution/19173 -https://www.oceanexpert.org/institution/6801 -https://www.oceanexpert.org/institution/19156 -https://www.oceanexpert.org/expert/32841 -https://www.oceanexpert.org/institution/13368 -https://www.oceanexpert.org/expert/40666 -https://www.oceanexpert.org/institution/21299 -https://www.oceanexpert.org/expert/27415 -https://www.oceanexpert.org/expert/26501 -https://www.oceanexpert.org/expert/42554 -https://www.oceanexpert.org/expert/22169 -https://www.oceanexpert.org/expert/40282 -https://www.oceanexpert.org/institution/12424 -https://www.oceanexpert.org/expert/12608 -https://www.oceanexpert.org/expert/46197 -https://www.oceanexpert.org/event/214 -https://www.oceanexpert.org/expert/45874 -https://www.oceanexpert.org/institution/20004 -https://www.oceanexpert.org/expert/36345 -https://www.oceanexpert.org/expert/36782 -https://www.oceanexpert.org/expert/29469 -https://www.oceanexpert.org/institution/13079 -https://www.oceanexpert.org/expert/36444 -https://www.oceanexpert.org/expert/25104 -https://www.oceanexpert.org/event/521 -https://www.oceanexpert.org/expert/21896 -https://www.oceanexpert.org/institution/18756 -https://www.oceanexpert.org/expert/45651 -https://www.oceanexpert.org/expert/39338 -https://www.oceanexpert.org/institution/7963 -https://www.oceanexpert.org/expert/36257 -https://www.oceanexpert.org/event/2322 -https://www.oceanexpert.org/institution/17975 -https://www.oceanexpert.org/event/1940 -https://www.oceanexpert.org/institution/20995 -https://www.oceanexpert.org/expert/47751 -https://www.oceanexpert.org/event/243 -https://www.oceanexpert.org/expert/46346 -https://www.oceanexpert.org/expert/25402 -https://www.oceanexpert.org/expert/32160 -https://www.oceanexpert.org/expert/19584 -https://www.oceanexpert.org/institution/10832 -https://www.oceanexpert.org/expert/43550 -https://www.oceanexpert.org/expert/30983 -https://www.oceanexpert.org/expert/24625 -https://www.oceanexpert.org/institution/20012 -https://www.oceanexpert.org/expert/37186 -https://www.oceanexpert.org/expert/39299 -https://www.oceanexpert.org/institution/20092 -https://www.oceanexpert.org/expert/26314 -https://www.oceanexpert.org/expert/14799 -https://www.oceanexpert.org/expert/26742 -https://www.oceanexpert.org/expert/21659 -https://www.oceanexpert.org/expert/39227 -https://www.oceanexpert.org/expert/34866 -https://www.oceanexpert.org/event/179 -https://www.oceanexpert.org/expert/34851 -https://www.oceanexpert.org/expert/23217 -https://www.oceanexpert.org/institution/6030 -https://www.oceanexpert.org/institution/8785 -https://www.oceanexpert.org/expert/43843 -https://www.oceanexpert.org/expert/48000 -https://www.oceanexpert.org/expert/18173 -https://www.oceanexpert.org/expert/32370 -https://www.oceanexpert.org/institution/20859 -https://www.oceanexpert.org/expert/23952 -https://www.oceanexpert.org/expert/17320 -https://www.oceanexpert.org/event/1355 -https://www.oceanexpert.org/expert/40352 -https://www.oceanexpert.org/expert/4722 -https://www.oceanexpert.org/institution/8433 -https://www.oceanexpert.org/institution/18711 -https://www.oceanexpert.org/institution/10869 -https://www.oceanexpert.org/expert/21068 -https://www.oceanexpert.org/expert/31397 -https://www.oceanexpert.org/expert/20470 -https://www.oceanexpert.org/expert/20425 -https://www.oceanexpert.org/institution/21891 -https://www.oceanexpert.org/expert/20835 -https://www.oceanexpert.org/event/1368 -https://www.oceanexpert.org/expert/44069 -https://www.oceanexpert.org/expert/47607 -https://www.oceanexpert.org/expert/17925 -https://www.oceanexpert.org/expert/39170 -https://www.oceanexpert.org/event/416 -https://www.oceanexpert.org/expert/16966 -https://www.oceanexpert.org/expert/21997 -https://www.oceanexpert.org/expert/7274 -https://www.oceanexpert.org/event/2765 -https://www.oceanexpert.org/expert/26976 -https://www.oceanexpert.org/expert/39287 -https://www.oceanexpert.org/expert/48782 -https://www.oceanexpert.org/institution/11665 -https://www.oceanexpert.org/expert/42839 -https://www.oceanexpert.org/expert/38947 -https://www.oceanexpert.org/institution/18985 -https://www.oceanexpert.org/institution/19723 -https://www.oceanexpert.org/expert/35749 -https://www.oceanexpert.org/expert/32822 -https://www.oceanexpert.org/expert/20571 -https://www.oceanexpert.org/expert/6473 -https://www.oceanexpert.org/event/635 -https://www.oceanexpert.org/event/40 -https://www.oceanexpert.org/expert/20657 -https://www.oceanexpert.org/event/360 -https://www.oceanexpert.org/expert/22928 -https://www.oceanexpert.org/institution/9140 -https://www.oceanexpert.org/expert/38925 -https://www.oceanexpert.org/expert/32776 -https://www.oceanexpert.org/expert/44872 -https://www.oceanexpert.org/event/1213 -https://www.oceanexpert.org/expert/34959 -https://www.oceanexpert.org/institution/19855 -https://www.oceanexpert.org/expert/1960 -https://www.oceanexpert.org/expert/47818 -https://www.oceanexpert.org/institution/15836 -https://www.oceanexpert.org/expert/20961 -https://www.oceanexpert.org/event/1580 -https://www.oceanexpert.org/expert/30848 -https://www.oceanexpert.org/expert/19868 -https://www.oceanexpert.org/expert/43581 -https://www.oceanexpert.org/event/2032 -https://www.oceanexpert.org/event/1365 -https://www.oceanexpert.org/expert/37744 -https://www.oceanexpert.org/expert/21218 -https://www.oceanexpert.org/event/1398 -https://www.oceanexpert.org/expert/22397 -https://www.oceanexpert.org/institution/21960 -https://www.oceanexpert.org/expert/36729 -https://www.oceanexpert.org/institution/21620 -https://www.oceanexpert.org/expert/40589 -https://www.oceanexpert.org/institution/21047 -https://www.oceanexpert.org/expert/36179 -https://www.oceanexpert.org/institution/11599 -https://www.oceanexpert.org/expert/19033 -https://www.oceanexpert.org/institution/17950 -https://www.oceanexpert.org/expert/29467 -https://www.oceanexpert.org/institution/19696 -https://www.oceanexpert.org/expert/38111 -https://www.oceanexpert.org/expert/28130 -https://www.oceanexpert.org/expert/30638 -https://www.oceanexpert.org/expert/23593 -https://www.oceanexpert.org/expert/17065 -https://www.oceanexpert.org/institution/15306 -https://www.oceanexpert.org/expert/35026 -https://www.oceanexpert.org/expert/13361 -https://www.oceanexpert.org/expert/43531 -https://www.oceanexpert.org/institution/18434 -https://www.oceanexpert.org/expert/40602 -https://www.oceanexpert.org/institution/6939 -https://www.oceanexpert.org/institution/19651 -https://www.oceanexpert.org/expert/19145 -https://www.oceanexpert.org/expert/26862 -https://www.oceanexpert.org/expert/24902 -https://www.oceanexpert.org/expert/28123 -https://www.oceanexpert.org/expert/41913 -https://www.oceanexpert.org/expert/26745 -https://www.oceanexpert.org/institution/16105 -https://www.oceanexpert.org/expert/38137 -https://www.oceanexpert.org/expert/46467 -https://www.oceanexpert.org/expert/48848 -https://www.oceanexpert.org/expert/47712 -https://www.oceanexpert.org/expert/44314 -https://www.oceanexpert.org/expert/27757 -https://www.oceanexpert.org/expert/26499 -https://www.oceanexpert.org/institution/18228 -https://www.oceanexpert.org/expert/25335 -https://www.oceanexpert.org/expert/46855 -https://www.oceanexpert.org/expert/30798 -https://www.oceanexpert.org/expert/45785 -https://www.oceanexpert.org/expert/38892 -https://www.oceanexpert.org/expert/22022 -https://www.oceanexpert.org/expert/32772 -https://www.oceanexpert.org/expert/19468 -https://www.oceanexpert.org/expert/21644 -https://www.oceanexpert.org/expert/43650 -https://www.oceanexpert.org/event/445 -https://www.oceanexpert.org/expert/30534 -https://www.oceanexpert.org/event/1525 -https://www.oceanexpert.org/expert/44968 -https://www.oceanexpert.org/expert/15574 -https://www.oceanexpert.org/expert/34189 -https://www.oceanexpert.org/institution/19422 -https://www.oceanexpert.org/institution/20511 -https://www.oceanexpert.org/institution/18361 -https://www.oceanexpert.org/event/346 -https://www.oceanexpert.org/expert/12197 -https://www.oceanexpert.org/expert/43566 -https://www.oceanexpert.org/expert/17161 -https://www.oceanexpert.org/expert/12554 -https://www.oceanexpert.org/expert/27073 -https://www.oceanexpert.org/expert/22715 -https://www.oceanexpert.org/institution/10233 -https://www.oceanexpert.org/expert/34835 -https://www.oceanexpert.org/expert/48533 -https://www.oceanexpert.org/expert/26531 -https://www.oceanexpert.org/expert/42664 -https://www.oceanexpert.org/expert/45699 -https://www.oceanexpert.org/expert/27212 -https://www.oceanexpert.org/expert/25417 -https://www.oceanexpert.org/expert/42672 -https://www.oceanexpert.org/institution/14829 -https://www.oceanexpert.org/expert/34437 -https://www.oceanexpert.org/expert/45868 -https://www.oceanexpert.org/expert/15379 -https://www.oceanexpert.org/expert/21811 -https://www.oceanexpert.org/expert/26639 -https://www.oceanexpert.org/expert/34063 -https://www.oceanexpert.org/expert/1998 -https://www.oceanexpert.org/expert/47680 -https://www.oceanexpert.org/institution/18684 -https://www.oceanexpert.org/expert/27002 -https://www.oceanexpert.org/event/2070 -https://www.oceanexpert.org/expert/48788 -https://www.oceanexpert.org/expert/35838 -https://www.oceanexpert.org/institution/5922 -https://www.oceanexpert.org/expert/15884 -https://www.oceanexpert.org/institution/21527 -https://www.oceanexpert.org/institution/15714 -https://www.oceanexpert.org/expert/48630 -https://www.oceanexpert.org/expert/32399 -https://www.oceanexpert.org/institution/22013 -https://www.oceanexpert.org/event/1093 -https://www.oceanexpert.org/institution/21352 -https://www.oceanexpert.org/expert/937 -https://www.oceanexpert.org/expert/31197 -https://www.oceanexpert.org/expert/1486 -https://www.oceanexpert.org/expert/15537 -https://www.oceanexpert.org/institution/11408 -https://www.oceanexpert.org/expert/40363 -https://www.oceanexpert.org/institution/7719 -https://www.oceanexpert.org/event/1418 -https://www.oceanexpert.org/institution/18732 -https://www.oceanexpert.org/expert/34072 -https://www.oceanexpert.org/event/1847 -https://www.oceanexpert.org/expert/29096 -https://www.oceanexpert.org/event/2998 -https://www.oceanexpert.org/institution/8212 -https://www.oceanexpert.org/expert/31395 -https://www.oceanexpert.org/expert/25899 -https://www.oceanexpert.org/expert/31735 -https://www.oceanexpert.org/expert/42852 -https://www.oceanexpert.org/institution/19566 -https://www.oceanexpert.org/institution/14782 -https://www.oceanexpert.org/expert/46722 -https://www.oceanexpert.org/expert/43341 -https://www.oceanexpert.org/expert/30535 -https://www.oceanexpert.org/institution/16844 -https://www.oceanexpert.org/expert/22221 -https://www.oceanexpert.org/expert/43765 -https://www.oceanexpert.org/expert/42552 -https://www.oceanexpert.org/expert/16701 -https://www.oceanexpert.org/institution/16191 -https://www.oceanexpert.org/expert/42472 -https://www.oceanexpert.org/expert/18059 -https://www.oceanexpert.org/expert/14861 -https://www.oceanexpert.org/institution/21140 -https://www.oceanexpert.org/expert/12032 -https://www.oceanexpert.org/expert/27388 -https://www.oceanexpert.org/expert/30374 -https://www.oceanexpert.org/expert/25432 -https://www.oceanexpert.org/institution/21389 -https://www.oceanexpert.org/expert/44983 -https://www.oceanexpert.org/institution/19026 -https://www.oceanexpert.org/expert/153 -https://www.oceanexpert.org/expert/37463 -https://www.oceanexpert.org/expert/46706 -https://www.oceanexpert.org/expert/23967 -https://www.oceanexpert.org/expert/27580 -https://www.oceanexpert.org/expert/46434 -https://www.oceanexpert.org/institution/16885 -https://www.oceanexpert.org/event/914 -https://www.oceanexpert.org/expert/43784 -https://www.oceanexpert.org/expert/26554 -https://www.oceanexpert.org/institution/19733 -https://www.oceanexpert.org/expert/29738 -https://www.oceanexpert.org/institution/10939 -https://www.oceanexpert.org/expert/41425 -https://www.oceanexpert.org/institution/10621 -https://www.oceanexpert.org/expert/28177 -https://www.oceanexpert.org/event/1361 -https://www.oceanexpert.org/expert/32698 -https://www.oceanexpert.org/expert/18487 -https://www.oceanexpert.org/institution/18561 -https://www.oceanexpert.org/institution/12053 -https://www.oceanexpert.org/expert/26436 -https://www.oceanexpert.org/institution/16859 -https://www.oceanexpert.org/expert/39268 -https://www.oceanexpert.org/expert/37071 -https://www.oceanexpert.org/institution/21366 -https://www.oceanexpert.org/expert/31941 -https://www.oceanexpert.org/expert/33081 -https://www.oceanexpert.org/institution/21442 -https://www.oceanexpert.org/institution/20019 -https://www.oceanexpert.org/expert/33399 -https://www.oceanexpert.org/institution/13002 -https://www.oceanexpert.org/institution/9170 -https://www.oceanexpert.org/expert/23730 -https://www.oceanexpert.org/expert/24030 -https://www.oceanexpert.org/expert/48358 -https://www.oceanexpert.org/event/2376 -https://www.oceanexpert.org/expert/20320 -https://www.oceanexpert.org/expert/21957 -https://www.oceanexpert.org/event/1944 -https://www.oceanexpert.org/expert/25046 -https://www.oceanexpert.org/institution/12537 -https://www.oceanexpert.org/event/1227 -https://www.oceanexpert.org/event/413 -https://www.oceanexpert.org/expert/45581 -https://www.oceanexpert.org/institution/13830 -https://www.oceanexpert.org/expert/23780 -https://www.oceanexpert.org/institution/12207 -https://www.oceanexpert.org/institution/20439 -https://www.oceanexpert.org/expert/22410 -https://www.oceanexpert.org/institution/20011 -https://www.oceanexpert.org/expert/17985 -https://www.oceanexpert.org/expert/30159 -https://www.oceanexpert.org/expert/1825 -https://www.oceanexpert.org/expert/10285 -https://www.oceanexpert.org/institution/12989 -https://www.oceanexpert.org/expert/43713 -https://www.oceanexpert.org/expert/40624 -https://www.oceanexpert.org/expert/19498 -https://www.oceanexpert.org/institution/9282 -https://www.oceanexpert.org/expert/19984 -https://www.oceanexpert.org/institution/19102 -https://www.oceanexpert.org/expert/36923 -https://www.oceanexpert.org/expert/30039 -https://www.oceanexpert.org/expert/47840 -https://www.oceanexpert.org/institution/21228 -https://www.oceanexpert.org/expert/12374 -https://www.oceanexpert.org/expert/24229 -https://www.oceanexpert.org/institution/13998 -https://www.oceanexpert.org/expert/23873 -https://www.oceanexpert.org/expert/31001 -https://www.oceanexpert.org/expert/45732 -https://www.oceanexpert.org/expert/36844 -https://www.oceanexpert.org/expert/44693 -https://www.oceanexpert.org/event/244 -https://www.oceanexpert.org/institution/16875 -https://www.oceanexpert.org/expert/25818 -https://www.oceanexpert.org/expert/23187 -https://www.oceanexpert.org/expert/21074 -https://www.oceanexpert.org/expert/44689 -https://www.oceanexpert.org/institution/13391 -https://www.oceanexpert.org/event/447 -https://www.oceanexpert.org/expert/32762 -https://www.oceanexpert.org/expert/35014 -https://www.oceanexpert.org/institution/19287 -https://www.oceanexpert.org/institution/14354 -https://www.oceanexpert.org/expert/22918 -https://www.oceanexpert.org/expert/43092 -https://www.oceanexpert.org/institution/11750 -https://www.oceanexpert.org/expert/26808 -https://www.oceanexpert.org/expert/48093 -https://www.oceanexpert.org/expert/25745 -https://www.oceanexpert.org/expert/20052 -https://www.oceanexpert.org/institution/21429 -https://www.oceanexpert.org/expert/29267 -https://www.oceanexpert.org/expert/4595 -https://www.oceanexpert.org/event/1922 -https://www.oceanexpert.org/institution/11729 -https://www.oceanexpert.org/expert/44469 -https://www.oceanexpert.org/institution/20577 -https://www.oceanexpert.org/expert/33001 -https://www.oceanexpert.org/expert/18573 -https://www.oceanexpert.org/expert/32403 -https://www.oceanexpert.org/expert/24329 -https://www.oceanexpert.org/expert/34820 -https://www.oceanexpert.org/expert/44114 -https://www.oceanexpert.org/expert/21899 -https://www.oceanexpert.org/expert/37289 -https://www.oceanexpert.org/expert/24284 -https://www.oceanexpert.org/expert/10895 -https://www.oceanexpert.org/event/2687 -https://www.oceanexpert.org/institution/20416 -https://www.oceanexpert.org/institution/22087 -https://www.oceanexpert.org/expert/48421 -https://www.oceanexpert.org/institution/11738 -https://www.oceanexpert.org/expert/22920 -https://www.oceanexpert.org/expert/26106 -https://www.oceanexpert.org/institution/18933 -https://www.oceanexpert.org/expert/20562 -https://www.oceanexpert.org/expert/21194 -https://www.oceanexpert.org/expert/27735 -https://www.oceanexpert.org/expert/37973 -https://www.oceanexpert.org/expert/541 -https://www.oceanexpert.org/expert/46664 -https://www.oceanexpert.org/institution/11782 -https://www.oceanexpert.org/expert/105 -https://www.oceanexpert.org/expert/44968 -https://www.oceanexpert.org/expert/22874 -https://www.oceanexpert.org/expert/36848 -https://www.oceanexpert.org/expert/33133 -https://www.oceanexpert.org/event/2126 -https://www.oceanexpert.org/institution/19612 -https://www.oceanexpert.org/institution/15209 -https://www.oceanexpert.org/expert/25776 -https://www.oceanexpert.org/event/2728 -https://www.oceanexpert.org/expert/28850 -https://www.oceanexpert.org/expert/38517 -https://www.oceanexpert.org/institution/19297 -https://www.oceanexpert.org/expert/29728 -https://www.oceanexpert.org/expert/21012 -https://www.oceanexpert.org/institution/17808 -https://www.oceanexpert.org/expert/27048 -https://www.oceanexpert.org/institution/21127 -https://www.oceanexpert.org/expert/21609 -https://www.oceanexpert.org/institution/6802 -https://www.oceanexpert.org/expert/48745 -https://www.oceanexpert.org/event/1104 -https://www.oceanexpert.org/event/2906 -https://www.oceanexpert.org/event/2020 -https://www.oceanexpert.org/expert/19472 -https://www.oceanexpert.org/institution/15656 -https://www.oceanexpert.org/expert/7106 -https://www.oceanexpert.org/expert/28984 -https://www.oceanexpert.org/expert/23172 -https://www.oceanexpert.org/event/2968 -https://www.oceanexpert.org/institution/15121 -https://www.oceanexpert.org/expert/2076 -https://www.oceanexpert.org/expert/43067 -https://www.oceanexpert.org/event/2920 -https://www.oceanexpert.org/institution/9282 -https://www.oceanexpert.org/event/2283 -https://www.oceanexpert.org/event/2093 -https://www.oceanexpert.org/expert/36492 -https://www.oceanexpert.org/institution/19231 -https://www.oceanexpert.org/institution/21320 -https://www.oceanexpert.org/expert/24666 -https://www.oceanexpert.org/event/2961 -https://www.oceanexpert.org/expert/32223 -https://www.oceanexpert.org/expert/18890 -https://www.oceanexpert.org/institution/5199 -https://www.oceanexpert.org/institution/11459 -https://www.oceanexpert.org/expert/13119 -https://www.oceanexpert.org/expert/21097 -https://www.oceanexpert.org/institution/18361 -https://www.oceanexpert.org/expert/20926 -https://www.oceanexpert.org/expert/34664 -https://www.oceanexpert.org/expert/23970 -https://www.oceanexpert.org/expert/44568 -https://www.oceanexpert.org/expert/19575 -https://www.oceanexpert.org/expert/48083 -https://www.oceanexpert.org/expert/30059 -https://www.oceanexpert.org/expert/44135 -https://www.oceanexpert.org/institution/13911 -https://www.oceanexpert.org/event/3183 -https://www.oceanexpert.org/institution/18770 -https://www.oceanexpert.org/expert/43023 -https://www.oceanexpert.org/expert/27119 -https://www.oceanexpert.org/expert/46493 -https://www.oceanexpert.org/expert/23426 -https://www.oceanexpert.org/institution/21433 -https://www.oceanexpert.org/expert/26400 -https://www.oceanexpert.org/expert/15592 -https://www.oceanexpert.org/institution/18092 -https://www.oceanexpert.org/event/41 -https://www.oceanexpert.org/expert/32893 -https://www.oceanexpert.org/institution/17720 -https://www.oceanexpert.org/expert/24836 -https://www.oceanexpert.org/expert/21959 -https://www.oceanexpert.org/expert/46216 -https://www.oceanexpert.org/expert/34377 -https://www.oceanexpert.org/institution/10326 -https://www.oceanexpert.org/institution/19398 -https://www.oceanexpert.org/expert/17175 -https://www.oceanexpert.org/institution/7375 -https://www.oceanexpert.org/institution/16248 -https://www.oceanexpert.org/expert/31102 -https://www.oceanexpert.org/institution/21679 -https://www.oceanexpert.org/expert/17848 -https://www.oceanexpert.org/institution/21640 -https://www.oceanexpert.org/institution/19996 -https://www.oceanexpert.org/expert/21348 -https://www.oceanexpert.org/expert/32879 -https://www.oceanexpert.org/institution/19112 -https://www.oceanexpert.org/expert/35398 -https://www.oceanexpert.org/institution/16709 -https://www.oceanexpert.org/institution/6970 -https://www.oceanexpert.org/institution/14722 -https://www.oceanexpert.org/event/55 -https://www.oceanexpert.org/event/2143 -https://www.oceanexpert.org/expert/17003 -https://www.oceanexpert.org/expert/7137 -https://www.oceanexpert.org/expert/24585 -https://www.oceanexpert.org/expert/48347 -https://www.oceanexpert.org/expert/30868 -https://www.oceanexpert.org/expert/19675 -https://www.oceanexpert.org/institution/20019 -https://www.oceanexpert.org/expert/22241 -https://www.oceanexpert.org/expert/20017 -https://www.oceanexpert.org/event/2330 -https://www.oceanexpert.org/expert/22796 -https://www.oceanexpert.org/institution/17958 -https://www.oceanexpert.org/institution/18291 -https://www.oceanexpert.org/expert/20883 -https://www.oceanexpert.org/event/1713 -https://www.oceanexpert.org/expert/25384 -https://www.oceanexpert.org/institution/21485 -https://www.oceanexpert.org/institution/20935 -https://www.oceanexpert.org/institution/21372 -https://www.oceanexpert.org/institution/22108 -https://www.oceanexpert.org/expert/46432 -https://www.oceanexpert.org/institution/18290 -https://www.oceanexpert.org/expert/3643 -https://www.oceanexpert.org/expert/2047 -https://www.oceanexpert.org/institution/18652 -https://www.oceanexpert.org/event/1127 -https://www.oceanexpert.org/expert/26648 -https://www.oceanexpert.org/institution/20411 -https://www.oceanexpert.org/event/1001 -https://www.oceanexpert.org/expert/24542 -https://www.oceanexpert.org/expert/36680 -https://www.oceanexpert.org/event/3062 -https://www.oceanexpert.org/expert/27308 -https://www.oceanexpert.org/expert/30111 -https://www.oceanexpert.org/institution/20640 -https://www.oceanexpert.org/expert/14611 -https://www.oceanexpert.org/institution/18597 -https://www.oceanexpert.org/institution/17222 -https://www.oceanexpert.org/expert/25850 -https://www.oceanexpert.org/expert/7267 -https://www.oceanexpert.org/expert/36254 -https://www.oceanexpert.org/institution/21483 -https://www.oceanexpert.org/expert/20098 -https://www.oceanexpert.org/expert/18051 -https://www.oceanexpert.org/expert/47101 -https://www.oceanexpert.org/expert/13686 -https://www.oceanexpert.org/expert/37549 -https://www.oceanexpert.org/institution/18874 -https://www.oceanexpert.org/expert/20140 -https://www.oceanexpert.org/expert/34127 -https://www.oceanexpert.org/institution/6801 -https://www.oceanexpert.org/event/2819 -https://www.oceanexpert.org/expert/47118 -https://www.oceanexpert.org/institution/18206 -https://www.oceanexpert.org/expert/34233 -https://www.oceanexpert.org/institution/15543 -https://www.oceanexpert.org/expert/26112 -https://www.oceanexpert.org/institution/21581 -https://www.oceanexpert.org/expert/17037 -https://www.oceanexpert.org/expert/12956 -https://www.oceanexpert.org/expert/12215 -https://www.oceanexpert.org/expert/35904 -https://www.oceanexpert.org/institution/22120 -https://www.oceanexpert.org/expert/30585 -https://www.oceanexpert.org/institution/17864 -https://www.oceanexpert.org/expert/17283 -https://www.oceanexpert.org/expert/31865 -https://www.oceanexpert.org/expert/25154 -https://www.oceanexpert.org/expert/2158 -https://www.oceanexpert.org/expert/4966 -https://www.oceanexpert.org/institution/18971 -https://www.oceanexpert.org/expert/48084 -https://www.oceanexpert.org/expert/24517 -https://www.oceanexpert.org/expert/17209 -https://www.oceanexpert.org/institution/16452 -https://www.oceanexpert.org/expert/19019 -https://www.oceanexpert.org/expert/47466 -https://www.oceanexpert.org/institution/19546 -https://www.oceanexpert.org/expert/37099 -https://www.oceanexpert.org/expert/8413 -https://www.oceanexpert.org/expert/24994 -https://www.oceanexpert.org/expert/32659 -https://www.oceanexpert.org/expert/12244 -https://www.oceanexpert.org/expert/17377 -https://www.oceanexpert.org/expert/46108 -https://www.oceanexpert.org/event/2092 -https://www.oceanexpert.org/event/3238 -https://www.oceanexpert.org/expert/20207 -https://www.oceanexpert.org/expert/44497 -https://www.oceanexpert.org/expert/911 -https://www.oceanexpert.org/expert/47506 -https://www.oceanexpert.org/expert/24059 -https://www.oceanexpert.org/event/1117 -https://www.oceanexpert.org/expert/24814 -https://www.oceanexpert.org/institution/21137 -https://www.oceanexpert.org/institution/18936 -https://www.oceanexpert.org/institution/19670 -https://www.oceanexpert.org/institution/14421 -https://www.oceanexpert.org/expert/47813 -https://www.oceanexpert.org/institution/20834 -https://www.oceanexpert.org/expert/29380 -https://www.oceanexpert.org/expert/15495 -https://www.oceanexpert.org/expert/45713 -https://www.oceanexpert.org/expert/1058 -https://www.oceanexpert.org/expert/36115 -https://www.oceanexpert.org/expert/22214 -https://www.oceanexpert.org/expert/16900 -https://www.oceanexpert.org/institution/15818 -https://www.oceanexpert.org/expert/48552 -https://www.oceanexpert.org/expert/12147 -https://www.oceanexpert.org/expert/34345 -https://www.oceanexpert.org/event/2917 -https://www.oceanexpert.org/expert/16281 -https://www.oceanexpert.org/institution/20957 -https://www.oceanexpert.org/expert/1433 -https://www.oceanexpert.org/expert/45055 -https://www.oceanexpert.org/expert/22576 -https://www.oceanexpert.org/event/522 -https://www.oceanexpert.org/expert/18521 -https://www.oceanexpert.org/institution/10833 -https://www.oceanexpert.org/institution/19996 -https://www.oceanexpert.org/event/2295 -https://www.oceanexpert.org/expert/32650 -https://www.oceanexpert.org/expert/29665 -https://www.oceanexpert.org/expert/46393 -https://www.oceanexpert.org/expert/35077 -https://www.oceanexpert.org/expert/45014 -https://www.oceanexpert.org/expert/8674 -https://www.oceanexpert.org/expert/3866 -https://www.oceanexpert.org/institution/19257 -https://www.oceanexpert.org/institution/20297 -https://www.oceanexpert.org/institution/10607 -https://www.oceanexpert.org/institution/16721 -https://www.oceanexpert.org/event/515 -https://www.oceanexpert.org/expert/46823 -https://www.oceanexpert.org/expert/21779 -https://www.oceanexpert.org/event/1189 -https://www.oceanexpert.org/expert/48179 -https://www.oceanexpert.org/event/1241 -https://www.oceanexpert.org/event/2568 -https://www.oceanexpert.org/institution/11613 -https://www.oceanexpert.org/event/1733 -https://www.oceanexpert.org/institution/14358 -https://www.oceanexpert.org/event/2336 -https://www.oceanexpert.org/expert/34622 -https://www.oceanexpert.org/expert/24819 -https://www.oceanexpert.org/expert/44544 -https://www.oceanexpert.org/institution/12875 -https://www.oceanexpert.org/expert/6490 -https://www.oceanexpert.org/expert/33541 -https://www.oceanexpert.org/event/26 -https://www.oceanexpert.org/expert/43649 -https://www.oceanexpert.org/expert/28233 -https://www.oceanexpert.org/institution/21156 -https://www.oceanexpert.org/expert/40570 -https://www.oceanexpert.org/expert/28505 -https://www.oceanexpert.org/expert/48785 -https://www.oceanexpert.org/institution/18857 -https://www.oceanexpert.org/expert/26605 -https://www.oceanexpert.org/expert/20237 -https://www.oceanexpert.org/expert/26474 -https://www.oceanexpert.org/expert/35510 -https://www.oceanexpert.org/event/2496 -https://www.oceanexpert.org/expert/28169 -https://www.oceanexpert.org/event/755 -https://www.oceanexpert.org/expert/13745 -https://www.oceanexpert.org/expert/36010 -https://www.oceanexpert.org/expert/20082 -https://www.oceanexpert.org/expert/26654 -https://www.oceanexpert.org/expert/30863 -https://www.oceanexpert.org/expert/46009 -https://www.oceanexpert.org/expert/25463 -https://www.oceanexpert.org/institution/21870 -https://www.oceanexpert.org/institution/22089 -https://www.oceanexpert.org/expert/36567 -https://www.oceanexpert.org/expert/26585 -https://www.oceanexpert.org/expert/41412 -https://www.oceanexpert.org/institution/19113 -https://www.oceanexpert.org/institution/4922 -https://www.oceanexpert.org/expert/47017 -https://www.oceanexpert.org/expert/47222 -https://www.oceanexpert.org/expert/33555 -https://www.oceanexpert.org/institution/18108 -https://www.oceanexpert.org/expert/44616 -https://www.oceanexpert.org/expert/23743 -https://www.oceanexpert.org/expert/29233 -https://www.oceanexpert.org/expert/17582 -https://www.oceanexpert.org/institution/19372 -https://www.oceanexpert.org/expert/46099 -https://www.oceanexpert.org/institution/12135 -https://www.oceanexpert.org/institution/19922 -https://www.oceanexpert.org/expert/33731 -https://www.oceanexpert.org/institution/20827 -https://www.oceanexpert.org/expert/45092 -https://www.oceanexpert.org/institution/16211 -https://www.oceanexpert.org/expert/11058 -https://www.oceanexpert.org/institution/15047 -https://www.oceanexpert.org/institution/16971 -https://www.oceanexpert.org/expert/26038 -https://www.oceanexpert.org/expert/37173 -https://www.oceanexpert.org/institution/8928 -https://www.oceanexpert.org/institution/20681 -https://www.oceanexpert.org/expert/37996 -https://www.oceanexpert.org/institution/14214 -https://www.oceanexpert.org/institution/19694 -https://www.oceanexpert.org/expert/44448 -https://www.oceanexpert.org/expert/37410 -https://www.oceanexpert.org/expert/30909 -https://www.oceanexpert.org/expert/43797 -https://www.oceanexpert.org/expert/19376 -https://www.oceanexpert.org/expert/16594 -https://www.oceanexpert.org/expert/16973 -https://www.oceanexpert.org/expert/26519 -https://www.oceanexpert.org/expert/21784 -https://www.oceanexpert.org/expert/20270 -https://www.oceanexpert.org/institution/17737 -https://www.oceanexpert.org/expert/11542 -https://www.oceanexpert.org/expert/43690 -https://www.oceanexpert.org/expert/24179 -https://www.oceanexpert.org/institution/21892 -https://www.oceanexpert.org/expert/7572 -https://www.oceanexpert.org/expert/25961 -https://www.oceanexpert.org/expert/29534 -https://www.oceanexpert.org/expert/43169 -https://www.oceanexpert.org/expert/18781 -https://www.oceanexpert.org/expert/25796 -https://www.oceanexpert.org/expert/28645 -https://www.oceanexpert.org/event/871 -https://www.oceanexpert.org/institution/21195 -https://www.oceanexpert.org/expert/21164 -https://www.oceanexpert.org/institution/6046 -https://www.oceanexpert.org/event/2386 -https://www.oceanexpert.org/expert/27769 -https://www.oceanexpert.org/event/1033 -https://www.oceanexpert.org/expert/34528 -https://www.oceanexpert.org/expert/44777 -https://www.oceanexpert.org/expert/39998 -https://www.oceanexpert.org/event/1215 -https://www.oceanexpert.org/expert/13596 -https://www.oceanexpert.org/expert/46560 -https://www.oceanexpert.org/expert/43516 -https://www.oceanexpert.org/expert/32518 -https://www.oceanexpert.org/institution/20018 -https://www.oceanexpert.org/expert/29537 -https://www.oceanexpert.org/institution/19228 -https://www.oceanexpert.org/expert/36595 -https://www.oceanexpert.org/institution/17055 -https://www.oceanexpert.org/expert/18123 -https://www.oceanexpert.org/expert/43175 -https://www.oceanexpert.org/expert/46714 -https://www.oceanexpert.org/institution/18875 -https://www.oceanexpert.org/expert/14823 -https://www.oceanexpert.org/expert/38285 -https://www.oceanexpert.org/institution/17514 -https://www.oceanexpert.org/expert/41970 -https://www.oceanexpert.org/expert/28399 -https://www.oceanexpert.org/expert/24661 -https://www.oceanexpert.org/institution/12686 -https://www.oceanexpert.org/event/3029 -https://www.oceanexpert.org/expert/37208 -https://www.oceanexpert.org/expert/44000 -https://www.oceanexpert.org/expert/17540 -https://www.oceanexpert.org/expert/32100 -https://www.oceanexpert.org/expert/48805 -https://www.oceanexpert.org/expert/18284 -https://www.oceanexpert.org/event/3296 -https://www.oceanexpert.org/event/1251 -https://www.oceanexpert.org/expert/48118 -https://www.oceanexpert.org/expert/27536 -https://www.oceanexpert.org/expert/38310 -https://www.oceanexpert.org/expert/47957 -https://www.oceanexpert.org/expert/6996 -https://www.oceanexpert.org/expert/20873 -https://www.oceanexpert.org/expert/32591 -https://www.oceanexpert.org/institution/19453 -https://www.oceanexpert.org/institution/11706 -https://www.oceanexpert.org/institution/12597 -https://www.oceanexpert.org/institution/15735 -https://www.oceanexpert.org/institution/21440 -https://www.oceanexpert.org/event/3115 -https://www.oceanexpert.org/expert/18842 -https://www.oceanexpert.org/expert/9385 -https://www.oceanexpert.org/expert/21520 -https://www.oceanexpert.org/expert/27250 -https://www.oceanexpert.org/expert/30203 -https://www.oceanexpert.org/expert/37453 -https://www.oceanexpert.org/expert/27555 -https://www.oceanexpert.org/expert/40564 -https://www.oceanexpert.org/expert/39619 -https://www.oceanexpert.org/expert/26417 -https://www.oceanexpert.org/expert/21020 -https://www.oceanexpert.org/expert/20582 -https://www.oceanexpert.org/expert/47327 -https://www.oceanexpert.org/expert/26007 -https://www.oceanexpert.org/expert/40613 -https://www.oceanexpert.org/expert/13124 -https://www.oceanexpert.org/expert/40885 -https://www.oceanexpert.org/institution/18688 -https://www.oceanexpert.org/expert/28371 -https://www.oceanexpert.org/event/2165 -https://www.oceanexpert.org/institution/18362 -https://www.oceanexpert.org/institution/17567 -https://www.oceanexpert.org/expert/5316 -https://www.oceanexpert.org/expert/8807 -https://www.oceanexpert.org/expert/11482 -https://www.oceanexpert.org/expert/16280 -https://www.oceanexpert.org/expert/19250 -https://www.oceanexpert.org/institution/19551 -https://www.oceanexpert.org/expert/15092 -https://www.oceanexpert.org/expert/32820 -https://www.oceanexpert.org/expert/24528 -https://www.oceanexpert.org/event/1073 -https://www.oceanexpert.org/expert/47786 -https://www.oceanexpert.org/expert/37503 -https://www.oceanexpert.org/expert/27166 -https://www.oceanexpert.org/event/2109 -https://www.oceanexpert.org/event/897 -https://www.oceanexpert.org/institution/20676 -https://www.oceanexpert.org/institution/12028 -https://www.oceanexpert.org/expert/17581 -https://www.oceanexpert.org/institution/11209 -https://www.oceanexpert.org/institution/19073 -https://www.oceanexpert.org/expert/45062 -https://www.oceanexpert.org/expert/46060 -https://www.oceanexpert.org/expert/21534 -https://www.oceanexpert.org/expert/42512 -https://www.oceanexpert.org/institution/18259 -https://www.oceanexpert.org/expert/713 -https://www.oceanexpert.org/expert/43466 -https://www.oceanexpert.org/expert/38678 -https://www.oceanexpert.org/expert/46406 -https://www.oceanexpert.org/institution/10805 -https://www.oceanexpert.org/expert/46990 -https://www.oceanexpert.org/expert/47108 -https://www.oceanexpert.org/institution/18080 -https://www.oceanexpert.org/expert/24161 -https://www.oceanexpert.org/expert/36488 -https://www.oceanexpert.org/expert/27816 -https://www.oceanexpert.org/institution/17729 -https://www.oceanexpert.org/event/2295 -https://www.oceanexpert.org/expert/9648 -https://www.oceanexpert.org/institution/20666 -https://www.oceanexpert.org/event/551 -https://www.oceanexpert.org/institution/20732 -https://www.oceanexpert.org/expert/26094 -https://www.oceanexpert.org/expert/48295 -https://www.oceanexpert.org/expert/22140 -https://www.oceanexpert.org/event/131 -https://www.oceanexpert.org/expert/117 -https://www.oceanexpert.org/institution/19431 -https://www.oceanexpert.org/expert/27592 -https://www.oceanexpert.org/expert/36607 -https://www.oceanexpert.org/institution/16414 -https://www.oceanexpert.org/expert/13560 -https://www.oceanexpert.org/institution/20336 -https://www.oceanexpert.org/expert/38902 -https://www.oceanexpert.org/expert/27095 -https://www.oceanexpert.org/expert/23983 -https://www.oceanexpert.org/expert/19756 -https://www.oceanexpert.org/expert/42420 -https://www.oceanexpert.org/expert/38546 -https://www.oceanexpert.org/expert/32394 -https://www.oceanexpert.org/expert/23819 -https://www.oceanexpert.org/expert/18792 -https://www.oceanexpert.org/expert/26611 -https://www.oceanexpert.org/expert/16268 -https://www.oceanexpert.org/institution/16968 -https://www.oceanexpert.org/expert/26763 -https://www.oceanexpert.org/expert/42575 -https://www.oceanexpert.org/institution/19232 -https://www.oceanexpert.org/expert/22237 -https://www.oceanexpert.org/institution/20953 -https://www.oceanexpert.org/expert/45890 -https://www.oceanexpert.org/expert/17423 -https://www.oceanexpert.org/expert/45610 -https://www.oceanexpert.org/expert/85 -https://www.oceanexpert.org/expert/22837 -https://www.oceanexpert.org/expert/34153 -https://www.oceanexpert.org/event/15 -https://www.oceanexpert.org/expert/24846 -https://www.oceanexpert.org/institution/11335 -https://www.oceanexpert.org/expert/47566 -https://www.oceanexpert.org/institution/12172 -https://www.oceanexpert.org/expert/39166 -https://www.oceanexpert.org/institution/20046 -https://www.oceanexpert.org/expert/15614 -https://www.oceanexpert.org/event/2570 -https://www.oceanexpert.org/expert/22911 -https://www.oceanexpert.org/expert/28479 -https://www.oceanexpert.org/expert/20546 -https://www.oceanexpert.org/expert/39178 -https://www.oceanexpert.org/institution/19091 -https://www.oceanexpert.org/expert/23550 -https://www.oceanexpert.org/institution/7139 -https://www.oceanexpert.org/expert/15840 -https://www.oceanexpert.org/expert/19012 -https://www.oceanexpert.org/expert/18716 -https://www.oceanexpert.org/expert/29359 -https://www.oceanexpert.org/institution/12733 -https://www.oceanexpert.org/event/880 -https://www.oceanexpert.org/institution/20514 -https://www.oceanexpert.org/expert/45453 -https://www.oceanexpert.org/expert/33260 -https://www.oceanexpert.org/event/1880 -https://www.oceanexpert.org/expert/43398 -https://www.oceanexpert.org/expert/30246 -https://www.oceanexpert.org/expert/24418 -https://www.oceanexpert.org/institution/15172 -https://www.oceanexpert.org/expert/25496 -https://www.oceanexpert.org/expert/39979 -https://www.oceanexpert.org/expert/44077 -https://www.oceanexpert.org/expert/27570 -https://www.oceanexpert.org/institution/19957 -https://www.oceanexpert.org/event/1035 -https://www.oceanexpert.org/expert/22380 -https://www.oceanexpert.org/event/3266 -https://www.oceanexpert.org/institution/19879 -https://www.oceanexpert.org/expert/46327 -https://www.oceanexpert.org/event/2673 -https://www.oceanexpert.org/expert/33802 -https://www.oceanexpert.org/expert/30359 -https://www.oceanexpert.org/expert/33074 -https://www.oceanexpert.org/institution/18958 -https://www.oceanexpert.org/expert/45163 -https://www.oceanexpert.org/event/662 -https://www.oceanexpert.org/expert/48998 -https://www.oceanexpert.org/institution/18738 -https://www.oceanexpert.org/institution/19001 -https://www.oceanexpert.org/expert/44679 -https://www.oceanexpert.org/expert/17922 -https://www.oceanexpert.org/event/1470 -https://www.oceanexpert.org/expert/17124 -https://www.oceanexpert.org/expert/39186 -https://www.oceanexpert.org/institution/5896 -https://www.oceanexpert.org/expert/28119 -https://www.oceanexpert.org/institution/19155 -https://www.oceanexpert.org/expert/24252 -https://www.oceanexpert.org/expert/44546 -https://www.oceanexpert.org/expert/21714 -https://www.oceanexpert.org/expert/23848 -https://www.oceanexpert.org/event/1602 -https://www.oceanexpert.org/event/2932 -https://www.oceanexpert.org/expert/25175 -https://www.oceanexpert.org/institution/18028 -https://www.oceanexpert.org/institution/19521 -https://www.oceanexpert.org/institution/14276 -https://www.oceanexpert.org/expert/31593 -https://www.oceanexpert.org/event/163 -https://www.oceanexpert.org/institution/10122 -https://www.oceanexpert.org/institution/20976 -https://www.oceanexpert.org/event/2007 -https://www.oceanexpert.org/event/204 -https://www.oceanexpert.org/expert/47972 -https://www.oceanexpert.org/expert/24143 -https://www.oceanexpert.org/event/2348 -https://www.oceanexpert.org/institution/17970 -https://www.oceanexpert.org/expert/14822 -https://www.oceanexpert.org/institution/19726 -https://www.oceanexpert.org/expert/22185 -https://www.oceanexpert.org/expert/43382 -https://www.oceanexpert.org/institution/17680 -https://www.oceanexpert.org/event/1217 -https://www.oceanexpert.org/institution/10693 -https://www.oceanexpert.org/institution/21266 -https://www.oceanexpert.org/expert/34921 -https://www.oceanexpert.org/event/2951 -https://www.oceanexpert.org/expert/38983 -https://www.oceanexpert.org/expert/3476 -https://www.oceanexpert.org/expert/20962 -https://www.oceanexpert.org/expert/8555 -https://www.oceanexpert.org/expert/19207 -https://www.oceanexpert.org/expert/11198 -https://www.oceanexpert.org/expert/34770 -https://www.oceanexpert.org/expert/32649 -https://www.oceanexpert.org/expert/48220 -https://www.oceanexpert.org/expert/18932 -https://www.oceanexpert.org/event/3118 -https://www.oceanexpert.org/expert/47042 -https://www.oceanexpert.org/expert/35573 -https://www.oceanexpert.org/expert/20945 -https://www.oceanexpert.org/expert/25841 -https://www.oceanexpert.org/institution/20036 -https://www.oceanexpert.org/institution/17492 -https://www.oceanexpert.org/expert/31392 -https://www.oceanexpert.org/expert/6513 -https://www.oceanexpert.org/institution/14610 -https://www.oceanexpert.org/expert/47851 -https://www.oceanexpert.org/expert/33608 -https://www.oceanexpert.org/institution/19009 -https://www.oceanexpert.org/expert/38885 -https://www.oceanexpert.org/expert/29318 -https://www.oceanexpert.org/expert/13689 -https://www.oceanexpert.org/expert/42735 -https://www.oceanexpert.org/event/2283 -https://www.oceanexpert.org/expert/34856 -https://www.oceanexpert.org/expert/18003 -https://www.oceanexpert.org/institution/6094 -https://www.oceanexpert.org/institution/21549 -https://www.oceanexpert.org/expert/14243 -https://www.oceanexpert.org/expert/31291 -https://www.oceanexpert.org/expert/17546 -https://www.oceanexpert.org/expert/110 -https://www.oceanexpert.org/expert/24745 -https://www.oceanexpert.org/event/1009 -https://www.oceanexpert.org/expert/25663 -https://www.oceanexpert.org/event/58 -https://www.oceanexpert.org/expert/33381 -https://www.oceanexpert.org/expert/34000 -https://www.oceanexpert.org/expert/27003 -https://www.oceanexpert.org/expert/47284 -https://www.oceanexpert.org/expert/47129 -https://www.oceanexpert.org/expert/44636 -https://www.oceanexpert.org/expert/22532 -https://www.oceanexpert.org/expert/31272 -https://www.oceanexpert.org/expert/24256 -https://www.oceanexpert.org/expert/44774 -https://www.oceanexpert.org/expert/37883 -https://www.oceanexpert.org/expert/34902 -https://www.oceanexpert.org/expert/37351 -https://www.oceanexpert.org/expert/21505 -https://www.oceanexpert.org/institution/5627 -https://www.oceanexpert.org/expert/36111 -https://www.oceanexpert.org/institution/19670 -https://www.oceanexpert.org/expert/43790 -https://www.oceanexpert.org/expert/31026 -https://www.oceanexpert.org/expert/37546 -https://www.oceanexpert.org/institution/6271 -https://www.oceanexpert.org/expert/22443 -https://www.oceanexpert.org/institution/16806 -https://www.oceanexpert.org/institution/19190 -https://www.oceanexpert.org/event/3047 -https://www.oceanexpert.org/expert/22897 -https://www.oceanexpert.org/expert/13031 -https://www.oceanexpert.org/expert/3373 -https://www.oceanexpert.org/event/2074 -https://www.oceanexpert.org/event/3246 -https://www.oceanexpert.org/institution/6880 -https://www.oceanexpert.org/event/790 -https://www.oceanexpert.org/expert/3772 -https://www.oceanexpert.org/event/3035 -https://www.oceanexpert.org/expert/29670 -https://www.oceanexpert.org/expert/36614 -https://www.oceanexpert.org/expert/46619 -https://www.oceanexpert.org/expert/35183 -https://www.oceanexpert.org/expert/22772 -https://www.oceanexpert.org/expert/37805 -https://www.oceanexpert.org/event/882 -https://www.oceanexpert.org/expert/1240 -https://www.oceanexpert.org/expert/12947 -https://www.oceanexpert.org/expert/45249 -https://www.oceanexpert.org/expert/32110 -https://www.oceanexpert.org/institution/21756 -https://www.oceanexpert.org/event/906 -https://www.oceanexpert.org/expert/6634 -https://www.oceanexpert.org/event/3160 -https://www.oceanexpert.org/expert/6935 -https://www.oceanexpert.org/expert/30473 -https://www.oceanexpert.org/event/2140 -https://www.oceanexpert.org/institution/15280 -https://www.oceanexpert.org/expert/31180 -https://www.oceanexpert.org/expert/23895 -https://www.oceanexpert.org/expert/14071 -https://www.oceanexpert.org/expert/22779 -https://www.oceanexpert.org/expert/37343 -https://www.oceanexpert.org/expert/33525 -https://www.oceanexpert.org/expert/26672 -https://www.oceanexpert.org/expert/37515 -https://www.oceanexpert.org/expert/18349 -https://www.oceanexpert.org/expert/29501 -https://www.oceanexpert.org/institution/14757 -https://www.oceanexpert.org/expert/22898 -https://www.oceanexpert.org/expert/21698 -https://www.oceanexpert.org/expert/29945 -https://www.oceanexpert.org/expert/26883 -https://www.oceanexpert.org/expert/36851 -https://www.oceanexpert.org/expert/37748 -https://www.oceanexpert.org/expert/44819 -https://www.oceanexpert.org/institution/19928 -https://www.oceanexpert.org/expert/17226 -https://www.oceanexpert.org/expert/18455 -https://www.oceanexpert.org/institution/15890 -https://www.oceanexpert.org/expert/37825 -https://www.oceanexpert.org/expert/21592 -https://www.oceanexpert.org/expert/26092 -https://www.oceanexpert.org/institution/18454 -https://www.oceanexpert.org/expert/20904 -https://www.oceanexpert.org/expert/32388 -https://www.oceanexpert.org/institution/10229 -https://www.oceanexpert.org/expert/19436 -https://www.oceanexpert.org/expert/22904 -https://www.oceanexpert.org/expert/11635 -https://www.oceanexpert.org/event/1133 -https://www.oceanexpert.org/expert/1741 -https://www.oceanexpert.org/expert/37423 -https://www.oceanexpert.org/expert/21128 -https://www.oceanexpert.org/expert/1454 -https://www.oceanexpert.org/expert/36996 -https://www.oceanexpert.org/expert/24273 -https://www.oceanexpert.org/expert/43447 -https://www.oceanexpert.org/expert/29627 -https://www.oceanexpert.org/expert/19884 -https://www.oceanexpert.org/expert/35118 -https://www.oceanexpert.org/expert/47533 -https://www.oceanexpert.org/institution/16844 -https://www.oceanexpert.org/expert/43225 -https://www.oceanexpert.org/expert/22742 -https://www.oceanexpert.org/expert/42838 -https://www.oceanexpert.org/institution/21535 -https://www.oceanexpert.org/institution/15667 -https://www.oceanexpert.org/event/2183 -https://www.oceanexpert.org/expert/47799 -https://www.oceanexpert.org/expert/25572 -https://www.oceanexpert.org/event/1483 -https://www.oceanexpert.org/institution/20985 -https://www.oceanexpert.org/event/3024 -https://www.oceanexpert.org/expert/1512 -https://www.oceanexpert.org/expert/937 -https://www.oceanexpert.org/institution/15043 -https://www.oceanexpert.org/institution/18714 -https://www.oceanexpert.org/expert/44890 -https://www.oceanexpert.org/expert/26283 -https://www.oceanexpert.org/event/2915 -https://www.oceanexpert.org/expert/20859 -https://www.oceanexpert.org/expert/25423 -https://www.oceanexpert.org/institution/18909 -https://www.oceanexpert.org/institution/17842 -https://www.oceanexpert.org/institution/14139 -https://www.oceanexpert.org/expert/45112 -https://www.oceanexpert.org/expert/42411 -https://www.oceanexpert.org/expert/44970 -https://www.oceanexpert.org/institution/12756 -https://www.oceanexpert.org/expert/48745 -https://www.oceanexpert.org/institution/21482 -https://www.oceanexpert.org/expert/18132 -https://www.oceanexpert.org/institution/20067 -https://www.oceanexpert.org/institution/13051 -https://www.oceanexpert.org/institution/14338 -https://www.oceanexpert.org/institution/21227 -https://www.oceanexpert.org/expert/10727 -https://www.oceanexpert.org/expert/27342 -https://www.oceanexpert.org/institution/19509 -https://www.oceanexpert.org/expert/15092 -https://www.oceanexpert.org/institution/20751 -https://www.oceanexpert.org/institution/21855 -https://www.oceanexpert.org/expert/48635 -https://www.oceanexpert.org/expert/25091 -https://www.oceanexpert.org/expert/19508 -https://www.oceanexpert.org/expert/27674 -https://www.oceanexpert.org/event/788 -https://www.oceanexpert.org/expert/45937 -https://www.oceanexpert.org/expert/18249 -https://www.oceanexpert.org/expert/48661 -https://www.oceanexpert.org/expert/43899 -https://www.oceanexpert.org/expert/16971 -https://www.oceanexpert.org/expert/15259 -https://www.oceanexpert.org/expert/36915 -https://www.oceanexpert.org/expert/8153 -https://www.oceanexpert.org/event/2766 -https://www.oceanexpert.org/expert/25168 -https://www.oceanexpert.org/expert/47421 -https://www.oceanexpert.org/expert/32143 -https://www.oceanexpert.org/expert/22713 -https://www.oceanexpert.org/expert/15557 -https://www.oceanexpert.org/expert/24219 -https://www.oceanexpert.org/expert/8352 -https://www.oceanexpert.org/expert/24739 -https://www.oceanexpert.org/expert/47708 -https://www.oceanexpert.org/institution/18214 -https://www.oceanexpert.org/expert/36632 -https://www.oceanexpert.org/expert/18161 -https://www.oceanexpert.org/expert/19744 -https://www.oceanexpert.org/expert/42609 -https://www.oceanexpert.org/expert/23922 -https://www.oceanexpert.org/expert/30546 -https://www.oceanexpert.org/expert/29669 -https://www.oceanexpert.org/institution/11306 -https://www.oceanexpert.org/institution/17710 -https://www.oceanexpert.org/expert/46858 -https://www.oceanexpert.org/expert/46095 -https://www.oceanexpert.org/institution/18486 -https://www.oceanexpert.org/institution/19653 -https://www.oceanexpert.org/expert/33222 -https://www.oceanexpert.org/event/946 -https://www.oceanexpert.org/expert/32550 -https://www.oceanexpert.org/expert/35200 -https://www.oceanexpert.org/expert/27492 -https://www.oceanexpert.org/expert/42759 -https://www.oceanexpert.org/expert/36659 -https://www.oceanexpert.org/expert/41041 -https://www.oceanexpert.org/expert/12847 -https://www.oceanexpert.org/institution/13838 -https://www.oceanexpert.org/institution/14023 -https://www.oceanexpert.org/expert/22610 -https://www.oceanexpert.org/institution/18221 -https://www.oceanexpert.org/expert/43825 -https://www.oceanexpert.org/expert/21236 -https://www.oceanexpert.org/expert/18283 -https://www.oceanexpert.org/expert/35903 -https://www.oceanexpert.org/institution/13125 -https://www.oceanexpert.org/institution/21300 -https://www.oceanexpert.org/expert/30072 -https://www.oceanexpert.org/institution/12447 -https://www.oceanexpert.org/expert/26671 -https://www.oceanexpert.org/institution/18217 -https://www.oceanexpert.org/expert/4198 -https://www.oceanexpert.org/expert/24141 -https://www.oceanexpert.org/expert/1596 -https://www.oceanexpert.org/expert/46775 -https://www.oceanexpert.org/event/992 -https://www.oceanexpert.org/institution/19303 -https://www.oceanexpert.org/expert/17975 -https://www.oceanexpert.org/expert/32102 -https://www.oceanexpert.org/institution/19417 -https://www.oceanexpert.org/institution/19906 -https://www.oceanexpert.org/expert/17758 -https://www.oceanexpert.org/expert/42940 -https://www.oceanexpert.org/institution/15861 -https://www.oceanexpert.org/expert/18873 -https://www.oceanexpert.org/expert/46304 -https://www.oceanexpert.org/expert/46974 -https://www.oceanexpert.org/expert/45877 -https://www.oceanexpert.org/institution/18855 -https://www.oceanexpert.org/expert/23031 -https://www.oceanexpert.org/expert/27671 -https://www.oceanexpert.org/expert/8950 -https://www.oceanexpert.org/expert/16962 -https://www.oceanexpert.org/institution/21754 -https://www.oceanexpert.org/event/1390 -https://www.oceanexpert.org/institution/21719 -https://www.oceanexpert.org/expert/16502 -https://www.oceanexpert.org/expert/14443 -https://www.oceanexpert.org/expert/43545 -https://www.oceanexpert.org/institution/11695 -https://www.oceanexpert.org/event/421 -https://www.oceanexpert.org/expert/23716 -https://www.oceanexpert.org/event/1942 -https://www.oceanexpert.org/expert/26396 -https://www.oceanexpert.org/expert/36997 -https://www.oceanexpert.org/institution/21923 -https://www.oceanexpert.org/expert/29818 -https://www.oceanexpert.org/expert/20639 -https://www.oceanexpert.org/expert/6470 -https://www.oceanexpert.org/expert/14120 -https://www.oceanexpert.org/expert/37496 -https://www.oceanexpert.org/institution/8603 -https://www.oceanexpert.org/expert/35910 -https://www.oceanexpert.org/expert/12096 -https://www.oceanexpert.org/expert/47570 -https://www.oceanexpert.org/event/2307 -https://www.oceanexpert.org/expert/36614 -https://www.oceanexpert.org/expert/18863 -https://www.oceanexpert.org/expert/25261 -https://www.oceanexpert.org/expert/21567 -https://www.oceanexpert.org/institution/18276 -https://www.oceanexpert.org/expert/24605 -https://www.oceanexpert.org/institution/20334 -https://www.oceanexpert.org/event/2961 -https://www.oceanexpert.org/institution/20038 -https://www.oceanexpert.org/institution/16838 -https://www.oceanexpert.org/expert/38881 -https://www.oceanexpert.org/expert/1126 -https://www.oceanexpert.org/institution/18024 -https://www.oceanexpert.org/expert/31002 -https://www.oceanexpert.org/expert/44976 -https://www.oceanexpert.org/expert/28419 -https://www.oceanexpert.org/expert/22364 -https://www.oceanexpert.org/expert/31394 -https://www.oceanexpert.org/event/1257 -https://www.oceanexpert.org/expert/23168 -https://www.oceanexpert.org/expert/13886 -https://www.oceanexpert.org/institution/11727 -https://www.oceanexpert.org/expert/38343 -https://www.oceanexpert.org/expert/5866 -https://www.oceanexpert.org/institution/12427 -https://www.oceanexpert.org/institution/6096 -https://www.oceanexpert.org/institution/12961 -https://www.oceanexpert.org/event/254 -https://www.oceanexpert.org/institution/11520 -https://www.oceanexpert.org/expert/44223 -https://www.oceanexpert.org/expert/18860 -https://www.oceanexpert.org/expert/48917 -https://www.oceanexpert.org/expert/33774 -https://www.oceanexpert.org/expert/47778 -https://www.oceanexpert.org/expert/18185 -https://www.oceanexpert.org/expert/6771 -https://www.oceanexpert.org/expert/24060 -https://www.oceanexpert.org/expert/24505 -https://www.oceanexpert.org/expert/36447 -https://www.oceanexpert.org/expert/47187 -https://www.oceanexpert.org/expert/17220 -https://www.oceanexpert.org/event/969 -https://www.oceanexpert.org/institution/18118 -https://www.oceanexpert.org/institution/7612 -https://www.oceanexpert.org/expert/25979 -https://www.oceanexpert.org/institution/21934 -https://www.oceanexpert.org/institution/11017 -https://www.oceanexpert.org/expert/20112 -https://www.oceanexpert.org/institution/11126 -https://www.oceanexpert.org/expert/44205 -https://www.oceanexpert.org/event/2111 -https://www.oceanexpert.org/expert/48654 -https://www.oceanexpert.org/institution/11817 -https://www.oceanexpert.org/expert/33056 -https://www.oceanexpert.org/expert/28435 -https://www.oceanexpert.org/expert/11461 -https://www.oceanexpert.org/expert/29465 -https://www.oceanexpert.org/expert/25125 -https://www.oceanexpert.org/expert/47061 -https://www.oceanexpert.org/institution/5301 -https://www.oceanexpert.org/institution/17680 -https://www.oceanexpert.org/expert/20811 -https://www.oceanexpert.org/expert/46406 -https://www.oceanexpert.org/expert/35822 -https://www.oceanexpert.org/expert/36546 -https://www.oceanexpert.org/expert/31430 -https://www.oceanexpert.org/expert/44822 -https://www.oceanexpert.org/expert/45499 -https://www.oceanexpert.org/expert/24887 -https://www.oceanexpert.org/institution/5982 -https://www.oceanexpert.org/expert/18685 -https://www.oceanexpert.org/expert/26721 -https://www.oceanexpert.org/institution/14684 -https://www.oceanexpert.org/expert/48002 -https://www.oceanexpert.org/expert/17151 -https://www.oceanexpert.org/expert/15930 -https://www.oceanexpert.org/expert/20397 -https://www.oceanexpert.org/expert/44214 -https://www.oceanexpert.org/expert/37742 -https://www.oceanexpert.org/expert/35987 -https://www.oceanexpert.org/expert/2451 -https://www.oceanexpert.org/institution/19015 -https://www.oceanexpert.org/expert/19875 -https://www.oceanexpert.org/expert/37628 -https://www.oceanexpert.org/expert/35214 -https://www.oceanexpert.org/expert/32746 -https://www.oceanexpert.org/expert/21348 -https://www.oceanexpert.org/expert/6378 -https://www.oceanexpert.org/institution/19386 -https://www.oceanexpert.org/expert/47511 -https://www.oceanexpert.org/expert/21729 -https://www.oceanexpert.org/expert/22500 -https://www.oceanexpert.org/expert/28964 -https://www.oceanexpert.org/expert/1596 -https://www.oceanexpert.org/expert/17805 -https://www.oceanexpert.org/institution/7263 -https://www.oceanexpert.org/expert/18919 -https://www.oceanexpert.org/expert/16582 -https://www.oceanexpert.org/expert/42922 -https://www.oceanexpert.org/institution/12176 -https://www.oceanexpert.org/expert/32859 -https://www.oceanexpert.org/expert/42929 -https://www.oceanexpert.org/expert/22237 -https://www.oceanexpert.org/expert/46462 -https://www.oceanexpert.org/institution/21981 -https://www.oceanexpert.org/expert/47741 -https://www.oceanexpert.org/expert/44289 -https://www.oceanexpert.org/expert/33365 -https://www.oceanexpert.org/expert/217 -https://www.oceanexpert.org/event/966 -https://www.oceanexpert.org/institution/17445 -https://www.oceanexpert.org/expert/34770 -https://www.oceanexpert.org/event/433 -https://www.oceanexpert.org/expert/8657 -https://www.oceanexpert.org/expert/42622 -https://www.oceanexpert.org/event/3168 -https://www.oceanexpert.org/expert/45811 -https://www.oceanexpert.org/expert/26872 -https://www.oceanexpert.org/expert/19272 -https://www.oceanexpert.org/expert/44644 -https://www.oceanexpert.org/expert/16929 -https://www.oceanexpert.org/expert/48728 -https://www.oceanexpert.org/expert/6968 -https://www.oceanexpert.org/expert/27419 -https://www.oceanexpert.org/expert/42999 -https://www.oceanexpert.org/institution/15815 -https://www.oceanexpert.org/expert/20628 -https://www.oceanexpert.org/expert/12412 -https://www.oceanexpert.org/event/1431 -https://www.oceanexpert.org/expert/25174 -https://www.oceanexpert.org/expert/24698 -https://www.oceanexpert.org/institution/7355 -https://www.oceanexpert.org/expert/31685 -https://www.oceanexpert.org/expert/31414 -https://www.oceanexpert.org/institution/5649 -https://www.oceanexpert.org/expert/15518 -https://www.oceanexpert.org/event/1992 -https://www.oceanexpert.org/expert/29227 -https://www.oceanexpert.org/institution/20061 -https://www.oceanexpert.org/institution/16974 -https://www.oceanexpert.org/expert/9549 -https://www.oceanexpert.org/expert/38468 -https://www.oceanexpert.org/expert/20717 -https://www.oceanexpert.org/institution/10329 -https://www.oceanexpert.org/expert/46270 -https://www.oceanexpert.org/event/2820 -https://www.oceanexpert.org/expert/24164 -https://www.oceanexpert.org/expert/39266 -https://www.oceanexpert.org/expert/18964 -https://www.oceanexpert.org/institution/21908 -https://www.oceanexpert.org/institution/14175 -https://www.oceanexpert.org/expert/45817 -https://www.oceanexpert.org/institution/18097 -https://www.oceanexpert.org/expert/19747 -https://www.oceanexpert.org/expert/23130 -https://www.oceanexpert.org/expert/18066 -https://www.oceanexpert.org/expert/47914 -https://www.oceanexpert.org/expert/43684 -https://www.oceanexpert.org/expert/13338 -https://www.oceanexpert.org/expert/31451 -https://www.oceanexpert.org/expert/26845 -https://www.oceanexpert.org/expert/47101 -https://www.oceanexpert.org/institution/19399 -https://www.oceanexpert.org/event/2903 -https://www.oceanexpert.org/expert/23311 -https://www.oceanexpert.org/expert/44328 -https://www.oceanexpert.org/expert/9236 -https://www.oceanexpert.org/expert/27292 -https://www.oceanexpert.org/expert/42560 -https://www.oceanexpert.org/expert/36313 -https://www.oceanexpert.org/expert/19922 -https://www.oceanexpert.org/expert/47874 -https://www.oceanexpert.org/expert/33495 -https://www.oceanexpert.org/expert/12715 -https://www.oceanexpert.org/expert/1876 -https://www.oceanexpert.org/institution/18889 -https://www.oceanexpert.org/expert/46982 -https://www.oceanexpert.org/expert/19866 -https://www.oceanexpert.org/expert/7197 -https://www.oceanexpert.org/institution/19717 -https://www.oceanexpert.org/expert/22881 -https://www.oceanexpert.org/expert/29915 -https://www.oceanexpert.org/expert/17309 -https://www.oceanexpert.org/expert/49015 -https://www.oceanexpert.org/institution/18787 -https://www.oceanexpert.org/expert/34113 -https://www.oceanexpert.org/event/2730 -https://www.oceanexpert.org/expert/30472 -https://www.oceanexpert.org/expert/24088 -https://www.oceanexpert.org/expert/35318 -https://www.oceanexpert.org/expert/23638 -https://www.oceanexpert.org/expert/22733 -https://www.oceanexpert.org/institution/19483 -https://www.oceanexpert.org/institution/15084 -https://www.oceanexpert.org/expert/29021 -https://www.oceanexpert.org/institution/11896 -https://www.oceanexpert.org/institution/17426 -https://www.oceanexpert.org/institution/19845 -https://www.oceanexpert.org/expert/45530 -https://www.oceanexpert.org/institution/21845 -https://www.oceanexpert.org/expert/23713 -https://www.oceanexpert.org/institution/19735 -https://www.oceanexpert.org/institution/14067 -https://www.oceanexpert.org/expert/21114 -https://www.oceanexpert.org/expert/25593 -https://www.oceanexpert.org/institution/21573 -https://www.oceanexpert.org/institution/10671 -https://www.oceanexpert.org/expert/28302 -https://www.oceanexpert.org/expert/8634 -https://www.oceanexpert.org/expert/23737 -https://www.oceanexpert.org/expert/3181 -https://www.oceanexpert.org/expert/19560 -https://www.oceanexpert.org/institution/18453 -https://www.oceanexpert.org/institution/16804 -https://www.oceanexpert.org/expert/16882 -https://www.oceanexpert.org/expert/29129 -https://www.oceanexpert.org/institution/20766 -https://www.oceanexpert.org/expert/19235 -https://www.oceanexpert.org/expert/22082 -https://www.oceanexpert.org/expert/30942 -https://www.oceanexpert.org/expert/27566 -https://www.oceanexpert.org/expert/4470 -https://www.oceanexpert.org/expert/34352 -https://www.oceanexpert.org/expert/31656 -https://www.oceanexpert.org/institution/13059 -https://www.oceanexpert.org/expert/20046 -https://www.oceanexpert.org/institution/20574 -https://www.oceanexpert.org/institution/19092 -https://www.oceanexpert.org/event/472 -https://www.oceanexpert.org/institution/12990 -https://www.oceanexpert.org/event/1707 -https://www.oceanexpert.org/expert/26569 -https://www.oceanexpert.org/expert/33943 -https://www.oceanexpert.org/expert/18002 -https://www.oceanexpert.org/institution/19902 -https://www.oceanexpert.org/event/1297 -https://www.oceanexpert.org/expert/223 -https://www.oceanexpert.org/expert/45310 -https://www.oceanexpert.org/expert/15432 -https://www.oceanexpert.org/expert/48913 -https://www.oceanexpert.org/institution/20063 -https://www.oceanexpert.org/expert/42763 -https://www.oceanexpert.org/expert/25549 -https://www.oceanexpert.org/expert/32127 -https://www.oceanexpert.org/expert/46015 -https://www.oceanexpert.org/expert/34976 -https://www.oceanexpert.org/expert/44538 -https://www.oceanexpert.org/expert/38252 -https://www.oceanexpert.org/institution/8214 -https://www.oceanexpert.org/expert/11906 -https://www.oceanexpert.org/expert/17824 -https://www.oceanexpert.org/expert/4189 -https://www.oceanexpert.org/expert/37839 -https://www.oceanexpert.org/expert/21193 -https://www.oceanexpert.org/expert/38934 -https://www.oceanexpert.org/expert/35369 -https://www.oceanexpert.org/expert/48035 -https://www.oceanexpert.org/expert/40373 -https://www.oceanexpert.org/event/2386 -https://www.oceanexpert.org/expert/33435 -https://www.oceanexpert.org/expert/25907 -https://www.oceanexpert.org/expert/23632 -https://www.oceanexpert.org/expert/45815 -https://www.oceanexpert.org/expert/23743 -https://www.oceanexpert.org/expert/20048 -https://www.oceanexpert.org/expert/29550 -https://www.oceanexpert.org/institution/10525 -https://www.oceanexpert.org/expert/37400 -https://www.oceanexpert.org/expert/12690 -https://www.oceanexpert.org/expert/26634 -https://www.oceanexpert.org/expert/30531 -https://www.oceanexpert.org/expert/48935 -https://www.oceanexpert.org/expert/19521 -https://www.oceanexpert.org/expert/24610 -https://www.oceanexpert.org/institution/9860 -https://www.oceanexpert.org/expert/20319 -https://www.oceanexpert.org/expert/27155 -https://www.oceanexpert.org/institution/15514 -https://www.oceanexpert.org/expert/45130 -https://www.oceanexpert.org/event/1526 -https://www.oceanexpert.org/expert/28965 -https://www.oceanexpert.org/expert/35516 -https://www.oceanexpert.org/institution/14005 -https://www.oceanexpert.org/expert/47685 -https://www.oceanexpert.org/expert/20434 -https://www.oceanexpert.org/institution/15621 -https://www.oceanexpert.org/expert/37967 -https://www.oceanexpert.org/expert/21305 -https://www.oceanexpert.org/institution/18458 -https://www.oceanexpert.org/institution/13162 -https://www.oceanexpert.org/expert/23939 -https://www.oceanexpert.org/expert/29511 -https://www.oceanexpert.org/expert/43762 -https://www.oceanexpert.org/expert/20112 -https://www.oceanexpert.org/institution/17701 -https://www.oceanexpert.org/institution/18420 -https://www.oceanexpert.org/expert/47076 -https://www.oceanexpert.org/expert/44557 -https://www.oceanexpert.org/expert/18599 -https://www.oceanexpert.org/institution/6909 -https://www.oceanexpert.org/institution/21642 -https://www.oceanexpert.org/expert/27588 -https://www.oceanexpert.org/expert/42456 -https://www.oceanexpert.org/institution/16458 -https://www.oceanexpert.org/expert/11728 -https://www.oceanexpert.org/expert/31420 -https://www.oceanexpert.org/event/793 -https://www.oceanexpert.org/institution/14331 -https://www.oceanexpert.org/expert/29026 -https://www.oceanexpert.org/expert/27999 -https://www.oceanexpert.org/expert/48376 -https://www.oceanexpert.org/institution/20058 -https://www.oceanexpert.org/institution/21357 -https://www.oceanexpert.org/expert/19256 -https://www.oceanexpert.org/expert/33279 -https://www.oceanexpert.org/expert/4455 -https://www.oceanexpert.org/expert/23999 -https://www.oceanexpert.org/institution/16319 -https://www.oceanexpert.org/event/1150 -https://www.oceanexpert.org/expert/24214 -https://www.oceanexpert.org/expert/47167 -https://www.oceanexpert.org/institution/10842 -https://www.oceanexpert.org/institution/14430 -https://www.oceanexpert.org/institution/11890 -https://www.oceanexpert.org/expert/27517 -https://www.oceanexpert.org/institution/18413 -https://www.oceanexpert.org/event/1468 -https://www.oceanexpert.org/expert/24855 -https://www.oceanexpert.org/institution/18431 -https://www.oceanexpert.org/expert/18346 -https://www.oceanexpert.org/expert/25785 -https://www.oceanexpert.org/expert/21149 -https://www.oceanexpert.org/institution/5108 -https://www.oceanexpert.org/expert/3211 -https://www.oceanexpert.org/expert/37725 -https://www.oceanexpert.org/expert/35109 -https://www.oceanexpert.org/expert/23390 -https://www.oceanexpert.org/institution/18155 -https://www.oceanexpert.org/expert/38540 -https://www.oceanexpert.org/expert/14269 -https://www.oceanexpert.org/expert/18333 -https://www.oceanexpert.org/expert/27352 -https://www.oceanexpert.org/expert/37078 -https://www.oceanexpert.org/expert/40530 -https://www.oceanexpert.org/expert/47987 -https://www.oceanexpert.org/expert/35964 -https://www.oceanexpert.org/expert/26353 -https://www.oceanexpert.org/expert/25215 -https://www.oceanexpert.org/expert/2067 -https://www.oceanexpert.org/expert/17105 -https://www.oceanexpert.org/expert/42384 -https://www.oceanexpert.org/expert/37280 -https://www.oceanexpert.org/institution/13293 -https://www.oceanexpert.org/expert/26722 -https://www.oceanexpert.org/expert/17506 -https://www.oceanexpert.org/institution/17966 -https://www.oceanexpert.org/institution/12000 -https://www.oceanexpert.org/expert/44330 -https://www.oceanexpert.org/expert/24387 -https://www.oceanexpert.org/expert/43214 -https://www.oceanexpert.org/expert/16969 -https://www.oceanexpert.org/institution/17871 -https://www.oceanexpert.org/expert/34213 -https://www.oceanexpert.org/expert/23195 -https://www.oceanexpert.org/expert/46828 -https://www.oceanexpert.org/institution/19113 -https://www.oceanexpert.org/expert/21341 -https://www.oceanexpert.org/expert/45027 -https://www.oceanexpert.org/expert/34905 -https://www.oceanexpert.org/expert/45797 -https://www.oceanexpert.org/expert/44756 -https://www.oceanexpert.org/institution/12092 -https://www.oceanexpert.org/institution/14497 -https://www.oceanexpert.org/expert/31105 -https://www.oceanexpert.org/institution/19886 -https://www.oceanexpert.org/expert/47235 -https://www.oceanexpert.org/event/607 -https://www.oceanexpert.org/expert/47312 -https://www.oceanexpert.org/event/2657 -https://www.oceanexpert.org/expert/20995 -https://www.oceanexpert.org/expert/43113 -https://www.oceanexpert.org/expert/16652 -https://www.oceanexpert.org/expert/44590 -https://www.oceanexpert.org/expert/26674 -https://www.oceanexpert.org/institution/19143 -https://www.oceanexpert.org/expert/47254 -https://www.oceanexpert.org/expert/43145 -https://www.oceanexpert.org/expert/32510 -https://www.oceanexpert.org/expert/44656 -https://www.oceanexpert.org/expert/34057 -https://www.oceanexpert.org/expert/32927 -https://www.oceanexpert.org/event/3019 -https://www.oceanexpert.org/expert/25319 -https://www.oceanexpert.org/expert/19789 -https://www.oceanexpert.org/expert/48649 -https://www.oceanexpert.org/institution/9752 -https://www.oceanexpert.org/event/418 -https://www.oceanexpert.org/expert/24035 -https://www.oceanexpert.org/expert/26473 -https://www.oceanexpert.org/expert/673 -https://www.oceanexpert.org/institution/19461 -https://www.oceanexpert.org/event/633 -https://www.oceanexpert.org/expert/7935 -https://www.oceanexpert.org/expert/29516 -https://www.oceanexpert.org/expert/14132 -https://www.oceanexpert.org/expert/34219 -https://www.oceanexpert.org/expert/44088 -https://www.oceanexpert.org/expert/44188 -https://www.oceanexpert.org/expert/45531 -https://www.oceanexpert.org/expert/44448 -https://www.oceanexpert.org/event/1763 -https://www.oceanexpert.org/expert/45107 -https://www.oceanexpert.org/expert/30136 -https://www.oceanexpert.org/institution/19526 -https://www.oceanexpert.org/event/659 -https://www.oceanexpert.org/event/1220 -https://www.oceanexpert.org/institution/5223 -https://www.oceanexpert.org/institution/20228 -https://www.oceanexpert.org/expert/11785 -https://www.oceanexpert.org/expert/19227 -https://www.oceanexpert.org/expert/37860 -https://www.oceanexpert.org/institution/9429 -https://www.oceanexpert.org/expert/43629 -https://www.oceanexpert.org/expert/14639 -https://www.oceanexpert.org/expert/47003 -https://www.oceanexpert.org/expert/48009 -https://www.oceanexpert.org/expert/19695 -https://www.oceanexpert.org/institution/18048 -https://www.oceanexpert.org/institution/13608 -https://www.oceanexpert.org/expert/38624 -https://www.oceanexpert.org/institution/15475 -https://www.oceanexpert.org/expert/25398 -https://www.oceanexpert.org/expert/32145 -https://www.oceanexpert.org/expert/26800 -https://www.oceanexpert.org/expert/19220 -https://www.oceanexpert.org/expert/44788 -https://www.oceanexpert.org/expert/32489 -https://www.oceanexpert.org/expert/34352 -https://www.oceanexpert.org/expert/36544 -https://www.oceanexpert.org/expert/44207 -https://www.oceanexpert.org/expert/36483 -https://www.oceanexpert.org/expert/19789 -https://www.oceanexpert.org/expert/43885 -https://www.oceanexpert.org/event/407 -https://www.oceanexpert.org/expert/32826 -https://www.oceanexpert.org/institution/10209 -https://www.oceanexpert.org/institution/20033 -https://www.oceanexpert.org/expert/21759 -https://www.oceanexpert.org/expert/15631 -https://www.oceanexpert.org/expert/21248 -https://www.oceanexpert.org/expert/37677 -https://www.oceanexpert.org/expert/21847 -https://www.oceanexpert.org/expert/47269 -https://www.oceanexpert.org/expert/26356 -https://www.oceanexpert.org/expert/23383 -https://www.oceanexpert.org/institution/7273 -https://www.oceanexpert.org/expert/24345 -https://www.oceanexpert.org/expert/26711 -https://www.oceanexpert.org/expert/46488 -https://www.oceanexpert.org/institution/10285 -https://www.oceanexpert.org/expert/45645 -https://www.oceanexpert.org/event/2786 -https://www.oceanexpert.org/expert/36787 -https://www.oceanexpert.org/expert/46855 -https://www.oceanexpert.org/expert/44237 -https://www.oceanexpert.org/expert/46585 -https://www.oceanexpert.org/institution/21744 -https://www.oceanexpert.org/expert/23296 -https://www.oceanexpert.org/institution/18980 -https://www.oceanexpert.org/expert/19338 -https://www.oceanexpert.org/expert/34620 -https://www.oceanexpert.org/expert/46998 -https://www.oceanexpert.org/expert/33633 -https://www.oceanexpert.org/event/2891 -https://www.oceanexpert.org/expert/48186 -https://www.oceanexpert.org/expert/47104 -https://www.oceanexpert.org/expert/44037 -https://www.oceanexpert.org/institution/14580 -https://www.oceanexpert.org/expert/37145 -https://www.oceanexpert.org/institution/12347 -https://www.oceanexpert.org/expert/18431 -https://www.oceanexpert.org/institution/4922 -https://www.oceanexpert.org/event/502 -https://www.oceanexpert.org/institution/20982 -https://www.oceanexpert.org/expert/36004 -https://www.oceanexpert.org/expert/16502 -https://www.oceanexpert.org/event/1049 -https://www.oceanexpert.org/expert/21484 -https://www.oceanexpert.org/expert/35339 -https://www.oceanexpert.org/event/2341 -https://www.oceanexpert.org/expert/48626 -https://www.oceanexpert.org/expert/6523 -https://www.oceanexpert.org/expert/44309 -https://www.oceanexpert.org/event/22 -https://www.oceanexpert.org/event/51 -https://www.oceanexpert.org/expert/24523 -https://www.oceanexpert.org/expert/46722 -https://www.oceanexpert.org/institution/21404 -https://www.oceanexpert.org/event/2570 -https://www.oceanexpert.org/expert/12536 -https://www.oceanexpert.org/expert/34541 -https://www.oceanexpert.org/institution/10480 -https://www.oceanexpert.org/institution/13994 -https://www.oceanexpert.org/institution/19301 -https://www.oceanexpert.org/expert/45838 -https://www.oceanexpert.org/expert/46988 -https://www.oceanexpert.org/expert/43157 -https://www.oceanexpert.org/institution/19682 -https://www.oceanexpert.org/institution/20212 -https://www.oceanexpert.org/expert/27434 -https://www.oceanexpert.org/institution/12835 -https://www.oceanexpert.org/expert/39135 -https://www.oceanexpert.org/expert/48442 -https://www.oceanexpert.org/institution/11550 -https://www.oceanexpert.org/expert/26251 -https://www.oceanexpert.org/expert/37363 -https://www.oceanexpert.org/expert/21639 -https://www.oceanexpert.org/expert/35253 -https://www.oceanexpert.org/expert/27762 -https://www.oceanexpert.org/expert/41911 -https://www.oceanexpert.org/expert/26904 -https://www.oceanexpert.org/expert/24864 -https://www.oceanexpert.org/event/49 -https://www.oceanexpert.org/expert/26572 -https://www.oceanexpert.org/institution/21837 -https://www.oceanexpert.org/institution/19556 -https://www.oceanexpert.org/expert/29495 -https://www.oceanexpert.org/expert/24269 -https://www.oceanexpert.org/expert/7193 -https://www.oceanexpert.org/expert/5064 -https://www.oceanexpert.org/expert/34080 -https://www.oceanexpert.org/institution/21564 -https://www.oceanexpert.org/expert/44864 -https://www.oceanexpert.org/expert/30793 -https://www.oceanexpert.org/expert/42505 -https://www.oceanexpert.org/expert/25168 -https://www.oceanexpert.org/institution/8886 -https://www.oceanexpert.org/expert/12494 -https://www.oceanexpert.org/institution/21406 -https://www.oceanexpert.org/institution/13035 -https://www.oceanexpert.org/event/1719 -https://www.oceanexpert.org/expert/22217 -https://www.oceanexpert.org/expert/27475 -https://www.oceanexpert.org/expert/43440 -https://www.oceanexpert.org/event/2179 -https://www.oceanexpert.org/expert/11449 -https://www.oceanexpert.org/expert/44554 -https://www.oceanexpert.org/expert/28931 -https://www.oceanexpert.org/expert/37816 -https://www.oceanexpert.org/expert/35333 -https://www.oceanexpert.org/expert/23195 -https://www.oceanexpert.org/expert/28110 -https://www.oceanexpert.org/institution/15653 -https://www.oceanexpert.org/expert/29515 -https://www.oceanexpert.org/expert/32046 -https://www.oceanexpert.org/event/412 -https://www.oceanexpert.org/expert/31002 -https://www.oceanexpert.org/expert/33296 -https://www.oceanexpert.org/expert/44257 -https://www.oceanexpert.org/expert/16313 -https://www.oceanexpert.org/expert/19331 -https://www.oceanexpert.org/expert/19315 -https://www.oceanexpert.org/expert/16725 -https://www.oceanexpert.org/institution/20876 -https://www.oceanexpert.org/expert/48833 -https://www.oceanexpert.org/expert/46733 -https://www.oceanexpert.org/institution/13695 -https://www.oceanexpert.org/expert/46682 -https://www.oceanexpert.org/expert/22894 -https://www.oceanexpert.org/expert/17917 -https://www.oceanexpert.org/institution/16715 -https://www.oceanexpert.org/institution/19164 -https://www.oceanexpert.org/expert/24819 -https://www.oceanexpert.org/institution/17231 -https://www.oceanexpert.org/expert/27601 -https://www.oceanexpert.org/institution/16221 -https://www.oceanexpert.org/expert/22259 -https://www.oceanexpert.org/expert/48790 -https://www.oceanexpert.org/expert/16659 -https://www.oceanexpert.org/expert/21117 -https://www.oceanexpert.org/expert/31753 -https://www.oceanexpert.org/institution/15330 -https://www.oceanexpert.org/institution/16017 -https://www.oceanexpert.org/institution/19319 -https://www.oceanexpert.org/expert/12726 -https://www.oceanexpert.org/expert/12846 -https://www.oceanexpert.org/expert/36812 -https://www.oceanexpert.org/event/129 -https://www.oceanexpert.org/expert/22586 -https://www.oceanexpert.org/institution/12751 -https://www.oceanexpert.org/institution/18890 -https://www.oceanexpert.org/expert/43552 -https://www.oceanexpert.org/expert/21343 -https://www.oceanexpert.org/expert/43399 -https://www.oceanexpert.org/expert/18770 -https://www.oceanexpert.org/expert/17463 -https://www.oceanexpert.org/expert/48102 -https://www.oceanexpert.org/institution/16417 -https://www.oceanexpert.org/expert/14924 -https://www.oceanexpert.org/event/154 -https://www.oceanexpert.org/institution/20663 -https://www.oceanexpert.org/expert/27506 -https://www.oceanexpert.org/institution/7269 -https://www.oceanexpert.org/expert/27718 -https://www.oceanexpert.org/expert/30792 -https://www.oceanexpert.org/expert/44513 -https://www.oceanexpert.org/expert/34013 -https://www.oceanexpert.org/expert/32931 -https://www.oceanexpert.org/expert/22435 -https://www.oceanexpert.org/expert/17225 -https://www.oceanexpert.org/institution/21819 -https://www.oceanexpert.org/expert/33059 -https://www.oceanexpert.org/expert/24417 -https://www.oceanexpert.org/expert/18988 -https://www.oceanexpert.org/expert/28433 -https://www.oceanexpert.org/expert/39167 -https://www.oceanexpert.org/institution/18859 -https://www.oceanexpert.org/institution/14799 -https://www.oceanexpert.org/institution/13286 -https://www.oceanexpert.org/institution/16699 -https://www.oceanexpert.org/expert/36584 -https://www.oceanexpert.org/expert/32801 -https://www.oceanexpert.org/expert/20434 -https://www.oceanexpert.org/institution/21598 -https://www.oceanexpert.org/expert/20072 -https://www.oceanexpert.org/expert/22821 -https://www.oceanexpert.org/expert/42933 -https://www.oceanexpert.org/expert/29442 -https://www.oceanexpert.org/expert/26816 -https://www.oceanexpert.org/expert/20384 -https://www.oceanexpert.org/expert/20784 -https://www.oceanexpert.org/event/2207 -https://www.oceanexpert.org/expert/11648 -https://www.oceanexpert.org/event/418 -https://www.oceanexpert.org/institution/14931 -https://www.oceanexpert.org/institution/8813 -https://www.oceanexpert.org/expert/29643 -https://www.oceanexpert.org/institution/7594 -https://www.oceanexpert.org/expert/32181 -https://www.oceanexpert.org/expert/36990 -https://www.oceanexpert.org/institution/15734 -https://www.oceanexpert.org/expert/35455 -https://www.oceanexpert.org/expert/38393 -https://www.oceanexpert.org/expert/35047 -https://www.oceanexpert.org/event/720 -https://www.oceanexpert.org/institution/20059 -https://www.oceanexpert.org/institution/21396 -https://www.oceanexpert.org/expert/18177 -https://www.oceanexpert.org/expert/36131 -https://www.oceanexpert.org/institution/10693 -https://www.oceanexpert.org/expert/20807 -https://www.oceanexpert.org/institution/19524 -https://www.oceanexpert.org/expert/18852 -https://www.oceanexpert.org/expert/39318 -https://www.oceanexpert.org/institution/21741 -https://www.oceanexpert.org/expert/42969 -https://www.oceanexpert.org/expert/38695 -https://www.oceanexpert.org/expert/14120 -https://www.oceanexpert.org/institution/16394 -https://www.oceanexpert.org/expert/38917 -https://www.oceanexpert.org/institution/17411 -https://www.oceanexpert.org/expert/49052 -https://www.oceanexpert.org/institution/9814 -https://www.oceanexpert.org/expert/47019 -https://www.oceanexpert.org/expert/46249 -https://www.oceanexpert.org/event/2076 -https://www.oceanexpert.org/expert/21615 -https://www.oceanexpert.org/expert/20454 -https://www.oceanexpert.org/expert/2067 -https://www.oceanexpert.org/expert/33132 -https://www.oceanexpert.org/expert/46657 -https://www.oceanexpert.org/expert/288 -https://www.oceanexpert.org/expert/25320 -https://www.oceanexpert.org/expert/12156 -https://www.oceanexpert.org/event/1589 -https://www.oceanexpert.org/event/1323 -https://www.oceanexpert.org/event/3014 -https://www.oceanexpert.org/event/576 -https://www.oceanexpert.org/institution/19663 -https://www.oceanexpert.org/institution/20865 -https://www.oceanexpert.org/expert/40577 -https://www.oceanexpert.org/institution/14089 -https://www.oceanexpert.org/institution/18525 -https://www.oceanexpert.org/expert/46775 -https://www.oceanexpert.org/expert/15634 -https://www.oceanexpert.org/expert/48721 -https://www.oceanexpert.org/expert/43369 -https://www.oceanexpert.org/institution/18481 -https://www.oceanexpert.org/expert/37789 -https://www.oceanexpert.org/institution/18625 -https://www.oceanexpert.org/expert/14121 -https://www.oceanexpert.org/institution/12185 -https://www.oceanexpert.org/expert/35223 -https://www.oceanexpert.org/expert/35583 -https://www.oceanexpert.org/event/1415 -https://www.oceanexpert.org/expert/16221 -https://www.oceanexpert.org/expert/28106 -https://www.oceanexpert.org/institution/21245 -https://www.oceanexpert.org/expert/36628 -https://www.oceanexpert.org/institution/18399 -https://www.oceanexpert.org/event/268 -https://www.oceanexpert.org/expert/13556 -https://www.oceanexpert.org/institution/10214 -https://www.oceanexpert.org/expert/44452 -https://www.oceanexpert.org/expert/20530 -https://www.oceanexpert.org/expert/44894 -https://www.oceanexpert.org/expert/46743 -https://www.oceanexpert.org/institution/16761 -https://www.oceanexpert.org/expert/25076 -https://www.oceanexpert.org/expert/47752 -https://www.oceanexpert.org/institution/19308 -https://www.oceanexpert.org/institution/19078 -https://www.oceanexpert.org/expert/37980 -https://www.oceanexpert.org/event/550 -https://www.oceanexpert.org/expert/43570 -https://www.oceanexpert.org/expert/37855 -https://www.oceanexpert.org/expert/3788 -https://www.oceanexpert.org/institution/19475 -https://www.oceanexpert.org/expert/25116 -https://www.oceanexpert.org/event/1189 -https://www.oceanexpert.org/event/308 -https://www.oceanexpert.org/expert/42921 -https://www.oceanexpert.org/expert/18790 -https://www.oceanexpert.org/institution/20791 -https://www.oceanexpert.org/expert/33225 -https://www.oceanexpert.org/expert/43868 -https://www.oceanexpert.org/event/1774 -https://www.oceanexpert.org/expert/35455 -https://www.oceanexpert.org/expert/44791 -https://www.oceanexpert.org/expert/23674 -https://www.oceanexpert.org/institution/19040 -https://www.oceanexpert.org/expert/27532 -https://www.oceanexpert.org/institution/13595 -https://www.oceanexpert.org/expert/43281 -https://www.oceanexpert.org/expert/13355 -https://www.oceanexpert.org/expert/15570 -https://www.oceanexpert.org/event/3177 -https://www.oceanexpert.org/expert/21967 -https://www.oceanexpert.org/expert/45435 -https://www.oceanexpert.org/institution/21038 -https://www.oceanexpert.org/expert/26471 -https://www.oceanexpert.org/institution/11011 -https://www.oceanexpert.org/institution/12029 -https://www.oceanexpert.org/institution/20069 -https://www.oceanexpert.org/expert/20582 -https://www.oceanexpert.org/institution/18116 -https://www.oceanexpert.org/expert/19263 -https://www.oceanexpert.org/expert/25363 -https://www.oceanexpert.org/event/215 -https://www.oceanexpert.org/expert/32777 -https://www.oceanexpert.org/expert/43374 -https://www.oceanexpert.org/expert/22573 -https://www.oceanexpert.org/institution/12748 -https://www.oceanexpert.org/expert/44160 -https://www.oceanexpert.org/institution/20845 -https://www.oceanexpert.org/institution/21755 -https://www.oceanexpert.org/institution/7643 -https://www.oceanexpert.org/expert/11731 -https://www.oceanexpert.org/expert/37175 -https://www.oceanexpert.org/expert/36725 -https://www.oceanexpert.org/expert/24305 -https://www.oceanexpert.org/expert/37838 -https://www.oceanexpert.org/expert/32807 -https://www.oceanexpert.org/expert/19827 -https://www.oceanexpert.org/institution/21612 -https://www.oceanexpert.org/expert/32954 -https://www.oceanexpert.org/institution/19261 -https://www.oceanexpert.org/expert/4902 -https://www.oceanexpert.org/event/148 -https://www.oceanexpert.org/institution/13988 -https://www.oceanexpert.org/expert/46783 -https://www.oceanexpert.org/expert/37951 -https://www.oceanexpert.org/expert/48886 -https://www.oceanexpert.org/institution/14738 -https://www.oceanexpert.org/institution/13045 -https://www.oceanexpert.org/expert/24152 -https://www.oceanexpert.org/institution/19023 -https://www.oceanexpert.org/event/1491 -https://www.oceanexpert.org/institution/19087 -https://www.oceanexpert.org/event/1360 -https://www.oceanexpert.org/expert/36009 -https://www.oceanexpert.org/institution/18686 -https://www.oceanexpert.org/expert/26817 -https://www.oceanexpert.org/event/436 -https://www.oceanexpert.org/expert/44971 -https://www.oceanexpert.org/expert/39907 -https://www.oceanexpert.org/expert/17582 -https://www.oceanexpert.org/event/296 -https://www.oceanexpert.org/expert/45128 -https://www.oceanexpert.org/expert/42935 -https://www.oceanexpert.org/event/1630 -https://www.oceanexpert.org/institution/19296 -https://www.oceanexpert.org/institution/10209 -https://www.oceanexpert.org/expert/44228 -https://www.oceanexpert.org/institution/20527 -https://www.oceanexpert.org/expert/21627 -https://www.oceanexpert.org/institution/19485 -https://www.oceanexpert.org/event/453 -https://www.oceanexpert.org/expert/37424 -https://www.oceanexpert.org/expert/32823 -https://www.oceanexpert.org/expert/30446 -https://www.oceanexpert.org/institution/6969 -https://www.oceanexpert.org/expert/1752 -https://www.oceanexpert.org/expert/20527 -https://www.oceanexpert.org/expert/27984 -https://www.oceanexpert.org/institution/11294 -https://www.oceanexpert.org/expert/43348 -https://www.oceanexpert.org/expert/47826 -https://www.oceanexpert.org/expert/20555 -https://www.oceanexpert.org/expert/4278 -https://www.oceanexpert.org/expert/21987 -https://www.oceanexpert.org/expert/47131 -https://www.oceanexpert.org/expert/39179 -https://www.oceanexpert.org/expert/48123 -https://www.oceanexpert.org/expert/47013 -https://www.oceanexpert.org/institution/22104 -https://www.oceanexpert.org/institution/10819 -https://www.oceanexpert.org/expert/33149 -https://www.oceanexpert.org/event/1521 -https://www.oceanexpert.org/expert/3131 -https://www.oceanexpert.org/expert/26769 -https://www.oceanexpert.org/expert/8441 -https://www.oceanexpert.org/expert/46501 -https://www.oceanexpert.org/expert/2046 -https://www.oceanexpert.org/event/2897 -https://www.oceanexpert.org/expert/17902 -https://www.oceanexpert.org/event/1728 -https://www.oceanexpert.org/expert/29026 -https://www.oceanexpert.org/expert/27492 -https://www.oceanexpert.org/expert/18208 -https://www.oceanexpert.org/expert/42781 -https://www.oceanexpert.org/institution/21983 -https://www.oceanexpert.org/institution/13051 -https://www.oceanexpert.org/expert/23510 -https://www.oceanexpert.org/expert/29481 -https://www.oceanexpert.org/institution/18105 -https://www.oceanexpert.org/expert/32497 -https://www.oceanexpert.org/expert/47782 -https://www.oceanexpert.org/expert/45140 -https://www.oceanexpert.org/expert/45430 -https://www.oceanexpert.org/expert/15942 -https://www.oceanexpert.org/event/2400 -https://www.oceanexpert.org/expert/23858 -https://www.oceanexpert.org/institution/18036 -https://www.oceanexpert.org/expert/42630 -https://www.oceanexpert.org/expert/24683 -https://www.oceanexpert.org/institution/12034 -https://www.oceanexpert.org/expert/6647 -https://www.oceanexpert.org/institution/15714 -https://www.oceanexpert.org/expert/10929 -https://www.oceanexpert.org/expert/45408 -https://www.oceanexpert.org/expert/37367 -https://www.oceanexpert.org/expert/43137 -https://www.oceanexpert.org/expert/48816 -https://www.oceanexpert.org/institution/21919 -https://www.oceanexpert.org/institution/14712 -https://www.oceanexpert.org/expert/26235 -https://www.oceanexpert.org/expert/36202 -https://www.oceanexpert.org/expert/44332 -https://www.oceanexpert.org/expert/35038 -https://www.oceanexpert.org/expert/35136 -https://www.oceanexpert.org/institution/5649 -https://www.oceanexpert.org/expert/13241 -https://www.oceanexpert.org/expert/16111 -https://www.oceanexpert.org/institution/15601 -https://www.oceanexpert.org/expert/28815 -https://www.oceanexpert.org/expert/23384 -https://www.oceanexpert.org/expert/6905 -https://www.oceanexpert.org/expert/35814 -https://www.oceanexpert.org/expert/19859 -https://www.oceanexpert.org/institution/6470 -https://www.oceanexpert.org/expert/37355 -https://www.oceanexpert.org/expert/13087 -https://www.oceanexpert.org/institution/12290 -https://www.oceanexpert.org/institution/21972 -https://www.oceanexpert.org/expert/18856 -https://www.oceanexpert.org/institution/21703 -https://www.oceanexpert.org/expert/25085 -https://www.oceanexpert.org/institution/6967 -https://www.oceanexpert.org/expert/26746 -https://www.oceanexpert.org/expert/43317 -https://www.oceanexpert.org/institution/15273 -https://www.oceanexpert.org/expert/27549 -https://www.oceanexpert.org/event/1573 -https://www.oceanexpert.org/institution/18266 -https://www.oceanexpert.org/expert/29366 -https://www.oceanexpert.org/event/2963 -https://www.oceanexpert.org/expert/34812 -https://www.oceanexpert.org/expert/24469 -https://www.oceanexpert.org/expert/27455 -https://www.oceanexpert.org/expert/24115 -https://www.oceanexpert.org/expert/14286 -https://www.oceanexpert.org/expert/30590 -https://www.oceanexpert.org/expert/6348 -https://www.oceanexpert.org/institution/7357 -https://www.oceanexpert.org/event/957 -https://www.oceanexpert.org/expert/30136 -https://www.oceanexpert.org/expert/43161 -https://www.oceanexpert.org/expert/39475 -https://www.oceanexpert.org/event/162 -https://www.oceanexpert.org/institution/14501 -https://www.oceanexpert.org/institution/19354 -https://www.oceanexpert.org/expert/32984 -https://www.oceanexpert.org/expert/27776 -https://www.oceanexpert.org/expert/40085 -https://www.oceanexpert.org/expert/16877 -https://www.oceanexpert.org/expert/26471 -https://www.oceanexpert.org/expert/30248 -https://www.oceanexpert.org/institution/18677 -https://www.oceanexpert.org/expert/32438 -https://www.oceanexpert.org/event/2715 -https://www.oceanexpert.org/expert/30330 -https://www.oceanexpert.org/expert/20085 -https://www.oceanexpert.org/expert/36414 -https://www.oceanexpert.org/expert/21616 -https://www.oceanexpert.org/expert/19572 -https://www.oceanexpert.org/expert/1645 -https://www.oceanexpert.org/expert/31462 -https://www.oceanexpert.org/institution/17770 -https://www.oceanexpert.org/expert/37957 -https://www.oceanexpert.org/institution/20061 -https://www.oceanexpert.org/expert/18162 -https://www.oceanexpert.org/expert/28179 -https://www.oceanexpert.org/expert/15866 -https://www.oceanexpert.org/expert/23989 -https://www.oceanexpert.org/event/701 -https://www.oceanexpert.org/expert/4098 -https://www.oceanexpert.org/expert/42504 -https://www.oceanexpert.org/institution/7581 -https://www.oceanexpert.org/expert/12553 -https://www.oceanexpert.org/expert/28122 -https://www.oceanexpert.org/expert/42783 -https://www.oceanexpert.org/institution/21693 -https://www.oceanexpert.org/event/2912 -https://www.oceanexpert.org/expert/20943 -https://www.oceanexpert.org/event/1446 -https://www.oceanexpert.org/expert/19974 -https://www.oceanexpert.org/expert/25143 -https://www.oceanexpert.org/expert/25574 -https://www.oceanexpert.org/expert/27561 -https://www.oceanexpert.org/institution/21164 -https://www.oceanexpert.org/expert/42452 -https://www.oceanexpert.org/institution/6903 -https://www.oceanexpert.org/expert/44308 -https://www.oceanexpert.org/expert/3543 -https://www.oceanexpert.org/institution/20632 -https://www.oceanexpert.org/expert/26521 -https://www.oceanexpert.org/institution/19233 -https://www.oceanexpert.org/expert/19024 -https://www.oceanexpert.org/expert/11577 -https://www.oceanexpert.org/expert/14405 -https://www.oceanexpert.org/expert/19742 -https://www.oceanexpert.org/expert/34254 -https://www.oceanexpert.org/institution/15611 -https://www.oceanexpert.org/expert/23358 -https://www.oceanexpert.org/expert/604 -https://www.oceanexpert.org/expert/10983 -https://www.oceanexpert.org/expert/47446 -https://www.oceanexpert.org/institution/20189 -https://www.oceanexpert.org/expert/24627 -https://www.oceanexpert.org/expert/29234 -https://www.oceanexpert.org/expert/19458 -https://www.oceanexpert.org/event/168 -https://www.oceanexpert.org/expert/34696 -https://www.oceanexpert.org/expert/18145 -https://www.oceanexpert.org/expert/39392 -https://www.oceanexpert.org/expert/27909 -https://www.oceanexpert.org/institution/19335 -https://www.oceanexpert.org/institution/14611 -https://www.oceanexpert.org/expert/17305 -https://www.oceanexpert.org/institution/14752 -https://www.oceanexpert.org/expert/20711 -https://www.oceanexpert.org/expert/44468 -https://www.oceanexpert.org/institution/11740 -https://www.oceanexpert.org/event/1131 -https://www.oceanexpert.org/event/2413 -https://www.oceanexpert.org/institution/10326 -https://www.oceanexpert.org/institution/18025 -https://www.oceanexpert.org/expert/44712 -https://www.oceanexpert.org/institution/10533 -https://www.oceanexpert.org/expert/14652 -https://www.oceanexpert.org/institution/18112 -https://www.oceanexpert.org/expert/46731 -https://www.oceanexpert.org/institution/20650 -https://www.oceanexpert.org/expert/20440 -https://www.oceanexpert.org/expert/35531 -https://www.oceanexpert.org/institution/18996 -https://www.oceanexpert.org/institution/17937 -https://www.oceanexpert.org/expert/27059 -https://www.oceanexpert.org/event/2899 -https://www.oceanexpert.org/expert/16658 -https://www.oceanexpert.org/event/3116 -https://www.oceanexpert.org/expert/11325 -https://www.oceanexpert.org/event/2052 -https://www.oceanexpert.org/event/1437 -https://www.oceanexpert.org/expert/24483 -https://www.oceanexpert.org/expert/8736 -https://www.oceanexpert.org/expert/34687 -https://www.oceanexpert.org/expert/24650 -https://www.oceanexpert.org/expert/1662 -https://www.oceanexpert.org/event/2808 -https://www.oceanexpert.org/expert/40852 -https://www.oceanexpert.org/expert/16503 -https://www.oceanexpert.org/institution/19402 -https://www.oceanexpert.org/expert/11115 -https://www.oceanexpert.org/expert/43983 -https://www.oceanexpert.org/expert/4427 -https://www.oceanexpert.org/institution/11423 -https://www.oceanexpert.org/expert/42820 -https://www.oceanexpert.org/expert/17504 -https://www.oceanexpert.org/expert/33507 -https://www.oceanexpert.org/institution/18313 -https://www.oceanexpert.org/expert/6600 -https://www.oceanexpert.org/expert/44090 -https://www.oceanexpert.org/expert/23413 -https://www.oceanexpert.org/expert/21771 -https://www.oceanexpert.org/expert/46527 -https://www.oceanexpert.org/expert/20479 -https://www.oceanexpert.org/institution/19521 -https://www.oceanexpert.org/expert/12673 -https://www.oceanexpert.org/expert/34925 -https://www.oceanexpert.org/expert/3473 -https://www.oceanexpert.org/expert/27285 -https://www.oceanexpert.org/event/1488 -https://www.oceanexpert.org/expert/27317 -https://www.oceanexpert.org/expert/39753 -https://www.oceanexpert.org/expert/30526 -https://www.oceanexpert.org/expert/17367 -https://www.oceanexpert.org/expert/22697 -https://www.oceanexpert.org/expert/38504 -https://www.oceanexpert.org/expert/30735 -https://www.oceanexpert.org/expert/32997 -https://www.oceanexpert.org/institution/18260 -https://www.oceanexpert.org/expert/1528 -https://www.oceanexpert.org/expert/21493 -https://www.oceanexpert.org/expert/43814 -https://www.oceanexpert.org/institution/18067 -https://www.oceanexpert.org/expert/27029 -https://www.oceanexpert.org/institution/6785 -https://www.oceanexpert.org/expert/13909 -https://www.oceanexpert.org/expert/40621 -https://www.oceanexpert.org/expert/29696 -https://www.oceanexpert.org/institution/21937 -https://www.oceanexpert.org/expert/23252 -https://www.oceanexpert.org/expert/18753 -https://www.oceanexpert.org/event/790 -https://www.oceanexpert.org/expert/26253 -https://www.oceanexpert.org/event/23 -https://www.oceanexpert.org/institution/21273 -https://www.oceanexpert.org/institution/19475 -https://www.oceanexpert.org/institution/19123 -https://www.oceanexpert.org/institution/19594 -https://www.oceanexpert.org/expert/22851 -https://www.oceanexpert.org/expert/27131 -https://www.oceanexpert.org/expert/39968 -https://www.oceanexpert.org/institution/7000 -https://www.oceanexpert.org/institution/12869 -https://www.oceanexpert.org/institution/14944 -https://www.oceanexpert.org/expert/48555 -https://www.oceanexpert.org/expert/37341 -https://www.oceanexpert.org/expert/23795 -https://www.oceanexpert.org/expert/25770 -https://www.oceanexpert.org/expert/23455 -https://www.oceanexpert.org/expert/30448 -https://www.oceanexpert.org/event/2325 -https://www.oceanexpert.org/expert/3772 -https://www.oceanexpert.org/institution/18702 -https://www.oceanexpert.org/institution/18873 -https://www.oceanexpert.org/expert/2076 -https://www.oceanexpert.org/event/1045 -https://www.oceanexpert.org/expert/35183 -https://www.oceanexpert.org/expert/20137 -https://www.oceanexpert.org/expert/47581 -https://www.oceanexpert.org/expert/28458 -https://www.oceanexpert.org/institution/18257 -https://www.oceanexpert.org/expert/45528 -https://www.oceanexpert.org/expert/19211 -https://www.oceanexpert.org/institution/18120 -https://www.oceanexpert.org/institution/20934 -https://www.oceanexpert.org/expert/45245 -https://www.oceanexpert.org/institution/7963 -https://www.oceanexpert.org/expert/2219 -https://www.oceanexpert.org/expert/22290 -https://www.oceanexpert.org/expert/27280 -https://www.oceanexpert.org/expert/30159 -https://www.oceanexpert.org/expert/23172 -https://www.oceanexpert.org/institution/12556 -https://www.oceanexpert.org/event/1116 -https://www.oceanexpert.org/event/2948 -https://www.oceanexpert.org/institution/22093 -https://www.oceanexpert.org/institution/16704 -https://www.oceanexpert.org/event/882 -https://www.oceanexpert.org/expert/25736 -https://www.oceanexpert.org/institution/13264 -https://www.oceanexpert.org/institution/17247 -https://www.oceanexpert.org/institution/19607 -https://www.oceanexpert.org/expert/19405 -https://www.oceanexpert.org/expert/18848 -https://www.oceanexpert.org/expert/8861 -https://www.oceanexpert.org/expert/47451 -https://www.oceanexpert.org/expert/30409 -https://www.oceanexpert.org/institution/12097 -https://www.oceanexpert.org/expert/29332 -https://www.oceanexpert.org/expert/42940 -https://www.oceanexpert.org/expert/45134 -https://www.oceanexpert.org/expert/29922 -https://www.oceanexpert.org/expert/17356 -https://www.oceanexpert.org/expert/38728 -https://www.oceanexpert.org/institution/12220 -https://www.oceanexpert.org/institution/9651 -https://www.oceanexpert.org/expert/36873 -https://www.oceanexpert.org/expert/14619 -https://www.oceanexpert.org/expert/17281 -https://www.oceanexpert.org/expert/23261 -https://www.oceanexpert.org/institution/20638 -https://www.oceanexpert.org/expert/36847 -https://www.oceanexpert.org/expert/21065 -https://www.oceanexpert.org/expert/43145 -https://www.oceanexpert.org/event/418 -https://www.oceanexpert.org/expert/719 -https://www.oceanexpert.org/institution/15992 -https://www.oceanexpert.org/institution/20433 -https://www.oceanexpert.org/expert/43192 -https://www.oceanexpert.org/expert/23260 -https://www.oceanexpert.org/event/2749 -https://www.oceanexpert.org/expert/41079 -https://www.oceanexpert.org/expert/2939 -https://www.oceanexpert.org/expert/33135 -https://www.oceanexpert.org/institution/10855 -https://www.oceanexpert.org/expert/27316 -https://www.oceanexpert.org/expert/19057 -https://www.oceanexpert.org/expert/18709 -https://www.oceanexpert.org/institution/20192 -https://www.oceanexpert.org/expert/34669 -https://www.oceanexpert.org/expert/39835 -https://www.oceanexpert.org/expert/16228 -https://www.oceanexpert.org/institution/16020 -https://www.oceanexpert.org/institution/19435 -https://www.oceanexpert.org/expert/23190 -https://www.oceanexpert.org/expert/26547 -https://www.oceanexpert.org/expert/27410 -https://www.oceanexpert.org/expert/24648 -https://www.oceanexpert.org/expert/25970 -https://www.oceanexpert.org/expert/47194 -https://www.oceanexpert.org/expert/5573 -https://www.oceanexpert.org/expert/18174 -https://www.oceanexpert.org/expert/24712 -https://www.oceanexpert.org/expert/40048 -https://www.oceanexpert.org/expert/46629 -https://www.oceanexpert.org/institution/19866 -https://www.oceanexpert.org/expert/22875 -https://www.oceanexpert.org/event/2100 -https://www.oceanexpert.org/expert/46752 -https://www.oceanexpert.org/expert/48510 -https://www.oceanexpert.org/expert/14467 -https://www.oceanexpert.org/event/1464 -https://www.oceanexpert.org/institution/18822 -https://www.oceanexpert.org/expert/26237 -https://www.oceanexpert.org/expert/12929 -https://www.oceanexpert.org/expert/20012 -https://www.oceanexpert.org/event/1614 -https://www.oceanexpert.org/expert/43342 -https://www.oceanexpert.org/expert/18565 -https://www.oceanexpert.org/institution/13928 -https://www.oceanexpert.org/event/2829 -https://www.oceanexpert.org/event/2841 -https://www.oceanexpert.org/expert/7116 -https://www.oceanexpert.org/institution/17135 -https://www.oceanexpert.org/expert/48930 -https://www.oceanexpert.org/institution/16819 -https://www.oceanexpert.org/expert/45936 -https://www.oceanexpert.org/expert/23279 -https://www.oceanexpert.org/expert/46474 -https://www.oceanexpert.org/expert/43686 -https://www.oceanexpert.org/institution/11582 -https://www.oceanexpert.org/event/2974 -https://www.oceanexpert.org/expert/32437 -https://www.oceanexpert.org/expert/25398 -https://www.oceanexpert.org/event/2314 -https://www.oceanexpert.org/expert/4346 -https://www.oceanexpert.org/expert/26650 -https://www.oceanexpert.org/expert/8578 -https://www.oceanexpert.org/expert/39242 -https://www.oceanexpert.org/expert/48147 -https://www.oceanexpert.org/expert/13031 -https://www.oceanexpert.org/event/754 -https://www.oceanexpert.org/expert/23811 -https://www.oceanexpert.org/expert/34338 -https://www.oceanexpert.org/expert/17017 -https://www.oceanexpert.org/expert/34115 -https://www.oceanexpert.org/expert/39034 -https://www.oceanexpert.org/institution/20456 -https://www.oceanexpert.org/expert/24460 -https://www.oceanexpert.org/expert/45187 -https://www.oceanexpert.org/institution/16003 -https://www.oceanexpert.org/expert/48599 -https://www.oceanexpert.org/event/1854 -https://www.oceanexpert.org/event/2918 -https://www.oceanexpert.org/expert/12157 -https://www.oceanexpert.org/institution/7016 -https://www.oceanexpert.org/institution/14246 -https://www.oceanexpert.org/expert/20798 -https://www.oceanexpert.org/expert/48046 -https://www.oceanexpert.org/institution/13577 -https://www.oceanexpert.org/expert/726 -https://www.oceanexpert.org/expert/26825 -https://www.oceanexpert.org/institution/17445 -https://www.oceanexpert.org/expert/28267 -https://www.oceanexpert.org/expert/29706 -https://www.oceanexpert.org/event/2315 -https://www.oceanexpert.org/institution/9622 -https://www.oceanexpert.org/expert/34821 -https://www.oceanexpert.org/institution/18758 -https://www.oceanexpert.org/event/2689 -https://www.oceanexpert.org/expert/33016 -https://www.oceanexpert.org/expert/38525 -https://www.oceanexpert.org/expert/22521 -https://www.oceanexpert.org/expert/28159 -https://www.oceanexpert.org/expert/20182 -https://www.oceanexpert.org/expert/19897 -https://www.oceanexpert.org/expert/42577 -https://www.oceanexpert.org/institution/18804 -https://www.oceanexpert.org/institution/20616 -https://www.oceanexpert.org/institution/21004 -https://www.oceanexpert.org/expert/27618 -https://www.oceanexpert.org/institution/13985 -https://www.oceanexpert.org/event/2861 -https://www.oceanexpert.org/expert/37063 -https://www.oceanexpert.org/event/1199 -https://www.oceanexpert.org/expert/24879 -https://www.oceanexpert.org/event/1464 -https://www.oceanexpert.org/institution/18484 -https://www.oceanexpert.org/institution/14009 -https://www.oceanexpert.org/expert/21743 -https://www.oceanexpert.org/expert/19584 -https://www.oceanexpert.org/expert/14877 -https://www.oceanexpert.org/expert/12012 -https://www.oceanexpert.org/expert/28415 -https://www.oceanexpert.org/expert/11534 -https://www.oceanexpert.org/institution/21091 -https://www.oceanexpert.org/expert/27070 -https://www.oceanexpert.org/expert/17419 -https://www.oceanexpert.org/expert/8862 -https://www.oceanexpert.org/expert/29944 -https://www.oceanexpert.org/expert/24077 -https://www.oceanexpert.org/institution/14645 -https://www.oceanexpert.org/expert/29272 -https://www.oceanexpert.org/expert/47437 -https://www.oceanexpert.org/institution/14889 -https://www.oceanexpert.org/expert/29232 -https://www.oceanexpert.org/expert/42459 -https://www.oceanexpert.org/institution/7703 -https://www.oceanexpert.org/expert/38604 -https://www.oceanexpert.org/institution/15024 -https://www.oceanexpert.org/expert/45603 -https://www.oceanexpert.org/expert/31673 -https://www.oceanexpert.org/expert/32469 -https://www.oceanexpert.org/expert/2305 -https://www.oceanexpert.org/expert/27304 -https://www.oceanexpert.org/event/2773 -https://www.oceanexpert.org/expert/19712 -https://www.oceanexpert.org/expert/47094 -https://www.oceanexpert.org/expert/46969 -https://www.oceanexpert.org/institution/12444 -https://www.oceanexpert.org/institution/19865 -https://www.oceanexpert.org/expert/19555 -https://www.oceanexpert.org/expert/30728 -https://www.oceanexpert.org/expert/21032 -https://www.oceanexpert.org/expert/24707 -https://www.oceanexpert.org/expert/19749 -https://www.oceanexpert.org/expert/7466 -https://www.oceanexpert.org/expert/44257 -https://www.oceanexpert.org/institution/9380 -https://www.oceanexpert.org/expert/37789 -https://www.oceanexpert.org/institution/18817 -https://www.oceanexpert.org/expert/26624 -https://www.oceanexpert.org/expert/19790 -https://www.oceanexpert.org/institution/12370 -https://www.oceanexpert.org/expert/21205 -https://www.oceanexpert.org/expert/33286 -https://www.oceanexpert.org/institution/10489 -https://www.oceanexpert.org/expert/15855 -https://www.oceanexpert.org/expert/45636 -https://www.oceanexpert.org/expert/16348 -https://www.oceanexpert.org/expert/1329 -https://www.oceanexpert.org/expert/33907 -https://www.oceanexpert.org/institution/20894 -https://www.oceanexpert.org/institution/19293 -https://www.oceanexpert.org/expert/36736 -https://www.oceanexpert.org/institution/13593 -https://www.oceanexpert.org/expert/19661 -https://www.oceanexpert.org/institution/19085 -https://www.oceanexpert.org/expert/26180 -https://www.oceanexpert.org/expert/48303 -https://www.oceanexpert.org/expert/33495 -https://www.oceanexpert.org/expert/39619 -https://www.oceanexpert.org/expert/33210 -https://www.oceanexpert.org/expert/9102 -https://www.oceanexpert.org/institution/12268 -https://www.oceanexpert.org/institution/19574 -https://www.oceanexpert.org/expert/37292 -https://www.oceanexpert.org/expert/19386 -https://www.oceanexpert.org/expert/36426 -https://www.oceanexpert.org/expert/39396 -https://www.oceanexpert.org/institution/10298 -https://www.oceanexpert.org/expert/45845 -https://www.oceanexpert.org/expert/6010 -https://www.oceanexpert.org/expert/186 -https://www.oceanexpert.org/institution/13791 -https://www.oceanexpert.org/expert/37956 -https://www.oceanexpert.org/expert/11564 -https://www.oceanexpert.org/expert/27843 -https://www.oceanexpert.org/expert/14611 -https://www.oceanexpert.org/expert/17318 -https://www.oceanexpert.org/expert/43930 -https://www.oceanexpert.org/expert/37725 -https://www.oceanexpert.org/expert/630 -https://www.oceanexpert.org/expert/32472 -https://www.oceanexpert.org/expert/8343 -https://www.oceanexpert.org/event/2187 -https://www.oceanexpert.org/expert/15773 -https://www.oceanexpert.org/institution/7168 -https://www.oceanexpert.org/expert/26927 -https://www.oceanexpert.org/institution/17896 -https://www.oceanexpert.org/institution/7379 -https://www.oceanexpert.org/institution/12762 -https://www.oceanexpert.org/expert/20475 -https://www.oceanexpert.org/institution/14960 -https://www.oceanexpert.org/institution/7534 -https://www.oceanexpert.org/expert/40288 -https://www.oceanexpert.org/event/984 -https://www.oceanexpert.org/expert/22709 -https://www.oceanexpert.org/expert/32888 -https://www.oceanexpert.org/institution/7656 -https://www.oceanexpert.org/institution/13374 -https://www.oceanexpert.org/expert/30738 -https://www.oceanexpert.org/expert/16756 -https://www.oceanexpert.org/expert/48755 -https://www.oceanexpert.org/institution/19542 -https://www.oceanexpert.org/expert/21982 -https://www.oceanexpert.org/expert/14274 -https://www.oceanexpert.org/expert/9044 -https://www.oceanexpert.org/expert/36257 -https://www.oceanexpert.org/event/805 -https://www.oceanexpert.org/expert/32861 -https://www.oceanexpert.org/event/1392 -https://www.oceanexpert.org/institution/12335 -https://www.oceanexpert.org/event/3055 -https://www.oceanexpert.org/expert/34858 -https://www.oceanexpert.org/expert/24511 -https://www.oceanexpert.org/institution/16247 -https://www.oceanexpert.org/expert/29532 -https://www.oceanexpert.org/institution/18692 -https://www.oceanexpert.org/event/1293 -https://www.oceanexpert.org/expert/47016 -https://www.oceanexpert.org/expert/36219 -https://www.oceanexpert.org/expert/3549 -https://www.oceanexpert.org/expert/8041 -https://www.oceanexpert.org/expert/27405 -https://www.oceanexpert.org/institution/12540 -https://www.oceanexpert.org/expert/45148 -https://www.oceanexpert.org/expert/22521 -https://www.oceanexpert.org/institution/12195 -https://www.oceanexpert.org/expert/20630 -https://www.oceanexpert.org/expert/19564 -https://www.oceanexpert.org/expert/46826 -https://www.oceanexpert.org/expert/26634 -https://www.oceanexpert.org/expert/21355 -https://www.oceanexpert.org/expert/20496 -https://www.oceanexpert.org/event/3174 -https://www.oceanexpert.org/expert/42554 -https://www.oceanexpert.org/institution/20054 -https://www.oceanexpert.org/expert/30167 -https://www.oceanexpert.org/expert/10838 -https://www.oceanexpert.org/expert/48766 -https://www.oceanexpert.org/expert/25109 -https://www.oceanexpert.org/expert/34899 -https://www.oceanexpert.org/institution/18967 -https://www.oceanexpert.org/expert/27369 -https://www.oceanexpert.org/institution/21122 -https://www.oceanexpert.org/institution/13115 -https://www.oceanexpert.org/institution/6260 -https://www.oceanexpert.org/expert/20443 -https://www.oceanexpert.org/expert/12039 -https://www.oceanexpert.org/expert/43306 -https://www.oceanexpert.org/institution/21256 -https://www.oceanexpert.org/expert/8006 -https://www.oceanexpert.org/expert/7281 -https://www.oceanexpert.org/expert/33611 -https://www.oceanexpert.org/expert/41570 -https://www.oceanexpert.org/institution/6380 -https://www.oceanexpert.org/event/1523 -https://www.oceanexpert.org/expert/48850 -https://www.oceanexpert.org/expert/48469 -https://www.oceanexpert.org/expert/1928 -https://www.oceanexpert.org/expert/6973 -https://www.oceanexpert.org/expert/18400 -https://www.oceanexpert.org/expert/24132 -https://www.oceanexpert.org/institution/20057 -https://www.oceanexpert.org/expert/27454 -https://www.oceanexpert.org/expert/37467 -https://www.oceanexpert.org/expert/23883 -https://www.oceanexpert.org/expert/17639 -https://www.oceanexpert.org/institution/19750 -https://www.oceanexpert.org/expert/39478 -https://www.oceanexpert.org/expert/27676 -https://www.oceanexpert.org/expert/16169 -https://www.oceanexpert.org/expert/46629 -https://www.oceanexpert.org/expert/28049 -https://www.oceanexpert.org/event/356 -https://www.oceanexpert.org/expert/2587 -https://www.oceanexpert.org/expert/32504 -https://www.oceanexpert.org/expert/45803 -https://www.oceanexpert.org/expert/27420 -https://www.oceanexpert.org/expert/18343 -https://www.oceanexpert.org/expert/43161 -https://www.oceanexpert.org/expert/36955 -https://www.oceanexpert.org/expert/19538 -https://www.oceanexpert.org/institution/20423 -https://www.oceanexpert.org/institution/5636 -https://www.oceanexpert.org/institution/17313 -https://www.oceanexpert.org/expert/15827 -https://www.oceanexpert.org/event/1071 -https://www.oceanexpert.org/expert/12986 -https://www.oceanexpert.org/expert/46354 -https://www.oceanexpert.org/expert/43445 -https://www.oceanexpert.org/institution/8868 -https://www.oceanexpert.org/expert/22374 -https://www.oceanexpert.org/expert/28021 -https://www.oceanexpert.org/institution/9282 -https://www.oceanexpert.org/expert/40407 -https://www.oceanexpert.org/expert/35359 -https://www.oceanexpert.org/institution/20977 -https://www.oceanexpert.org/institution/10884 -https://www.oceanexpert.org/expert/26188 -https://www.oceanexpert.org/expert/16701 -https://www.oceanexpert.org/event/2402 -https://www.oceanexpert.org/expert/37425 -https://www.oceanexpert.org/institution/21900 -https://www.oceanexpert.org/institution/20369 -https://www.oceanexpert.org/expert/30392 -https://www.oceanexpert.org/institution/21410 -https://www.oceanexpert.org/expert/45036 -https://www.oceanexpert.org/institution/19452 -https://www.oceanexpert.org/institution/18992 -https://www.oceanexpert.org/institution/21967 -https://www.oceanexpert.org/institution/12872 -https://www.oceanexpert.org/institution/6907 -https://www.oceanexpert.org/expert/28964 -https://www.oceanexpert.org/institution/20430 -https://www.oceanexpert.org/institution/15685 -https://www.oceanexpert.org/expert/39605 -https://www.oceanexpert.org/expert/47826 -https://www.oceanexpert.org/expert/18262 -https://www.oceanexpert.org/expert/39972 -https://www.oceanexpert.org/expert/37112 -https://www.oceanexpert.org/expert/44494 -https://www.oceanexpert.org/expert/24557 -https://www.oceanexpert.org/expert/26125 -https://www.oceanexpert.org/expert/48076 -https://www.oceanexpert.org/expert/41570 -https://www.oceanexpert.org/expert/40566 -https://www.oceanexpert.org/expert/16727 -https://www.oceanexpert.org/expert/18452 -https://www.oceanexpert.org/expert/45182 -https://www.oceanexpert.org/expert/14043 -https://www.oceanexpert.org/event/1855 -https://www.oceanexpert.org/expert/43716 -https://www.oceanexpert.org/expert/44433 -https://www.oceanexpert.org/expert/3476 -https://www.oceanexpert.org/expert/22044 -https://www.oceanexpert.org/expert/31503 -https://www.oceanexpert.org/institution/21672 -https://www.oceanexpert.org/institution/20015 -https://www.oceanexpert.org/expert/43834 -https://www.oceanexpert.org/institution/15153 -https://www.oceanexpert.org/institution/20170 -https://www.oceanexpert.org/institution/15859 -https://www.oceanexpert.org/expert/17064 -https://www.oceanexpert.org/expert/19894 -https://www.oceanexpert.org/expert/17469 -https://www.oceanexpert.org/expert/46380 -https://www.oceanexpert.org/expert/35737 -https://www.oceanexpert.org/expert/26008 -https://www.oceanexpert.org/expert/37114 -https://www.oceanexpert.org/institution/21093 -https://www.oceanexpert.org/expert/47784 -https://www.oceanexpert.org/institution/19797 -https://www.oceanexpert.org/institution/20711 -https://www.oceanexpert.org/expert/11001 -https://www.oceanexpert.org/institution/16256 -https://www.oceanexpert.org/expert/20055 -https://www.oceanexpert.org/expert/47881 -https://www.oceanexpert.org/event/1745 -https://www.oceanexpert.org/institution/20759 -https://www.oceanexpert.org/expert/48821 -https://www.oceanexpert.org/event/1340 -https://www.oceanexpert.org/expert/46449 -https://www.oceanexpert.org/expert/43985 -https://www.oceanexpert.org/expert/1307 -https://www.oceanexpert.org/expert/2321 -https://www.oceanexpert.org/institution/21251 -https://www.oceanexpert.org/institution/20338 -https://www.oceanexpert.org/expert/27418 -https://www.oceanexpert.org/institution/14146 -https://www.oceanexpert.org/expert/31665 -https://www.oceanexpert.org/expert/27313 -https://www.oceanexpert.org/expert/12976 -https://www.oceanexpert.org/expert/17997 -https://www.oceanexpert.org/event/1892 -https://www.oceanexpert.org/expert/23916 -https://www.oceanexpert.org/expert/27176 -https://www.oceanexpert.org/expert/44382 -https://www.oceanexpert.org/expert/26116 -https://www.oceanexpert.org/expert/11527 -https://www.oceanexpert.org/expert/12202 -https://www.oceanexpert.org/expert/16632 -https://www.oceanexpert.org/expert/32982 -https://www.oceanexpert.org/institution/20143 -https://www.oceanexpert.org/institution/20000 -https://www.oceanexpert.org/expert/20289 -https://www.oceanexpert.org/institution/7581 -https://www.oceanexpert.org/expert/38062 -https://www.oceanexpert.org/expert/17194 -https://www.oceanexpert.org/institution/15999 -https://www.oceanexpert.org/expert/47740 -https://www.oceanexpert.org/institution/21812 -https://www.oceanexpert.org/expert/35186 -https://www.oceanexpert.org/expert/19929 -https://www.oceanexpert.org/expert/8738 -https://www.oceanexpert.org/expert/48711 -https://www.oceanexpert.org/expert/44349 -https://www.oceanexpert.org/expert/17962 -https://www.oceanexpert.org/expert/23532 -https://www.oceanexpert.org/expert/22049 -https://www.oceanexpert.org/expert/20193 -https://www.oceanexpert.org/event/2831 -https://www.oceanexpert.org/expert/17667 -https://www.oceanexpert.org/expert/42154 -https://www.oceanexpert.org/expert/45368 -https://www.oceanexpert.org/institution/19041 -https://www.oceanexpert.org/institution/8477 -https://www.oceanexpert.org/expert/45485 -https://www.oceanexpert.org/expert/20711 -https://www.oceanexpert.org/expert/47716 -https://www.oceanexpert.org/expert/34588 -https://www.oceanexpert.org/expert/36655 -https://www.oceanexpert.org/expert/19674 -https://www.oceanexpert.org/expert/24125 -https://www.oceanexpert.org/expert/20620 -https://www.oceanexpert.org/institution/21306 -https://www.oceanexpert.org/institution/20691 -https://www.oceanexpert.org/event/2106 -https://www.oceanexpert.org/expert/27571 -https://www.oceanexpert.org/expert/24514 -https://www.oceanexpert.org/expert/16683 -https://www.oceanexpert.org/expert/25855 -https://www.oceanexpert.org/institution/18244 -https://www.oceanexpert.org/event/1904 -https://www.oceanexpert.org/institution/14188 -https://www.oceanexpert.org/institution/20217 -https://www.oceanexpert.org/expert/44933 -https://www.oceanexpert.org/expert/4595 -https://www.oceanexpert.org/event/813 -https://www.oceanexpert.org/expert/48116 -https://www.oceanexpert.org/expert/17633 -https://www.oceanexpert.org/expert/44147 -https://www.oceanexpert.org/expert/32229 -https://www.oceanexpert.org/expert/26903 -https://www.oceanexpert.org/expert/29183 -https://www.oceanexpert.org/expert/48465 -https://www.oceanexpert.org/expert/21700 -https://www.oceanexpert.org/institution/22166 -https://www.oceanexpert.org/expert/43503 -https://www.oceanexpert.org/expert/48140 -https://www.oceanexpert.org/expert/46621 -https://www.oceanexpert.org/expert/36785 -https://www.oceanexpert.org/expert/18125 -https://www.oceanexpert.org/expert/24073 -https://www.oceanexpert.org/expert/12977 -https://www.oceanexpert.org/expert/8596 -https://www.oceanexpert.org/expert/28357 -https://www.oceanexpert.org/expert/24461 -https://www.oceanexpert.org/institution/17829 -https://www.oceanexpert.org/institution/10075 -https://www.oceanexpert.org/expert/38295 -https://www.oceanexpert.org/expert/28645 -https://www.oceanexpert.org/expert/43581 -https://www.oceanexpert.org/institution/12810 -https://www.oceanexpert.org/expert/16712 -https://www.oceanexpert.org/expert/35421 -https://www.oceanexpert.org/event/2684 -https://www.oceanexpert.org/expert/12112 -https://www.oceanexpert.org/institution/20556 -https://www.oceanexpert.org/expert/30886 -https://www.oceanexpert.org/expert/14129 -https://www.oceanexpert.org/expert/19366 -https://www.oceanexpert.org/expert/30776 -https://www.oceanexpert.org/institution/20521 -https://www.oceanexpert.org/event/2215 -https://www.oceanexpert.org/expert/29837 -https://www.oceanexpert.org/expert/18479 -https://www.oceanexpert.org/institution/17968 -https://www.oceanexpert.org/expert/18437 -https://www.oceanexpert.org/institution/20410 -https://www.oceanexpert.org/expert/36339 -https://www.oceanexpert.org/expert/17511 -https://www.oceanexpert.org/event/1315 -https://www.oceanexpert.org/institution/18477 -https://www.oceanexpert.org/expert/34255 -https://www.oceanexpert.org/expert/20078 -https://www.oceanexpert.org/institution/20561 -https://www.oceanexpert.org/institution/20314 -https://www.oceanexpert.org/expert/44401 -https://www.oceanexpert.org/expert/16394 -https://www.oceanexpert.org/expert/48141 -https://www.oceanexpert.org/expert/35257 -https://www.oceanexpert.org/institution/20466 -https://www.oceanexpert.org/expert/35036 -https://www.oceanexpert.org/expert/48115 -https://www.oceanexpert.org/expert/30035 -https://www.oceanexpert.org/expert/17639 -https://www.oceanexpert.org/expert/38310 -https://www.oceanexpert.org/institution/21070 -https://www.oceanexpert.org/expert/25659 -https://www.oceanexpert.org/expert/559 -https://www.oceanexpert.org/event/3101 -https://www.oceanexpert.org/expert/18539 -https://www.oceanexpert.org/expert/26652 -https://www.oceanexpert.org/expert/40032 -https://www.oceanexpert.org/expert/24275 -https://www.oceanexpert.org/institution/16240 -https://www.oceanexpert.org/expert/33869 -https://www.oceanexpert.org/expert/48556 -https://www.oceanexpert.org/expert/12454 -https://www.oceanexpert.org/expert/2013 -https://www.oceanexpert.org/institution/19814 -https://www.oceanexpert.org/expert/30728 -https://www.oceanexpert.org/expert/22753 -https://www.oceanexpert.org/institution/13651 -https://www.oceanexpert.org/institution/10600 -https://www.oceanexpert.org/institution/14058 -https://www.oceanexpert.org/expert/35207 -https://www.oceanexpert.org/event/708 -https://www.oceanexpert.org/expert/44825 -https://www.oceanexpert.org/expert/33543 -https://www.oceanexpert.org/expert/25283 -https://www.oceanexpert.org/institution/6656 -https://www.oceanexpert.org/expert/32132 -https://www.oceanexpert.org/expert/27953 -https://www.oceanexpert.org/expert/7182 -https://www.oceanexpert.org/expert/31984 -https://www.oceanexpert.org/expert/19086 -https://www.oceanexpert.org/event/1701 -https://www.oceanexpert.org/expert/45815 -https://www.oceanexpert.org/expert/26239 -https://www.oceanexpert.org/institution/11349 -https://www.oceanexpert.org/expert/48904 -https://www.oceanexpert.org/expert/15474 -https://www.oceanexpert.org/expert/21811 -https://www.oceanexpert.org/expert/46819 -https://www.oceanexpert.org/expert/32501 -https://www.oceanexpert.org/expert/17335 -https://www.oceanexpert.org/expert/24014 -https://www.oceanexpert.org/expert/39638 -https://www.oceanexpert.org/expert/48525 -https://www.oceanexpert.org/expert/31503 -https://www.oceanexpert.org/expert/24489 -https://www.oceanexpert.org/expert/43844 -https://www.oceanexpert.org/expert/18803 -https://www.oceanexpert.org/expert/46932 -https://www.oceanexpert.org/expert/2156 -https://www.oceanexpert.org/expert/36660 -https://www.oceanexpert.org/expert/22787 -https://www.oceanexpert.org/institution/13419 -https://www.oceanexpert.org/expert/16473 -https://www.oceanexpert.org/expert/31154 -https://www.oceanexpert.org/expert/17583 -https://www.oceanexpert.org/expert/26615 -https://www.oceanexpert.org/event/839 -https://www.oceanexpert.org/expert/38051 -https://www.oceanexpert.org/event/684 -https://www.oceanexpert.org/expert/31673 -https://www.oceanexpert.org/expert/25195 -https://www.oceanexpert.org/institution/20351 -https://www.oceanexpert.org/expert/14011 -https://www.oceanexpert.org/expert/35625 -https://www.oceanexpert.org/expert/37664 -https://www.oceanexpert.org/expert/36930 -https://www.oceanexpert.org/institution/15253 -https://www.oceanexpert.org/institution/19850 -https://www.oceanexpert.org/expert/27512 -https://www.oceanexpert.org/expert/20001 -https://www.oceanexpert.org/event/1810 -https://www.oceanexpert.org/event/2691 -https://www.oceanexpert.org/expert/47147 -https://www.oceanexpert.org/institution/12919 -https://www.oceanexpert.org/expert/37808 -https://www.oceanexpert.org/expert/44822 -https://www.oceanexpert.org/expert/18887 -https://www.oceanexpert.org/expert/22506 -https://www.oceanexpert.org/expert/26349 -https://www.oceanexpert.org/expert/34392 -https://www.oceanexpert.org/event/1724 -https://www.oceanexpert.org/expert/34478 -https://www.oceanexpert.org/event/2431 -https://www.oceanexpert.org/expert/27957 -https://www.oceanexpert.org/institution/18762 -https://www.oceanexpert.org/expert/44231 -https://www.oceanexpert.org/expert/31103 -https://www.oceanexpert.org/expert/44015 -https://www.oceanexpert.org/expert/21118 -https://www.oceanexpert.org/expert/22686 -https://www.oceanexpert.org/institution/6963 -https://www.oceanexpert.org/event/294 -https://www.oceanexpert.org/expert/20784 -https://www.oceanexpert.org/expert/33391 -https://www.oceanexpert.org/institution/19230 -https://www.oceanexpert.org/institution/15082 -https://www.oceanexpert.org/expert/20189 -https://www.oceanexpert.org/expert/19058 -https://www.oceanexpert.org/expert/36934 -https://www.oceanexpert.org/institution/20685 -https://www.oceanexpert.org/institution/21455 -https://www.oceanexpert.org/expert/23422 -https://www.oceanexpert.org/expert/20197 -https://www.oceanexpert.org/expert/21001 -https://www.oceanexpert.org/institution/21030 -https://www.oceanexpert.org/expert/20719 -https://www.oceanexpert.org/institution/17313 -https://www.oceanexpert.org/institution/20587 -https://www.oceanexpert.org/institution/22070 -https://www.oceanexpert.org/expert/25937 -https://www.oceanexpert.org/institution/11729 -https://www.oceanexpert.org/expert/48497 -https://www.oceanexpert.org/expert/17910 -https://www.oceanexpert.org/expert/22384 -https://www.oceanexpert.org/expert/28367 -https://www.oceanexpert.org/expert/8688 -https://www.oceanexpert.org/expert/35948 -https://www.oceanexpert.org/expert/22696 -https://www.oceanexpert.org/expert/37321 -https://www.oceanexpert.org/expert/27329 -https://www.oceanexpert.org/expert/29600 -https://www.oceanexpert.org/expert/37566 -https://www.oceanexpert.org/expert/21188 -https://www.oceanexpert.org/expert/10707 -https://www.oceanexpert.org/expert/22948 -https://www.oceanexpert.org/expert/26068 -https://www.oceanexpert.org/expert/15887 -https://www.oceanexpert.org/institution/10810 -https://www.oceanexpert.org/expert/22253 -https://www.oceanexpert.org/expert/45555 -https://www.oceanexpert.org/expert/25094 -https://www.oceanexpert.org/institution/19360 -https://www.oceanexpert.org/institution/13425 -https://www.oceanexpert.org/expert/17945 -https://www.oceanexpert.org/expert/25329 -https://www.oceanexpert.org/expert/1911 -https://www.oceanexpert.org/expert/14308 -https://www.oceanexpert.org/expert/17126 -https://www.oceanexpert.org/expert/11072 -https://www.oceanexpert.org/expert/23895 -https://www.oceanexpert.org/expert/7490 -https://www.oceanexpert.org/expert/46504 -https://www.oceanexpert.org/expert/28389 -https://www.oceanexpert.org/event/82 -https://www.oceanexpert.org/expert/25784 -https://www.oceanexpert.org/expert/3240 -https://www.oceanexpert.org/institution/17523 -https://www.oceanexpert.org/institution/19395 -https://www.oceanexpert.org/event/2952 -https://www.oceanexpert.org/event/1954 -https://www.oceanexpert.org/expert/35887 -https://www.oceanexpert.org/expert/28354 -https://www.oceanexpert.org/institution/21123 -https://www.oceanexpert.org/event/2144 -https://www.oceanexpert.org/expert/18347 -https://www.oceanexpert.org/expert/24857 -https://www.oceanexpert.org/expert/25935 -https://www.oceanexpert.org/expert/25695 -https://www.oceanexpert.org/expert/33092 -https://www.oceanexpert.org/expert/25829 -https://www.oceanexpert.org/expert/636 -https://www.oceanexpert.org/institution/17631 -https://www.oceanexpert.org/institution/11199 -https://www.oceanexpert.org/expert/26954 -https://www.oceanexpert.org/expert/6924 -https://www.oceanexpert.org/expert/23204 -https://www.oceanexpert.org/expert/28448 -https://www.oceanexpert.org/institution/14757 -https://www.oceanexpert.org/expert/22689 -https://www.oceanexpert.org/institution/18127 -https://www.oceanexpert.org/event/919 -https://www.oceanexpert.org/expert/22539 -https://www.oceanexpert.org/expert/38809 -https://www.oceanexpert.org/expert/26521 -https://www.oceanexpert.org/institution/14700 -https://www.oceanexpert.org/expert/20686 -https://www.oceanexpert.org/expert/38264 -https://www.oceanexpert.org/expert/32516 -https://www.oceanexpert.org/expert/4775 -https://www.oceanexpert.org/institution/12130 -https://www.oceanexpert.org/expert/21972 -https://www.oceanexpert.org/expert/25897 -https://www.oceanexpert.org/institution/14068 -https://www.oceanexpert.org/expert/25318 -https://www.oceanexpert.org/expert/38149 -https://www.oceanexpert.org/institution/20736 -https://www.oceanexpert.org/institution/21787 -https://www.oceanexpert.org/expert/12803 -https://www.oceanexpert.org/expert/16555 -https://www.oceanexpert.org/expert/39583 -https://www.oceanexpert.org/expert/47536 -https://www.oceanexpert.org/expert/24661 -https://www.oceanexpert.org/expert/34340 -https://www.oceanexpert.org/expert/31553 -https://www.oceanexpert.org/institution/16996 -https://www.oceanexpert.org/institution/12726 -https://www.oceanexpert.org/expert/36833 -https://www.oceanexpert.org/institution/8369 -https://www.oceanexpert.org/event/1925 -https://www.oceanexpert.org/expert/31246 -https://www.oceanexpert.org/event/1748 -https://www.oceanexpert.org/institution/18062 -https://www.oceanexpert.org/institution/14350 -https://www.oceanexpert.org/expert/38045 -https://www.oceanexpert.org/event/1191 -https://www.oceanexpert.org/expert/26582 -https://www.oceanexpert.org/institution/19744 -https://www.oceanexpert.org/expert/24954 -https://www.oceanexpert.org/institution/21806 -https://www.oceanexpert.org/expert/33341 -https://www.oceanexpert.org/expert/24857 -https://www.oceanexpert.org/expert/34603 -https://www.oceanexpert.org/institution/7766 -https://www.oceanexpert.org/expert/47054 -https://www.oceanexpert.org/institution/10558 -https://www.oceanexpert.org/expert/30234 -https://www.oceanexpert.org/institution/19323 -https://www.oceanexpert.org/institution/19210 -https://www.oceanexpert.org/expert/28100 -https://www.oceanexpert.org/institution/18391 -https://www.oceanexpert.org/expert/15542 -https://www.oceanexpert.org/expert/45802 -https://www.oceanexpert.org/expert/42866 -https://www.oceanexpert.org/expert/17604 -https://www.oceanexpert.org/expert/16645 -https://www.oceanexpert.org/institution/19539 -https://www.oceanexpert.org/institution/13158 -https://www.oceanexpert.org/expert/24821 -https://www.oceanexpert.org/institution/11761 -https://www.oceanexpert.org/institution/20031 -https://www.oceanexpert.org/institution/12084 -https://www.oceanexpert.org/institution/17663 -https://www.oceanexpert.org/event/448 -https://www.oceanexpert.org/expert/37397 -https://www.oceanexpert.org/institution/18111 -https://www.oceanexpert.org/institution/12359 -https://www.oceanexpert.org/expert/43973 -https://www.oceanexpert.org/expert/20247 -https://www.oceanexpert.org/expert/30111 -https://www.oceanexpert.org/expert/38165 -https://www.oceanexpert.org/expert/48711 -https://www.oceanexpert.org/expert/24043 -https://www.oceanexpert.org/institution/20342 -https://www.oceanexpert.org/expert/34887 -https://www.oceanexpert.org/expert/39518 -https://www.oceanexpert.org/expert/25269 -https://www.oceanexpert.org/expert/23306 -https://www.oceanexpert.org/expert/1271 -https://www.oceanexpert.org/expert/31886 -https://www.oceanexpert.org/institution/21983 -https://www.oceanexpert.org/expert/46245 -https://www.oceanexpert.org/institution/19955 -https://www.oceanexpert.org/institution/16804 -https://www.oceanexpert.org/expert/37079 -https://www.oceanexpert.org/institution/19465 -https://www.oceanexpert.org/expert/36303 -https://www.oceanexpert.org/expert/44263 -https://www.oceanexpert.org/expert/28152 -https://www.oceanexpert.org/institution/22070 -https://www.oceanexpert.org/institution/20211 -https://www.oceanexpert.org/expert/23592 -https://www.oceanexpert.org/expert/44692 -https://www.oceanexpert.org/expert/38056 -https://www.oceanexpert.org/expert/36504 -https://www.oceanexpert.org/expert/11003 -https://www.oceanexpert.org/expert/34568 -https://www.oceanexpert.org/expert/26221 -https://www.oceanexpert.org/expert/22885 -https://www.oceanexpert.org/expert/46584 -https://www.oceanexpert.org/institution/14026 -https://www.oceanexpert.org/expert/43247 -https://www.oceanexpert.org/expert/31870 -https://www.oceanexpert.org/institution/10330 -https://www.oceanexpert.org/expert/32069 -https://www.oceanexpert.org/event/2347 -https://www.oceanexpert.org/institution/21763 -https://www.oceanexpert.org/expert/37476 -https://www.oceanexpert.org/expert/23668 -https://www.oceanexpert.org/event/226 -https://www.oceanexpert.org/event/2565 -https://www.oceanexpert.org/expert/16685 -https://www.oceanexpert.org/institution/18127 -https://www.oceanexpert.org/expert/47496 -https://www.oceanexpert.org/expert/37290 -https://www.oceanexpert.org/event/1921 -https://www.oceanexpert.org/expert/40582 -https://www.oceanexpert.org/expert/18562 -https://www.oceanexpert.org/institution/18931 -https://www.oceanexpert.org/expert/46378 -https://www.oceanexpert.org/expert/5146 -https://www.oceanexpert.org/expert/44934 -https://www.oceanexpert.org/expert/48089 -https://www.oceanexpert.org/institution/13545 -https://www.oceanexpert.org/expert/7040 -https://www.oceanexpert.org/expert/46507 -https://www.oceanexpert.org/expert/27187 -https://www.oceanexpert.org/expert/26541 -https://www.oceanexpert.org/institution/8528 -https://www.oceanexpert.org/institution/12754 -https://www.oceanexpert.org/institution/14089 -https://www.oceanexpert.org/institution/17618 -https://www.oceanexpert.org/expert/21361 -https://www.oceanexpert.org/expert/23943 -https://www.oceanexpert.org/institution/17911 -https://www.oceanexpert.org/expert/172 -https://www.oceanexpert.org/expert/44807 -https://www.oceanexpert.org/expert/20043 -https://www.oceanexpert.org/expert/48950 -https://www.oceanexpert.org/event/2451 -https://www.oceanexpert.org/expert/33278 -https://www.oceanexpert.org/expert/44162 -https://www.oceanexpert.org/expert/17280 -https://www.oceanexpert.org/expert/44380 -https://www.oceanexpert.org/expert/22895 -https://www.oceanexpert.org/expert/47016 -https://www.oceanexpert.org/expert/18484 -https://www.oceanexpert.org/expert/16338 -https://www.oceanexpert.org/expert/24143 -https://www.oceanexpert.org/expert/20404 -https://www.oceanexpert.org/expert/17515 -https://www.oceanexpert.org/expert/3657 -https://www.oceanexpert.org/expert/47722 -https://www.oceanexpert.org/event/2657 -https://www.oceanexpert.org/expert/30575 -https://www.oceanexpert.org/expert/25038 -https://www.oceanexpert.org/institution/18850 -https://www.oceanexpert.org/institution/6536 -https://www.oceanexpert.org/expert/21357 -https://www.oceanexpert.org/expert/27388 -https://www.oceanexpert.org/expert/19780 -https://www.oceanexpert.org/expert/21664 -https://www.oceanexpert.org/expert/39415 -https://www.oceanexpert.org/expert/24264 -https://www.oceanexpert.org/expert/10975 -https://www.oceanexpert.org/expert/20177 -https://www.oceanexpert.org/event/87 -https://www.oceanexpert.org/expert/31733 -https://www.oceanexpert.org/expert/19496 -https://www.oceanexpert.org/expert/24855 -https://www.oceanexpert.org/institution/13602 -https://www.oceanexpert.org/event/1796 -https://www.oceanexpert.org/expert/35649 -https://www.oceanexpert.org/expert/36820 -https://www.oceanexpert.org/expert/21772 -https://www.oceanexpert.org/expert/17473 -https://www.oceanexpert.org/expert/27552 -https://www.oceanexpert.org/event/1527 -https://www.oceanexpert.org/expert/27470 -https://www.oceanexpert.org/institution/18615 -https://www.oceanexpert.org/expert/26842 -https://www.oceanexpert.org/institution/18357 -https://www.oceanexpert.org/expert/44235 -https://www.oceanexpert.org/institution/18671 -https://www.oceanexpert.org/expert/39607 -https://www.oceanexpert.org/event/1121 -https://www.oceanexpert.org/institution/7663 -https://www.oceanexpert.org/expert/43829 -https://www.oceanexpert.org/institution/12424 -https://www.oceanexpert.org/institution/20769 -https://www.oceanexpert.org/expert/14798 -https://www.oceanexpert.org/expert/15431 -https://www.oceanexpert.org/expert/22137 -https://www.oceanexpert.org/expert/24213 -https://www.oceanexpert.org/institution/12597 -https://www.oceanexpert.org/expert/31128 -https://www.oceanexpert.org/event/389 -https://www.oceanexpert.org/event/10 -https://www.oceanexpert.org/expert/47016 -https://www.oceanexpert.org/expert/17494 -https://www.oceanexpert.org/expert/14289 -https://www.oceanexpert.org/expert/20941 -https://www.oceanexpert.org/expert/36328 -https://www.oceanexpert.org/event/2486 -https://www.oceanexpert.org/expert/34664 -https://www.oceanexpert.org/event/1730 -https://www.oceanexpert.org/expert/36688 -https://www.oceanexpert.org/expert/37774 -https://www.oceanexpert.org/institution/5934 -https://www.oceanexpert.org/expert/22999 -https://www.oceanexpert.org/expert/24017 -https://www.oceanexpert.org/institution/20889 -https://www.oceanexpert.org/institution/19632 -https://www.oceanexpert.org/expert/25248 -https://www.oceanexpert.org/event/881 -https://www.oceanexpert.org/expert/27711 -https://www.oceanexpert.org/expert/12124 -https://www.oceanexpert.org/expert/28197 -https://www.oceanexpert.org/expert/44673 -https://www.oceanexpert.org/expert/44688 -https://www.oceanexpert.org/expert/16152 -https://www.oceanexpert.org/expert/20022 -https://www.oceanexpert.org/institution/15791 -https://www.oceanexpert.org/institution/20686 -https://www.oceanexpert.org/expert/32304 -https://www.oceanexpert.org/expert/18353 -https://www.oceanexpert.org/expert/76 -https://www.oceanexpert.org/expert/37896 -https://www.oceanexpert.org/expert/18584 -https://www.oceanexpert.org/expert/45046 -https://www.oceanexpert.org/expert/44128 -https://www.oceanexpert.org/expert/21680 -https://www.oceanexpert.org/expert/27381 -https://www.oceanexpert.org/expert/29582 -https://www.oceanexpert.org/expert/47380 -https://www.oceanexpert.org/event/1291 -https://www.oceanexpert.org/institution/17746 -https://www.oceanexpert.org/expert/44461 -https://www.oceanexpert.org/institution/6354 -https://www.oceanexpert.org/event/64 -https://www.oceanexpert.org/institution/13067 -https://www.oceanexpert.org/expert/39252 -https://www.oceanexpert.org/institution/14906 -https://www.oceanexpert.org/expert/3989 -https://www.oceanexpert.org/institution/7786 -https://www.oceanexpert.org/expert/16643 -https://www.oceanexpert.org/expert/17495 -https://www.oceanexpert.org/expert/35757 -https://www.oceanexpert.org/event/2707 -https://www.oceanexpert.org/expert/40882 -https://www.oceanexpert.org/event/2856 -https://www.oceanexpert.org/expert/17754 -https://www.oceanexpert.org/expert/42725 -https://www.oceanexpert.org/expert/30410 -https://www.oceanexpert.org/expert/8656 -https://www.oceanexpert.org/expert/23576 -https://www.oceanexpert.org/expert/32399 -https://www.oceanexpert.org/expert/11155 -https://www.oceanexpert.org/expert/13202 -https://www.oceanexpert.org/expert/26132 -https://www.oceanexpert.org/expert/44387 -https://www.oceanexpert.org/event/959 -https://www.oceanexpert.org/expert/42070 -https://www.oceanexpert.org/expert/48643 -https://www.oceanexpert.org/expert/36684 -https://www.oceanexpert.org/expert/13560 -https://www.oceanexpert.org/expert/37491 -https://www.oceanexpert.org/expert/4092 -https://www.oceanexpert.org/institution/18949 -https://www.oceanexpert.org/expert/40641 -https://www.oceanexpert.org/expert/35839 -https://www.oceanexpert.org/expert/16693 -https://www.oceanexpert.org/institution/13195 -https://www.oceanexpert.org/expert/48797 -https://www.oceanexpert.org/expert/13710 -https://www.oceanexpert.org/expert/36510 -https://www.oceanexpert.org/institution/22061 -https://www.oceanexpert.org/institution/21375 -https://www.oceanexpert.org/expert/41105 -https://www.oceanexpert.org/event/2417 -https://www.oceanexpert.org/expert/42674 -https://www.oceanexpert.org/institution/15509 -https://www.oceanexpert.org/expert/48384 -https://www.oceanexpert.org/expert/30378 -https://www.oceanexpert.org/expert/27351 -https://www.oceanexpert.org/institution/21943 -https://www.oceanexpert.org/expert/38389 -https://www.oceanexpert.org/expert/5980 -https://www.oceanexpert.org/expert/22427 -https://www.oceanexpert.org/expert/1234 -https://www.oceanexpert.org/institution/12272 -https://www.oceanexpert.org/expert/6932 -https://www.oceanexpert.org/expert/26996 -https://www.oceanexpert.org/institution/17290 -https://www.oceanexpert.org/institution/21806 -https://www.oceanexpert.org/expert/30875 -https://www.oceanexpert.org/expert/1752 -https://www.oceanexpert.org/event/664 -https://www.oceanexpert.org/expert/3487 -https://www.oceanexpert.org/institution/21250 -https://www.oceanexpert.org/expert/18369 -https://www.oceanexpert.org/institution/19189 -https://www.oceanexpert.org/expert/39270 -https://www.oceanexpert.org/institution/21415 -https://www.oceanexpert.org/expert/40267 -https://www.oceanexpert.org/institution/13397 -https://www.oceanexpert.org/expert/32686 -https://www.oceanexpert.org/institution/19247 -https://www.oceanexpert.org/expert/36483 -https://www.oceanexpert.org/expert/25328 -https://www.oceanexpert.org/expert/6490 -https://www.oceanexpert.org/event/2731 -https://www.oceanexpert.org/expert/35105 -https://www.oceanexpert.org/expert/31882 -https://www.oceanexpert.org/expert/32468 -https://www.oceanexpert.org/expert/35837 -https://www.oceanexpert.org/expert/14848 -https://www.oceanexpert.org/event/2656 -https://www.oceanexpert.org/institution/10516 -https://www.oceanexpert.org/expert/25102 -https://www.oceanexpert.org/institution/15397 -https://www.oceanexpert.org/expert/33988 -https://www.oceanexpert.org/expert/27786 -https://www.oceanexpert.org/expert/19286 -https://www.oceanexpert.org/institution/19163 -https://www.oceanexpert.org/event/2848 -https://www.oceanexpert.org/expert/43654 -https://www.oceanexpert.org/expert/26187 -https://www.oceanexpert.org/institution/19449 -https://www.oceanexpert.org/expert/16697 -https://www.oceanexpert.org/expert/38908 -https://www.oceanexpert.org/expert/19960 -https://www.oceanexpert.org/expert/12711 -https://www.oceanexpert.org/expert/27357 -https://www.oceanexpert.org/expert/25807 -https://www.oceanexpert.org/expert/33300 -https://www.oceanexpert.org/expert/36301 -https://www.oceanexpert.org/institution/21666 -https://www.oceanexpert.org/expert/29788 -https://www.oceanexpert.org/expert/44855 -https://www.oceanexpert.org/expert/20536 -https://www.oceanexpert.org/expert/43326 -https://www.oceanexpert.org/expert/31966 -https://www.oceanexpert.org/institution/11308 -https://www.oceanexpert.org/expert/46443 -https://www.oceanexpert.org/expert/18707 -https://www.oceanexpert.org/expert/46009 -https://www.oceanexpert.org/event/13 -https://www.oceanexpert.org/expert/22232 -https://www.oceanexpert.org/expert/43033 -https://www.oceanexpert.org/expert/42409 -https://www.oceanexpert.org/expert/36006 -https://www.oceanexpert.org/institution/13221 -https://www.oceanexpert.org/institution/12679 -https://www.oceanexpert.org/expert/812 -https://www.oceanexpert.org/expert/35376 -https://www.oceanexpert.org/expert/43533 -https://www.oceanexpert.org/expert/11635 -https://www.oceanexpert.org/expert/16963 -https://www.oceanexpert.org/institution/19717 -https://www.oceanexpert.org/expert/37345 -https://www.oceanexpert.org/event/2726 -https://www.oceanexpert.org/expert/41041 -https://www.oceanexpert.org/event/1005 -https://www.oceanexpert.org/expert/31508 -https://www.oceanexpert.org/expert/24070 -https://www.oceanexpert.org/event/1929 -https://www.oceanexpert.org/expert/25026 -https://www.oceanexpert.org/expert/45032 -https://www.oceanexpert.org/expert/45013 -https://www.oceanexpert.org/event/1938 -https://www.oceanexpert.org/expert/26402 -https://www.oceanexpert.org/expert/32527 -https://www.oceanexpert.org/institution/21202 -https://www.oceanexpert.org/expert/20141 -https://www.oceanexpert.org/expert/21781 -https://www.oceanexpert.org/event/922 -https://www.oceanexpert.org/event/1606 -https://www.oceanexpert.org/institution/16203 -https://www.oceanexpert.org/expert/22820 -https://www.oceanexpert.org/event/1340 -https://www.oceanexpert.org/event/2447 -https://www.oceanexpert.org/institution/20156 -https://www.oceanexpert.org/institution/17485 -https://www.oceanexpert.org/expert/47743 -https://www.oceanexpert.org/institution/16203 -https://www.oceanexpert.org/expert/21774 -https://www.oceanexpert.org/institution/19507 -https://www.oceanexpert.org/expert/29596 -https://www.oceanexpert.org/expert/33013 -https://www.oceanexpert.org/event/779 -https://www.oceanexpert.org/institution/21669 -https://www.oceanexpert.org/institution/6731 -https://www.oceanexpert.org/expert/16114 -https://www.oceanexpert.org/expert/29896 -https://www.oceanexpert.org/expert/47556 -https://www.oceanexpert.org/expert/45589 -https://www.oceanexpert.org/institution/10678 -https://www.oceanexpert.org/expert/15507 -https://www.oceanexpert.org/expert/33289 -https://www.oceanexpert.org/institution/17091 -https://www.oceanexpert.org/expert/30664 -https://www.oceanexpert.org/expert/33440 -https://www.oceanexpert.org/event/43 -https://www.oceanexpert.org/expert/36576 -https://www.oceanexpert.org/institution/19443 -https://www.oceanexpert.org/institution/20814 -https://www.oceanexpert.org/institution/20401 -https://www.oceanexpert.org/expert/33446 -https://www.oceanexpert.org/institution/21563 -https://www.oceanexpert.org/expert/23621 -https://www.oceanexpert.org/expert/34729 -https://www.oceanexpert.org/expert/43701 -https://www.oceanexpert.org/institution/18071 -https://www.oceanexpert.org/expert/34395 -https://www.oceanexpert.org/expert/22142 -https://www.oceanexpert.org/institution/12208 -https://www.oceanexpert.org/expert/22816 -https://www.oceanexpert.org/institution/20029 -https://www.oceanexpert.org/institution/15975 -https://www.oceanexpert.org/expert/43607 -https://www.oceanexpert.org/institution/19613 -https://www.oceanexpert.org/expert/38957 -https://www.oceanexpert.org/expert/26675 -https://www.oceanexpert.org/institution/10589 -https://www.oceanexpert.org/expert/44627 -https://www.oceanexpert.org/expert/22069 -https://www.oceanexpert.org/institution/22095 -https://www.oceanexpert.org/expert/26476 -https://www.oceanexpert.org/expert/23932 -https://www.oceanexpert.org/institution/10794 -https://www.oceanexpert.org/expert/34437 -https://www.oceanexpert.org/institution/14102 -https://www.oceanexpert.org/expert/17337 -https://www.oceanexpert.org/expert/47968 -https://www.oceanexpert.org/expert/36079 -https://www.oceanexpert.org/expert/7114 -https://www.oceanexpert.org/expert/18337 -https://www.oceanexpert.org/event/1800 -https://www.oceanexpert.org/event/2460 -https://www.oceanexpert.org/expert/37510 -https://www.oceanexpert.org/expert/25474 -https://www.oceanexpert.org/expert/36933 -https://www.oceanexpert.org/expert/32462 -https://www.oceanexpert.org/expert/5152 -https://www.oceanexpert.org/expert/22323 -https://www.oceanexpert.org/institution/18828 -https://www.oceanexpert.org/expert/36308 -https://www.oceanexpert.org/institution/13739 -https://www.oceanexpert.org/expert/48932 -https://www.oceanexpert.org/institution/13139 -https://www.oceanexpert.org/expert/45912 -https://www.oceanexpert.org/expert/46262 -https://www.oceanexpert.org/expert/37186 -https://www.oceanexpert.org/expert/7169 -https://www.oceanexpert.org/expert/21843 -https://www.oceanexpert.org/expert/19314 -https://www.oceanexpert.org/expert/43754 -https://www.oceanexpert.org/institution/21969 -https://www.oceanexpert.org/expert/37982 -https://www.oceanexpert.org/expert/16354 -https://www.oceanexpert.org/institution/7169 -https://www.oceanexpert.org/expert/18625 -https://www.oceanexpert.org/expert/44318 -https://www.oceanexpert.org/expert/38357 -https://www.oceanexpert.org/expert/34658 -https://www.oceanexpert.org/expert/37719 -https://www.oceanexpert.org/expert/24691 -https://www.oceanexpert.org/expert/29377 -https://www.oceanexpert.org/expert/8175 -https://www.oceanexpert.org/expert/42967 -https://www.oceanexpert.org/expert/37081 -https://www.oceanexpert.org/expert/36863 -https://www.oceanexpert.org/institution/19343 -https://www.oceanexpert.org/expert/43570 -https://www.oceanexpert.org/expert/36239 -https://www.oceanexpert.org/expert/36490 -https://www.oceanexpert.org/expert/28304 -https://www.oceanexpert.org/expert/27158 -https://www.oceanexpert.org/expert/45030 -https://www.oceanexpert.org/expert/19389 -https://www.oceanexpert.org/institution/19510 -https://www.oceanexpert.org/event/2367 -https://www.oceanexpert.org/expert/30956 -https://www.oceanexpert.org/institution/21627 -https://www.oceanexpert.org/expert/29838 -https://www.oceanexpert.org/expert/36907 -https://www.oceanexpert.org/institution/21846 -https://www.oceanexpert.org/expert/44240 -https://www.oceanexpert.org/event/1684 -https://www.oceanexpert.org/expert/38489 -https://www.oceanexpert.org/expert/22410 -https://www.oceanexpert.org/expert/25009 -https://www.oceanexpert.org/institution/20222 -https://www.oceanexpert.org/expert/7112 -https://www.oceanexpert.org/expert/32893 -https://www.oceanexpert.org/institution/12394 -https://www.oceanexpert.org/expert/21753 -https://www.oceanexpert.org/institution/18499 -https://www.oceanexpert.org/expert/33842 -https://www.oceanexpert.org/expert/37327 -https://www.oceanexpert.org/expert/7547 -https://www.oceanexpert.org/expert/21888 -https://www.oceanexpert.org/expert/6345 -https://www.oceanexpert.org/institution/12686 -https://www.oceanexpert.org/expert/29706 -https://www.oceanexpert.org/expert/26274 -https://www.oceanexpert.org/event/2307 -https://www.oceanexpert.org/institution/19476 -https://www.oceanexpert.org/institution/17506 -https://www.oceanexpert.org/institution/20500 -https://www.oceanexpert.org/expert/31521 -https://www.oceanexpert.org/expert/31122 -https://www.oceanexpert.org/expert/17513 -https://www.oceanexpert.org/expert/20460 -https://www.oceanexpert.org/institution/17892 -https://www.oceanexpert.org/event/1135 -https://www.oceanexpert.org/expert/36303 -https://www.oceanexpert.org/expert/35658 -https://www.oceanexpert.org/expert/16721 -https://www.oceanexpert.org/institution/18231 -https://www.oceanexpert.org/expert/24071 -https://www.oceanexpert.org/expert/25252 -https://www.oceanexpert.org/institution/16696 -https://www.oceanexpert.org/expert/44502 -https://www.oceanexpert.org/expert/15176 -https://www.oceanexpert.org/expert/34462 -https://www.oceanexpert.org/expert/28172 -https://www.oceanexpert.org/expert/36807 -https://www.oceanexpert.org/expert/8514 -https://www.oceanexpert.org/expert/35310 -https://www.oceanexpert.org/expert/33082 -https://www.oceanexpert.org/expert/44721 -https://www.oceanexpert.org/expert/45662 -https://www.oceanexpert.org/expert/46968 -https://www.oceanexpert.org/institution/7976 -https://www.oceanexpert.org/institution/19393 -https://www.oceanexpert.org/institution/8247 -https://www.oceanexpert.org/event/1118 -https://www.oceanexpert.org/expert/47848 -https://www.oceanexpert.org/expert/35657 -https://www.oceanexpert.org/event/1927 -https://www.oceanexpert.org/expert/38229 -https://www.oceanexpert.org/expert/20507 -https://www.oceanexpert.org/expert/44870 -https://www.oceanexpert.org/institution/20426 -https://www.oceanexpert.org/expert/18022 -https://www.oceanexpert.org/expert/19027 -https://www.oceanexpert.org/expert/25793 -https://www.oceanexpert.org/expert/42819 -https://www.oceanexpert.org/event/2620 -https://www.oceanexpert.org/event/2433 -https://www.oceanexpert.org/expert/26665 -https://www.oceanexpert.org/expert/18691 -https://www.oceanexpert.org/expert/46812 -https://www.oceanexpert.org/expert/38757 -https://www.oceanexpert.org/expert/19682 -https://www.oceanexpert.org/institution/11563 -https://www.oceanexpert.org/expert/38292 -https://www.oceanexpert.org/expert/42952 -https://www.oceanexpert.org/expert/45921 -https://www.oceanexpert.org/expert/43192 -https://www.oceanexpert.org/institution/21752 -https://www.oceanexpert.org/expert/40070 -https://www.oceanexpert.org/expert/37285 -https://www.oceanexpert.org/expert/40351 -https://www.oceanexpert.org/institution/6671 -https://www.oceanexpert.org/event/464 -https://www.oceanexpert.org/expert/28275 -https://www.oceanexpert.org/expert/7274 -https://www.oceanexpert.org/institution/12489 -https://www.oceanexpert.org/expert/24102 -https://www.oceanexpert.org/expert/43580 -https://www.oceanexpert.org/event/2921 -https://www.oceanexpert.org/expert/16859 -https://www.oceanexpert.org/institution/20235 -https://www.oceanexpert.org/institution/9408 -https://www.oceanexpert.org/institution/6251 -https://www.oceanexpert.org/institution/8493 -https://www.oceanexpert.org/expert/27351 -https://www.oceanexpert.org/expert/22795 -https://www.oceanexpert.org/expert/26716 -https://www.oceanexpert.org/expert/47059 -https://www.oceanexpert.org/institution/21815 -https://www.oceanexpert.org/expert/22707 -https://www.oceanexpert.org/event/3036 -https://www.oceanexpert.org/expert/21000 -https://www.oceanexpert.org/expert/37547 -https://www.oceanexpert.org/event/2868 -https://www.oceanexpert.org/expert/6654 -https://www.oceanexpert.org/expert/35439 -https://www.oceanexpert.org/expert/3771 -https://www.oceanexpert.org/expert/43061 -https://www.oceanexpert.org/expert/36900 -https://www.oceanexpert.org/expert/36337 -https://www.oceanexpert.org/institution/19802 -https://www.oceanexpert.org/institution/19634 -https://www.oceanexpert.org/institution/7373 -https://www.oceanexpert.org/expert/18806 -https://www.oceanexpert.org/expert/46049 -https://www.oceanexpert.org/expert/36629 -https://www.oceanexpert.org/institution/15818 -https://www.oceanexpert.org/expert/14461 -https://www.oceanexpert.org/event/1864 -https://www.oceanexpert.org/expert/30853 -https://www.oceanexpert.org/institution/10057 -https://www.oceanexpert.org/expert/20182 -https://www.oceanexpert.org/expert/26776 -https://www.oceanexpert.org/expert/38852 -https://www.oceanexpert.org/expert/28342 -https://www.oceanexpert.org/expert/32497 -https://www.oceanexpert.org/event/1661 -https://www.oceanexpert.org/institution/12216 -https://www.oceanexpert.org/expert/16710 -https://www.oceanexpert.org/institution/13699 -https://www.oceanexpert.org/expert/2384 -https://www.oceanexpert.org/expert/49005 -https://www.oceanexpert.org/expert/23893 -https://www.oceanexpert.org/expert/12752 -https://www.oceanexpert.org/institution/7788 -https://www.oceanexpert.org/expert/48463 -https://www.oceanexpert.org/institution/12978 -https://www.oceanexpert.org/expert/13158 -https://www.oceanexpert.org/expert/37626 -https://www.oceanexpert.org/expert/16720 -https://www.oceanexpert.org/expert/17823 -https://www.oceanexpert.org/expert/21133 -https://www.oceanexpert.org/expert/26454 -https://www.oceanexpert.org/expert/37989 -https://www.oceanexpert.org/expert/37345 -https://www.oceanexpert.org/expert/43673 -https://www.oceanexpert.org/expert/35014 -https://www.oceanexpert.org/expert/13660 -https://www.oceanexpert.org/expert/2685 -https://www.oceanexpert.org/institution/17978 -https://www.oceanexpert.org/expert/45562 -https://www.oceanexpert.org/expert/2982 -https://www.oceanexpert.org/expert/12080 -https://www.oceanexpert.org/expert/18042 -https://www.oceanexpert.org/event/1791 -https://www.oceanexpert.org/expert/20033 -https://www.oceanexpert.org/expert/36923 -https://www.oceanexpert.org/event/3257 -https://www.oceanexpert.org/expert/26134 -https://www.oceanexpert.org/expert/43886 -https://www.oceanexpert.org/institution/20743 -https://www.oceanexpert.org/institution/20218 -https://www.oceanexpert.org/expert/35567 -https://www.oceanexpert.org/institution/18986 -https://www.oceanexpert.org/expert/24810 -https://www.oceanexpert.org/expert/34869 -https://www.oceanexpert.org/expert/39055 -https://www.oceanexpert.org/expert/43835 -https://www.oceanexpert.org/event/1510 -https://www.oceanexpert.org/expert/44946 -https://www.oceanexpert.org/event/2587 -https://www.oceanexpert.org/institution/11352 -https://www.oceanexpert.org/expert/24415 -https://www.oceanexpert.org/expert/21746 -https://www.oceanexpert.org/expert/4128 -https://www.oceanexpert.org/institution/15691 -https://www.oceanexpert.org/event/1061 -https://www.oceanexpert.org/expert/27007 -https://www.oceanexpert.org/institution/19401 -https://www.oceanexpert.org/expert/47387 -https://www.oceanexpert.org/institution/18860 -https://www.oceanexpert.org/institution/12029 -https://www.oceanexpert.org/expert/3127 -https://www.oceanexpert.org/expert/34929 -https://www.oceanexpert.org/expert/4487 -https://www.oceanexpert.org/expert/38498 -https://www.oceanexpert.org/expert/18161 -https://www.oceanexpert.org/expert/36536 -https://www.oceanexpert.org/event/2177 -https://www.oceanexpert.org/expert/32657 -https://www.oceanexpert.org/expert/28273 -https://www.oceanexpert.org/expert/34677 -https://www.oceanexpert.org/expert/16465 -https://www.oceanexpert.org/institution/13116 -https://www.oceanexpert.org/expert/594 -https://www.oceanexpert.org/institution/14880 -https://www.oceanexpert.org/expert/36150 -https://www.oceanexpert.org/institution/20440 -https://www.oceanexpert.org/expert/1416 -https://www.oceanexpert.org/expert/4378 -https://www.oceanexpert.org/expert/25016 -https://www.oceanexpert.org/expert/32605 -https://www.oceanexpert.org/expert/25091 -https://www.oceanexpert.org/institution/21914 -https://www.oceanexpert.org/expert/19443 -https://www.oceanexpert.org/event/605 -https://www.oceanexpert.org/expert/46147 -https://www.oceanexpert.org/expert/28990 -https://www.oceanexpert.org/expert/22957 -https://www.oceanexpert.org/institution/17283 -https://www.oceanexpert.org/event/2699 -https://www.oceanexpert.org/institution/18369 -https://www.oceanexpert.org/expert/35454 -https://www.oceanexpert.org/expert/32460 -https://www.oceanexpert.org/expert/28959 -https://www.oceanexpert.org/expert/17391 -https://www.oceanexpert.org/expert/36513 -https://www.oceanexpert.org/event/193 -https://www.oceanexpert.org/expert/13350 -https://www.oceanexpert.org/institution/16308 -https://www.oceanexpert.org/expert/47798 -https://www.oceanexpert.org/expert/45804 -https://www.oceanexpert.org/expert/1218 -https://www.oceanexpert.org/institution/13016 -https://www.oceanexpert.org/expert/36635 -https://www.oceanexpert.org/expert/48470 -https://www.oceanexpert.org/institution/10566 -https://www.oceanexpert.org/expert/35290 -https://www.oceanexpert.org/institution/19553 -https://www.oceanexpert.org/event/2316 -https://www.oceanexpert.org/expert/47226 -https://www.oceanexpert.org/expert/30784 -https://www.oceanexpert.org/institution/22051 -https://www.oceanexpert.org/expert/45598 -https://www.oceanexpert.org/expert/24098 -https://www.oceanexpert.org/expert/22735 -https://www.oceanexpert.org/expert/25011 -https://www.oceanexpert.org/expert/45802 -https://www.oceanexpert.org/expert/8537 -https://www.oceanexpert.org/expert/16736 -https://www.oceanexpert.org/expert/29832 -https://www.oceanexpert.org/expert/12122 -https://www.oceanexpert.org/expert/46938 -https://www.oceanexpert.org/expert/24031 -https://www.oceanexpert.org/expert/48904 -https://www.oceanexpert.org/expert/21971 -https://www.oceanexpert.org/expert/43927 -https://www.oceanexpert.org/expert/44648 -https://www.oceanexpert.org/expert/29922 -https://www.oceanexpert.org/expert/48449 -https://www.oceanexpert.org/expert/26216 -https://www.oceanexpert.org/institution/18350 -https://www.oceanexpert.org/expert/25012 -https://www.oceanexpert.org/expert/24349 -https://www.oceanexpert.org/expert/32519 -https://www.oceanexpert.org/expert/25229 -https://www.oceanexpert.org/expert/46780 -https://www.oceanexpert.org/expert/13791 -https://www.oceanexpert.org/expert/25779 -https://www.oceanexpert.org/expert/38402 -https://www.oceanexpert.org/expert/36855 -https://www.oceanexpert.org/expert/27258 -https://www.oceanexpert.org/event/568 -https://www.oceanexpert.org/expert/9173 -https://www.oceanexpert.org/expert/12124 -https://www.oceanexpert.org/expert/36994 -https://www.oceanexpert.org/expert/42689 -https://www.oceanexpert.org/institution/13295 -https://www.oceanexpert.org/expert/26283 -https://www.oceanexpert.org/institution/6882 -https://www.oceanexpert.org/expert/33766 -https://www.oceanexpert.org/expert/16611 -https://www.oceanexpert.org/expert/42562 -https://www.oceanexpert.org/expert/23937 -https://www.oceanexpert.org/expert/26389 -https://www.oceanexpert.org/institution/10228 -https://www.oceanexpert.org/expert/26391 -https://www.oceanexpert.org/expert/42671 -https://www.oceanexpert.org/expert/19950 -https://www.oceanexpert.org/institution/17499 -https://www.oceanexpert.org/event/1533 -https://www.oceanexpert.org/expert/35830 -https://www.oceanexpert.org/expert/24664 -https://www.oceanexpert.org/expert/36270 -https://www.oceanexpert.org/expert/30204 -https://www.oceanexpert.org/expert/24756 -https://www.oceanexpert.org/institution/21002 -https://www.oceanexpert.org/institution/8909 -https://www.oceanexpert.org/expert/2646 -https://www.oceanexpert.org/expert/23312 -https://www.oceanexpert.org/institution/18571 -https://www.oceanexpert.org/expert/20463 -https://www.oceanexpert.org/expert/43737 -https://www.oceanexpert.org/expert/27171 -https://www.oceanexpert.org/institution/16124 -https://www.oceanexpert.org/event/2534 -https://www.oceanexpert.org/expert/16911 -https://www.oceanexpert.org/expert/24625 -https://www.oceanexpert.org/institution/14381 -https://www.oceanexpert.org/expert/46184 -https://www.oceanexpert.org/event/922 -https://www.oceanexpert.org/institution/19634 -https://www.oceanexpert.org/expert/43157 -https://www.oceanexpert.org/expert/12947 -https://www.oceanexpert.org/expert/44944 -https://www.oceanexpert.org/expert/45672 -https://www.oceanexpert.org/institution/20429 -https://www.oceanexpert.org/expert/13737 -https://www.oceanexpert.org/expert/13372 -https://www.oceanexpert.org/expert/17967 -https://www.oceanexpert.org/expert/24469 -https://www.oceanexpert.org/expert/20656 -https://www.oceanexpert.org/expert/17121 -https://www.oceanexpert.org/expert/27462 -https://www.oceanexpert.org/expert/27494 -https://www.oceanexpert.org/expert/26052 -https://www.oceanexpert.org/event/794 -https://www.oceanexpert.org/expert/34874 -https://www.oceanexpert.org/expert/35423 -https://www.oceanexpert.org/institution/21815 -https://www.oceanexpert.org/expert/15564 -https://www.oceanexpert.org/event/1059 -https://www.oceanexpert.org/institution/19740 -https://www.oceanexpert.org/expert/28160 -https://www.oceanexpert.org/expert/46338 -https://www.oceanexpert.org/institution/21069 -https://www.oceanexpert.org/institution/16166 -https://www.oceanexpert.org/expert/29521 -https://www.oceanexpert.org/expert/19069 -https://www.oceanexpert.org/expert/27501 -https://www.oceanexpert.org/expert/30822 -https://www.oceanexpert.org/institution/12980 -https://www.oceanexpert.org/event/2134 -https://www.oceanexpert.org/expert/24363 -https://www.oceanexpert.org/expert/24415 -https://www.oceanexpert.org/expert/16776 -https://www.oceanexpert.org/expert/48749 -https://www.oceanexpert.org/expert/28197 -https://www.oceanexpert.org/expert/22665 -https://www.oceanexpert.org/expert/18614 -https://www.oceanexpert.org/institution/14654 -https://www.oceanexpert.org/expert/21132 -https://www.oceanexpert.org/expert/46180 -https://www.oceanexpert.org/expert/22592 -https://www.oceanexpert.org/expert/11903 -https://www.oceanexpert.org/expert/48992 -https://www.oceanexpert.org/institution/21532 -https://www.oceanexpert.org/institution/13019 -https://www.oceanexpert.org/event/880 -https://www.oceanexpert.org/expert/33250 -https://www.oceanexpert.org/expert/48516 -https://www.oceanexpert.org/expert/11696 -https://www.oceanexpert.org/expert/18434 -https://www.oceanexpert.org/expert/23027 -https://www.oceanexpert.org/expert/26278 -https://www.oceanexpert.org/expert/37593 -https://www.oceanexpert.org/expert/30801 -https://www.oceanexpert.org/expert/36269 -https://www.oceanexpert.org/institution/21324 -https://www.oceanexpert.org/event/2831 -https://www.oceanexpert.org/institution/18491 -https://www.oceanexpert.org/expert/31916 -https://www.oceanexpert.org/expert/17658 -https://www.oceanexpert.org/expert/26128 -https://www.oceanexpert.org/expert/43572 -https://www.oceanexpert.org/expert/43707 -https://www.oceanexpert.org/expert/27959 -https://www.oceanexpert.org/expert/18788 -https://www.oceanexpert.org/expert/26801 -https://www.oceanexpert.org/expert/30760 -https://www.oceanexpert.org/expert/25351 -https://www.oceanexpert.org/expert/33507 -https://www.oceanexpert.org/expert/16325 -https://www.oceanexpert.org/expert/34722 -https://www.oceanexpert.org/expert/27181 -https://www.oceanexpert.org/institution/20497 -https://www.oceanexpert.org/expert/19864 -https://www.oceanexpert.org/expert/29874 -https://www.oceanexpert.org/expert/44797 -https://www.oceanexpert.org/institution/20036 -https://www.oceanexpert.org/expert/47331 -https://www.oceanexpert.org/institution/19589 -https://www.oceanexpert.org/expert/45927 -https://www.oceanexpert.org/expert/23874 -https://www.oceanexpert.org/expert/28384 -https://www.oceanexpert.org/expert/29286 -https://www.oceanexpert.org/expert/22638 -https://www.oceanexpert.org/institution/17148 -https://www.oceanexpert.org/institution/7201 -https://www.oceanexpert.org/institution/18004 -https://www.oceanexpert.org/expert/25880 -https://www.oceanexpert.org/event/1958 -https://www.oceanexpert.org/institution/16280 -https://www.oceanexpert.org/institution/21732 -https://www.oceanexpert.org/institution/19824 -https://www.oceanexpert.org/event/1336 -https://www.oceanexpert.org/expert/25390 -https://www.oceanexpert.org/expert/47102 -https://www.oceanexpert.org/expert/11103 -https://www.oceanexpert.org/institution/17882 -https://www.oceanexpert.org/expert/44707 -https://www.oceanexpert.org/expert/46780 -https://www.oceanexpert.org/expert/36923 -https://www.oceanexpert.org/event/1322 -https://www.oceanexpert.org/institution/18012 -https://www.oceanexpert.org/expert/16051 -https://www.oceanexpert.org/institution/20956 -https://www.oceanexpert.org/expert/15490 -https://www.oceanexpert.org/expert/37988 -https://www.oceanexpert.org/expert/48682 -https://www.oceanexpert.org/expert/45496 -https://www.oceanexpert.org/expert/14931 -https://www.oceanexpert.org/institution/18640 -https://www.oceanexpert.org/institution/15880 -https://www.oceanexpert.org/institution/10716 -https://www.oceanexpert.org/institution/13332 -https://www.oceanexpert.org/institution/20387 -https://www.oceanexpert.org/expert/29496 -https://www.oceanexpert.org/expert/11162 -https://www.oceanexpert.org/institution/6119 -https://www.oceanexpert.org/institution/5503 -https://www.oceanexpert.org/expert/17100 -https://www.oceanexpert.org/expert/33620 -https://www.oceanexpert.org/expert/32860 -https://www.oceanexpert.org/expert/36962 -https://www.oceanexpert.org/expert/27174 -https://www.oceanexpert.org/institution/15007 -https://www.oceanexpert.org/expert/34859 -https://www.oceanexpert.org/institution/12156 -https://www.oceanexpert.org/institution/21041 -https://www.oceanexpert.org/expert/24779 -https://www.oceanexpert.org/expert/46508 -https://www.oceanexpert.org/expert/38631 -https://www.oceanexpert.org/expert/25172 -https://www.oceanexpert.org/expert/21539 -https://www.oceanexpert.org/event/126 -https://www.oceanexpert.org/institution/10966 -https://www.oceanexpert.org/expert/43146 -https://www.oceanexpert.org/expert/26225 -https://www.oceanexpert.org/expert/37770 -https://www.oceanexpert.org/expert/39721 -https://www.oceanexpert.org/expert/11525 -https://www.oceanexpert.org/expert/39320 -https://www.oceanexpert.org/expert/12866 -https://www.oceanexpert.org/institution/7879 -https://www.oceanexpert.org/expert/45043 -https://www.oceanexpert.org/expert/23863 -https://www.oceanexpert.org/event/1087 -https://www.oceanexpert.org/expert/17252 -https://www.oceanexpert.org/institution/20751 -https://www.oceanexpert.org/expert/16973 -https://www.oceanexpert.org/institution/18448 -https://www.oceanexpert.org/expert/18779 -https://www.oceanexpert.org/institution/21624 -https://www.oceanexpert.org/expert/18907 -https://www.oceanexpert.org/expert/35174 -https://www.oceanexpert.org/event/2130 -https://www.oceanexpert.org/institution/7143 -https://www.oceanexpert.org/institution/12772 -https://www.oceanexpert.org/expert/43587 -https://www.oceanexpert.org/expert/36207 -https://www.oceanexpert.org/institution/17432 -https://www.oceanexpert.org/expert/25442 -https://www.oceanexpert.org/expert/43436 -https://www.oceanexpert.org/expert/11524 -https://www.oceanexpert.org/expert/17906 -https://www.oceanexpert.org/expert/39004 -https://www.oceanexpert.org/expert/35345 -https://www.oceanexpert.org/institution/16786 -https://www.oceanexpert.org/expert/44030 -https://www.oceanexpert.org/expert/31736 -https://www.oceanexpert.org/institution/21514 -https://www.oceanexpert.org/expert/38957 -https://www.oceanexpert.org/expert/18639 -https://www.oceanexpert.org/event/539 -https://www.oceanexpert.org/institution/18801 -https://www.oceanexpert.org/expert/47018 -https://www.oceanexpert.org/expert/20301 -https://www.oceanexpert.org/institution/10027 -https://www.oceanexpert.org/expert/31844 -https://www.oceanexpert.org/institution/15882 -https://www.oceanexpert.org/expert/38273 -https://www.oceanexpert.org/institution/19049 -https://www.oceanexpert.org/expert/41819 -https://www.oceanexpert.org/expert/27424 -https://www.oceanexpert.org/event/2310 -https://www.oceanexpert.org/expert/2142 -https://www.oceanexpert.org/expert/36653 -https://www.oceanexpert.org/expert/2929 -https://www.oceanexpert.org/institution/10904 -https://www.oceanexpert.org/expert/38254 -https://www.oceanexpert.org/expert/18500 -https://www.oceanexpert.org/expert/41980 -https://www.oceanexpert.org/institution/13416 -https://www.oceanexpert.org/expert/29270 -https://www.oceanexpert.org/expert/48311 -https://www.oceanexpert.org/institution/15894 -https://www.oceanexpert.org/expert/36279 -https://www.oceanexpert.org/expert/26120 -https://www.oceanexpert.org/expert/37475 -https://www.oceanexpert.org/expert/17387 -https://www.oceanexpert.org/expert/23819 -https://www.oceanexpert.org/event/1784 -https://www.oceanexpert.org/expert/27065 -https://www.oceanexpert.org/expert/15416 -https://www.oceanexpert.org/expert/8667 -https://www.oceanexpert.org/expert/18916 -https://www.oceanexpert.org/expert/2126 -https://www.oceanexpert.org/event/948 -https://www.oceanexpert.org/expert/26211 -https://www.oceanexpert.org/expert/48076 -https://www.oceanexpert.org/institution/17881 -https://www.oceanexpert.org/expert/892 -https://www.oceanexpert.org/expert/18782 -https://www.oceanexpert.org/expert/21339 -https://www.oceanexpert.org/expert/40868 -https://www.oceanexpert.org/expert/42484 -https://www.oceanexpert.org/institution/6105 -https://www.oceanexpert.org/institution/21251 -https://www.oceanexpert.org/expert/32748 -https://www.oceanexpert.org/expert/13730 -https://www.oceanexpert.org/expert/45165 -https://www.oceanexpert.org/expert/39577 -https://www.oceanexpert.org/institution/15826 -https://www.oceanexpert.org/expert/19922 -https://www.oceanexpert.org/expert/47880 -https://www.oceanexpert.org/expert/3238 -https://www.oceanexpert.org/expert/12355 -https://www.oceanexpert.org/expert/43627 -https://www.oceanexpert.org/expert/43766 -https://www.oceanexpert.org/institution/14347 -https://www.oceanexpert.org/institution/13630 -https://www.oceanexpert.org/expert/35707 -https://www.oceanexpert.org/institution/16706 -https://www.oceanexpert.org/institution/14085 -https://www.oceanexpert.org/event/1326 -https://www.oceanexpert.org/expert/24328 -https://www.oceanexpert.org/expert/26572 -https://www.oceanexpert.org/expert/17296 -https://www.oceanexpert.org/institution/12025 -https://www.oceanexpert.org/expert/13343 -https://www.oceanexpert.org/institution/16105 -https://www.oceanexpert.org/expert/30597 -https://www.oceanexpert.org/institution/13432 -https://www.oceanexpert.org/expert/21747 -https://www.oceanexpert.org/expert/34842 -https://www.oceanexpert.org/expert/44456 -https://www.oceanexpert.org/event/704 -https://www.oceanexpert.org/event/1161 -https://www.oceanexpert.org/institution/19344 -https://www.oceanexpert.org/expert/27399 -https://www.oceanexpert.org/expert/4443 -https://www.oceanexpert.org/institution/18717 -https://www.oceanexpert.org/institution/18930 -https://www.oceanexpert.org/institution/13925 -https://www.oceanexpert.org/institution/12991 -https://www.oceanexpert.org/expert/46632 -https://www.oceanexpert.org/institution/12217 -https://www.oceanexpert.org/event/2930 -https://www.oceanexpert.org/expert/20579 -https://www.oceanexpert.org/expert/22609 -https://www.oceanexpert.org/expert/23787 -https://www.oceanexpert.org/institution/22080 -https://www.oceanexpert.org/institution/15432 -https://www.oceanexpert.org/expert/36921 -https://www.oceanexpert.org/expert/37480 -https://www.oceanexpert.org/institution/20543 -https://www.oceanexpert.org/expert/14420 -https://www.oceanexpert.org/expert/20338 -https://www.oceanexpert.org/institution/18940 -https://www.oceanexpert.org/institution/21324 -https://www.oceanexpert.org/institution/6185 -https://www.oceanexpert.org/institution/14399 -https://www.oceanexpert.org/expert/48885 -https://www.oceanexpert.org/expert/25485 -https://www.oceanexpert.org/event/1190 -https://www.oceanexpert.org/expert/23010 -https://www.oceanexpert.org/expert/13271 -https://www.oceanexpert.org/institution/19097 -https://www.oceanexpert.org/expert/28075 -https://www.oceanexpert.org/expert/6316 -https://www.oceanexpert.org/expert/38369 -https://www.oceanexpert.org/expert/44774 -https://www.oceanexpert.org/expert/40038 -https://www.oceanexpert.org/event/1593 -https://www.oceanexpert.org/institution/15885 -https://www.oceanexpert.org/expert/18240 -https://www.oceanexpert.org/expert/44593 -https://www.oceanexpert.org/institution/20919 -https://www.oceanexpert.org/expert/47380 -https://www.oceanexpert.org/expert/45837 -https://www.oceanexpert.org/expert/40891 -https://www.oceanexpert.org/institution/18265 -https://www.oceanexpert.org/expert/21372 -https://www.oceanexpert.org/expert/32201 -https://www.oceanexpert.org/institution/19045 -https://www.oceanexpert.org/expert/27098 -https://www.oceanexpert.org/expert/38883 -https://www.oceanexpert.org/expert/36224 -https://www.oceanexpert.org/expert/45300 -https://www.oceanexpert.org/expert/24310 -https://www.oceanexpert.org/institution/19476 -https://www.oceanexpert.org/expert/43243 -https://www.oceanexpert.org/expert/36436 -https://www.oceanexpert.org/expert/8008 -https://www.oceanexpert.org/expert/46671 -https://www.oceanexpert.org/institution/16692 -https://www.oceanexpert.org/event/643 -https://www.oceanexpert.org/expert/45481 -https://www.oceanexpert.org/event/208 -https://www.oceanexpert.org/institution/21376 -https://www.oceanexpert.org/expert/26232 -https://www.oceanexpert.org/event/1114 -https://www.oceanexpert.org/expert/36154 -https://www.oceanexpert.org/expert/35442 -https://www.oceanexpert.org/expert/24342 -https://www.oceanexpert.org/expert/43603 -https://www.oceanexpert.org/expert/19412 -https://www.oceanexpert.org/expert/19971 -https://www.oceanexpert.org/expert/27060 -https://www.oceanexpert.org/expert/47366 -https://www.oceanexpert.org/expert/46373 -https://www.oceanexpert.org/expert/28245 -https://www.oceanexpert.org/expert/48102 -https://www.oceanexpert.org/expert/29775 -https://www.oceanexpert.org/institution/18530 -https://www.oceanexpert.org/expert/39346 -https://www.oceanexpert.org/expert/34883 -https://www.oceanexpert.org/expert/10272 -https://www.oceanexpert.org/expert/1743 -https://www.oceanexpert.org/institution/13953 -https://www.oceanexpert.org/expert/19844 -https://www.oceanexpert.org/institution/13747 -https://www.oceanexpert.org/event/2841 -https://www.oceanexpert.org/expert/37780 -https://www.oceanexpert.org/expert/48467 -https://www.oceanexpert.org/expert/17724 -https://www.oceanexpert.org/institution/19975 -https://www.oceanexpert.org/expert/38138 -https://www.oceanexpert.org/event/3059 -https://www.oceanexpert.org/expert/36556 -https://www.oceanexpert.org/expert/6900 -https://www.oceanexpert.org/institution/18862 -https://www.oceanexpert.org/expert/10706 -https://www.oceanexpert.org/expert/27007 -https://www.oceanexpert.org/expert/23229 -https://www.oceanexpert.org/expert/22188 -https://www.oceanexpert.org/expert/15957 -https://www.oceanexpert.org/expert/18921 -https://www.oceanexpert.org/expert/3199 -https://www.oceanexpert.org/expert/25503 -https://www.oceanexpert.org/institution/12419 -https://www.oceanexpert.org/institution/12696 -https://www.oceanexpert.org/expert/37175 -https://www.oceanexpert.org/expert/9484 -https://www.oceanexpert.org/expert/49014 -https://www.oceanexpert.org/expert/45373 -https://www.oceanexpert.org/expert/25055 -https://www.oceanexpert.org/expert/13441 -https://www.oceanexpert.org/institution/19850 -https://www.oceanexpert.org/institution/19332 -https://www.oceanexpert.org/institution/20595 -https://www.oceanexpert.org/expert/20487 -https://www.oceanexpert.org/expert/30316 -https://www.oceanexpert.org/expert/48968 -https://www.oceanexpert.org/event/1919 -https://www.oceanexpert.org/event/937 -https://www.oceanexpert.org/institution/18946 -https://www.oceanexpert.org/institution/5155 -https://www.oceanexpert.org/expert/27000 -https://www.oceanexpert.org/expert/34531 -https://www.oceanexpert.org/expert/47133 -https://www.oceanexpert.org/expert/26014 -https://www.oceanexpert.org/expert/6839 -https://www.oceanexpert.org/expert/26538 -https://www.oceanexpert.org/event/1904 -https://www.oceanexpert.org/event/1140 -https://www.oceanexpert.org/expert/26181 -https://www.oceanexpert.org/expert/44693 -https://www.oceanexpert.org/institution/19195 -https://www.oceanexpert.org/expert/38435 -https://www.oceanexpert.org/expert/23200 -https://www.oceanexpert.org/expert/35161 -https://www.oceanexpert.org/institution/13237 -https://www.oceanexpert.org/institution/14885 -https://www.oceanexpert.org/event/2368 -https://www.oceanexpert.org/expert/43283 -https://www.oceanexpert.org/event/445 -https://www.oceanexpert.org/expert/37589 -https://www.oceanexpert.org/institution/19683 -https://www.oceanexpert.org/expert/18241 -https://www.oceanexpert.org/event/867 -https://www.oceanexpert.org/expert/11859 -https://www.oceanexpert.org/expert/23417 -https://www.oceanexpert.org/expert/23408 -https://www.oceanexpert.org/expert/11595 -https://www.oceanexpert.org/institution/11578 -https://www.oceanexpert.org/expert/28424 -https://www.oceanexpert.org/institution/14496 -https://www.oceanexpert.org/expert/26102 -https://www.oceanexpert.org/expert/46604 -https://www.oceanexpert.org/event/1288 -https://www.oceanexpert.org/institution/17986 -https://www.oceanexpert.org/expert/36892 -https://www.oceanexpert.org/expert/22214 -https://www.oceanexpert.org/expert/19393 -https://www.oceanexpert.org/expert/17048 -https://www.oceanexpert.org/institution/18100 -https://www.oceanexpert.org/expert/8352 -https://www.oceanexpert.org/expert/42634 -https://www.oceanexpert.org/expert/44060 -https://www.oceanexpert.org/expert/32224 -https://www.oceanexpert.org/institution/18820 -https://www.oceanexpert.org/expert/45446 -https://www.oceanexpert.org/expert/27668 -https://www.oceanexpert.org/expert/49008 -https://www.oceanexpert.org/expert/40649 -https://www.oceanexpert.org/expert/4452 -https://www.oceanexpert.org/expert/16296 -https://www.oceanexpert.org/expert/13614 -https://www.oceanexpert.org/event/1809 -https://www.oceanexpert.org/institution/11888 -https://www.oceanexpert.org/event/2598 -https://www.oceanexpert.org/expert/34523 -https://www.oceanexpert.org/institution/21475 -https://www.oceanexpert.org/expert/20319 -https://www.oceanexpert.org/institution/19929 -https://www.oceanexpert.org/expert/39883 -https://www.oceanexpert.org/expert/36792 -https://www.oceanexpert.org/expert/22123 -https://www.oceanexpert.org/expert/36910 -https://www.oceanexpert.org/expert/25229 -https://www.oceanexpert.org/expert/31616 -https://www.oceanexpert.org/expert/18286 -https://www.oceanexpert.org/institution/22110 -https://www.oceanexpert.org/institution/19592 -https://www.oceanexpert.org/expert/19769 -https://www.oceanexpert.org/expert/7360 -https://www.oceanexpert.org/expert/45490 -https://www.oceanexpert.org/expert/22310 -https://www.oceanexpert.org/event/275 -https://www.oceanexpert.org/expert/23128 -https://www.oceanexpert.org/expert/33240 -https://www.oceanexpert.org/institution/21400 -https://www.oceanexpert.org/expert/46132 -https://www.oceanexpert.org/event/764 -https://www.oceanexpert.org/expert/34990 -https://www.oceanexpert.org/expert/37974 -https://www.oceanexpert.org/expert/21714 -https://www.oceanexpert.org/event/456 -https://www.oceanexpert.org/expert/16698 -https://www.oceanexpert.org/expert/39239 -https://www.oceanexpert.org/expert/35987 -https://www.oceanexpert.org/institution/14336 -https://www.oceanexpert.org/expert/22069 -https://www.oceanexpert.org/institution/19480 -https://www.oceanexpert.org/expert/47619 -https://www.oceanexpert.org/expert/30838 -https://www.oceanexpert.org/expert/33751 -https://www.oceanexpert.org/expert/35712 -https://www.oceanexpert.org/event/1389 -https://www.oceanexpert.org/expert/16797 -https://www.oceanexpert.org/expert/31071 -https://www.oceanexpert.org/expert/23290 -https://www.oceanexpert.org/event/2448 -https://www.oceanexpert.org/event/1625 -https://www.oceanexpert.org/expert/32197 -https://www.oceanexpert.org/expert/19238 -https://www.oceanexpert.org/expert/22275 -https://www.oceanexpert.org/expert/17447 -https://www.oceanexpert.org/expert/34961 -https://www.oceanexpert.org/expert/34055 -https://www.oceanexpert.org/expert/8226 -https://www.oceanexpert.org/institution/5503 -https://www.oceanexpert.org/event/1542 -https://www.oceanexpert.org/expert/20361 -https://www.oceanexpert.org/expert/6897 -https://www.oceanexpert.org/event/1655 -https://www.oceanexpert.org/expert/13394 -https://www.oceanexpert.org/institution/16181 -https://www.oceanexpert.org/institution/20766 -https://www.oceanexpert.org/expert/33365 -https://www.oceanexpert.org/event/144 -https://www.oceanexpert.org/expert/27961 -https://www.oceanexpert.org/expert/48725 -https://www.oceanexpert.org/expert/32454 -https://www.oceanexpert.org/expert/18030 -https://www.oceanexpert.org/expert/43988 -https://www.oceanexpert.org/institution/15155 -https://www.oceanexpert.org/expert/17369 -https://www.oceanexpert.org/institution/21484 -https://www.oceanexpert.org/expert/37003 -https://www.oceanexpert.org/expert/37563 -https://www.oceanexpert.org/expert/45624 -https://www.oceanexpert.org/expert/38845 -https://www.oceanexpert.org/expert/27274 -https://www.oceanexpert.org/expert/28346 -https://www.oceanexpert.org/expert/22523 -https://www.oceanexpert.org/institution/5021 -https://www.oceanexpert.org/institution/6836 -https://www.oceanexpert.org/expert/12267 -https://www.oceanexpert.org/expert/44673 -https://www.oceanexpert.org/event/919 -https://www.oceanexpert.org/expert/30856 -https://www.oceanexpert.org/expert/20905 -https://www.oceanexpert.org/event/789 -https://www.oceanexpert.org/expert/26753 -https://www.oceanexpert.org/expert/32896 -https://www.oceanexpert.org/institution/18977 -https://www.oceanexpert.org/expert/48665 -https://www.oceanexpert.org/expert/34455 -https://www.oceanexpert.org/institution/18069 -https://www.oceanexpert.org/expert/39442 -https://www.oceanexpert.org/expert/24588 -https://www.oceanexpert.org/expert/18613 -https://www.oceanexpert.org/expert/40072 -https://www.oceanexpert.org/expert/37903 -https://www.oceanexpert.org/expert/22897 -https://www.oceanexpert.org/expert/31041 -https://www.oceanexpert.org/event/2127 -https://www.oceanexpert.org/event/2681 -https://www.oceanexpert.org/event/80 -https://www.oceanexpert.org/expert/31733 -https://www.oceanexpert.org/institution/18636 -https://www.oceanexpert.org/expert/17576 -https://www.oceanexpert.org/institution/19532 -https://www.oceanexpert.org/expert/42561 -https://www.oceanexpert.org/expert/26466 -https://www.oceanexpert.org/expert/47313 -https://www.oceanexpert.org/expert/19499 -https://www.oceanexpert.org/expert/19006 -https://www.oceanexpert.org/expert/22373 -https://www.oceanexpert.org/expert/32791 -https://www.oceanexpert.org/expert/17563 -https://www.oceanexpert.org/expert/47734 -https://www.oceanexpert.org/expert/45128 -https://www.oceanexpert.org/institution/15954 -https://www.oceanexpert.org/expert/47591 -https://www.oceanexpert.org/expert/43205 -https://www.oceanexpert.org/expert/45084 -https://www.oceanexpert.org/institution/18223 -https://www.oceanexpert.org/event/2360 -https://www.oceanexpert.org/institution/20190 -https://www.oceanexpert.org/institution/14418 -https://www.oceanexpert.org/expert/20696 -https://www.oceanexpert.org/institution/20893 -https://www.oceanexpert.org/expert/20718 -https://www.oceanexpert.org/event/417 -https://www.oceanexpert.org/expert/36505 -https://www.oceanexpert.org/institution/21046 -https://www.oceanexpert.org/event/2535 -https://www.oceanexpert.org/expert/39455 -https://www.oceanexpert.org/expert/43924 -https://www.oceanexpert.org/expert/16913 -https://www.oceanexpert.org/event/2639 -https://www.oceanexpert.org/expert/23524 -https://www.oceanexpert.org/expert/42444 -https://www.oceanexpert.org/expert/21662 -https://www.oceanexpert.org/expert/15619 -https://www.oceanexpert.org/expert/32747 -https://www.oceanexpert.org/expert/29963 -https://www.oceanexpert.org/expert/9247 -https://www.oceanexpert.org/expert/28886 -https://www.oceanexpert.org/institution/14083 -https://www.oceanexpert.org/expert/23389 -https://www.oceanexpert.org/expert/35759 -https://www.oceanexpert.org/expert/45147 -https://www.oceanexpert.org/expert/22970 -https://www.oceanexpert.org/expert/37148 -https://www.oceanexpert.org/event/707 -https://www.oceanexpert.org/expert/37734 -https://www.oceanexpert.org/expert/44936 -https://www.oceanexpert.org/institution/8401 -https://www.oceanexpert.org/institution/13172 -https://www.oceanexpert.org/institution/18376 -https://www.oceanexpert.org/expert/23207 -https://www.oceanexpert.org/expert/19007 -https://www.oceanexpert.org/institution/19436 -https://www.oceanexpert.org/expert/46246 -https://www.oceanexpert.org/institution/20228 -https://www.oceanexpert.org/expert/9114 -https://www.oceanexpert.org/expert/22255 -https://www.oceanexpert.org/institution/19000 -https://www.oceanexpert.org/expert/28415 -https://www.oceanexpert.org/expert/45557 -https://www.oceanexpert.org/institution/18041 -https://www.oceanexpert.org/expert/34133 -https://www.oceanexpert.org/institution/18380 -https://www.oceanexpert.org/institution/8590 -https://www.oceanexpert.org/expert/23485 -https://www.oceanexpert.org/institution/21690 -https://www.oceanexpert.org/event/2970 -https://www.oceanexpert.org/expert/11508 -https://www.oceanexpert.org/event/1409 -https://www.oceanexpert.org/institution/7643 -https://www.oceanexpert.org/expert/24016 -https://www.oceanexpert.org/expert/44529 -https://www.oceanexpert.org/expert/46831 -https://www.oceanexpert.org/expert/20853 -https://www.oceanexpert.org/expert/19246 -https://www.oceanexpert.org/institution/19413 -https://www.oceanexpert.org/event/2042 -https://www.oceanexpert.org/expert/33774 -https://www.oceanexpert.org/expert/25396 -https://www.oceanexpert.org/institution/17523 -https://www.oceanexpert.org/event/415 -https://www.oceanexpert.org/expert/15472 -https://www.oceanexpert.org/event/409 -https://www.oceanexpert.org/expert/35687 -https://www.oceanexpert.org/expert/45059 -https://www.oceanexpert.org/expert/21193 -https://www.oceanexpert.org/expert/19449 -https://www.oceanexpert.org/expert/13963 -https://www.oceanexpert.org/expert/34230 -https://www.oceanexpert.org/institution/16212 -https://www.oceanexpert.org/institution/14021 -https://www.oceanexpert.org/expert/18456 -https://www.oceanexpert.org/institution/9486 -https://www.oceanexpert.org/expert/6866 -https://www.oceanexpert.org/event/1211 -https://www.oceanexpert.org/institution/20639 -https://www.oceanexpert.org/institution/11763 -https://www.oceanexpert.org/expert/45713 -https://www.oceanexpert.org/expert/20712 -https://www.oceanexpert.org/institution/18570 -https://www.oceanexpert.org/expert/45516 -https://www.oceanexpert.org/institution/14227 -https://www.oceanexpert.org/institution/22001 -https://www.oceanexpert.org/expert/27230 -https://www.oceanexpert.org/expert/37226 -https://www.oceanexpert.org/expert/20621 -https://www.oceanexpert.org/expert/46680 -https://www.oceanexpert.org/expert/720 -https://www.oceanexpert.org/event/2357 -https://www.oceanexpert.org/expert/38929 -https://www.oceanexpert.org/institution/19760 -https://www.oceanexpert.org/expert/43254 -https://www.oceanexpert.org/expert/11449 -https://www.oceanexpert.org/expert/43964 -https://www.oceanexpert.org/expert/36972 -https://www.oceanexpert.org/expert/36977 -https://www.oceanexpert.org/expert/23742 -https://www.oceanexpert.org/expert/23290 -https://www.oceanexpert.org/institution/16848 -https://www.oceanexpert.org/institution/5340 -https://www.oceanexpert.org/expert/3199 -https://www.oceanexpert.org/expert/20441 -https://www.oceanexpert.org/expert/48036 -https://www.oceanexpert.org/expert/15791 -https://www.oceanexpert.org/expert/32430 -https://www.oceanexpert.org/institution/13822 -https://www.oceanexpert.org/institution/21505 -https://www.oceanexpert.org/institution/19379 -https://www.oceanexpert.org/expert/31414 -https://www.oceanexpert.org/expert/14254 -https://www.oceanexpert.org/institution/20360 -https://www.oceanexpert.org/expert/47735 -https://www.oceanexpert.org/expert/17380 -https://www.oceanexpert.org/expert/4113 -https://www.oceanexpert.org/expert/27548 -https://www.oceanexpert.org/expert/24088 -https://www.oceanexpert.org/expert/21853 -https://www.oceanexpert.org/expert/48682 -https://www.oceanexpert.org/expert/18003 -https://www.oceanexpert.org/expert/20183 -https://www.oceanexpert.org/expert/21772 -https://www.oceanexpert.org/expert/35677 -https://www.oceanexpert.org/expert/20572 -https://www.oceanexpert.org/institution/19743 -https://www.oceanexpert.org/institution/20885 -https://www.oceanexpert.org/institution/14339 -https://www.oceanexpert.org/expert/44327 -https://www.oceanexpert.org/expert/36540 -https://www.oceanexpert.org/expert/30554 -https://www.oceanexpert.org/expert/34267 -https://www.oceanexpert.org/expert/34716 -https://www.oceanexpert.org/expert/19672 -https://www.oceanexpert.org/expert/11190 -https://www.oceanexpert.org/institution/14735 -https://www.oceanexpert.org/expert/24024 -https://www.oceanexpert.org/expert/12870 -https://www.oceanexpert.org/expert/42792 -https://www.oceanexpert.org/expert/26785 -https://www.oceanexpert.org/institution/20910 -https://www.oceanexpert.org/expert/33448 -https://www.oceanexpert.org/expert/37177 -https://www.oceanexpert.org/institution/20835 -https://www.oceanexpert.org/expert/43785 -https://www.oceanexpert.org/institution/12537 -https://www.oceanexpert.org/event/2869 -https://www.oceanexpert.org/expert/25256 -https://www.oceanexpert.org/expert/38652 -https://www.oceanexpert.org/expert/48817 -https://www.oceanexpert.org/expert/36198 -https://www.oceanexpert.org/institution/20996 -https://www.oceanexpert.org/expert/7123 -https://www.oceanexpert.org/expert/40551 -https://www.oceanexpert.org/expert/27050 -https://www.oceanexpert.org/institution/22058 -https://www.oceanexpert.org/institution/12012 -https://www.oceanexpert.org/institution/6799 -https://www.oceanexpert.org/event/290 -https://www.oceanexpert.org/expert/31568 -https://www.oceanexpert.org/expert/23277 -https://www.oceanexpert.org/institution/15927 -https://www.oceanexpert.org/institution/18144 -https://www.oceanexpert.org/expert/26944 -https://www.oceanexpert.org/expert/20160 -https://www.oceanexpert.org/expert/46977 -https://www.oceanexpert.org/institution/19453 -https://www.oceanexpert.org/expert/24874 -https://www.oceanexpert.org/institution/19898 -https://www.oceanexpert.org/expert/33958 -https://www.oceanexpert.org/expert/10224 -https://www.oceanexpert.org/event/877 -https://www.oceanexpert.org/expert/17378 -https://www.oceanexpert.org/institution/6126 -https://www.oceanexpert.org/expert/2570 -https://www.oceanexpert.org/expert/26128 -https://www.oceanexpert.org/event/85 -https://www.oceanexpert.org/expert/33787 -https://www.oceanexpert.org/event/352 -https://www.oceanexpert.org/institution/19608 -https://www.oceanexpert.org/expert/37078 -https://www.oceanexpert.org/event/1806 -https://www.oceanexpert.org/institution/17713 -https://www.oceanexpert.org/expert/14652 -https://www.oceanexpert.org/institution/7341 -https://www.oceanexpert.org/expert/19770 -https://www.oceanexpert.org/expert/26562 -https://www.oceanexpert.org/institution/10316 -https://www.oceanexpert.org/institution/11053 -https://www.oceanexpert.org/event/1783 -https://www.oceanexpert.org/expert/35206 -https://www.oceanexpert.org/expert/15142 -https://www.oceanexpert.org/expert/24248 -https://www.oceanexpert.org/expert/26337 -https://www.oceanexpert.org/expert/10112 -https://www.oceanexpert.org/expert/3448 -https://www.oceanexpert.org/event/1463 -https://www.oceanexpert.org/expert/2354 -https://www.oceanexpert.org/expert/25144 -https://www.oceanexpert.org/institution/12294 -https://www.oceanexpert.org/expert/48498 -https://www.oceanexpert.org/expert/20801 -https://www.oceanexpert.org/institution/12959 -https://www.oceanexpert.org/expert/33788 -https://www.oceanexpert.org/event/1649 -https://www.oceanexpert.org/institution/19588 -https://www.oceanexpert.org/expert/10936 -https://www.oceanexpert.org/expert/33860 -https://www.oceanexpert.org/expert/48307 -https://www.oceanexpert.org/expert/42483 -https://www.oceanexpert.org/expert/1389 -https://www.oceanexpert.org/expert/24120 -https://www.oceanexpert.org/expert/14583 -https://www.oceanexpert.org/institution/14175 -https://www.oceanexpert.org/expert/34924 -https://www.oceanexpert.org/expert/19836 -https://www.oceanexpert.org/institution/18651 -https://www.oceanexpert.org/expert/12351 -https://www.oceanexpert.org/expert/25162 -https://www.oceanexpert.org/event/1213 -https://www.oceanexpert.org/expert/13872 -https://www.oceanexpert.org/expert/17487 -https://www.oceanexpert.org/event/2502 -https://www.oceanexpert.org/expert/20968 -https://www.oceanexpert.org/institution/18409 -https://www.oceanexpert.org/institution/5534 -https://www.oceanexpert.org/expert/18171 -https://www.oceanexpert.org/institution/7492 -https://www.oceanexpert.org/expert/33292 -https://www.oceanexpert.org/institution/19944 -https://www.oceanexpert.org/expert/22435 -https://www.oceanexpert.org/expert/20352 -https://www.oceanexpert.org/expert/25097 -https://www.oceanexpert.org/institution/18980 -https://www.oceanexpert.org/expert/46150 -https://www.oceanexpert.org/expert/44032 -https://www.oceanexpert.org/institution/10135 -https://www.oceanexpert.org/expert/936 -https://www.oceanexpert.org/expert/13537 -https://www.oceanexpert.org/expert/28693 -https://www.oceanexpert.org/expert/12144 -https://www.oceanexpert.org/expert/48850 -https://www.oceanexpert.org/expert/6213 -https://www.oceanexpert.org/expert/30197 -https://www.oceanexpert.org/expert/28895 -https://www.oceanexpert.org/expert/43683 -https://www.oceanexpert.org/expert/34147 -https://www.oceanexpert.org/expert/20643 -https://www.oceanexpert.org/expert/26056 -https://www.oceanexpert.org/expert/22432 -https://www.oceanexpert.org/expert/35403 -https://www.oceanexpert.org/expert/29102 -https://www.oceanexpert.org/expert/37046 -https://www.oceanexpert.org/expert/31041 -https://www.oceanexpert.org/expert/19459 -https://www.oceanexpert.org/expert/23714 -https://www.oceanexpert.org/expert/27641 -https://www.oceanexpert.org/institution/8714 -https://www.oceanexpert.org/expert/27264 -https://www.oceanexpert.org/institution/17924 -https://www.oceanexpert.org/institution/18129 -https://www.oceanexpert.org/expert/42621 -https://www.oceanexpert.org/expert/17270 -https://www.oceanexpert.org/expert/31887 -https://www.oceanexpert.org/expert/24291 -https://www.oceanexpert.org/institution/22056 -https://www.oceanexpert.org/expert/35266 -https://www.oceanexpert.org/event/358 -https://www.oceanexpert.org/institution/11875 -https://www.oceanexpert.org/expert/46926 -https://www.oceanexpert.org/expert/45115 -https://www.oceanexpert.org/expert/38171 -https://www.oceanexpert.org/expert/45124 -https://www.oceanexpert.org/expert/22056 -https://www.oceanexpert.org/expert/31994 -https://www.oceanexpert.org/expert/16676 -https://www.oceanexpert.org/expert/43032 -https://www.oceanexpert.org/expert/20384 -https://www.oceanexpert.org/institution/7537 -https://www.oceanexpert.org/expert/23126 -https://www.oceanexpert.org/expert/31657 -https://www.oceanexpert.org/event/2951 -https://www.oceanexpert.org/institution/18598 -https://www.oceanexpert.org/event/20 -https://www.oceanexpert.org/event/1209 -https://www.oceanexpert.org/event/3012 -https://www.oceanexpert.org/expert/37682 -https://www.oceanexpert.org/expert/44742 -https://www.oceanexpert.org/expert/27305 -https://www.oceanexpert.org/expert/20653 -https://www.oceanexpert.org/expert/22778 -https://www.oceanexpert.org/expert/19545 -https://www.oceanexpert.org/expert/20446 -https://www.oceanexpert.org/expert/20703 -https://www.oceanexpert.org/institution/9277 -https://www.oceanexpert.org/expert/11742 -https://www.oceanexpert.org/institution/9186 -https://www.oceanexpert.org/expert/22941 -https://www.oceanexpert.org/expert/33481 -https://www.oceanexpert.org/expert/19518 -https://www.oceanexpert.org/expert/21625 -https://www.oceanexpert.org/expert/47690 -https://www.oceanexpert.org/expert/36716 -https://www.oceanexpert.org/institution/17731 -https://www.oceanexpert.org/expert/25773 -https://www.oceanexpert.org/event/757 -https://www.oceanexpert.org/institution/14905 -https://www.oceanexpert.org/event/2199 -https://www.oceanexpert.org/expert/37004 -https://www.oceanexpert.org/institution/15222 -https://www.oceanexpert.org/event/3244 -https://www.oceanexpert.org/institution/5235 -https://www.oceanexpert.org/expert/24987 -https://www.oceanexpert.org/event/270 -https://www.oceanexpert.org/event/344 -https://www.oceanexpert.org/expert/29963 -https://www.oceanexpert.org/institution/13168 -https://www.oceanexpert.org/expert/36236 -https://www.oceanexpert.org/expert/36437 -https://www.oceanexpert.org/institution/19793 -https://www.oceanexpert.org/expert/35109 -https://www.oceanexpert.org/event/683 -https://www.oceanexpert.org/expert/48195 -https://www.oceanexpert.org/expert/33383 -https://www.oceanexpert.org/institution/14612 -https://www.oceanexpert.org/expert/24692 -https://www.oceanexpert.org/event/187 -https://www.oceanexpert.org/expert/16780 -https://www.oceanexpert.org/expert/27130 -https://www.oceanexpert.org/institution/14176 -https://www.oceanexpert.org/event/208 -https://www.oceanexpert.org/expert/28018 -https://www.oceanexpert.org/expert/23461 -https://www.oceanexpert.org/expert/27225 -https://www.oceanexpert.org/institution/6251 -https://www.oceanexpert.org/expert/20535 -https://www.oceanexpert.org/expert/48039 -https://www.oceanexpert.org/expert/23541 -https://www.oceanexpert.org/expert/46136 -https://www.oceanexpert.org/expert/47804 -https://www.oceanexpert.org/expert/47691 -https://www.oceanexpert.org/expert/38939 -https://www.oceanexpert.org/expert/32977 -https://www.oceanexpert.org/event/2794 -https://www.oceanexpert.org/expert/8427 -https://www.oceanexpert.org/institution/10394 -https://www.oceanexpert.org/expert/48156 -https://www.oceanexpert.org/expert/23920 -https://www.oceanexpert.org/expert/29125 -https://www.oceanexpert.org/institution/18149 -https://www.oceanexpert.org/expert/3189 -https://www.oceanexpert.org/expert/47300 -https://www.oceanexpert.org/expert/24621 -https://www.oceanexpert.org/institution/19906 -https://www.oceanexpert.org/expert/31320 -https://www.oceanexpert.org/expert/26895 -https://www.oceanexpert.org/expert/17213 -https://www.oceanexpert.org/institution/20103 -https://www.oceanexpert.org/expert/11770 -https://www.oceanexpert.org/institution/21708 -https://www.oceanexpert.org/expert/35396 -https://www.oceanexpert.org/institution/20379 -https://www.oceanexpert.org/event/143 -https://www.oceanexpert.org/expert/44820 -https://www.oceanexpert.org/expert/27554 -https://www.oceanexpert.org/institution/14515 -https://www.oceanexpert.org/event/2400 -https://www.oceanexpert.org/expert/41292 -https://www.oceanexpert.org/institution/14359 -https://www.oceanexpert.org/expert/19747 -https://www.oceanexpert.org/expert/47151 -https://www.oceanexpert.org/expert/632 -https://www.oceanexpert.org/expert/48640 -https://www.oceanexpert.org/expert/24610 -https://www.oceanexpert.org/expert/25686 -https://www.oceanexpert.org/expert/35493 -https://www.oceanexpert.org/expert/29900 -https://www.oceanexpert.org/event/929 -https://www.oceanexpert.org/institution/18583 -https://www.oceanexpert.org/institution/17796 -https://www.oceanexpert.org/event/1056 -https://www.oceanexpert.org/expert/36858 -https://www.oceanexpert.org/expert/20627 -https://www.oceanexpert.org/expert/26022 -https://www.oceanexpert.org/expert/15431 -https://www.oceanexpert.org/institution/9119 -https://www.oceanexpert.org/expert/35455 -https://www.oceanexpert.org/expert/12147 -https://www.oceanexpert.org/expert/23204 -https://www.oceanexpert.org/expert/36857 -https://www.oceanexpert.org/expert/27696 -https://www.oceanexpert.org/event/862 -https://www.oceanexpert.org/expert/18798 -https://www.oceanexpert.org/expert/35594 -https://www.oceanexpert.org/expert/47202 -https://www.oceanexpert.org/expert/35383 -https://www.oceanexpert.org/expert/46620 -https://www.oceanexpert.org/expert/28305 -https://www.oceanexpert.org/expert/37251 -https://www.oceanexpert.org/expert/43507 -https://www.oceanexpert.org/institution/12816 -https://www.oceanexpert.org/expert/1572 -https://www.oceanexpert.org/institution/12040 -https://www.oceanexpert.org/expert/16574 -https://www.oceanexpert.org/expert/23742 -https://www.oceanexpert.org/expert/13791 -https://www.oceanexpert.org/expert/42546 -https://www.oceanexpert.org/expert/46161 -https://www.oceanexpert.org/institution/8998 -https://www.oceanexpert.org/expert/2295 -https://www.oceanexpert.org/institution/21278 -https://www.oceanexpert.org/expert/45548 -https://www.oceanexpert.org/expert/37039 -https://www.oceanexpert.org/event/1617 -https://www.oceanexpert.org/expert/25396 -https://www.oceanexpert.org/institution/18074 -https://www.oceanexpert.org/event/1726 -https://www.oceanexpert.org/expert/17566 -https://www.oceanexpert.org/expert/8667 -https://www.oceanexpert.org/institution/13986 -https://www.oceanexpert.org/expert/38034 -https://www.oceanexpert.org/expert/47972 -https://www.oceanexpert.org/expert/46426 -https://www.oceanexpert.org/expert/14151 -https://www.oceanexpert.org/expert/33204 -https://www.oceanexpert.org/event/2634 -https://www.oceanexpert.org/event/3059 -https://www.oceanexpert.org/expert/29514 -https://www.oceanexpert.org/expert/25506 -https://www.oceanexpert.org/event/3058 -https://www.oceanexpert.org/expert/15477 -https://www.oceanexpert.org/expert/28887 -https://www.oceanexpert.org/institution/21836 -https://www.oceanexpert.org/expert/42630 -https://www.oceanexpert.org/expert/32448 -https://www.oceanexpert.org/expert/12166 -https://www.oceanexpert.org/expert/42920 -https://www.oceanexpert.org/institution/14693 -https://www.oceanexpert.org/institution/22093 -https://www.oceanexpert.org/institution/14217 -https://www.oceanexpert.org/expert/42949 -https://www.oceanexpert.org/institution/10700 -https://www.oceanexpert.org/expert/46526 -https://www.oceanexpert.org/expert/43053 -https://www.oceanexpert.org/institution/21808 -https://www.oceanexpert.org/institution/8450 -https://www.oceanexpert.org/event/2139 -https://www.oceanexpert.org/event/564 -https://www.oceanexpert.org/expert/30682 -https://www.oceanexpert.org/expert/44363 -https://www.oceanexpert.org/expert/42930 -https://www.oceanexpert.org/expert/14453 -https://www.oceanexpert.org/institution/18825 -https://www.oceanexpert.org/event/281 -https://www.oceanexpert.org/expert/35651 -https://www.oceanexpert.org/event/1305 -https://www.oceanexpert.org/expert/25246 -https://www.oceanexpert.org/institution/18759 -https://www.oceanexpert.org/expert/29535 -https://www.oceanexpert.org/expert/23331 -https://www.oceanexpert.org/institution/9402 -https://www.oceanexpert.org/expert/32956 -https://www.oceanexpert.org/institution/11429 -https://www.oceanexpert.org/expert/12728 -https://www.oceanexpert.org/event/3196 -https://www.oceanexpert.org/institution/13144 -https://www.oceanexpert.org/expert/36684 -https://www.oceanexpert.org/institution/5324 -https://www.oceanexpert.org/event/1356 -https://www.oceanexpert.org/institution/18100 -https://www.oceanexpert.org/expert/16317 -https://www.oceanexpert.org/institution/11580 -https://www.oceanexpert.org/institution/19446 -https://www.oceanexpert.org/expert/10796 -https://www.oceanexpert.org/expert/11618 -https://www.oceanexpert.org/event/3000 -https://www.oceanexpert.org/expert/44690 -https://www.oceanexpert.org/expert/25470 -https://www.oceanexpert.org/institution/8760 -https://www.oceanexpert.org/institution/18867 -https://www.oceanexpert.org/expert/6932 -https://www.oceanexpert.org/expert/36342 -https://www.oceanexpert.org/event/1921 -https://www.oceanexpert.org/expert/24061 -https://www.oceanexpert.org/expert/45405 -https://www.oceanexpert.org/institution/20468 -https://www.oceanexpert.org/expert/36500 -https://www.oceanexpert.org/institution/10350 -https://www.oceanexpert.org/expert/4517 -https://www.oceanexpert.org/expert/47965 -https://www.oceanexpert.org/expert/20571 -https://www.oceanexpert.org/expert/8711 -https://www.oceanexpert.org/expert/19037 -https://www.oceanexpert.org/institution/19335 -https://www.oceanexpert.org/event/2275 -https://www.oceanexpert.org/institution/15578 -https://www.oceanexpert.org/event/2327 -https://www.oceanexpert.org/institution/21831 -https://www.oceanexpert.org/event/1314 -https://www.oceanexpert.org/expert/19207 -https://www.oceanexpert.org/institution/11874 -https://www.oceanexpert.org/expert/33027 -https://www.oceanexpert.org/institution/15799 -https://www.oceanexpert.org/expert/16859 -https://www.oceanexpert.org/expert/36964 -https://www.oceanexpert.org/expert/26322 -https://www.oceanexpert.org/expert/5182 -https://www.oceanexpert.org/institution/11519 -https://www.oceanexpert.org/expert/44127 -https://www.oceanexpert.org/expert/34933 -https://www.oceanexpert.org/expert/20853 -https://www.oceanexpert.org/event/2514 -https://www.oceanexpert.org/expert/13281 -https://www.oceanexpert.org/expert/20348 -https://www.oceanexpert.org/expert/30760 -https://www.oceanexpert.org/expert/12167 -https://www.oceanexpert.org/expert/42549 -https://www.oceanexpert.org/expert/16163 -https://www.oceanexpert.org/expert/22415 -https://www.oceanexpert.org/expert/39344 -https://www.oceanexpert.org/expert/48318 -https://www.oceanexpert.org/institution/21128 -https://www.oceanexpert.org/event/2923 -https://www.oceanexpert.org/expert/43290 -https://www.oceanexpert.org/expert/23912 -https://www.oceanexpert.org/institution/21502 -https://www.oceanexpert.org/expert/30957 -https://www.oceanexpert.org/event/3282 -https://www.oceanexpert.org/event/1221 -https://www.oceanexpert.org/expert/21981 -https://www.oceanexpert.org/expert/46700 -https://www.oceanexpert.org/institution/19670 -https://www.oceanexpert.org/event/100 -https://www.oceanexpert.org/institution/19240 -https://www.oceanexpert.org/event/1011 -https://www.oceanexpert.org/expert/19623 -https://www.oceanexpert.org/expert/47343 -https://www.oceanexpert.org/institution/18501 -https://www.oceanexpert.org/event/1038 -https://www.oceanexpert.org/expert/16959 -https://www.oceanexpert.org/expert/37073 -https://www.oceanexpert.org/expert/39010 -https://www.oceanexpert.org/expert/33448 -https://www.oceanexpert.org/expert/31516 -https://www.oceanexpert.org/expert/16102 -https://www.oceanexpert.org/event/101 -https://www.oceanexpert.org/expert/29102 -https://www.oceanexpert.org/expert/15076 -https://www.oceanexpert.org/expert/19881 -https://www.oceanexpert.org/expert/35711 -https://www.oceanexpert.org/expert/20139 -https://www.oceanexpert.org/expert/36095 -https://www.oceanexpert.org/expert/25777 -https://www.oceanexpert.org/event/1406 -https://www.oceanexpert.org/event/2853 -https://www.oceanexpert.org/expert/25955 -https://www.oceanexpert.org/expert/9809 -https://www.oceanexpert.org/expert/31683 -https://www.oceanexpert.org/expert/30954 -https://www.oceanexpert.org/expert/38858 -https://www.oceanexpert.org/expert/22987 -https://www.oceanexpert.org/institution/15362 -https://www.oceanexpert.org/event/628 -https://www.oceanexpert.org/expert/44478 -https://www.oceanexpert.org/expert/48451 -https://www.oceanexpert.org/expert/44310 -https://www.oceanexpert.org/expert/46442 -https://www.oceanexpert.org/institution/22092 -https://www.oceanexpert.org/expert/26752 -https://www.oceanexpert.org/expert/18123 -https://www.oceanexpert.org/institution/19037 -https://www.oceanexpert.org/expert/15950 -https://www.oceanexpert.org/expert/35199 -https://www.oceanexpert.org/expert/22547 -https://www.oceanexpert.org/expert/16745 -https://www.oceanexpert.org/expert/46793 -https://www.oceanexpert.org/expert/48469 -https://www.oceanexpert.org/institution/11613 -https://www.oceanexpert.org/expert/25376 -https://www.oceanexpert.org/expert/26618 -https://www.oceanexpert.org/institution/18625 -https://www.oceanexpert.org/institution/9375 -https://www.oceanexpert.org/event/1006 -https://www.oceanexpert.org/expert/27196 -https://www.oceanexpert.org/expert/48272 -https://www.oceanexpert.org/institution/7778 -https://www.oceanexpert.org/expert/35609 -https://www.oceanexpert.org/expert/32826 -https://www.oceanexpert.org/institution/14589 -https://www.oceanexpert.org/event/2387 -https://www.oceanexpert.org/expert/34092 -https://www.oceanexpert.org/institution/17471 -https://www.oceanexpert.org/expert/20969 -https://www.oceanexpert.org/expert/36535 -https://www.oceanexpert.org/expert/31161 -https://www.oceanexpert.org/institution/19634 -https://www.oceanexpert.org/institution/21581 -https://www.oceanexpert.org/event/226 -https://www.oceanexpert.org/expert/40622 -https://www.oceanexpert.org/expert/26156 -https://www.oceanexpert.org/expert/9136 -https://www.oceanexpert.org/institution/14741 -https://www.oceanexpert.org/expert/11498 -https://www.oceanexpert.org/expert/17087 -https://www.oceanexpert.org/expert/23396 -https://www.oceanexpert.org/expert/42838 -https://www.oceanexpert.org/institution/5196 -https://www.oceanexpert.org/expert/1992 -https://www.oceanexpert.org/expert/25256 -https://www.oceanexpert.org/institution/19997 -https://www.oceanexpert.org/expert/1516 -https://www.oceanexpert.org/expert/24390 -https://www.oceanexpert.org/expert/45429 -https://www.oceanexpert.org/event/1783 -https://www.oceanexpert.org/institution/13236 -https://www.oceanexpert.org/expert/47100 -https://www.oceanexpert.org/expert/43089 -https://www.oceanexpert.org/expert/47545 -https://www.oceanexpert.org/institution/21222 -https://www.oceanexpert.org/expert/47611 -https://www.oceanexpert.org/expert/16017 -https://www.oceanexpert.org/expert/48274 -https://www.oceanexpert.org/event/416 -https://www.oceanexpert.org/expert/47201 -https://www.oceanexpert.org/institution/11853 -https://www.oceanexpert.org/expert/44505 -https://www.oceanexpert.org/expert/38911 -https://www.oceanexpert.org/institution/16363 -https://www.oceanexpert.org/expert/24655 -https://www.oceanexpert.org/expert/26220 -https://www.oceanexpert.org/expert/7360 -https://www.oceanexpert.org/institution/15771 -https://www.oceanexpert.org/expert/43982 -https://www.oceanexpert.org/expert/30749 -https://www.oceanexpert.org/expert/749 -https://www.oceanexpert.org/expert/33169 -https://www.oceanexpert.org/expert/851 -https://www.oceanexpert.org/expert/11585 -https://www.oceanexpert.org/expert/16889 -https://www.oceanexpert.org/institution/16181 -https://www.oceanexpert.org/institution/20341 -https://www.oceanexpert.org/expert/47978 -https://www.oceanexpert.org/expert/6788 -https://www.oceanexpert.org/expert/27710 -https://www.oceanexpert.org/expert/42606 -https://www.oceanexpert.org/expert/13334 -https://www.oceanexpert.org/expert/27442 -https://www.oceanexpert.org/expert/16593 -https://www.oceanexpert.org/event/2399 -https://www.oceanexpert.org/expert/35770 -https://www.oceanexpert.org/event/2239 -https://www.oceanexpert.org/institution/10124 -https://www.oceanexpert.org/institution/19116 -https://www.oceanexpert.org/expert/39069 -https://www.oceanexpert.org/expert/29214 -https://www.oceanexpert.org/expert/16600 -https://www.oceanexpert.org/expert/29810 -https://www.oceanexpert.org/expert/37384 -https://www.oceanexpert.org/institution/19605 -https://www.oceanexpert.org/expert/27198 -https://www.oceanexpert.org/expert/32460 -https://www.oceanexpert.org/institution/21760 -https://www.oceanexpert.org/institution/15826 -https://www.oceanexpert.org/event/227 -https://www.oceanexpert.org/institution/12574 -https://www.oceanexpert.org/expert/1117 -https://www.oceanexpert.org/expert/32136 -https://www.oceanexpert.org/expert/44816 -https://www.oceanexpert.org/institution/20223 -https://www.oceanexpert.org/institution/21735 -https://www.oceanexpert.org/expert/37541 -https://www.oceanexpert.org/expert/35284 -https://www.oceanexpert.org/expert/23421 -https://www.oceanexpert.org/expert/47397 -https://www.oceanexpert.org/institution/21828 -https://www.oceanexpert.org/expert/11372 -https://www.oceanexpert.org/expert/27478 -https://www.oceanexpert.org/institution/19213 -https://www.oceanexpert.org/institution/21814 -https://www.oceanexpert.org/expert/2411 -https://www.oceanexpert.org/institution/18415 -https://www.oceanexpert.org/expert/46243 -https://www.oceanexpert.org/institution/6328 -https://www.oceanexpert.org/expert/23898 -https://www.oceanexpert.org/expert/1486 -https://www.oceanexpert.org/expert/24807 -https://www.oceanexpert.org/institution/19647 -https://www.oceanexpert.org/event/3284 -https://www.oceanexpert.org/expert/13255 -https://www.oceanexpert.org/event/1066 -https://www.oceanexpert.org/institution/19545 -https://www.oceanexpert.org/expert/29802 -https://www.oceanexpert.org/expert/2254 -https://www.oceanexpert.org/expert/23869 -https://www.oceanexpert.org/expert/33822 -https://www.oceanexpert.org/expert/22190 -https://www.oceanexpert.org/expert/46846 -https://www.oceanexpert.org/expert/28155 -https://www.oceanexpert.org/expert/2470 -https://www.oceanexpert.org/expert/16396 -https://www.oceanexpert.org/institution/12378 -https://www.oceanexpert.org/institution/17834 -https://www.oceanexpert.org/event/1735 -https://www.oceanexpert.org/expert/11682 -https://www.oceanexpert.org/expert/22112 -https://www.oceanexpert.org/event/3044 -https://www.oceanexpert.org/expert/45744 -https://www.oceanexpert.org/event/484 -https://www.oceanexpert.org/expert/47992 -https://www.oceanexpert.org/expert/47705 -https://www.oceanexpert.org/expert/24474 -https://www.oceanexpert.org/institution/11399 -https://www.oceanexpert.org/institution/18995 -https://www.oceanexpert.org/institution/18962 -https://www.oceanexpert.org/expert/38156 -https://www.oceanexpert.org/expert/46256 -https://www.oceanexpert.org/institution/21194 -https://www.oceanexpert.org/expert/46774 -https://www.oceanexpert.org/expert/44175 -https://www.oceanexpert.org/event/2221 -https://www.oceanexpert.org/institution/12997 -https://www.oceanexpert.org/expert/27451 -https://www.oceanexpert.org/expert/42972 -https://www.oceanexpert.org/institution/21761 -https://www.oceanexpert.org/expert/25025 -https://www.oceanexpert.org/expert/14736 -https://www.oceanexpert.org/event/3020 -https://www.oceanexpert.org/institution/20103 -https://www.oceanexpert.org/institution/20419 -https://www.oceanexpert.org/expert/7195 -https://www.oceanexpert.org/institution/20527 -https://www.oceanexpert.org/expert/24830 -https://www.oceanexpert.org/expert/24769 -https://www.oceanexpert.org/institution/19416 -https://www.oceanexpert.org/expert/20391 -https://www.oceanexpert.org/expert/40338 -https://www.oceanexpert.org/expert/43944 -https://www.oceanexpert.org/expert/30711 -https://www.oceanexpert.org/institution/18341 -https://www.oceanexpert.org/expert/35315 -https://www.oceanexpert.org/expert/45063 -https://www.oceanexpert.org/institution/16716 -https://www.oceanexpert.org/institution/18912 -https://www.oceanexpert.org/expert/19610 -https://www.oceanexpert.org/expert/39976 -https://www.oceanexpert.org/expert/22826 -https://www.oceanexpert.org/institution/18596 -https://www.oceanexpert.org/expert/35236 -https://www.oceanexpert.org/expert/23522 -https://www.oceanexpert.org/event/148 -https://www.oceanexpert.org/institution/12125 -https://www.oceanexpert.org/institution/15861 -https://www.oceanexpert.org/expert/31189 -https://www.oceanexpert.org/expert/43315 -https://www.oceanexpert.org/expert/19934 -https://www.oceanexpert.org/expert/22156 -https://www.oceanexpert.org/event/3083 -https://www.oceanexpert.org/expert/43925 -https://www.oceanexpert.org/expert/42873 -https://www.oceanexpert.org/expert/22280 -https://www.oceanexpert.org/expert/9546 -https://www.oceanexpert.org/event/1923 -https://www.oceanexpert.org/expert/40056 -https://www.oceanexpert.org/institution/15491 -https://www.oceanexpert.org/event/2838 -https://www.oceanexpert.org/expert/23141 -https://www.oceanexpert.org/expert/23473 -https://www.oceanexpert.org/institution/18079 -https://www.oceanexpert.org/expert/45177 -https://www.oceanexpert.org/event/859 -https://www.oceanexpert.org/institution/18703 -https://www.oceanexpert.org/expert/32519 -https://www.oceanexpert.org/expert/29504 -https://www.oceanexpert.org/institution/18507 -https://www.oceanexpert.org/expert/23806 -https://www.oceanexpert.org/expert/14307 -https://www.oceanexpert.org/expert/46489 -https://www.oceanexpert.org/institution/18102 -https://www.oceanexpert.org/expert/1317 -https://www.oceanexpert.org/institution/21423 -https://www.oceanexpert.org/expert/44235 -https://www.oceanexpert.org/expert/32603 -https://www.oceanexpert.org/institution/8852 -https://www.oceanexpert.org/expert/46819 -https://www.oceanexpert.org/expert/34571 -https://www.oceanexpert.org/expert/42821 -https://www.oceanexpert.org/expert/16847 -https://www.oceanexpert.org/expert/26603 -https://www.oceanexpert.org/expert/23039 -https://www.oceanexpert.org/expert/33808 -https://www.oceanexpert.org/expert/20473 -https://www.oceanexpert.org/institution/8868 -https://www.oceanexpert.org/expert/32495 -https://www.oceanexpert.org/expert/47573 -https://www.oceanexpert.org/event/1670 -https://www.oceanexpert.org/institution/21839 -https://www.oceanexpert.org/expert/24058 -https://www.oceanexpert.org/expert/46984 -https://www.oceanexpert.org/expert/45174 -https://www.oceanexpert.org/expert/26096 -https://www.oceanexpert.org/expert/22848 -https://www.oceanexpert.org/expert/18345 -https://www.oceanexpert.org/institution/21035 -https://www.oceanexpert.org/expert/21559 -https://www.oceanexpert.org/expert/37925 -https://www.oceanexpert.org/expert/8935 -https://www.oceanexpert.org/event/90 -https://www.oceanexpert.org/institution/15648 -https://www.oceanexpert.org/institution/21747 -https://www.oceanexpert.org/institution/16514 -https://www.oceanexpert.org/expert/19946 -https://www.oceanexpert.org/expert/22866 -https://www.oceanexpert.org/expert/24678 -https://www.oceanexpert.org/expert/20137 -https://www.oceanexpert.org/expert/47317 -https://www.oceanexpert.org/institution/18680 -https://www.oceanexpert.org/institution/21584 -https://www.oceanexpert.org/expert/26080 -https://www.oceanexpert.org/expert/20835 -https://www.oceanexpert.org/expert/38388 -https://www.oceanexpert.org/expert/30450 -https://www.oceanexpert.org/expert/45072 -https://www.oceanexpert.org/expert/25569 -https://www.oceanexpert.org/event/1037 -https://www.oceanexpert.org/expert/17316 -https://www.oceanexpert.org/institution/13626 -https://www.oceanexpert.org/expert/14190 -https://www.oceanexpert.org/expert/16404 -https://www.oceanexpert.org/institution/18221 -https://www.oceanexpert.org/institution/13020 -https://www.oceanexpert.org/institution/18655 -https://www.oceanexpert.org/expert/16042 -https://www.oceanexpert.org/event/2736 -https://www.oceanexpert.org/institution/14735 -https://www.oceanexpert.org/expert/44929 -https://www.oceanexpert.org/expert/24709 -https://www.oceanexpert.org/expert/19324 -https://www.oceanexpert.org/institution/7020 -https://www.oceanexpert.org/expert/12314 -https://www.oceanexpert.org/expert/25938 -https://www.oceanexpert.org/expert/45737 -https://www.oceanexpert.org/expert/45199 -https://www.oceanexpert.org/expert/16674 -https://www.oceanexpert.org/institution/8570 -https://www.oceanexpert.org/expert/46864 -https://www.oceanexpert.org/expert/35946 -https://www.oceanexpert.org/expert/47088 -https://www.oceanexpert.org/expert/43087 -https://www.oceanexpert.org/expert/47236 -https://www.oceanexpert.org/expert/19409 -https://www.oceanexpert.org/expert/38809 -https://www.oceanexpert.org/event/2245 -https://www.oceanexpert.org/institution/16677 -https://www.oceanexpert.org/expert/386 -https://www.oceanexpert.org/institution/14907 -https://www.oceanexpert.org/expert/27431 -https://www.oceanexpert.org/institution/14211 -https://www.oceanexpert.org/institution/17362 -https://www.oceanexpert.org/expert/20679 -https://www.oceanexpert.org/expert/25704 -https://www.oceanexpert.org/event/314 -https://www.oceanexpert.org/institution/20808 -https://www.oceanexpert.org/institution/14121 -https://www.oceanexpert.org/institution/18726 -https://www.oceanexpert.org/institution/10810 -https://www.oceanexpert.org/expert/20222 -https://www.oceanexpert.org/expert/25021 -https://www.oceanexpert.org/expert/22317 -https://www.oceanexpert.org/institution/18845 -https://www.oceanexpert.org/institution/21835 -https://www.oceanexpert.org/expert/13130 -https://www.oceanexpert.org/event/2344 -https://www.oceanexpert.org/expert/19526 -https://www.oceanexpert.org/event/1067 -https://www.oceanexpert.org/institution/19736 -https://www.oceanexpert.org/event/872 -https://www.oceanexpert.org/institution/21370 -https://www.oceanexpert.org/expert/13907 -https://www.oceanexpert.org/expert/35312 -https://www.oceanexpert.org/event/1388 -https://www.oceanexpert.org/institution/19739 -https://www.oceanexpert.org/expert/48938 -https://www.oceanexpert.org/expert/43951 -https://www.oceanexpert.org/expert/25417 -https://www.oceanexpert.org/expert/6329 -https://www.oceanexpert.org/expert/17395 -https://www.oceanexpert.org/expert/20622 -https://www.oceanexpert.org/expert/12458 -https://www.oceanexpert.org/expert/29899 -https://www.oceanexpert.org/institution/18119 -https://www.oceanexpert.org/institution/18460 -https://www.oceanexpert.org/expert/29626 -https://www.oceanexpert.org/expert/36422 -https://www.oceanexpert.org/institution/19531 -https://www.oceanexpert.org/expert/14901 -https://www.oceanexpert.org/event/827 -https://www.oceanexpert.org/expert/36744 -https://www.oceanexpert.org/expert/40621 -https://www.oceanexpert.org/institution/21428 -https://www.oceanexpert.org/expert/26796 -https://www.oceanexpert.org/expert/36086 -https://www.oceanexpert.org/institution/21733 -https://www.oceanexpert.org/expert/39419 -https://www.oceanexpert.org/expert/46841 -https://www.oceanexpert.org/expert/48280 -https://www.oceanexpert.org/event/2005 -https://www.oceanexpert.org/institution/21531 -https://www.oceanexpert.org/expert/34849 -https://www.oceanexpert.org/expert/35427 -https://www.oceanexpert.org/expert/6936 -https://www.oceanexpert.org/expert/23570 -https://www.oceanexpert.org/institution/11569 -https://www.oceanexpert.org/event/2850 -https://www.oceanexpert.org/institution/16458 -https://www.oceanexpert.org/expert/24905 -https://www.oceanexpert.org/expert/45933 -https://www.oceanexpert.org/expert/39596 -https://www.oceanexpert.org/institution/13416 -https://www.oceanexpert.org/expert/21110 -https://www.oceanexpert.org/expert/38457 -https://www.oceanexpert.org/expert/17218 -https://www.oceanexpert.org/institution/7373 -https://www.oceanexpert.org/expert/39230 -https://www.oceanexpert.org/expert/38569 -https://www.oceanexpert.org/expert/29129 -https://www.oceanexpert.org/event/1408 -https://www.oceanexpert.org/institution/18002 -https://www.oceanexpert.org/expert/27261 -https://www.oceanexpert.org/expert/48565 -https://www.oceanexpert.org/expert/22734 -https://www.oceanexpert.org/expert/28332 -https://www.oceanexpert.org/event/57 -https://www.oceanexpert.org/event/3298 -https://www.oceanexpert.org/expert/45101 -https://www.oceanexpert.org/expert/48206 -https://www.oceanexpert.org/expert/18024 -https://www.oceanexpert.org/expert/17590 -https://www.oceanexpert.org/institution/20420 -https://www.oceanexpert.org/expert/42821 -https://www.oceanexpert.org/expert/23109 -https://www.oceanexpert.org/expert/44540 -https://www.oceanexpert.org/institution/15160 -https://www.oceanexpert.org/expert/47177 -https://www.oceanexpert.org/expert/9136 -https://www.oceanexpert.org/expert/29566 -https://www.oceanexpert.org/expert/23319 -https://www.oceanexpert.org/expert/20394 -https://www.oceanexpert.org/expert/32488 -https://www.oceanexpert.org/expert/42353 -https://www.oceanexpert.org/expert/30590 -https://www.oceanexpert.org/institution/21576 -https://www.oceanexpert.org/expert/42655 -https://www.oceanexpert.org/expert/37979 -https://www.oceanexpert.org/expert/40121 -https://www.oceanexpert.org/expert/48500 -https://www.oceanexpert.org/event/823 -https://www.oceanexpert.org/event/2976 -https://www.oceanexpert.org/expert/24809 -https://www.oceanexpert.org/expert/19297 -https://www.oceanexpert.org/expert/46101 -https://www.oceanexpert.org/institution/8099 -https://www.oceanexpert.org/institution/20739 -https://www.oceanexpert.org/expert/19892 -https://www.oceanexpert.org/expert/16689 -https://www.oceanexpert.org/institution/11246 -https://www.oceanexpert.org/expert/23907 -https://www.oceanexpert.org/institution/15886 -https://www.oceanexpert.org/institution/20767 -https://www.oceanexpert.org/expert/23569 -https://www.oceanexpert.org/expert/24098 -https://www.oceanexpert.org/institution/11666 -https://www.oceanexpert.org/expert/38344 -https://www.oceanexpert.org/expert/38399 -https://www.oceanexpert.org/expert/892 -https://www.oceanexpert.org/expert/24324 -https://www.oceanexpert.org/expert/25388 -https://www.oceanexpert.org/expert/25763 -https://www.oceanexpert.org/expert/20793 -https://www.oceanexpert.org/expert/48299 -https://www.oceanexpert.org/expert/17096 -https://www.oceanexpert.org/expert/19239 -https://www.oceanexpert.org/expert/30489 -https://www.oceanexpert.org/expert/25258 -https://www.oceanexpert.org/expert/36810 -https://www.oceanexpert.org/institution/12555 -https://www.oceanexpert.org/event/1214 -https://www.oceanexpert.org/expert/44561 -https://www.oceanexpert.org/event/1959 -https://www.oceanexpert.org/institution/10933 -https://www.oceanexpert.org/expert/19578 -https://www.oceanexpert.org/expert/28029 -https://www.oceanexpert.org/expert/36246 -https://www.oceanexpert.org/expert/20185 -https://www.oceanexpert.org/expert/16710 -https://www.oceanexpert.org/expert/18159 -https://www.oceanexpert.org/expert/42972 -https://www.oceanexpert.org/event/1828 -https://www.oceanexpert.org/institution/11075 -https://www.oceanexpert.org/expert/33151 -https://www.oceanexpert.org/expert/1084 -https://www.oceanexpert.org/institution/18036 -https://www.oceanexpert.org/institution/7171 -https://www.oceanexpert.org/expert/48436 -https://www.oceanexpert.org/expert/24811 -https://www.oceanexpert.org/expert/19472 -https://www.oceanexpert.org/expert/33363 -https://www.oceanexpert.org/institution/7631 -https://www.oceanexpert.org/expert/42485 -https://www.oceanexpert.org/expert/45895 -https://www.oceanexpert.org/expert/7027 -https://www.oceanexpert.org/expert/19354 -https://www.oceanexpert.org/expert/46641 -https://www.oceanexpert.org/expert/45847 -https://www.oceanexpert.org/expert/20273 -https://www.oceanexpert.org/expert/17032 -https://www.oceanexpert.org/institution/21661 -https://www.oceanexpert.org/expert/22367 -https://www.oceanexpert.org/expert/40117 -https://www.oceanexpert.org/institution/21889 -https://www.oceanexpert.org/expert/25216 -https://www.oceanexpert.org/expert/43649 -https://www.oceanexpert.org/institution/21584 -https://www.oceanexpert.org/expert/25094 -https://www.oceanexpert.org/institution/10138 -https://www.oceanexpert.org/expert/46299 -https://www.oceanexpert.org/institution/16706 -https://www.oceanexpert.org/event/3281 -https://www.oceanexpert.org/event/1224 -https://www.oceanexpert.org/expert/26365 -https://www.oceanexpert.org/expert/25222 -https://www.oceanexpert.org/expert/27413 -https://www.oceanexpert.org/expert/48861 -https://www.oceanexpert.org/expert/19076 -https://www.oceanexpert.org/expert/25006 -https://www.oceanexpert.org/expert/33434 -https://www.oceanexpert.org/expert/44389 -https://www.oceanexpert.org/expert/33728 -https://www.oceanexpert.org/expert/4444 -https://www.oceanexpert.org/institution/19856 -https://www.oceanexpert.org/event/2878 -https://www.oceanexpert.org/institution/20863 -https://www.oceanexpert.org/expert/46955 -https://www.oceanexpert.org/expert/27400 -https://www.oceanexpert.org/institution/21308 -https://www.oceanexpert.org/institution/14379 -https://www.oceanexpert.org/institution/21038 -https://www.oceanexpert.org/expert/6547 -https://www.oceanexpert.org/expert/45671 -https://www.oceanexpert.org/expert/4108 -https://www.oceanexpert.org/expert/38829 -https://www.oceanexpert.org/expert/33131 -https://www.oceanexpert.org/expert/22744 -https://www.oceanexpert.org/expert/33271 -https://www.oceanexpert.org/institution/15526 -https://www.oceanexpert.org/expert/44037 -https://www.oceanexpert.org/expert/25959 -https://www.oceanexpert.org/expert/43639 -https://www.oceanexpert.org/expert/25409 -https://www.oceanexpert.org/expert/37828 -https://www.oceanexpert.org/expert/28426 -https://www.oceanexpert.org/expert/24395 -https://www.oceanexpert.org/expert/33479 -https://www.oceanexpert.org/event/3021 -https://www.oceanexpert.org/institution/18000 -https://www.oceanexpert.org/expert/9114 -https://www.oceanexpert.org/event/94 -https://www.oceanexpert.org/institution/22094 -https://www.oceanexpert.org/expert/38267 -https://www.oceanexpert.org/expert/30885 -https://www.oceanexpert.org/expert/29243 -https://www.oceanexpert.org/expert/33457 -https://www.oceanexpert.org/institution/21218 -https://www.oceanexpert.org/expert/39164 -https://www.oceanexpert.org/institution/14168 -https://www.oceanexpert.org/institution/17214 -https://www.oceanexpert.org/expert/48599 -https://www.oceanexpert.org/institution/19620 -https://www.oceanexpert.org/expert/31944 -https://www.oceanexpert.org/expert/2212 -https://www.oceanexpert.org/event/1728 -https://www.oceanexpert.org/expert/40242 -https://www.oceanexpert.org/institution/18477 -https://www.oceanexpert.org/event/2224 -https://www.oceanexpert.org/institution/15796 -https://www.oceanexpert.org/expert/27554 -https://www.oceanexpert.org/institution/17708 -https://www.oceanexpert.org/expert/32956 -https://www.oceanexpert.org/institution/11680 -https://www.oceanexpert.org/institution/19240 -https://www.oceanexpert.org/expert/19616 -https://www.oceanexpert.org/expert/41913 -https://www.oceanexpert.org/institution/7642 -https://www.oceanexpert.org/expert/36648 -https://www.oceanexpert.org/expert/15511 -https://www.oceanexpert.org/expert/16994 -https://www.oceanexpert.org/expert/43111 -https://www.oceanexpert.org/event/74 -https://www.oceanexpert.org/institution/19391 -https://www.oceanexpert.org/expert/14132 -https://www.oceanexpert.org/expert/18152 -https://www.oceanexpert.org/expert/48769 -https://www.oceanexpert.org/expert/18556 -https://www.oceanexpert.org/institution/21317 -https://www.oceanexpert.org/event/420 -https://www.oceanexpert.org/event/1056 -https://www.oceanexpert.org/expert/19636 -https://www.oceanexpert.org/expert/44668 -https://www.oceanexpert.org/expert/18280 -https://www.oceanexpert.org/expert/7034 -https://www.oceanexpert.org/expert/26463 -https://www.oceanexpert.org/expert/30787 -https://www.oceanexpert.org/institution/12053 -https://www.oceanexpert.org/expert/22425 -https://www.oceanexpert.org/expert/33370 -https://www.oceanexpert.org/expert/25756 -https://www.oceanexpert.org/institution/19680 -https://www.oceanexpert.org/event/587 -https://www.oceanexpert.org/expert/24599 -https://www.oceanexpert.org/institution/14816 -https://www.oceanexpert.org/institution/18895 -https://www.oceanexpert.org/institution/22096 -https://www.oceanexpert.org/institution/7528 -https://www.oceanexpert.org/event/1586 -https://www.oceanexpert.org/expert/11489 -https://www.oceanexpert.org/expert/37565 -https://www.oceanexpert.org/expert/19801 -https://www.oceanexpert.org/expert/48448 -https://www.oceanexpert.org/event/416 -https://www.oceanexpert.org/expert/27576 -https://www.oceanexpert.org/expert/48388 -https://www.oceanexpert.org/event/980 -https://www.oceanexpert.org/institution/19310 -https://www.oceanexpert.org/institution/19538 -https://www.oceanexpert.org/event/1714 -https://www.oceanexpert.org/expert/37475 -https://www.oceanexpert.org/expert/44089 -https://www.oceanexpert.org/institution/7495 -https://www.oceanexpert.org/event/1420 -https://www.oceanexpert.org/expert/19216 -https://www.oceanexpert.org/expert/46054 -https://www.oceanexpert.org/expert/22454 -https://www.oceanexpert.org/expert/32223 -https://www.oceanexpert.org/expert/20057 -https://www.oceanexpert.org/event/3015 -https://www.oceanexpert.org/institution/19095 -https://www.oceanexpert.org/institution/18225 -https://www.oceanexpert.org/expert/24843 -https://www.oceanexpert.org/event/217 -https://www.oceanexpert.org/expert/43808 -https://www.oceanexpert.org/expert/21100 -https://www.oceanexpert.org/expert/43593 -https://www.oceanexpert.org/expert/45006 -https://www.oceanexpert.org/expert/36714 -https://www.oceanexpert.org/expert/25988 -https://www.oceanexpert.org/institution/19704 -https://www.oceanexpert.org/expert/23943 -https://www.oceanexpert.org/expert/38014 -https://www.oceanexpert.org/expert/34886 -https://www.oceanexpert.org/institution/19572 -https://www.oceanexpert.org/expert/44931 -https://www.oceanexpert.org/expert/21324 -https://www.oceanexpert.org/expert/35301 -https://www.oceanexpert.org/institution/11712 -https://www.oceanexpert.org/expert/28500 -https://www.oceanexpert.org/expert/44001 -https://www.oceanexpert.org/expert/21498 -https://www.oceanexpert.org/event/3122 -https://www.oceanexpert.org/expert/31258 -https://www.oceanexpert.org/institution/21423 -https://www.oceanexpert.org/expert/14850 -https://www.oceanexpert.org/event/2981 -https://www.oceanexpert.org/institution/19167 -https://www.oceanexpert.org/expert/48233 -https://www.oceanexpert.org/institution/12498 -https://www.oceanexpert.org/expert/19473 -https://www.oceanexpert.org/institution/20994 -https://www.oceanexpert.org/event/2538 -https://www.oceanexpert.org/institution/15865 -https://www.oceanexpert.org/event/1543 -https://www.oceanexpert.org/expert/38465 -https://www.oceanexpert.org/expert/19558 -https://www.oceanexpert.org/expert/25489 -https://www.oceanexpert.org/institution/5937 -https://www.oceanexpert.org/expert/7749 -https://www.oceanexpert.org/expert/45134 -https://www.oceanexpert.org/institution/17901 -https://www.oceanexpert.org/expert/20509 -https://www.oceanexpert.org/institution/19575 -https://www.oceanexpert.org/expert/24872 -https://www.oceanexpert.org/expert/7232 -https://www.oceanexpert.org/institution/17768 -https://www.oceanexpert.org/expert/48871 -https://www.oceanexpert.org/expert/4326 -https://www.oceanexpert.org/event/2870 -https://www.oceanexpert.org/expert/24169 -https://www.oceanexpert.org/expert/36419 -https://www.oceanexpert.org/expert/42483 -https://www.oceanexpert.org/institution/18842 -https://www.oceanexpert.org/expert/9278 -https://www.oceanexpert.org/expert/22752 -https://www.oceanexpert.org/expert/25329 -https://www.oceanexpert.org/expert/46793 -https://www.oceanexpert.org/expert/35366 -https://www.oceanexpert.org/institution/5387 -https://www.oceanexpert.org/expert/32931 -https://www.oceanexpert.org/expert/39204 -https://www.oceanexpert.org/institution/18947 -https://www.oceanexpert.org/expert/28180 -https://www.oceanexpert.org/expert/37937 -https://www.oceanexpert.org/expert/24206 -https://www.oceanexpert.org/institution/5352 -https://www.oceanexpert.org/expert/24597 -https://www.oceanexpert.org/expert/40006 -https://www.oceanexpert.org/expert/13155 -https://www.oceanexpert.org/event/1444 -https://www.oceanexpert.org/expert/25993 -https://www.oceanexpert.org/expert/17879 -https://www.oceanexpert.org/expert/44006 -https://www.oceanexpert.org/institution/14146 -https://www.oceanexpert.org/expert/2490 -https://www.oceanexpert.org/expert/38199 -https://www.oceanexpert.org/expert/42856 -https://www.oceanexpert.org/expert/34732 -https://www.oceanexpert.org/expert/45818 -https://www.oceanexpert.org/expert/25436 -https://www.oceanexpert.org/institution/12417 -https://www.oceanexpert.org/expert/33098 -https://www.oceanexpert.org/expert/43422 -https://www.oceanexpert.org/institution/19327 -https://www.oceanexpert.org/institution/19179 -https://www.oceanexpert.org/expert/22548 -https://www.oceanexpert.org/expert/36248 -https://www.oceanexpert.org/expert/3697 -https://www.oceanexpert.org/institution/21966 -https://www.oceanexpert.org/expert/38569 -https://www.oceanexpert.org/expert/46907 -https://www.oceanexpert.org/expert/26602 -https://www.oceanexpert.org/expert/22917 -https://www.oceanexpert.org/expert/45660 -https://www.oceanexpert.org/expert/37143 -https://www.oceanexpert.org/expert/16785 -https://www.oceanexpert.org/expert/45604 -https://www.oceanexpert.org/event/1653 -https://www.oceanexpert.org/expert/29692 -https://www.oceanexpert.org/expert/24454 -https://www.oceanexpert.org/expert/13329 -https://www.oceanexpert.org/institution/19947 -https://www.oceanexpert.org/expert/16338 -https://www.oceanexpert.org/expert/40298 -https://www.oceanexpert.org/expert/18521 -https://www.oceanexpert.org/institution/21730 -https://www.oceanexpert.org/expert/38229 -https://www.oceanexpert.org/expert/15999 -https://www.oceanexpert.org/institution/12172 -https://www.oceanexpert.org/expert/25309 -https://www.oceanexpert.org/expert/35232 -https://www.oceanexpert.org/institution/5433 -https://www.oceanexpert.org/institution/19956 -https://www.oceanexpert.org/institution/11487 -https://www.oceanexpert.org/expert/1251 -https://www.oceanexpert.org/institution/19312 -https://www.oceanexpert.org/institution/18584 -https://www.oceanexpert.org/expert/17316 -https://www.oceanexpert.org/event/66 -https://www.oceanexpert.org/expert/42469 -https://www.oceanexpert.org/expert/47971 -https://www.oceanexpert.org/expert/14745 -https://www.oceanexpert.org/expert/34256 -https://www.oceanexpert.org/expert/29422 -https://www.oceanexpert.org/expert/39841 -https://www.oceanexpert.org/institution/19193 -https://www.oceanexpert.org/expert/48242 -https://www.oceanexpert.org/event/1618 -https://www.oceanexpert.org/expert/45908 -https://www.oceanexpert.org/expert/18059 -https://www.oceanexpert.org/expert/21354 -https://www.oceanexpert.org/expert/19879 -https://www.oceanexpert.org/event/2844 -https://www.oceanexpert.org/expert/35843 -https://www.oceanexpert.org/event/385 -https://www.oceanexpert.org/institution/18469 -https://www.oceanexpert.org/institution/17426 -https://www.oceanexpert.org/expert/47247 -https://www.oceanexpert.org/event/1226 -https://www.oceanexpert.org/expert/36317 -https://www.oceanexpert.org/expert/43361 -https://www.oceanexpert.org/expert/36265 -https://www.oceanexpert.org/expert/19175 -https://www.oceanexpert.org/expert/16608 -https://www.oceanexpert.org/expert/14082 -https://www.oceanexpert.org/institution/15880 -https://www.oceanexpert.org/expert/42986 -https://www.oceanexpert.org/expert/22116 -https://www.oceanexpert.org/expert/22248 -https://www.oceanexpert.org/expert/21924 -https://www.oceanexpert.org/institution/18663 -https://www.oceanexpert.org/expert/36779 -https://www.oceanexpert.org/expert/17630 -https://www.oceanexpert.org/expert/19869 -https://www.oceanexpert.org/event/2227 -https://www.oceanexpert.org/expert/18779 -https://www.oceanexpert.org/expert/27273 -https://www.oceanexpert.org/institution/16347 -https://www.oceanexpert.org/institution/19346 -https://www.oceanexpert.org/institution/13912 -https://www.oceanexpert.org/institution/13565 -https://www.oceanexpert.org/event/981 -https://www.oceanexpert.org/expert/42885 -https://www.oceanexpert.org/expert/85 -https://www.oceanexpert.org/event/2337 -https://www.oceanexpert.org/expert/43226 -https://www.oceanexpert.org/institution/20150 -https://www.oceanexpert.org/institution/16967 -https://www.oceanexpert.org/expert/36164 -https://www.oceanexpert.org/event/235 -https://www.oceanexpert.org/event/2407 -https://www.oceanexpert.org/expert/20710 -https://www.oceanexpert.org/expert/44888 -https://www.oceanexpert.org/expert/43219 -https://www.oceanexpert.org/expert/35873 -https://www.oceanexpert.org/expert/43593 -https://www.oceanexpert.org/expert/23813 -https://www.oceanexpert.org/expert/45954 -https://www.oceanexpert.org/expert/39857 -https://www.oceanexpert.org/expert/12280 -https://www.oceanexpert.org/event/1698 -https://www.oceanexpert.org/institution/11171 -https://www.oceanexpert.org/expert/19451 -https://www.oceanexpert.org/expert/26002 -https://www.oceanexpert.org/expert/12984 -https://www.oceanexpert.org/event/3291 -https://www.oceanexpert.org/institution/14751 -https://www.oceanexpert.org/institution/13905 -https://www.oceanexpert.org/expert/20786 -https://www.oceanexpert.org/event/2177 -https://www.oceanexpert.org/expert/36256 -https://www.oceanexpert.org/expert/25923 -https://www.oceanexpert.org/expert/16797 -https://www.oceanexpert.org/expert/19702 -https://www.oceanexpert.org/expert/22627 -https://www.oceanexpert.org/expert/18243 -https://www.oceanexpert.org/expert/44585 -https://www.oceanexpert.org/expert/27852 -https://www.oceanexpert.org/institution/19987 -https://www.oceanexpert.org/expert/32546 -https://www.oceanexpert.org/institution/18016 -https://www.oceanexpert.org/expert/20686 -https://www.oceanexpert.org/expert/28695 -https://www.oceanexpert.org/expert/42776 -https://www.oceanexpert.org/expert/10813 -https://www.oceanexpert.org/expert/46814 -https://www.oceanexpert.org/expert/15904 -https://www.oceanexpert.org/expert/34743 -https://www.oceanexpert.org/expert/17965 -https://www.oceanexpert.org/institution/19463 -https://www.oceanexpert.org/expert/13585 -https://www.oceanexpert.org/expert/45383 -https://www.oceanexpert.org/expert/22421 -https://www.oceanexpert.org/event/1915 -https://www.oceanexpert.org/expert/36917 -https://www.oceanexpert.org/expert/23993 -https://www.oceanexpert.org/expert/10381 -https://www.oceanexpert.org/institution/20826 -https://www.oceanexpert.org/expert/23729 -https://www.oceanexpert.org/expert/7460 -https://www.oceanexpert.org/institution/9329 -https://www.oceanexpert.org/expert/44354 -https://www.oceanexpert.org/institution/21659 -https://www.oceanexpert.org/event/1036 -https://www.oceanexpert.org/institution/19426 -https://www.oceanexpert.org/expert/28202 -https://www.oceanexpert.org/expert/18244 -https://www.oceanexpert.org/expert/386 -https://www.oceanexpert.org/expert/8065 -https://www.oceanexpert.org/institution/19222 -https://www.oceanexpert.org/institution/19676 -https://www.oceanexpert.org/expert/26835 -https://www.oceanexpert.org/institution/5869 -https://www.oceanexpert.org/expert/46797 -https://www.oceanexpert.org/institution/14961 -https://www.oceanexpert.org/institution/19471 -https://www.oceanexpert.org/event/2780 -https://www.oceanexpert.org/expert/21845 -https://www.oceanexpert.org/expert/3400 -https://www.oceanexpert.org/expert/44701 -https://www.oceanexpert.org/expert/43608 -https://www.oceanexpert.org/event/1235 -https://www.oceanexpert.org/expert/42789 -https://www.oceanexpert.org/expert/45591 -https://www.oceanexpert.org/expert/22420 -https://www.oceanexpert.org/expert/30904 -https://www.oceanexpert.org/expert/31339 -https://www.oceanexpert.org/expert/29948 -https://www.oceanexpert.org/expert/24433 -https://www.oceanexpert.org/institution/13611 -https://www.oceanexpert.org/institution/14959 -https://www.oceanexpert.org/expert/29703 -https://www.oceanexpert.org/expert/32403 -https://www.oceanexpert.org/event/2146 -https://www.oceanexpert.org/expert/44626 -https://www.oceanexpert.org/event/2823 -https://www.oceanexpert.org/expert/23587 -https://www.oceanexpert.org/expert/30228 -https://www.oceanexpert.org/expert/26596 -https://www.oceanexpert.org/expert/47002 -https://www.oceanexpert.org/expert/32593 -https://www.oceanexpert.org/institution/21115 -https://www.oceanexpert.org/expert/37497 -https://www.oceanexpert.org/event/1411 -https://www.oceanexpert.org/expert/31189 -https://www.oceanexpert.org/institution/21244 -https://www.oceanexpert.org/expert/4857 -https://www.oceanexpert.org/expert/32100 -https://www.oceanexpert.org/expert/48623 -https://www.oceanexpert.org/expert/39633 -https://www.oceanexpert.org/expert/21944 -https://www.oceanexpert.org/institution/21489 -https://www.oceanexpert.org/expert/44529 -https://www.oceanexpert.org/expert/17064 -https://www.oceanexpert.org/expert/48623 -https://www.oceanexpert.org/expert/16658 -https://www.oceanexpert.org/event/3127 -https://www.oceanexpert.org/expert/39002 -https://www.oceanexpert.org/expert/46432 -https://www.oceanexpert.org/expert/26081 -https://www.oceanexpert.org/expert/25499 -https://www.oceanexpert.org/expert/5957 -https://www.oceanexpert.org/event/1287 -https://www.oceanexpert.org/expert/32395 -https://www.oceanexpert.org/institution/18425 -https://www.oceanexpert.org/expert/21730 -https://www.oceanexpert.org/expert/28208 -https://www.oceanexpert.org/expert/20155 -https://www.oceanexpert.org/expert/26171 -https://www.oceanexpert.org/expert/27855 -https://www.oceanexpert.org/expert/43524 -https://www.oceanexpert.org/institution/11745 -https://www.oceanexpert.org/expert/43814 -https://www.oceanexpert.org/institution/9456 -https://www.oceanexpert.org/expert/47097 -https://www.oceanexpert.org/expert/44788 -https://www.oceanexpert.org/institution/5579 -https://www.oceanexpert.org/event/3026 -https://www.oceanexpert.org/event/242 -https://www.oceanexpert.org/expert/13369 -https://www.oceanexpert.org/expert/41683 -https://www.oceanexpert.org/event/1016 -https://www.oceanexpert.org/institution/18681 -https://www.oceanexpert.org/event/2952 -https://www.oceanexpert.org/expert/10885 -https://www.oceanexpert.org/institution/14495 -https://www.oceanexpert.org/expert/43979 -https://www.oceanexpert.org/expert/44181 -https://www.oceanexpert.org/institution/12958 -https://www.oceanexpert.org/event/3019 -https://www.oceanexpert.org/institution/17631 -https://www.oceanexpert.org/institution/12145 -https://www.oceanexpert.org/institution/22064 -https://www.oceanexpert.org/expert/36837 -https://www.oceanexpert.org/expert/49025 -https://www.oceanexpert.org/expert/46138 -https://www.oceanexpert.org/expert/20504 -https://www.oceanexpert.org/expert/15854 -https://www.oceanexpert.org/expert/20049 -https://www.oceanexpert.org/expert/40333 -https://www.oceanexpert.org/expert/30586 -https://www.oceanexpert.org/expert/46132 -https://www.oceanexpert.org/expert/24243 -https://www.oceanexpert.org/expert/19665 -https://www.oceanexpert.org/expert/881 -https://www.oceanexpert.org/expert/19267 -https://www.oceanexpert.org/expert/7777 -https://www.oceanexpert.org/expert/25805 -https://www.oceanexpert.org/institution/18220 -https://www.oceanexpert.org/expert/42262 -https://www.oceanexpert.org/expert/14285 -https://www.oceanexpert.org/expert/17380 -https://www.oceanexpert.org/expert/13737 -https://www.oceanexpert.org/expert/8133 -https://www.oceanexpert.org/expert/21710 -https://www.oceanexpert.org/expert/48542 -https://www.oceanexpert.org/expert/43742 -https://www.oceanexpert.org/expert/48231 -https://www.oceanexpert.org/expert/17343 -https://www.oceanexpert.org/event/1706 -https://www.oceanexpert.org/expert/38057 -https://www.oceanexpert.org/event/744 -https://www.oceanexpert.org/expert/37649 -https://www.oceanexpert.org/expert/27703 -https://www.oceanexpert.org/expert/37510 -https://www.oceanexpert.org/expert/11203 -https://www.oceanexpert.org/institution/10731 -https://www.oceanexpert.org/expert/24370 -https://www.oceanexpert.org/institution/18009 -https://www.oceanexpert.org/institution/20305 -https://www.oceanexpert.org/expert/47703 -https://www.oceanexpert.org/expert/35710 -https://www.oceanexpert.org/institution/9036 -https://www.oceanexpert.org/event/2631 -https://www.oceanexpert.org/expert/16745 -https://www.oceanexpert.org/expert/13734 -https://www.oceanexpert.org/expert/40289 -https://www.oceanexpert.org/expert/13948 -https://www.oceanexpert.org/expert/15849 -https://www.oceanexpert.org/expert/19447 -https://www.oceanexpert.org/expert/38771 -https://www.oceanexpert.org/expert/17976 -https://www.oceanexpert.org/institution/19879 -https://www.oceanexpert.org/expert/16006 -https://www.oceanexpert.org/expert/26969 -https://www.oceanexpert.org/event/2097 -https://www.oceanexpert.org/expert/23014 -https://www.oceanexpert.org/expert/26312 -https://www.oceanexpert.org/expert/32772 -https://www.oceanexpert.org/expert/14463 -https://www.oceanexpert.org/institution/18241 -https://www.oceanexpert.org/expert/45893 -https://www.oceanexpert.org/expert/25555 -https://www.oceanexpert.org/institution/21513 -https://www.oceanexpert.org/institution/10644 -https://www.oceanexpert.org/institution/22034 -https://www.oceanexpert.org/expert/31769 -https://www.oceanexpert.org/expert/33995 -https://www.oceanexpert.org/expert/35417 -https://www.oceanexpert.org/event/1043 -https://www.oceanexpert.org/institution/19624 -https://www.oceanexpert.org/expert/8814 -https://www.oceanexpert.org/institution/15812 -https://www.oceanexpert.org/institution/21480 -https://www.oceanexpert.org/institution/21041 -https://www.oceanexpert.org/expert/33930 -https://www.oceanexpert.org/expert/24028 -https://www.oceanexpert.org/expert/36158 -https://www.oceanexpert.org/expert/20798 -https://www.oceanexpert.org/expert/42173 -https://www.oceanexpert.org/expert/48726 -https://www.oceanexpert.org/expert/21125 -https://www.oceanexpert.org/expert/44528 -https://www.oceanexpert.org/institution/19636 -https://www.oceanexpert.org/expert/40089 -https://www.oceanexpert.org/expert/7820 -https://www.oceanexpert.org/expert/28411 -https://www.oceanexpert.org/expert/27436 -https://www.oceanexpert.org/expert/20353 -https://www.oceanexpert.org/expert/21027 -https://www.oceanexpert.org/institution/15903 -https://www.oceanexpert.org/institution/17853 -https://www.oceanexpert.org/expert/22075 -https://www.oceanexpert.org/institution/21492 -https://www.oceanexpert.org/expert/25023 -https://www.oceanexpert.org/expert/27110 -https://www.oceanexpert.org/institution/15082 -https://www.oceanexpert.org/institution/22076 -https://www.oceanexpert.org/institution/14028 -https://www.oceanexpert.org/institution/20755 -https://www.oceanexpert.org/expert/14542 -https://www.oceanexpert.org/expert/22246 -https://www.oceanexpert.org/expert/3211 -https://www.oceanexpert.org/expert/15169 -https://www.oceanexpert.org/expert/32743 -https://www.oceanexpert.org/institution/20687 -https://www.oceanexpert.org/expert/46717 -https://www.oceanexpert.org/event/1864 -https://www.oceanexpert.org/expert/35012 -https://www.oceanexpert.org/expert/20985 -https://www.oceanexpert.org/expert/47964 -https://www.oceanexpert.org/event/1656 -https://www.oceanexpert.org/institution/12038 -https://www.oceanexpert.org/expert/48116 -https://www.oceanexpert.org/expert/38067 -https://www.oceanexpert.org/institution/21724 -https://www.oceanexpert.org/institution/15932 -https://www.oceanexpert.org/expert/26799 -https://www.oceanexpert.org/expert/36207 -https://www.oceanexpert.org/expert/16622 -https://www.oceanexpert.org/expert/18129 -https://www.oceanexpert.org/institution/19537 -https://www.oceanexpert.org/expert/25758 -https://www.oceanexpert.org/expert/15475 -https://www.oceanexpert.org/expert/28476 -https://www.oceanexpert.org/expert/47027 -https://www.oceanexpert.org/event/1590 -https://www.oceanexpert.org/expert/3486 -https://www.oceanexpert.org/expert/26020 -https://www.oceanexpert.org/expert/46845 -https://www.oceanexpert.org/expert/20837 -https://www.oceanexpert.org/institution/13950 -https://www.oceanexpert.org/institution/11486 -https://www.oceanexpert.org/expert/32214 -https://www.oceanexpert.org/institution/20958 -https://www.oceanexpert.org/event/1134 -https://www.oceanexpert.org/expert/27100 -https://www.oceanexpert.org/expert/37373 -https://www.oceanexpert.org/expert/20120 -https://www.oceanexpert.org/expert/46867 -https://www.oceanexpert.org/institution/5982 -https://www.oceanexpert.org/expert/46581 -https://www.oceanexpert.org/expert/26648 -https://www.oceanexpert.org/expert/14704 -https://www.oceanexpert.org/expert/7831 -https://www.oceanexpert.org/expert/35441 -https://www.oceanexpert.org/expert/34958 -https://www.oceanexpert.org/expert/19297 -https://www.oceanexpert.org/expert/15539 -https://www.oceanexpert.org/institution/19880 -https://www.oceanexpert.org/expert/4443 -https://www.oceanexpert.org/expert/21074 -https://www.oceanexpert.org/expert/27059 -https://www.oceanexpert.org/expert/22324 -https://www.oceanexpert.org/expert/20606 -https://www.oceanexpert.org/event/326 -https://www.oceanexpert.org/expert/37033 -https://www.oceanexpert.org/institution/20085 -https://www.oceanexpert.org/event/2641 -https://www.oceanexpert.org/expert/28058 -https://www.oceanexpert.org/expert/3080 -https://www.oceanexpert.org/institution/18204 -https://www.oceanexpert.org/institution/10962 -https://www.oceanexpert.org/event/2867 -https://www.oceanexpert.org/expert/22211 -https://www.oceanexpert.org/institution/9744 -https://www.oceanexpert.org/expert/11248 -https://www.oceanexpert.org/expert/47029 -https://www.oceanexpert.org/expert/34969 -https://www.oceanexpert.org/expert/40088 -https://www.oceanexpert.org/institution/12501 -https://www.oceanexpert.org/event/1096 -https://www.oceanexpert.org/expert/22713 -https://www.oceanexpert.org/institution/5702 -https://www.oceanexpert.org/institution/12965 -https://www.oceanexpert.org/expert/4652 -https://www.oceanexpert.org/expert/48722 -https://www.oceanexpert.org/expert/19458 -https://www.oceanexpert.org/institution/22176 -https://www.oceanexpert.org/expert/40607 -https://www.oceanexpert.org/expert/17424 -https://www.oceanexpert.org/expert/15800 -https://www.oceanexpert.org/institution/18260 -https://www.oceanexpert.org/expert/34342 -https://www.oceanexpert.org/expert/38783 -https://www.oceanexpert.org/expert/19123 -https://www.oceanexpert.org/expert/44413 -https://www.oceanexpert.org/institution/11280 -https://www.oceanexpert.org/institution/19416 -https://www.oceanexpert.org/event/1417 -https://www.oceanexpert.org/expert/25452 -https://www.oceanexpert.org/institution/12524 -https://www.oceanexpert.org/expert/15606 -https://www.oceanexpert.org/institution/20993 -https://www.oceanexpert.org/expert/48000 -https://www.oceanexpert.org/expert/263 -https://www.oceanexpert.org/institution/21610 -https://www.oceanexpert.org/event/3088 -https://www.oceanexpert.org/institution/12369 -https://www.oceanexpert.org/institution/20664 -https://www.oceanexpert.org/institution/19007 -https://www.oceanexpert.org/event/161 -https://www.oceanexpert.org/expert/17492 -https://www.oceanexpert.org/expert/23844 -https://www.oceanexpert.org/expert/20315 -https://www.oceanexpert.org/expert/39613 -https://www.oceanexpert.org/expert/14839 -https://www.oceanexpert.org/expert/18362 -https://www.oceanexpert.org/expert/6721 -https://www.oceanexpert.org/expert/37871 -https://www.oceanexpert.org/expert/32206 -https://www.oceanexpert.org/expert/29753 -https://www.oceanexpert.org/expert/22378 -https://www.oceanexpert.org/institution/7016 -https://www.oceanexpert.org/expert/18619 -https://www.oceanexpert.org/expert/22968 -https://www.oceanexpert.org/institution/18351 -https://www.oceanexpert.org/event/688 -https://www.oceanexpert.org/expert/25372 -https://www.oceanexpert.org/institution/17932 -https://www.oceanexpert.org/institution/10689 -https://www.oceanexpert.org/event/128 -https://www.oceanexpert.org/event/1537 -https://www.oceanexpert.org/expert/46723 -https://www.oceanexpert.org/expert/28375 -https://www.oceanexpert.org/expert/47451 -https://www.oceanexpert.org/expert/22931 -https://www.oceanexpert.org/expert/27269 -https://www.oceanexpert.org/expert/46996 -https://www.oceanexpert.org/expert/26835 -https://www.oceanexpert.org/expert/27011 -https://www.oceanexpert.org/expert/26513 -https://www.oceanexpert.org/institution/13106 -https://www.oceanexpert.org/expert/17141 -https://www.oceanexpert.org/expert/43381 -https://www.oceanexpert.org/expert/11541 -https://www.oceanexpert.org/expert/29932 -https://www.oceanexpert.org/event/2454 -https://www.oceanexpert.org/expert/20729 -https://www.oceanexpert.org/institution/15716 -https://www.oceanexpert.org/expert/25666 -https://www.oceanexpert.org/expert/33556 -https://www.oceanexpert.org/expert/39393 -https://www.oceanexpert.org/expert/36076 -https://www.oceanexpert.org/expert/21499 -https://www.oceanexpert.org/expert/17447 -https://www.oceanexpert.org/institution/19090 -https://www.oceanexpert.org/expert/33362 -https://www.oceanexpert.org/expert/35509 -https://www.oceanexpert.org/expert/3486 -https://www.oceanexpert.org/expert/24159 -https://www.oceanexpert.org/event/3064 -https://www.oceanexpert.org/institution/9300 -https://www.oceanexpert.org/institution/7766 -https://www.oceanexpert.org/expert/36173 -https://www.oceanexpert.org/expert/33788 -https://www.oceanexpert.org/expert/44843 -https://www.oceanexpert.org/expert/3143 -https://www.oceanexpert.org/expert/22731 -https://www.oceanexpert.org/expert/31103 -https://www.oceanexpert.org/expert/34213 -https://www.oceanexpert.org/institution/5307 -https://www.oceanexpert.org/expert/44234 -https://www.oceanexpert.org/institution/19578 -https://www.oceanexpert.org/expert/5833 -https://www.oceanexpert.org/event/2429 -https://www.oceanexpert.org/event/241 -https://www.oceanexpert.org/institution/21335 -https://www.oceanexpert.org/institution/16008 -https://www.oceanexpert.org/expert/43460 -https://www.oceanexpert.org/institution/17049 -https://www.oceanexpert.org/event/2364 -https://www.oceanexpert.org/expert/46633 -https://www.oceanexpert.org/expert/13022 -https://www.oceanexpert.org/event/1663 -https://www.oceanexpert.org/expert/24535 -https://www.oceanexpert.org/expert/14307 -https://www.oceanexpert.org/expert/40055 -https://www.oceanexpert.org/expert/18006 -https://www.oceanexpert.org/expert/36962 -https://www.oceanexpert.org/expert/48706 -https://www.oceanexpert.org/expert/19423 -https://www.oceanexpert.org/event/548 -https://www.oceanexpert.org/expert/38473 -https://www.oceanexpert.org/expert/19942 -https://www.oceanexpert.org/expert/21083 -https://www.oceanexpert.org/institution/20968 -https://www.oceanexpert.org/expert/36816 -https://www.oceanexpert.org/expert/21046 -https://www.oceanexpert.org/institution/21161 -https://www.oceanexpert.org/expert/45936 -https://www.oceanexpert.org/expert/23561 -https://www.oceanexpert.org/institution/18728 -https://www.oceanexpert.org/expert/33606 -https://www.oceanexpert.org/expert/39045 -https://www.oceanexpert.org/expert/43247 -https://www.oceanexpert.org/event/2411 -https://www.oceanexpert.org/expert/32781 -https://www.oceanexpert.org/institution/18097 -https://www.oceanexpert.org/expert/19362 -https://www.oceanexpert.org/expert/25092 -https://www.oceanexpert.org/expert/43661 -https://www.oceanexpert.org/institution/21225 -https://www.oceanexpert.org/expert/31857 -https://www.oceanexpert.org/event/3121 -https://www.oceanexpert.org/expert/46932 -https://www.oceanexpert.org/expert/23818 -https://www.oceanexpert.org/expert/22270 -https://www.oceanexpert.org/event/706 -https://www.oceanexpert.org/expert/36193 -https://www.oceanexpert.org/expert/38087 -https://www.oceanexpert.org/expert/32551 -https://www.oceanexpert.org/expert/25501 -https://www.oceanexpert.org/expert/30681 -https://www.oceanexpert.org/expert/15383 -https://www.oceanexpert.org/event/2351 -https://www.oceanexpert.org/expert/46358 -https://www.oceanexpert.org/event/170 -https://www.oceanexpert.org/expert/11209 -https://www.oceanexpert.org/expert/17697 -https://www.oceanexpert.org/expert/44739 -https://www.oceanexpert.org/expert/43132 -https://www.oceanexpert.org/event/2351 -https://www.oceanexpert.org/expert/45758 -https://www.oceanexpert.org/expert/16679 -https://www.oceanexpert.org/expert/20311 -https://www.oceanexpert.org/expert/6321 -https://www.oceanexpert.org/institution/21309 -https://www.oceanexpert.org/expert/48171 -https://www.oceanexpert.org/expert/18184 -https://www.oceanexpert.org/expert/12315 -https://www.oceanexpert.org/event/1217 -https://www.oceanexpert.org/expert/26720 -https://www.oceanexpert.org/institution/19533 -https://www.oceanexpert.org/expert/43515 -https://www.oceanexpert.org/event/1419 -https://www.oceanexpert.org/expert/21994 -https://www.oceanexpert.org/institution/21356 -https://www.oceanexpert.org/expert/28506 -https://www.oceanexpert.org/expert/24415 -https://www.oceanexpert.org/institution/9012 -https://www.oceanexpert.org/institution/17561 -https://www.oceanexpert.org/expert/29784 -https://www.oceanexpert.org/expert/47796 -https://www.oceanexpert.org/institution/10272 -https://www.oceanexpert.org/expert/43430 -https://www.oceanexpert.org/expert/19769 -https://www.oceanexpert.org/expert/34984 -https://www.oceanexpert.org/expert/13745 -https://www.oceanexpert.org/expert/40574 -https://www.oceanexpert.org/expert/45450 -https://www.oceanexpert.org/expert/44656 -https://www.oceanexpert.org/institution/9078 -https://www.oceanexpert.org/expert/37589 -https://www.oceanexpert.org/institution/17842 -https://www.oceanexpert.org/expert/47139 -https://www.oceanexpert.org/expert/17322 -https://www.oceanexpert.org/expert/40866 -https://www.oceanexpert.org/institution/20183 -https://www.oceanexpert.org/expert/6745 -https://www.oceanexpert.org/institution/21081 -https://www.oceanexpert.org/institution/11455 -https://www.oceanexpert.org/institution/19521 -https://www.oceanexpert.org/expert/48973 -https://www.oceanexpert.org/expert/28269 -https://www.oceanexpert.org/expert/22803 -https://www.oceanexpert.org/institution/22037 -https://www.oceanexpert.org/expert/43012 -https://www.oceanexpert.org/expert/35714 -https://www.oceanexpert.org/institution/12938 -https://www.oceanexpert.org/event/2388 -https://www.oceanexpert.org/expert/22336 -https://www.oceanexpert.org/expert/44008 -https://www.oceanexpert.org/event/1778 -https://www.oceanexpert.org/expert/16120 -https://www.oceanexpert.org/event/1315 -https://www.oceanexpert.org/expert/20653 -https://www.oceanexpert.org/expert/25537 -https://www.oceanexpert.org/expert/35832 -https://www.oceanexpert.org/expert/24159 -https://www.oceanexpert.org/expert/18645 -https://www.oceanexpert.org/institution/21189 -https://www.oceanexpert.org/expert/16452 -https://www.oceanexpert.org/expert/10727 -https://www.oceanexpert.org/institution/15702 -https://www.oceanexpert.org/expert/25493 -https://www.oceanexpert.org/event/1613 -https://www.oceanexpert.org/expert/18044 -https://www.oceanexpert.org/expert/25140 -https://www.oceanexpert.org/expert/38808 -https://www.oceanexpert.org/institution/21803 -https://www.oceanexpert.org/expert/698 -https://www.oceanexpert.org/expert/49050 -https://www.oceanexpert.org/expert/49031 -https://www.oceanexpert.org/event/2461 -https://www.oceanexpert.org/expert/47201 -https://www.oceanexpert.org/expert/45883 -https://www.oceanexpert.org/expert/20614 -https://www.oceanexpert.org/expert/25556 -https://www.oceanexpert.org/event/563 -https://www.oceanexpert.org/institution/10042 -https://www.oceanexpert.org/institution/18848 -https://www.oceanexpert.org/expert/20905 -https://www.oceanexpert.org/expert/47013 -https://www.oceanexpert.org/event/2017 -https://www.oceanexpert.org/expert/26848 -https://www.oceanexpert.org/institution/18161 -https://www.oceanexpert.org/expert/25867 -https://www.oceanexpert.org/expert/44176 -https://www.oceanexpert.org/expert/42069 -https://www.oceanexpert.org/expert/4333 -https://www.oceanexpert.org/expert/22413 -https://www.oceanexpert.org/expert/18871 -https://www.oceanexpert.org/expert/45758 -https://www.oceanexpert.org/expert/43686 -https://www.oceanexpert.org/expert/6818 -https://www.oceanexpert.org/expert/47187 -https://www.oceanexpert.org/expert/24394 -https://www.oceanexpert.org/event/1024 -https://www.oceanexpert.org/expert/22600 -https://www.oceanexpert.org/institution/21990 -https://www.oceanexpert.org/institution/18678 -https://www.oceanexpert.org/event/2647 -https://www.oceanexpert.org/expert/10150 -https://www.oceanexpert.org/expert/21593 -https://www.oceanexpert.org/expert/47795 -https://www.oceanexpert.org/expert/33385 -https://www.oceanexpert.org/expert/43383 -https://www.oceanexpert.org/institution/21905 -https://www.oceanexpert.org/institution/22106 -https://www.oceanexpert.org/expert/29752 -https://www.oceanexpert.org/expert/578 -https://www.oceanexpert.org/expert/20857 -https://www.oceanexpert.org/expert/29373 -https://www.oceanexpert.org/expert/30531 -https://www.oceanexpert.org/expert/48928 -https://www.oceanexpert.org/expert/23715 -https://www.oceanexpert.org/expert/24166 -https://www.oceanexpert.org/expert/20812 -https://www.oceanexpert.org/expert/4627 -https://www.oceanexpert.org/expert/40307 -https://www.oceanexpert.org/expert/39362 -https://www.oceanexpert.org/expert/18238 -https://www.oceanexpert.org/expert/3190 -https://www.oceanexpert.org/expert/42756 -https://www.oceanexpert.org/institution/20499 -https://www.oceanexpert.org/expert/25527 -https://www.oceanexpert.org/expert/37956 -https://www.oceanexpert.org/expert/44845 -https://www.oceanexpert.org/expert/39863 -https://www.oceanexpert.org/institution/21412 -https://www.oceanexpert.org/institution/19781 -https://www.oceanexpert.org/expert/10849 -https://www.oceanexpert.org/event/2510 -https://www.oceanexpert.org/expert/31339 -https://www.oceanexpert.org/expert/17620 -https://www.oceanexpert.org/expert/37335 -https://www.oceanexpert.org/institution/9440 -https://www.oceanexpert.org/event/2129 -https://www.oceanexpert.org/expert/24262 -https://www.oceanexpert.org/institution/10848 -https://www.oceanexpert.org/expert/17769 -https://www.oceanexpert.org/expert/15833 -https://www.oceanexpert.org/expert/46936 -https://www.oceanexpert.org/expert/34946 -https://www.oceanexpert.org/expert/39092 -https://www.oceanexpert.org/expert/26881 -https://www.oceanexpert.org/expert/13262 -https://www.oceanexpert.org/expert/43857 -https://www.oceanexpert.org/institution/17610 -https://www.oceanexpert.org/institution/12269 -https://www.oceanexpert.org/expert/43831 -https://www.oceanexpert.org/institution/20089 -https://www.oceanexpert.org/expert/37509 -https://www.oceanexpert.org/expert/12812 -https://www.oceanexpert.org/expert/24109 -https://www.oceanexpert.org/expert/26091 -https://www.oceanexpert.org/institution/21492 -https://www.oceanexpert.org/institution/18938 -https://www.oceanexpert.org/institution/11560 -https://www.oceanexpert.org/expert/24186 -https://www.oceanexpert.org/expert/781 -https://www.oceanexpert.org/institution/12012 -https://www.oceanexpert.org/expert/37435 -https://www.oceanexpert.org/institution/17761 -https://www.oceanexpert.org/institution/20772 -https://www.oceanexpert.org/event/1222 -https://www.oceanexpert.org/institution/17953 -https://www.oceanexpert.org/expert/34643 -https://www.oceanexpert.org/expert/25768 -https://www.oceanexpert.org/expert/34153 -https://www.oceanexpert.org/expert/40114 -https://www.oceanexpert.org/expert/23120 -https://www.oceanexpert.org/expert/22870 -https://www.oceanexpert.org/expert/24067 -https://www.oceanexpert.org/event/624 -https://www.oceanexpert.org/institution/20032 -https://www.oceanexpert.org/institution/21005 -https://www.oceanexpert.org/institution/11800 -https://www.oceanexpert.org/institution/10309 -https://www.oceanexpert.org/expert/44492 -https://www.oceanexpert.org/expert/34283 -https://www.oceanexpert.org/event/974 -https://www.oceanexpert.org/expert/16132 -https://www.oceanexpert.org/expert/17973 -https://www.oceanexpert.org/expert/38983 -https://www.oceanexpert.org/expert/28853 -https://www.oceanexpert.org/expert/18884 -https://www.oceanexpert.org/expert/44846 -https://www.oceanexpert.org/expert/37370 -https://www.oceanexpert.org/institution/20362 -https://www.oceanexpert.org/expert/15667 -https://www.oceanexpert.org/expert/43285 -https://www.oceanexpert.org/expert/22232 -https://www.oceanexpert.org/expert/26463 -https://www.oceanexpert.org/expert/16114 -https://www.oceanexpert.org/expert/38153 -https://www.oceanexpert.org/expert/19355 -https://www.oceanexpert.org/event/1552 -https://www.oceanexpert.org/expert/27672 -https://www.oceanexpert.org/event/2947 -https://www.oceanexpert.org/expert/2836 -https://www.oceanexpert.org/expert/25827 -https://www.oceanexpert.org/expert/18850 -https://www.oceanexpert.org/expert/47751 -https://www.oceanexpert.org/expert/17355 -https://www.oceanexpert.org/expert/45620 -https://www.oceanexpert.org/event/32 -https://www.oceanexpert.org/expert/18456 -https://www.oceanexpert.org/event/1547 -https://www.oceanexpert.org/expert/3540 -https://www.oceanexpert.org/expert/43047 -https://www.oceanexpert.org/expert/19541 -https://www.oceanexpert.org/expert/36571 -https://www.oceanexpert.org/expert/28399 -https://www.oceanexpert.org/institution/10741 -https://www.oceanexpert.org/event/1505 -https://www.oceanexpert.org/institution/16132 -https://www.oceanexpert.org/expert/40571 -https://www.oceanexpert.org/expert/48513 -https://www.oceanexpert.org/expert/27367 -https://www.oceanexpert.org/expert/23901 -https://www.oceanexpert.org/expert/36679 -https://www.oceanexpert.org/institution/21127 -https://www.oceanexpert.org/institution/12733 -https://www.oceanexpert.org/expert/24593 -https://www.oceanexpert.org/expert/27329 -https://www.oceanexpert.org/expert/27093 -https://www.oceanexpert.org/expert/22918 -https://www.oceanexpert.org/institution/12272 -https://www.oceanexpert.org/expert/11823 -https://www.oceanexpert.org/expert/10744 -https://www.oceanexpert.org/expert/26876 -https://www.oceanexpert.org/institution/21990 -https://www.oceanexpert.org/expert/47596 -https://www.oceanexpert.org/expert/12287 -https://www.oceanexpert.org/expert/25079 -https://www.oceanexpert.org/expert/6547 -https://www.oceanexpert.org/institution/16386 -https://www.oceanexpert.org/expert/25474 -https://www.oceanexpert.org/expert/31076 -https://www.oceanexpert.org/expert/45718 -https://www.oceanexpert.org/expert/26861 -https://www.oceanexpert.org/expert/43448 -https://www.oceanexpert.org/expert/43255 -https://www.oceanexpert.org/expert/32615 -https://www.oceanexpert.org/expert/11037 -https://www.oceanexpert.org/event/1905 -https://www.oceanexpert.org/expert/23047 -https://www.oceanexpert.org/expert/26112 -https://www.oceanexpert.org/institution/5177 -https://www.oceanexpert.org/expert/30561 -https://www.oceanexpert.org/event/516 -https://www.oceanexpert.org/expert/23097 -https://www.oceanexpert.org/expert/36819 -https://www.oceanexpert.org/expert/11184 -https://www.oceanexpert.org/expert/18739 -https://www.oceanexpert.org/event/1668 -https://www.oceanexpert.org/institution/13852 -https://www.oceanexpert.org/expert/22611 -https://www.oceanexpert.org/expert/17404 -https://www.oceanexpert.org/expert/44563 -https://www.oceanexpert.org/institution/21619 -https://www.oceanexpert.org/institution/8413 -https://www.oceanexpert.org/institution/6780 -https://www.oceanexpert.org/expert/25549 -https://www.oceanexpert.org/expert/44926 -https://www.oceanexpert.org/expert/14679 -https://www.oceanexpert.org/expert/43202 -https://www.oceanexpert.org/event/2690 -https://www.oceanexpert.org/expert/29744 -https://www.oceanexpert.org/expert/25026 -https://www.oceanexpert.org/expert/25068 -https://www.oceanexpert.org/event/975 -https://www.oceanexpert.org/expert/35822 -https://www.oceanexpert.org/expert/26417 -https://www.oceanexpert.org/expert/47503 -https://www.oceanexpert.org/expert/47646 -https://www.oceanexpert.org/expert/32982 -https://www.oceanexpert.org/expert/8596 -https://www.oceanexpert.org/expert/23357 -https://www.oceanexpert.org/expert/47382 -https://www.oceanexpert.org/expert/19509 -https://www.oceanexpert.org/expert/25152 -https://www.oceanexpert.org/expert/48548 -https://www.oceanexpert.org/expert/21328 -https://www.oceanexpert.org/expert/24936 -https://www.oceanexpert.org/event/898 -https://www.oceanexpert.org/expert/35155 -https://www.oceanexpert.org/expert/24715 -https://www.oceanexpert.org/event/2597 -https://www.oceanexpert.org/expert/39545 -https://www.oceanexpert.org/institution/19272 -https://www.oceanexpert.org/expert/43284 -https://www.oceanexpert.org/expert/32978 -https://www.oceanexpert.org/event/2973 -https://www.oceanexpert.org/expert/38919 -https://www.oceanexpert.org/expert/18724 -https://www.oceanexpert.org/expert/37446 -https://www.oceanexpert.org/institution/20972 -https://www.oceanexpert.org/expert/43400 -https://www.oceanexpert.org/expert/17727 -https://www.oceanexpert.org/institution/18150 -https://www.oceanexpert.org/expert/261 -https://www.oceanexpert.org/expert/15766 -https://www.oceanexpert.org/expert/37663 -https://www.oceanexpert.org/expert/4659 -https://www.oceanexpert.org/expert/20477 -https://www.oceanexpert.org/institution/11846 -https://www.oceanexpert.org/expert/27419 -https://www.oceanexpert.org/expert/14169 -https://www.oceanexpert.org/expert/45680 -https://www.oceanexpert.org/expert/26350 -https://www.oceanexpert.org/expert/3861 -https://www.oceanexpert.org/expert/38898 -https://www.oceanexpert.org/expert/45706 -https://www.oceanexpert.org/event/561 -https://www.oceanexpert.org/institution/13983 -https://www.oceanexpert.org/institution/20387 -https://www.oceanexpert.org/expert/25135 -https://www.oceanexpert.org/expert/23692 -https://www.oceanexpert.org/institution/20159 -https://www.oceanexpert.org/institution/10561 -https://www.oceanexpert.org/expert/36386 -https://www.oceanexpert.org/expert/37277 -https://www.oceanexpert.org/institution/7532 -https://www.oceanexpert.org/expert/13370 -https://www.oceanexpert.org/expert/22772 -https://www.oceanexpert.org/institution/20394 -https://www.oceanexpert.org/expert/25918 -https://www.oceanexpert.org/expert/22750 -https://www.oceanexpert.org/expert/36015 -https://www.oceanexpert.org/expert/46362 -https://www.oceanexpert.org/expert/30866 -https://www.oceanexpert.org/expert/23413 -https://www.oceanexpert.org/expert/45875 -https://www.oceanexpert.org/expert/29600 -https://www.oceanexpert.org/expert/16137 -https://www.oceanexpert.org/expert/37531 -https://www.oceanexpert.org/event/1775 -https://www.oceanexpert.org/expert/25666 -https://www.oceanexpert.org/expert/23616 -https://www.oceanexpert.org/expert/24547 -https://www.oceanexpert.org/event/2593 -https://www.oceanexpert.org/expert/23016 -https://www.oceanexpert.org/expert/31379 -https://www.oceanexpert.org/expert/48668 -https://www.oceanexpert.org/expert/24891 -https://www.oceanexpert.org/event/1222 -https://www.oceanexpert.org/institution/17086 -https://www.oceanexpert.org/event/2529 -https://www.oceanexpert.org/expert/23872 -https://www.oceanexpert.org/expert/40066 -https://www.oceanexpert.org/expert/17199 -https://www.oceanexpert.org/expert/38784 -https://www.oceanexpert.org/institution/13016 -https://www.oceanexpert.org/expert/47424 -https://www.oceanexpert.org/expert/27677 -https://www.oceanexpert.org/expert/23730 -https://www.oceanexpert.org/expert/21471 -https://www.oceanexpert.org/institution/10810 -https://www.oceanexpert.org/event/3041 -https://www.oceanexpert.org/event/2950 -https://www.oceanexpert.org/expert/23661 -https://www.oceanexpert.org/expert/14429 -https://www.oceanexpert.org/institution/18036 -https://www.oceanexpert.org/expert/48559 -https://www.oceanexpert.org/event/420 -https://www.oceanexpert.org/expert/17173 -https://www.oceanexpert.org/expert/47160 -https://www.oceanexpert.org/expert/46483 -https://www.oceanexpert.org/institution/10263 -https://www.oceanexpert.org/institution/8401 -https://www.oceanexpert.org/institution/11145 -https://www.oceanexpert.org/expert/14020 -https://www.oceanexpert.org/event/1247 -https://www.oceanexpert.org/institution/9238 -https://www.oceanexpert.org/institution/19325 -https://www.oceanexpert.org/event/2624 -https://www.oceanexpert.org/expert/19245 -https://www.oceanexpert.org/expert/39087 -https://www.oceanexpert.org/expert/22450 -https://www.oceanexpert.org/expert/27867 -https://www.oceanexpert.org/expert/26225 -https://www.oceanexpert.org/expert/35662 -https://www.oceanexpert.org/institution/15131 -https://www.oceanexpert.org/event/2000 -https://www.oceanexpert.org/event/1524 -https://www.oceanexpert.org/institution/21848 -https://www.oceanexpert.org/institution/17975 -https://www.oceanexpert.org/expert/19982 -https://www.oceanexpert.org/expert/38301 -https://www.oceanexpert.org/expert/45348 -https://www.oceanexpert.org/expert/22683 -https://www.oceanexpert.org/institution/20804 -https://www.oceanexpert.org/institution/18867 -https://www.oceanexpert.org/institution/17222 -https://www.oceanexpert.org/expert/2002 -https://www.oceanexpert.org/event/2712 -https://www.oceanexpert.org/expert/26727 -https://www.oceanexpert.org/expert/34485 -https://www.oceanexpert.org/expert/17846 -https://www.oceanexpert.org/expert/39395 -https://www.oceanexpert.org/expert/30475 -https://www.oceanexpert.org/institution/21113 -https://www.oceanexpert.org/expert/2370 -https://www.oceanexpert.org/institution/20683 -https://www.oceanexpert.org/expert/43627 -https://www.oceanexpert.org/expert/43556 -https://www.oceanexpert.org/expert/20047 -https://www.oceanexpert.org/expert/46137 -https://www.oceanexpert.org/expert/44927 -https://www.oceanexpert.org/institution/18284 -https://www.oceanexpert.org/expert/8241 -https://www.oceanexpert.org/institution/6178 -https://www.oceanexpert.org/expert/12876 -https://www.oceanexpert.org/expert/23449 -https://www.oceanexpert.org/institution/19526 -https://www.oceanexpert.org/institution/10283 -https://www.oceanexpert.org/expert/26878 -https://www.oceanexpert.org/event/837 -https://www.oceanexpert.org/expert/21940 -https://www.oceanexpert.org/expert/8460 -https://www.oceanexpert.org/institution/19978 -https://www.oceanexpert.org/institution/19508 -https://www.oceanexpert.org/expert/48595 -https://www.oceanexpert.org/expert/24902 -https://www.oceanexpert.org/institution/21291 -https://www.oceanexpert.org/institution/15860 -https://www.oceanexpert.org/expert/34849 -https://www.oceanexpert.org/expert/20396 -https://www.oceanexpert.org/expert/20863 -https://www.oceanexpert.org/expert/23771 -https://www.oceanexpert.org/expert/46928 -https://www.oceanexpert.org/institution/10962 -https://www.oceanexpert.org/expert/32209 -https://www.oceanexpert.org/expert/41999 -https://www.oceanexpert.org/expert/23953 -https://www.oceanexpert.org/event/3168 -https://www.oceanexpert.org/event/312 -https://www.oceanexpert.org/expert/18199 -https://www.oceanexpert.org/expert/25982 -https://www.oceanexpert.org/institution/8941 -https://www.oceanexpert.org/expert/32148 -https://www.oceanexpert.org/expert/32312 -https://www.oceanexpert.org/expert/39198 -https://www.oceanexpert.org/expert/45144 -https://www.oceanexpert.org/expert/29616 -https://www.oceanexpert.org/expert/42405 -https://www.oceanexpert.org/expert/40059 -https://www.oceanexpert.org/institution/13829 -https://www.oceanexpert.org/expert/8634 -https://www.oceanexpert.org/event/2783 -https://www.oceanexpert.org/expert/27992 -https://www.oceanexpert.org/event/3068 -https://www.oceanexpert.org/event/2687 -https://www.oceanexpert.org/expert/38193 -https://www.oceanexpert.org/expert/17463 -https://www.oceanexpert.org/institution/10708 -https://www.oceanexpert.org/expert/30807 -https://www.oceanexpert.org/expert/45890 -https://www.oceanexpert.org/expert/23302 -https://www.oceanexpert.org/expert/26657 -https://www.oceanexpert.org/institution/20012 -https://www.oceanexpert.org/expert/28859 -https://www.oceanexpert.org/expert/47259 -https://www.oceanexpert.org/expert/12093 -https://www.oceanexpert.org/event/2677 -https://www.oceanexpert.org/expert/44301 -https://www.oceanexpert.org/expert/36347 -https://www.oceanexpert.org/expert/20436 -https://www.oceanexpert.org/institution/13642 -https://www.oceanexpert.org/expert/44548 -https://www.oceanexpert.org/event/255 -https://www.oceanexpert.org/event/1740 -https://www.oceanexpert.org/institution/21687 -https://www.oceanexpert.org/expert/29360 -https://www.oceanexpert.org/institution/13582 -https://www.oceanexpert.org/expert/33877 -https://www.oceanexpert.org/expert/22338 -https://www.oceanexpert.org/expert/44755 -https://www.oceanexpert.org/expert/28984 -https://www.oceanexpert.org/expert/40351 -https://www.oceanexpert.org/expert/38667 -https://www.oceanexpert.org/institution/10908 -https://www.oceanexpert.org/event/3117 -https://www.oceanexpert.org/expert/29685 -https://www.oceanexpert.org/expert/22223 -https://www.oceanexpert.org/expert/13684 -https://www.oceanexpert.org/institution/12001 -https://www.oceanexpert.org/expert/23411 -https://www.oceanexpert.org/institution/8404 -https://www.oceanexpert.org/expert/13155 -https://www.oceanexpert.org/expert/48510 -https://www.oceanexpert.org/expert/44413 -https://www.oceanexpert.org/expert/31904 -https://www.oceanexpert.org/expert/34460 -https://www.oceanexpert.org/expert/32538 -https://www.oceanexpert.org/expert/36875 -https://www.oceanexpert.org/expert/24531 -https://www.oceanexpert.org/expert/32000 -https://www.oceanexpert.org/event/1147 -https://www.oceanexpert.org/expert/36225 -https://www.oceanexpert.org/event/2432 -https://www.oceanexpert.org/expert/18121 -https://www.oceanexpert.org/expert/22827 -https://www.oceanexpert.org/expert/47925 -https://www.oceanexpert.org/institution/6204 -https://www.oceanexpert.org/expert/31970 -https://www.oceanexpert.org/expert/27132 -https://www.oceanexpert.org/event/1330 -https://www.oceanexpert.org/institution/9977 -https://www.oceanexpert.org/expert/17962 -https://www.oceanexpert.org/expert/36501 -https://www.oceanexpert.org/expert/47495 -https://www.oceanexpert.org/event/52 -https://www.oceanexpert.org/expert/30188 -https://www.oceanexpert.org/expert/39952 -https://www.oceanexpert.org/expert/24044 -https://www.oceanexpert.org/expert/21926 -https://www.oceanexpert.org/institution/22157 -https://www.oceanexpert.org/expert/16498 -https://www.oceanexpert.org/institution/19948 -https://www.oceanexpert.org/institution/19135 -https://www.oceanexpert.org/expert/25751 -https://www.oceanexpert.org/expert/12914 -https://www.oceanexpert.org/expert/33112 -https://www.oceanexpert.org/institution/14046 -https://www.oceanexpert.org/institution/18833 -https://www.oceanexpert.org/event/2654 -https://www.oceanexpert.org/expert/26001 -https://www.oceanexpert.org/expert/24333 -https://www.oceanexpert.org/institution/16408 -https://www.oceanexpert.org/expert/35313 -https://www.oceanexpert.org/institution/17700 -https://www.oceanexpert.org/expert/29706 -https://www.oceanexpert.org/expert/2046 -https://www.oceanexpert.org/expert/25050 -https://www.oceanexpert.org/expert/13907 -https://www.oceanexpert.org/institution/20565 -https://www.oceanexpert.org/event/395 -https://www.oceanexpert.org/expert/35418 -https://www.oceanexpert.org/expert/30235 -https://www.oceanexpert.org/expert/44399 -https://www.oceanexpert.org/expert/25876 -https://www.oceanexpert.org/institution/20187 -https://www.oceanexpert.org/expert/22957 -https://www.oceanexpert.org/expert/35732 -https://www.oceanexpert.org/institution/21512 -https://www.oceanexpert.org/event/1613 -https://www.oceanexpert.org/expert/45066 -https://www.oceanexpert.org/expert/31650 -https://www.oceanexpert.org/expert/32974 -https://www.oceanexpert.org/expert/44502 -https://www.oceanexpert.org/institution/20746 -https://www.oceanexpert.org/institution/21066 -https://www.oceanexpert.org/institution/18519 -https://www.oceanexpert.org/event/2855 -https://www.oceanexpert.org/expert/37140 -https://www.oceanexpert.org/expert/38492 -https://www.oceanexpert.org/expert/19056 -https://www.oceanexpert.org/expert/49025 -https://www.oceanexpert.org/expert/44616 -https://www.oceanexpert.org/expert/16700 -https://www.oceanexpert.org/event/1019 -https://www.oceanexpert.org/expert/44170 -https://www.oceanexpert.org/institution/9485 -https://www.oceanexpert.org/event/1341 -https://www.oceanexpert.org/expert/47698 -https://www.oceanexpert.org/expert/18686 -https://www.oceanexpert.org/institution/96 -https://www.oceanexpert.org/expert/28188 -https://www.oceanexpert.org/expert/20447 -https://www.oceanexpert.org/expert/26961 -https://www.oceanexpert.org/institution/21168 -https://www.oceanexpert.org/expert/21846 -https://www.oceanexpert.org/event/939 -https://www.oceanexpert.org/expert/20546 -https://www.oceanexpert.org/expert/44266 -https://www.oceanexpert.org/expert/35750 -https://www.oceanexpert.org/expert/36241 -https://www.oceanexpert.org/expert/26545 -https://www.oceanexpert.org/institution/17831 -https://www.oceanexpert.org/expert/2707 -https://www.oceanexpert.org/event/1165 -https://www.oceanexpert.org/expert/40897 -https://www.oceanexpert.org/expert/48743 -https://www.oceanexpert.org/institution/14006 -https://www.oceanexpert.org/institution/9863 -https://www.oceanexpert.org/expert/17147 -https://www.oceanexpert.org/expert/18978 -https://www.oceanexpert.org/institution/21469 -https://www.oceanexpert.org/expert/18718 -https://www.oceanexpert.org/expert/18419 -https://www.oceanexpert.org/expert/23397 -https://www.oceanexpert.org/institution/13067 -https://www.oceanexpert.org/expert/2201 -https://www.oceanexpert.org/expert/3806 -https://www.oceanexpert.org/institution/13298 -https://www.oceanexpert.org/institution/12387 -https://www.oceanexpert.org/expert/36261 -https://www.oceanexpert.org/expert/19539 -https://www.oceanexpert.org/expert/23249 -https://www.oceanexpert.org/expert/29359 -https://www.oceanexpert.org/institution/11665 -https://www.oceanexpert.org/event/774 -https://www.oceanexpert.org/expert/25188 -https://www.oceanexpert.org/expert/35659 -https://www.oceanexpert.org/expert/8053 -https://www.oceanexpert.org/institution/16458 -https://www.oceanexpert.org/expert/10777 -https://www.oceanexpert.org/expert/19214 -https://www.oceanexpert.org/institution/15384 -https://www.oceanexpert.org/institution/22015 -https://www.oceanexpert.org/expert/34549 -https://www.oceanexpert.org/expert/25773 -https://www.oceanexpert.org/event/1617 -https://www.oceanexpert.org/expert/30900 -https://www.oceanexpert.org/event/2015 -https://www.oceanexpert.org/institution/7293 -https://www.oceanexpert.org/expert/27607 -https://www.oceanexpert.org/expert/43513 -https://www.oceanexpert.org/expert/46617 -https://www.oceanexpert.org/expert/48973 -https://www.oceanexpert.org/expert/25647 -https://www.oceanexpert.org/institution/21213 -https://www.oceanexpert.org/expert/26372 -https://www.oceanexpert.org/expert/20301 -https://www.oceanexpert.org/institution/18502 -https://www.oceanexpert.org/expert/44668 -https://www.oceanexpert.org/expert/26709 -https://www.oceanexpert.org/expert/31037 -https://www.oceanexpert.org/institution/10489 -https://www.oceanexpert.org/expert/22338 -https://www.oceanexpert.org/expert/7642 -https://www.oceanexpert.org/expert/44868 -https://www.oceanexpert.org/expert/3969 -https://www.oceanexpert.org/event/2041 -https://www.oceanexpert.org/expert/20249 -https://www.oceanexpert.org/institution/7249 -https://www.oceanexpert.org/expert/43196 -https://www.oceanexpert.org/expert/26386 -https://www.oceanexpert.org/expert/23987 -https://www.oceanexpert.org/expert/1522 -https://www.oceanexpert.org/expert/7004 -https://www.oceanexpert.org/expert/44113 -https://www.oceanexpert.org/expert/15603 -https://www.oceanexpert.org/expert/38631 -https://www.oceanexpert.org/expert/26402 -https://www.oceanexpert.org/expert/16412 -https://www.oceanexpert.org/expert/35139 -https://www.oceanexpert.org/expert/9136 -https://www.oceanexpert.org/institution/16150 -https://www.oceanexpert.org/expert/35725 -https://www.oceanexpert.org/institution/20755 -https://www.oceanexpert.org/expert/27572 -https://www.oceanexpert.org/expert/39395 -https://www.oceanexpert.org/expert/17576 -https://www.oceanexpert.org/institution/18915 -https://www.oceanexpert.org/expert/26502 -https://www.oceanexpert.org/institution/16746 -https://www.oceanexpert.org/institution/13857 -https://www.oceanexpert.org/expert/16743 -https://www.oceanexpert.org/expert/20566 -https://www.oceanexpert.org/expert/34058 -https://www.oceanexpert.org/expert/26992 -https://www.oceanexpert.org/expert/45848 -https://www.oceanexpert.org/expert/12150 -https://www.oceanexpert.org/expert/16625 -https://www.oceanexpert.org/institution/20423 -https://www.oceanexpert.org/institution/14364 -https://www.oceanexpert.org/expert/46490 -https://www.oceanexpert.org/expert/23824 -https://www.oceanexpert.org/expert/34426 -https://www.oceanexpert.org/institution/18988 -https://www.oceanexpert.org/expert/45943 -https://www.oceanexpert.org/event/1610 -https://www.oceanexpert.org/expert/45123 -https://www.oceanexpert.org/expert/43410 -https://www.oceanexpert.org/institution/17361 -https://www.oceanexpert.org/expert/23853 -https://www.oceanexpert.org/expert/44772 -https://www.oceanexpert.org/event/1334 -https://www.oceanexpert.org/expert/44487 -https://www.oceanexpert.org/event/1023 -https://www.oceanexpert.org/expert/7368 -https://www.oceanexpert.org/expert/17324 -https://www.oceanexpert.org/expert/19142 -https://www.oceanexpert.org/event/1077 -https://www.oceanexpert.org/expert/32388 -https://www.oceanexpert.org/expert/45523 -https://www.oceanexpert.org/institution/19914 -https://www.oceanexpert.org/expert/11471 -https://www.oceanexpert.org/expert/39730 -https://www.oceanexpert.org/expert/17522 -https://www.oceanexpert.org/institution/18213 -https://www.oceanexpert.org/institution/19262 -https://www.oceanexpert.org/institution/19635 -https://www.oceanexpert.org/expert/21514 -https://www.oceanexpert.org/expert/43893 -https://www.oceanexpert.org/institution/19974 -https://www.oceanexpert.org/expert/34697 -https://www.oceanexpert.org/expert/24702 -https://www.oceanexpert.org/expert/37264 -https://www.oceanexpert.org/institution/19356 -https://www.oceanexpert.org/event/766 -https://www.oceanexpert.org/event/157 -https://www.oceanexpert.org/expert/27641 -https://www.oceanexpert.org/institution/9863 -https://www.oceanexpert.org/expert/9469 -https://www.oceanexpert.org/institution/15994 -https://www.oceanexpert.org/expert/21760 -https://www.oceanexpert.org/institution/12120 -https://www.oceanexpert.org/expert/24814 -https://www.oceanexpert.org/expert/44883 -https://www.oceanexpert.org/expert/43974 -https://www.oceanexpert.org/expert/16839 -https://www.oceanexpert.org/expert/26420 -https://www.oceanexpert.org/institution/19465 -https://www.oceanexpert.org/event/2342 -https://www.oceanexpert.org/expert/13294 -https://www.oceanexpert.org/expert/26014 -https://www.oceanexpert.org/expert/21734 -https://www.oceanexpert.org/expert/23807 -https://www.oceanexpert.org/expert/30529 -https://www.oceanexpert.org/expert/16804 -https://www.oceanexpert.org/event/879 -https://www.oceanexpert.org/expert/46821 -https://www.oceanexpert.org/expert/23794 -https://www.oceanexpert.org/event/1493 -https://www.oceanexpert.org/expert/17541 -https://www.oceanexpert.org/expert/36991 -https://www.oceanexpert.org/institution/12409 -https://www.oceanexpert.org/institution/19912 -https://www.oceanexpert.org/expert/38695 -https://www.oceanexpert.org/expert/26008 -https://www.oceanexpert.org/expert/34970 -https://www.oceanexpert.org/expert/23026 -https://www.oceanexpert.org/institution/21670 -https://www.oceanexpert.org/institution/20623 -https://www.oceanexpert.org/expert/18666 -https://www.oceanexpert.org/expert/19064 -https://www.oceanexpert.org/expert/42457 -https://www.oceanexpert.org/expert/5501 -https://www.oceanexpert.org/institution/20612 -https://www.oceanexpert.org/institution/21682 -https://www.oceanexpert.org/institution/17782 -https://www.oceanexpert.org/expert/17049 -https://www.oceanexpert.org/expert/17431 -https://www.oceanexpert.org/expert/26832 -https://www.oceanexpert.org/expert/19751 -https://www.oceanexpert.org/expert/36276 -https://www.oceanexpert.org/expert/46747 -https://www.oceanexpert.org/expert/35459 -https://www.oceanexpert.org/institution/15145 -https://www.oceanexpert.org/institution/17897 -https://www.oceanexpert.org/expert/11986 -https://www.oceanexpert.org/expert/42485 -https://www.oceanexpert.org/event/1820 -https://www.oceanexpert.org/expert/38306 -https://www.oceanexpert.org/expert/44594 -https://www.oceanexpert.org/expert/25951 -https://www.oceanexpert.org/institution/21759 -https://www.oceanexpert.org/institution/12866 -https://www.oceanexpert.org/expert/43591 -https://www.oceanexpert.org/institution/21867 -https://www.oceanexpert.org/expert/21760 -https://www.oceanexpert.org/expert/14785 -https://www.oceanexpert.org/institution/16377 -https://www.oceanexpert.org/institution/19352 -https://www.oceanexpert.org/expert/22228 -https://www.oceanexpert.org/expert/18231 -https://www.oceanexpert.org/expert/26444 -https://www.oceanexpert.org/expert/15982 -https://www.oceanexpert.org/event/1863 -https://www.oceanexpert.org/event/2719 -https://www.oceanexpert.org/expert/37144 -https://www.oceanexpert.org/expert/6777 -https://www.oceanexpert.org/institution/16440 -https://www.oceanexpert.org/expert/30941 -https://www.oceanexpert.org/institution/16124 -https://www.oceanexpert.org/expert/24684 -https://www.oceanexpert.org/expert/13265 -https://www.oceanexpert.org/expert/43004 -https://www.oceanexpert.org/expert/34651 -https://www.oceanexpert.org/expert/45770 -https://www.oceanexpert.org/expert/17128 -https://www.oceanexpert.org/expert/6996 -https://www.oceanexpert.org/expert/46121 -https://www.oceanexpert.org/expert/46940 -https://www.oceanexpert.org/expert/43483 -https://www.oceanexpert.org/expert/31599 -https://www.oceanexpert.org/expert/27428 -https://www.oceanexpert.org/expert/47510 -https://www.oceanexpert.org/expert/26500 -https://www.oceanexpert.org/expert/25016 -https://www.oceanexpert.org/expert/40537 -https://www.oceanexpert.org/institution/19526 -https://www.oceanexpert.org/expert/29828 -https://www.oceanexpert.org/expert/34137 -https://www.oceanexpert.org/expert/44718 -https://www.oceanexpert.org/expert/7784 -https://www.oceanexpert.org/event/990 -https://www.oceanexpert.org/expert/31083 -https://www.oceanexpert.org/expert/26821 -https://www.oceanexpert.org/institution/21003 -https://www.oceanexpert.org/expert/20338 -https://www.oceanexpert.org/expert/36753 -https://www.oceanexpert.org/expert/34471 -https://www.oceanexpert.org/expert/32461 -https://www.oceanexpert.org/expert/35430 -https://www.oceanexpert.org/institution/20778 -https://www.oceanexpert.org/event/1142 -https://www.oceanexpert.org/expert/36809 -https://www.oceanexpert.org/institution/20529 -https://www.oceanexpert.org/expert/24401 -https://www.oceanexpert.org/expert/27355 -https://www.oceanexpert.org/expert/34077 -https://www.oceanexpert.org/event/2280 -https://www.oceanexpert.org/expert/11949 -https://www.oceanexpert.org/expert/4177 -https://www.oceanexpert.org/expert/26494 -https://www.oceanexpert.org/expert/28369 -https://www.oceanexpert.org/institution/18982 -https://www.oceanexpert.org/expert/29688 -https://www.oceanexpert.org/expert/45236 -https://www.oceanexpert.org/institution/19053 -https://www.oceanexpert.org/institution/21246 -https://www.oceanexpert.org/institution/21287 -https://www.oceanexpert.org/expert/35013 -https://www.oceanexpert.org/expert/44831 -https://www.oceanexpert.org/event/1183 -https://www.oceanexpert.org/expert/32818 -https://www.oceanexpert.org/expert/35160 -https://www.oceanexpert.org/expert/26532 -https://www.oceanexpert.org/expert/47060 -https://www.oceanexpert.org/institution/17339 -https://www.oceanexpert.org/expert/39773 -https://www.oceanexpert.org/expert/19571 -https://www.oceanexpert.org/institution/21340 -https://www.oceanexpert.org/expert/10913 -https://www.oceanexpert.org/expert/25252 -https://www.oceanexpert.org/institution/21937 -https://www.oceanexpert.org/institution/16282 -https://www.oceanexpert.org/institution/21745 -https://www.oceanexpert.org/event/1269 -https://www.oceanexpert.org/institution/16351 -https://www.oceanexpert.org/expert/19805 -https://www.oceanexpert.org/expert/29682 -https://www.oceanexpert.org/expert/20335 -https://www.oceanexpert.org/event/306 -https://www.oceanexpert.org/event/1104 -https://www.oceanexpert.org/expert/13728 -https://www.oceanexpert.org/expert/34905 -https://www.oceanexpert.org/institution/21847 -https://www.oceanexpert.org/expert/40055 -https://www.oceanexpert.org/expert/29502 -https://www.oceanexpert.org/institution/21114 -https://www.oceanexpert.org/expert/24685 -https://www.oceanexpert.org/expert/19719 -https://www.oceanexpert.org/expert/34879 -https://www.oceanexpert.org/expert/44052 -https://www.oceanexpert.org/expert/20581 -https://www.oceanexpert.org/expert/4382 -https://www.oceanexpert.org/institution/11513 -https://www.oceanexpert.org/event/1452 -https://www.oceanexpert.org/expert/37952 -https://www.oceanexpert.org/expert/42696 -https://www.oceanexpert.org/expert/33368 -https://www.oceanexpert.org/expert/45678 -https://www.oceanexpert.org/expert/23009 -https://www.oceanexpert.org/expert/3747 -https://www.oceanexpert.org/expert/34841 -https://www.oceanexpert.org/expert/42463 -https://www.oceanexpert.org/expert/16016 -https://www.oceanexpert.org/expert/36637 -https://www.oceanexpert.org/expert/19910 -https://www.oceanexpert.org/institution/18898 -https://www.oceanexpert.org/institution/8887 -https://www.oceanexpert.org/expert/15759 -https://www.oceanexpert.org/expert/35037 -https://www.oceanexpert.org/institution/11890 -https://www.oceanexpert.org/institution/20776 -https://www.oceanexpert.org/expert/26944 -https://www.oceanexpert.org/institution/10909 -https://www.oceanexpert.org/expert/23468 -https://www.oceanexpert.org/expert/23993 -https://www.oceanexpert.org/expert/47328 -https://www.oceanexpert.org/expert/27832 -https://www.oceanexpert.org/expert/42939 -https://www.oceanexpert.org/expert/15658 -https://www.oceanexpert.org/expert/47555 -https://www.oceanexpert.org/institution/14629 -https://www.oceanexpert.org/institution/19588 -https://www.oceanexpert.org/expert/25603 -https://www.oceanexpert.org/institution/20606 -https://www.oceanexpert.org/expert/24002 -https://www.oceanexpert.org/event/392 -https://www.oceanexpert.org/expert/45857 -https://www.oceanexpert.org/institution/13338 -https://www.oceanexpert.org/expert/22363 -https://www.oceanexpert.org/expert/48247 -https://www.oceanexpert.org/expert/42464 -https://www.oceanexpert.org/event/1414 -https://www.oceanexpert.org/expert/19406 -https://www.oceanexpert.org/expert/20643 -https://www.oceanexpert.org/expert/36382 -https://www.oceanexpert.org/expert/36464 -https://www.oceanexpert.org/expert/37460 -https://www.oceanexpert.org/institution/14816 -https://www.oceanexpert.org/expert/21092 -https://www.oceanexpert.org/institution/10564 -https://www.oceanexpert.org/expert/43683 -https://www.oceanexpert.org/expert/20832 -https://www.oceanexpert.org/expert/33387 -https://www.oceanexpert.org/expert/47033 -https://www.oceanexpert.org/expert/34475 -https://www.oceanexpert.org/institution/12721 -https://www.oceanexpert.org/expert/37065 -https://www.oceanexpert.org/institution/17192 -https://www.oceanexpert.org/institution/16834 -https://www.oceanexpert.org/expert/19566 -https://www.oceanexpert.org/expert/44996 -https://www.oceanexpert.org/expert/23798 -https://www.oceanexpert.org/event/1875 -https://www.oceanexpert.org/expert/19521 -https://www.oceanexpert.org/expert/2110 -https://www.oceanexpert.org/expert/30579 -https://www.oceanexpert.org/expert/35156 -https://www.oceanexpert.org/expert/23028 -https://www.oceanexpert.org/expert/47965 -https://www.oceanexpert.org/expert/35510 -https://www.oceanexpert.org/event/2602 -https://www.oceanexpert.org/expert/27331 -https://www.oceanexpert.org/event/694 -https://www.oceanexpert.org/expert/16806 -https://www.oceanexpert.org/expert/20132 -https://www.oceanexpert.org/institution/14487 -https://www.oceanexpert.org/expert/47216 -https://www.oceanexpert.org/expert/31942 -https://www.oceanexpert.org/expert/46033 -https://www.oceanexpert.org/expert/26676 -https://www.oceanexpert.org/institution/14309 -https://www.oceanexpert.org/expert/32293 -https://www.oceanexpert.org/event/114 -https://www.oceanexpert.org/expert/26945 -https://www.oceanexpert.org/institution/16017 -https://www.oceanexpert.org/event/1574 -https://www.oceanexpert.org/expert/23756 -https://www.oceanexpert.org/institution/19768 -https://www.oceanexpert.org/expert/44380 -https://www.oceanexpert.org/institution/19356 -https://www.oceanexpert.org/expert/47464 -https://www.oceanexpert.org/event/3031 -https://www.oceanexpert.org/expert/26435 -https://www.oceanexpert.org/expert/36977 -https://www.oceanexpert.org/institution/21217 -https://www.oceanexpert.org/event/1844 -https://www.oceanexpert.org/expert/33446 -https://www.oceanexpert.org/expert/42868 -https://www.oceanexpert.org/expert/47165 -https://www.oceanexpert.org/event/734 -https://www.oceanexpert.org/expert/35093 -https://www.oceanexpert.org/institution/17135 -https://www.oceanexpert.org/expert/42484 -https://www.oceanexpert.org/expert/117 -https://www.oceanexpert.org/expert/22676 -https://www.oceanexpert.org/expert/22980 -https://www.oceanexpert.org/expert/11585 -https://www.oceanexpert.org/event/354 -https://www.oceanexpert.org/expert/43610 -https://www.oceanexpert.org/institution/12873 -https://www.oceanexpert.org/expert/20584 -https://www.oceanexpert.org/expert/29571 -https://www.oceanexpert.org/institution/21913 -https://www.oceanexpert.org/expert/17816 -https://www.oceanexpert.org/expert/32639 -https://www.oceanexpert.org/expert/43607 -https://www.oceanexpert.org/event/1424 -https://www.oceanexpert.org/event/1733 -https://www.oceanexpert.org/expert/45576 -https://www.oceanexpert.org/institution/18040 -https://www.oceanexpert.org/expert/14384 -https://www.oceanexpert.org/event/2483 -https://www.oceanexpert.org/expert/26767 -https://www.oceanexpert.org/expert/27250 -https://www.oceanexpert.org/institution/21151 -https://www.oceanexpert.org/expert/48760 -https://www.oceanexpert.org/event/242 -https://www.oceanexpert.org/institution/19569 -https://www.oceanexpert.org/expert/20152 -https://www.oceanexpert.org/event/2632 -https://www.oceanexpert.org/expert/46687 -https://www.oceanexpert.org/event/1533 -https://www.oceanexpert.org/expert/8654 -https://www.oceanexpert.org/expert/43201 -https://www.oceanexpert.org/expert/20807 -https://www.oceanexpert.org/institution/17759 -https://www.oceanexpert.org/expert/44963 -https://www.oceanexpert.org/expert/27046 -https://www.oceanexpert.org/expert/38499 -https://www.oceanexpert.org/institution/19940 -https://www.oceanexpert.org/expert/16921 -https://www.oceanexpert.org/expert/40287 -https://www.oceanexpert.org/expert/27444 -https://www.oceanexpert.org/expert/25582 -https://www.oceanexpert.org/expert/18993 -https://www.oceanexpert.org/institution/18464 -https://www.oceanexpert.org/expert/27121 -https://www.oceanexpert.org/event/2586 -https://www.oceanexpert.org/expert/48670 -https://www.oceanexpert.org/expert/17790 -https://www.oceanexpert.org/expert/23922 -https://www.oceanexpert.org/institution/20619 -https://www.oceanexpert.org/expert/11881 -https://www.oceanexpert.org/expert/17159 -https://www.oceanexpert.org/institution/18119 -https://www.oceanexpert.org/institution/10228 -https://www.oceanexpert.org/institution/21873 -https://www.oceanexpert.org/expert/26693 -https://www.oceanexpert.org/institution/13431 -https://www.oceanexpert.org/event/712 -https://www.oceanexpert.org/expert/8020 -https://www.oceanexpert.org/expert/30864 -https://www.oceanexpert.org/institution/13465 -https://www.oceanexpert.org/expert/33625 -https://www.oceanexpert.org/expert/44820 -https://www.oceanexpert.org/expert/36642 -https://www.oceanexpert.org/expert/47752 -https://www.oceanexpert.org/institution/18671 -https://www.oceanexpert.org/expert/25814 -https://www.oceanexpert.org/event/2935 -https://www.oceanexpert.org/expert/43290 -https://www.oceanexpert.org/expert/17272 -https://www.oceanexpert.org/institution/17095 -https://www.oceanexpert.org/expert/18856 -https://www.oceanexpert.org/event/1995 -https://www.oceanexpert.org/expert/34082 -https://www.oceanexpert.org/expert/25820 -https://www.oceanexpert.org/institution/20188 -https://www.oceanexpert.org/expert/24832 -https://www.oceanexpert.org/expert/23400 -https://www.oceanexpert.org/expert/14925 -https://www.oceanexpert.org/expert/19470 -https://www.oceanexpert.org/institution/14681 -https://www.oceanexpert.org/expert/29142 -https://www.oceanexpert.org/expert/15847 -https://www.oceanexpert.org/institution/17091 -https://www.oceanexpert.org/expert/44495 -https://www.oceanexpert.org/expert/28257 -https://www.oceanexpert.org/expert/26912 -https://www.oceanexpert.org/expert/25688 -https://www.oceanexpert.org/expert/31722 -https://www.oceanexpert.org/expert/18143 -https://www.oceanexpert.org/institution/18074 -https://www.oceanexpert.org/expert/32405 -https://www.oceanexpert.org/expert/48885 -https://www.oceanexpert.org/expert/25019 -https://www.oceanexpert.org/expert/11863 -https://www.oceanexpert.org/institution/19513 -https://www.oceanexpert.org/expert/32448 -https://www.oceanexpert.org/expert/35253 -https://www.oceanexpert.org/expert/34402 -https://www.oceanexpert.org/expert/13102 -https://www.oceanexpert.org/institution/18360 -https://www.oceanexpert.org/expert/47773 -https://www.oceanexpert.org/expert/25105 -https://www.oceanexpert.org/event/858 -https://www.oceanexpert.org/expert/27696 -https://www.oceanexpert.org/expert/26814 -https://www.oceanexpert.org/event/735 -https://www.oceanexpert.org/event/1695 -https://www.oceanexpert.org/event/889 -https://www.oceanexpert.org/institution/21800 -https://www.oceanexpert.org/expert/48904 -https://www.oceanexpert.org/institution/19967 -https://www.oceanexpert.org/expert/24973 -https://www.oceanexpert.org/expert/18162 -https://www.oceanexpert.org/expert/43042 -https://www.oceanexpert.org/expert/27931 -https://www.oceanexpert.org/expert/19662 -https://www.oceanexpert.org/event/1380 -https://www.oceanexpert.org/expert/47375 -https://www.oceanexpert.org/institution/13233 -https://www.oceanexpert.org/expert/11230 -https://www.oceanexpert.org/expert/27526 -https://www.oceanexpert.org/expert/24900 -https://www.oceanexpert.org/event/440 -https://www.oceanexpert.org/institution/18358 -https://www.oceanexpert.org/expert/23103 -https://www.oceanexpert.org/expert/20326 -https://www.oceanexpert.org/expert/44738 -https://www.oceanexpert.org/expert/17164 -https://www.oceanexpert.org/expert/22031 -https://www.oceanexpert.org/expert/3587 -https://www.oceanexpert.org/institution/21055 -https://www.oceanexpert.org/expert/36796 -https://www.oceanexpert.org/expert/43193 -https://www.oceanexpert.org/expert/19622 -https://www.oceanexpert.org/institution/18700 -https://www.oceanexpert.org/institution/22058 -https://www.oceanexpert.org/expert/47728 -https://www.oceanexpert.org/expert/35037 -https://www.oceanexpert.org/expert/29210 -https://www.oceanexpert.org/expert/44241 -https://www.oceanexpert.org/expert/38726 -https://www.oceanexpert.org/expert/45648 -https://www.oceanexpert.org/expert/42147 -https://www.oceanexpert.org/expert/48780 -https://www.oceanexpert.org/expert/36610 -https://www.oceanexpert.org/institution/18021 -https://www.oceanexpert.org/expert/16584 -https://www.oceanexpert.org/expert/45124 -https://www.oceanexpert.org/expert/17563 -https://www.oceanexpert.org/expert/23027 -https://www.oceanexpert.org/expert/11173 -https://www.oceanexpert.org/expert/24454 -https://www.oceanexpert.org/expert/37487 -https://www.oceanexpert.org/expert/48092 -https://www.oceanexpert.org/expert/29785 -https://www.oceanexpert.org/institution/18542 -https://www.oceanexpert.org/expert/34654 -https://www.oceanexpert.org/expert/26053 -https://www.oceanexpert.org/institution/5921 -https://www.oceanexpert.org/expert/21929 -https://www.oceanexpert.org/institution/16353 -https://www.oceanexpert.org/expert/39655 -https://www.oceanexpert.org/institution/19257 -https://www.oceanexpert.org/institution/16319 -https://www.oceanexpert.org/expert/46275 -https://www.oceanexpert.org/expert/24018 -https://www.oceanexpert.org/expert/22474 -https://www.oceanexpert.org/expert/18509 -https://www.oceanexpert.org/expert/16281 -https://www.oceanexpert.org/expert/28311 -https://www.oceanexpert.org/institution/20826 -https://www.oceanexpert.org/expert/38118 -https://www.oceanexpert.org/expert/34841 -https://www.oceanexpert.org/expert/18097 -https://www.oceanexpert.org/institution/8487 -https://www.oceanexpert.org/expert/18851 -https://www.oceanexpert.org/expert/44701 -https://www.oceanexpert.org/expert/42520 -https://www.oceanexpert.org/expert/21101 -https://www.oceanexpert.org/expert/25900 -https://www.oceanexpert.org/expert/42468 -https://www.oceanexpert.org/expert/27419 -https://www.oceanexpert.org/institution/8338 -https://www.oceanexpert.org/expert/25851 -https://www.oceanexpert.org/expert/26326 -https://www.oceanexpert.org/event/69 -https://www.oceanexpert.org/expert/48937 -https://www.oceanexpert.org/institution/20910 -https://www.oceanexpert.org/expert/38136 -https://www.oceanexpert.org/expert/28965 -https://www.oceanexpert.org/expert/18483 -https://www.oceanexpert.org/expert/47166 -https://www.oceanexpert.org/expert/43437 -https://www.oceanexpert.org/expert/35642 -https://www.oceanexpert.org/expert/47576 -https://www.oceanexpert.org/expert/30641 -https://www.oceanexpert.org/expert/34665 -https://www.oceanexpert.org/event/1292 -https://www.oceanexpert.org/expert/30804 -https://www.oceanexpert.org/expert/48538 -https://www.oceanexpert.org/expert/20177 -https://www.oceanexpert.org/event/748 -https://www.oceanexpert.org/expert/46345 -https://www.oceanexpert.org/expert/12646 -https://www.oceanexpert.org/expert/21027 -https://www.oceanexpert.org/institution/21387 -https://www.oceanexpert.org/expert/19215 -https://www.oceanexpert.org/event/2398 -https://www.oceanexpert.org/expert/35428 -https://www.oceanexpert.org/expert/18401 -https://www.oceanexpert.org/expert/14155 -https://www.oceanexpert.org/institution/19170 -https://www.oceanexpert.org/expert/42920 -https://www.oceanexpert.org/institution/20324 -https://www.oceanexpert.org/institution/12956 -https://www.oceanexpert.org/expert/33310 -https://www.oceanexpert.org/expert/17474 -https://www.oceanexpert.org/event/2741 -https://www.oceanexpert.org/institution/18870 -https://www.oceanexpert.org/expert/48993 -https://www.oceanexpert.org/expert/18319 -https://www.oceanexpert.org/expert/39420 -https://www.oceanexpert.org/expert/16984 -https://www.oceanexpert.org/expert/44495 -https://www.oceanexpert.org/expert/33795 -https://www.oceanexpert.org/expert/28505 -https://www.oceanexpert.org/institution/15602 -https://www.oceanexpert.org/expert/33081 -https://www.oceanexpert.org/event/2262 -https://www.oceanexpert.org/expert/36615 -https://www.oceanexpert.org/event/761 -https://www.oceanexpert.org/expert/20522 -https://www.oceanexpert.org/institution/21044 -https://www.oceanexpert.org/expert/43895 -https://www.oceanexpert.org/expert/21475 -https://www.oceanexpert.org/expert/26908 -https://www.oceanexpert.org/expert/2388 -https://www.oceanexpert.org/institution/20891 -https://www.oceanexpert.org/expert/39271 -https://www.oceanexpert.org/expert/48947 -https://www.oceanexpert.org/event/1363 -https://www.oceanexpert.org/expert/22729 -https://www.oceanexpert.org/institution/20048 -https://www.oceanexpert.org/expert/27235 -https://www.oceanexpert.org/expert/44812 -https://www.oceanexpert.org/expert/48670 -https://www.oceanexpert.org/expert/20568 -https://www.oceanexpert.org/expert/32187 -https://www.oceanexpert.org/expert/24161 -https://www.oceanexpert.org/expert/4523 -https://www.oceanexpert.org/expert/21060 -https://www.oceanexpert.org/expert/30035 -https://www.oceanexpert.org/expert/26626 -https://www.oceanexpert.org/institution/15893 -https://www.oceanexpert.org/institution/17640 -https://www.oceanexpert.org/institution/21587 -https://www.oceanexpert.org/expert/24115 -https://www.oceanexpert.org/expert/32150 -https://www.oceanexpert.org/expert/23059 -https://www.oceanexpert.org/institution/16483 -https://www.oceanexpert.org/event/2055 -https://www.oceanexpert.org/expert/11162 -https://www.oceanexpert.org/expert/31936 -https://www.oceanexpert.org/expert/26478 -https://www.oceanexpert.org/institution/18894 -https://www.oceanexpert.org/expert/44654 -https://www.oceanexpert.org/institution/17475 -https://www.oceanexpert.org/institution/13427 -https://www.oceanexpert.org/institution/14037 -https://www.oceanexpert.org/expert/24733 -https://www.oceanexpert.org/expert/42890 -https://www.oceanexpert.org/expert/40585 -https://www.oceanexpert.org/expert/26717 -https://www.oceanexpert.org/event/2552 -https://www.oceanexpert.org/institution/5224 -https://www.oceanexpert.org/institution/18667 -https://www.oceanexpert.org/expert/25493 -https://www.oceanexpert.org/institution/20807 -https://www.oceanexpert.org/expert/43670 -https://www.oceanexpert.org/institution/19982 -https://www.oceanexpert.org/expert/12846 -https://www.oceanexpert.org/expert/34459 -https://www.oceanexpert.org/event/1924 -https://www.oceanexpert.org/event/1181 -https://www.oceanexpert.org/expert/18241 -https://www.oceanexpert.org/institution/9012 -https://www.oceanexpert.org/institution/18139 -https://www.oceanexpert.org/expert/39521 -https://www.oceanexpert.org/expert/16239 -https://www.oceanexpert.org/expert/38864 -https://www.oceanexpert.org/expert/26757 -https://www.oceanexpert.org/event/2551 -https://www.oceanexpert.org/expert/38156 -https://www.oceanexpert.org/expert/16717 -https://www.oceanexpert.org/expert/66 -https://www.oceanexpert.org/expert/20254 -https://www.oceanexpert.org/expert/48636 -https://www.oceanexpert.org/institution/8907 -https://www.oceanexpert.org/institution/18928 -https://www.oceanexpert.org/expert/22747 -https://www.oceanexpert.org/institution/18528 -https://www.oceanexpert.org/expert/20214 -https://www.oceanexpert.org/expert/20066 -https://www.oceanexpert.org/institution/20521 -https://www.oceanexpert.org/expert/27300 -https://www.oceanexpert.org/expert/17601 -https://www.oceanexpert.org/institution/20018 -https://www.oceanexpert.org/institution/15232 -https://www.oceanexpert.org/expert/44556 -https://www.oceanexpert.org/institution/18995 -https://www.oceanexpert.org/expert/25066 -https://www.oceanexpert.org/institution/17282 -https://www.oceanexpert.org/expert/22149 -https://www.oceanexpert.org/expert/43998 -https://www.oceanexpert.org/expert/26354 -https://www.oceanexpert.org/expert/39444 -https://www.oceanexpert.org/expert/40326 -https://www.oceanexpert.org/expert/27519 -https://www.oceanexpert.org/expert/26237 -https://www.oceanexpert.org/institution/20562 -https://www.oceanexpert.org/expert/10869 -https://www.oceanexpert.org/institution/21661 -https://www.oceanexpert.org/expert/12227 -https://www.oceanexpert.org/expert/25009 -https://www.oceanexpert.org/expert/24397 -https://www.oceanexpert.org/expert/15023 -https://www.oceanexpert.org/institution/20816 -https://www.oceanexpert.org/expert/13519 -https://www.oceanexpert.org/institution/12232 -https://www.oceanexpert.org/expert/46576 -https://www.oceanexpert.org/expert/25193 -https://www.oceanexpert.org/expert/37025 -https://www.oceanexpert.org/expert/31086 -https://www.oceanexpert.org/expert/32923 -https://www.oceanexpert.org/expert/16677 -https://www.oceanexpert.org/institution/11229 -https://www.oceanexpert.org/expert/20066 -https://www.oceanexpert.org/event/1446 -https://www.oceanexpert.org/institution/19810 -https://www.oceanexpert.org/expert/8522 -https://www.oceanexpert.org/institution/21865 -https://www.oceanexpert.org/institution/18947 -https://www.oceanexpert.org/expert/23659 -https://www.oceanexpert.org/event/96 -https://www.oceanexpert.org/expert/20919 -https://www.oceanexpert.org/expert/38054 -https://www.oceanexpert.org/expert/20016 -https://www.oceanexpert.org/expert/26941 -https://www.oceanexpert.org/expert/6910 -https://www.oceanexpert.org/event/973 -https://www.oceanexpert.org/expert/15710 -https://www.oceanexpert.org/institution/19765 -https://www.oceanexpert.org/institution/22156 -https://www.oceanexpert.org/expert/40093 -https://www.oceanexpert.org/expert/34386 -https://www.oceanexpert.org/institution/15218 -https://www.oceanexpert.org/expert/32920 -https://www.oceanexpert.org/expert/24850 -https://www.oceanexpert.org/expert/35030 -https://www.oceanexpert.org/institution/16848 -https://www.oceanexpert.org/expert/21712 -https://www.oceanexpert.org/institution/20953 -https://www.oceanexpert.org/institution/14825 -https://www.oceanexpert.org/expert/42881 -https://www.oceanexpert.org/expert/25328 -https://www.oceanexpert.org/expert/31662 -https://www.oceanexpert.org/expert/47480 -https://www.oceanexpert.org/expert/37913 -https://www.oceanexpert.org/institution/7610 -https://www.oceanexpert.org/institution/10227 -https://www.oceanexpert.org/institution/21515 -https://www.oceanexpert.org/expert/35123 -https://www.oceanexpert.org/institution/17502 -https://www.oceanexpert.org/expert/40534 -https://www.oceanexpert.org/expert/47738 -https://www.oceanexpert.org/expert/33576 -https://www.oceanexpert.org/expert/43131 -https://www.oceanexpert.org/institution/9247 -https://www.oceanexpert.org/expert/46058 -https://www.oceanexpert.org/expert/20150 -https://www.oceanexpert.org/expert/21362 -https://www.oceanexpert.org/expert/18390 -https://www.oceanexpert.org/expert/24573 -https://www.oceanexpert.org/expert/19344 -https://www.oceanexpert.org/expert/40266 -https://www.oceanexpert.org/event/1184 -https://www.oceanexpert.org/expert/1645 -https://www.oceanexpert.org/event/1391 -https://www.oceanexpert.org/expert/15387 -https://www.oceanexpert.org/event/812 -https://www.oceanexpert.org/expert/24258 -https://www.oceanexpert.org/expert/4220 -https://www.oceanexpert.org/expert/16874 -https://www.oceanexpert.org/institution/18271 -https://www.oceanexpert.org/expert/47062 -https://www.oceanexpert.org/expert/24869 -https://www.oceanexpert.org/expert/1615 -https://www.oceanexpert.org/expert/46995 -https://www.oceanexpert.org/institution/19197 -https://www.oceanexpert.org/expert/19350 -https://www.oceanexpert.org/expert/35705 -https://www.oceanexpert.org/institution/15895 -https://www.oceanexpert.org/institution/17762 -https://www.oceanexpert.org/institution/17737 -https://www.oceanexpert.org/expert/47559 -https://www.oceanexpert.org/expert/24824 -https://www.oceanexpert.org/expert/31255 -https://www.oceanexpert.org/expert/20299 -https://www.oceanexpert.org/expert/26253 -https://www.oceanexpert.org/expert/34809 -https://www.oceanexpert.org/expert/18180 -https://www.oceanexpert.org/expert/35553 -https://www.oceanexpert.org/expert/25506 -https://www.oceanexpert.org/expert/19464 -https://www.oceanexpert.org/expert/42102 -https://www.oceanexpert.org/expert/27761 -https://www.oceanexpert.org/institution/16690 -https://www.oceanexpert.org/expert/45609 -https://www.oceanexpert.org/expert/43794 -https://www.oceanexpert.org/institution/14286 -https://www.oceanexpert.org/expert/48252 -https://www.oceanexpert.org/institution/11986 -https://www.oceanexpert.org/expert/34609 -https://www.oceanexpert.org/expert/16943 -https://www.oceanexpert.org/expert/1126 -https://www.oceanexpert.org/event/1702 -https://www.oceanexpert.org/expert/35637 -https://www.oceanexpert.org/expert/23474 -https://www.oceanexpert.org/expert/20095 -https://www.oceanexpert.org/expert/37249 -https://www.oceanexpert.org/expert/20995 -https://www.oceanexpert.org/expert/48019 -https://www.oceanexpert.org/institution/8195 -https://www.oceanexpert.org/event/1193 -https://www.oceanexpert.org/expert/28481 -https://www.oceanexpert.org/expert/12096 -https://www.oceanexpert.org/expert/1029 -https://www.oceanexpert.org/expert/43837 -https://www.oceanexpert.org/institution/17451 -https://www.oceanexpert.org/institution/19291 -https://www.oceanexpert.org/institution/16366 -https://www.oceanexpert.org/expert/20344 -https://www.oceanexpert.org/expert/21955 -https://www.oceanexpert.org/institution/19009 -https://www.oceanexpert.org/expert/25433 -https://www.oceanexpert.org/institution/9429 -https://www.oceanexpert.org/institution/20297 -https://www.oceanexpert.org/expert/35542 -https://www.oceanexpert.org/expert/18480 -https://www.oceanexpert.org/institution/14192 -https://www.oceanexpert.org/expert/23060 -https://www.oceanexpert.org/expert/34469 -https://www.oceanexpert.org/expert/20560 -https://www.oceanexpert.org/expert/45844 -https://www.oceanexpert.org/institution/20040 -https://www.oceanexpert.org/institution/20192 -https://www.oceanexpert.org/institution/8990 -https://www.oceanexpert.org/expert/27457 -https://www.oceanexpert.org/expert/48949 -https://www.oceanexpert.org/expert/37028 -https://www.oceanexpert.org/event/2374 -https://www.oceanexpert.org/expert/24667 -https://www.oceanexpert.org/expert/33358 -https://www.oceanexpert.org/expert/35446 -https://www.oceanexpert.org/institution/16996 -https://www.oceanexpert.org/institution/22096 -https://www.oceanexpert.org/expert/44623 -https://www.oceanexpert.org/institution/6328 -https://www.oceanexpert.org/expert/21294 -https://www.oceanexpert.org/expert/43001 -https://www.oceanexpert.org/expert/42956 -https://www.oceanexpert.org/expert/33468 -https://www.oceanexpert.org/expert/45420 -https://www.oceanexpert.org/expert/37003 -https://www.oceanexpert.org/event/1212 -https://www.oceanexpert.org/expert/41674 -https://www.oceanexpert.org/institution/14350 -https://www.oceanexpert.org/expert/749 -https://www.oceanexpert.org/institution/15490 -https://www.oceanexpert.org/expert/18707 -https://www.oceanexpert.org/expert/29672 -https://www.oceanexpert.org/expert/37236 -https://www.oceanexpert.org/expert/21596 -https://www.oceanexpert.org/event/231 -https://www.oceanexpert.org/expert/48884 -https://www.oceanexpert.org/institution/11631 -https://www.oceanexpert.org/expert/48490 -https://www.oceanexpert.org/institution/18705 -https://www.oceanexpert.org/event/3125 -https://www.oceanexpert.org/expert/44631 -https://www.oceanexpert.org/expert/47049 -https://www.oceanexpert.org/expert/26274 -https://www.oceanexpert.org/institution/11577 -https://www.oceanexpert.org/event/1451 -https://www.oceanexpert.org/institution/21595 -https://www.oceanexpert.org/expert/24910 -https://www.oceanexpert.org/expert/44441 -https://www.oceanexpert.org/expert/35561 -https://www.oceanexpert.org/institution/19053 -https://www.oceanexpert.org/event/2886 -https://www.oceanexpert.org/institution/21602 -https://www.oceanexpert.org/expert/22819 -https://www.oceanexpert.org/expert/14950 -https://www.oceanexpert.org/expert/26734 -https://www.oceanexpert.org/expert/17467 -https://www.oceanexpert.org/expert/42846 -https://www.oceanexpert.org/institution/20067 -https://www.oceanexpert.org/event/2426 -https://www.oceanexpert.org/event/1800 -https://www.oceanexpert.org/expert/13499 -https://www.oceanexpert.org/institution/15892 -https://www.oceanexpert.org/expert/24427 -https://www.oceanexpert.org/event/3072 -https://www.oceanexpert.org/institution/16296 -https://www.oceanexpert.org/institution/20145 -https://www.oceanexpert.org/expert/32477 -https://www.oceanexpert.org/expert/24524 -https://www.oceanexpert.org/expert/21097 -https://www.oceanexpert.org/institution/19377 -https://www.oceanexpert.org/expert/22521 -https://www.oceanexpert.org/expert/34228 -https://www.oceanexpert.org/expert/25428 -https://www.oceanexpert.org/institution/21650 -https://www.oceanexpert.org/expert/43200 -https://www.oceanexpert.org/expert/45969 -https://www.oceanexpert.org/expert/43992 -https://www.oceanexpert.org/institution/21412 -https://www.oceanexpert.org/expert/7696 -https://www.oceanexpert.org/expert/32572 -https://www.oceanexpert.org/institution/21091 -https://www.oceanexpert.org/expert/12879 -https://www.oceanexpert.org/expert/17472 -https://www.oceanexpert.org/event/2520 -https://www.oceanexpert.org/expert/18707 -https://www.oceanexpert.org/institution/21070 -https://www.oceanexpert.org/expert/22602 -https://www.oceanexpert.org/expert/25725 -https://www.oceanexpert.org/expert/36954 -https://www.oceanexpert.org/institution/22134 -https://www.oceanexpert.org/institution/21191 -https://www.oceanexpert.org/expert/38778 -https://www.oceanexpert.org/event/567 -https://www.oceanexpert.org/expert/18023 -https://www.oceanexpert.org/expert/26604 -https://www.oceanexpert.org/institution/11444 -https://www.oceanexpert.org/institution/19760 -https://www.oceanexpert.org/institution/21145 -https://www.oceanexpert.org/institution/10426 -https://www.oceanexpert.org/expert/30864 -https://www.oceanexpert.org/institution/21422 -https://www.oceanexpert.org/event/2107 -https://www.oceanexpert.org/event/2407 -https://www.oceanexpert.org/expert/47347 -https://www.oceanexpert.org/expert/48964 -https://www.oceanexpert.org/expert/10706 -https://www.oceanexpert.org/institution/13410 -https://www.oceanexpert.org/expert/41547 -https://www.oceanexpert.org/expert/32751 -https://www.oceanexpert.org/institution/19470 -https://www.oceanexpert.org/expert/42753 -https://www.oceanexpert.org/expert/48796 -https://www.oceanexpert.org/expert/42897 -https://www.oceanexpert.org/institution/21003 -https://www.oceanexpert.org/expert/20497 -https://www.oceanexpert.org/expert/20169 -https://www.oceanexpert.org/expert/47862 -https://www.oceanexpert.org/expert/43972 -https://www.oceanexpert.org/expert/46508 -https://www.oceanexpert.org/expert/9047 -https://www.oceanexpert.org/institution/17611 -https://www.oceanexpert.org/expert/19614 -https://www.oceanexpert.org/expert/35984 -https://www.oceanexpert.org/institution/13228 -https://www.oceanexpert.org/expert/25203 -https://www.oceanexpert.org/expert/20532 -https://www.oceanexpert.org/institution/21857 -https://www.oceanexpert.org/expert/47475 -https://www.oceanexpert.org/expert/22333 -https://www.oceanexpert.org/expert/37245 -https://www.oceanexpert.org/expert/18020 -https://www.oceanexpert.org/institution/6941 -https://www.oceanexpert.org/institution/15873 -https://www.oceanexpert.org/expert/33792 -https://www.oceanexpert.org/expert/44840 -https://www.oceanexpert.org/expert/15066 -https://www.oceanexpert.org/event/101 -https://www.oceanexpert.org/expert/20408 -https://www.oceanexpert.org/event/2293 -https://www.oceanexpert.org/expert/28369 -https://www.oceanexpert.org/institution/6216 -https://www.oceanexpert.org/institution/20288 -https://www.oceanexpert.org/event/1238 -https://www.oceanexpert.org/event/1968 -https://www.oceanexpert.org/institution/14192 -https://www.oceanexpert.org/expert/49015 -https://www.oceanexpert.org/expert/37411 -https://www.oceanexpert.org/expert/36322 -https://www.oceanexpert.org/expert/45962 -https://www.oceanexpert.org/expert/783 -https://www.oceanexpert.org/institution/20160 -https://www.oceanexpert.org/expert/46312 -https://www.oceanexpert.org/institution/21246 -https://www.oceanexpert.org/event/469 -https://www.oceanexpert.org/institution/15732 -https://www.oceanexpert.org/expert/35237 -https://www.oceanexpert.org/event/2696 -https://www.oceanexpert.org/institution/14383 -https://www.oceanexpert.org/event/2034 -https://www.oceanexpert.org/institution/15915 -https://www.oceanexpert.org/expert/8600 -https://www.oceanexpert.org/expert/48902 -https://www.oceanexpert.org/expert/20173 -https://www.oceanexpert.org/expert/18216 -https://www.oceanexpert.org/expert/35025 -https://www.oceanexpert.org/expert/26501 -https://www.oceanexpert.org/expert/13980 -https://www.oceanexpert.org/institution/5449 -https://www.oceanexpert.org/expert/23917 -https://www.oceanexpert.org/expert/47670 -https://www.oceanexpert.org/expert/36757 -https://www.oceanexpert.org/expert/24982 -https://www.oceanexpert.org/expert/43313 -https://www.oceanexpert.org/expert/20477 -https://www.oceanexpert.org/event/2917 -https://www.oceanexpert.org/institution/12687 -https://www.oceanexpert.org/event/1246 -https://www.oceanexpert.org/expert/45311 -https://www.oceanexpert.org/expert/24356 -https://www.oceanexpert.org/event/1532 -https://www.oceanexpert.org/expert/20873 -https://www.oceanexpert.org/expert/42569 -https://www.oceanexpert.org/expert/34243 -https://www.oceanexpert.org/expert/27532 -https://www.oceanexpert.org/expert/29615 -https://www.oceanexpert.org/expert/46459 -https://www.oceanexpert.org/event/2124 -https://www.oceanexpert.org/institution/13138 -https://www.oceanexpert.org/expert/31264 -https://www.oceanexpert.org/institution/8810 -https://www.oceanexpert.org/institution/19383 -https://www.oceanexpert.org/expert/8695 -https://www.oceanexpert.org/expert/31286 -https://www.oceanexpert.org/event/13 -https://www.oceanexpert.org/institution/6099 -https://www.oceanexpert.org/expert/19188 -https://www.oceanexpert.org/institution/20992 -https://www.oceanexpert.org/institution/18303 -https://www.oceanexpert.org/expert/37436 -https://www.oceanexpert.org/expert/27703 -https://www.oceanexpert.org/expert/29759 -https://www.oceanexpert.org/institution/21517 -https://www.oceanexpert.org/expert/18276 -https://www.oceanexpert.org/expert/27387 -https://www.oceanexpert.org/event/22 -https://www.oceanexpert.org/expert/16703 -https://www.oceanexpert.org/expert/24369 -https://www.oceanexpert.org/expert/1911 -https://www.oceanexpert.org/institution/9566 -https://www.oceanexpert.org/expert/28259 -https://www.oceanexpert.org/expert/4136 -https://www.oceanexpert.org/institution/10889 -https://www.oceanexpert.org/expert/38290 -https://www.oceanexpert.org/event/2087 -https://www.oceanexpert.org/expert/21112 -https://www.oceanexpert.org/expert/4427 -https://www.oceanexpert.org/expert/20802 -https://www.oceanexpert.org/expert/11058 -https://www.oceanexpert.org/expert/23541 -https://www.oceanexpert.org/expert/40666 -https://www.oceanexpert.org/expert/18279 -https://www.oceanexpert.org/institution/20727 -https://www.oceanexpert.org/event/1106 -https://www.oceanexpert.org/event/305 -https://www.oceanexpert.org/institution/21512 -https://www.oceanexpert.org/expert/24369 -https://www.oceanexpert.org/institution/8432 -https://www.oceanexpert.org/institution/18675 -https://www.oceanexpert.org/expert/29267 -https://www.oceanexpert.org/expert/46361 -https://www.oceanexpert.org/institution/18046 -https://www.oceanexpert.org/expert/32562 -https://www.oceanexpert.org/expert/46693 -https://www.oceanexpert.org/expert/26398 -https://www.oceanexpert.org/expert/32242 -https://www.oceanexpert.org/expert/12168 -https://www.oceanexpert.org/event/1287 -https://www.oceanexpert.org/expert/25151 -https://www.oceanexpert.org/expert/15432 -https://www.oceanexpert.org/expert/4139 -https://www.oceanexpert.org/expert/45514 -https://www.oceanexpert.org/institution/16452 -https://www.oceanexpert.org/expert/37934 -https://www.oceanexpert.org/institution/19217 -https://www.oceanexpert.org/expert/45025 -https://www.oceanexpert.org/institution/21269 -https://www.oceanexpert.org/expert/42815 -https://www.oceanexpert.org/expert/26914 -https://www.oceanexpert.org/expert/26448 -https://www.oceanexpert.org/expert/21623 -https://www.oceanexpert.org/expert/38910 -https://www.oceanexpert.org/expert/47644 -https://www.oceanexpert.org/institution/11888 -https://www.oceanexpert.org/expert/23921 -https://www.oceanexpert.org/expert/32524 -https://www.oceanexpert.org/institution/18080 -https://www.oceanexpert.org/expert/36280 -https://www.oceanexpert.org/expert/27499 -https://www.oceanexpert.org/institution/20073 -https://www.oceanexpert.org/expert/19615 -https://www.oceanexpert.org/expert/46543 -https://www.oceanexpert.org/institution/16018 -https://www.oceanexpert.org/expert/23892 -https://www.oceanexpert.org/expert/26462 -https://www.oceanexpert.org/institution/18263 -https://www.oceanexpert.org/expert/12914 -https://www.oceanexpert.org/expert/32817 -https://www.oceanexpert.org/expert/45236 -https://www.oceanexpert.org/institution/7983 -https://www.oceanexpert.org/expert/33757 -https://www.oceanexpert.org/expert/17852 -https://www.oceanexpert.org/event/2397 -https://www.oceanexpert.org/institution/21146 -https://www.oceanexpert.org/expert/38905 -https://www.oceanexpert.org/expert/43029 -https://www.oceanexpert.org/expert/42686 -https://www.oceanexpert.org/expert/27771 -https://www.oceanexpert.org/expert/28253 -https://www.oceanexpert.org/expert/38295 -https://www.oceanexpert.org/expert/31747 -https://www.oceanexpert.org/expert/35335 -https://www.oceanexpert.org/institution/21274 -https://www.oceanexpert.org/expert/20352 -https://www.oceanexpert.org/institution/12772 -https://www.oceanexpert.org/expert/47164 -https://www.oceanexpert.org/expert/464 -https://www.oceanexpert.org/expert/26803 -https://www.oceanexpert.org/expert/30228 -https://www.oceanexpert.org/institution/12042 -https://www.oceanexpert.org/institution/17902 -https://www.oceanexpert.org/expert/24692 -https://www.oceanexpert.org/expert/45664 -https://www.oceanexpert.org/event/2270 -https://www.oceanexpert.org/institution/15734 -https://www.oceanexpert.org/expert/38458 -https://www.oceanexpert.org/expert/37511 -https://www.oceanexpert.org/expert/38933 -https://www.oceanexpert.org/expert/27131 -https://www.oceanexpert.org/expert/35751 -https://www.oceanexpert.org/event/2179 -https://www.oceanexpert.org/expert/14275 -https://www.oceanexpert.org/expert/7566 -https://www.oceanexpert.org/expert/21700 -https://www.oceanexpert.org/expert/20033 -https://www.oceanexpert.org/institution/13970 -https://www.oceanexpert.org/expert/42831 -https://www.oceanexpert.org/expert/35628 -https://www.oceanexpert.org/expert/19889 -https://www.oceanexpert.org/expert/39753 -https://www.oceanexpert.org/expert/19913 -https://www.oceanexpert.org/expert/6600 -https://www.oceanexpert.org/expert/18235 -https://www.oceanexpert.org/expert/27272 -https://www.oceanexpert.org/expert/23651 -https://www.oceanexpert.org/expert/15506 -https://www.oceanexpert.org/expert/16998 -https://www.oceanexpert.org/expert/20627 -https://www.oceanexpert.org/expert/3421 -https://www.oceanexpert.org/institution/16008 -https://www.oceanexpert.org/institution/19078 -https://www.oceanexpert.org/expert/36790 -https://www.oceanexpert.org/expert/12901 -https://www.oceanexpert.org/expert/16341 -https://www.oceanexpert.org/event/2427 -https://www.oceanexpert.org/institution/13814 -https://www.oceanexpert.org/institution/18799 -https://www.oceanexpert.org/expert/15471 -https://www.oceanexpert.org/institution/21825 -https://www.oceanexpert.org/expert/24982 -https://www.oceanexpert.org/expert/37541 -https://www.oceanexpert.org/expert/45205 -https://www.oceanexpert.org/institution/14473 -https://www.oceanexpert.org/expert/43578 -https://www.oceanexpert.org/institution/22100 -https://www.oceanexpert.org/expert/36528 -https://www.oceanexpert.org/expert/25938 -https://www.oceanexpert.org/expert/5503 -https://www.oceanexpert.org/expert/20042 -https://www.oceanexpert.org/institution/15614 -https://www.oceanexpert.org/institution/7503 -https://www.oceanexpert.org/expert/43831 -https://www.oceanexpert.org/expert/11697 -https://www.oceanexpert.org/expert/43983 -https://www.oceanexpert.org/event/974 -https://www.oceanexpert.org/expert/46666 -https://www.oceanexpert.org/expert/1859 -https://www.oceanexpert.org/expert/23547 -https://www.oceanexpert.org/institution/20833 -https://www.oceanexpert.org/expert/38128 -https://www.oceanexpert.org/expert/35180 -https://www.oceanexpert.org/expert/17349 -https://www.oceanexpert.org/event/1322 -https://www.oceanexpert.org/event/2804 -https://www.oceanexpert.org/expert/21183 -https://www.oceanexpert.org/expert/26823 -https://www.oceanexpert.org/institution/8684 -https://www.oceanexpert.org/expert/27616 -https://www.oceanexpert.org/expert/12287 -https://www.oceanexpert.org/expert/32141 -https://www.oceanexpert.org/expert/47937 -https://www.oceanexpert.org/institution/10935 -https://www.oceanexpert.org/expert/33132 -https://www.oceanexpert.org/institution/16319 -https://www.oceanexpert.org/institution/21297 -https://www.oceanexpert.org/expert/8329 -https://www.oceanexpert.org/expert/30716 -https://www.oceanexpert.org/institution/21332 -https://www.oceanexpert.org/expert/35255 -https://www.oceanexpert.org/expert/37024 -https://www.oceanexpert.org/expert/32252 -https://www.oceanexpert.org/event/1614 -https://www.oceanexpert.org/expert/27399 -https://www.oceanexpert.org/expert/45519 -https://www.oceanexpert.org/expert/27287 -https://www.oceanexpert.org/event/1019 -https://www.oceanexpert.org/institution/13751 -https://www.oceanexpert.org/expert/48666 -https://www.oceanexpert.org/expert/35279 -https://www.oceanexpert.org/expert/43717 -https://www.oceanexpert.org/expert/13047 -https://www.oceanexpert.org/expert/25547 -https://www.oceanexpert.org/institution/5662 -https://www.oceanexpert.org/institution/8387 -https://www.oceanexpert.org/institution/21075 -https://www.oceanexpert.org/expert/27177 -https://www.oceanexpert.org/expert/23089 -https://www.oceanexpert.org/institution/5558 -https://www.oceanexpert.org/institution/12044 -https://www.oceanexpert.org/expert/43977 -https://www.oceanexpert.org/institution/19692 -https://www.oceanexpert.org/institution/18694 -https://www.oceanexpert.org/expert/21899 -https://www.oceanexpert.org/expert/40119 -https://www.oceanexpert.org/expert/20501 -https://www.oceanexpert.org/institution/18565 -https://www.oceanexpert.org/expert/16780 -https://www.oceanexpert.org/expert/22395 -https://www.oceanexpert.org/expert/37360 -https://www.oceanexpert.org/expert/24419 -https://www.oceanexpert.org/expert/23297 -https://www.oceanexpert.org/event/3189 -https://www.oceanexpert.org/institution/18033 -https://www.oceanexpert.org/event/2408 -https://www.oceanexpert.org/institution/21727 -https://www.oceanexpert.org/expert/33319 -https://www.oceanexpert.org/event/2821 -https://www.oceanexpert.org/expert/23856 -https://www.oceanexpert.org/expert/44029 -https://www.oceanexpert.org/expert/22812 -https://www.oceanexpert.org/expert/45775 -https://www.oceanexpert.org/institution/8145 -https://www.oceanexpert.org/expert/45972 -https://www.oceanexpert.org/expert/47193 -https://www.oceanexpert.org/institution/17574 -https://www.oceanexpert.org/institution/21839 -https://www.oceanexpert.org/expert/23577 -https://www.oceanexpert.org/expert/47337 -https://www.oceanexpert.org/expert/30936 -https://www.oceanexpert.org/event/2234 -https://www.oceanexpert.org/expert/28432 -https://www.oceanexpert.org/expert/26494 -https://www.oceanexpert.org/institution/20859 -https://www.oceanexpert.org/institution/19563 -https://www.oceanexpert.org/expert/17595 -https://www.oceanexpert.org/institution/21645 -https://www.oceanexpert.org/institution/14602 -https://www.oceanexpert.org/institution/15420 -https://www.oceanexpert.org/expert/16941 -https://www.oceanexpert.org/expert/18365 -https://www.oceanexpert.org/institution/21117 -https://www.oceanexpert.org/expert/46646 -https://www.oceanexpert.org/expert/31692 -https://www.oceanexpert.org/expert/36583 -https://www.oceanexpert.org/expert/27408 -https://www.oceanexpert.org/expert/29418 -https://www.oceanexpert.org/expert/5443 -https://www.oceanexpert.org/expert/39217 -https://www.oceanexpert.org/expert/48554 -https://www.oceanexpert.org/institution/9407 -https://www.oceanexpert.org/expert/45879 -https://www.oceanexpert.org/expert/38096 -https://www.oceanexpert.org/expert/22647 -https://www.oceanexpert.org/expert/49051 -https://www.oceanexpert.org/institution/16385 -https://www.oceanexpert.org/expert/20470 -https://www.oceanexpert.org/expert/20834 -https://www.oceanexpert.org/expert/30533 -https://www.oceanexpert.org/event/1062 -https://www.oceanexpert.org/expert/14103 -https://www.oceanexpert.org/event/2961 -https://www.oceanexpert.org/expert/20122 -https://www.oceanexpert.org/institution/17944 -https://www.oceanexpert.org/expert/40611 -https://www.oceanexpert.org/expert/26469 -https://www.oceanexpert.org/institution/15169 -https://www.oceanexpert.org/expert/22687 -https://www.oceanexpert.org/expert/34771 -https://www.oceanexpert.org/institution/12998 -https://www.oceanexpert.org/expert/27321 -https://www.oceanexpert.org/institution/19306 -https://www.oceanexpert.org/expert/44183 -https://www.oceanexpert.org/expert/37911 -https://www.oceanexpert.org/expert/39278 -https://www.oceanexpert.org/expert/15021 -https://www.oceanexpert.org/expert/34626 -https://www.oceanexpert.org/institution/18249 -https://www.oceanexpert.org/expert/25502 -https://www.oceanexpert.org/expert/24278 -https://www.oceanexpert.org/expert/20151 -https://www.oceanexpert.org/expert/27569 -https://www.oceanexpert.org/expert/46949 -https://www.oceanexpert.org/expert/2352 -https://www.oceanexpert.org/institution/18387 -https://www.oceanexpert.org/expert/15540 -https://www.oceanexpert.org/expert/46001 -https://www.oceanexpert.org/expert/26432 -https://www.oceanexpert.org/expert/18213 -https://www.oceanexpert.org/expert/26310 -https://www.oceanexpert.org/expert/17304 -https://www.oceanexpert.org/expert/37239 -https://www.oceanexpert.org/expert/24759 -https://www.oceanexpert.org/expert/32407 -https://www.oceanexpert.org/expert/10521 -https://www.oceanexpert.org/expert/5830 -https://www.oceanexpert.org/expert/4775 -https://www.oceanexpert.org/institution/21293 -https://www.oceanexpert.org/expert/1144 -https://www.oceanexpert.org/expert/39937 -https://www.oceanexpert.org/event/402 -https://www.oceanexpert.org/expert/17251 -https://www.oceanexpert.org/institution/19832 -https://www.oceanexpert.org/expert/35182 -https://www.oceanexpert.org/expert/23811 -https://www.oceanexpert.org/expert/32142 -https://www.oceanexpert.org/institution/11246 -https://www.oceanexpert.org/institution/14425 -https://www.oceanexpert.org/expert/18856 -https://www.oceanexpert.org/expert/48886 -https://www.oceanexpert.org/expert/25098 -https://www.oceanexpert.org/expert/44899 -https://www.oceanexpert.org/expert/37116 -https://www.oceanexpert.org/institution/8203 -https://www.oceanexpert.org/expert/32806 -https://www.oceanexpert.org/expert/48467 -https://www.oceanexpert.org/institution/8297 -https://www.oceanexpert.org/expert/29091 -https://www.oceanexpert.org/expert/1864 -https://www.oceanexpert.org/institution/14885 -https://www.oceanexpert.org/expert/23560 -https://www.oceanexpert.org/expert/35261 -https://www.oceanexpert.org/institution/19504 -https://www.oceanexpert.org/institution/18110 -https://www.oceanexpert.org/expert/38416 -https://www.oceanexpert.org/event/1158 -https://www.oceanexpert.org/institution/21507 -https://www.oceanexpert.org/institution/19332 -https://www.oceanexpert.org/expert/43635 -https://www.oceanexpert.org/institution/20548 -https://www.oceanexpert.org/expert/43994 -https://www.oceanexpert.org/institution/21615 -https://www.oceanexpert.org/institution/11303 -https://www.oceanexpert.org/event/328 -https://www.oceanexpert.org/expert/9622 -https://www.oceanexpert.org/institution/15792 -https://www.oceanexpert.org/expert/47266 -https://www.oceanexpert.org/expert/23271 -https://www.oceanexpert.org/institution/19745 -https://www.oceanexpert.org/expert/46912 -https://www.oceanexpert.org/expert/33110 -https://www.oceanexpert.org/institution/12472 -https://www.oceanexpert.org/institution/18108 -https://www.oceanexpert.org/institution/20014 -https://www.oceanexpert.org/expert/15258 -https://www.oceanexpert.org/institution/21587 -https://www.oceanexpert.org/event/2554 -https://www.oceanexpert.org/expert/12711 -https://www.oceanexpert.org/expert/22112 -https://www.oceanexpert.org/institution/18346 -https://www.oceanexpert.org/expert/32488 -https://www.oceanexpert.org/expert/26803 -https://www.oceanexpert.org/institution/10739 -https://www.oceanexpert.org/institution/16379 -https://www.oceanexpert.org/institution/14414 -https://www.oceanexpert.org/institution/16031 -https://www.oceanexpert.org/expert/19638 -https://www.oceanexpert.org/event/1827 -https://www.oceanexpert.org/expert/44086 -https://www.oceanexpert.org/event/792 -https://www.oceanexpert.org/expert/18004 -https://www.oceanexpert.org/expert/26560 -https://www.oceanexpert.org/expert/40333 -https://www.oceanexpert.org/expert/9389 -https://www.oceanexpert.org/expert/43343 -https://www.oceanexpert.org/expert/26913 -https://www.oceanexpert.org/expert/25770 -https://www.oceanexpert.org/event/732 -https://www.oceanexpert.org/expert/24122 -https://www.oceanexpert.org/expert/47312 -https://www.oceanexpert.org/institution/18905 -https://www.oceanexpert.org/expert/42533 -https://www.oceanexpert.org/institution/19295 -https://www.oceanexpert.org/expert/16535 -https://www.oceanexpert.org/expert/31211 -https://www.oceanexpert.org/expert/12734 -https://www.oceanexpert.org/expert/26880 -https://www.oceanexpert.org/expert/1117 -https://www.oceanexpert.org/expert/31956 -https://www.oceanexpert.org/institution/20173 -https://www.oceanexpert.org/expert/39346 -https://www.oceanexpert.org/expert/22889 -https://www.oceanexpert.org/institution/18968 -https://www.oceanexpert.org/expert/48177 -https://www.oceanexpert.org/expert/26051 -https://www.oceanexpert.org/institution/22107 -https://www.oceanexpert.org/expert/38055 -https://www.oceanexpert.org/event/2597 -https://www.oceanexpert.org/event/540 -https://www.oceanexpert.org/expert/28980 -https://www.oceanexpert.org/institution/11712 -https://www.oceanexpert.org/expert/26190 -https://www.oceanexpert.org/expert/32663 -https://www.oceanexpert.org/institution/20101 -https://www.oceanexpert.org/expert/35100 -https://www.oceanexpert.org/expert/24434 -https://www.oceanexpert.org/expert/36780 -https://www.oceanexpert.org/event/668 -https://www.oceanexpert.org/expert/24554 -https://www.oceanexpert.org/expert/20796 -https://www.oceanexpert.org/expert/43138 -https://www.oceanexpert.org/expert/18028 -https://www.oceanexpert.org/institution/5208 -https://www.oceanexpert.org/expert/47928 -https://www.oceanexpert.org/expert/25245 -https://www.oceanexpert.org/expert/38279 -https://www.oceanexpert.org/expert/43773 -https://www.oceanexpert.org/expert/35459 -https://www.oceanexpert.org/expert/19605 -https://www.oceanexpert.org/institution/19863 -https://www.oceanexpert.org/expert/38954 -https://www.oceanexpert.org/institution/5223 -https://www.oceanexpert.org/expert/44040 -https://www.oceanexpert.org/event/1522 -https://www.oceanexpert.org/expert/27470 -https://www.oceanexpert.org/institution/9296 -https://www.oceanexpert.org/expert/22825 -https://www.oceanexpert.org/expert/26346 -https://www.oceanexpert.org/expert/20152 -https://www.oceanexpert.org/expert/4496 -https://www.oceanexpert.org/expert/16297 -https://www.oceanexpert.org/expert/33862 -https://www.oceanexpert.org/expert/22286 -https://www.oceanexpert.org/expert/40630 -https://www.oceanexpert.org/expert/34241 -https://www.oceanexpert.org/expert/23644 -https://www.oceanexpert.org/expert/29765 -https://www.oceanexpert.org/expert/16465 -https://www.oceanexpert.org/expert/34694 -https://www.oceanexpert.org/expert/28299 -https://www.oceanexpert.org/expert/21354 -https://www.oceanexpert.org/event/2955 -https://www.oceanexpert.org/event/2731 -https://www.oceanexpert.org/institution/18621 -https://www.oceanexpert.org/event/2042 -https://www.oceanexpert.org/expert/23448 -https://www.oceanexpert.org/expert/37083 -https://www.oceanexpert.org/event/1797 -https://www.oceanexpert.org/institution/19713 -https://www.oceanexpert.org/expert/24820 -https://www.oceanexpert.org/institution/19591 -https://www.oceanexpert.org/expert/46787 -https://www.oceanexpert.org/expert/42679 -https://www.oceanexpert.org/expert/34336 -https://www.oceanexpert.org/expert/35225 -https://www.oceanexpert.org/expert/34131 -https://www.oceanexpert.org/expert/32422 -https://www.oceanexpert.org/expert/15845 -https://www.oceanexpert.org/expert/31013 -https://www.oceanexpert.org/expert/17352 -https://www.oceanexpert.org/expert/11027 -https://www.oceanexpert.org/expert/35190 -https://www.oceanexpert.org/expert/40267 -https://www.oceanexpert.org/expert/23903 -https://www.oceanexpert.org/expert/44812 -https://www.oceanexpert.org/expert/5546 -https://www.oceanexpert.org/expert/48007 -https://www.oceanexpert.org/expert/23460 -https://www.oceanexpert.org/expert/31163 -https://www.oceanexpert.org/expert/22240 -https://www.oceanexpert.org/expert/13686 -https://www.oceanexpert.org/expert/36820 -https://www.oceanexpert.org/institution/11216 -https://www.oceanexpert.org/institution/20064 -https://www.oceanexpert.org/expert/35429 -https://www.oceanexpert.org/institution/13982 -https://www.oceanexpert.org/expert/1058 -https://www.oceanexpert.org/institution/18637 -https://www.oceanexpert.org/expert/14696 -https://www.oceanexpert.org/event/1408 -https://www.oceanexpert.org/expert/35769 -https://www.oceanexpert.org/event/1514 -https://www.oceanexpert.org/institution/19621 -https://www.oceanexpert.org/expert/22064 -https://www.oceanexpert.org/expert/11237 -https://www.oceanexpert.org/expert/40572 -https://www.oceanexpert.org/expert/44261 -https://www.oceanexpert.org/expert/29377 -https://www.oceanexpert.org/expert/47272 -https://www.oceanexpert.org/event/2394 -https://www.oceanexpert.org/event/3183 -https://www.oceanexpert.org/expert/33123 -https://www.oceanexpert.org/expert/17631 -https://www.oceanexpert.org/expert/44937 -https://www.oceanexpert.org/institution/15198 -https://www.oceanexpert.org/expert/37780 -https://www.oceanexpert.org/event/991 -https://www.oceanexpert.org/event/4 -https://www.oceanexpert.org/institution/10722 -https://www.oceanexpert.org/expert/12088 -https://www.oceanexpert.org/institution/7234 -https://www.oceanexpert.org/expert/45798 -https://www.oceanexpert.org/expert/25829 -https://www.oceanexpert.org/institution/15243 -https://www.oceanexpert.org/expert/27016 -https://www.oceanexpert.org/expert/16163 -https://www.oceanexpert.org/expert/15526 -https://www.oceanexpert.org/expert/40573 -https://www.oceanexpert.org/expert/20633 -https://www.oceanexpert.org/expert/48024 -https://www.oceanexpert.org/event/1725 -https://www.oceanexpert.org/expert/45899 -https://www.oceanexpert.org/expert/21215 -https://www.oceanexpert.org/expert/22596 -https://www.oceanexpert.org/expert/18852 -https://www.oceanexpert.org/institution/15385 -https://www.oceanexpert.org/institution/16883 -https://www.oceanexpert.org/expert/28202 -https://www.oceanexpert.org/event/614 -https://www.oceanexpert.org/expert/34579 -https://www.oceanexpert.org/institution/21354 -https://www.oceanexpert.org/expert/47084 -https://www.oceanexpert.org/expert/25568 -https://www.oceanexpert.org/event/2194 -https://www.oceanexpert.org/expert/27223 -https://www.oceanexpert.org/expert/14731 -https://www.oceanexpert.org/expert/43316 -https://www.oceanexpert.org/expert/6267 -https://www.oceanexpert.org/expert/17421 -https://www.oceanexpert.org/expert/32954 -https://www.oceanexpert.org/expert/3240 -https://www.oceanexpert.org/expert/37662 -https://www.oceanexpert.org/expert/9091 -https://www.oceanexpert.org/expert/34650 -https://www.oceanexpert.org/event/3255 -https://www.oceanexpert.org/expert/46864 -https://www.oceanexpert.org/expert/31014 -https://www.oceanexpert.org/expert/34065 -https://www.oceanexpert.org/event/1515 -https://www.oceanexpert.org/event/3069 -https://www.oceanexpert.org/institution/17968 -https://www.oceanexpert.org/expert/33374 -https://www.oceanexpert.org/expert/8514 -https://www.oceanexpert.org/expert/7770 -https://www.oceanexpert.org/event/2558 -https://www.oceanexpert.org/institution/17118 -https://www.oceanexpert.org/expert/45576 -https://www.oceanexpert.org/institution/14395 -https://www.oceanexpert.org/institution/12065 -https://www.oceanexpert.org/institution/18586 -https://www.oceanexpert.org/expert/21626 -https://www.oceanexpert.org/expert/44211 -https://www.oceanexpert.org/expert/21871 -https://www.oceanexpert.org/expert/21754 -https://www.oceanexpert.org/expert/36405 -https://www.oceanexpert.org/expert/4294 -https://www.oceanexpert.org/expert/24605 -https://www.oceanexpert.org/expert/17248 -https://www.oceanexpert.org/institution/16191 -https://www.oceanexpert.org/expert/20933 -https://www.oceanexpert.org/expert/31564 -https://www.oceanexpert.org/institution/21383 -https://www.oceanexpert.org/expert/38390 -https://www.oceanexpert.org/expert/33210 -https://www.oceanexpert.org/event/968 -https://www.oceanexpert.org/expert/26063 -https://www.oceanexpert.org/expert/18370 -https://www.oceanexpert.org/expert/30247 -https://www.oceanexpert.org/expert/37230 -https://www.oceanexpert.org/expert/16153 -https://www.oceanexpert.org/expert/19524 -https://www.oceanexpert.org/institution/20011 -https://www.oceanexpert.org/event/2712 -https://www.oceanexpert.org/institution/19641 -https://www.oceanexpert.org/expert/25248 -https://www.oceanexpert.org/institution/20687 -https://www.oceanexpert.org/expert/38323 -https://www.oceanexpert.org/expert/32863 -https://www.oceanexpert.org/institution/10527 -https://www.oceanexpert.org/expert/26612 -https://www.oceanexpert.org/expert/47529 -https://www.oceanexpert.org/expert/35331 -https://www.oceanexpert.org/expert/28316 -https://www.oceanexpert.org/event/3182 -https://www.oceanexpert.org/institution/18859 -https://www.oceanexpert.org/expert/12280 -https://www.oceanexpert.org/event/3086 -https://www.oceanexpert.org/expert/40266 -https://www.oceanexpert.org/event/1797 -https://www.oceanexpert.org/expert/36251 -https://www.oceanexpert.org/institution/8967 -https://www.oceanexpert.org/expert/26150 -https://www.oceanexpert.org/expert/31736 -https://www.oceanexpert.org/expert/34613 -https://www.oceanexpert.org/expert/47172 -https://www.oceanexpert.org/expert/12950 -https://www.oceanexpert.org/event/1520 -https://www.oceanexpert.org/expert/14863 -https://www.oceanexpert.org/event/1856 -https://www.oceanexpert.org/expert/47893 -https://www.oceanexpert.org/expert/38051 -https://www.oceanexpert.org/institution/18197 -https://www.oceanexpert.org/expert/37487 -https://www.oceanexpert.org/event/678 -https://www.oceanexpert.org/expert/43913 -https://www.oceanexpert.org/expert/48149 -https://www.oceanexpert.org/expert/26135 -https://www.oceanexpert.org/institution/9331 -https://www.oceanexpert.org/institution/19188 -https://www.oceanexpert.org/expert/33056 -https://www.oceanexpert.org/expert/47406 -https://www.oceanexpert.org/expert/19159 -https://www.oceanexpert.org/expert/16671 -https://www.oceanexpert.org/expert/14825 -https://www.oceanexpert.org/expert/37978 -https://www.oceanexpert.org/expert/11540 -https://www.oceanexpert.org/expert/47422 -https://www.oceanexpert.org/institution/22027 -https://www.oceanexpert.org/expert/17635 -https://www.oceanexpert.org/expert/45185 -https://www.oceanexpert.org/expert/18862 -https://www.oceanexpert.org/expert/19940 -https://www.oceanexpert.org/expert/27363 -https://www.oceanexpert.org/institution/6328 -https://www.oceanexpert.org/expert/13803 -https://www.oceanexpert.org/expert/22433 -https://www.oceanexpert.org/expert/14289 -https://www.oceanexpert.org/expert/34039 -https://www.oceanexpert.org/institution/18552 -https://www.oceanexpert.org/expert/30030 -https://www.oceanexpert.org/expert/44814 -https://www.oceanexpert.org/event/2560 -https://www.oceanexpert.org/institution/10633 -https://www.oceanexpert.org/expert/43766 -https://www.oceanexpert.org/expert/19729 -https://www.oceanexpert.org/expert/35589 -https://www.oceanexpert.org/event/847 -https://www.oceanexpert.org/expert/23087 -https://www.oceanexpert.org/expert/20664 -https://www.oceanexpert.org/expert/26641 -https://www.oceanexpert.org/expert/18285 -https://www.oceanexpert.org/institution/20207 -https://www.oceanexpert.org/expert/46007 -https://www.oceanexpert.org/expert/30865 -https://www.oceanexpert.org/event/2367 -https://www.oceanexpert.org/expert/24880 -https://www.oceanexpert.org/expert/1944 -https://www.oceanexpert.org/institution/6811 -https://www.oceanexpert.org/expert/22301 -https://www.oceanexpert.org/institution/18242 -https://www.oceanexpert.org/expert/20683 -https://www.oceanexpert.org/expert/34904 -https://www.oceanexpert.org/event/610 -https://www.oceanexpert.org/expert/14455 -https://www.oceanexpert.org/expert/29169 -https://www.oceanexpert.org/expert/47248 -https://www.oceanexpert.org/institution/17677 -https://www.oceanexpert.org/institution/17729 -https://www.oceanexpert.org/expert/13602 -https://www.oceanexpert.org/expert/2133 -https://www.oceanexpert.org/event/2548 -https://www.oceanexpert.org/institution/14054 -https://www.oceanexpert.org/event/2828 -https://www.oceanexpert.org/expert/15976 -https://www.oceanexpert.org/expert/26807 -https://www.oceanexpert.org/expert/38218 -https://www.oceanexpert.org/expert/19213 -https://www.oceanexpert.org/expert/34347 -https://www.oceanexpert.org/expert/25394 -https://www.oceanexpert.org/expert/22795 -https://www.oceanexpert.org/institution/10755 -https://www.oceanexpert.org/expert/25871 -https://www.oceanexpert.org/institution/21758 -https://www.oceanexpert.org/expert/46285 -https://www.oceanexpert.org/institution/20063 -https://www.oceanexpert.org/expert/18830 -https://www.oceanexpert.org/institution/21619 -https://www.oceanexpert.org/expert/4525 -https://www.oceanexpert.org/expert/48764 -https://www.oceanexpert.org/expert/22753 -https://www.oceanexpert.org/expert/43150 -https://www.oceanexpert.org/institution/7770 -https://www.oceanexpert.org/expert/19359 -https://www.oceanexpert.org/institution/21797 -https://www.oceanexpert.org/expert/30561 -https://www.oceanexpert.org/expert/27892 -https://www.oceanexpert.org/expert/35853 -https://www.oceanexpert.org/expert/7158 -https://www.oceanexpert.org/expert/8685 -https://www.oceanexpert.org/institution/19913 -https://www.oceanexpert.org/event/370 -https://www.oceanexpert.org/expert/750 -https://www.oceanexpert.org/expert/27602 -https://www.oceanexpert.org/expert/17260 -https://www.oceanexpert.org/expert/11101 -https://www.oceanexpert.org/expert/48184 -https://www.oceanexpert.org/expert/32123 -https://www.oceanexpert.org/institution/6106 -https://www.oceanexpert.org/expert/44851 -https://www.oceanexpert.org/institution/10954 -https://www.oceanexpert.org/institution/21281 -https://www.oceanexpert.org/institution/19444 -https://www.oceanexpert.org/expert/21324 -https://www.oceanexpert.org/institution/14693 -https://www.oceanexpert.org/expert/5146 -https://www.oceanexpert.org/expert/46221 -https://www.oceanexpert.org/expert/22991 -https://www.oceanexpert.org/expert/42603 -https://www.oceanexpert.org/event/3111 -https://www.oceanexpert.org/institution/18028 -https://www.oceanexpert.org/institution/20626 -https://www.oceanexpert.org/expert/43292 -https://www.oceanexpert.org/expert/12615 -https://www.oceanexpert.org/institution/11253 -https://www.oceanexpert.org/expert/37819 -https://www.oceanexpert.org/event/1173 -https://www.oceanexpert.org/expert/37298 -https://www.oceanexpert.org/expert/48155 -https://www.oceanexpert.org/expert/27031 -https://www.oceanexpert.org/institution/21051 -https://www.oceanexpert.org/expert/17362 -https://www.oceanexpert.org/expert/20961 -https://www.oceanexpert.org/institution/8218 -https://www.oceanexpert.org/expert/18841 -https://www.oceanexpert.org/expert/16387 -https://www.oceanexpert.org/expert/15416 -https://www.oceanexpert.org/expert/6640 -https://www.oceanexpert.org/expert/12806 -https://www.oceanexpert.org/expert/43089 -https://www.oceanexpert.org/expert/18257 -https://www.oceanexpert.org/expert/20693 -https://www.oceanexpert.org/institution/19064 -https://www.oceanexpert.org/institution/10197 -https://www.oceanexpert.org/event/1833 -https://www.oceanexpert.org/expert/45332 -https://www.oceanexpert.org/institution/20087 -https://www.oceanexpert.org/event/2764 -https://www.oceanexpert.org/expert/21222 -https://www.oceanexpert.org/expert/35604 -https://www.oceanexpert.org/expert/35644 -https://www.oceanexpert.org/expert/47104 -https://www.oceanexpert.org/expert/35126 -https://www.oceanexpert.org/institution/5358 -https://www.oceanexpert.org/institution/19706 -https://www.oceanexpert.org/expert/45778 -https://www.oceanexpert.org/expert/23381 -https://www.oceanexpert.org/expert/44224 -https://www.oceanexpert.org/expert/22730 -https://www.oceanexpert.org/expert/44481 -https://www.oceanexpert.org/expert/29580 -https://www.oceanexpert.org/expert/44391 -https://www.oceanexpert.org/expert/43867 -https://www.oceanexpert.org/expert/46451 -https://www.oceanexpert.org/institution/7430 -https://www.oceanexpert.org/expert/31879 -https://www.oceanexpert.org/institution/6676 -https://www.oceanexpert.org/expert/18147 -https://www.oceanexpert.org/event/2019 -https://www.oceanexpert.org/institution/20985 -https://www.oceanexpert.org/institution/15648 -https://www.oceanexpert.org/institution/15218 -https://www.oceanexpert.org/expert/29884 -https://www.oceanexpert.org/expert/14391 -https://www.oceanexpert.org/expert/18280 -https://www.oceanexpert.org/expert/25715 -https://www.oceanexpert.org/institution/14175 -https://www.oceanexpert.org/expert/28349 -https://www.oceanexpert.org/expert/26617 -https://www.oceanexpert.org/expert/26038 -https://www.oceanexpert.org/institution/8029 -https://www.oceanexpert.org/expert/24181 -https://www.oceanexpert.org/expert/44626 -https://www.oceanexpert.org/expert/21178 -https://www.oceanexpert.org/expert/37222 -https://www.oceanexpert.org/event/2340 -https://www.oceanexpert.org/expert/42699 -https://www.oceanexpert.org/event/2941 -https://www.oceanexpert.org/institution/20894 -https://www.oceanexpert.org/institution/13122 -https://www.oceanexpert.org/expert/1328 -https://www.oceanexpert.org/expert/21699 -https://www.oceanexpert.org/expert/15993 -https://www.oceanexpert.org/expert/48261 -https://www.oceanexpert.org/expert/14281 -https://www.oceanexpert.org/expert/19028 -https://www.oceanexpert.org/expert/22863 -https://www.oceanexpert.org/expert/37774 -https://www.oceanexpert.org/expert/13525 -https://www.oceanexpert.org/event/554 -https://www.oceanexpert.org/expert/39093 -https://www.oceanexpert.org/event/647 -https://www.oceanexpert.org/event/2224 -https://www.oceanexpert.org/institution/14733 -https://www.oceanexpert.org/expert/43152 -https://www.oceanexpert.org/expert/189 -https://www.oceanexpert.org/expert/42533 -https://www.oceanexpert.org/expert/38420 -https://www.oceanexpert.org/expert/35026 -https://www.oceanexpert.org/institution/13106 -https://www.oceanexpert.org/event/1494 -https://www.oceanexpert.org/institution/18907 -https://www.oceanexpert.org/expert/24025 -https://www.oceanexpert.org/expert/45928 -https://www.oceanexpert.org/institution/18146 -https://www.oceanexpert.org/event/1854 -https://www.oceanexpert.org/expert/17276 -https://www.oceanexpert.org/expert/17283 -https://www.oceanexpert.org/expert/22583 -https://www.oceanexpert.org/expert/20545 -https://www.oceanexpert.org/expert/17046 -https://www.oceanexpert.org/expert/25436 -https://www.oceanexpert.org/institution/20826 -https://www.oceanexpert.org/expert/22848 -https://www.oceanexpert.org/expert/19270 -https://www.oceanexpert.org/expert/43278 -https://www.oceanexpert.org/institution/19222 -https://www.oceanexpert.org/institution/5553 -https://www.oceanexpert.org/expert/45632 -https://www.oceanexpert.org/institution/18328 -https://www.oceanexpert.org/expert/42525 -https://www.oceanexpert.org/institution/7610 -https://www.oceanexpert.org/institution/21260 -https://www.oceanexpert.org/expert/3747 -https://www.oceanexpert.org/expert/6552 -https://www.oceanexpert.org/expert/24531 -https://www.oceanexpert.org/expert/18575 -https://www.oceanexpert.org/institution/14300 -https://www.oceanexpert.org/institution/7759 -https://www.oceanexpert.org/institution/10469 -https://www.oceanexpert.org/expert/16720 -https://www.oceanexpert.org/institution/21561 -https://www.oceanexpert.org/institution/16140 -https://www.oceanexpert.org/expert/19585 -https://www.oceanexpert.org/institution/16705 -https://www.oceanexpert.org/expert/18784 -https://www.oceanexpert.org/expert/46402 -https://www.oceanexpert.org/institution/15745 -https://www.oceanexpert.org/expert/27630 -https://www.oceanexpert.org/expert/45023 -https://www.oceanexpert.org/expert/16059 -https://www.oceanexpert.org/institution/15760 -https://www.oceanexpert.org/expert/45035 -https://www.oceanexpert.org/expert/25279 -https://www.oceanexpert.org/expert/48582 -https://www.oceanexpert.org/expert/47422 -https://www.oceanexpert.org/expert/28446 -https://www.oceanexpert.org/expert/31747 -https://www.oceanexpert.org/expert/20590 -https://www.oceanexpert.org/expert/29960 -https://www.oceanexpert.org/expert/28406 -https://www.oceanexpert.org/expert/8170 -https://www.oceanexpert.org/expert/38540 -https://www.oceanexpert.org/event/598 -https://www.oceanexpert.org/expert/37505 -https://www.oceanexpert.org/expert/18843 -https://www.oceanexpert.org/expert/43342 -https://www.oceanexpert.org/expert/39842 -https://www.oceanexpert.org/expert/17560 -https://www.oceanexpert.org/institution/18651 -https://www.oceanexpert.org/expert/9498 -https://www.oceanexpert.org/expert/36088 -https://www.oceanexpert.org/expert/30183 -https://www.oceanexpert.org/expert/39130 -https://www.oceanexpert.org/expert/10566 -https://www.oceanexpert.org/institution/15994 -https://www.oceanexpert.org/expert/27476 -https://www.oceanexpert.org/expert/3497 -https://www.oceanexpert.org/expert/39972 -https://www.oceanexpert.org/expert/22901 -https://www.oceanexpert.org/institution/10976 -https://www.oceanexpert.org/expert/25356 -https://www.oceanexpert.org/expert/25565 -https://www.oceanexpert.org/expert/24262 -https://www.oceanexpert.org/institution/11981 -https://www.oceanexpert.org/institution/22172 -https://www.oceanexpert.org/expert/30198 -https://www.oceanexpert.org/institution/21292 -https://www.oceanexpert.org/expert/44261 -https://www.oceanexpert.org/expert/37793 -https://www.oceanexpert.org/expert/36821 -https://www.oceanexpert.org/expert/32962 -https://www.oceanexpert.org/expert/47521 -https://www.oceanexpert.org/expert/23307 -https://www.oceanexpert.org/expert/45726 -https://www.oceanexpert.org/institution/12898 -https://www.oceanexpert.org/expert/31218 -https://www.oceanexpert.org/event/1430 -https://www.oceanexpert.org/expert/44848 -https://www.oceanexpert.org/expert/26202 -https://www.oceanexpert.org/expert/32362 -https://www.oceanexpert.org/expert/16080 -https://www.oceanexpert.org/expert/1572 -https://www.oceanexpert.org/event/2403 -https://www.oceanexpert.org/expert/46224 -https://www.oceanexpert.org/event/1204 -https://www.oceanexpert.org/expert/23517 -https://www.oceanexpert.org/institution/21475 -https://www.oceanexpert.org/expert/12698 -https://www.oceanexpert.org/expert/38382 -https://www.oceanexpert.org/event/736 -https://www.oceanexpert.org/event/1424 -https://www.oceanexpert.org/institution/12958 -https://www.oceanexpert.org/expert/43561 -https://www.oceanexpert.org/expert/22465 -https://www.oceanexpert.org/expert/44976 -https://www.oceanexpert.org/expert/13369 -https://www.oceanexpert.org/expert/27293 -https://www.oceanexpert.org/expert/2071 -https://www.oceanexpert.org/expert/46285 -https://www.oceanexpert.org/institution/21729 -https://www.oceanexpert.org/expert/46334 -https://www.oceanexpert.org/expert/42096 -https://www.oceanexpert.org/expert/32430 -https://www.oceanexpert.org/institution/18945 -https://www.oceanexpert.org/institution/18134 -https://www.oceanexpert.org/expert/25319 -https://www.oceanexpert.org/expert/47969 -https://www.oceanexpert.org/event/818 -https://www.oceanexpert.org/expert/19285 -https://www.oceanexpert.org/institution/18435 -https://www.oceanexpert.org/expert/3095 -https://www.oceanexpert.org/expert/21784 -https://www.oceanexpert.org/expert/29201 -https://www.oceanexpert.org/expert/19735 -https://www.oceanexpert.org/expert/34291 -https://www.oceanexpert.org/event/246 -https://www.oceanexpert.org/expert/24040 -https://www.oceanexpert.org/expert/38360 -https://www.oceanexpert.org/expert/38587 -https://www.oceanexpert.org/expert/21976 -https://www.oceanexpert.org/institution/11321 -https://www.oceanexpert.org/institution/17668 -https://www.oceanexpert.org/expert/35092 -https://www.oceanexpert.org/expert/22733 -https://www.oceanexpert.org/expert/21023 -https://www.oceanexpert.org/event/281 -https://www.oceanexpert.org/expert/28210 -https://www.oceanexpert.org/event/1015 -https://www.oceanexpert.org/expert/25858 -https://www.oceanexpert.org/institution/19593 -https://www.oceanexpert.org/event/1754 -https://www.oceanexpert.org/expert/2613 -https://www.oceanexpert.org/expert/37709 -https://www.oceanexpert.org/expert/19996 -https://www.oceanexpert.org/institution/20160 -https://www.oceanexpert.org/expert/16770 -https://www.oceanexpert.org/event/2673 -https://www.oceanexpert.org/institution/19126 -https://www.oceanexpert.org/expert/23822 -https://www.oceanexpert.org/expert/29627 -https://www.oceanexpert.org/institution/16231 -https://www.oceanexpert.org/event/380 -https://www.oceanexpert.org/expert/35179 -https://www.oceanexpert.org/expert/42850 -https://www.oceanexpert.org/expert/31376 -https://www.oceanexpert.org/expert/21870 -https://www.oceanexpert.org/expert/36927 -https://www.oceanexpert.org/institution/8031 -https://www.oceanexpert.org/expert/29426 -https://www.oceanexpert.org/expert/24593 -https://www.oceanexpert.org/expert/16990 -https://www.oceanexpert.org/expert/47008 -https://www.oceanexpert.org/expert/47012 -https://www.oceanexpert.org/expert/36750 -https://www.oceanexpert.org/expert/46373 -https://www.oceanexpert.org/expert/21324 -https://www.oceanexpert.org/expert/39577 -https://www.oceanexpert.org/expert/25967 -https://www.oceanexpert.org/expert/7204 -https://www.oceanexpert.org/institution/5193 -https://www.oceanexpert.org/expert/34712 -https://www.oceanexpert.org/expert/25174 -https://www.oceanexpert.org/expert/33064 -https://www.oceanexpert.org/expert/25388 -https://www.oceanexpert.org/expert/23524 -https://www.oceanexpert.org/expert/17303 -https://www.oceanexpert.org/expert/45760 -https://www.oceanexpert.org/expert/44214 -https://www.oceanexpert.org/event/1543 -https://www.oceanexpert.org/institution/21287 -https://www.oceanexpert.org/expert/12157 -https://www.oceanexpert.org/institution/16337 -https://www.oceanexpert.org/institution/16317 -https://www.oceanexpert.org/expert/40482 -https://www.oceanexpert.org/expert/20063 -https://www.oceanexpert.org/institution/18299 -https://www.oceanexpert.org/expert/20039 -https://www.oceanexpert.org/expert/22414 -https://www.oceanexpert.org/event/1823 -https://www.oceanexpert.org/institution/20850 -https://www.oceanexpert.org/expert/27710 -https://www.oceanexpert.org/institution/11688 -https://www.oceanexpert.org/institution/19840 -https://www.oceanexpert.org/expert/43583 -https://www.oceanexpert.org/institution/10278 -https://www.oceanexpert.org/expert/36874 -https://www.oceanexpert.org/expert/44789 -https://www.oceanexpert.org/event/392 -https://www.oceanexpert.org/event/2427 -https://www.oceanexpert.org/expert/43400 -https://www.oceanexpert.org/expert/44493 -https://www.oceanexpert.org/institution/21843 -https://www.oceanexpert.org/expert/38046 -https://www.oceanexpert.org/expert/21610 -https://www.oceanexpert.org/expert/6462 -https://www.oceanexpert.org/expert/36729 -https://www.oceanexpert.org/institution/11252 -https://www.oceanexpert.org/event/725 -https://www.oceanexpert.org/event/1082 -https://www.oceanexpert.org/expert/9582 -https://www.oceanexpert.org/event/3265 -https://www.oceanexpert.org/expert/22870 -https://www.oceanexpert.org/expert/30228 -https://www.oceanexpert.org/institution/22164 -https://www.oceanexpert.org/expert/22725 -https://www.oceanexpert.org/expert/44135 -https://www.oceanexpert.org/expert/32951 -https://www.oceanexpert.org/expert/29686 -https://www.oceanexpert.org/expert/24848 -https://www.oceanexpert.org/institution/20180 -https://www.oceanexpert.org/institution/18599 -https://www.oceanexpert.org/expert/44869 -https://www.oceanexpert.org/institution/14411 -https://www.oceanexpert.org/institution/18566 -https://www.oceanexpert.org/institution/16355 -https://www.oceanexpert.org/expert/20688 -https://www.oceanexpert.org/expert/22888 -https://www.oceanexpert.org/expert/19633 -https://www.oceanexpert.org/expert/32174 -https://www.oceanexpert.org/expert/45475 -https://www.oceanexpert.org/expert/2177 -https://www.oceanexpert.org/institution/11679 -https://www.oceanexpert.org/expert/47179 -https://www.oceanexpert.org/expert/26528 -https://www.oceanexpert.org/expert/35983 -https://www.oceanexpert.org/expert/35925 -https://www.oceanexpert.org/expert/19738 -https://www.oceanexpert.org/institution/17008 -https://www.oceanexpert.org/expert/18319 -https://www.oceanexpert.org/event/3077 -https://www.oceanexpert.org/institution/14306 -https://www.oceanexpert.org/event/3092 -https://www.oceanexpert.org/expert/22790 -https://www.oceanexpert.org/expert/30105 -https://www.oceanexpert.org/expert/23863 -https://www.oceanexpert.org/expert/12752 -https://www.oceanexpert.org/expert/18820 -https://www.oceanexpert.org/institution/15569 -https://www.oceanexpert.org/expert/29698 -https://www.oceanexpert.org/expert/30577 -https://www.oceanexpert.org/institution/21974 -https://www.oceanexpert.org/event/1331 -https://www.oceanexpert.org/institution/15872 -https://www.oceanexpert.org/expert/17163 -https://www.oceanexpert.org/expert/2090 -https://www.oceanexpert.org/expert/26555 -https://www.oceanexpert.org/expert/14094 -https://www.oceanexpert.org/expert/21978 -https://www.oceanexpert.org/expert/37997 -https://www.oceanexpert.org/expert/26565 -https://www.oceanexpert.org/expert/21092 -https://www.oceanexpert.org/expert/45432 -https://www.oceanexpert.org/expert/17928 -https://www.oceanexpert.org/expert/30893 -https://www.oceanexpert.org/expert/15286 -https://www.oceanexpert.org/expert/30206 -https://www.oceanexpert.org/expert/46226 -https://www.oceanexpert.org/expert/23318 -https://www.oceanexpert.org/expert/2129 -https://www.oceanexpert.org/expert/48595 -https://www.oceanexpert.org/expert/46715 -https://www.oceanexpert.org/expert/37438 -https://www.oceanexpert.org/expert/37220 -https://www.oceanexpert.org/institution/18650 -https://www.oceanexpert.org/expert/31592 -https://www.oceanexpert.org/institution/11253 -https://www.oceanexpert.org/expert/47050 -https://www.oceanexpert.org/expert/23203 -https://www.oceanexpert.org/institution/9124 -https://www.oceanexpert.org/expert/6821 -https://www.oceanexpert.org/expert/21035 -https://www.oceanexpert.org/expert/32398 -https://www.oceanexpert.org/expert/11711 -https://www.oceanexpert.org/institution/12736 -https://www.oceanexpert.org/institution/13200 -https://www.oceanexpert.org/institution/21937 -https://www.oceanexpert.org/expert/45866 -https://www.oceanexpert.org/expert/29145 -https://www.oceanexpert.org/expert/20332 -https://www.oceanexpert.org/expert/45684 -https://www.oceanexpert.org/expert/43261 -https://www.oceanexpert.org/expert/38053 -https://www.oceanexpert.org/expert/35201 -https://www.oceanexpert.org/institution/18785 -https://www.oceanexpert.org/expert/22818 -https://www.oceanexpert.org/institution/17695 -https://www.oceanexpert.org/expert/38281 -https://www.oceanexpert.org/institution/20779 -https://www.oceanexpert.org/expert/10325 -https://www.oceanexpert.org/expert/41547 -https://www.oceanexpert.org/expert/37338 -https://www.oceanexpert.org/expert/48563 -https://www.oceanexpert.org/expert/47043 -https://www.oceanexpert.org/expert/17442 -https://www.oceanexpert.org/expert/16718 -https://www.oceanexpert.org/expert/45142 -https://www.oceanexpert.org/expert/32783 -https://www.oceanexpert.org/expert/9162 -https://www.oceanexpert.org/expert/17413 -https://www.oceanexpert.org/expert/13883 -https://www.oceanexpert.org/institution/15751 -https://www.oceanexpert.org/expert/23869 -https://www.oceanexpert.org/event/716 -https://www.oceanexpert.org/institution/21773 -https://www.oceanexpert.org/event/1757 -https://www.oceanexpert.org/expert/25527 -https://www.oceanexpert.org/institution/12070 -https://www.oceanexpert.org/expert/44728 -https://www.oceanexpert.org/expert/41325 -https://www.oceanexpert.org/institution/15432 -https://www.oceanexpert.org/expert/19195 -https://www.oceanexpert.org/expert/44854 -https://www.oceanexpert.org/institution/13550 -https://www.oceanexpert.org/institution/12683 -https://www.oceanexpert.org/expert/23221 -https://www.oceanexpert.org/expert/37647 -https://www.oceanexpert.org/institution/15936 -https://www.oceanexpert.org/event/1143 -https://www.oceanexpert.org/expert/49027 -https://www.oceanexpert.org/institution/15543 -https://www.oceanexpert.org/expert/33466 -https://www.oceanexpert.org/expert/37890 -https://www.oceanexpert.org/event/564 -https://www.oceanexpert.org/expert/20473 -https://www.oceanexpert.org/expert/25334 -https://www.oceanexpert.org/institution/13766 -https://www.oceanexpert.org/expert/38221 -https://www.oceanexpert.org/institution/20761 -https://www.oceanexpert.org/expert/1259 -https://www.oceanexpert.org/expert/43932 -https://www.oceanexpert.org/expert/35306 -https://www.oceanexpert.org/expert/43217 -https://www.oceanexpert.org/institution/9358 -https://www.oceanexpert.org/expert/34480 -https://www.oceanexpert.org/expert/45927 -https://www.oceanexpert.org/expert/37030 -https://www.oceanexpert.org/expert/16988 -https://www.oceanexpert.org/institution/17079 -https://www.oceanexpert.org/expert/26677 -https://www.oceanexpert.org/expert/47097 -https://www.oceanexpert.org/expert/43375 -https://www.oceanexpert.org/institution/17689 -https://www.oceanexpert.org/expert/25290 -https://www.oceanexpert.org/expert/28493 -https://www.oceanexpert.org/expert/14875 -https://www.oceanexpert.org/expert/33503 -https://www.oceanexpert.org/expert/32284 -https://www.oceanexpert.org/event/687 -https://www.oceanexpert.org/expert/43522 -https://www.oceanexpert.org/expert/18435 -https://www.oceanexpert.org/expert/27486 -https://www.oceanexpert.org/expert/46604 -https://www.oceanexpert.org/expert/18838 -https://www.oceanexpert.org/event/2725 -https://www.oceanexpert.org/expert/22116 -https://www.oceanexpert.org/expert/38915 -https://www.oceanexpert.org/expert/36605 -https://www.oceanexpert.org/institution/18467 -https://www.oceanexpert.org/expert/24226 -https://www.oceanexpert.org/institution/19348 -https://www.oceanexpert.org/expert/26711 -https://www.oceanexpert.org/expert/27946 -https://www.oceanexpert.org/expert/26684 -https://www.oceanexpert.org/expert/17231 -https://www.oceanexpert.org/expert/40609 -https://www.oceanexpert.org/event/425 -https://www.oceanexpert.org/expert/20237 -https://www.oceanexpert.org/expert/16120 -https://www.oceanexpert.org/expert/17230 -https://www.oceanexpert.org/expert/20089 -https://www.oceanexpert.org/expert/46204 -https://www.oceanexpert.org/event/1747 -https://www.oceanexpert.org/expert/24134 -https://www.oceanexpert.org/expert/12080 -https://www.oceanexpert.org/expert/29054 -https://www.oceanexpert.org/expert/20474 -https://www.oceanexpert.org/institution/17245 -https://www.oceanexpert.org/expert/35211 -https://www.oceanexpert.org/institution/6636 -https://www.oceanexpert.org/expert/42717 -https://www.oceanexpert.org/institution/20058 -https://www.oceanexpert.org/expert/17617 -https://www.oceanexpert.org/institution/18888 -https://www.oceanexpert.org/event/1211 -https://www.oceanexpert.org/institution/18880 -https://www.oceanexpert.org/expert/47874 -https://www.oceanexpert.org/expert/25012 -https://www.oceanexpert.org/expert/29370 -https://www.oceanexpert.org/institution/21543 -https://www.oceanexpert.org/expert/45744 -https://www.oceanexpert.org/expert/24882 -https://www.oceanexpert.org/expert/24153 -https://www.oceanexpert.org/institution/16731 -https://www.oceanexpert.org/expert/25029 -https://www.oceanexpert.org/expert/22095 -https://www.oceanexpert.org/institution/6169 -https://www.oceanexpert.org/expert/16325 -https://www.oceanexpert.org/expert/38420 -https://www.oceanexpert.org/expert/38532 -https://www.oceanexpert.org/institution/14041 -https://www.oceanexpert.org/institution/20825 -https://www.oceanexpert.org/institution/6535 -https://www.oceanexpert.org/expert/45631 -https://www.oceanexpert.org/expert/12986 -https://www.oceanexpert.org/institution/15660 -https://www.oceanexpert.org/expert/43245 -https://www.oceanexpert.org/institution/14384 -https://www.oceanexpert.org/expert/38010 -https://www.oceanexpert.org/expert/13733 -https://www.oceanexpert.org/expert/43841 -https://www.oceanexpert.org/expert/36874 -https://www.oceanexpert.org/expert/16193 -https://www.oceanexpert.org/expert/28384 -https://www.oceanexpert.org/expert/42619 -https://www.oceanexpert.org/expert/35962 -https://www.oceanexpert.org/event/2511 -https://www.oceanexpert.org/expert/45921 -https://www.oceanexpert.org/event/1954 -https://www.oceanexpert.org/institution/17895 -https://www.oceanexpert.org/expert/6348 -https://www.oceanexpert.org/institution/20054 -https://www.oceanexpert.org/institution/16379 -https://www.oceanexpert.org/institution/14258 -https://www.oceanexpert.org/institution/12713 -https://www.oceanexpert.org/expert/20056 -https://www.oceanexpert.org/expert/26562 -https://www.oceanexpert.org/expert/36893 -https://www.oceanexpert.org/event/87 -https://www.oceanexpert.org/expert/20995 -https://www.oceanexpert.org/institution/19657 -https://www.oceanexpert.org/expert/42426 -https://www.oceanexpert.org/expert/14292 -https://www.oceanexpert.org/expert/8460 -https://www.oceanexpert.org/institution/22097 -https://www.oceanexpert.org/expert/36868 -https://www.oceanexpert.org/institution/10928 -https://www.oceanexpert.org/expert/25395 -https://www.oceanexpert.org/event/362 -https://www.oceanexpert.org/expert/28873 -https://www.oceanexpert.org/institution/21181 -https://www.oceanexpert.org/expert/38295 -https://www.oceanexpert.org/event/410 -https://www.oceanexpert.org/event/1939 -https://www.oceanexpert.org/event/2216 -https://www.oceanexpert.org/expert/45692 -https://www.oceanexpert.org/institution/20677 -https://www.oceanexpert.org/expert/42785 -https://www.oceanexpert.org/expert/18533 -https://www.oceanexpert.org/expert/31664 -https://www.oceanexpert.org/expert/21059 -https://www.oceanexpert.org/expert/27244 -https://www.oceanexpert.org/event/2907 -https://www.oceanexpert.org/event/949 -https://www.oceanexpert.org/expert/46187 -https://www.oceanexpert.org/expert/43825 -https://www.oceanexpert.org/expert/7141 -https://www.oceanexpert.org/expert/531 -https://www.oceanexpert.org/expert/25432 -https://www.oceanexpert.org/expert/47732 -https://www.oceanexpert.org/expert/36428 -https://www.oceanexpert.org/expert/40218 -https://www.oceanexpert.org/expert/21224 -https://www.oceanexpert.org/expert/24039 -https://www.oceanexpert.org/event/2091 -https://www.oceanexpert.org/institution/6096 -https://www.oceanexpert.org/expert/31063 -https://www.oceanexpert.org/expert/45501 -https://www.oceanexpert.org/expert/22146 -https://www.oceanexpert.org/expert/19820 -https://www.oceanexpert.org/institution/20492 -https://www.oceanexpert.org/expert/44359 -https://www.oceanexpert.org/expert/20248 -https://www.oceanexpert.org/event/1426 -https://www.oceanexpert.org/expert/20092 -https://www.oceanexpert.org/institution/19203 -https://www.oceanexpert.org/expert/30251 -https://www.oceanexpert.org/expert/12264 -https://www.oceanexpert.org/expert/14453 -https://www.oceanexpert.org/event/2931 -https://www.oceanexpert.org/expert/7830 -https://www.oceanexpert.org/expert/31262 -https://www.oceanexpert.org/expert/42424 -https://www.oceanexpert.org/institution/10355 -https://www.oceanexpert.org/expert/14120 -https://www.oceanexpert.org/event/355 -https://www.oceanexpert.org/event/660 -https://www.oceanexpert.org/expert/39033 -https://www.oceanexpert.org/event/2509 -https://www.oceanexpert.org/institution/6463 -https://www.oceanexpert.org/event/622 -https://www.oceanexpert.org/institution/21647 -https://www.oceanexpert.org/expert/37571 -https://www.oceanexpert.org/event/2283 -https://www.oceanexpert.org/institution/17232 -https://www.oceanexpert.org/expert/26470 -https://www.oceanexpert.org/institution/7629 -https://www.oceanexpert.org/expert/48284 -https://www.oceanexpert.org/institution/22164 -https://www.oceanexpert.org/institution/5111 -https://www.oceanexpert.org/expert/18708 -https://www.oceanexpert.org/expert/14049 -https://www.oceanexpert.org/expert/44099 -https://www.oceanexpert.org/institution/21636 -https://www.oceanexpert.org/expert/22748 -https://www.oceanexpert.org/expert/76 -https://www.oceanexpert.org/expert/24420 -https://www.oceanexpert.org/expert/32752 -https://www.oceanexpert.org/expert/27662 -https://www.oceanexpert.org/expert/46922 -https://www.oceanexpert.org/expert/47119 -https://www.oceanexpert.org/expert/23045 -https://www.oceanexpert.org/institution/17738 -https://www.oceanexpert.org/institution/9162 -https://www.oceanexpert.org/expert/32736 -https://www.oceanexpert.org/institution/20572 -https://www.oceanexpert.org/expert/27723 -https://www.oceanexpert.org/event/2975 -https://www.oceanexpert.org/institution/19059 -https://www.oceanexpert.org/expert/17053 -https://www.oceanexpert.org/expert/11390 -https://www.oceanexpert.org/expert/31672 -https://www.oceanexpert.org/expert/9619 -https://www.oceanexpert.org/institution/20989 -https://www.oceanexpert.org/institution/16240 -https://www.oceanexpert.org/expert/34947 -https://www.oceanexpert.org/expert/27992 -https://www.oceanexpert.org/expert/24433 -https://www.oceanexpert.org/expert/29719 -https://www.oceanexpert.org/institution/10189 -https://www.oceanexpert.org/expert/18585 -https://www.oceanexpert.org/expert/21190 -https://www.oceanexpert.org/institution/11009 -https://www.oceanexpert.org/event/2151 -https://www.oceanexpert.org/expert/20119 -https://www.oceanexpert.org/institution/15381 -https://www.oceanexpert.org/expert/20332 -https://www.oceanexpert.org/institution/21982 -https://www.oceanexpert.org/expert/39753 -https://www.oceanexpert.org/expert/19514 -https://www.oceanexpert.org/expert/27091 -https://www.oceanexpert.org/event/1257 -https://www.oceanexpert.org/expert/43304 -https://www.oceanexpert.org/institution/14094 -https://www.oceanexpert.org/expert/30235 -https://www.oceanexpert.org/expert/38641 -https://www.oceanexpert.org/expert/36170 -https://www.oceanexpert.org/expert/42495 -https://www.oceanexpert.org/expert/44163 -https://www.oceanexpert.org/expert/7822 -https://www.oceanexpert.org/expert/224 -https://www.oceanexpert.org/institution/21780 -https://www.oceanexpert.org/expert/40121 -https://www.oceanexpert.org/expert/23863 -https://www.oceanexpert.org/expert/46657 -https://www.oceanexpert.org/institution/19628 -https://www.oceanexpert.org/expert/42933 -https://www.oceanexpert.org/expert/18750 -https://www.oceanexpert.org/expert/12150 -https://www.oceanexpert.org/expert/7147 -https://www.oceanexpert.org/institution/20267 -https://www.oceanexpert.org/expert/24959 -https://www.oceanexpert.org/expert/32150 -https://www.oceanexpert.org/expert/37485 -https://www.oceanexpert.org/expert/24878 -https://www.oceanexpert.org/expert/37912 -https://www.oceanexpert.org/expert/21203 -https://www.oceanexpert.org/expert/18762 -https://www.oceanexpert.org/expert/25104 -https://www.oceanexpert.org/expert/47898 -https://www.oceanexpert.org/event/2827 -https://www.oceanexpert.org/event/1521 -https://www.oceanexpert.org/institution/18331 -https://www.oceanexpert.org/expert/36443 -https://www.oceanexpert.org/institution/15889 -https://www.oceanexpert.org/expert/32612 -https://www.oceanexpert.org/expert/19961 -https://www.oceanexpert.org/institution/13619 -https://www.oceanexpert.org/expert/22936 -https://www.oceanexpert.org/institution/11461 -https://www.oceanexpert.org/expert/15379 -https://www.oceanexpert.org/expert/27239 -https://www.oceanexpert.org/institution/18986 -https://www.oceanexpert.org/institution/17267 -https://www.oceanexpert.org/expert/17339 -https://www.oceanexpert.org/expert/22053 -https://www.oceanexpert.org/event/1849 -https://www.oceanexpert.org/expert/25338 -https://www.oceanexpert.org/expert/37858 -https://www.oceanexpert.org/institution/12134 -https://www.oceanexpert.org/expert/12325 -https://www.oceanexpert.org/institution/8724 -https://www.oceanexpert.org/expert/13700 -https://www.oceanexpert.org/expert/24778 -https://www.oceanexpert.org/expert/19935 -https://www.oceanexpert.org/expert/23982 -https://www.oceanexpert.org/expert/1050 -https://www.oceanexpert.org/expert/23301 -https://www.oceanexpert.org/expert/32445 -https://www.oceanexpert.org/expert/35570 -https://www.oceanexpert.org/expert/21623 -https://www.oceanexpert.org/expert/32351 -https://www.oceanexpert.org/expert/24091 -https://www.oceanexpert.org/event/423 -https://www.oceanexpert.org/institution/15250 -https://www.oceanexpert.org/event/130 -https://www.oceanexpert.org/event/2655 -https://www.oceanexpert.org/expert/34821 -https://www.oceanexpert.org/event/1040 -https://www.oceanexpert.org/expert/22783 -https://www.oceanexpert.org/expert/47774 -https://www.oceanexpert.org/expert/23796 -https://www.oceanexpert.org/event/1398 -https://www.oceanexpert.org/expert/42493 -https://www.oceanexpert.org/expert/25111 -https://www.oceanexpert.org/event/1672 -https://www.oceanexpert.org/expert/11947 -https://www.oceanexpert.org/expert/11840 -https://www.oceanexpert.org/institution/6271 -https://www.oceanexpert.org/institution/21078 -https://www.oceanexpert.org/expert/22220 -https://www.oceanexpert.org/expert/17836 -https://www.oceanexpert.org/event/829 -https://www.oceanexpert.org/expert/42399 -https://www.oceanexpert.org/expert/45643 -https://www.oceanexpert.org/expert/46197 -https://www.oceanexpert.org/event/2208 -https://www.oceanexpert.org/expert/31220 -https://www.oceanexpert.org/expert/43283 -https://www.oceanexpert.org/expert/18493 -https://www.oceanexpert.org/expert/44308 -https://www.oceanexpert.org/expert/26884 -https://www.oceanexpert.org/expert/23694 -https://www.oceanexpert.org/expert/38605 -https://www.oceanexpert.org/institution/14258 -https://www.oceanexpert.org/expert/25675 -https://www.oceanexpert.org/expert/30038 -https://www.oceanexpert.org/expert/32715 -https://www.oceanexpert.org/institution/13429 -https://www.oceanexpert.org/event/2024 -https://www.oceanexpert.org/expert/40605 -https://www.oceanexpert.org/expert/38007 -https://www.oceanexpert.org/institution/18716 -https://www.oceanexpert.org/expert/22797 -https://www.oceanexpert.org/expert/37647 -https://www.oceanexpert.org/expert/4574 -https://www.oceanexpert.org/expert/28387 -https://www.oceanexpert.org/institution/7825 -https://www.oceanexpert.org/expert/43903 -https://www.oceanexpert.org/expert/18861 -https://www.oceanexpert.org/expert/22845 -https://www.oceanexpert.org/expert/41577 -https://www.oceanexpert.org/expert/47759 -https://www.oceanexpert.org/institution/11590 -https://www.oceanexpert.org/expert/22422 -https://www.oceanexpert.org/expert/25477 -https://www.oceanexpert.org/expert/34155 -https://www.oceanexpert.org/expert/2158 -https://www.oceanexpert.org/expert/29133 -https://www.oceanexpert.org/expert/9039 -https://www.oceanexpert.org/institution/16780 -https://www.oceanexpert.org/expert/43742 -https://www.oceanexpert.org/expert/45031 -https://www.oceanexpert.org/expert/40257 -https://www.oceanexpert.org/expert/37414 -https://www.oceanexpert.org/event/1265 -https://www.oceanexpert.org/expert/14566 -https://www.oceanexpert.org/institution/20126 -https://www.oceanexpert.org/expert/23541 -https://www.oceanexpert.org/institution/18265 -https://www.oceanexpert.org/expert/46913 -https://www.oceanexpert.org/event/835 -https://www.oceanexpert.org/expert/44944 -https://www.oceanexpert.org/expert/43725 -https://www.oceanexpert.org/expert/33371 -https://www.oceanexpert.org/expert/38882 -https://www.oceanexpert.org/expert/39606 -https://www.oceanexpert.org/expert/25750 -https://www.oceanexpert.org/institution/15894 -https://www.oceanexpert.org/institution/11896 -https://www.oceanexpert.org/expert/26821 -https://www.oceanexpert.org/expert/42786 -https://www.oceanexpert.org/event/1853 -https://www.oceanexpert.org/expert/20345 -https://www.oceanexpert.org/event/1051 -https://www.oceanexpert.org/expert/46765 -https://www.oceanexpert.org/expert/20457 -https://www.oceanexpert.org/expert/48119 -https://www.oceanexpert.org/institution/8344 -https://www.oceanexpert.org/expert/44859 -https://www.oceanexpert.org/institution/18176 -https://www.oceanexpert.org/expert/3794 -https://www.oceanexpert.org/institution/21863 -https://www.oceanexpert.org/event/534 -https://www.oceanexpert.org/expert/46866 -https://www.oceanexpert.org/expert/20707 -https://www.oceanexpert.org/institution/4930 -https://www.oceanexpert.org/expert/24059 -https://www.oceanexpert.org/expert/25583 -https://www.oceanexpert.org/institution/17540 -https://www.oceanexpert.org/expert/48634 -https://www.oceanexpert.org/expert/34707 -https://www.oceanexpert.org/expert/24545 -https://www.oceanexpert.org/institution/22103 -https://www.oceanexpert.org/expert/26703 -https://www.oceanexpert.org/expert/26407 -https://www.oceanexpert.org/institution/5097 -https://www.oceanexpert.org/expert/20361 -https://www.oceanexpert.org/expert/32818 -https://www.oceanexpert.org/expert/47503 -https://www.oceanexpert.org/expert/25475 -https://www.oceanexpert.org/expert/48691 -https://www.oceanexpert.org/expert/27099 -https://www.oceanexpert.org/expert/30892 -https://www.oceanexpert.org/expert/36220 -https://www.oceanexpert.org/expert/35687 -https://www.oceanexpert.org/expert/18636 -https://www.oceanexpert.org/institution/7528 -https://www.oceanexpert.org/expert/22332 -https://www.oceanexpert.org/event/1570 -https://www.oceanexpert.org/expert/22682 -https://www.oceanexpert.org/expert/45059 -https://www.oceanexpert.org/expert/20583 -https://www.oceanexpert.org/expert/36669 -https://www.oceanexpert.org/event/870 -https://www.oceanexpert.org/institution/18662 -https://www.oceanexpert.org/event/731 -https://www.oceanexpert.org/institution/21563 -https://www.oceanexpert.org/expert/38283 -https://www.oceanexpert.org/expert/25101 -https://www.oceanexpert.org/institution/13297 -https://www.oceanexpert.org/expert/25508 -https://www.oceanexpert.org/event/1082 -https://www.oceanexpert.org/expert/36325 -https://www.oceanexpert.org/expert/21896 -https://www.oceanexpert.org/institution/15887 -https://www.oceanexpert.org/expert/23006 -https://www.oceanexpert.org/institution/18358 -https://www.oceanexpert.org/expert/16306 -https://www.oceanexpert.org/institution/18398 -https://www.oceanexpert.org/expert/12502 -https://www.oceanexpert.org/expert/33782 -https://www.oceanexpert.org/expert/25770 -https://www.oceanexpert.org/event/1049 -https://www.oceanexpert.org/expert/47670 -https://www.oceanexpert.org/expert/15925 -https://www.oceanexpert.org/expert/871 -https://www.oceanexpert.org/institution/21938 -https://www.oceanexpert.org/expert/36139 -https://www.oceanexpert.org/expert/36727 -https://www.oceanexpert.org/expert/21620 -https://www.oceanexpert.org/expert/329 -https://www.oceanexpert.org/institution/14146 -https://www.oceanexpert.org/expert/40297 -https://www.oceanexpert.org/expert/11489 -https://www.oceanexpert.org/expert/20569 -https://www.oceanexpert.org/institution/19100 -https://www.oceanexpert.org/expert/27111 -https://www.oceanexpert.org/institution/18027 -https://www.oceanexpert.org/expert/38984 -https://www.oceanexpert.org/expert/22042 -https://www.oceanexpert.org/expert/20930 -https://www.oceanexpert.org/expert/39960 -https://www.oceanexpert.org/expert/2352 -https://www.oceanexpert.org/expert/25095 -https://www.oceanexpert.org/institution/17456 -https://www.oceanexpert.org/expert/33748 -https://www.oceanexpert.org/expert/45707 -https://www.oceanexpert.org/event/1949 -https://www.oceanexpert.org/event/2667 -https://www.oceanexpert.org/expert/19523 -https://www.oceanexpert.org/expert/47229 -https://www.oceanexpert.org/expert/24652 -https://www.oceanexpert.org/expert/8102 -https://www.oceanexpert.org/expert/27267 -https://www.oceanexpert.org/expert/47255 -https://www.oceanexpert.org/institution/19428 -https://www.oceanexpert.org/expert/46161 -https://www.oceanexpert.org/expert/2201 -https://www.oceanexpert.org/expert/45090 -https://www.oceanexpert.org/expert/47469 -https://www.oceanexpert.org/expert/48055 -https://www.oceanexpert.org/expert/21892 -https://www.oceanexpert.org/expert/20021 -https://www.oceanexpert.org/event/1354 -https://www.oceanexpert.org/expert/27580 -https://www.oceanexpert.org/event/2372 -https://www.oceanexpert.org/expert/13027 -https://www.oceanexpert.org/expert/18905 -https://www.oceanexpert.org/expert/35424 -https://www.oceanexpert.org/expert/44547 -https://www.oceanexpert.org/institution/17437 -https://www.oceanexpert.org/expert/48322 -https://www.oceanexpert.org/event/377 -https://www.oceanexpert.org/expert/32588 -https://www.oceanexpert.org/expert/48590 -https://www.oceanexpert.org/event/2809 -https://www.oceanexpert.org/institution/10716 -https://www.oceanexpert.org/expert/16266 -https://www.oceanexpert.org/institution/19333 -https://www.oceanexpert.org/expert/45540 -https://www.oceanexpert.org/institution/21092 -https://www.oceanexpert.org/institution/11782 -https://www.oceanexpert.org/event/1547 -https://www.oceanexpert.org/institution/12993 -https://www.oceanexpert.org/expert/36001 -https://www.oceanexpert.org/institution/15061 -https://www.oceanexpert.org/expert/32847 -https://www.oceanexpert.org/institution/5070 -https://www.oceanexpert.org/expert/17155 -https://www.oceanexpert.org/expert/31810 -https://www.oceanexpert.org/expert/47502 -https://www.oceanexpert.org/expert/31665 -https://www.oceanexpert.org/expert/19780 -https://www.oceanexpert.org/institution/16313 -https://www.oceanexpert.org/event/1328 -https://www.oceanexpert.org/expert/2362 -https://www.oceanexpert.org/expert/40874 -https://www.oceanexpert.org/institution/18653 -https://www.oceanexpert.org/expert/43929 -https://www.oceanexpert.org/expert/28467 -https://www.oceanexpert.org/expert/16547 -https://www.oceanexpert.org/institution/20120 -https://www.oceanexpert.org/expert/31597 -https://www.oceanexpert.org/event/2544 -https://www.oceanexpert.org/expert/10646 -https://www.oceanexpert.org/expert/18988 -https://www.oceanexpert.org/event/601 -https://www.oceanexpert.org/institution/15915 -https://www.oceanexpert.org/expert/44840 -https://www.oceanexpert.org/institution/21288 -https://www.oceanexpert.org/institution/16481 -https://www.oceanexpert.org/expert/45934 -https://www.oceanexpert.org/expert/28378 -https://www.oceanexpert.org/expert/13215 -https://www.oceanexpert.org/expert/4628 -https://www.oceanexpert.org/event/522 -https://www.oceanexpert.org/expert/25117 -https://www.oceanexpert.org/institution/20721 -https://www.oceanexpert.org/expert/26879 -https://www.oceanexpert.org/expert/22732 -https://www.oceanexpert.org/expert/12253 -https://www.oceanexpert.org/expert/14674 -https://www.oceanexpert.org/institution/19609 -https://www.oceanexpert.org/expert/24860 -https://www.oceanexpert.org/expert/46602 -https://www.oceanexpert.org/institution/10049 -https://www.oceanexpert.org/expert/21214 -https://www.oceanexpert.org/expert/49055 -https://www.oceanexpert.org/expert/29951 -https://www.oceanexpert.org/institution/16256 -https://www.oceanexpert.org/expert/42810 -https://www.oceanexpert.org/institution/11700 -https://www.oceanexpert.org/expert/29739 -https://www.oceanexpert.org/expert/47492 -https://www.oceanexpert.org/expert/43684 -https://www.oceanexpert.org/expert/36822 -https://www.oceanexpert.org/institution/6196 -https://www.oceanexpert.org/event/1729 -https://www.oceanexpert.org/expert/47428 -https://www.oceanexpert.org/expert/37916 -https://www.oceanexpert.org/expert/23239 -https://www.oceanexpert.org/event/1229 -https://www.oceanexpert.org/institution/17314 -https://www.oceanexpert.org/expert/37245 -https://www.oceanexpert.org/event/2606 -https://www.oceanexpert.org/expert/44212 -https://www.oceanexpert.org/institution/16295 -https://www.oceanexpert.org/expert/25358 -https://www.oceanexpert.org/expert/23004 -https://www.oceanexpert.org/expert/24020 -https://www.oceanexpert.org/institution/17124 -https://www.oceanexpert.org/event/392 -https://www.oceanexpert.org/institution/18626 -https://www.oceanexpert.org/expert/34058 -https://www.oceanexpert.org/institution/12998 -https://www.oceanexpert.org/event/1508 -https://www.oceanexpert.org/expert/27033 -https://www.oceanexpert.org/expert/22982 -https://www.oceanexpert.org/expert/16002 -https://www.oceanexpert.org/expert/24819 -https://www.oceanexpert.org/expert/24505 -https://www.oceanexpert.org/expert/28495 -https://www.oceanexpert.org/expert/18350 -https://www.oceanexpert.org/institution/17699 -https://www.oceanexpert.org/institution/17962 -https://www.oceanexpert.org/expert/16610 -https://www.oceanexpert.org/expert/26778 -https://www.oceanexpert.org/expert/37258 -https://www.oceanexpert.org/expert/46986 -https://www.oceanexpert.org/expert/38501 -https://www.oceanexpert.org/institution/15064 -https://www.oceanexpert.org/expert/24122 -https://www.oceanexpert.org/expert/28260 -https://www.oceanexpert.org/expert/13013 -https://www.oceanexpert.org/expert/27825 -https://www.oceanexpert.org/expert/33060 -https://www.oceanexpert.org/expert/18170 -https://www.oceanexpert.org/expert/47321 -https://www.oceanexpert.org/expert/17632 -https://www.oceanexpert.org/expert/37744 -https://www.oceanexpert.org/expert/31803 -https://www.oceanexpert.org/expert/47090 -https://www.oceanexpert.org/event/1964 -https://www.oceanexpert.org/expert/30881 -https://www.oceanexpert.org/expert/18761 -https://www.oceanexpert.org/expert/37459 -https://www.oceanexpert.org/institution/15727 -https://www.oceanexpert.org/expert/39316 -https://www.oceanexpert.org/expert/26897 -https://www.oceanexpert.org/expert/31910 -https://www.oceanexpert.org/expert/25169 -https://www.oceanexpert.org/expert/48879 -https://www.oceanexpert.org/expert/24181 -https://www.oceanexpert.org/expert/45661 -https://www.oceanexpert.org/institution/20389 -https://www.oceanexpert.org/institution/18756 -https://www.oceanexpert.org/event/1380 -https://www.oceanexpert.org/institution/12429 -https://www.oceanexpert.org/event/2209 -https://www.oceanexpert.org/expert/35331 -https://www.oceanexpert.org/institution/18155 -https://www.oceanexpert.org/expert/44911 -https://www.oceanexpert.org/expert/27789 -https://www.oceanexpert.org/institution/8499 -https://www.oceanexpert.org/expert/46974 -https://www.oceanexpert.org/expert/27546 -https://www.oceanexpert.org/expert/32176 -https://www.oceanexpert.org/institution/10542 -https://www.oceanexpert.org/expert/28424 -https://www.oceanexpert.org/expert/11529 -https://www.oceanexpert.org/institution/6250 -https://www.oceanexpert.org/expert/49015 -https://www.oceanexpert.org/expert/36297 -https://www.oceanexpert.org/expert/32266 -https://www.oceanexpert.org/expert/31262 -https://www.oceanexpert.org/expert/26409 -https://www.oceanexpert.org/expert/29396 -https://www.oceanexpert.org/expert/48590 -https://www.oceanexpert.org/expert/21161 -https://www.oceanexpert.org/expert/40514 -https://www.oceanexpert.org/expert/36112 -https://www.oceanexpert.org/expert/40112 -https://www.oceanexpert.org/institution/12445 -https://www.oceanexpert.org/expert/32977 -https://www.oceanexpert.org/expert/35421 -https://www.oceanexpert.org/expert/21161 -https://www.oceanexpert.org/expert/25518 -https://www.oceanexpert.org/institution/18325 -https://www.oceanexpert.org/expert/38655 -https://www.oceanexpert.org/expert/35274 -https://www.oceanexpert.org/expert/45165 -https://www.oceanexpert.org/expert/21017 -https://www.oceanexpert.org/expert/16746 -https://www.oceanexpert.org/institution/13978 -https://www.oceanexpert.org/event/439 -https://www.oceanexpert.org/expert/17467 -https://www.oceanexpert.org/institution/4969 -https://www.oceanexpert.org/event/2321 -https://www.oceanexpert.org/institution/15268 -https://www.oceanexpert.org/expert/30974 -https://www.oceanexpert.org/event/1571 -https://www.oceanexpert.org/expert/46719 -https://www.oceanexpert.org/expert/29997 -https://www.oceanexpert.org/institution/21331 -https://www.oceanexpert.org/expert/48241 -https://www.oceanexpert.org/expert/46360 -https://www.oceanexpert.org/expert/44979 -https://www.oceanexpert.org/expert/44493 -https://www.oceanexpert.org/institution/6451 -https://www.oceanexpert.org/institution/22169 -https://www.oceanexpert.org/expert/38098 -https://www.oceanexpert.org/expert/28361 -https://www.oceanexpert.org/expert/47611 -https://www.oceanexpert.org/institution/19152 -https://www.oceanexpert.org/expert/46575 -https://www.oceanexpert.org/institution/15282 -https://www.oceanexpert.org/institution/18225 -https://www.oceanexpert.org/expert/19114 -https://www.oceanexpert.org/institution/19611 -https://www.oceanexpert.org/institution/21532 -https://www.oceanexpert.org/expert/23480 -https://www.oceanexpert.org/institution/20280 -https://www.oceanexpert.org/expert/38635 -https://www.oceanexpert.org/expert/44740 -https://www.oceanexpert.org/event/3006 -https://www.oceanexpert.org/expert/22864 -https://www.oceanexpert.org/expert/33212 -https://www.oceanexpert.org/expert/21185 -https://www.oceanexpert.org/expert/37072 -https://www.oceanexpert.org/expert/24779 -https://www.oceanexpert.org/event/3016 -https://www.oceanexpert.org/expert/26007 -https://www.oceanexpert.org/institution/9402 -https://www.oceanexpert.org/expert/27406 -https://www.oceanexpert.org/event/2895 -https://www.oceanexpert.org/expert/25079 -https://www.oceanexpert.org/expert/17157 -https://www.oceanexpert.org/expert/25687 -https://www.oceanexpert.org/expert/26857 -https://www.oceanexpert.org/institution/18717 -https://www.oceanexpert.org/expert/46269 -https://www.oceanexpert.org/institution/18462 -https://www.oceanexpert.org/expert/16025 -https://www.oceanexpert.org/expert/46162 -https://www.oceanexpert.org/event/435 -https://www.oceanexpert.org/expert/44050 -https://www.oceanexpert.org/event/783 -https://www.oceanexpert.org/expert/27110 -https://www.oceanexpert.org/event/875 -https://www.oceanexpert.org/expert/44030 -https://www.oceanexpert.org/expert/25964 -https://www.oceanexpert.org/expert/44490 -https://www.oceanexpert.org/institution/14300 -https://www.oceanexpert.org/expert/31071 -https://www.oceanexpert.org/expert/29436 -https://www.oceanexpert.org/institution/19224 -https://www.oceanexpert.org/expert/47659 -https://www.oceanexpert.org/expert/43719 -https://www.oceanexpert.org/institution/18792 -https://www.oceanexpert.org/institution/19678 -https://www.oceanexpert.org/expert/25253 -https://www.oceanexpert.org/expert/25896 -https://www.oceanexpert.org/institution/12756 -https://www.oceanexpert.org/expert/2643 -https://www.oceanexpert.org/institution/20564 -https://www.oceanexpert.org/institution/11769 -https://www.oceanexpert.org/expert/17359 -https://www.oceanexpert.org/expert/24692 -https://www.oceanexpert.org/expert/37894 -https://www.oceanexpert.org/institution/7489 -https://www.oceanexpert.org/event/2910 -https://www.oceanexpert.org/event/1785 -https://www.oceanexpert.org/event/1964 -https://www.oceanexpert.org/expert/19684 -https://www.oceanexpert.org/event/2588 -https://www.oceanexpert.org/event/2093 -https://www.oceanexpert.org/expert/27032 -https://www.oceanexpert.org/expert/45632 -https://www.oceanexpert.org/expert/45910 -https://www.oceanexpert.org/expert/23512 -https://www.oceanexpert.org/expert/17070 -https://www.oceanexpert.org/institution/9267 -https://www.oceanexpert.org/expert/47352 -https://www.oceanexpert.org/expert/24903 -https://www.oceanexpert.org/institution/18074 -https://www.oceanexpert.org/expert/42787 -https://www.oceanexpert.org/expert/19638 -https://www.oceanexpert.org/expert/42404 -https://www.oceanexpert.org/expert/34972 -https://www.oceanexpert.org/expert/23073 -https://www.oceanexpert.org/institution/14358 -https://www.oceanexpert.org/institution/14016 -https://www.oceanexpert.org/event/2862 -https://www.oceanexpert.org/event/613 -https://www.oceanexpert.org/expert/35405 -https://www.oceanexpert.org/expert/37721 -https://www.oceanexpert.org/expert/11012 -https://www.oceanexpert.org/expert/34342 -https://www.oceanexpert.org/expert/37016 -https://www.oceanexpert.org/expert/44980 -https://www.oceanexpert.org/expert/31038 -https://www.oceanexpert.org/expert/46279 -https://www.oceanexpert.org/institution/19130 -https://www.oceanexpert.org/expert/46296 -https://www.oceanexpert.org/institution/11568 -https://www.oceanexpert.org/expert/2006 -https://www.oceanexpert.org/institution/21413 -https://www.oceanexpert.org/institution/17441 -https://www.oceanexpert.org/expert/15490 -https://www.oceanexpert.org/expert/26292 -https://www.oceanexpert.org/expert/32526 -https://www.oceanexpert.org/institution/19856 -https://www.oceanexpert.org/expert/44454 -https://www.oceanexpert.org/institution/19812 -https://www.oceanexpert.org/expert/37524 -https://www.oceanexpert.org/expert/27432 -https://www.oceanexpert.org/expert/25675 -https://www.oceanexpert.org/expert/22310 -https://www.oceanexpert.org/institution/12030 -https://www.oceanexpert.org/institution/20231 -https://www.oceanexpert.org/expert/47211 -https://www.oceanexpert.org/expert/20143 -https://www.oceanexpert.org/event/1029 -https://www.oceanexpert.org/expert/24254 -https://www.oceanexpert.org/expert/20899 -https://www.oceanexpert.org/institution/19329 -https://www.oceanexpert.org/expert/42985 -https://www.oceanexpert.org/expert/35928 -https://www.oceanexpert.org/expert/33567 -https://www.oceanexpert.org/institution/22104 -https://www.oceanexpert.org/expert/36423 -https://www.oceanexpert.org/expert/27637 -https://www.oceanexpert.org/expert/40615 -https://www.oceanexpert.org/expert/27422 -https://www.oceanexpert.org/expert/22977 -https://www.oceanexpert.org/institution/12165 -https://www.oceanexpert.org/expert/43548 -https://www.oceanexpert.org/expert/28493 -https://www.oceanexpert.org/institution/12474 -https://www.oceanexpert.org/expert/43883 -https://www.oceanexpert.org/event/271 -https://www.oceanexpert.org/expert/23199 -https://www.oceanexpert.org/expert/44672 -https://www.oceanexpert.org/institution/10288 -https://www.oceanexpert.org/expert/8600 -https://www.oceanexpert.org/expert/45533 -https://www.oceanexpert.org/event/3178 -https://www.oceanexpert.org/expert/26309 -https://www.oceanexpert.org/expert/32749 -https://www.oceanexpert.org/institution/15460 -https://www.oceanexpert.org/expert/22954 -https://www.oceanexpert.org/institution/19604 -https://www.oceanexpert.org/institution/14776 -https://www.oceanexpert.org/expert/28299 -https://www.oceanexpert.org/institution/21517 -https://www.oceanexpert.org/expert/26468 -https://www.oceanexpert.org/expert/11245 -https://www.oceanexpert.org/institution/18884 -https://www.oceanexpert.org/expert/28992 -https://www.oceanexpert.org/institution/16123 -https://www.oceanexpert.org/institution/12441 -https://www.oceanexpert.org/expert/17601 -https://www.oceanexpert.org/expert/28425 -https://www.oceanexpert.org/expert/24279 -https://www.oceanexpert.org/institution/18816 -https://www.oceanexpert.org/event/2220 -https://www.oceanexpert.org/institution/21222 -https://www.oceanexpert.org/institution/11994 -https://www.oceanexpert.org/expert/29885 -https://www.oceanexpert.org/expert/23223 -https://www.oceanexpert.org/expert/49000 -https://www.oceanexpert.org/expert/1989 -https://www.oceanexpert.org/expert/18249 -https://www.oceanexpert.org/event/1622 -https://www.oceanexpert.org/expert/22689 -https://www.oceanexpert.org/expert/8616 -https://www.oceanexpert.org/expert/45445 -https://www.oceanexpert.org/expert/42882 -https://www.oceanexpert.org/institution/7135 -https://www.oceanexpert.org/expert/44989 -https://www.oceanexpert.org/event/582 -https://www.oceanexpert.org/event/2734 -https://www.oceanexpert.org/expert/34650 -https://www.oceanexpert.org/expert/43321 -https://www.oceanexpert.org/institution/20380 -https://www.oceanexpert.org/expert/47006 -https://www.oceanexpert.org/expert/32609 -https://www.oceanexpert.org/institution/19032 -https://www.oceanexpert.org/event/147 -https://www.oceanexpert.org/expert/26706 -https://www.oceanexpert.org/expert/2433 -https://www.oceanexpert.org/expert/17174 -https://www.oceanexpert.org/expert/21860 -https://www.oceanexpert.org/event/1519 -https://www.oceanexpert.org/expert/36857 -https://www.oceanexpert.org/expert/37693 -https://www.oceanexpert.org/expert/30529 -https://www.oceanexpert.org/expert/4319 -https://www.oceanexpert.org/expert/26579 -https://www.oceanexpert.org/expert/21706 -https://www.oceanexpert.org/institution/11763 -https://www.oceanexpert.org/event/3198 -https://www.oceanexpert.org/expert/26772 -https://www.oceanexpert.org/institution/15802 -https://www.oceanexpert.org/expert/18355 -https://www.oceanexpert.org/expert/11761 -https://www.oceanexpert.org/expert/37624 -https://www.oceanexpert.org/event/1862 -https://www.oceanexpert.org/expert/42937 -https://www.oceanexpert.org/expert/43018 -https://www.oceanexpert.org/expert/47550 -https://www.oceanexpert.org/institution/16154 -https://www.oceanexpert.org/expert/47675 -https://www.oceanexpert.org/expert/32781 -https://www.oceanexpert.org/expert/45452 -https://www.oceanexpert.org/expert/29928 -https://www.oceanexpert.org/institution/11510 -https://www.oceanexpert.org/event/2724 -https://www.oceanexpert.org/expert/26102 -https://www.oceanexpert.org/institution/12553 -https://www.oceanexpert.org/expert/20041 -https://www.oceanexpert.org/institution/11604 -https://www.oceanexpert.org/expert/48665 -https://www.oceanexpert.org/event/989 -https://www.oceanexpert.org/institution/20459 -https://www.oceanexpert.org/expert/20725 -https://www.oceanexpert.org/expert/17173 -https://www.oceanexpert.org/institution/20365 -https://www.oceanexpert.org/expert/26489 -https://www.oceanexpert.org/expert/19449 -https://www.oceanexpert.org/institution/5349 -https://www.oceanexpert.org/expert/24124 -https://www.oceanexpert.org/expert/34849 -https://www.oceanexpert.org/institution/5242 -https://www.oceanexpert.org/institution/14580 -https://www.oceanexpert.org/expert/44039 -https://www.oceanexpert.org/expert/46232 -https://www.oceanexpert.org/event/2492 -https://www.oceanexpert.org/institution/18302 -https://www.oceanexpert.org/institution/18249 -https://www.oceanexpert.org/expert/19512 -https://www.oceanexpert.org/expert/21691 -https://www.oceanexpert.org/expert/38563 -https://www.oceanexpert.org/institution/19610 -https://www.oceanexpert.org/expert/20098 -https://www.oceanexpert.org/institution/6319 -https://www.oceanexpert.org/institution/20704 -https://www.oceanexpert.org/expert/36306 -https://www.oceanexpert.org/institution/14943 -https://www.oceanexpert.org/expert/23521 -https://www.oceanexpert.org/expert/25102 -https://www.oceanexpert.org/expert/27778 -https://www.oceanexpert.org/expert/13730 -https://www.oceanexpert.org/expert/20297 -https://www.oceanexpert.org/expert/42827 -https://www.oceanexpert.org/institution/17945 -https://www.oceanexpert.org/expert/44202 -https://www.oceanexpert.org/expert/24051 -https://www.oceanexpert.org/expert/36814 -https://www.oceanexpert.org/expert/18954 -https://www.oceanexpert.org/expert/47550 -https://www.oceanexpert.org/expert/45523 -https://www.oceanexpert.org/institution/12395 -https://www.oceanexpert.org/expert/27918 -https://www.oceanexpert.org/institution/15594 -https://www.oceanexpert.org/expert/47975 -https://www.oceanexpert.org/expert/48794 -https://www.oceanexpert.org/event/3128 -https://www.oceanexpert.org/institution/19439 -https://www.oceanexpert.org/expert/20039 -https://www.oceanexpert.org/expert/24224 -https://www.oceanexpert.org/institution/5872 -https://www.oceanexpert.org/event/639 -https://www.oceanexpert.org/expert/47578 -https://www.oceanexpert.org/expert/37977 -https://www.oceanexpert.org/expert/36041 -https://www.oceanexpert.org/institution/13673 -https://www.oceanexpert.org/expert/17011 -https://www.oceanexpert.org/expert/27004 -https://www.oceanexpert.org/expert/42597 -https://www.oceanexpert.org/expert/21628 -https://www.oceanexpert.org/expert/42640 -https://www.oceanexpert.org/expert/35993 -https://www.oceanexpert.org/expert/47856 -https://www.oceanexpert.org/expert/48066 -https://www.oceanexpert.org/expert/26189 -https://www.oceanexpert.org/institution/17142 -https://www.oceanexpert.org/expert/19762 -https://www.oceanexpert.org/expert/44611 -https://www.oceanexpert.org/institution/18892 -https://www.oceanexpert.org/expert/19693 -https://www.oceanexpert.org/expert/29177 -https://www.oceanexpert.org/expert/13590 -https://www.oceanexpert.org/expert/33523 -https://www.oceanexpert.org/expert/32331 -https://www.oceanexpert.org/expert/28381 -https://www.oceanexpert.org/expert/20623 -https://www.oceanexpert.org/institution/20811 -https://www.oceanexpert.org/expert/44602 -https://www.oceanexpert.org/expert/26073 -https://www.oceanexpert.org/expert/25191 -https://www.oceanexpert.org/event/2496 -https://www.oceanexpert.org/institution/21522 -https://www.oceanexpert.org/institution/20854 -https://www.oceanexpert.org/institution/11756 -https://www.oceanexpert.org/expert/47386 -https://www.oceanexpert.org/expert/27565 -https://www.oceanexpert.org/expert/23654 -https://www.oceanexpert.org/institution/18885 -https://www.oceanexpert.org/institution/11510 -https://www.oceanexpert.org/event/280 -https://www.oceanexpert.org/expert/19022 -https://www.oceanexpert.org/expert/24250 -https://www.oceanexpert.org/expert/47561 -https://www.oceanexpert.org/expert/37074 -https://www.oceanexpert.org/expert/37822 -https://www.oceanexpert.org/institution/14890 -https://www.oceanexpert.org/expert/21814 -https://www.oceanexpert.org/expert/14848 -https://www.oceanexpert.org/expert/24377 -https://www.oceanexpert.org/expert/33267 -https://www.oceanexpert.org/expert/42780 -https://www.oceanexpert.org/event/597 -https://www.oceanexpert.org/expert/27441 -https://www.oceanexpert.org/expert/20378 -https://www.oceanexpert.org/expert/40517 -https://www.oceanexpert.org/expert/34924 -https://www.oceanexpert.org/expert/20400 -https://www.oceanexpert.org/institution/18912 -https://www.oceanexpert.org/expert/45759 -https://www.oceanexpert.org/institution/21900 -https://www.oceanexpert.org/expert/30662 -https://www.oceanexpert.org/expert/23194 -https://www.oceanexpert.org/expert/14043 -https://www.oceanexpert.org/event/1224 -https://www.oceanexpert.org/event/1703 -https://www.oceanexpert.org/institution/17058 -https://www.oceanexpert.org/expert/35779 -https://www.oceanexpert.org/expert/22637 -https://www.oceanexpert.org/expert/35726 -https://www.oceanexpert.org/expert/45131 -https://www.oceanexpert.org/event/1857 -https://www.oceanexpert.org/expert/37316 -https://www.oceanexpert.org/expert/25929 -https://www.oceanexpert.org/expert/48811 -https://www.oceanexpert.org/expert/31675 -https://www.oceanexpert.org/institution/10651 -https://www.oceanexpert.org/expert/7195 -https://www.oceanexpert.org/institution/6638 -https://www.oceanexpert.org/expert/35951 -https://www.oceanexpert.org/institution/16055 -https://www.oceanexpert.org/institution/17942 -https://www.oceanexpert.org/expert/44115 -https://www.oceanexpert.org/institution/22073 -https://www.oceanexpert.org/expert/23586 -https://www.oceanexpert.org/institution/20816 -https://www.oceanexpert.org/expert/26337 -https://www.oceanexpert.org/expert/31286 -https://www.oceanexpert.org/institution/21314 -https://www.oceanexpert.org/expert/12355 -https://www.oceanexpert.org/event/482 -https://www.oceanexpert.org/expert/34054 -https://www.oceanexpert.org/expert/18332 -https://www.oceanexpert.org/institution/12085 -https://www.oceanexpert.org/expert/17122 -https://www.oceanexpert.org/expert/47474 -https://www.oceanexpert.org/institution/17283 -https://www.oceanexpert.org/expert/6446 -https://www.oceanexpert.org/expert/16678 -https://www.oceanexpert.org/expert/16142 -https://www.oceanexpert.org/expert/26396 -https://www.oceanexpert.org/expert/17049 -https://www.oceanexpert.org/expert/29531 -https://www.oceanexpert.org/expert/16101 -https://www.oceanexpert.org/expert/46590 -https://www.oceanexpert.org/expert/20357 -https://www.oceanexpert.org/expert/34788 -https://www.oceanexpert.org/expert/38334 -https://www.oceanexpert.org/expert/12951 -https://www.oceanexpert.org/expert/46673 -https://www.oceanexpert.org/expert/43806 -https://www.oceanexpert.org/institution/18172 -https://www.oceanexpert.org/expert/22421 -https://www.oceanexpert.org/institution/20263 -https://www.oceanexpert.org/expert/27674 -https://www.oceanexpert.org/expert/38579 -https://www.oceanexpert.org/expert/37785 -https://www.oceanexpert.org/institution/20987 -https://www.oceanexpert.org/institution/18377 -https://www.oceanexpert.org/institution/20852 -https://www.oceanexpert.org/expert/37380 -https://www.oceanexpert.org/expert/19572 -https://www.oceanexpert.org/expert/30291 -https://www.oceanexpert.org/expert/33438 -https://www.oceanexpert.org/event/2616 -https://www.oceanexpert.org/expert/46557 -https://www.oceanexpert.org/expert/43756 -https://www.oceanexpert.org/institution/14906 -https://www.oceanexpert.org/expert/24463 -https://www.oceanexpert.org/event/1432 -https://www.oceanexpert.org/event/1482 -https://www.oceanexpert.org/event/1158 -https://www.oceanexpert.org/expert/30983 -https://www.oceanexpert.org/expert/8773 -https://www.oceanexpert.org/institution/19013 -https://www.oceanexpert.org/institution/18500 -https://www.oceanexpert.org/event/241 -https://www.oceanexpert.org/expert/27529 -https://www.oceanexpert.org/institution/5869 -https://www.oceanexpert.org/expert/48641 -https://www.oceanexpert.org/institution/10309 -https://www.oceanexpert.org/event/471 -https://www.oceanexpert.org/institution/17912 -https://www.oceanexpert.org/expert/42461 -https://www.oceanexpert.org/expert/20688 -https://www.oceanexpert.org/expert/34537 -https://www.oceanexpert.org/event/2697 -https://www.oceanexpert.org/expert/13241 -https://www.oceanexpert.org/event/3074 -https://www.oceanexpert.org/expert/25445 -https://www.oceanexpert.org/expert/41038 -https://www.oceanexpert.org/expert/26019 -https://www.oceanexpert.org/event/1336 -https://www.oceanexpert.org/institution/19293 -https://www.oceanexpert.org/expert/38779 -https://www.oceanexpert.org/expert/47988 -https://www.oceanexpert.org/institution/19762 -https://www.oceanexpert.org/event/3298 -https://www.oceanexpert.org/institution/18673 -https://www.oceanexpert.org/expert/17941 -https://www.oceanexpert.org/institution/10649 -https://www.oceanexpert.org/institution/20913 -https://www.oceanexpert.org/institution/13412 -https://www.oceanexpert.org/expert/2202 -https://www.oceanexpert.org/expert/17067 -https://www.oceanexpert.org/event/662 -https://www.oceanexpert.org/expert/39651 -https://www.oceanexpert.org/expert/34455 -https://www.oceanexpert.org/expert/22388 -https://www.oceanexpert.org/expert/47153 -https://www.oceanexpert.org/expert/23652 -https://www.oceanexpert.org/institution/11480 -https://www.oceanexpert.org/expert/19322 -https://www.oceanexpert.org/expert/14156 -https://www.oceanexpert.org/expert/19117 -https://www.oceanexpert.org/expert/26143 -https://www.oceanexpert.org/expert/46246 -https://www.oceanexpert.org/institution/15569 -https://www.oceanexpert.org/institution/14019 -https://www.oceanexpert.org/institution/17031 -https://www.oceanexpert.org/institution/15758 -https://www.oceanexpert.org/expert/36389 -https://www.oceanexpert.org/institution/17141 -https://www.oceanexpert.org/expert/20474 -https://www.oceanexpert.org/event/2386 -https://www.oceanexpert.org/expert/33687 -https://www.oceanexpert.org/event/233 -https://www.oceanexpert.org/institution/10909 -https://www.oceanexpert.org/expert/29679 -https://www.oceanexpert.org/expert/19040 -https://www.oceanexpert.org/expert/44087 -https://www.oceanexpert.org/expert/34659 -https://www.oceanexpert.org/institution/21917 -https://www.oceanexpert.org/expert/7590 -https://www.oceanexpert.org/institution/7255 -https://www.oceanexpert.org/event/614 -https://www.oceanexpert.org/expert/35265 -https://www.oceanexpert.org/expert/46566 -https://www.oceanexpert.org/expert/9580 -https://www.oceanexpert.org/institution/18237 -https://www.oceanexpert.org/expert/33301 -https://www.oceanexpert.org/expert/26840 -https://www.oceanexpert.org/expert/45519 -https://www.oceanexpert.org/expert/36815 -https://www.oceanexpert.org/event/3286 -https://www.oceanexpert.org/expert/26511 -https://www.oceanexpert.org/institution/13950 -https://www.oceanexpert.org/institution/19862 -https://www.oceanexpert.org/expert/47258 -https://www.oceanexpert.org/event/1993 -https://www.oceanexpert.org/institution/14400 -https://www.oceanexpert.org/expert/47042 -https://www.oceanexpert.org/institution/21272 -https://www.oceanexpert.org/event/1813 -https://www.oceanexpert.org/institution/12830 -https://www.oceanexpert.org/institution/6396 -https://www.oceanexpert.org/expert/38142 -https://www.oceanexpert.org/event/108 -https://www.oceanexpert.org/institution/7629 -https://www.oceanexpert.org/event/2209 -https://www.oceanexpert.org/event/71 -https://www.oceanexpert.org/expert/21352 -https://www.oceanexpert.org/institution/20738 -https://www.oceanexpert.org/institution/11132 -https://www.oceanexpert.org/institution/18141 -https://www.oceanexpert.org/expert/41423 -https://www.oceanexpert.org/institution/10841 -https://www.oceanexpert.org/institution/19354 -https://www.oceanexpert.org/expert/36443 -https://www.oceanexpert.org/expert/38985 -https://www.oceanexpert.org/expert/21149 -https://www.oceanexpert.org/expert/42146 -https://www.oceanexpert.org/expert/23105 -https://www.oceanexpert.org/event/2698 -https://www.oceanexpert.org/expert/44702 -https://www.oceanexpert.org/expert/48550 -https://www.oceanexpert.org/event/2233 -https://www.oceanexpert.org/expert/20117 -https://www.oceanexpert.org/institution/18570 -https://www.oceanexpert.org/institution/5324 -https://www.oceanexpert.org/expert/17791 -https://www.oceanexpert.org/institution/20808 -https://www.oceanexpert.org/expert/25587 -https://www.oceanexpert.org/expert/31204 -https://www.oceanexpert.org/event/1503 -https://www.oceanexpert.org/expert/20457 -https://www.oceanexpert.org/expert/34698 -https://www.oceanexpert.org/event/1004 -https://www.oceanexpert.org/expert/18646 -https://www.oceanexpert.org/expert/22168 -https://www.oceanexpert.org/institution/19866 -https://www.oceanexpert.org/expert/35236 -https://www.oceanexpert.org/expert/27016 -https://www.oceanexpert.org/expert/14392 -https://www.oceanexpert.org/expert/20619 -https://www.oceanexpert.org/expert/45589 -https://www.oceanexpert.org/expert/20012 -https://www.oceanexpert.org/event/1137 -https://www.oceanexpert.org/expert/21499 -https://www.oceanexpert.org/expert/20604 -https://www.oceanexpert.org/expert/34782 -https://www.oceanexpert.org/expert/40517 -https://www.oceanexpert.org/expert/38916 -https://www.oceanexpert.org/expert/11320 -https://www.oceanexpert.org/event/1833 -https://www.oceanexpert.org/expert/27337 -https://www.oceanexpert.org/expert/25247 -https://www.oceanexpert.org/institution/20201 -https://www.oceanexpert.org/expert/21854 -https://www.oceanexpert.org/event/1419 -https://www.oceanexpert.org/institution/18131 -https://www.oceanexpert.org/expert/43734 -https://www.oceanexpert.org/expert/19207 -https://www.oceanexpert.org/expert/40577 -https://www.oceanexpert.org/expert/17291 -https://www.oceanexpert.org/expert/35273 -https://www.oceanexpert.org/expert/22373 -https://www.oceanexpert.org/institution/22007 -https://www.oceanexpert.org/expert/39070 -https://www.oceanexpert.org/expert/17978 -https://www.oceanexpert.org/expert/31041 -https://www.oceanexpert.org/expert/14901 -https://www.oceanexpert.org/expert/23784 -https://www.oceanexpert.org/institution/12175 -https://www.oceanexpert.org/event/559 -https://www.oceanexpert.org/expert/16616 -https://www.oceanexpert.org/expert/25042 -https://www.oceanexpert.org/expert/44128 -https://www.oceanexpert.org/expert/47968 -https://www.oceanexpert.org/event/1550 -https://www.oceanexpert.org/expert/15926 -https://www.oceanexpert.org/institution/18628 -https://www.oceanexpert.org/expert/4370 -https://www.oceanexpert.org/event/1276 -https://www.oceanexpert.org/expert/24064 -https://www.oceanexpert.org/expert/32769 -https://www.oceanexpert.org/expert/17593 -https://www.oceanexpert.org/institution/15923 -https://www.oceanexpert.org/expert/49065 -https://www.oceanexpert.org/expert/42619 -https://www.oceanexpert.org/expert/18122 -https://www.oceanexpert.org/expert/26316 -https://www.oceanexpert.org/expert/39224 -https://www.oceanexpert.org/expert/2490 -https://www.oceanexpert.org/expert/25409 -https://www.oceanexpert.org/expert/44580 -https://www.oceanexpert.org/institution/20724 -https://www.oceanexpert.org/expert/21103 -https://www.oceanexpert.org/institution/21354 -https://www.oceanexpert.org/expert/28507 -https://www.oceanexpert.org/expert/35899 -https://www.oceanexpert.org/expert/44588 -https://www.oceanexpert.org/expert/408 -https://www.oceanexpert.org/event/762 -https://www.oceanexpert.org/expert/29356 -https://www.oceanexpert.org/event/1584 -https://www.oceanexpert.org/institution/16313 -https://www.oceanexpert.org/institution/14005 -https://www.oceanexpert.org/expert/5501 -https://www.oceanexpert.org/expert/16876 -https://www.oceanexpert.org/expert/48828 -https://www.oceanexpert.org/institution/11778 -https://www.oceanexpert.org/expert/33240 -https://www.oceanexpert.org/event/2230 -https://www.oceanexpert.org/institution/17778 -https://www.oceanexpert.org/expert/48821 -https://www.oceanexpert.org/expert/29778 -https://www.oceanexpert.org/expert/47303 -https://www.oceanexpert.org/expert/46148 -https://www.oceanexpert.org/expert/44800 -https://www.oceanexpert.org/institution/14558 -https://www.oceanexpert.org/event/3173 -https://www.oceanexpert.org/expert/11850 -https://www.oceanexpert.org/expert/44893 -https://www.oceanexpert.org/expert/17549 -https://www.oceanexpert.org/expert/34498 -https://www.oceanexpert.org/expert/5429 -https://www.oceanexpert.org/expert/29598 -https://www.oceanexpert.org/institution/14247 -https://www.oceanexpert.org/expert/25785 -https://www.oceanexpert.org/expert/19647 -https://www.oceanexpert.org/expert/34434 -https://www.oceanexpert.org/expert/26183 -https://www.oceanexpert.org/expert/28474 -https://www.oceanexpert.org/expert/25204 -https://www.oceanexpert.org/expert/47948 -https://www.oceanexpert.org/expert/20896 -https://www.oceanexpert.org/expert/42788 -https://www.oceanexpert.org/institution/20372 -https://www.oceanexpert.org/expert/29834 -https://www.oceanexpert.org/expert/16069 -https://www.oceanexpert.org/expert/20774 -https://www.oceanexpert.org/expert/16656 -https://www.oceanexpert.org/institution/18706 -https://www.oceanexpert.org/expert/42633 -https://www.oceanexpert.org/expert/22208 -https://www.oceanexpert.org/institution/12101 -https://www.oceanexpert.org/expert/27310 -https://www.oceanexpert.org/institution/15643 -https://www.oceanexpert.org/expert/44842 -https://www.oceanexpert.org/expert/45655 -https://www.oceanexpert.org/institution/19446 -https://www.oceanexpert.org/expert/18128 -https://www.oceanexpert.org/event/2502 -https://www.oceanexpert.org/expert/29773 -https://www.oceanexpert.org/expert/19646 -https://www.oceanexpert.org/expert/26367 -https://www.oceanexpert.org/event/1650 -https://www.oceanexpert.org/expert/1960 -https://www.oceanexpert.org/expert/23804 -https://www.oceanexpert.org/event/2863 -https://www.oceanexpert.org/expert/33423 -https://www.oceanexpert.org/expert/18323 -https://www.oceanexpert.org/expert/37286 -https://www.oceanexpert.org/expert/45546 -https://www.oceanexpert.org/event/1386 -https://www.oceanexpert.org/expert/25449 -https://www.oceanexpert.org/expert/28108 -https://www.oceanexpert.org/expert/19069 -https://www.oceanexpert.org/expert/46868 -https://www.oceanexpert.org/institution/12252 -https://www.oceanexpert.org/expert/42384 -https://www.oceanexpert.org/expert/34060 -https://www.oceanexpert.org/expert/37695 -https://www.oceanexpert.org/institution/5924 -https://www.oceanexpert.org/event/3008 -https://www.oceanexpert.org/institution/18683 -https://www.oceanexpert.org/expert/18874 -https://www.oceanexpert.org/expert/48230 -https://www.oceanexpert.org/institution/9383 -https://www.oceanexpert.org/expert/44428 -https://www.oceanexpert.org/expert/34765 -https://www.oceanexpert.org/expert/48432 -https://www.oceanexpert.org/institution/18832 -https://www.oceanexpert.org/institution/11466 -https://www.oceanexpert.org/event/2334 -https://www.oceanexpert.org/expert/44844 -https://www.oceanexpert.org/institution/17601 -https://www.oceanexpert.org/institution/12191 -https://www.oceanexpert.org/expert/21616 -https://www.oceanexpert.org/institution/20127 -https://www.oceanexpert.org/event/3173 -https://www.oceanexpert.org/event/1683 -https://www.oceanexpert.org/expert/43223 -https://www.oceanexpert.org/institution/13518 -https://www.oceanexpert.org/expert/30563 -https://www.oceanexpert.org/expert/34757 -https://www.oceanexpert.org/institution/18842 -https://www.oceanexpert.org/expert/37650 -https://www.oceanexpert.org/event/1188 -https://www.oceanexpert.org/expert/46992 -https://www.oceanexpert.org/expert/45320 -https://www.oceanexpert.org/expert/46032 -https://www.oceanexpert.org/expert/48723 -https://www.oceanexpert.org/institution/11825 -https://www.oceanexpert.org/event/1437 -https://www.oceanexpert.org/expert/31328 -https://www.oceanexpert.org/expert/36419 -https://www.oceanexpert.org/expert/43065 -https://www.oceanexpert.org/expert/35858 -https://www.oceanexpert.org/expert/35031 -https://www.oceanexpert.org/expert/47414 -https://www.oceanexpert.org/expert/27578 -https://www.oceanexpert.org/expert/25504 -https://www.oceanexpert.org/expert/29898 -https://www.oceanexpert.org/expert/17469 -https://www.oceanexpert.org/institution/15811 -https://www.oceanexpert.org/expert/13683 -https://www.oceanexpert.org/expert/31335 -https://www.oceanexpert.org/expert/24748 -https://www.oceanexpert.org/expert/31183 -https://www.oceanexpert.org/institution/7785 -https://www.oceanexpert.org/expert/27710 -https://www.oceanexpert.org/expert/44842 -https://www.oceanexpert.org/expert/13044 -https://www.oceanexpert.org/event/328 -https://www.oceanexpert.org/expert/33879 -https://www.oceanexpert.org/institution/13223 -https://www.oceanexpert.org/expert/25222 -https://www.oceanexpert.org/expert/20208 -https://www.oceanexpert.org/expert/46693 -https://www.oceanexpert.org/expert/30176 -https://www.oceanexpert.org/expert/12019 -https://www.oceanexpert.org/expert/24999 -https://www.oceanexpert.org/institution/15960 -https://www.oceanexpert.org/expert/29686 -https://www.oceanexpert.org/expert/43868 -https://www.oceanexpert.org/expert/8825 -https://www.oceanexpert.org/expert/26772 -https://www.oceanexpert.org/institution/21687 -https://www.oceanexpert.org/event/74 -https://www.oceanexpert.org/event/1364 -https://www.oceanexpert.org/expert/44513 -https://www.oceanexpert.org/expert/39975 -https://www.oceanexpert.org/institution/9417 -https://www.oceanexpert.org/expert/31966 -https://www.oceanexpert.org/expert/11073 -https://www.oceanexpert.org/expert/36670 -https://www.oceanexpert.org/expert/38528 -https://www.oceanexpert.org/expert/23707 -https://www.oceanexpert.org/expert/27468 -https://www.oceanexpert.org/expert/38625 -https://www.oceanexpert.org/event/1524 -https://www.oceanexpert.org/expert/30558 -https://www.oceanexpert.org/expert/7187 -https://www.oceanexpert.org/institution/16918 -https://www.oceanexpert.org/expert/46619 -https://www.oceanexpert.org/event/1423 -https://www.oceanexpert.org/expert/40367 -https://www.oceanexpert.org/expert/37964 -https://www.oceanexpert.org/event/1976 -https://www.oceanexpert.org/institution/21869 -https://www.oceanexpert.org/expert/40587 -https://www.oceanexpert.org/institution/18935 -https://www.oceanexpert.org/institution/18942 -https://www.oceanexpert.org/institution/15075 -https://www.oceanexpert.org/expert/23580 -https://www.oceanexpert.org/expert/20611 -https://www.oceanexpert.org/expert/22688 -https://www.oceanexpert.org/expert/8863 -https://www.oceanexpert.org/institution/18932 -https://www.oceanexpert.org/expert/23586 -https://www.oceanexpert.org/expert/22752 -https://www.oceanexpert.org/expert/33372 -https://www.oceanexpert.org/expert/16131 -https://www.oceanexpert.org/institution/16282 -https://www.oceanexpert.org/expert/45586 -https://www.oceanexpert.org/expert/47798 -https://www.oceanexpert.org/expert/42808 -https://www.oceanexpert.org/event/2063 -https://www.oceanexpert.org/expert/39351 -https://www.oceanexpert.org/expert/39328 -https://www.oceanexpert.org/expert/20051 -https://www.oceanexpert.org/expert/24745 -https://www.oceanexpert.org/expert/25375 -https://www.oceanexpert.org/expert/46482 -https://www.oceanexpert.org/expert/27637 -https://www.oceanexpert.org/expert/25466 -https://www.oceanexpert.org/expert/45533 -https://www.oceanexpert.org/expert/47161 -https://www.oceanexpert.org/expert/47956 -https://www.oceanexpert.org/institution/13947 -https://www.oceanexpert.org/expert/2258 -https://www.oceanexpert.org/event/323 -https://www.oceanexpert.org/expert/17957 -https://www.oceanexpert.org/expert/26665 -https://www.oceanexpert.org/institution/10671 -https://www.oceanexpert.org/expert/44943 -https://www.oceanexpert.org/expert/12086 -https://www.oceanexpert.org/expert/7615 -https://www.oceanexpert.org/expert/22689 -https://www.oceanexpert.org/expert/39598 -https://www.oceanexpert.org/institution/11825 -https://www.oceanexpert.org/event/366 -https://www.oceanexpert.org/expert/16973 -https://www.oceanexpert.org/expert/42163 -https://www.oceanexpert.org/expert/20739 -https://www.oceanexpert.org/expert/17502 -https://www.oceanexpert.org/expert/22641 -https://www.oceanexpert.org/expert/19440 -https://www.oceanexpert.org/expert/44740 -https://www.oceanexpert.org/institution/19709 -https://www.oceanexpert.org/expert/28170 -https://www.oceanexpert.org/event/1542 -https://www.oceanexpert.org/expert/17376 -https://www.oceanexpert.org/event/2954 -https://www.oceanexpert.org/expert/23941 -https://www.oceanexpert.org/expert/5833 -https://www.oceanexpert.org/expert/47152 -https://www.oceanexpert.org/expert/42885 -https://www.oceanexpert.org/expert/37952 -https://www.oceanexpert.org/expert/47071 -https://www.oceanexpert.org/expert/13881 -https://www.oceanexpert.org/expert/27558 -https://www.oceanexpert.org/institution/21216 -https://www.oceanexpert.org/event/2950 -https://www.oceanexpert.org/expert/46714 -https://www.oceanexpert.org/institution/21733 -https://www.oceanexpert.org/institution/18508 -https://www.oceanexpert.org/expert/9310 -https://www.oceanexpert.org/expert/17062 -https://www.oceanexpert.org/expert/12118 -https://www.oceanexpert.org/event/2435 -https://www.oceanexpert.org/expert/37927 -https://www.oceanexpert.org/expert/25431 -https://www.oceanexpert.org/expert/20467 -https://www.oceanexpert.org/expert/20988 -https://www.oceanexpert.org/expert/36038 -https://www.oceanexpert.org/event/1305 -https://www.oceanexpert.org/expert/29789 -https://www.oceanexpert.org/expert/23448 -https://www.oceanexpert.org/expert/23393 -https://www.oceanexpert.org/expert/21755 -https://www.oceanexpert.org/institution/21952 -https://www.oceanexpert.org/expert/47883 -https://www.oceanexpert.org/expert/34187 -https://www.oceanexpert.org/expert/35153 -https://www.oceanexpert.org/expert/5200 -https://www.oceanexpert.org/expert/38974 -https://www.oceanexpert.org/expert/22506 -https://www.oceanexpert.org/expert/26342 -https://www.oceanexpert.org/institution/12106 -https://www.oceanexpert.org/expert/44468 -https://www.oceanexpert.org/event/307 -https://www.oceanexpert.org/expert/26241 -https://www.oceanexpert.org/event/459 -https://www.oceanexpert.org/expert/33955 -https://www.oceanexpert.org/expert/46535 -https://www.oceanexpert.org/expert/13142 -https://www.oceanexpert.org/expert/36741 -https://www.oceanexpert.org/event/284 -https://www.oceanexpert.org/expert/37343 -https://www.oceanexpert.org/institution/18322 -https://www.oceanexpert.org/expert/25176 -https://www.oceanexpert.org/event/50 -https://www.oceanexpert.org/expert/34270 -https://www.oceanexpert.org/institution/16222 -https://www.oceanexpert.org/expert/27268 -https://www.oceanexpert.org/event/3096 -https://www.oceanexpert.org/institution/10251 -https://www.oceanexpert.org/expert/44315 -https://www.oceanexpert.org/expert/28927 -https://www.oceanexpert.org/expert/14054 -https://www.oceanexpert.org/institution/8247 -https://www.oceanexpert.org/expert/37095 -https://www.oceanexpert.org/institution/7505 -https://www.oceanexpert.org/expert/48577 -https://www.oceanexpert.org/expert/32585 -https://www.oceanexpert.org/expert/17638 -https://www.oceanexpert.org/event/1815 -https://www.oceanexpert.org/institution/11474 -https://www.oceanexpert.org/institution/14889 -https://www.oceanexpert.org/expert/16991 -https://www.oceanexpert.org/expert/24217 -https://www.oceanexpert.org/institution/17673 -https://www.oceanexpert.org/institution/10308 -https://www.oceanexpert.org/expert/36739 -https://www.oceanexpert.org/expert/27303 -https://www.oceanexpert.org/event/3054 -https://www.oceanexpert.org/expert/32627 -https://www.oceanexpert.org/event/1991 -https://www.oceanexpert.org/expert/35433 -https://www.oceanexpert.org/expert/45245 -https://www.oceanexpert.org/expert/45132 -https://www.oceanexpert.org/expert/32736 -https://www.oceanexpert.org/event/1255 -https://www.oceanexpert.org/expert/122 -https://www.oceanexpert.org/institution/20396 -https://www.oceanexpert.org/institution/21151 -https://www.oceanexpert.org/institution/17953 -https://www.oceanexpert.org/expert/27618 -https://www.oceanexpert.org/institution/8477 -https://www.oceanexpert.org/expert/47075 -https://www.oceanexpert.org/institution/18960 -https://www.oceanexpert.org/expert/16341 -https://www.oceanexpert.org/expert/32190 -https://www.oceanexpert.org/expert/25842 -https://www.oceanexpert.org/expert/21525 -https://www.oceanexpert.org/expert/43426 -https://www.oceanexpert.org/expert/43392 -https://www.oceanexpert.org/expert/44917 -https://www.oceanexpert.org/expert/33029 -https://www.oceanexpert.org/event/1955 -https://www.oceanexpert.org/institution/14173 -https://www.oceanexpert.org/expert/45348 -https://www.oceanexpert.org/expert/36117 -https://www.oceanexpert.org/expert/43448 -https://www.oceanexpert.org/event/1988 -https://www.oceanexpert.org/expert/30159 -https://www.oceanexpert.org/expert/32673 -https://www.oceanexpert.org/institution/16972 -https://www.oceanexpert.org/expert/36584 -https://www.oceanexpert.org/expert/48669 -https://www.oceanexpert.org/expert/24635 -https://www.oceanexpert.org/expert/33496 -https://www.oceanexpert.org/expert/25149 -https://www.oceanexpert.org/event/1350 -https://www.oceanexpert.org/expert/46734 -https://www.oceanexpert.org/institution/20432 -https://www.oceanexpert.org/expert/36318 -https://www.oceanexpert.org/event/1168 -https://www.oceanexpert.org/expert/6462 -https://www.oceanexpert.org/expert/16750 -https://www.oceanexpert.org/expert/38872 -https://www.oceanexpert.org/expert/25558 -https://www.oceanexpert.org/expert/25889 -https://www.oceanexpert.org/event/1556 -https://www.oceanexpert.org/expert/33359 -https://www.oceanexpert.org/expert/29361 -https://www.oceanexpert.org/expert/48808 -https://www.oceanexpert.org/expert/43121 -https://www.oceanexpert.org/expert/43833 -https://www.oceanexpert.org/expert/8455 -https://www.oceanexpert.org/expert/41227 -https://www.oceanexpert.org/institution/21438 -https://www.oceanexpert.org/expert/21450 -https://www.oceanexpert.org/institution/22009 -https://www.oceanexpert.org/expert/42622 -https://www.oceanexpert.org/expert/44294 -https://www.oceanexpert.org/institution/15389 -https://www.oceanexpert.org/expert/20793 -https://www.oceanexpert.org/expert/47515 -https://www.oceanexpert.org/expert/47329 -https://www.oceanexpert.org/expert/24377 -https://www.oceanexpert.org/institution/17922 -https://www.oceanexpert.org/expert/3222 -https://www.oceanexpert.org/expert/26972 -https://www.oceanexpert.org/expert/40314 -https://www.oceanexpert.org/expert/15668 -https://www.oceanexpert.org/institution/4922 -https://www.oceanexpert.org/expert/42965 -https://www.oceanexpert.org/expert/11273 -https://www.oceanexpert.org/expert/19674 -https://www.oceanexpert.org/expert/35777 -https://www.oceanexpert.org/event/960 -https://www.oceanexpert.org/expert/20040 -https://www.oceanexpert.org/expert/386 -https://www.oceanexpert.org/expert/46305 -https://www.oceanexpert.org/expert/36601 -https://www.oceanexpert.org/event/2565 -https://www.oceanexpert.org/expert/18392 -https://www.oceanexpert.org/expert/34732 -https://www.oceanexpert.org/expert/17330 -https://www.oceanexpert.org/expert/47766 -https://www.oceanexpert.org/expert/44237 -https://www.oceanexpert.org/expert/18837 -https://www.oceanexpert.org/institution/21944 -https://www.oceanexpert.org/expert/4879 -https://www.oceanexpert.org/expert/44016 -https://www.oceanexpert.org/expert/33878 -https://www.oceanexpert.org/expert/20943 -https://www.oceanexpert.org/expert/22762 -https://www.oceanexpert.org/expert/40050 -https://www.oceanexpert.org/institution/15806 -https://www.oceanexpert.org/expert/15529 -https://www.oceanexpert.org/expert/28110 -https://www.oceanexpert.org/expert/33626 -https://www.oceanexpert.org/expert/32293 -https://www.oceanexpert.org/expert/22542 -https://www.oceanexpert.org/event/2563 -https://www.oceanexpert.org/institution/21961 -https://www.oceanexpert.org/expert/36206 -https://www.oceanexpert.org/expert/46670 -https://www.oceanexpert.org/event/3088 -https://www.oceanexpert.org/expert/27123 -https://www.oceanexpert.org/event/1702 -https://www.oceanexpert.org/expert/17648 -https://www.oceanexpert.org/expert/36927 -https://www.oceanexpert.org/expert/46896 -https://www.oceanexpert.org/expert/20994 -https://www.oceanexpert.org/institution/19215 -https://www.oceanexpert.org/event/2932 -https://www.oceanexpert.org/event/3003 -https://www.oceanexpert.org/expert/4420 -https://www.oceanexpert.org/expert/30177 -https://www.oceanexpert.org/expert/19944 -https://www.oceanexpert.org/event/2247 -https://www.oceanexpert.org/expert/35482 -https://www.oceanexpert.org/expert/24065 -https://www.oceanexpert.org/expert/26741 -https://www.oceanexpert.org/expert/40276 -https://www.oceanexpert.org/expert/13813 -https://www.oceanexpert.org/expert/23599 -https://www.oceanexpert.org/institution/20757 -https://www.oceanexpert.org/expert/29488 -https://www.oceanexpert.org/expert/39070 -https://www.oceanexpert.org/expert/31768 -https://www.oceanexpert.org/expert/43929 -https://www.oceanexpert.org/expert/42520 -https://www.oceanexpert.org/expert/17781 -https://www.oceanexpert.org/expert/14925 -https://www.oceanexpert.org/institution/19889 -https://www.oceanexpert.org/expert/7181 -https://www.oceanexpert.org/event/1453 -https://www.oceanexpert.org/expert/12885 -https://www.oceanexpert.org/expert/24139 -https://www.oceanexpert.org/expert/33742 -https://www.oceanexpert.org/event/896 -https://www.oceanexpert.org/expert/45568 -https://www.oceanexpert.org/expert/44709 -https://www.oceanexpert.org/institution/14045 -https://www.oceanexpert.org/event/667 -https://www.oceanexpert.org/institution/18870 -https://www.oceanexpert.org/expert/17562 -https://www.oceanexpert.org/expert/41678 -https://www.oceanexpert.org/institution/21123 -https://www.oceanexpert.org/expert/18429 -https://www.oceanexpert.org/expert/28306 -https://www.oceanexpert.org/expert/12747 -https://www.oceanexpert.org/institution/12258 -https://www.oceanexpert.org/institution/17300 -https://www.oceanexpert.org/expert/15549 -https://www.oceanexpert.org/expert/23250 -https://www.oceanexpert.org/expert/43571 -https://www.oceanexpert.org/expert/34925 -https://www.oceanexpert.org/institution/11514 -https://www.oceanexpert.org/institution/20468 -https://www.oceanexpert.org/expert/43095 -https://www.oceanexpert.org/expert/46504 -https://www.oceanexpert.org/expert/33086 -https://www.oceanexpert.org/institution/5944 -https://www.oceanexpert.org/event/1792 -https://www.oceanexpert.org/expert/37852 -https://www.oceanexpert.org/institution/16870 -https://www.oceanexpert.org/expert/14314 -https://www.oceanexpert.org/expert/43067 -https://www.oceanexpert.org/expert/36329 -https://www.oceanexpert.org/expert/34328 -https://www.oceanexpert.org/institution/17802 -https://www.oceanexpert.org/institution/13675 -https://www.oceanexpert.org/event/3299 -https://www.oceanexpert.org/event/640 -https://www.oceanexpert.org/expert/27470 -https://www.oceanexpert.org/expert/45393 -https://www.oceanexpert.org/expert/44915 -https://www.oceanexpert.org/expert/35360 -https://www.oceanexpert.org/institution/15292 -https://www.oceanexpert.org/institution/19441 -https://www.oceanexpert.org/expert/43691 -https://www.oceanexpert.org/event/1496 -https://www.oceanexpert.org/expert/19321 -https://www.oceanexpert.org/expert/27631 -https://www.oceanexpert.org/expert/32540 -https://www.oceanexpert.org/expert/19840 -https://www.oceanexpert.org/expert/22793 -https://www.oceanexpert.org/expert/37327 -https://www.oceanexpert.org/expert/36124 -https://www.oceanexpert.org/expert/47745 -https://www.oceanexpert.org/expert/19718 -https://www.oceanexpert.org/expert/21272 -https://www.oceanexpert.org/institution/19917 -https://www.oceanexpert.org/expert/27428 -https://www.oceanexpert.org/event/991 -https://www.oceanexpert.org/expert/43080 -https://www.oceanexpert.org/expert/37474 -https://www.oceanexpert.org/institution/20036 -https://www.oceanexpert.org/expert/43217 -https://www.oceanexpert.org/institution/20102 -https://www.oceanexpert.org/expert/47468 -https://www.oceanexpert.org/event/2434 -https://www.oceanexpert.org/institution/15615 -https://www.oceanexpert.org/expert/19673 -https://www.oceanexpert.org/expert/21984 -https://www.oceanexpert.org/expert/21218 -https://www.oceanexpert.org/institution/21114 -https://www.oceanexpert.org/institution/19413 -https://www.oceanexpert.org/event/866 -https://www.oceanexpert.org/expert/15634 -https://www.oceanexpert.org/expert/48867 -https://www.oceanexpert.org/expert/16771 -https://www.oceanexpert.org/event/1654 -https://www.oceanexpert.org/expert/24228 -https://www.oceanexpert.org/expert/48640 -https://www.oceanexpert.org/event/1320 -https://www.oceanexpert.org/expert/48784 -https://www.oceanexpert.org/expert/18490 -https://www.oceanexpert.org/expert/41037 -https://www.oceanexpert.org/expert/43137 -https://www.oceanexpert.org/event/1240 -https://www.oceanexpert.org/institution/14127 -https://www.oceanexpert.org/expert/48277 -https://www.oceanexpert.org/expert/35315 -https://www.oceanexpert.org/expert/28873 -https://www.oceanexpert.org/expert/32747 -https://www.oceanexpert.org/expert/48027 -https://www.oceanexpert.org/expert/20042 -https://www.oceanexpert.org/expert/19019 -https://www.oceanexpert.org/institution/7026 -https://www.oceanexpert.org/expert/38062 -https://www.oceanexpert.org/expert/38021 -https://www.oceanexpert.org/expert/30109 -https://www.oceanexpert.org/expert/18350 -https://www.oceanexpert.org/event/2855 -https://www.oceanexpert.org/expert/31692 -https://www.oceanexpert.org/expert/19556 -https://www.oceanexpert.org/institution/10651 -https://www.oceanexpert.org/expert/18278 -https://www.oceanexpert.org/expert/38713 -https://www.oceanexpert.org/expert/30787 -https://www.oceanexpert.org/expert/27498 -https://www.oceanexpert.org/expert/49008 -https://www.oceanexpert.org/expert/27959 -https://www.oceanexpert.org/institution/11316 -https://www.oceanexpert.org/expert/32398 -https://www.oceanexpert.org/event/590 -https://www.oceanexpert.org/institution/8760 -https://www.oceanexpert.org/expert/27526 -https://www.oceanexpert.org/expert/47461 -https://www.oceanexpert.org/expert/4773 -https://www.oceanexpert.org/expert/23731 -https://www.oceanexpert.org/expert/38254 -https://www.oceanexpert.org/institution/13818 -https://www.oceanexpert.org/expert/47596 -https://www.oceanexpert.org/expert/31596 -https://www.oceanexpert.org/expert/15978 -https://www.oceanexpert.org/expert/21692 -https://www.oceanexpert.org/institution/11466 -https://www.oceanexpert.org/event/3176 -https://www.oceanexpert.org/expert/27257 -https://www.oceanexpert.org/expert/24249 -https://www.oceanexpert.org/expert/25282 -https://www.oceanexpert.org/expert/1876 -https://www.oceanexpert.org/expert/21703 -https://www.oceanexpert.org/expert/29833 -https://www.oceanexpert.org/expert/16885 -https://www.oceanexpert.org/event/1436 -https://www.oceanexpert.org/expert/24697 -https://www.oceanexpert.org/expert/34695 -https://www.oceanexpert.org/expert/36264 -https://www.oceanexpert.org/expert/31835 -https://www.oceanexpert.org/expert/48932 -https://www.oceanexpert.org/expert/19985 -https://www.oceanexpert.org/expert/18251 -https://www.oceanexpert.org/institution/13420 -https://www.oceanexpert.org/expert/1070 -https://www.oceanexpert.org/event/1454 -https://www.oceanexpert.org/expert/13106 -https://www.oceanexpert.org/expert/45527 -https://www.oceanexpert.org/event/260 -https://www.oceanexpert.org/expert/33557 -https://www.oceanexpert.org/expert/29055 -https://www.oceanexpert.org/event/1608 -https://www.oceanexpert.org/expert/44457 -https://www.oceanexpert.org/expert/35258 -https://www.oceanexpert.org/expert/48820 -https://www.oceanexpert.org/event/595 -https://www.oceanexpert.org/expert/33262 -https://www.oceanexpert.org/expert/36597 -https://www.oceanexpert.org/expert/13694 -https://www.oceanexpert.org/event/2319 -https://www.oceanexpert.org/expert/48310 -https://www.oceanexpert.org/expert/26833 -https://www.oceanexpert.org/expert/15883 -https://www.oceanexpert.org/expert/34990 -https://www.oceanexpert.org/expert/25896 -https://www.oceanexpert.org/expert/40674 -https://www.oceanexpert.org/expert/17920 -https://www.oceanexpert.org/institution/5027 -https://www.oceanexpert.org/expert/13144 -https://www.oceanexpert.org/institution/8537 -https://www.oceanexpert.org/expert/17299 -https://www.oceanexpert.org/institution/13316 -https://www.oceanexpert.org/expert/46691 -https://www.oceanexpert.org/expert/26344 -https://www.oceanexpert.org/institution/18268 -https://www.oceanexpert.org/expert/40069 -https://www.oceanexpert.org/institution/16851 -https://www.oceanexpert.org/expert/38371 -https://www.oceanexpert.org/expert/10989 -https://www.oceanexpert.org/expert/24958 -https://www.oceanexpert.org/institution/6990 -https://www.oceanexpert.org/expert/21779 -https://www.oceanexpert.org/event/1192 -https://www.oceanexpert.org/institution/15965 -https://www.oceanexpert.org/expert/11530 -https://www.oceanexpert.org/expert/34500 -https://www.oceanexpert.org/expert/34358 -https://www.oceanexpert.org/expert/47183 -https://www.oceanexpert.org/expert/34763 -https://www.oceanexpert.org/expert/35047 -https://www.oceanexpert.org/institution/18122 -https://www.oceanexpert.org/institution/18437 -https://www.oceanexpert.org/institution/16788 -https://www.oceanexpert.org/expert/27173 -https://www.oceanexpert.org/event/630 -https://www.oceanexpert.org/expert/36539 -https://www.oceanexpert.org/expert/20416 -https://www.oceanexpert.org/expert/29139 -https://www.oceanexpert.org/event/1851 -https://www.oceanexpert.org/event/1333 -https://www.oceanexpert.org/institution/12773 -https://www.oceanexpert.org/expert/25943 -https://www.oceanexpert.org/institution/18636 -https://www.oceanexpert.org/institution/10756 -https://www.oceanexpert.org/expert/37802 -https://www.oceanexpert.org/expert/18730 -https://www.oceanexpert.org/expert/24007 -https://www.oceanexpert.org/expert/16344 -https://www.oceanexpert.org/expert/29233 -https://www.oceanexpert.org/expert/32717 -https://www.oceanexpert.org/expert/32587 -https://www.oceanexpert.org/institution/15805 -https://www.oceanexpert.org/expert/45540 -https://www.oceanexpert.org/expert/48156 -https://www.oceanexpert.org/expert/37555 -https://www.oceanexpert.org/expert/28223 -https://www.oceanexpert.org/expert/36627 -https://www.oceanexpert.org/expert/41041 -https://www.oceanexpert.org/expert/31157 -https://www.oceanexpert.org/institution/17046 -https://www.oceanexpert.org/event/2495 -https://www.oceanexpert.org/event/1445 -https://www.oceanexpert.org/expert/44909 -https://www.oceanexpert.org/expert/36606 -https://www.oceanexpert.org/expert/24645 -https://www.oceanexpert.org/institution/13092 -https://www.oceanexpert.org/institution/20235 -https://www.oceanexpert.org/expert/36698 -https://www.oceanexpert.org/institution/19752 -https://www.oceanexpert.org/expert/12646 -https://www.oceanexpert.org/expert/13853 -https://www.oceanexpert.org/expert/12615 -https://www.oceanexpert.org/institution/19390 -https://www.oceanexpert.org/expert/17581 -https://www.oceanexpert.org/expert/48723 -https://www.oceanexpert.org/expert/42658 -https://www.oceanexpert.org/institution/10730 -https://www.oceanexpert.org/expert/36612 -https://www.oceanexpert.org/institution/19980 -https://www.oceanexpert.org/institution/14334 -https://www.oceanexpert.org/institution/21775 -https://www.oceanexpert.org/expert/32678 -https://www.oceanexpert.org/expert/29687 -https://www.oceanexpert.org/expert/27535 -https://www.oceanexpert.org/expert/17580 -https://www.oceanexpert.org/expert/34495 -https://www.oceanexpert.org/expert/38221 -https://www.oceanexpert.org/institution/21732 -https://www.oceanexpert.org/expert/35876 -https://www.oceanexpert.org/expert/35465 -https://www.oceanexpert.org/event/3124 -https://www.oceanexpert.org/institution/14940 -https://www.oceanexpert.org/expert/32619 -https://www.oceanexpert.org/expert/22803 -https://www.oceanexpert.org/expert/24628 -https://www.oceanexpert.org/expert/27757 -https://www.oceanexpert.org/expert/30795 -https://www.oceanexpert.org/expert/27061 -https://www.oceanexpert.org/expert/42872 -https://www.oceanexpert.org/event/2937 -https://www.oceanexpert.org/expert/22425 -https://www.oceanexpert.org/event/215 -https://www.oceanexpert.org/expert/22244 -https://www.oceanexpert.org/institution/21704 -https://www.oceanexpert.org/institution/6216 -https://www.oceanexpert.org/expert/21549 -https://www.oceanexpert.org/expert/25915 -https://www.oceanexpert.org/institution/19724 -https://www.oceanexpert.org/expert/32803 -https://www.oceanexpert.org/institution/11986 -https://www.oceanexpert.org/expert/18167 -https://www.oceanexpert.org/expert/45939 -https://www.oceanexpert.org/event/507 -https://www.oceanexpert.org/institution/16691 -https://www.oceanexpert.org/expert/11610 -https://www.oceanexpert.org/expert/10851 -https://www.oceanexpert.org/expert/22432 -https://www.oceanexpert.org/expert/26155 -https://www.oceanexpert.org/expert/1700 -https://www.oceanexpert.org/expert/27483 -https://www.oceanexpert.org/expert/11578 -https://www.oceanexpert.org/expert/37422 -https://www.oceanexpert.org/event/2214 -https://www.oceanexpert.org/expert/46750 -https://www.oceanexpert.org/expert/29527 -https://www.oceanexpert.org/expert/42423 -https://www.oceanexpert.org/expert/27534 -https://www.oceanexpert.org/institution/22167 -https://www.oceanexpert.org/expert/14891 -https://www.oceanexpert.org/expert/12040 -https://www.oceanexpert.org/event/2975 -https://www.oceanexpert.org/expert/45610 -https://www.oceanexpert.org/expert/32531 -https://www.oceanexpert.org/expert/19797 -https://www.oceanexpert.org/expert/25701 -https://www.oceanexpert.org/expert/8843 -https://www.oceanexpert.org/expert/37851 -https://www.oceanexpert.org/expert/42525 -https://www.oceanexpert.org/institution/20663 -https://www.oceanexpert.org/institution/20362 -https://www.oceanexpert.org/expert/23321 -https://www.oceanexpert.org/expert/23790 -https://www.oceanexpert.org/event/1502 -https://www.oceanexpert.org/expert/27512 -https://www.oceanexpert.org/event/1164 -https://www.oceanexpert.org/expert/23207 -https://www.oceanexpert.org/expert/25197 -https://www.oceanexpert.org/institution/6989 -https://www.oceanexpert.org/expert/47755 -https://www.oceanexpert.org/expert/32958 -https://www.oceanexpert.org/expert/4721 -https://www.oceanexpert.org/expert/32988 -https://www.oceanexpert.org/expert/48348 -https://www.oceanexpert.org/expert/36509 -https://www.oceanexpert.org/expert/26349 -https://www.oceanexpert.org/institution/19390 -https://www.oceanexpert.org/event/3031 -https://www.oceanexpert.org/expert/21847 -https://www.oceanexpert.org/expert/45972 -https://www.oceanexpert.org/expert/21500 -https://www.oceanexpert.org/expert/35080 -https://www.oceanexpert.org/expert/23873 -https://www.oceanexpert.org/expert/46560 -https://www.oceanexpert.org/institution/16016 -https://www.oceanexpert.org/expert/47215 -https://www.oceanexpert.org/expert/38002 -https://www.oceanexpert.org/expert/18579 -https://www.oceanexpert.org/event/1756 -https://www.oceanexpert.org/expert/18449 -https://www.oceanexpert.org/institution/11980 -https://www.oceanexpert.org/expert/32334 -https://www.oceanexpert.org/expert/47470 -https://www.oceanexpert.org/expert/25361 -https://www.oceanexpert.org/institution/15430 -https://www.oceanexpert.org/expert/42538 -https://www.oceanexpert.org/expert/16483 -https://www.oceanexpert.org/expert/11424 -https://www.oceanexpert.org/expert/45685 -https://www.oceanexpert.org/event/319 -https://www.oceanexpert.org/expert/22022 -https://www.oceanexpert.org/expert/16840 -https://www.oceanexpert.org/expert/23562 -https://www.oceanexpert.org/expert/44452 -https://www.oceanexpert.org/expert/2384 -https://www.oceanexpert.org/expert/22617 -https://www.oceanexpert.org/institution/21372 -https://www.oceanexpert.org/expert/48112 -https://www.oceanexpert.org/institution/17940 -https://www.oceanexpert.org/expert/24574 -https://www.oceanexpert.org/expert/23573 -https://www.oceanexpert.org/expert/18197 -https://www.oceanexpert.org/institution/21174 -https://www.oceanexpert.org/event/3299 -https://www.oceanexpert.org/expert/14803 -https://www.oceanexpert.org/event/945 -https://www.oceanexpert.org/expert/30826 -https://www.oceanexpert.org/expert/43575 -https://www.oceanexpert.org/expert/33341 -https://www.oceanexpert.org/expert/27269 -https://www.oceanexpert.org/expert/39130 -https://www.oceanexpert.org/institution/21022 -https://www.oceanexpert.org/expert/28256 -https://www.oceanexpert.org/institution/21230 -https://www.oceanexpert.org/institution/16677 -https://www.oceanexpert.org/expert/18306 -https://www.oceanexpert.org/expert/12496 -https://www.oceanexpert.org/expert/46844 -https://www.oceanexpert.org/expert/28695 -https://www.oceanexpert.org/expert/13156 -https://www.oceanexpert.org/expert/34789 -https://www.oceanexpert.org/expert/12298 -https://www.oceanexpert.org/expert/48933 -https://www.oceanexpert.org/expert/48195 -https://www.oceanexpert.org/expert/44198 -https://www.oceanexpert.org/expert/14439 -https://www.oceanexpert.org/expert/26460 -https://www.oceanexpert.org/expert/7657 -https://www.oceanexpert.org/expert/18761 -https://www.oceanexpert.org/expert/32762 -https://www.oceanexpert.org/expert/39177 -https://www.oceanexpert.org/institution/21770 -https://www.oceanexpert.org/expert/43738 -https://www.oceanexpert.org/expert/47914 -https://www.oceanexpert.org/expert/24878 -https://www.oceanexpert.org/expert/27176 -https://www.oceanexpert.org/expert/19581 -https://www.oceanexpert.org/institution/13118 -https://www.oceanexpert.org/event/505 -https://www.oceanexpert.org/expert/34764 -https://www.oceanexpert.org/expert/21998 -https://www.oceanexpert.org/expert/36756 -https://www.oceanexpert.org/expert/46242 -https://www.oceanexpert.org/expert/27508 -https://www.oceanexpert.org/expert/29396 -https://www.oceanexpert.org/expert/31949 -https://www.oceanexpert.org/expert/37235 -https://www.oceanexpert.org/expert/8820 -https://www.oceanexpert.org/expert/48058 -https://www.oceanexpert.org/expert/46816 -https://www.oceanexpert.org/institution/20801 -https://www.oceanexpert.org/expert/20074 -https://www.oceanexpert.org/expert/33447 -https://www.oceanexpert.org/expert/46763 -https://www.oceanexpert.org/expert/46941 -https://www.oceanexpert.org/institution/20865 -https://www.oceanexpert.org/expert/19780 -https://www.oceanexpert.org/expert/9502 -https://www.oceanexpert.org/event/2435 -https://www.oceanexpert.org/institution/12208 -https://www.oceanexpert.org/expert/27376 -https://www.oceanexpert.org/expert/39265 -https://www.oceanexpert.org/expert/47804 -https://www.oceanexpert.org/event/517 -https://www.oceanexpert.org/institution/13067 -https://www.oceanexpert.org/institution/10526 -https://www.oceanexpert.org/event/691 -https://www.oceanexpert.org/expert/26927 -https://www.oceanexpert.org/institution/14254 -https://www.oceanexpert.org/institution/17090 -https://www.oceanexpert.org/institution/11022 -https://www.oceanexpert.org/expert/11344 -https://www.oceanexpert.org/institution/21865 -https://www.oceanexpert.org/expert/19770 -https://www.oceanexpert.org/expert/18832 -https://www.oceanexpert.org/expert/32841 -https://www.oceanexpert.org/institution/7618 -https://www.oceanexpert.org/expert/6997 -https://www.oceanexpert.org/expert/22108 -https://www.oceanexpert.org/expert/33567 -https://www.oceanexpert.org/institution/10373 -https://www.oceanexpert.org/expert/31120 -https://www.oceanexpert.org/expert/26013 -https://www.oceanexpert.org/institution/20215 -https://www.oceanexpert.org/expert/27256 -https://www.oceanexpert.org/expert/21059 -https://www.oceanexpert.org/expert/2252 -https://www.oceanexpert.org/expert/26508 -https://www.oceanexpert.org/institution/5982 -https://www.oceanexpert.org/institution/17710 -https://www.oceanexpert.org/institution/19385 -https://www.oceanexpert.org/institution/21143 -https://www.oceanexpert.org/expert/19216 -https://www.oceanexpert.org/expert/46486 -https://www.oceanexpert.org/institution/11237 -https://www.oceanexpert.org/institution/12372 -https://www.oceanexpert.org/expert/30025 -https://www.oceanexpert.org/institution/7004 -https://www.oceanexpert.org/expert/23298 -https://www.oceanexpert.org/institution/18292 -https://www.oceanexpert.org/institution/21430 -https://www.oceanexpert.org/institution/21181 -https://www.oceanexpert.org/expert/29376 -https://www.oceanexpert.org/expert/23892 -https://www.oceanexpert.org/expert/44733 -https://www.oceanexpert.org/event/2740 -https://www.oceanexpert.org/expert/19493 -https://www.oceanexpert.org/institution/18570 -https://www.oceanexpert.org/expert/28457 -https://www.oceanexpert.org/expert/1117 -https://www.oceanexpert.org/institution/9486 -https://www.oceanexpert.org/expert/44101 -https://www.oceanexpert.org/institution/22085 -https://www.oceanexpert.org/event/760 -https://www.oceanexpert.org/expert/21924 -https://www.oceanexpert.org/expert/37521 -https://www.oceanexpert.org/institution/11835 -https://www.oceanexpert.org/expert/31576 -https://www.oceanexpert.org/event/67 -https://www.oceanexpert.org/expert/18429 -https://www.oceanexpert.org/expert/22760 -https://www.oceanexpert.org/expert/11595 -https://www.oceanexpert.org/institution/19573 -https://www.oceanexpert.org/expert/16863 -https://www.oceanexpert.org/expert/31056 -https://www.oceanexpert.org/institution/14178 -https://www.oceanexpert.org/expert/15773 -https://www.oceanexpert.org/event/1280 -https://www.oceanexpert.org/expert/48665 -https://www.oceanexpert.org/expert/1149 -https://www.oceanexpert.org/institution/6857 -https://www.oceanexpert.org/event/2217 -https://www.oceanexpert.org/expert/21239 -https://www.oceanexpert.org/expert/11859 -https://www.oceanexpert.org/institution/19823 -https://www.oceanexpert.org/expert/29433 -https://www.oceanexpert.org/expert/24459 -https://www.oceanexpert.org/expert/30819 -https://www.oceanexpert.org/expert/24017 -https://www.oceanexpert.org/expert/34596 -https://www.oceanexpert.org/institution/17759 -https://www.oceanexpert.org/expert/36646 -https://www.oceanexpert.org/institution/18307 -https://www.oceanexpert.org/expert/20266 -https://www.oceanexpert.org/institution/18254 -https://www.oceanexpert.org/expert/48091 -https://www.oceanexpert.org/institution/20060 -https://www.oceanexpert.org/event/344 -https://www.oceanexpert.org/event/2949 -https://www.oceanexpert.org/expert/25700 -https://www.oceanexpert.org/institution/9337 -https://www.oceanexpert.org/institution/18027 -https://www.oceanexpert.org/expert/43206 -https://www.oceanexpert.org/expert/6991 -https://www.oceanexpert.org/expert/31881 -https://www.oceanexpert.org/expert/35409 -https://www.oceanexpert.org/event/252 -https://www.oceanexpert.org/event/39 -https://www.oceanexpert.org/expert/32669 -https://www.oceanexpert.org/event/2099 -https://www.oceanexpert.org/expert/38433 -https://www.oceanexpert.org/expert/43371 -https://www.oceanexpert.org/expert/29859 -https://www.oceanexpert.org/event/3063 -https://www.oceanexpert.org/expert/44615 -https://www.oceanexpert.org/expert/27293 -https://www.oceanexpert.org/expert/17236 -https://www.oceanexpert.org/expert/29008 -https://www.oceanexpert.org/expert/22766 -https://www.oceanexpert.org/expert/32506 -https://www.oceanexpert.org/expert/21849 -https://www.oceanexpert.org/expert/33525 -https://www.oceanexpert.org/expert/33563 -https://www.oceanexpert.org/expert/25894 -https://www.oceanexpert.org/expert/21793 -https://www.oceanexpert.org/institution/18487 -https://www.oceanexpert.org/institution/10505 -https://www.oceanexpert.org/expert/38083 -https://www.oceanexpert.org/event/2174 -https://www.oceanexpert.org/institution/10871 -https://www.oceanexpert.org/expert/43370 -https://www.oceanexpert.org/expert/39666 -https://www.oceanexpert.org/expert/13537 -https://www.oceanexpert.org/expert/17919 -https://www.oceanexpert.org/expert/32153 -https://www.oceanexpert.org/expert/19375 -https://www.oceanexpert.org/expert/24425 -https://www.oceanexpert.org/expert/23966 -https://www.oceanexpert.org/expert/8413 -https://www.oceanexpert.org/expert/17111 -https://www.oceanexpert.org/expert/43966 -https://www.oceanexpert.org/expert/35559 -https://www.oceanexpert.org/expert/44265 -https://www.oceanexpert.org/institution/20170 -https://www.oceanexpert.org/institution/9055 -https://www.oceanexpert.org/expert/12986 -https://www.oceanexpert.org/institution/17043 -https://www.oceanexpert.org/expert/11098 -https://www.oceanexpert.org/institution/11345 -https://www.oceanexpert.org/institution/20623 -https://www.oceanexpert.org/institution/6824 -https://www.oceanexpert.org/expert/46743 -https://www.oceanexpert.org/event/2813 -https://www.oceanexpert.org/event/944 -https://www.oceanexpert.org/expert/11195 -https://www.oceanexpert.org/event/1540 -https://www.oceanexpert.org/institution/18928 -https://www.oceanexpert.org/institution/5070 -https://www.oceanexpert.org/expert/42398 -https://www.oceanexpert.org/event/1560 -https://www.oceanexpert.org/event/692 -https://www.oceanexpert.org/institution/21408 -https://www.oceanexpert.org/expert/18215 -https://www.oceanexpert.org/expert/43344 -https://www.oceanexpert.org/expert/37225 -https://www.oceanexpert.org/institution/13129 -https://www.oceanexpert.org/expert/36247 -https://www.oceanexpert.org/institution/12734 -https://www.oceanexpert.org/expert/4659 -https://www.oceanexpert.org/expert/45843 -https://www.oceanexpert.org/expert/17427 -https://www.oceanexpert.org/expert/45802 -https://www.oceanexpert.org/expert/25743 -https://www.oceanexpert.org/expert/22532 -https://www.oceanexpert.org/expert/27576 -https://www.oceanexpert.org/institution/21796 -https://www.oceanexpert.org/expert/44544 -https://www.oceanexpert.org/expert/22948 -https://www.oceanexpert.org/institution/13252 -https://www.oceanexpert.org/expert/25947 -https://www.oceanexpert.org/event/982 -https://www.oceanexpert.org/event/2969 -https://www.oceanexpert.org/institution/14214 -https://www.oceanexpert.org/expert/35235 -https://www.oceanexpert.org/expert/17180 -https://www.oceanexpert.org/expert/33689 -https://www.oceanexpert.org/expert/13278 -https://www.oceanexpert.org/expert/37248 -https://www.oceanexpert.org/expert/20806 -https://www.oceanexpert.org/expert/22165 -https://www.oceanexpert.org/event/2688 -https://www.oceanexpert.org/institution/21136 -https://www.oceanexpert.org/institution/13587 -https://www.oceanexpert.org/event/18 -https://www.oceanexpert.org/expert/16318 -https://www.oceanexpert.org/expert/6900 -https://www.oceanexpert.org/expert/12235 -https://www.oceanexpert.org/expert/48769 -https://www.oceanexpert.org/expert/30972 -https://www.oceanexpert.org/expert/45142 -https://www.oceanexpert.org/institution/18849 -https://www.oceanexpert.org/institution/12429 -https://www.oceanexpert.org/institution/19427 -https://www.oceanexpert.org/expert/48309 -https://www.oceanexpert.org/expert/35392 -https://www.oceanexpert.org/expert/35952 -https://www.oceanexpert.org/expert/18631 -https://www.oceanexpert.org/event/653 -https://www.oceanexpert.org/expert/33603 -https://www.oceanexpert.org/institution/22151 -https://www.oceanexpert.org/expert/19753 -https://www.oceanexpert.org/institution/21063 -https://www.oceanexpert.org/expert/45886 -https://www.oceanexpert.org/institution/18488 -https://www.oceanexpert.org/institution/18527 -https://www.oceanexpert.org/expert/32870 -https://www.oceanexpert.org/institution/12652 -https://www.oceanexpert.org/institution/17765 -https://www.oceanexpert.org/expert/18249 -https://www.oceanexpert.org/expert/42780 -https://www.oceanexpert.org/expert/16153 -https://www.oceanexpert.org/expert/24356 -https://www.oceanexpert.org/institution/13988 -https://www.oceanexpert.org/expert/16843 -https://www.oceanexpert.org/expert/33619 -https://www.oceanexpert.org/expert/13737 -https://www.oceanexpert.org/expert/33882 -https://www.oceanexpert.org/institution/15381 -https://www.oceanexpert.org/event/264 -https://www.oceanexpert.org/expert/19883 -https://www.oceanexpert.org/event/2742 -https://www.oceanexpert.org/expert/28372 -https://www.oceanexpert.org/institution/17946 -https://www.oceanexpert.org/expert/23210 -https://www.oceanexpert.org/expert/31182 -https://www.oceanexpert.org/expert/40536 -https://www.oceanexpert.org/expert/42208 -https://www.oceanexpert.org/institution/18113 -https://www.oceanexpert.org/institution/6360 -https://www.oceanexpert.org/expert/13489 -https://www.oceanexpert.org/expert/26076 -https://www.oceanexpert.org/institution/21396 -https://www.oceanexpert.org/institution/5199 -https://www.oceanexpert.org/institution/17973 -https://www.oceanexpert.org/expert/20727 -https://www.oceanexpert.org/expert/48512 -https://www.oceanexpert.org/expert/24680 -https://www.oceanexpert.org/institution/21527 -https://www.oceanexpert.org/institution/12961 -https://www.oceanexpert.org/institution/21397 -https://www.oceanexpert.org/institution/18549 -https://www.oceanexpert.org/expert/49041 -https://www.oceanexpert.org/expert/36715 -https://www.oceanexpert.org/expert/43476 -https://www.oceanexpert.org/expert/27946 -https://www.oceanexpert.org/expert/35301 -https://www.oceanexpert.org/expert/27572 -https://www.oceanexpert.org/expert/33322 -https://www.oceanexpert.org/expert/26217 -https://www.oceanexpert.org/institution/18336 -https://www.oceanexpert.org/expert/21042 -https://www.oceanexpert.org/institution/21096 -https://www.oceanexpert.org/institution/18873 -https://www.oceanexpert.org/event/1973 -https://www.oceanexpert.org/institution/6161 -https://www.oceanexpert.org/expert/25830 -https://www.oceanexpert.org/expert/30311 -https://www.oceanexpert.org/institution/11199 -https://www.oceanexpert.org/expert/21699 -https://www.oceanexpert.org/expert/44014 -https://www.oceanexpert.org/expert/24372 -https://www.oceanexpert.org/event/338 -https://www.oceanexpert.org/expert/43970 -https://www.oceanexpert.org/expert/31685 -https://www.oceanexpert.org/expert/19823 -https://www.oceanexpert.org/event/2395 -https://www.oceanexpert.org/expert/33343 -https://www.oceanexpert.org/expert/48103 -https://www.oceanexpert.org/event/1402 -https://www.oceanexpert.org/expert/23826 -https://www.oceanexpert.org/expert/17642 -https://www.oceanexpert.org/expert/16929 -https://www.oceanexpert.org/expert/36851 -https://www.oceanexpert.org/event/2768 -https://www.oceanexpert.org/expert/32134 -https://www.oceanexpert.org/expert/43388 -https://www.oceanexpert.org/expert/37746 -https://www.oceanexpert.org/event/1288 -https://www.oceanexpert.org/event/55 -https://www.oceanexpert.org/expert/12157 -https://www.oceanexpert.org/expert/48049 -https://www.oceanexpert.org/event/475 -https://www.oceanexpert.org/expert/30711 -https://www.oceanexpert.org/expert/16280 -https://www.oceanexpert.org/expert/40024 -https://www.oceanexpert.org/expert/27080 -https://www.oceanexpert.org/institution/20579 -https://www.oceanexpert.org/institution/21496 -https://www.oceanexpert.org/institution/22079 -https://www.oceanexpert.org/institution/5821 -https://www.oceanexpert.org/expert/23215 -https://www.oceanexpert.org/event/295 -https://www.oceanexpert.org/expert/35836 -https://www.oceanexpert.org/institution/21372 -https://www.oceanexpert.org/expert/20881 -https://www.oceanexpert.org/expert/47145 -https://www.oceanexpert.org/institution/21447 -https://www.oceanexpert.org/expert/17268 -https://www.oceanexpert.org/expert/24842 -https://www.oceanexpert.org/expert/23431 -https://www.oceanexpert.org/expert/43563 -https://www.oceanexpert.org/event/291 -https://www.oceanexpert.org/institution/20638 -https://www.oceanexpert.org/expert/22547 -https://www.oceanexpert.org/expert/38212 -https://www.oceanexpert.org/expert/21295 -https://www.oceanexpert.org/expert/48180 -https://www.oceanexpert.org/expert/36978 -https://www.oceanexpert.org/expert/34558 -https://www.oceanexpert.org/expert/17387 -https://www.oceanexpert.org/expert/25066 -https://www.oceanexpert.org/expert/34939 -https://www.oceanexpert.org/institution/19799 -https://www.oceanexpert.org/expert/46160 -https://www.oceanexpert.org/expert/12791 -https://www.oceanexpert.org/expert/36284 -https://www.oceanexpert.org/expert/37962 -https://www.oceanexpert.org/institution/16835 -https://www.oceanexpert.org/expert/30048 -https://www.oceanexpert.org/expert/20798 -https://www.oceanexpert.org/expert/17270 -https://www.oceanexpert.org/expert/38274 -https://www.oceanexpert.org/institution/18749 -https://www.oceanexpert.org/expert/31510 -https://www.oceanexpert.org/expert/45896 -https://www.oceanexpert.org/expert/22952 -https://www.oceanexpert.org/event/1708 -https://www.oceanexpert.org/expert/21501 -https://www.oceanexpert.org/event/3169 -https://www.oceanexpert.org/institution/21140 -https://www.oceanexpert.org/institution/21097 -https://www.oceanexpert.org/institution/10928 -https://www.oceanexpert.org/expert/27957 -https://www.oceanexpert.org/institution/18005 -https://www.oceanexpert.org/expert/46689 -https://www.oceanexpert.org/expert/988 -https://www.oceanexpert.org/expert/31183 -https://www.oceanexpert.org/expert/48023 -https://www.oceanexpert.org/institution/18131 -https://www.oceanexpert.org/institution/20808 -https://www.oceanexpert.org/expert/32899 -https://www.oceanexpert.org/expert/19533 -https://www.oceanexpert.org/expert/32865 -https://www.oceanexpert.org/expert/37881 -https://www.oceanexpert.org/institution/15660 -https://www.oceanexpert.org/expert/45039 -https://www.oceanexpert.org/expert/35396 -https://www.oceanexpert.org/institution/19349 -https://www.oceanexpert.org/expert/33091 -https://www.oceanexpert.org/institution/19696 -https://www.oceanexpert.org/expert/34131 -https://www.oceanexpert.org/expert/44751 -https://www.oceanexpert.org/expert/43596 -https://www.oceanexpert.org/expert/46599 -https://www.oceanexpert.org/institution/18502 -https://www.oceanexpert.org/expert/25187 -https://www.oceanexpert.org/expert/42783 -https://www.oceanexpert.org/expert/21937 -https://www.oceanexpert.org/institution/18690 -https://www.oceanexpert.org/institution/7924 -https://www.oceanexpert.org/expert/34036 -https://www.oceanexpert.org/expert/42906 -https://www.oceanexpert.org/expert/8652 -https://www.oceanexpert.org/expert/48518 -https://www.oceanexpert.org/expert/43162 -https://www.oceanexpert.org/expert/23416 -https://www.oceanexpert.org/event/2041 -https://www.oceanexpert.org/institution/17555 -https://www.oceanexpert.org/institution/15076 -https://www.oceanexpert.org/institution/18812 -https://www.oceanexpert.org/expert/43504 -https://www.oceanexpert.org/expert/22082 -https://www.oceanexpert.org/institution/17363 -https://www.oceanexpert.org/institution/6675 -https://www.oceanexpert.org/institution/10758 -https://www.oceanexpert.org/institution/20555 -https://www.oceanexpert.org/expert/17926 -https://www.oceanexpert.org/expert/25730 -https://www.oceanexpert.org/institution/13867 -https://www.oceanexpert.org/expert/37246 -https://www.oceanexpert.org/institution/7430 -https://www.oceanexpert.org/expert/35989 -https://www.oceanexpert.org/event/1054 -https://www.oceanexpert.org/institution/11229 -https://www.oceanexpert.org/expert/36476 -https://www.oceanexpert.org/expert/45100 -https://www.oceanexpert.org/institution/18002 -https://www.oceanexpert.org/expert/43722 -https://www.oceanexpert.org/expert/26572 -https://www.oceanexpert.org/institution/10251 -https://www.oceanexpert.org/expert/37461 -https://www.oceanexpert.org/institution/21245 -https://www.oceanexpert.org/expert/25205 -https://www.oceanexpert.org/expert/26375 -https://www.oceanexpert.org/expert/48446 -https://www.oceanexpert.org/expert/27239 -https://www.oceanexpert.org/expert/36949 -https://www.oceanexpert.org/expert/34356 -https://www.oceanexpert.org/expert/34827 -https://www.oceanexpert.org/institution/12484 -https://www.oceanexpert.org/expert/15314 -https://www.oceanexpert.org/event/640 -https://www.oceanexpert.org/expert/29883 -https://www.oceanexpert.org/expert/15278 -https://www.oceanexpert.org/expert/44312 -https://www.oceanexpert.org/institution/15621 -https://www.oceanexpert.org/institution/20820 -https://www.oceanexpert.org/expert/23014 -https://www.oceanexpert.org/expert/43887 -https://www.oceanexpert.org/expert/32050 -https://www.oceanexpert.org/expert/33172 -https://www.oceanexpert.org/expert/11155 -https://www.oceanexpert.org/expert/48729 -https://www.oceanexpert.org/expert/35015 -https://www.oceanexpert.org/institution/5896 -https://www.oceanexpert.org/expert/38110 -https://www.oceanexpert.org/expert/25281 -https://www.oceanexpert.org/institution/12129 -https://www.oceanexpert.org/expert/19849 -https://www.oceanexpert.org/expert/17419 -https://www.oceanexpert.org/expert/33558 -https://www.oceanexpert.org/event/1418 -https://www.oceanexpert.org/expert/23121 -https://www.oceanexpert.org/expert/39858 -https://www.oceanexpert.org/expert/3743 -https://www.oceanexpert.org/institution/19746 -https://www.oceanexpert.org/institution/19561 -https://www.oceanexpert.org/event/1123 -https://www.oceanexpert.org/expert/16454 -https://www.oceanexpert.org/expert/22149 -https://www.oceanexpert.org/expert/32145 -https://www.oceanexpert.org/expert/21106 -https://www.oceanexpert.org/expert/7904 -https://www.oceanexpert.org/expert/34786 -https://www.oceanexpert.org/expert/36219 -https://www.oceanexpert.org/expert/25503 -https://www.oceanexpert.org/institution/20597 -https://www.oceanexpert.org/expert/14405 -https://www.oceanexpert.org/expert/21162 -https://www.oceanexpert.org/expert/34515 -https://www.oceanexpert.org/expert/22643 -https://www.oceanexpert.org/expert/22157 -https://www.oceanexpert.org/expert/13372 -https://www.oceanexpert.org/institution/14917 -https://www.oceanexpert.org/institution/12959 -https://www.oceanexpert.org/expert/23487 -https://www.oceanexpert.org/event/879 -https://www.oceanexpert.org/event/2016 -https://www.oceanexpert.org/expert/23246 -https://www.oceanexpert.org/event/1362 -https://www.oceanexpert.org/event/274 -https://www.oceanexpert.org/institution/13893 -https://www.oceanexpert.org/expert/30276 -https://www.oceanexpert.org/expert/25047 -https://www.oceanexpert.org/expert/35141 -https://www.oceanexpert.org/expert/16323 -https://www.oceanexpert.org/institution/19478 -https://www.oceanexpert.org/expert/12011 -https://www.oceanexpert.org/expert/21910 -https://www.oceanexpert.org/expert/19733 -https://www.oceanexpert.org/expert/11409 -https://www.oceanexpert.org/expert/4773 -https://www.oceanexpert.org/expert/18346 -https://www.oceanexpert.org/institution/11118 -https://www.oceanexpert.org/institution/16366 -https://www.oceanexpert.org/expert/48635 -https://www.oceanexpert.org/institution/19888 -https://www.oceanexpert.org/institution/20723 -https://www.oceanexpert.org/expert/46823 -https://www.oceanexpert.org/institution/13857 -https://www.oceanexpert.org/expert/47271 -https://www.oceanexpert.org/expert/29837 -https://www.oceanexpert.org/institution/20496 -https://www.oceanexpert.org/institution/14778 -https://www.oceanexpert.org/institution/20878 -https://www.oceanexpert.org/expert/47297 -https://www.oceanexpert.org/institution/19094 -https://www.oceanexpert.org/expert/46282 -https://www.oceanexpert.org/expert/35971 -https://www.oceanexpert.org/expert/28199 -https://www.oceanexpert.org/institution/20964 -https://www.oceanexpert.org/expert/35558 -https://www.oceanexpert.org/expert/43245 -https://www.oceanexpert.org/expert/44995 -https://www.oceanexpert.org/expert/35996 -https://www.oceanexpert.org/event/2225 -https://www.oceanexpert.org/institution/14707 -https://www.oceanexpert.org/expert/31993 -https://www.oceanexpert.org/expert/21637 -https://www.oceanexpert.org/expert/18603 -https://www.oceanexpert.org/expert/34866 -https://www.oceanexpert.org/expert/25137 -https://www.oceanexpert.org/expert/27362 -https://www.oceanexpert.org/expert/3178 -https://www.oceanexpert.org/expert/46791 -https://www.oceanexpert.org/expert/22120 -https://www.oceanexpert.org/expert/30948 -https://www.oceanexpert.org/expert/25073 -https://www.oceanexpert.org/expert/29651 -https://www.oceanexpert.org/expert/18864 -https://www.oceanexpert.org/expert/18489 -https://www.oceanexpert.org/institution/12667 -https://www.oceanexpert.org/expert/24459 -https://www.oceanexpert.org/expert/24818 -https://www.oceanexpert.org/expert/25818 -https://www.oceanexpert.org/expert/28419 -https://www.oceanexpert.org/expert/46232 -https://www.oceanexpert.org/expert/45617 -https://www.oceanexpert.org/expert/2006 -https://www.oceanexpert.org/event/581 -https://www.oceanexpert.org/event/18 -https://www.oceanexpert.org/expert/2629 -https://www.oceanexpert.org/expert/31772 -https://www.oceanexpert.org/expert/35604 -https://www.oceanexpert.org/expert/14277 -https://www.oceanexpert.org/institution/20873 -https://www.oceanexpert.org/expert/40535 -https://www.oceanexpert.org/expert/25066 -https://www.oceanexpert.org/institution/12129 -https://www.oceanexpert.org/expert/19896 -https://www.oceanexpert.org/expert/14139 -https://www.oceanexpert.org/institution/12641 -https://www.oceanexpert.org/event/2890 -https://www.oceanexpert.org/expert/46726 -https://www.oceanexpert.org/event/1519 -https://www.oceanexpert.org/expert/38291 -https://www.oceanexpert.org/expert/34827 -https://www.oceanexpert.org/expert/48122 -https://www.oceanexpert.org/expert/23930 -https://www.oceanexpert.org/expert/16771 -https://www.oceanexpert.org/expert/34884 -https://www.oceanexpert.org/expert/34276 -https://www.oceanexpert.org/institution/21966 -https://www.oceanexpert.org/institution/18398 -https://www.oceanexpert.org/expert/19827 -https://www.oceanexpert.org/expert/7696 -https://www.oceanexpert.org/expert/21224 -https://www.oceanexpert.org/institution/19940 -https://www.oceanexpert.org/expert/36039 -https://www.oceanexpert.org/expert/38390 -https://www.oceanexpert.org/institution/20991 -https://www.oceanexpert.org/expert/20425 -https://www.oceanexpert.org/expert/43935 -https://www.oceanexpert.org/expert/16506 -https://www.oceanexpert.org/event/3029 -https://www.oceanexpert.org/expert/19276 -https://www.oceanexpert.org/expert/11037 -https://www.oceanexpert.org/event/2011 -https://www.oceanexpert.org/expert/24394 -https://www.oceanexpert.org/event/1669 -https://www.oceanexpert.org/expert/29565 -https://www.oceanexpert.org/institution/9164 -https://www.oceanexpert.org/expert/48755 -https://www.oceanexpert.org/institution/20881 -https://www.oceanexpert.org/expert/27541 -https://www.oceanexpert.org/institution/10591 -https://www.oceanexpert.org/institution/19477 -https://www.oceanexpert.org/event/1345 -https://www.oceanexpert.org/event/2366 -https://www.oceanexpert.org/expert/48955 -https://www.oceanexpert.org/institution/17413 -https://www.oceanexpert.org/expert/21816 -https://www.oceanexpert.org/institution/15842 -https://www.oceanexpert.org/expert/48980 -https://www.oceanexpert.org/expert/23886 -https://www.oceanexpert.org/expert/42157 -https://www.oceanexpert.org/institution/18880 -https://www.oceanexpert.org/expert/35153 -https://www.oceanexpert.org/expert/19025 -https://www.oceanexpert.org/expert/48760 -https://www.oceanexpert.org/expert/30290 -https://www.oceanexpert.org/institution/18037 -https://www.oceanexpert.org/expert/34736 -https://www.oceanexpert.org/expert/15066 -https://www.oceanexpert.org/expert/20245 -https://www.oceanexpert.org/institution/8641 -https://www.oceanexpert.org/expert/17376 -https://www.oceanexpert.org/expert/43036 -https://www.oceanexpert.org/expert/27073 -https://www.oceanexpert.org/event/1220 -https://www.oceanexpert.org/expert/24480 -https://www.oceanexpert.org/institution/10730 -https://www.oceanexpert.org/expert/23822 -https://www.oceanexpert.org/event/2354 -https://www.oceanexpert.org/expert/18491 -https://www.oceanexpert.org/institution/20489 -https://www.oceanexpert.org/expert/46645 -https://www.oceanexpert.org/expert/6263 -https://www.oceanexpert.org/expert/24604 -https://www.oceanexpert.org/expert/36990 -https://www.oceanexpert.org/expert/35658 -https://www.oceanexpert.org/expert/16720 -https://www.oceanexpert.org/expert/34614 -https://www.oceanexpert.org/expert/31350 -https://www.oceanexpert.org/expert/1907 -https://www.oceanexpert.org/expert/45885 -https://www.oceanexpert.org/institution/15873 -https://www.oceanexpert.org/expert/38490 -https://www.oceanexpert.org/expert/42806 -https://www.oceanexpert.org/expert/24325 -https://www.oceanexpert.org/institution/17072 -https://www.oceanexpert.org/event/3126 -https://www.oceanexpert.org/institution/16326 -https://www.oceanexpert.org/expert/18750 -https://www.oceanexpert.org/expert/47914 -https://www.oceanexpert.org/expert/17605 -https://www.oceanexpert.org/event/690 -https://www.oceanexpert.org/institution/18449 -https://www.oceanexpert.org/expert/44590 -https://www.oceanexpert.org/institution/13421 -https://www.oceanexpert.org/expert/44598 -https://www.oceanexpert.org/expert/33869 -https://www.oceanexpert.org/expert/32473 -https://www.oceanexpert.org/expert/35434 -https://www.oceanexpert.org/expert/40667 -https://www.oceanexpert.org/expert/43800 -https://www.oceanexpert.org/expert/13286 -https://www.oceanexpert.org/expert/32762 -https://www.oceanexpert.org/institution/19818 -https://www.oceanexpert.org/expert/47454 -https://www.oceanexpert.org/expert/299 -https://www.oceanexpert.org/institution/14695 -https://www.oceanexpert.org/expert/16680 -https://www.oceanexpert.org/expert/26901 -https://www.oceanexpert.org/event/2657 -https://www.oceanexpert.org/expert/20282 -https://www.oceanexpert.org/expert/46976 -https://www.oceanexpert.org/expert/19333 -https://www.oceanexpert.org/institution/9132 -https://www.oceanexpert.org/event/13 -https://www.oceanexpert.org/expert/29762 -https://www.oceanexpert.org/expert/31581 -https://www.oceanexpert.org/institution/20774 -https://www.oceanexpert.org/institution/21399 -https://www.oceanexpert.org/expert/16640 -https://www.oceanexpert.org/event/1480 -https://www.oceanexpert.org/event/1005 -https://www.oceanexpert.org/expert/12043 -https://www.oceanexpert.org/expert/45028 -https://www.oceanexpert.org/institution/15268 -https://www.oceanexpert.org/expert/25166 -https://www.oceanexpert.org/expert/27967 -https://www.oceanexpert.org/expert/36974 -https://www.oceanexpert.org/event/1827 -https://www.oceanexpert.org/event/1113 -https://www.oceanexpert.org/expert/40256 -https://www.oceanexpert.org/expert/38479 -https://www.oceanexpert.org/expert/18178 -https://www.oceanexpert.org/expert/408 -https://www.oceanexpert.org/expert/25726 -https://www.oceanexpert.org/expert/17070 -https://www.oceanexpert.org/expert/43808 -https://www.oceanexpert.org/expert/45506 -https://www.oceanexpert.org/expert/30797 -https://www.oceanexpert.org/expert/36181 -https://www.oceanexpert.org/institution/6815 -https://www.oceanexpert.org/expert/17143 -https://www.oceanexpert.org/institution/19055 -https://www.oceanexpert.org/institution/14116 -https://www.oceanexpert.org/expert/22312 -https://www.oceanexpert.org/expert/43227 -https://www.oceanexpert.org/expert/16609 -https://www.oceanexpert.org/expert/23899 -https://www.oceanexpert.org/expert/37443 -https://www.oceanexpert.org/expert/26329 -https://www.oceanexpert.org/event/224 -https://www.oceanexpert.org/expert/20821 -https://www.oceanexpert.org/expert/25115 -https://www.oceanexpert.org/expert/30376 -https://www.oceanexpert.org/expert/20099 -https://www.oceanexpert.org/institution/15652 -https://www.oceanexpert.org/institution/18680 -https://www.oceanexpert.org/expert/34682 -https://www.oceanexpert.org/expert/18790 -https://www.oceanexpert.org/institution/12835 -https://www.oceanexpert.org/expert/31089 -https://www.oceanexpert.org/expert/30291 -https://www.oceanexpert.org/expert/26852 -https://www.oceanexpert.org/institution/5863 -https://www.oceanexpert.org/institution/13222 -https://www.oceanexpert.org/expert/23583 -https://www.oceanexpert.org/expert/31373 -https://www.oceanexpert.org/expert/32172 -https://www.oceanexpert.org/expert/7002 -https://www.oceanexpert.org/expert/24712 -https://www.oceanexpert.org/event/1467 -https://www.oceanexpert.org/institution/21577 -https://www.oceanexpert.org/expert/13854 -https://www.oceanexpert.org/institution/14028 -https://www.oceanexpert.org/expert/48063 -https://www.oceanexpert.org/expert/17135 -https://www.oceanexpert.org/expert/23972 -https://www.oceanexpert.org/expert/31470 -https://www.oceanexpert.org/expert/37379 -https://www.oceanexpert.org/institution/19933 -https://www.oceanexpert.org/expert/7452 -https://www.oceanexpert.org/expert/37447 -https://www.oceanexpert.org/institution/6334 -https://www.oceanexpert.org/institution/7375 -https://www.oceanexpert.org/event/127 -https://www.oceanexpert.org/expert/22396 -https://www.oceanexpert.org/event/413 -https://www.oceanexpert.org/institution/13262 -https://www.oceanexpert.org/event/2861 -https://www.oceanexpert.org/expert/35005 -https://www.oceanexpert.org/institution/11879 -https://www.oceanexpert.org/expert/16453 -https://www.oceanexpert.org/institution/19504 -https://www.oceanexpert.org/expert/38137 -https://www.oceanexpert.org/institution/17782 -https://www.oceanexpert.org/expert/46333 -https://www.oceanexpert.org/event/222 -https://www.oceanexpert.org/event/2935 -https://www.oceanexpert.org/institution/18918 -https://www.oceanexpert.org/expert/6699 -https://www.oceanexpert.org/expert/15389 -https://www.oceanexpert.org/expert/47259 -https://www.oceanexpert.org/institution/18794 -https://www.oceanexpert.org/institution/21458 -https://www.oceanexpert.org/expert/24298 -https://www.oceanexpert.org/expert/24505 -https://www.oceanexpert.org/expert/14999 -https://www.oceanexpert.org/expert/45771 -https://www.oceanexpert.org/expert/33818 -https://www.oceanexpert.org/expert/18551 -https://www.oceanexpert.org/expert/13353 -https://www.oceanexpert.org/expert/21896 -https://www.oceanexpert.org/expert/44224 -https://www.oceanexpert.org/expert/38274 -https://www.oceanexpert.org/institution/21053 -https://www.oceanexpert.org/expert/7428 -https://www.oceanexpert.org/expert/23066 -https://www.oceanexpert.org/expert/14294 -https://www.oceanexpert.org/expert/38057 -https://www.oceanexpert.org/expert/16005 -https://www.oceanexpert.org/event/896 -https://www.oceanexpert.org/expert/36832 -https://www.oceanexpert.org/institution/19236 -https://www.oceanexpert.org/expert/16377 -https://www.oceanexpert.org/expert/186 -https://www.oceanexpert.org/expert/34877 -https://www.oceanexpert.org/institution/20632 -https://www.oceanexpert.org/expert/24642 -https://www.oceanexpert.org/expert/30868 -https://www.oceanexpert.org/expert/36865 -https://www.oceanexpert.org/expert/34999 -https://www.oceanexpert.org/expert/46632 -https://www.oceanexpert.org/expert/32437 -https://www.oceanexpert.org/event/2640 -https://www.oceanexpert.org/institution/14645 -https://www.oceanexpert.org/expert/32553 -https://www.oceanexpert.org/expert/35999 -https://www.oceanexpert.org/expert/26552 -https://www.oceanexpert.org/expert/38726 -https://www.oceanexpert.org/institution/19919 -https://www.oceanexpert.org/expert/29705 -https://www.oceanexpert.org/expert/33925 -https://www.oceanexpert.org/expert/48389 -https://www.oceanexpert.org/event/1485 -https://www.oceanexpert.org/expert/44175 -https://www.oceanexpert.org/expert/48337 -https://www.oceanexpert.org/expert/17412 -https://www.oceanexpert.org/institution/16600 -https://www.oceanexpert.org/expert/13315 -https://www.oceanexpert.org/expert/11768 -https://www.oceanexpert.org/expert/24766 -https://www.oceanexpert.org/expert/43607 -https://www.oceanexpert.org/expert/37485 -https://www.oceanexpert.org/institution/11053 -https://www.oceanexpert.org/institution/19779 -https://www.oceanexpert.org/expert/40339 -https://www.oceanexpert.org/expert/26675 -https://www.oceanexpert.org/event/1058 -https://www.oceanexpert.org/expert/20687 -https://www.oceanexpert.org/expert/33220 -https://www.oceanexpert.org/expert/44055 -https://www.oceanexpert.org/institution/18085 -https://www.oceanexpert.org/expert/14934 -https://www.oceanexpert.org/expert/33279 -https://www.oceanexpert.org/expert/47560 -https://www.oceanexpert.org/event/147 -https://www.oceanexpert.org/expert/44595 -https://www.oceanexpert.org/institution/10288 -https://www.oceanexpert.org/institution/12570 -https://www.oceanexpert.org/event/2445 -https://www.oceanexpert.org/expert/24269 -https://www.oceanexpert.org/expert/15292 -https://www.oceanexpert.org/expert/34476 -https://www.oceanexpert.org/expert/10303 -https://www.oceanexpert.org/event/2568 -https://www.oceanexpert.org/institution/19398 -https://www.oceanexpert.org/event/1084 -https://www.oceanexpert.org/institution/18455 -https://www.oceanexpert.org/event/3063 -https://www.oceanexpert.org/event/1683 -https://www.oceanexpert.org/expert/33195 -https://www.oceanexpert.org/institution/19382 -https://www.oceanexpert.org/expert/35416 -https://www.oceanexpert.org/expert/25440 -https://www.oceanexpert.org/expert/48679 -https://www.oceanexpert.org/expert/24829 -https://www.oceanexpert.org/expert/35585 -https://www.oceanexpert.org/expert/11818 -https://www.oceanexpert.org/event/677 -https://www.oceanexpert.org/institution/12762 -https://www.oceanexpert.org/event/1024 -https://www.oceanexpert.org/event/1787 -https://www.oceanexpert.org/institution/18980 -https://www.oceanexpert.org/expert/47974 -https://www.oceanexpert.org/expert/26728 -https://www.oceanexpert.org/institution/15491 -https://www.oceanexpert.org/expert/25756 -https://www.oceanexpert.org/expert/46723 -https://www.oceanexpert.org/event/1528 -https://www.oceanexpert.org/expert/26850 -https://www.oceanexpert.org/expert/36897 -https://www.oceanexpert.org/expert/25812 -https://www.oceanexpert.org/expert/36565 -https://www.oceanexpert.org/expert/27213 -https://www.oceanexpert.org/expert/1819 -https://www.oceanexpert.org/event/1555 -https://www.oceanexpert.org/expert/46840 -https://www.oceanexpert.org/expert/25582 -https://www.oceanexpert.org/institution/19386 -https://www.oceanexpert.org/institution/14776 -https://www.oceanexpert.org/expert/43948 -https://www.oceanexpert.org/institution/6815 -https://www.oceanexpert.org/expert/16353 -https://www.oceanexpert.org/expert/32454 -https://www.oceanexpert.org/institution/12495 -https://www.oceanexpert.org/expert/37858 -https://www.oceanexpert.org/event/129 -https://www.oceanexpert.org/institution/18799 -https://www.oceanexpert.org/expert/36986 -https://www.oceanexpert.org/expert/23245 -https://www.oceanexpert.org/expert/33707 -https://www.oceanexpert.org/expert/19174 -https://www.oceanexpert.org/expert/1639 -https://www.oceanexpert.org/event/2560 -https://www.oceanexpert.org/event/3241 -https://www.oceanexpert.org/institution/13184 -https://www.oceanexpert.org/expert/25972 -https://www.oceanexpert.org/event/1778 -https://www.oceanexpert.org/institution/5637 -https://www.oceanexpert.org/institution/19279 -https://www.oceanexpert.org/institution/14699 -https://www.oceanexpert.org/expert/14269 -https://www.oceanexpert.org/expert/18595 -https://www.oceanexpert.org/expert/18133 -https://www.oceanexpert.org/expert/29714 -https://www.oceanexpert.org/event/1298 -https://www.oceanexpert.org/expert/45603 -https://www.oceanexpert.org/institution/13253 -https://www.oceanexpert.org/institution/21524 -https://www.oceanexpert.org/expert/26387 -https://www.oceanexpert.org/expert/33997 -https://www.oceanexpert.org/expert/13651 -https://www.oceanexpert.org/expert/25673 -https://www.oceanexpert.org/expert/43980 -https://www.oceanexpert.org/institution/19947 -https://www.oceanexpert.org/expert/42149 -https://www.oceanexpert.org/event/2168 -https://www.oceanexpert.org/expert/16999 -https://www.oceanexpert.org/event/1846 -https://www.oceanexpert.org/institution/13903 -https://www.oceanexpert.org/expert/46879 -https://www.oceanexpert.org/expert/46730 -https://www.oceanexpert.org/expert/22290 -https://www.oceanexpert.org/expert/39491 -https://www.oceanexpert.org/institution/18822 -https://www.oceanexpert.org/expert/17344 -https://www.oceanexpert.org/expert/20460 -https://www.oceanexpert.org/institution/7533 -https://www.oceanexpert.org/event/47 -https://www.oceanexpert.org/expert/12943 -https://www.oceanexpert.org/expert/38126 -https://www.oceanexpert.org/institution/21580 -https://www.oceanexpert.org/expert/43006 -https://www.oceanexpert.org/expert/28869 -https://www.oceanexpert.org/expert/20705 -https://www.oceanexpert.org/expert/29682 -https://www.oceanexpert.org/expert/25416 -https://www.oceanexpert.org/institution/11513 -https://www.oceanexpert.org/institution/18698 -https://www.oceanexpert.org/expert/43460 -https://www.oceanexpert.org/institution/19173 -https://www.oceanexpert.org/expert/37668 -https://www.oceanexpert.org/institution/12512 -https://www.oceanexpert.org/institution/20518 -https://www.oceanexpert.org/institution/10186 -https://www.oceanexpert.org/institution/8666 -https://www.oceanexpert.org/institution/6020 -https://www.oceanexpert.org/expert/29102 -https://www.oceanexpert.org/expert/35169 -https://www.oceanexpert.org/expert/24075 -https://www.oceanexpert.org/expert/1639 -https://www.oceanexpert.org/event/1557 -https://www.oceanexpert.org/expert/17939 -https://www.oceanexpert.org/expert/22751 -https://www.oceanexpert.org/expert/33496 -https://www.oceanexpert.org/expert/29569 -https://www.oceanexpert.org/expert/37580 -https://www.oceanexpert.org/expert/14419 -https://www.oceanexpert.org/expert/29177 -https://www.oceanexpert.org/expert/43642 -https://www.oceanexpert.org/institution/19830 -https://www.oceanexpert.org/expert/37621 -https://www.oceanexpert.org/event/2422 -https://www.oceanexpert.org/expert/43345 -https://www.oceanexpert.org/event/1741 -https://www.oceanexpert.org/expert/14337 -https://www.oceanexpert.org/expert/26891 -https://www.oceanexpert.org/expert/1522 -https://www.oceanexpert.org/institution/18881 -https://www.oceanexpert.org/expert/28172 -https://www.oceanexpert.org/expert/40613 -https://www.oceanexpert.org/expert/43844 -https://www.oceanexpert.org/institution/14206 -https://www.oceanexpert.org/expert/13804 -https://www.oceanexpert.org/expert/36854 -https://www.oceanexpert.org/expert/39952 -https://www.oceanexpert.org/expert/21416 -https://www.oceanexpert.org/expert/27676 -https://www.oceanexpert.org/expert/22762 -https://www.oceanexpert.org/expert/20122 -https://www.oceanexpert.org/expert/3862 -https://www.oceanexpert.org/institution/10250 -https://www.oceanexpert.org/expert/18625 -https://www.oceanexpert.org/expert/26105 -https://www.oceanexpert.org/institution/19428 -https://www.oceanexpert.org/event/950 -https://www.oceanexpert.org/expert/19264 -https://www.oceanexpert.org/expert/13658 -https://www.oceanexpert.org/expert/21092 -https://www.oceanexpert.org/expert/23744 -https://www.oceanexpert.org/expert/34842 -https://www.oceanexpert.org/expert/18787 -https://www.oceanexpert.org/expert/22853 -https://www.oceanexpert.org/event/73 -https://www.oceanexpert.org/expert/19492 -https://www.oceanexpert.org/expert/11606 -https://www.oceanexpert.org/expert/47262 -https://www.oceanexpert.org/expert/18090 -https://www.oceanexpert.org/expert/40407 -https://www.oceanexpert.org/expert/36216 -https://www.oceanexpert.org/institution/12362 -https://www.oceanexpert.org/institution/17937 -https://www.oceanexpert.org/expert/32983 -https://www.oceanexpert.org/expert/26662 -https://www.oceanexpert.org/expert/36331 -https://www.oceanexpert.org/institution/22139 -https://www.oceanexpert.org/institution/19915 -https://www.oceanexpert.org/expert/45107 -https://www.oceanexpert.org/expert/46458 -https://www.oceanexpert.org/institution/13593 -https://www.oceanexpert.org/expert/34509 -https://www.oceanexpert.org/expert/24766 -https://www.oceanexpert.org/expert/46049 -https://www.oceanexpert.org/expert/33818 -https://www.oceanexpert.org/event/1207 -https://www.oceanexpert.org/expert/21142 -https://www.oceanexpert.org/expert/26303 -https://www.oceanexpert.org/expert/22694 -https://www.oceanexpert.org/event/395 -https://www.oceanexpert.org/expert/27543 -https://www.oceanexpert.org/expert/24021 -https://www.oceanexpert.org/institution/9192 -https://www.oceanexpert.org/expert/26468 -https://www.oceanexpert.org/institution/18487 -https://www.oceanexpert.org/expert/26235 -https://www.oceanexpert.org/expert/33344 -https://www.oceanexpert.org/expert/39255 -https://www.oceanexpert.org/expert/16822 -https://www.oceanexpert.org/institution/17313 -https://www.oceanexpert.org/expert/33028 -https://www.oceanexpert.org/expert/44743 -https://www.oceanexpert.org/expert/22902 -https://www.oceanexpert.org/expert/1825 -https://www.oceanexpert.org/institution/18159 -https://www.oceanexpert.org/expert/35382 -https://www.oceanexpert.org/institution/20612 -https://www.oceanexpert.org/institution/12437 -https://www.oceanexpert.org/expert/22849 -https://www.oceanexpert.org/expert/10895 -https://www.oceanexpert.org/expert/22539 -https://www.oceanexpert.org/expert/47195 -https://www.oceanexpert.org/institution/18543 -https://www.oceanexpert.org/expert/3525 -https://www.oceanexpert.org/expert/25399 -https://www.oceanexpert.org/expert/24958 -https://www.oceanexpert.org/event/2748 -https://www.oceanexpert.org/expert/27540 -https://www.oceanexpert.org/event/671 -https://www.oceanexpert.org/institution/7796 -https://www.oceanexpert.org/expert/27549 -https://www.oceanexpert.org/expert/46297 -https://www.oceanexpert.org/expert/29932 -https://www.oceanexpert.org/institution/10233 -https://www.oceanexpert.org/expert/8130 -https://www.oceanexpert.org/expert/25686 -https://www.oceanexpert.org/event/1262 -https://www.oceanexpert.org/expert/14275 -https://www.oceanexpert.org/event/1367 -https://www.oceanexpert.org/expert/44762 -https://www.oceanexpert.org/expert/101 -https://www.oceanexpert.org/institution/13806 -https://www.oceanexpert.org/expert/26306 -https://www.oceanexpert.org/institution/21997 -https://www.oceanexpert.org/expert/14906 -https://www.oceanexpert.org/expert/21068 -https://www.oceanexpert.org/event/755 -https://www.oceanexpert.org/expert/34604 -https://www.oceanexpert.org/expert/28886 -https://www.oceanexpert.org/expert/11401 -https://www.oceanexpert.org/event/518 -https://www.oceanexpert.org/expert/20556 -https://www.oceanexpert.org/institution/15952 -https://www.oceanexpert.org/institution/11041 -https://www.oceanexpert.org/expert/36378 -https://www.oceanexpert.org/expert/17588 -https://www.oceanexpert.org/expert/46738 -https://www.oceanexpert.org/institution/8599 -https://www.oceanexpert.org/institution/14372 -https://www.oceanexpert.org/expert/18550 -https://www.oceanexpert.org/expert/38364 -https://www.oceanexpert.org/expert/48056 -https://www.oceanexpert.org/expert/29801 -https://www.oceanexpert.org/expert/45828 -https://www.oceanexpert.org/expert/37443 -https://www.oceanexpert.org/expert/20381 -https://www.oceanexpert.org/expert/36776 -https://www.oceanexpert.org/expert/11213 -https://www.oceanexpert.org/expert/18714 -https://www.oceanexpert.org/expert/34567 -https://www.oceanexpert.org/expert/2302 -https://www.oceanexpert.org/institution/20776 -https://www.oceanexpert.org/expert/35338 -https://www.oceanexpert.org/expert/21819 -https://www.oceanexpert.org/expert/36652 -https://www.oceanexpert.org/expert/45877 -https://www.oceanexpert.org/expert/24740 -https://www.oceanexpert.org/expert/27687 -https://www.oceanexpert.org/expert/4444 -https://www.oceanexpert.org/expert/33123 -https://www.oceanexpert.org/expert/33499 -https://www.oceanexpert.org/expert/28311 -https://www.oceanexpert.org/institution/21993 -https://www.oceanexpert.org/expert/11788 -https://www.oceanexpert.org/institution/19833 -https://www.oceanexpert.org/expert/32208 -https://www.oceanexpert.org/expert/24591 -https://www.oceanexpert.org/expert/24562 -https://www.oceanexpert.org/expert/20620 -https://www.oceanexpert.org/institution/10874 -https://www.oceanexpert.org/expert/39980 -https://www.oceanexpert.org/institution/20557 -https://www.oceanexpert.org/expert/37677 -https://www.oceanexpert.org/expert/44190 -https://www.oceanexpert.org/institution/18211 -https://www.oceanexpert.org/institution/6441 -https://www.oceanexpert.org/institution/19545 -https://www.oceanexpert.org/expert/27178 -https://www.oceanexpert.org/institution/14063 -https://www.oceanexpert.org/expert/36038 -https://www.oceanexpert.org/expert/46034 -https://www.oceanexpert.org/expert/38074 -https://www.oceanexpert.org/institution/14056 -https://www.oceanexpert.org/institution/22107 -https://www.oceanexpert.org/expert/33433 -https://www.oceanexpert.org/expert/44941 -https://www.oceanexpert.org/expert/26937 -https://www.oceanexpert.org/expert/44177 -https://www.oceanexpert.org/institution/13187 -https://www.oceanexpert.org/expert/45967 -https://www.oceanexpert.org/expert/38001 -https://www.oceanexpert.org/expert/44567 -https://www.oceanexpert.org/expert/39774 -https://www.oceanexpert.org/expert/24739 -https://www.oceanexpert.org/expert/33446 -https://www.oceanexpert.org/expert/47761 -https://www.oceanexpert.org/event/1825 -https://www.oceanexpert.org/expert/36629 -https://www.oceanexpert.org/expert/19082 -https://www.oceanexpert.org/institution/12947 -https://www.oceanexpert.org/expert/41970 -https://www.oceanexpert.org/institution/11336 -https://www.oceanexpert.org/expert/14999 -https://www.oceanexpert.org/expert/44734 -https://www.oceanexpert.org/expert/29398 -https://www.oceanexpert.org/expert/45674 -https://www.oceanexpert.org/expert/18595 -https://www.oceanexpert.org/institution/21109 -https://www.oceanexpert.org/expert/23798 -https://www.oceanexpert.org/expert/24141 -https://www.oceanexpert.org/expert/22832 -https://www.oceanexpert.org/expert/6800 -https://www.oceanexpert.org/expert/36573 -https://www.oceanexpert.org/expert/8065 -https://www.oceanexpert.org/expert/47262 -https://www.oceanexpert.org/event/1149 -https://www.oceanexpert.org/institution/16849 -https://www.oceanexpert.org/expert/40882 -https://www.oceanexpert.org/institution/11475 -https://www.oceanexpert.org/expert/39293 -https://www.oceanexpert.org/expert/48284 -https://www.oceanexpert.org/expert/25901 -https://www.oceanexpert.org/expert/19162 -https://www.oceanexpert.org/institution/19032 -https://www.oceanexpert.org/event/435 -https://www.oceanexpert.org/expert/25596 -https://www.oceanexpert.org/expert/29479 -https://www.oceanexpert.org/event/2189 -https://www.oceanexpert.org/expert/17065 -https://www.oceanexpert.org/expert/40287 -https://www.oceanexpert.org/expert/47623 -https://www.oceanexpert.org/expert/24700 -https://www.oceanexpert.org/expert/44067 -https://www.oceanexpert.org/expert/7926 -https://www.oceanexpert.org/expert/46359 -https://www.oceanexpert.org/expert/34008 -https://www.oceanexpert.org/expert/37690 -https://www.oceanexpert.org/expert/7123 -https://www.oceanexpert.org/institution/21699 -https://www.oceanexpert.org/expert/47200 -https://www.oceanexpert.org/expert/19610 -https://www.oceanexpert.org/expert/22077 -https://www.oceanexpert.org/institution/16031 -https://www.oceanexpert.org/institution/10488 -https://www.oceanexpert.org/institution/5449 -https://www.oceanexpert.org/institution/19951 -https://www.oceanexpert.org/expert/46033 -https://www.oceanexpert.org/expert/30330 -https://www.oceanexpert.org/expert/37239 -https://www.oceanexpert.org/event/2167 -https://www.oceanexpert.org/expert/22116 -https://www.oceanexpert.org/expert/21266 -https://www.oceanexpert.org/expert/44745 -https://www.oceanexpert.org/expert/37809 -https://www.oceanexpert.org/expert/23455 -https://www.oceanexpert.org/event/1808 -https://www.oceanexpert.org/expert/31419 -https://www.oceanexpert.org/expert/21494 -https://www.oceanexpert.org/event/1366 -https://www.oceanexpert.org/expert/27999 -https://www.oceanexpert.org/expert/25087 -https://www.oceanexpert.org/expert/48185 -https://www.oceanexpert.org/expert/34589 -https://www.oceanexpert.org/expert/33816 -https://www.oceanexpert.org/institution/19566 -https://www.oceanexpert.org/event/1730 -https://www.oceanexpert.org/expert/18304 -https://www.oceanexpert.org/expert/45184 -https://www.oceanexpert.org/expert/19970 -https://www.oceanexpert.org/expert/28069 -https://www.oceanexpert.org/expert/24174 -https://www.oceanexpert.org/expert/8761 -https://www.oceanexpert.org/expert/8768 -https://www.oceanexpert.org/event/2449 -https://www.oceanexpert.org/expert/16216 -https://www.oceanexpert.org/expert/42423 -https://www.oceanexpert.org/institution/16130 -https://www.oceanexpert.org/expert/24464 -https://www.oceanexpert.org/institution/18935 -https://www.oceanexpert.org/expert/36322 -https://www.oceanexpert.org/institution/18332 -https://www.oceanexpert.org/expert/20870 -https://www.oceanexpert.org/expert/36 -https://www.oceanexpert.org/expert/25492 -https://www.oceanexpert.org/expert/30991 -https://www.oceanexpert.org/expert/35235 -https://www.oceanexpert.org/expert/16805 -https://www.oceanexpert.org/institution/21139 -https://www.oceanexpert.org/institution/15231 -https://www.oceanexpert.org/institution/12877 -https://www.oceanexpert.org/expert/44047 -https://www.oceanexpert.org/expert/45560 -https://www.oceanexpert.org/event/1361 -https://www.oceanexpert.org/institution/21293 -https://www.oceanexpert.org/expert/39396 -https://www.oceanexpert.org/expert/26728 -https://www.oceanexpert.org/expert/45722 -https://www.oceanexpert.org/expert/26934 -https://www.oceanexpert.org/expert/16639 -https://www.oceanexpert.org/expert/46495 -https://www.oceanexpert.org/institution/21467 -https://www.oceanexpert.org/expert/37892 -https://www.oceanexpert.org/expert/28213 -https://www.oceanexpert.org/institution/12507 -https://www.oceanexpert.org/expert/33849 -https://www.oceanexpert.org/expert/23944 -https://www.oceanexpert.org/expert/28383 -https://www.oceanexpert.org/expert/200 -https://www.oceanexpert.org/institution/5883 -https://www.oceanexpert.org/expert/48179 -https://www.oceanexpert.org/institution/21794 -https://www.oceanexpert.org/expert/7821 -https://www.oceanexpert.org/expert/28367 -https://www.oceanexpert.org/expert/25696 -https://www.oceanexpert.org/institution/18306 -https://www.oceanexpert.org/expert/28815 -https://www.oceanexpert.org/expert/46697 -https://www.oceanexpert.org/expert/47933 -https://www.oceanexpert.org/expert/23820 -https://www.oceanexpert.org/expert/24556 -https://www.oceanexpert.org/event/2404 -https://www.oceanexpert.org/expert/20488 -https://www.oceanexpert.org/expert/12575 -https://www.oceanexpert.org/institution/12152 -https://www.oceanexpert.org/expert/20659 -https://www.oceanexpert.org/expert/26755 -https://www.oceanexpert.org/institution/11987 -https://www.oceanexpert.org/expert/32141 -https://www.oceanexpert.org/event/1627 -https://www.oceanexpert.org/institution/7020 -https://www.oceanexpert.org/expert/8455 -https://www.oceanexpert.org/expert/28157 -https://www.oceanexpert.org/expert/38247 -https://www.oceanexpert.org/institution/12233 -https://www.oceanexpert.org/expert/34410 -https://www.oceanexpert.org/institution/12776 -https://www.oceanexpert.org/event/1465 -https://www.oceanexpert.org/expert/26682 -https://www.oceanexpert.org/expert/21610 -https://www.oceanexpert.org/expert/24221 -https://www.oceanexpert.org/expert/47073 -https://www.oceanexpert.org/institution/14610 -https://www.oceanexpert.org/institution/11176 -https://www.oceanexpert.org/expert/20460 -https://www.oceanexpert.org/expert/35949 -https://www.oceanexpert.org/event/1181 -https://www.oceanexpert.org/expert/9038 -https://www.oceanexpert.org/expert/48434 -https://www.oceanexpert.org/expert/25790 -https://www.oceanexpert.org/institution/21726 -https://www.oceanexpert.org/institution/18767 -https://www.oceanexpert.org/expert/46650 -https://www.oceanexpert.org/institution/7341 -https://www.oceanexpert.org/expert/35099 -https://www.oceanexpert.org/expert/27577 -https://www.oceanexpert.org/institution/18450 -https://www.oceanexpert.org/expert/27497 -https://www.oceanexpert.org/event/417 -https://www.oceanexpert.org/expert/18555 -https://www.oceanexpert.org/expert/23806 -https://www.oceanexpert.org/expert/11415 -https://www.oceanexpert.org/expert/25053 -https://www.oceanexpert.org/expert/12313 -https://www.oceanexpert.org/expert/35529 -https://www.oceanexpert.org/institution/6160 -https://www.oceanexpert.org/expert/48347 -https://www.oceanexpert.org/expert/36088 -https://www.oceanexpert.org/expert/25377 -https://www.oceanexpert.org/expert/44060 -https://www.oceanexpert.org/institution/6748 -https://www.oceanexpert.org/expert/43760 -https://www.oceanexpert.org/institution/11560 -https://www.oceanexpert.org/institution/15929 -https://www.oceanexpert.org/expert/19653 -https://www.oceanexpert.org/expert/33021 -https://www.oceanexpert.org/expert/43886 -https://www.oceanexpert.org/expert/46145 -https://www.oceanexpert.org/expert/18470 -https://www.oceanexpert.org/event/2634 -https://www.oceanexpert.org/expert/30959 -https://www.oceanexpert.org/expert/43224 -https://www.oceanexpert.org/expert/48515 -https://www.oceanexpert.org/expert/28084 -https://www.oceanexpert.org/expert/48802 -https://www.oceanexpert.org/expert/16487 -https://www.oceanexpert.org/expert/45447 -https://www.oceanexpert.org/expert/43865 -https://www.oceanexpert.org/expert/44967 -https://www.oceanexpert.org/event/3052 -https://www.oceanexpert.org/expert/33276 -https://www.oceanexpert.org/expert/36639 -https://www.oceanexpert.org/expert/46665 -https://www.oceanexpert.org/expert/24915 -https://www.oceanexpert.org/institution/21619 -https://www.oceanexpert.org/institution/19402 -https://www.oceanexpert.org/expert/34434 -https://www.oceanexpert.org/expert/25795 -https://www.oceanexpert.org/expert/26675 -https://www.oceanexpert.org/expert/31672 -https://www.oceanexpert.org/institution/19613 -https://www.oceanexpert.org/institution/21437 -https://www.oceanexpert.org/expert/48521 -https://www.oceanexpert.org/expert/48239 -https://www.oceanexpert.org/event/3065 -https://www.oceanexpert.org/expert/31446 -https://www.oceanexpert.org/institution/19414 -https://www.oceanexpert.org/expert/15546 -https://www.oceanexpert.org/expert/3386 -https://www.oceanexpert.org/expert/8633 -https://www.oceanexpert.org/expert/38716 -https://www.oceanexpert.org/expert/35218 -https://www.oceanexpert.org/expert/16815 -https://www.oceanexpert.org/expert/17806 -https://www.oceanexpert.org/expert/28406 -https://www.oceanexpert.org/expert/21860 -https://www.oceanexpert.org/institution/21597 -https://www.oceanexpert.org/institution/20010 -https://www.oceanexpert.org/event/2025 -https://www.oceanexpert.org/institution/15557 -https://www.oceanexpert.org/expert/25125 -https://www.oceanexpert.org/event/2349 -https://www.oceanexpert.org/expert/36378 -https://www.oceanexpert.org/expert/43115 -https://www.oceanexpert.org/expert/34663 -https://www.oceanexpert.org/expert/31530 -https://www.oceanexpert.org/expert/29800 -https://www.oceanexpert.org/institution/15805 -https://www.oceanexpert.org/expert/34247 -https://www.oceanexpert.org/expert/720 -https://www.oceanexpert.org/institution/18524 -https://www.oceanexpert.org/expert/40337 -https://www.oceanexpert.org/expert/22855 -https://www.oceanexpert.org/expert/24630 -https://www.oceanexpert.org/expert/1859 -https://www.oceanexpert.org/expert/43212 -https://www.oceanexpert.org/institution/16883 -https://www.oceanexpert.org/expert/7140 -https://www.oceanexpert.org/expert/38235 -https://www.oceanexpert.org/expert/20931 -https://www.oceanexpert.org/expert/29386 -https://www.oceanexpert.org/institution/20721 -https://www.oceanexpert.org/expert/34970 -https://www.oceanexpert.org/event/272 -https://www.oceanexpert.org/expert/17458 -https://www.oceanexpert.org/institution/18493 -https://www.oceanexpert.org/expert/32344 -https://www.oceanexpert.org/expert/40609 -https://www.oceanexpert.org/expert/25320 -https://www.oceanexpert.org/expert/25277 -https://www.oceanexpert.org/expert/52 -https://www.oceanexpert.org/expert/48663 -https://www.oceanexpert.org/expert/12086 -https://www.oceanexpert.org/expert/36004 -https://www.oceanexpert.org/expert/46638 -https://www.oceanexpert.org/institution/17622 -https://www.oceanexpert.org/expert/38930 -https://www.oceanexpert.org/expert/20360 -https://www.oceanexpert.org/expert/24773 -https://www.oceanexpert.org/expert/24246 -https://www.oceanexpert.org/institution/8292 -https://www.oceanexpert.org/expert/7426 -https://www.oceanexpert.org/expert/21883 -https://www.oceanexpert.org/expert/14072 -https://www.oceanexpert.org/institution/21796 -https://www.oceanexpert.org/expert/110 -https://www.oceanexpert.org/institution/20939 -https://www.oceanexpert.org/expert/20528 -https://www.oceanexpert.org/event/2233 -https://www.oceanexpert.org/expert/47296 -https://www.oceanexpert.org/event/2783 -https://www.oceanexpert.org/expert/14476 -https://www.oceanexpert.org/event/2404 -https://www.oceanexpert.org/expert/10707 -https://www.oceanexpert.org/expert/24554 -https://www.oceanexpert.org/expert/18267 -https://www.oceanexpert.org/expert/21036 -https://www.oceanexpert.org/expert/18893 -https://www.oceanexpert.org/expert/1791 -https://www.oceanexpert.org/institution/10611 -https://www.oceanexpert.org/institution/19837 -https://www.oceanexpert.org/institution/11686 -https://www.oceanexpert.org/expert/24095 -https://www.oceanexpert.org/expert/39168 -https://www.oceanexpert.org/expert/37393 -https://www.oceanexpert.org/institution/9445 -https://www.oceanexpert.org/expert/7001 -https://www.oceanexpert.org/expert/44480 -https://www.oceanexpert.org/expert/37336 -https://www.oceanexpert.org/expert/17261 -https://www.oceanexpert.org/event/3268 -https://www.oceanexpert.org/expert/35691 -https://www.oceanexpert.org/expert/24725 -https://www.oceanexpert.org/expert/16986 -https://www.oceanexpert.org/institution/11547 -https://www.oceanexpert.org/institution/18603 -https://www.oceanexpert.org/expert/24006 -https://www.oceanexpert.org/expert/42353 -https://www.oceanexpert.org/expert/24822 -https://www.oceanexpert.org/institution/18883 -https://www.oceanexpert.org/event/978 -https://www.oceanexpert.org/event/75 -https://www.oceanexpert.org/expert/26923 -https://www.oceanexpert.org/expert/36631 -https://www.oceanexpert.org/expert/23781 -https://www.oceanexpert.org/event/2105 -https://www.oceanexpert.org/institution/11426 -https://www.oceanexpert.org/event/2282 -https://www.oceanexpert.org/institution/10347 -https://www.oceanexpert.org/expert/25055 -https://www.oceanexpert.org/expert/47092 -https://www.oceanexpert.org/expert/36386 -https://www.oceanexpert.org/expert/46997 -https://www.oceanexpert.org/institution/11651 -https://www.oceanexpert.org/expert/25857 -https://www.oceanexpert.org/expert/47903 -https://www.oceanexpert.org/institution/15441 -https://www.oceanexpert.org/institution/4953 -https://www.oceanexpert.org/expert/36851 -https://www.oceanexpert.org/expert/12765 -https://www.oceanexpert.org/institution/18118 -https://www.oceanexpert.org/expert/45701 -https://www.oceanexpert.org/expert/24868 -https://www.oceanexpert.org/expert/20994 -https://www.oceanexpert.org/expert/45703 -https://www.oceanexpert.org/institution/17723 -https://www.oceanexpert.org/event/2610 -https://www.oceanexpert.org/expert/30143 -https://www.oceanexpert.org/expert/26046 -https://www.oceanexpert.org/event/2268 -https://www.oceanexpert.org/institution/21967 -https://www.oceanexpert.org/expert/23317 -https://www.oceanexpert.org/institution/20338 -https://www.oceanexpert.org/expert/45640 -https://www.oceanexpert.org/expert/108 -https://www.oceanexpert.org/expert/26906 -https://www.oceanexpert.org/expert/27392 -https://www.oceanexpert.org/expert/32250 -https://www.oceanexpert.org/institution/19388 -https://www.oceanexpert.org/institution/20049 -https://www.oceanexpert.org/institution/22173 -https://www.oceanexpert.org/expert/46151 -https://www.oceanexpert.org/expert/20331 -https://www.oceanexpert.org/institution/14909 -https://www.oceanexpert.org/event/2523 -https://www.oceanexpert.org/institution/20610 -https://www.oceanexpert.org/event/1124 -https://www.oceanexpert.org/expert/19197 -https://www.oceanexpert.org/expert/18734 -https://www.oceanexpert.org/expert/43921 -https://www.oceanexpert.org/event/2415 -https://www.oceanexpert.org/institution/6169 -https://www.oceanexpert.org/event/2193 -https://www.oceanexpert.org/expert/6918 -https://www.oceanexpert.org/expert/46530 -https://www.oceanexpert.org/expert/46715 -https://www.oceanexpert.org/expert/24025 -https://www.oceanexpert.org/expert/20625 -https://www.oceanexpert.org/expert/18500 -https://www.oceanexpert.org/expert/24544 -https://www.oceanexpert.org/expert/21400 -https://www.oceanexpert.org/expert/14394 -https://www.oceanexpert.org/expert/30410 -https://www.oceanexpert.org/expert/28434 -https://www.oceanexpert.org/expert/7110 -https://www.oceanexpert.org/institution/18830 -https://www.oceanexpert.org/institution/17061 -https://www.oceanexpert.org/expert/11467 -https://www.oceanexpert.org/expert/37633 -https://www.oceanexpert.org/expert/35332 -https://www.oceanexpert.org/institution/15594 -https://www.oceanexpert.org/institution/14296 -https://www.oceanexpert.org/institution/17972 -https://www.oceanexpert.org/expert/36536 -https://www.oceanexpert.org/expert/48995 -https://www.oceanexpert.org/expert/15537 -https://www.oceanexpert.org/expert/20429 -https://www.oceanexpert.org/event/2401 -https://www.oceanexpert.org/expert/27413 -https://www.oceanexpert.org/expert/30407 -https://www.oceanexpert.org/expert/17506 -https://www.oceanexpert.org/expert/20552 -https://www.oceanexpert.org/event/566 -https://www.oceanexpert.org/expert/35276 -https://www.oceanexpert.org/expert/20173 -https://www.oceanexpert.org/institution/19623 -https://www.oceanexpert.org/expert/25177 -https://www.oceanexpert.org/expert/29751 -https://www.oceanexpert.org/event/482 -https://www.oceanexpert.org/expert/30824 -https://www.oceanexpert.org/event/266 -https://www.oceanexpert.org/institution/18456 -https://www.oceanexpert.org/expert/43667 -https://www.oceanexpert.org/expert/8012 -https://www.oceanexpert.org/expert/22707 -https://www.oceanexpert.org/expert/30475 -https://www.oceanexpert.org/expert/22240 -https://www.oceanexpert.org/institution/15687 -https://www.oceanexpert.org/expert/47706 -https://www.oceanexpert.org/expert/24527 -https://www.oceanexpert.org/institution/6470 -https://www.oceanexpert.org/expert/35596 -https://www.oceanexpert.org/expert/35823 -https://www.oceanexpert.org/institution/20174 -https://www.oceanexpert.org/institution/10328 -https://www.oceanexpert.org/expert/26050 -https://www.oceanexpert.org/expert/18402 -https://www.oceanexpert.org/institution/20684 -https://www.oceanexpert.org/expert/23613 -https://www.oceanexpert.org/expert/43905 -https://www.oceanexpert.org/institution/16815 -https://www.oceanexpert.org/expert/26745 -https://www.oceanexpert.org/expert/26342 -https://www.oceanexpert.org/expert/12265 -https://www.oceanexpert.org/expert/12440 -https://www.oceanexpert.org/expert/24558 -https://www.oceanexpert.org/expert/32512 -https://www.oceanexpert.org/institution/9197 -https://www.oceanexpert.org/expert/18713 -https://www.oceanexpert.org/institution/22036 -https://www.oceanexpert.org/expert/24331 -https://www.oceanexpert.org/institution/20566 -https://www.oceanexpert.org/expert/40074 -https://www.oceanexpert.org/event/2371 -https://www.oceanexpert.org/expert/23932 -https://www.oceanexpert.org/expert/27058 -https://www.oceanexpert.org/expert/10675 -https://www.oceanexpert.org/expert/44872 -https://www.oceanexpert.org/expert/26802 -https://www.oceanexpert.org/expert/9582 -https://www.oceanexpert.org/institution/12217 -https://www.oceanexpert.org/expert/46697 -https://www.oceanexpert.org/expert/6726 -https://www.oceanexpert.org/expert/26615 -https://www.oceanexpert.org/expert/24393 -https://www.oceanexpert.org/expert/25063 -https://www.oceanexpert.org/expert/12867 -https://www.oceanexpert.org/expert/37914 -https://www.oceanexpert.org/expert/48249 -https://www.oceanexpert.org/expert/44537 -https://www.oceanexpert.org/event/1206 -https://www.oceanexpert.org/expert/31965 -https://www.oceanexpert.org/institution/21912 -https://www.oceanexpert.org/institution/19687 -https://www.oceanexpert.org/institution/17342 -https://www.oceanexpert.org/expert/43098 -https://www.oceanexpert.org/expert/39050 -https://www.oceanexpert.org/institution/8528 -https://www.oceanexpert.org/expert/36577 -https://www.oceanexpert.org/expert/31615 -https://www.oceanexpert.org/expert/26256 -https://www.oceanexpert.org/expert/892 -https://www.oceanexpert.org/expert/44589 -https://www.oceanexpert.org/expert/30108 -https://www.oceanexpert.org/expert/35282 -https://www.oceanexpert.org/expert/25972 -https://www.oceanexpert.org/expert/45058 -https://www.oceanexpert.org/expert/43993 -https://www.oceanexpert.org/event/2831 -https://www.oceanexpert.org/expert/44651 -https://www.oceanexpert.org/institution/5725 -https://www.oceanexpert.org/expert/19376 -https://www.oceanexpert.org/institution/14304 -https://www.oceanexpert.org/institution/14292 -https://www.oceanexpert.org/expert/26920 -https://www.oceanexpert.org/expert/18498 -https://www.oceanexpert.org/expert/33050 -https://www.oceanexpert.org/expert/34608 -https://www.oceanexpert.org/event/1478 -https://www.oceanexpert.org/institution/15678 -https://www.oceanexpert.org/expert/24814 -https://www.oceanexpert.org/expert/49031 -https://www.oceanexpert.org/institution/12563 -https://www.oceanexpert.org/expert/26425 -https://www.oceanexpert.org/expert/7445 -https://www.oceanexpert.org/institution/21006 -https://www.oceanexpert.org/expert/8577 -https://www.oceanexpert.org/expert/32398 -https://www.oceanexpert.org/expert/46160 -https://www.oceanexpert.org/expert/32229 -https://www.oceanexpert.org/event/2567 -https://www.oceanexpert.org/expert/21807 -https://www.oceanexpert.org/expert/35022 -https://www.oceanexpert.org/expert/44251 -https://www.oceanexpert.org/expert/8518 -https://www.oceanexpert.org/expert/22343 -https://www.oceanexpert.org/expert/19885 -https://www.oceanexpert.org/expert/38064 -https://www.oceanexpert.org/expert/24455 -https://www.oceanexpert.org/institution/16220 -https://www.oceanexpert.org/institution/18697 -https://www.oceanexpert.org/expert/21357 -https://www.oceanexpert.org/expert/38003 -https://www.oceanexpert.org/event/2931 -https://www.oceanexpert.org/expert/34944 -https://www.oceanexpert.org/expert/24456 -https://www.oceanexpert.org/institution/7851 -https://www.oceanexpert.org/institution/18116 -https://www.oceanexpert.org/expert/38369 -https://www.oceanexpert.org/expert/22235 -https://www.oceanexpert.org/event/1475 -https://www.oceanexpert.org/expert/32872 -https://www.oceanexpert.org/expert/17268 -https://www.oceanexpert.org/institution/17458 -https://www.oceanexpert.org/institution/14299 -https://www.oceanexpert.org/expert/46735 -https://www.oceanexpert.org/expert/14420 -https://www.oceanexpert.org/expert/19924 -https://www.oceanexpert.org/event/2105 -https://www.oceanexpert.org/expert/36277 -https://www.oceanexpert.org/institution/20913 -https://www.oceanexpert.org/event/2040 -https://www.oceanexpert.org/expert/29406 -https://www.oceanexpert.org/expert/47253 -https://www.oceanexpert.org/expert/35876 -https://www.oceanexpert.org/expert/37972 -https://www.oceanexpert.org/expert/20429 -https://www.oceanexpert.org/expert/33729 -https://www.oceanexpert.org/expert/42673 -https://www.oceanexpert.org/event/626 -https://www.oceanexpert.org/institution/12877 -https://www.oceanexpert.org/institution/19144 -https://www.oceanexpert.org/expert/46368 -https://www.oceanexpert.org/expert/37697 -https://www.oceanexpert.org/expert/6607 -https://www.oceanexpert.org/event/1865 -https://www.oceanexpert.org/event/2602 -https://www.oceanexpert.org/event/1054 -https://www.oceanexpert.org/expert/20245 -https://www.oceanexpert.org/expert/46260 -https://www.oceanexpert.org/expert/43142 -https://www.oceanexpert.org/expert/23184 -https://www.oceanexpert.org/expert/20120 -https://www.oceanexpert.org/expert/42399 -https://www.oceanexpert.org/expert/23943 -https://www.oceanexpert.org/expert/34459 -https://www.oceanexpert.org/expert/47835 -https://www.oceanexpert.org/expert/45044 -https://www.oceanexpert.org/expert/29653 -https://www.oceanexpert.org/institution/21622 -https://www.oceanexpert.org/expert/40528 -https://www.oceanexpert.org/institution/9308 -https://www.oceanexpert.org/expert/2129 -https://www.oceanexpert.org/expert/20022 -https://www.oceanexpert.org/expert/26552 -https://www.oceanexpert.org/expert/4121 -https://www.oceanexpert.org/event/763 -https://www.oceanexpert.org/expert/15194 -https://www.oceanexpert.org/institution/11881 -https://www.oceanexpert.org/event/1302 -https://www.oceanexpert.org/expert/23621 -https://www.oceanexpert.org/event/821 -https://www.oceanexpert.org/institution/16436 -https://www.oceanexpert.org/expert/37653 -https://www.oceanexpert.org/institution/21576 -https://www.oceanexpert.org/expert/18781 -https://www.oceanexpert.org/expert/27401 -https://www.oceanexpert.org/expert/48680 -https://www.oceanexpert.org/institution/19353 -https://www.oceanexpert.org/expert/42731 -https://www.oceanexpert.org/institution/6243 -https://www.oceanexpert.org/expert/24582 -https://www.oceanexpert.org/institution/21676 -https://www.oceanexpert.org/expert/10913 -https://www.oceanexpert.org/institution/12976 -https://www.oceanexpert.org/expert/43297 -https://www.oceanexpert.org/expert/22383 -https://www.oceanexpert.org/expert/27149 -https://www.oceanexpert.org/institution/14838 -https://www.oceanexpert.org/institution/21420 -https://www.oceanexpert.org/expert/20196 -https://www.oceanexpert.org/expert/19570 -https://www.oceanexpert.org/event/1452 -https://www.oceanexpert.org/expert/35839 -https://www.oceanexpert.org/expert/23005 -https://www.oceanexpert.org/expert/23442 -https://www.oceanexpert.org/expert/22987 -https://www.oceanexpert.org/event/2433 -https://www.oceanexpert.org/expert/25854 -https://www.oceanexpert.org/institution/17808 -https://www.oceanexpert.org/expert/35098 -https://www.oceanexpert.org/expert/13198 -https://www.oceanexpert.org/expert/858 -https://www.oceanexpert.org/expert/44391 -https://www.oceanexpert.org/institution/17814 -https://www.oceanexpert.org/institution/12600 -https://www.oceanexpert.org/expert/35640 -https://www.oceanexpert.org/expert/35412 -https://www.oceanexpert.org/expert/25166 -https://www.oceanexpert.org/expert/21361 -https://www.oceanexpert.org/expert/46978 -https://www.oceanexpert.org/expert/3666 -https://www.oceanexpert.org/expert/45123 -https://www.oceanexpert.org/expert/17426 -https://www.oceanexpert.org/expert/26977 -https://www.oceanexpert.org/expert/31128 -https://www.oceanexpert.org/event/1851 -https://www.oceanexpert.org/event/818 -https://www.oceanexpert.org/institution/19750 -https://www.oceanexpert.org/expert/37366 -https://www.oceanexpert.org/expert/22708 -https://www.oceanexpert.org/expert/48313 -https://www.oceanexpert.org/expert/46883 -https://www.oceanexpert.org/expert/43352 -https://www.oceanexpert.org/institution/10027 -https://www.oceanexpert.org/expert/44925 -https://www.oceanexpert.org/expert/19161 -https://www.oceanexpert.org/institution/18511 -https://www.oceanexpert.org/event/50 -https://www.oceanexpert.org/expert/21044 -https://www.oceanexpert.org/event/2508 -https://www.oceanexpert.org/institution/10369 -https://www.oceanexpert.org/expert/33274 -https://www.oceanexpert.org/expert/32311 -https://www.oceanexpert.org/expert/25967 -https://www.oceanexpert.org/expert/26587 -https://www.oceanexpert.org/expert/12011 -https://www.oceanexpert.org/expert/35122 -https://www.oceanexpert.org/event/1544 -https://www.oceanexpert.org/expert/38310 -https://www.oceanexpert.org/expert/47028 -https://www.oceanexpert.org/institution/19516 -https://www.oceanexpert.org/institution/21684 -https://www.oceanexpert.org/event/2988 -https://www.oceanexpert.org/expert/24523 -https://www.oceanexpert.org/expert/21355 -https://www.oceanexpert.org/expert/34239 -https://www.oceanexpert.org/institution/11228 -https://www.oceanexpert.org/expert/45752 -https://www.oceanexpert.org/expert/4664 -https://www.oceanexpert.org/expert/22907 -https://www.oceanexpert.org/expert/47084 -https://www.oceanexpert.org/institution/21061 -https://www.oceanexpert.org/expert/26655 -https://www.oceanexpert.org/expert/21830 -https://www.oceanexpert.org/expert/21343 -https://www.oceanexpert.org/expert/29124 -https://www.oceanexpert.org/expert/21695 -https://www.oceanexpert.org/institution/19536 -https://www.oceanexpert.org/expert/19129 -https://www.oceanexpert.org/expert/24214 -https://www.oceanexpert.org/event/1815 -https://www.oceanexpert.org/expert/42173 -https://www.oceanexpert.org/institution/13293 -https://www.oceanexpert.org/event/2173 -https://www.oceanexpert.org/expert/37457 -https://www.oceanexpert.org/expert/11035 -https://www.oceanexpert.org/expert/23706 -https://www.oceanexpert.org/institution/12102 -https://www.oceanexpert.org/event/2559 -https://www.oceanexpert.org/expert/19020 -https://www.oceanexpert.org/expert/27500 -https://www.oceanexpert.org/expert/31502 -https://www.oceanexpert.org/expert/39654 -https://www.oceanexpert.org/event/999 -https://www.oceanexpert.org/expert/23031 -https://www.oceanexpert.org/institution/11460 -https://www.oceanexpert.org/event/2177 -https://www.oceanexpert.org/expert/47165 -https://www.oceanexpert.org/institution/19621 -https://www.oceanexpert.org/institution/12869 -https://www.oceanexpert.org/expert/18176 -https://www.oceanexpert.org/expert/29445 -https://www.oceanexpert.org/institution/18414 -https://www.oceanexpert.org/expert/23455 -https://www.oceanexpert.org/expert/44647 -https://www.oceanexpert.org/institution/21997 -https://www.oceanexpert.org/expert/37064 -https://www.oceanexpert.org/institution/20202 -https://www.oceanexpert.org/expert/28123 -https://www.oceanexpert.org/expert/21044 -https://www.oceanexpert.org/institution/17682 -https://www.oceanexpert.org/expert/22941 -https://www.oceanexpert.org/expert/48305 -https://www.oceanexpert.org/expert/33479 -https://www.oceanexpert.org/expert/14200 -https://www.oceanexpert.org/expert/12490 -https://www.oceanexpert.org/expert/43367 -https://www.oceanexpert.org/expert/23645 -https://www.oceanexpert.org/institution/18994 -https://www.oceanexpert.org/institution/21386 -https://www.oceanexpert.org/institution/20351 -https://www.oceanexpert.org/expert/39337 -https://www.oceanexpert.org/expert/39632 -https://www.oceanexpert.org/expert/36834 -https://www.oceanexpert.org/expert/25574 -https://www.oceanexpert.org/expert/37076 -https://www.oceanexpert.org/expert/43244 -https://www.oceanexpert.org/expert/19756 -https://www.oceanexpert.org/expert/27242 -https://www.oceanexpert.org/institution/19699 -https://www.oceanexpert.org/expert/29672 -https://www.oceanexpert.org/expert/30122 -https://www.oceanexpert.org/expert/35786 -https://www.oceanexpert.org/expert/27702 -https://www.oceanexpert.org/expert/26377 -https://www.oceanexpert.org/expert/33537 -https://www.oceanexpert.org/expert/16386 -https://www.oceanexpert.org/institution/18154 -https://www.oceanexpert.org/event/3000 -https://www.oceanexpert.org/expert/11328 -https://www.oceanexpert.org/expert/23361 -https://www.oceanexpert.org/expert/37208 -https://www.oceanexpert.org/expert/47924 -https://www.oceanexpert.org/expert/26055 -https://www.oceanexpert.org/institution/21417 -https://www.oceanexpert.org/expert/35244 -https://www.oceanexpert.org/expert/34491 -https://www.oceanexpert.org/expert/16129 -https://www.oceanexpert.org/institution/18730 -https://www.oceanexpert.org/institution/12524 -https://www.oceanexpert.org/expert/26623 -https://www.oceanexpert.org/event/1986 -https://www.oceanexpert.org/expert/43516 -https://www.oceanexpert.org/expert/30278 -https://www.oceanexpert.org/expert/27644 -https://www.oceanexpert.org/expert/48786 -https://www.oceanexpert.org/expert/28082 -https://www.oceanexpert.org/expert/18734 -https://www.oceanexpert.org/institution/20173 -https://www.oceanexpert.org/expert/13392 -https://www.oceanexpert.org/expert/19083 -https://www.oceanexpert.org/expert/45171 -https://www.oceanexpert.org/expert/42620 -https://www.oceanexpert.org/expert/25387 -https://www.oceanexpert.org/expert/26498 -https://www.oceanexpert.org/expert/18081 -https://www.oceanexpert.org/expert/38651 -https://www.oceanexpert.org/expert/14837 -https://www.oceanexpert.org/event/2399 -https://www.oceanexpert.org/expert/47374 -https://www.oceanexpert.org/expert/1192 -https://www.oceanexpert.org/expert/12447 -https://www.oceanexpert.org/expert/46152 -https://www.oceanexpert.org/expert/24574 -https://www.oceanexpert.org/event/2287 -https://www.oceanexpert.org/institution/14890 -https://www.oceanexpert.org/expert/27235 -https://www.oceanexpert.org/expert/26498 -https://www.oceanexpert.org/expert/15044 -https://www.oceanexpert.org/expert/31979 -https://www.oceanexpert.org/expert/46239 -https://www.oceanexpert.org/expert/44618 -https://www.oceanexpert.org/expert/21449 -https://www.oceanexpert.org/expert/29687 -https://www.oceanexpert.org/expert/29141 -https://www.oceanexpert.org/expert/30641 -https://www.oceanexpert.org/expert/44298 -https://www.oceanexpert.org/institution/20589 -https://www.oceanexpert.org/expert/22944 -https://www.oceanexpert.org/event/1650 -https://www.oceanexpert.org/institution/12734 -https://www.oceanexpert.org/institution/12678 -https://www.oceanexpert.org/expert/26248 -https://www.oceanexpert.org/expert/18636 -https://www.oceanexpert.org/institution/14444 -https://www.oceanexpert.org/event/2790 -https://www.oceanexpert.org/expert/35970 -https://www.oceanexpert.org/expert/46653 -https://www.oceanexpert.org/expert/33026 -https://www.oceanexpert.org/expert/18664 -https://www.oceanexpert.org/expert/18029 -https://www.oceanexpert.org/event/565 -https://www.oceanexpert.org/institution/18562 -https://www.oceanexpert.org/institution/11550 -https://www.oceanexpert.org/institution/17761 -https://www.oceanexpert.org/expert/20457 -https://www.oceanexpert.org/expert/24859 -https://www.oceanexpert.org/expert/14731 -https://www.oceanexpert.org/event/390 -https://www.oceanexpert.org/expert/1125 -https://www.oceanexpert.org/expert/19468 -https://www.oceanexpert.org/event/1780 -https://www.oceanexpert.org/expert/27180 -https://www.oceanexpert.org/expert/25382 -https://www.oceanexpert.org/expert/47388 -https://www.oceanexpert.org/expert/26280 -https://www.oceanexpert.org/institution/18178 -https://www.oceanexpert.org/expert/4511 -https://www.oceanexpert.org/expert/32602 -https://www.oceanexpert.org/expert/21628 -https://www.oceanexpert.org/expert/43963 -https://www.oceanexpert.org/expert/33319 -https://www.oceanexpert.org/expert/32773 -https://www.oceanexpert.org/expert/18283 -https://www.oceanexpert.org/expert/35581 -https://www.oceanexpert.org/expert/23910 -https://www.oceanexpert.org/institution/14228 -https://www.oceanexpert.org/expert/26864 -https://www.oceanexpert.org/expert/38137 -https://www.oceanexpert.org/event/847 -https://www.oceanexpert.org/expert/24750 -https://www.oceanexpert.org/expert/16048 -https://www.oceanexpert.org/expert/27621 -https://www.oceanexpert.org/expert/39889 -https://www.oceanexpert.org/expert/27554 -https://www.oceanexpert.org/expert/44638 -https://www.oceanexpert.org/expert/22076 -https://www.oceanexpert.org/expert/31716 -https://www.oceanexpert.org/expert/47466 -https://www.oceanexpert.org/expert/27064 -https://www.oceanexpert.org/expert/22377 -https://www.oceanexpert.org/event/668 -https://www.oceanexpert.org/expert/24581 -https://www.oceanexpert.org/expert/20464 -https://www.oceanexpert.org/expert/13204 -https://www.oceanexpert.org/expert/45927 -https://www.oceanexpert.org/expert/17136 -https://www.oceanexpert.org/expert/20891 -https://www.oceanexpert.org/expert/21722 -https://www.oceanexpert.org/institution/18694 -https://www.oceanexpert.org/institution/17743 -https://www.oceanexpert.org/expert/17918 -https://www.oceanexpert.org/expert/28502 -https://www.oceanexpert.org/expert/16574 -https://www.oceanexpert.org/event/2378 -https://www.oceanexpert.org/institution/21799 -https://www.oceanexpert.org/institution/12894 -https://www.oceanexpert.org/expert/45913 -https://www.oceanexpert.org/expert/14981 -https://www.oceanexpert.org/event/1102 -https://www.oceanexpert.org/expert/46463 -https://www.oceanexpert.org/institution/21006 -https://www.oceanexpert.org/event/1328 -https://www.oceanexpert.org/expert/34745 -https://www.oceanexpert.org/expert/29094 -https://www.oceanexpert.org/expert/48685 -https://www.oceanexpert.org/expert/45935 -https://www.oceanexpert.org/event/2552 -https://www.oceanexpert.org/expert/47170 -https://www.oceanexpert.org/expert/762 -https://www.oceanexpert.org/expert/46849 -https://www.oceanexpert.org/expert/5367 -https://www.oceanexpert.org/expert/31185 -https://www.oceanexpert.org/expert/43105 -https://www.oceanexpert.org/institution/17771 -https://www.oceanexpert.org/institution/21710 -https://www.oceanexpert.org/expert/7105 -https://www.oceanexpert.org/institution/18816 -https://www.oceanexpert.org/institution/7132 -https://www.oceanexpert.org/institution/20952 -https://www.oceanexpert.org/expert/1685 -https://www.oceanexpert.org/event/1913 -https://www.oceanexpert.org/event/1680 -https://www.oceanexpert.org/institution/20439 -https://www.oceanexpert.org/expert/21094 -https://www.oceanexpert.org/expert/37971 -https://www.oceanexpert.org/expert/39267 -https://www.oceanexpert.org/expert/35222 -https://www.oceanexpert.org/institution/11456 -https://www.oceanexpert.org/expert/39407 -https://www.oceanexpert.org/expert/27485 -https://www.oceanexpert.org/institution/18441 -https://www.oceanexpert.org/expert/28410 -https://www.oceanexpert.org/expert/237 -https://www.oceanexpert.org/expert/11495 -https://www.oceanexpert.org/event/840 -https://www.oceanexpert.org/expert/21215 -https://www.oceanexpert.org/expert/31238 -https://www.oceanexpert.org/expert/45124 -https://www.oceanexpert.org/event/1370 -https://www.oceanexpert.org/expert/43596 -https://www.oceanexpert.org/expert/16128 -https://www.oceanexpert.org/expert/7002 -https://www.oceanexpert.org/expert/37147 -https://www.oceanexpert.org/expert/27047 -https://www.oceanexpert.org/expert/22395 -https://www.oceanexpert.org/event/2833 -https://www.oceanexpert.org/expert/27569 -https://www.oceanexpert.org/institution/21363 -https://www.oceanexpert.org/event/2157 -https://www.oceanexpert.org/institution/9276 -https://www.oceanexpert.org/expert/36999 -https://www.oceanexpert.org/expert/26444 -https://www.oceanexpert.org/expert/13359 -https://www.oceanexpert.org/institution/16877 -https://www.oceanexpert.org/institution/19748 -https://www.oceanexpert.org/expert/31810 -https://www.oceanexpert.org/expert/39371 -https://www.oceanexpert.org/event/2680 -https://www.oceanexpert.org/institution/21669 -https://www.oceanexpert.org/expert/27874 -https://www.oceanexpert.org/event/1477 -https://www.oceanexpert.org/expert/24251 -https://www.oceanexpert.org/event/752 -https://www.oceanexpert.org/expert/29363 -https://www.oceanexpert.org/expert/17307 -https://www.oceanexpert.org/expert/21548 -https://www.oceanexpert.org/expert/32311 -https://www.oceanexpert.org/expert/19074 -https://www.oceanexpert.org/institution/19340 -https://www.oceanexpert.org/expert/46421 -https://www.oceanexpert.org/expert/48100 -https://www.oceanexpert.org/institution/19212 -https://www.oceanexpert.org/expert/1366 -https://www.oceanexpert.org/event/2771 -https://www.oceanexpert.org/expert/47691 -https://www.oceanexpert.org/event/2837 -https://www.oceanexpert.org/event/949 -https://www.oceanexpert.org/institution/7267 -https://www.oceanexpert.org/expert/18762 -https://www.oceanexpert.org/expert/27459 -https://www.oceanexpert.org/expert/30338 -https://www.oceanexpert.org/expert/18141 -https://www.oceanexpert.org/institution/11041 -https://www.oceanexpert.org/expert/33910 -https://www.oceanexpert.org/institution/21311 -https://www.oceanexpert.org/event/113 -https://www.oceanexpert.org/institution/18427 -https://www.oceanexpert.org/expert/36809 -https://www.oceanexpert.org/expert/36753 -https://www.oceanexpert.org/expert/31273 -https://www.oceanexpert.org/expert/26901 -https://www.oceanexpert.org/expert/38966 -https://www.oceanexpert.org/expert/529 -https://www.oceanexpert.org/expert/31422 -https://www.oceanexpert.org/expert/18322 -https://www.oceanexpert.org/institution/7267 -https://www.oceanexpert.org/expert/16946 -https://www.oceanexpert.org/institution/14943 -https://www.oceanexpert.org/institution/20502 -https://www.oceanexpert.org/institution/19850 -https://www.oceanexpert.org/expert/30808 -https://www.oceanexpert.org/institution/15885 -https://www.oceanexpert.org/expert/31043 -https://www.oceanexpert.org/expert/25596 -https://www.oceanexpert.org/expert/23599 -https://www.oceanexpert.org/expert/35639 -https://www.oceanexpert.org/expert/42674 -https://www.oceanexpert.org/event/2030 -https://www.oceanexpert.org/expert/42262 -https://www.oceanexpert.org/expert/45829 -https://www.oceanexpert.org/expert/48596 -https://www.oceanexpert.org/institution/15268 -https://www.oceanexpert.org/expert/25812 -https://www.oceanexpert.org/expert/11040 -https://www.oceanexpert.org/expert/42554 -https://www.oceanexpert.org/expert/42805 -https://www.oceanexpert.org/expert/24551 -https://www.oceanexpert.org/expert/43239 -https://www.oceanexpert.org/expert/10783 -https://www.oceanexpert.org/expert/46290 -https://www.oceanexpert.org/institution/7920 -https://www.oceanexpert.org/expert/25347 -https://www.oceanexpert.org/expert/45757 -https://www.oceanexpert.org/institution/5385 -https://www.oceanexpert.org/expert/36892 -https://www.oceanexpert.org/expert/19053 -https://www.oceanexpert.org/institution/13269 -https://www.oceanexpert.org/expert/43216 -https://www.oceanexpert.org/expert/33260 -https://www.oceanexpert.org/expert/18353 -https://www.oceanexpert.org/expert/34063 -https://www.oceanexpert.org/expert/22913 -https://www.oceanexpert.org/expert/21215 -https://www.oceanexpert.org/expert/26348 -https://www.oceanexpert.org/expert/20556 -https://www.oceanexpert.org/expert/43555 -https://www.oceanexpert.org/institution/16780 -https://www.oceanexpert.org/expert/26042 -https://www.oceanexpert.org/expert/21525 -https://www.oceanexpert.org/expert/45121 -https://www.oceanexpert.org/expert/36663 -https://www.oceanexpert.org/event/2120 -https://www.oceanexpert.org/expert/24503 -https://www.oceanexpert.org/expert/34259 -https://www.oceanexpert.org/expert/23715 -https://www.oceanexpert.org/expert/32886 -https://www.oceanexpert.org/expert/14389 -https://www.oceanexpert.org/expert/45068 -https://www.oceanexpert.org/expert/47086 -https://www.oceanexpert.org/institution/21089 -https://www.oceanexpert.org/expert/48968 -https://www.oceanexpert.org/event/3158 -https://www.oceanexpert.org/expert/33168 -https://www.oceanexpert.org/expert/47732 -https://www.oceanexpert.org/expert/39035 -https://www.oceanexpert.org/expert/17741 -https://www.oceanexpert.org/expert/26584 -https://www.oceanexpert.org/institution/20342 -https://www.oceanexpert.org/expert/45488 -https://www.oceanexpert.org/expert/33998 -https://www.oceanexpert.org/expert/18227 -https://www.oceanexpert.org/expert/19927 -https://www.oceanexpert.org/institution/19557 -https://www.oceanexpert.org/expert/28267 -https://www.oceanexpert.org/expert/38460 -https://www.oceanexpert.org/expert/33804 -https://www.oceanexpert.org/expert/31656 -https://www.oceanexpert.org/expert/26796 -https://www.oceanexpert.org/expert/1844 -https://www.oceanexpert.org/institution/15676 -https://www.oceanexpert.org/expert/22832 -https://www.oceanexpert.org/expert/25209 -https://www.oceanexpert.org/expert/25386 -https://www.oceanexpert.org/expert/43888 -https://www.oceanexpert.org/event/2979 -https://www.oceanexpert.org/institution/13940 -https://www.oceanexpert.org/expert/26497 -https://www.oceanexpert.org/expert/10735 -https://www.oceanexpert.org/event/2662 -https://www.oceanexpert.org/expert/9501 -https://www.oceanexpert.org/expert/43841 -https://www.oceanexpert.org/institution/18430 -https://www.oceanexpert.org/event/106 -https://www.oceanexpert.org/expert/13117 -https://www.oceanexpert.org/event/2327 -https://www.oceanexpert.org/expert/818 -https://www.oceanexpert.org/institution/13001 -https://www.oceanexpert.org/institution/22085 -https://www.oceanexpert.org/expert/36480 -https://www.oceanexpert.org/expert/35773 -https://www.oceanexpert.org/expert/26642 -https://www.oceanexpert.org/expert/14444 -https://www.oceanexpert.org/expert/32939 -https://www.oceanexpert.org/expert/46799 -https://www.oceanexpert.org/institution/13992 -https://www.oceanexpert.org/expert/23630 -https://www.oceanexpert.org/expert/20065 -https://www.oceanexpert.org/expert/24029 -https://www.oceanexpert.org/expert/19756 -https://www.oceanexpert.org/institution/13298 -https://www.oceanexpert.org/expert/33794 -https://www.oceanexpert.org/expert/12004 -https://www.oceanexpert.org/expert/26615 -https://www.oceanexpert.org/expert/23034 -https://www.oceanexpert.org/institution/16022 -https://www.oceanexpert.org/expert/39322 -https://www.oceanexpert.org/expert/30410 -https://www.oceanexpert.org/expert/21451 -https://www.oceanexpert.org/expert/43191 -https://www.oceanexpert.org/expert/46148 -https://www.oceanexpert.org/expert/28494 -https://www.oceanexpert.org/event/276 -https://www.oceanexpert.org/expert/14433 -https://www.oceanexpert.org/institution/13293 -https://www.oceanexpert.org/expert/8427 -https://www.oceanexpert.org/institution/21206 -https://www.oceanexpert.org/event/2471 -https://www.oceanexpert.org/expert/41272 -https://www.oceanexpert.org/expert/7904 -https://www.oceanexpert.org/expert/44610 -https://www.oceanexpert.org/institution/14502 -https://www.oceanexpert.org/expert/46915 -https://www.oceanexpert.org/expert/19333 -https://www.oceanexpert.org/institution/21709 -https://www.oceanexpert.org/expert/44184 -https://www.oceanexpert.org/expert/43029 -https://www.oceanexpert.org/expert/42594 -https://www.oceanexpert.org/expert/31516 -https://www.oceanexpert.org/expert/17421 -https://www.oceanexpert.org/institution/17298 -https://www.oceanexpert.org/expert/47454 -https://www.oceanexpert.org/expert/17235 -https://www.oceanexpert.org/institution/21463 -https://www.oceanexpert.org/event/369 -https://www.oceanexpert.org/event/431 -https://www.oceanexpert.org/expert/14729 -https://www.oceanexpert.org/institution/15109 -https://www.oceanexpert.org/institution/12309 -https://www.oceanexpert.org/expert/11721 -https://www.oceanexpert.org/event/3297 -https://www.oceanexpert.org/institution/5170 -https://www.oceanexpert.org/expert/40367 -https://www.oceanexpert.org/institution/21077 -https://www.oceanexpert.org/expert/42647 -https://www.oceanexpert.org/institution/21960 -https://www.oceanexpert.org/expert/25684 -https://www.oceanexpert.org/expert/36450 -https://www.oceanexpert.org/institution/13911 -https://www.oceanexpert.org/expert/33751 -https://www.oceanexpert.org/expert/32197 -https://www.oceanexpert.org/institution/21836 -https://www.oceanexpert.org/expert/22241 -https://www.oceanexpert.org/institution/14036 -https://www.oceanexpert.org/expert/11427 -https://www.oceanexpert.org/expert/35800 -https://www.oceanexpert.org/event/704 -https://www.oceanexpert.org/expert/23647 -https://www.oceanexpert.org/expert/23722 -https://www.oceanexpert.org/expert/44782 -https://www.oceanexpert.org/expert/29482 -https://www.oceanexpert.org/expert/7857 -https://www.oceanexpert.org/expert/23520 -https://www.oceanexpert.org/expert/42927 -https://www.oceanexpert.org/event/1366 -https://www.oceanexpert.org/expert/17430 -https://www.oceanexpert.org/institution/10566 -https://www.oceanexpert.org/expert/34639 -https://www.oceanexpert.org/expert/38422 -https://www.oceanexpert.org/expert/16759 -https://www.oceanexpert.org/event/162 -https://www.oceanexpert.org/institution/17770 -https://www.oceanexpert.org/event/3036 -https://www.oceanexpert.org/institution/19285 -https://www.oceanexpert.org/institution/16878 -https://www.oceanexpert.org/institution/18194 -https://www.oceanexpert.org/event/1041 -https://www.oceanexpert.org/expert/23426 -https://www.oceanexpert.org/expert/19917 -https://www.oceanexpert.org/expert/22441 -https://www.oceanexpert.org/expert/43066 -https://www.oceanexpert.org/event/3281 -https://www.oceanexpert.org/expert/11300 -https://www.oceanexpert.org/expert/36504 -https://www.oceanexpert.org/event/2008 -https://www.oceanexpert.org/institution/8960 -https://www.oceanexpert.org/expert/29809 -https://www.oceanexpert.org/event/2141 -https://www.oceanexpert.org/institution/15026 -https://www.oceanexpert.org/event/873 -https://www.oceanexpert.org/expert/35126 -https://www.oceanexpert.org/event/719 -https://www.oceanexpert.org/expert/18487 -https://www.oceanexpert.org/institution/18052 -https://www.oceanexpert.org/event/2526 -https://www.oceanexpert.org/expert/46747 -https://www.oceanexpert.org/expert/38692 -https://www.oceanexpert.org/expert/38379 -https://www.oceanexpert.org/expert/45661 -https://www.oceanexpert.org/institution/19886 -https://www.oceanexpert.org/expert/44707 -https://www.oceanexpert.org/institution/8675 -https://www.oceanexpert.org/expert/25338 -https://www.oceanexpert.org/expert/20600 -https://www.oceanexpert.org/institution/18964 -https://www.oceanexpert.org/expert/11237 -https://www.oceanexpert.org/institution/21174 -https://www.oceanexpert.org/expert/28325 -https://www.oceanexpert.org/expert/19117 -https://www.oceanexpert.org/expert/45109 -https://www.oceanexpert.org/institution/19644 -https://www.oceanexpert.org/expert/47541 -https://www.oceanexpert.org/expert/43223 -https://www.oceanexpert.org/expert/37788 -https://www.oceanexpert.org/event/822 -https://www.oceanexpert.org/expert/18354 -https://www.oceanexpert.org/event/436 -https://www.oceanexpert.org/expert/22857 -https://www.oceanexpert.org/expert/21149 -https://www.oceanexpert.org/institution/19524 -https://www.oceanexpert.org/expert/16884 -https://www.oceanexpert.org/expert/31383 -https://www.oceanexpert.org/expert/22629 -https://www.oceanexpert.org/institution/12104 -https://www.oceanexpert.org/institution/12467 -https://www.oceanexpert.org/expert/20225 -https://www.oceanexpert.org/expert/36265 -https://www.oceanexpert.org/expert/20362 -https://www.oceanexpert.org/institution/16511 -https://www.oceanexpert.org/expert/34134 -https://www.oceanexpert.org/event/3086 -https://www.oceanexpert.org/expert/2627 -https://www.oceanexpert.org/event/2964 -https://www.oceanexpert.org/expert/14485 -https://www.oceanexpert.org/institution/15867 -https://www.oceanexpert.org/expert/28277 -https://www.oceanexpert.org/institution/6695 -https://www.oceanexpert.org/expert/11014 -https://www.oceanexpert.org/expert/8445 -https://www.oceanexpert.org/expert/16884 -https://www.oceanexpert.org/event/2216 -https://www.oceanexpert.org/institution/11568 -https://www.oceanexpert.org/expert/23797 -https://www.oceanexpert.org/expert/38440 -https://www.oceanexpert.org/expert/34039 -https://www.oceanexpert.org/expert/20782 -https://www.oceanexpert.org/expert/3990 -https://www.oceanexpert.org/event/2956 -https://www.oceanexpert.org/institution/8124 -https://www.oceanexpert.org/event/2201 -https://www.oceanexpert.org/institution/13023 -https://www.oceanexpert.org/expert/22838 -https://www.oceanexpert.org/expert/42776 -https://www.oceanexpert.org/expert/43756 -https://www.oceanexpert.org/expert/33606 -https://www.oceanexpert.org/institution/12317 -https://www.oceanexpert.org/institution/22077 -https://www.oceanexpert.org/expert/35281 -https://www.oceanexpert.org/expert/21243 -https://www.oceanexpert.org/event/2209 -https://www.oceanexpert.org/expert/22536 -https://www.oceanexpert.org/expert/19323 -https://www.oceanexpert.org/expert/15353 -https://www.oceanexpert.org/expert/26608 -https://www.oceanexpert.org/expert/23364 -https://www.oceanexpert.org/event/245 -https://www.oceanexpert.org/expert/48362 -https://www.oceanexpert.org/expert/25602 -https://www.oceanexpert.org/expert/32231 -https://www.oceanexpert.org/institution/19885 -https://www.oceanexpert.org/expert/46972 -https://www.oceanexpert.org/expert/22634 -https://www.oceanexpert.org/expert/5722 -https://www.oceanexpert.org/expert/29584 -https://www.oceanexpert.org/institution/19636 -https://www.oceanexpert.org/expert/23035 -https://www.oceanexpert.org/expert/42649 -https://www.oceanexpert.org/institution/19508 -https://www.oceanexpert.org/event/1128 -https://www.oceanexpert.org/expert/31395 -https://www.oceanexpert.org/expert/24643 -https://www.oceanexpert.org/expert/19135 -https://www.oceanexpert.org/expert/20184 -https://www.oceanexpert.org/expert/22280 -https://www.oceanexpert.org/institution/6954 -https://www.oceanexpert.org/institution/19597 -https://www.oceanexpert.org/expert/24720 -https://www.oceanexpert.org/expert/14040 -https://www.oceanexpert.org/expert/20590 -https://www.oceanexpert.org/expert/48028 -https://www.oceanexpert.org/institution/10145 -https://www.oceanexpert.org/expert/44648 -https://www.oceanexpert.org/institution/14750 -https://www.oceanexpert.org/expert/37226 -https://www.oceanexpert.org/institution/11350 -https://www.oceanexpert.org/institution/20433 -https://www.oceanexpert.org/expert/23517 -https://www.oceanexpert.org/expert/21174 -https://www.oceanexpert.org/expert/7272 -https://www.oceanexpert.org/institution/21893 -https://www.oceanexpert.org/expert/29787 -https://www.oceanexpert.org/expert/34619 -https://www.oceanexpert.org/institution/6106 -https://www.oceanexpert.org/expert/42765 -https://www.oceanexpert.org/expert/12177 -https://www.oceanexpert.org/event/1960 -https://www.oceanexpert.org/expert/31183 -https://www.oceanexpert.org/expert/29796 -https://www.oceanexpert.org/expert/41547 -https://www.oceanexpert.org/expert/42885 -https://www.oceanexpert.org/institution/14046 -https://www.oceanexpert.org/expert/46051 -https://www.oceanexpert.org/event/2844 -https://www.oceanexpert.org/expert/38635 -https://www.oceanexpert.org/expert/35824 -https://www.oceanexpert.org/expert/14433 -https://www.oceanexpert.org/institution/14569 -https://www.oceanexpert.org/expert/25888 -https://www.oceanexpert.org/expert/32586 -https://www.oceanexpert.org/expert/44931 -https://www.oceanexpert.org/expert/26943 -https://www.oceanexpert.org/expert/11937 -https://www.oceanexpert.org/expert/23621 -https://www.oceanexpert.org/expert/13122 -https://www.oceanexpert.org/expert/21174 -https://www.oceanexpert.org/institution/18803 -https://www.oceanexpert.org/institution/21476 -https://www.oceanexpert.org/expert/24564 -https://www.oceanexpert.org/institution/8718 -https://www.oceanexpert.org/expert/12908 -https://www.oceanexpert.org/expert/38292 -https://www.oceanexpert.org/expert/13027 -https://www.oceanexpert.org/institution/18889 -https://www.oceanexpert.org/expert/38565 -https://www.oceanexpert.org/expert/7022 -https://www.oceanexpert.org/expert/24393 -https://www.oceanexpert.org/institution/18861 -https://www.oceanexpert.org/expert/13294 -https://www.oceanexpert.org/expert/5633 -https://www.oceanexpert.org/expert/37227 -https://www.oceanexpert.org/expert/7171 -https://www.oceanexpert.org/expert/17895 -https://www.oceanexpert.org/institution/8809 -https://www.oceanexpert.org/expert/14876 -https://www.oceanexpert.org/expert/47446 -https://www.oceanexpert.org/expert/1998 -https://www.oceanexpert.org/institution/16220 -https://www.oceanexpert.org/institution/19151 -https://www.oceanexpert.org/expert/37147 -https://www.oceanexpert.org/event/2779 -https://www.oceanexpert.org/expert/11035 -https://www.oceanexpert.org/expert/35873 -https://www.oceanexpert.org/expert/24722 -https://www.oceanexpert.org/institution/21986 -https://www.oceanexpert.org/event/2800 -https://www.oceanexpert.org/institution/18659 -https://www.oceanexpert.org/expert/25797 -https://www.oceanexpert.org/expert/27011 -https://www.oceanexpert.org/expert/881 -https://www.oceanexpert.org/expert/48908 -https://www.oceanexpert.org/expert/44039 -https://www.oceanexpert.org/institution/17437 -https://www.oceanexpert.org/expert/47049 -https://www.oceanexpert.org/expert/20742 -https://www.oceanexpert.org/expert/36654 -https://www.oceanexpert.org/institution/15824 -https://www.oceanexpert.org/expert/17431 -https://www.oceanexpert.org/expert/19758 -https://www.oceanexpert.org/expert/37507 -https://www.oceanexpert.org/institution/19534 -https://www.oceanexpert.org/expert/34093 -https://www.oceanexpert.org/expert/24560 -https://www.oceanexpert.org/expert/2067 -https://www.oceanexpert.org/expert/34809 -https://www.oceanexpert.org/expert/25536 -https://www.oceanexpert.org/institution/20162 -https://www.oceanexpert.org/expert/23181 -https://www.oceanexpert.org/expert/38893 -https://www.oceanexpert.org/event/1061 -https://www.oceanexpert.org/expert/43978 -https://www.oceanexpert.org/event/2570 -https://www.oceanexpert.org/expert/27336 -https://www.oceanexpert.org/expert/39252 -https://www.oceanexpert.org/institution/20779 -https://www.oceanexpert.org/expert/44438 -https://www.oceanexpert.org/expert/33253 -https://www.oceanexpert.org/institution/21757 -https://www.oceanexpert.org/expert/14437 -https://www.oceanexpert.org/expert/19531 -https://www.oceanexpert.org/event/2325 -https://www.oceanexpert.org/event/1773 -https://www.oceanexpert.org/expert/27131 -https://www.oceanexpert.org/expert/18679 -https://www.oceanexpert.org/expert/35584 -https://www.oceanexpert.org/expert/12729 -https://www.oceanexpert.org/institution/18624 -https://www.oceanexpert.org/expert/38019 -https://www.oceanexpert.org/expert/37441 -https://www.oceanexpert.org/expert/39293 -https://www.oceanexpert.org/institution/5637 -https://www.oceanexpert.org/expert/45538 -https://www.oceanexpert.org/expert/6731 -https://www.oceanexpert.org/expert/32565 -https://www.oceanexpert.org/expert/23915 -https://www.oceanexpert.org/expert/36600 -https://www.oceanexpert.org/expert/24517 -https://www.oceanexpert.org/expert/28133 -https://www.oceanexpert.org/institution/21533 -https://www.oceanexpert.org/expert/24919 -https://www.oceanexpert.org/expert/42931 -https://www.oceanexpert.org/institution/21501 -https://www.oceanexpert.org/event/419 -https://www.oceanexpert.org/event/2576 -https://www.oceanexpert.org/expert/35566 -https://www.oceanexpert.org/expert/36161 -https://www.oceanexpert.org/expert/37336 -https://www.oceanexpert.org/expert/11777 -https://www.oceanexpert.org/expert/48693 -https://www.oceanexpert.org/expert/29516 -https://www.oceanexpert.org/institution/19328 -https://www.oceanexpert.org/institution/20671 -https://www.oceanexpert.org/expert/43631 -https://www.oceanexpert.org/institution/19738 -https://www.oceanexpert.org/expert/46302 -https://www.oceanexpert.org/expert/27268 -https://www.oceanexpert.org/expert/34043 -https://www.oceanexpert.org/institution/13791 -https://www.oceanexpert.org/institution/13108 -https://www.oceanexpert.org/institution/18491 -https://www.oceanexpert.org/expert/25327 -https://www.oceanexpert.org/institution/18070 -https://www.oceanexpert.org/expert/45893 -https://www.oceanexpert.org/expert/36979 -https://www.oceanexpert.org/institution/5427 -https://www.oceanexpert.org/expert/37990 -https://www.oceanexpert.org/expert/43732 -https://www.oceanexpert.org/expert/28213 -https://www.oceanexpert.org/event/1859 -https://www.oceanexpert.org/expert/32149 -https://www.oceanexpert.org/expert/43033 -https://www.oceanexpert.org/event/1130 -https://www.oceanexpert.org/expert/33300 -https://www.oceanexpert.org/expert/2134 -https://www.oceanexpert.org/expert/25292 -https://www.oceanexpert.org/expert/46481 -https://www.oceanexpert.org/expert/26841 -https://www.oceanexpert.org/expert/23606 -https://www.oceanexpert.org/expert/23707 -https://www.oceanexpert.org/expert/40308 -https://www.oceanexpert.org/event/642 -https://www.oceanexpert.org/institution/19530 -https://www.oceanexpert.org/event/2679 -https://www.oceanexpert.org/expert/22009 -https://www.oceanexpert.org/expert/18128 -https://www.oceanexpert.org/expert/21034 -https://www.oceanexpert.org/expert/7787 -https://www.oceanexpert.org/expert/19990 -https://www.oceanexpert.org/expert/42824 -https://www.oceanexpert.org/institution/20087 -https://www.oceanexpert.org/expert/31430 -https://www.oceanexpert.org/expert/46493 -https://www.oceanexpert.org/expert/34060 -https://www.oceanexpert.org/expert/21196 -https://www.oceanexpert.org/expert/34585 -https://www.oceanexpert.org/expert/30736 -https://www.oceanexpert.org/expert/30892 -https://www.oceanexpert.org/expert/15026 -https://www.oceanexpert.org/expert/46937 -https://www.oceanexpert.org/institution/19371 -https://www.oceanexpert.org/expert/20869 -https://www.oceanexpert.org/institution/19511 -https://www.oceanexpert.org/expert/38397 -https://www.oceanexpert.org/event/1807 -https://www.oceanexpert.org/expert/27265 -https://www.oceanexpert.org/expert/36557 -https://www.oceanexpert.org/expert/16241 -https://www.oceanexpert.org/institution/21647 -https://www.oceanexpert.org/expert/34686 -https://www.oceanexpert.org/event/1423 -https://www.oceanexpert.org/institution/17614 -https://www.oceanexpert.org/expert/47735 -https://www.oceanexpert.org/expert/24478 -https://www.oceanexpert.org/expert/25965 -https://www.oceanexpert.org/expert/46665 -https://www.oceanexpert.org/expert/20165 -https://www.oceanexpert.org/expert/17392 -https://www.oceanexpert.org/expert/44204 -https://www.oceanexpert.org/institution/21168 -https://www.oceanexpert.org/institution/18247 -https://www.oceanexpert.org/expert/27794 -https://www.oceanexpert.org/expert/30801 -https://www.oceanexpert.org/institution/20452 -https://www.oceanexpert.org/expert/18536 -https://www.oceanexpert.org/expert/38274 -https://www.oceanexpert.org/expert/24715 -https://www.oceanexpert.org/expert/32322 -https://www.oceanexpert.org/institution/20389 -https://www.oceanexpert.org/expert/33453 -https://www.oceanexpert.org/expert/35145 -https://www.oceanexpert.org/expert/20492 -https://www.oceanexpert.org/expert/43547 -https://www.oceanexpert.org/expert/34782 -https://www.oceanexpert.org/expert/27368 -https://www.oceanexpert.org/institution/14309 -https://www.oceanexpert.org/event/1440 -https://www.oceanexpert.org/expert/6927 -https://www.oceanexpert.org/event/1481 -https://www.oceanexpert.org/event/1086 -https://www.oceanexpert.org/expert/48498 -https://www.oceanexpert.org/expert/11769 -https://www.oceanexpert.org/expert/28292 -https://www.oceanexpert.org/expert/21198 -https://www.oceanexpert.org/expert/12604 -https://www.oceanexpert.org/expert/10790 -https://www.oceanexpert.org/expert/23190 -https://www.oceanexpert.org/institution/14181 -https://www.oceanexpert.org/expert/28175 -https://www.oceanexpert.org/institution/11480 -https://www.oceanexpert.org/institution/17220 -https://www.oceanexpert.org/event/552 -https://www.oceanexpert.org/expert/16986 -https://www.oceanexpert.org/expert/32547 -https://www.oceanexpert.org/expert/1434 -https://www.oceanexpert.org/expert/22366 -https://www.oceanexpert.org/institution/19680 -https://www.oceanexpert.org/expert/27256 -https://www.oceanexpert.org/expert/21484 -https://www.oceanexpert.org/expert/23466 -https://www.oceanexpert.org/expert/24669 -https://www.oceanexpert.org/expert/26730 -https://www.oceanexpert.org/expert/38226 -https://www.oceanexpert.org/expert/17854 -https://www.oceanexpert.org/expert/31067 -https://www.oceanexpert.org/expert/47155 -https://www.oceanexpert.org/institution/18682 -https://www.oceanexpert.org/institution/18646 -https://www.oceanexpert.org/expert/34933 -https://www.oceanexpert.org/institution/8032 -https://www.oceanexpert.org/institution/17326 -https://www.oceanexpert.org/expert/19749 -https://www.oceanexpert.org/event/2511 -https://www.oceanexpert.org/expert/20957 -https://www.oceanexpert.org/expert/14493 -https://www.oceanexpert.org/expert/6207 -https://www.oceanexpert.org/expert/25693 -https://www.oceanexpert.org/expert/44150 -https://www.oceanexpert.org/event/2413 -https://www.oceanexpert.org/expert/23035 -https://www.oceanexpert.org/expert/27459 -https://www.oceanexpert.org/expert/22021 -https://www.oceanexpert.org/expert/28472 -https://www.oceanexpert.org/expert/25518 -https://www.oceanexpert.org/event/2844 -https://www.oceanexpert.org/event/1161 -https://www.oceanexpert.org/institution/18695 -https://www.oceanexpert.org/expert/45039 -https://www.oceanexpert.org/expert/34696 -https://www.oceanexpert.org/expert/19285 -https://www.oceanexpert.org/institution/7213 -https://www.oceanexpert.org/expert/20482 -https://www.oceanexpert.org/expert/13257 -https://www.oceanexpert.org/expert/46812 -https://www.oceanexpert.org/expert/29871 -https://www.oceanexpert.org/institution/18723 -https://www.oceanexpert.org/expert/34701 -https://www.oceanexpert.org/event/299 -https://www.oceanexpert.org/expert/18891 -https://www.oceanexpert.org/event/1053 -https://www.oceanexpert.org/expert/35776 -https://www.oceanexpert.org/expert/15169 -https://www.oceanexpert.org/expert/24090 -https://www.oceanexpert.org/expert/26489 -https://www.oceanexpert.org/institution/19374 -https://www.oceanexpert.org/expert/25546 -https://www.oceanexpert.org/institution/18464 -https://www.oceanexpert.org/expert/25753 -https://www.oceanexpert.org/expert/821 -https://www.oceanexpert.org/event/943 -https://www.oceanexpert.org/expert/27557 -https://www.oceanexpert.org/expert/783 -https://www.oceanexpert.org/expert/32211 -https://www.oceanexpert.org/expert/30052 -https://www.oceanexpert.org/institution/21203 -https://www.oceanexpert.org/expert/25501 -https://www.oceanexpert.org/expert/22921 -https://www.oceanexpert.org/expert/24786 -https://www.oceanexpert.org/expert/31054 -https://www.oceanexpert.org/expert/23914 -https://www.oceanexpert.org/institution/17433 -https://www.oceanexpert.org/expert/38370 -https://www.oceanexpert.org/expert/18949 -https://www.oceanexpert.org/expert/47607 -https://www.oceanexpert.org/expert/44151 -https://www.oceanexpert.org/expert/19355 -https://www.oceanexpert.org/expert/19771 -https://www.oceanexpert.org/expert/18057 -https://www.oceanexpert.org/expert/20829 -https://www.oceanexpert.org/institution/21946 -https://www.oceanexpert.org/expert/15028 -https://www.oceanexpert.org/expert/32692 -https://www.oceanexpert.org/expert/46920 -https://www.oceanexpert.org/expert/44344 -https://www.oceanexpert.org/expert/45177 -https://www.oceanexpert.org/event/2650 -https://www.oceanexpert.org/expert/17006 -https://www.oceanexpert.org/expert/11963 -https://www.oceanexpert.org/expert/3238 -https://www.oceanexpert.org/institution/20634 -https://www.oceanexpert.org/expert/38650 -https://www.oceanexpert.org/expert/22409 -https://www.oceanexpert.org/expert/18562 -https://www.oceanexpert.org/expert/27591 -https://www.oceanexpert.org/institution/22102 -https://www.oceanexpert.org/expert/43807 -https://www.oceanexpert.org/institution/18858 -https://www.oceanexpert.org/expert/20091 -https://www.oceanexpert.org/expert/33743 -https://www.oceanexpert.org/expert/23911 -https://www.oceanexpert.org/institution/19229 -https://www.oceanexpert.org/expert/21765 -https://www.oceanexpert.org/institution/17827 -https://www.oceanexpert.org/institution/21632 -https://www.oceanexpert.org/expert/43898 -https://www.oceanexpert.org/institution/11497 -https://www.oceanexpert.org/institution/17602 -https://www.oceanexpert.org/expert/40257 -https://www.oceanexpert.org/expert/19820 -https://www.oceanexpert.org/expert/25652 -https://www.oceanexpert.org/expert/27581 -https://www.oceanexpert.org/expert/32143 -https://www.oceanexpert.org/institution/20799 -https://www.oceanexpert.org/institution/18865 -https://www.oceanexpert.org/expert/13142 -https://www.oceanexpert.org/expert/43332 -https://www.oceanexpert.org/expert/32275 -https://www.oceanexpert.org/expert/18331 -https://www.oceanexpert.org/expert/38563 -https://www.oceanexpert.org/expert/34284 -https://www.oceanexpert.org/expert/47778 -https://www.oceanexpert.org/expert/35274 -https://www.oceanexpert.org/expert/40118 -https://www.oceanexpert.org/expert/29589 -https://www.oceanexpert.org/expert/36685 -https://www.oceanexpert.org/expert/20931 -https://www.oceanexpert.org/expert/37901 -https://www.oceanexpert.org/expert/30814 -https://www.oceanexpert.org/event/2095 -https://www.oceanexpert.org/expert/27268 -https://www.oceanexpert.org/expert/22480 -https://www.oceanexpert.org/expert/43703 -https://www.oceanexpert.org/expert/18705 -https://www.oceanexpert.org/institution/19495 -https://www.oceanexpert.org/institution/21415 -https://www.oceanexpert.org/expert/43592 -https://www.oceanexpert.org/expert/33803 -https://www.oceanexpert.org/institution/20938 -https://www.oceanexpert.org/institution/21665 -https://www.oceanexpert.org/event/1370 -https://www.oceanexpert.org/expert/30388 -https://www.oceanexpert.org/expert/12977 -https://www.oceanexpert.org/expert/24808 -https://www.oceanexpert.org/expert/33125 -https://www.oceanexpert.org/expert/46758 -https://www.oceanexpert.org/event/88 -https://www.oceanexpert.org/expert/16182 -https://www.oceanexpert.org/expert/47818 -https://www.oceanexpert.org/institution/6974 -https://www.oceanexpert.org/expert/47542 -https://www.oceanexpert.org/institution/19316 -https://www.oceanexpert.org/expert/36779 -https://www.oceanexpert.org/expert/12884 -https://www.oceanexpert.org/expert/44010 -https://www.oceanexpert.org/expert/29137 -https://www.oceanexpert.org/expert/30317 -https://www.oceanexpert.org/expert/16623 -https://www.oceanexpert.org/expert/35238 -https://www.oceanexpert.org/expert/16327 -https://www.oceanexpert.org/expert/45608 -https://www.oceanexpert.org/expert/42152 -https://www.oceanexpert.org/institution/9162 -https://www.oceanexpert.org/expert/30773 -https://www.oceanexpert.org/institution/17593 -https://www.oceanexpert.org/expert/43224 -https://www.oceanexpert.org/expert/27098 -https://www.oceanexpert.org/expert/25153 -https://www.oceanexpert.org/institution/6493 -https://www.oceanexpert.org/event/3049 -https://www.oceanexpert.org/expert/45982 -https://www.oceanexpert.org/institution/10233 -https://www.oceanexpert.org/event/982 -https://www.oceanexpert.org/expert/14734 -https://www.oceanexpert.org/institution/21889 -https://www.oceanexpert.org/expert/25462 -https://www.oceanexpert.org/event/153 -https://www.oceanexpert.org/expert/35741 -https://www.oceanexpert.org/event/3014 -https://www.oceanexpert.org/expert/38608 -https://www.oceanexpert.org/expert/24208 -https://www.oceanexpert.org/expert/35618 -https://www.oceanexpert.org/expert/25809 -https://www.oceanexpert.org/expert/20597 -https://www.oceanexpert.org/expert/42574 -https://www.oceanexpert.org/institution/21548 -https://www.oceanexpert.org/institution/19709 -https://www.oceanexpert.org/expert/27178 -https://www.oceanexpert.org/institution/10333 -https://www.oceanexpert.org/expert/20026 -https://www.oceanexpert.org/expert/48918 -https://www.oceanexpert.org/expert/21201 -https://www.oceanexpert.org/expert/33656 -https://www.oceanexpert.org/expert/28086 -https://www.oceanexpert.org/expert/39587 -https://www.oceanexpert.org/expert/24558 -https://www.oceanexpert.org/event/1253 -https://www.oceanexpert.org/expert/17064 -https://www.oceanexpert.org/event/2602 -https://www.oceanexpert.org/expert/25760 -https://www.oceanexpert.org/expert/48800 -https://www.oceanexpert.org/expert/17242 -https://www.oceanexpert.org/expert/42941 -https://www.oceanexpert.org/institution/22089 -https://www.oceanexpert.org/expert/24450 -https://www.oceanexpert.org/event/2941 -https://www.oceanexpert.org/expert/33774 -https://www.oceanexpert.org/expert/43049 -https://www.oceanexpert.org/expert/33266 -https://www.oceanexpert.org/institution/10013 -https://www.oceanexpert.org/expert/28492 -https://www.oceanexpert.org/institution/8113 -https://www.oceanexpert.org/expert/61 -https://www.oceanexpert.org/expert/44806 -https://www.oceanexpert.org/expert/11466 -https://www.oceanexpert.org/expert/43069 -https://www.oceanexpert.org/expert/35821 -https://www.oceanexpert.org/expert/47683 -https://www.oceanexpert.org/expert/28382 -https://www.oceanexpert.org/institution/11368 -https://www.oceanexpert.org/institution/21973 -https://www.oceanexpert.org/expert/32997 -https://www.oceanexpert.org/expert/20204 -https://www.oceanexpert.org/expert/26270 -https://www.oceanexpert.org/expert/32651 -https://www.oceanexpert.org/expert/23167 -https://www.oceanexpert.org/institution/18810 -https://www.oceanexpert.org/expert/21820 -https://www.oceanexpert.org/expert/43267 -https://www.oceanexpert.org/institution/16718 -https://www.oceanexpert.org/institution/20425 -https://www.oceanexpert.org/event/3037 -https://www.oceanexpert.org/event/1920 -https://www.oceanexpert.org/institution/11926 -https://www.oceanexpert.org/expert/35776 -https://www.oceanexpert.org/institution/21136 -https://www.oceanexpert.org/institution/21200 -https://www.oceanexpert.org/expert/44763 -https://www.oceanexpert.org/event/1730 -https://www.oceanexpert.org/expert/21748 -https://www.oceanexpert.org/expert/8820 -https://www.oceanexpert.org/institution/6909 -https://www.oceanexpert.org/expert/30011 -https://www.oceanexpert.org/expert/11444 -https://www.oceanexpert.org/expert/48349 -https://www.oceanexpert.org/expert/45808 -https://www.oceanexpert.org/expert/3555 -https://www.oceanexpert.org/institution/19682 -https://www.oceanexpert.org/institution/19528 -https://www.oceanexpert.org/expert/7784 -https://www.oceanexpert.org/expert/46829 -https://www.oceanexpert.org/institution/13449 -https://www.oceanexpert.org/expert/36058 -https://www.oceanexpert.org/expert/32696 -https://www.oceanexpert.org/institution/21470 -https://www.oceanexpert.org/expert/16019 -https://www.oceanexpert.org/expert/19045 -https://www.oceanexpert.org/expert/2020 -https://www.oceanexpert.org/expert/37183 -https://www.oceanexpert.org/expert/22999 -https://www.oceanexpert.org/expert/35446 -https://www.oceanexpert.org/expert/22449 -https://www.oceanexpert.org/expert/48838 -https://www.oceanexpert.org/institution/13153 -https://www.oceanexpert.org/event/3188 -https://www.oceanexpert.org/expert/35532 -https://www.oceanexpert.org/expert/21131 -https://www.oceanexpert.org/expert/21404 -https://www.oceanexpert.org/institution/21924 -https://www.oceanexpert.org/institution/20177 -https://www.oceanexpert.org/institution/19968 -https://www.oceanexpert.org/expert/13338 -https://www.oceanexpert.org/event/223 -https://www.oceanexpert.org/institution/18320 -https://www.oceanexpert.org/institution/22112 -https://www.oceanexpert.org/event/2748 -https://www.oceanexpert.org/expert/27109 -https://www.oceanexpert.org/expert/42594 -https://www.oceanexpert.org/expert/24106 -https://www.oceanexpert.org/expert/31904 -https://www.oceanexpert.org/expert/7318 -https://www.oceanexpert.org/institution/21742 -https://www.oceanexpert.org/institution/19117 -https://www.oceanexpert.org/expert/30990 -https://www.oceanexpert.org/expert/22731 -https://www.oceanexpert.org/event/1943 -https://www.oceanexpert.org/expert/31180 -https://www.oceanexpert.org/institution/15710 -https://www.oceanexpert.org/expert/34958 -https://www.oceanexpert.org/institution/18215 -https://www.oceanexpert.org/institution/21210 -https://www.oceanexpert.org/expert/31222 -https://www.oceanexpert.org/expert/35185 -https://www.oceanexpert.org/expert/11623 -https://www.oceanexpert.org/expert/47849 -https://www.oceanexpert.org/expert/19614 -https://www.oceanexpert.org/expert/24986 -https://www.oceanexpert.org/expert/22533 -https://www.oceanexpert.org/expert/23403 -https://www.oceanexpert.org/institution/20159 -https://www.oceanexpert.org/expert/17717 -https://www.oceanexpert.org/event/182 -https://www.oceanexpert.org/event/2700 -https://www.oceanexpert.org/expert/40538 -https://www.oceanexpert.org/expert/29452 -https://www.oceanexpert.org/event/973 -https://www.oceanexpert.org/expert/14798 -https://www.oceanexpert.org/expert/44314 -https://www.oceanexpert.org/expert/43220 -https://www.oceanexpert.org/institution/16384 -https://www.oceanexpert.org/expert/32570 -https://www.oceanexpert.org/expert/48460 -https://www.oceanexpert.org/expert/12173 -https://www.oceanexpert.org/expert/45178 -https://www.oceanexpert.org/expert/17252 -https://www.oceanexpert.org/expert/32518 -https://www.oceanexpert.org/expert/29765 -https://www.oceanexpert.org/event/2279 -https://www.oceanexpert.org/expert/18824 -https://www.oceanexpert.org/expert/24305 -https://www.oceanexpert.org/expert/46712 -https://www.oceanexpert.org/expert/32325 -https://www.oceanexpert.org/expert/17712 -https://www.oceanexpert.org/expert/32751 -https://www.oceanexpert.org/institution/18162 -https://www.oceanexpert.org/expert/42386 -https://www.oceanexpert.org/institution/21841 -https://www.oceanexpert.org/institution/18088 -https://www.oceanexpert.org/expert/29866 -https://www.oceanexpert.org/expert/35430 -https://www.oceanexpert.org/expert/37881 -https://www.oceanexpert.org/expert/26518 -https://www.oceanexpert.org/expert/7368 -https://www.oceanexpert.org/expert/11091 -https://www.oceanexpert.org/expert/23968 -https://www.oceanexpert.org/expert/27516 -https://www.oceanexpert.org/expert/33734 -https://www.oceanexpert.org/expert/21035 -https://www.oceanexpert.org/expert/23915 -https://www.oceanexpert.org/expert/48465 -https://www.oceanexpert.org/expert/45887 -https://www.oceanexpert.org/expert/33495 -https://www.oceanexpert.org/institution/12605 -https://www.oceanexpert.org/expert/19682 -https://www.oceanexpert.org/expert/34831 -https://www.oceanexpert.org/institution/21775 -https://www.oceanexpert.org/institution/19543 -https://www.oceanexpert.org/institution/19500 -https://www.oceanexpert.org/expert/42568 -https://www.oceanexpert.org/institution/15108 -https://www.oceanexpert.org/expert/46341 -https://www.oceanexpert.org/expert/32580 -https://www.oceanexpert.org/expert/34961 -https://www.oceanexpert.org/institution/20777 -https://www.oceanexpert.org/expert/23757 -https://www.oceanexpert.org/expert/13350 -https://www.oceanexpert.org/expert/9544 -https://www.oceanexpert.org/expert/26998 -https://www.oceanexpert.org/institution/12494 -https://www.oceanexpert.org/expert/48843 -https://www.oceanexpert.org/expert/47476 -https://www.oceanexpert.org/institution/18227 -https://www.oceanexpert.org/expert/30735 -https://www.oceanexpert.org/expert/30089 -https://www.oceanexpert.org/event/2979 -https://www.oceanexpert.org/event/234 -https://www.oceanexpert.org/expert/26373 -https://www.oceanexpert.org/expert/25606 -https://www.oceanexpert.org/expert/45763 -https://www.oceanexpert.org/expert/32349 -https://www.oceanexpert.org/expert/46507 -https://www.oceanexpert.org/expert/33225 -https://www.oceanexpert.org/expert/13566 -https://www.oceanexpert.org/expert/11179 -https://www.oceanexpert.org/expert/24856 -https://www.oceanexpert.org/expert/45303 -https://www.oceanexpert.org/expert/10696 -https://www.oceanexpert.org/institution/11095 -https://www.oceanexpert.org/expert/36325 -https://www.oceanexpert.org/expert/33356 -https://www.oceanexpert.org/expert/38013 -https://www.oceanexpert.org/expert/43104 -https://www.oceanexpert.org/institution/5097 -https://www.oceanexpert.org/institution/19075 -https://www.oceanexpert.org/institution/20928 -https://www.oceanexpert.org/institution/18565 -https://www.oceanexpert.org/event/602 -https://www.oceanexpert.org/expert/21748 -https://www.oceanexpert.org/expert/23321 -https://www.oceanexpert.org/expert/26439 -https://www.oceanexpert.org/expert/49017 -https://www.oceanexpert.org/expert/19560 -https://www.oceanexpert.org/expert/45732 -https://www.oceanexpert.org/expert/39033 -https://www.oceanexpert.org/expert/46747 -https://www.oceanexpert.org/expert/33252 -https://www.oceanexpert.org/expert/22297 -https://www.oceanexpert.org/expert/35084 -https://www.oceanexpert.org/institution/20757 -https://www.oceanexpert.org/expert/18344 -https://www.oceanexpert.org/expert/30914 -https://www.oceanexpert.org/expert/30754 -https://www.oceanexpert.org/expert/16043 -https://www.oceanexpert.org/institution/14011 -https://www.oceanexpert.org/expert/44607 -https://www.oceanexpert.org/expert/42633 -https://www.oceanexpert.org/institution/20598 -https://www.oceanexpert.org/event/2761 -https://www.oceanexpert.org/event/563 -https://www.oceanexpert.org/expert/46287 -https://www.oceanexpert.org/expert/48462 -https://www.oceanexpert.org/institution/8528 -https://www.oceanexpert.org/event/2328 -https://www.oceanexpert.org/expert/29583 -https://www.oceanexpert.org/institution/21184 -https://www.oceanexpert.org/expert/25116 -https://www.oceanexpert.org/institution/18797 -https://www.oceanexpert.org/expert/14262 -https://www.oceanexpert.org/institution/10157 -https://www.oceanexpert.org/institution/19410 -https://www.oceanexpert.org/institution/9485 -https://www.oceanexpert.org/institution/5644 -https://www.oceanexpert.org/event/347 -https://www.oceanexpert.org/expert/42586 -https://www.oceanexpert.org/expert/38286 -https://www.oceanexpert.org/institution/21958 -https://www.oceanexpert.org/institution/19275 -https://www.oceanexpert.org/institution/12692 -https://www.oceanexpert.org/expert/24111 -https://www.oceanexpert.org/expert/35313 -https://www.oceanexpert.org/expert/30294 -https://www.oceanexpert.org/expert/29666 -https://www.oceanexpert.org/expert/42444 -https://www.oceanexpert.org/expert/46464 -https://www.oceanexpert.org/expert/27576 -https://www.oceanexpert.org/expert/37128 -https://www.oceanexpert.org/expert/35214 -https://www.oceanexpert.org/expert/37241 -https://www.oceanexpert.org/institution/19115 -https://www.oceanexpert.org/expert/29145 -https://www.oceanexpert.org/expert/32603 -https://www.oceanexpert.org/institution/18409 -https://www.oceanexpert.org/event/823 -https://www.oceanexpert.org/institution/12591 -https://www.oceanexpert.org/expert/39069 -https://www.oceanexpert.org/expert/48874 -https://www.oceanexpert.org/expert/42655 -https://www.oceanexpert.org/expert/47230 -https://www.oceanexpert.org/expert/28967 -https://www.oceanexpert.org/expert/11423 -https://www.oceanexpert.org/institution/17954 -https://www.oceanexpert.org/institution/18940 -https://www.oceanexpert.org/institution/20948 -https://www.oceanexpert.org/event/2078 -https://www.oceanexpert.org/expert/46723 -https://www.oceanexpert.org/expert/19972 -https://www.oceanexpert.org/event/2372 -https://www.oceanexpert.org/expert/40359 -https://www.oceanexpert.org/expert/31983 -https://www.oceanexpert.org/expert/33270 -https://www.oceanexpert.org/expert/34967 -https://www.oceanexpert.org/expert/27960 -https://www.oceanexpert.org/expert/30316 -https://www.oceanexpert.org/expert/14146 -https://www.oceanexpert.org/expert/6776 -https://www.oceanexpert.org/expert/36359 -https://www.oceanexpert.org/expert/45160 -https://www.oceanexpert.org/institution/21283 -https://www.oceanexpert.org/expert/38653 -https://www.oceanexpert.org/expert/32401 -https://www.oceanexpert.org/event/2714 -https://www.oceanexpert.org/expert/38719 -https://www.oceanexpert.org/expert/24858 -https://www.oceanexpert.org/expert/20545 -https://www.oceanexpert.org/expert/153 -https://www.oceanexpert.org/expert/47251 -https://www.oceanexpert.org/institution/13294 -https://www.oceanexpert.org/expert/26407 -https://www.oceanexpert.org/expert/19976 -https://www.oceanexpert.org/expert/9527 -https://www.oceanexpert.org/expert/26787 -https://www.oceanexpert.org/expert/11094 -https://www.oceanexpert.org/expert/46834 -https://www.oceanexpert.org/institution/16197 -https://www.oceanexpert.org/expert/19171 -https://www.oceanexpert.org/expert/28346 -https://www.oceanexpert.org/expert/14875 -https://www.oceanexpert.org/expert/22309 -https://www.oceanexpert.org/event/2803 -https://www.oceanexpert.org/expert/20531 -https://www.oceanexpert.org/institution/8688 -https://www.oceanexpert.org/expert/46995 -https://www.oceanexpert.org/expert/32961 -https://www.oceanexpert.org/institution/13491 -https://www.oceanexpert.org/expert/3175 -https://www.oceanexpert.org/event/2452 -https://www.oceanexpert.org/expert/8653 -https://www.oceanexpert.org/expert/19946 -https://www.oceanexpert.org/expert/1433 -https://www.oceanexpert.org/expert/44564 -https://www.oceanexpert.org/expert/22293 -https://www.oceanexpert.org/expert/17458 -https://www.oceanexpert.org/expert/35732 -https://www.oceanexpert.org/expert/27539 -https://www.oceanexpert.org/expert/48664 -https://www.oceanexpert.org/expert/44312 -https://www.oceanexpert.org/institution/17503 -https://www.oceanexpert.org/expert/27908 -https://www.oceanexpert.org/expert/32534 -https://www.oceanexpert.org/expert/6512 -https://www.oceanexpert.org/expert/21691 -https://www.oceanexpert.org/expert/46654 -https://www.oceanexpert.org/event/2272 -https://www.oceanexpert.org/institution/7628 -https://www.oceanexpert.org/event/2226 -https://www.oceanexpert.org/institution/18082 -https://www.oceanexpert.org/event/2059 -https://www.oceanexpert.org/expert/16267 -https://www.oceanexpert.org/institution/14339 -https://www.oceanexpert.org/institution/19037 -https://www.oceanexpert.org/expert/27019 -https://www.oceanexpert.org/expert/46582 -https://www.oceanexpert.org/institution/22182 -https://www.oceanexpert.org/expert/27448 -https://www.oceanexpert.org/expert/33937 -https://www.oceanexpert.org/institution/5863 -https://www.oceanexpert.org/institution/19561 -https://www.oceanexpert.org/expert/26554 -https://www.oceanexpert.org/expert/21217 -https://www.oceanexpert.org/expert/15261 -https://www.oceanexpert.org/expert/38443 -https://www.oceanexpert.org/expert/22556 -https://www.oceanexpert.org/expert/32230 -https://www.oceanexpert.org/expert/42054 -https://www.oceanexpert.org/expert/25947 -https://www.oceanexpert.org/event/2280 -https://www.oceanexpert.org/expert/20043 -https://www.oceanexpert.org/expert/983 -https://www.oceanexpert.org/expert/31913 -https://www.oceanexpert.org/expert/40032 -https://www.oceanexpert.org/expert/14479 -https://www.oceanexpert.org/expert/34317 -https://www.oceanexpert.org/expert/24499 -https://www.oceanexpert.org/expert/48517 -https://www.oceanexpert.org/expert/17454 -https://www.oceanexpert.org/expert/22654 -https://www.oceanexpert.org/institution/21713 -https://www.oceanexpert.org/institution/12272 -https://www.oceanexpert.org/expert/28865 -https://www.oceanexpert.org/institution/15514 -https://www.oceanexpert.org/expert/43305 -https://www.oceanexpert.org/institution/13717 -https://www.oceanexpert.org/institution/7255 -https://www.oceanexpert.org/expert/47928 -https://www.oceanexpert.org/event/1599 -https://www.oceanexpert.org/expert/11094 -https://www.oceanexpert.org/expert/44654 -https://www.oceanexpert.org/event/238 -https://www.oceanexpert.org/expert/25396 -https://www.oceanexpert.org/expert/27049 -https://www.oceanexpert.org/expert/26797 -https://www.oceanexpert.org/institution/22071 -https://www.oceanexpert.org/expert/48881 -https://www.oceanexpert.org/expert/12866 -https://www.oceanexpert.org/expert/42840 -https://www.oceanexpert.org/expert/27060 -https://www.oceanexpert.org/event/1755 -https://www.oceanexpert.org/expert/40079 -https://www.oceanexpert.org/institution/20004 -https://www.oceanexpert.org/expert/15963 -https://www.oceanexpert.org/expert/16900 -https://www.oceanexpert.org/expert/20004 -https://www.oceanexpert.org/expert/22973 -https://www.oceanexpert.org/expert/45113 -https://www.oceanexpert.org/event/1608 -https://www.oceanexpert.org/expert/24345 -https://www.oceanexpert.org/institution/17023 -https://www.oceanexpert.org/expert/35583 -https://www.oceanexpert.org/expert/43302 -https://www.oceanexpert.org/event/2624 -https://www.oceanexpert.org/expert/1434 -https://www.oceanexpert.org/institution/19792 -https://www.oceanexpert.org/expert/15619 -https://www.oceanexpert.org/institution/21936 -https://www.oceanexpert.org/expert/38374 -https://www.oceanexpert.org/expert/48302 -https://www.oceanexpert.org/expert/20462 -https://www.oceanexpert.org/expert/19918 -https://www.oceanexpert.org/expert/39350 -https://www.oceanexpert.org/expert/34884 -https://www.oceanexpert.org/institution/18528 -https://www.oceanexpert.org/expert/21912 -https://www.oceanexpert.org/institution/19173 -https://www.oceanexpert.org/expert/26888 -https://www.oceanexpert.org/event/940 -https://www.oceanexpert.org/expert/26625 -https://www.oceanexpert.org/expert/48031 -https://www.oceanexpert.org/expert/29357 -https://www.oceanexpert.org/institution/20476 -https://www.oceanexpert.org/expert/33228 -https://www.oceanexpert.org/event/1655 -https://www.oceanexpert.org/expert/31690 -https://www.oceanexpert.org/expert/40707 -https://www.oceanexpert.org/expert/41415 -https://www.oceanexpert.org/event/976 -https://www.oceanexpert.org/expert/27012 -https://www.oceanexpert.org/expert/37366 -https://www.oceanexpert.org/expert/42883 -https://www.oceanexpert.org/event/890 -https://www.oceanexpert.org/expert/48936 -https://www.oceanexpert.org/expert/22278 -https://www.oceanexpert.org/expert/37099 -https://www.oceanexpert.org/institution/20987 -https://www.oceanexpert.org/expert/42956 -https://www.oceanexpert.org/expert/14609 -https://www.oceanexpert.org/expert/21845 -https://www.oceanexpert.org/institution/19795 -https://www.oceanexpert.org/expert/26810 -https://www.oceanexpert.org/expert/32436 -https://www.oceanexpert.org/institution/19041 -https://www.oceanexpert.org/expert/28231 -https://www.oceanexpert.org/expert/45609 -https://www.oceanexpert.org/expert/5367 -https://www.oceanexpert.org/institution/18819 -https://www.oceanexpert.org/institution/16414 -https://www.oceanexpert.org/expert/38523 -https://www.oceanexpert.org/institution/20993 -https://www.oceanexpert.org/event/944 -https://www.oceanexpert.org/expert/46117 -https://www.oceanexpert.org/expert/26406 -https://www.oceanexpert.org/expert/29183 -https://www.oceanexpert.org/expert/29432 -https://www.oceanexpert.org/institution/21374 -https://www.oceanexpert.org/institution/17451 -https://www.oceanexpert.org/expert/26418 -https://www.oceanexpert.org/expert/46215 -https://www.oceanexpert.org/expert/26699 -https://www.oceanexpert.org/event/2138 -https://www.oceanexpert.org/institution/21618 -https://www.oceanexpert.org/institution/15652 -https://www.oceanexpert.org/institution/11791 -https://www.oceanexpert.org/expert/48767 -https://www.oceanexpert.org/institution/21982 -https://www.oceanexpert.org/expert/40017 -https://www.oceanexpert.org/expert/45376 -https://www.oceanexpert.org/expert/4770 -https://www.oceanexpert.org/expert/46349 -https://www.oceanexpert.org/institution/10491 -https://www.oceanexpert.org/institution/19780 -https://www.oceanexpert.org/institution/18647 -https://www.oceanexpert.org/institution/12019 -https://www.oceanexpert.org/expert/46160 -https://www.oceanexpert.org/expert/45180 -https://www.oceanexpert.org/expert/44918 -https://www.oceanexpert.org/expert/38149 -https://www.oceanexpert.org/institution/13023 -https://www.oceanexpert.org/expert/13974 -https://www.oceanexpert.org/event/1976 -https://www.oceanexpert.org/institution/9814 -https://www.oceanexpert.org/expert/22634 -https://www.oceanexpert.org/expert/20206 -https://www.oceanexpert.org/expert/23639 -https://www.oceanexpert.org/expert/44925 -https://www.oceanexpert.org/expert/47666 -https://www.oceanexpert.org/expert/46480 -https://www.oceanexpert.org/expert/7547 -https://www.oceanexpert.org/event/2426 -https://www.oceanexpert.org/institution/6444 -https://www.oceanexpert.org/institution/19471 -https://www.oceanexpert.org/expert/22140 -https://www.oceanexpert.org/expert/21225 -https://www.oceanexpert.org/institution/15731 -https://www.oceanexpert.org/event/1045 -https://www.oceanexpert.org/expert/26540 -https://www.oceanexpert.org/expert/48434 -https://www.oceanexpert.org/institution/18464 -https://www.oceanexpert.org/expert/22110 -https://www.oceanexpert.org/expert/47351 -https://www.oceanexpert.org/event/2101 -https://www.oceanexpert.org/event/2746 -https://www.oceanexpert.org/event/648 -https://www.oceanexpert.org/expert/45842 -https://www.oceanexpert.org/expert/27636 -https://www.oceanexpert.org/expert/26128 -https://www.oceanexpert.org/event/3266 -https://www.oceanexpert.org/event/1397 -https://www.oceanexpert.org/expert/26139 -https://www.oceanexpert.org/expert/17230 -https://www.oceanexpert.org/expert/11968 -https://www.oceanexpert.org/expert/2762 -https://www.oceanexpert.org/expert/25578 -https://www.oceanexpert.org/expert/48654 -https://www.oceanexpert.org/expert/25518 -https://www.oceanexpert.org/expert/28357 -https://www.oceanexpert.org/expert/7039 -https://www.oceanexpert.org/expert/38587 -https://www.oceanexpert.org/expert/21100 -https://www.oceanexpert.org/institution/19406 -https://www.oceanexpert.org/expert/17145 -https://www.oceanexpert.org/expert/27373 -https://www.oceanexpert.org/expert/32606 -https://www.oceanexpert.org/expert/22168 -https://www.oceanexpert.org/expert/7935 -https://www.oceanexpert.org/expert/22042 -https://www.oceanexpert.org/expert/10735 -https://www.oceanexpert.org/institution/14738 -https://www.oceanexpert.org/expert/42402 -https://www.oceanexpert.org/institution/21662 -https://www.oceanexpert.org/institution/19440 -https://www.oceanexpert.org/institution/21328 -https://www.oceanexpert.org/expert/37349 -https://www.oceanexpert.org/expert/31279 -https://www.oceanexpert.org/institution/17153 -https://www.oceanexpert.org/expert/48425 -https://www.oceanexpert.org/expert/836 -https://www.oceanexpert.org/expert/44312 -https://www.oceanexpert.org/institution/19348 -https://www.oceanexpert.org/expert/36428 -https://www.oceanexpert.org/institution/21489 -https://www.oceanexpert.org/expert/15930 -https://www.oceanexpert.org/expert/653 -https://www.oceanexpert.org/institution/10976 -https://www.oceanexpert.org/institution/10555 -https://www.oceanexpert.org/expert/17399 -https://www.oceanexpert.org/institution/17881 -https://www.oceanexpert.org/expert/32430 -https://www.oceanexpert.org/event/2044 -https://www.oceanexpert.org/expert/23531 -https://www.oceanexpert.org/expert/35379 -https://www.oceanexpert.org/expert/47788 -https://www.oceanexpert.org/expert/43522 -https://www.oceanexpert.org/expert/48668 -https://www.oceanexpert.org/expert/28202 -https://www.oceanexpert.org/institution/5709 -https://www.oceanexpert.org/expert/45808 -https://www.oceanexpert.org/event/554 -https://www.oceanexpert.org/expert/1973 -https://www.oceanexpert.org/expert/18030 -https://www.oceanexpert.org/expert/46204 -https://www.oceanexpert.org/expert/11832 -https://www.oceanexpert.org/event/1595 -https://www.oceanexpert.org/expert/14399 -https://www.oceanexpert.org/expert/45795 -https://www.oceanexpert.org/expert/16452 -https://www.oceanexpert.org/institution/21460 -https://www.oceanexpert.org/institution/10790 -https://www.oceanexpert.org/expert/28098 -https://www.oceanexpert.org/expert/48925 -https://www.oceanexpert.org/institution/16456 -https://www.oceanexpert.org/expert/18021 -https://www.oceanexpert.org/expert/11262 -https://www.oceanexpert.org/institution/19920 -https://www.oceanexpert.org/expert/3145 -https://www.oceanexpert.org/institution/13838 -https://www.oceanexpert.org/institution/18619 -https://www.oceanexpert.org/expert/27400 -https://www.oceanexpert.org/expert/39230 -https://www.oceanexpert.org/expert/31030 -https://www.oceanexpert.org/institution/22036 -https://www.oceanexpert.org/event/2596 -https://www.oceanexpert.org/expert/12488 -https://www.oceanexpert.org/expert/36277 -https://www.oceanexpert.org/expert/35379 -https://www.oceanexpert.org/institution/5711 -https://www.oceanexpert.org/expert/44184 -https://www.oceanexpert.org/expert/18474 -https://www.oceanexpert.org/expert/45797 -https://www.oceanexpert.org/institution/11845 -https://www.oceanexpert.org/event/2867 -https://www.oceanexpert.org/expert/26184 -https://www.oceanexpert.org/institution/17944 -https://www.oceanexpert.org/expert/45575 -https://www.oceanexpert.org/expert/46439 -https://www.oceanexpert.org/expert/5152 -https://www.oceanexpert.org/expert/38058 -https://www.oceanexpert.org/institution/19093 -https://www.oceanexpert.org/event/2613 -https://www.oceanexpert.org/institution/18861 -https://www.oceanexpert.org/expert/25696 -https://www.oceanexpert.org/expert/25676 -https://www.oceanexpert.org/expert/48229 -https://www.oceanexpert.org/event/1174 -https://www.oceanexpert.org/expert/38852 -https://www.oceanexpert.org/expert/13162 -https://www.oceanexpert.org/institution/19190 -https://www.oceanexpert.org/expert/34295 -https://www.oceanexpert.org/institution/20637 -https://www.oceanexpert.org/institution/19748 -https://www.oceanexpert.org/expert/37547 -https://www.oceanexpert.org/expert/38788 -https://www.oceanexpert.org/expert/44700 -https://www.oceanexpert.org/institution/12349 -https://www.oceanexpert.org/expert/38279 -https://www.oceanexpert.org/expert/22391 -https://www.oceanexpert.org/expert/45166 -https://www.oceanexpert.org/expert/42476 -https://www.oceanexpert.org/institution/19174 -https://www.oceanexpert.org/expert/19291 -https://www.oceanexpert.org/institution/21030 -https://www.oceanexpert.org/expert/39214 -https://www.oceanexpert.org/expert/25467 -https://www.oceanexpert.org/expert/20486 -https://www.oceanexpert.org/institution/13717 -https://www.oceanexpert.org/expert/27107 -https://www.oceanexpert.org/institution/13221 -https://www.oceanexpert.org/expert/35740 -https://www.oceanexpert.org/institution/12139 -https://www.oceanexpert.org/expert/22778 -https://www.oceanexpert.org/expert/16634 -https://www.oceanexpert.org/institution/11321 -https://www.oceanexpert.org/expert/25099 -https://www.oceanexpert.org/expert/44769 -https://www.oceanexpert.org/institution/19033 -https://www.oceanexpert.org/expert/42964 -https://www.oceanexpert.org/expert/25503 -https://www.oceanexpert.org/expert/30252 -https://www.oceanexpert.org/expert/37498 -https://www.oceanexpert.org/institution/21508 -https://www.oceanexpert.org/expert/44394 -https://www.oceanexpert.org/institution/8590 -https://www.oceanexpert.org/institution/21912 -https://www.oceanexpert.org/institution/20238 -https://www.oceanexpert.org/institution/8762 -https://www.oceanexpert.org/expert/36247 -https://www.oceanexpert.org/expert/35033 -https://www.oceanexpert.org/expert/24007 -https://www.oceanexpert.org/event/1357 -https://www.oceanexpert.org/expert/23783 -https://www.oceanexpert.org/expert/20381 -https://www.oceanexpert.org/event/2752 -https://www.oceanexpert.org/expert/17019 -https://www.oceanexpert.org/event/969 -https://www.oceanexpert.org/expert/46802 -https://www.oceanexpert.org/institution/17618 -https://www.oceanexpert.org/expert/34440 -https://www.oceanexpert.org/expert/38063 -https://www.oceanexpert.org/institution/20754 -https://www.oceanexpert.org/expert/24680 -https://www.oceanexpert.org/expert/35453 -https://www.oceanexpert.org/expert/29690 -https://www.oceanexpert.org/expert/47154 -https://www.oceanexpert.org/expert/24380 -https://www.oceanexpert.org/expert/43578 -https://www.oceanexpert.org/expert/37035 -https://www.oceanexpert.org/institution/21238 -https://www.oceanexpert.org/expert/21683 -https://www.oceanexpert.org/institution/6622 -https://www.oceanexpert.org/institution/17799 -https://www.oceanexpert.org/expert/16862 -https://www.oceanexpert.org/expert/16433 -https://www.oceanexpert.org/event/1612 -https://www.oceanexpert.org/institution/20977 -https://www.oceanexpert.org/expert/13383 -https://www.oceanexpert.org/expert/36473 -https://www.oceanexpert.org/expert/18839 -https://www.oceanexpert.org/expert/45757 -https://www.oceanexpert.org/institution/16168 -https://www.oceanexpert.org/expert/42939 -https://www.oceanexpert.org/event/971 -https://www.oceanexpert.org/institution/20213 -https://www.oceanexpert.org/expert/20854 -https://www.oceanexpert.org/expert/34943 -https://www.oceanexpert.org/expert/37997 -https://www.oceanexpert.org/expert/44376 -https://www.oceanexpert.org/expert/20819 -https://www.oceanexpert.org/event/1951 -https://www.oceanexpert.org/expert/40608 -https://www.oceanexpert.org/expert/31907 -https://www.oceanexpert.org/expert/18928 -https://www.oceanexpert.org/expert/6832 -https://www.oceanexpert.org/institution/20387 -https://www.oceanexpert.org/institution/7598 -https://www.oceanexpert.org/expert/25850 -https://www.oceanexpert.org/event/264 -https://www.oceanexpert.org/expert/43578 -https://www.oceanexpert.org/expert/22901 -https://www.oceanexpert.org/institution/20823 -https://www.oceanexpert.org/expert/17151 -https://www.oceanexpert.org/expert/35386 -https://www.oceanexpert.org/expert/11197 -https://www.oceanexpert.org/institution/19599 -https://www.oceanexpert.org/expert/35189 -https://www.oceanexpert.org/expert/20064 -https://www.oceanexpert.org/institution/15243 -https://www.oceanexpert.org/expert/14150 -https://www.oceanexpert.org/expert/48667 -https://www.oceanexpert.org/expert/22711 -https://www.oceanexpert.org/expert/44706 -https://www.oceanexpert.org/expert/19783 -https://www.oceanexpert.org/expert/45344 -https://www.oceanexpert.org/institution/21149 -https://www.oceanexpert.org/event/1704 -https://www.oceanexpert.org/expert/13980 -https://www.oceanexpert.org/expert/13069 -https://www.oceanexpert.org/expert/47338 -https://www.oceanexpert.org/expert/6263 -https://www.oceanexpert.org/institution/8233 -https://www.oceanexpert.org/expert/19628 -https://www.oceanexpert.org/institution/10263 -https://www.oceanexpert.org/event/3083 -https://www.oceanexpert.org/expert/19258 -https://www.oceanexpert.org/expert/30783 -https://www.oceanexpert.org/expert/24523 -https://www.oceanexpert.org/expert/42865 -https://www.oceanexpert.org/expert/48451 -https://www.oceanexpert.org/expert/29445 -https://www.oceanexpert.org/expert/44551 -https://www.oceanexpert.org/event/3026 -https://www.oceanexpert.org/expert/32858 -https://www.oceanexpert.org/expert/48302 -https://www.oceanexpert.org/institution/18960 -https://www.oceanexpert.org/institution/20642 -https://www.oceanexpert.org/institution/21788 -https://www.oceanexpert.org/institution/10822 -https://www.oceanexpert.org/expert/1250 -https://www.oceanexpert.org/expert/29986 -https://www.oceanexpert.org/expert/39830 -https://www.oceanexpert.org/expert/35444 -https://www.oceanexpert.org/expert/17313 -https://www.oceanexpert.org/expert/46393 -https://www.oceanexpert.org/expert/17747 -https://www.oceanexpert.org/expert/46250 -https://www.oceanexpert.org/institution/11768 -https://www.oceanexpert.org/expert/11276 -https://www.oceanexpert.org/event/1064 -https://www.oceanexpert.org/expert/45937 -https://www.oceanexpert.org/institution/20296 -https://www.oceanexpert.org/expert/32148 -https://www.oceanexpert.org/expert/37995 -https://www.oceanexpert.org/expert/43668 -https://www.oceanexpert.org/expert/23133 -https://www.oceanexpert.org/expert/44329 -https://www.oceanexpert.org/expert/23033 -https://www.oceanexpert.org/expert/48765 -https://www.oceanexpert.org/expert/43164 -https://www.oceanexpert.org/expert/33755 -https://www.oceanexpert.org/expert/31257 -https://www.oceanexpert.org/event/398 -https://www.oceanexpert.org/expert/34646 -https://www.oceanexpert.org/institution/12058 -https://www.oceanexpert.org/expert/13588 -https://www.oceanexpert.org/institution/21023 -https://www.oceanexpert.org/institution/22121 -https://www.oceanexpert.org/expert/36351 -https://www.oceanexpert.org/institution/21757 -https://www.oceanexpert.org/expert/45774 -https://www.oceanexpert.org/expert/46427 -https://www.oceanexpert.org/institution/14418 -https://www.oceanexpert.org/expert/45695 -https://www.oceanexpert.org/institution/18967 -https://www.oceanexpert.org/expert/17090 -https://www.oceanexpert.org/event/1898 -https://www.oceanexpert.org/expert/24335 -https://www.oceanexpert.org/event/258 -https://www.oceanexpert.org/expert/45873 -https://www.oceanexpert.org/expert/16496 -https://www.oceanexpert.org/expert/49004 -https://www.oceanexpert.org/institution/21611 -https://www.oceanexpert.org/event/1688 -https://www.oceanexpert.org/expert/47980 -https://www.oceanexpert.org/expert/26021 -https://www.oceanexpert.org/institution/10807 -https://www.oceanexpert.org/institution/19129 -https://www.oceanexpert.org/expert/34082 -https://www.oceanexpert.org/expert/24334 -https://www.oceanexpert.org/expert/25031 -https://www.oceanexpert.org/expert/2060 -https://www.oceanexpert.org/expert/18570 -https://www.oceanexpert.org/expert/35394 -https://www.oceanexpert.org/expert/22751 -https://www.oceanexpert.org/institution/9606 -https://www.oceanexpert.org/institution/19129 -https://www.oceanexpert.org/expert/24399 -https://www.oceanexpert.org/expert/38985 -https://www.oceanexpert.org/institution/20030 -https://www.oceanexpert.org/institution/20382 -https://www.oceanexpert.org/institution/21351 -https://www.oceanexpert.org/expert/34726 -https://www.oceanexpert.org/event/2189 -https://www.oceanexpert.org/expert/35030 -https://www.oceanexpert.org/institution/11355 -https://www.oceanexpert.org/expert/26003 -https://www.oceanexpert.org/expert/25017 -https://www.oceanexpert.org/expert/39821 -https://www.oceanexpert.org/expert/22825 -https://www.oceanexpert.org/expert/17726 -https://www.oceanexpert.org/institution/19214 -https://www.oceanexpert.org/expert/39507 -https://www.oceanexpert.org/expert/44441 -https://www.oceanexpert.org/event/1033 -https://www.oceanexpert.org/expert/19064 -https://www.oceanexpert.org/expert/16913 -https://www.oceanexpert.org/expert/42788 -https://www.oceanexpert.org/institution/13900 -https://www.oceanexpert.org/expert/46554 -https://www.oceanexpert.org/expert/25814 -https://www.oceanexpert.org/expert/43970 -https://www.oceanexpert.org/institution/16083 -https://www.oceanexpert.org/expert/32178 -https://www.oceanexpert.org/institution/6550 -https://www.oceanexpert.org/expert/27210 -https://www.oceanexpert.org/expert/47106 -https://www.oceanexpert.org/institution/21120 -https://www.oceanexpert.org/expert/20431 -https://www.oceanexpert.org/expert/34243 -https://www.oceanexpert.org/institution/12768 -https://www.oceanexpert.org/institution/21843 -https://www.oceanexpert.org/expert/22863 -https://www.oceanexpert.org/expert/23217 -https://www.oceanexpert.org/event/3063 -https://www.oceanexpert.org/expert/45325 -https://www.oceanexpert.org/expert/43891 -https://www.oceanexpert.org/expert/20051 -https://www.oceanexpert.org/event/2411 -https://www.oceanexpert.org/institution/12134 -https://www.oceanexpert.org/institution/21830 -https://www.oceanexpert.org/expert/19381 -https://www.oceanexpert.org/expert/38536 -https://www.oceanexpert.org/expert/34130 -https://www.oceanexpert.org/expert/19906 -https://www.oceanexpert.org/expert/26734 -https://www.oceanexpert.org/expert/37444 -https://www.oceanexpert.org/expert/45663 -https://www.oceanexpert.org/expert/1764 -https://www.oceanexpert.org/institution/21686 -https://www.oceanexpert.org/expert/23484 -https://www.oceanexpert.org/expert/22697 -https://www.oceanexpert.org/institution/19339 -https://www.oceanexpert.org/event/2303 -https://www.oceanexpert.org/expert/11876 -https://www.oceanexpert.org/event/719 -https://www.oceanexpert.org/institution/20156 -https://www.oceanexpert.org/institution/18696 -https://www.oceanexpert.org/expert/26598 -https://www.oceanexpert.org/expert/31128 -https://www.oceanexpert.org/event/1170 -https://www.oceanexpert.org/expert/27832 -https://www.oceanexpert.org/expert/22171 -https://www.oceanexpert.org/expert/42465 -https://www.oceanexpert.org/event/202 -https://www.oceanexpert.org/expert/2354 -https://www.oceanexpert.org/expert/20584 -https://www.oceanexpert.org/event/2182 -https://www.oceanexpert.org/institution/14821 -https://www.oceanexpert.org/expert/43575 -https://www.oceanexpert.org/expert/18754 -https://www.oceanexpert.org/institution/11940 -https://www.oceanexpert.org/expert/38051 -https://www.oceanexpert.org/expert/23138 -https://www.oceanexpert.org/expert/37783 -https://www.oceanexpert.org/expert/24721 -https://www.oceanexpert.org/expert/1702 -https://www.oceanexpert.org/expert/21789 -https://www.oceanexpert.org/expert/22925 -https://www.oceanexpert.org/expert/21065 -https://www.oceanexpert.org/expert/26630 -https://www.oceanexpert.org/expert/22433 -https://www.oceanexpert.org/event/1272 -https://www.oceanexpert.org/expert/10272 -https://www.oceanexpert.org/institution/18059 -https://www.oceanexpert.org/expert/43462 -https://www.oceanexpert.org/expert/33742 -https://www.oceanexpert.org/event/2515 -https://www.oceanexpert.org/expert/48615 -https://www.oceanexpert.org/event/223 -https://www.oceanexpert.org/expert/47216 -https://www.oceanexpert.org/expert/32878 -https://www.oceanexpert.org/expert/11058 -https://www.oceanexpert.org/expert/27443 -https://www.oceanexpert.org/expert/29693 -https://www.oceanexpert.org/expert/43893 -https://www.oceanexpert.org/expert/44318 -https://www.oceanexpert.org/institution/10167 -https://www.oceanexpert.org/expert/23420 -https://www.oceanexpert.org/expert/18453 -https://www.oceanexpert.org/institution/18306 -https://www.oceanexpert.org/expert/36154 -https://www.oceanexpert.org/institution/17798 -https://www.oceanexpert.org/expert/22514 -https://www.oceanexpert.org/expert/37849 -https://www.oceanexpert.org/institution/21438 -https://www.oceanexpert.org/expert/27049 -https://www.oceanexpert.org/expert/43974 -https://www.oceanexpert.org/event/297 -https://www.oceanexpert.org/expert/47757 -https://www.oceanexpert.org/expert/13117 -https://www.oceanexpert.org/institution/17061 -https://www.oceanexpert.org/expert/15559 -https://www.oceanexpert.org/event/3167 -https://www.oceanexpert.org/institution/8494 -https://www.oceanexpert.org/expert/120 -https://www.oceanexpert.org/expert/22708 -https://www.oceanexpert.org/institution/8768 -https://www.oceanexpert.org/expert/44849 -https://www.oceanexpert.org/expert/28149 -https://www.oceanexpert.org/expert/29698 -https://www.oceanexpert.org/event/2782 -https://www.oceanexpert.org/institution/21673 -https://www.oceanexpert.org/institution/11157 -https://www.oceanexpert.org/institution/21627 -https://www.oceanexpert.org/expert/4714 -https://www.oceanexpert.org/expert/48998 -https://www.oceanexpert.org/event/1215 -https://www.oceanexpert.org/expert/42752 -https://www.oceanexpert.org/institution/21783 -https://www.oceanexpert.org/event/1376 -https://www.oceanexpert.org/institution/18559 -https://www.oceanexpert.org/expert/42149 -https://www.oceanexpert.org/expert/34273 -https://www.oceanexpert.org/expert/39298 -https://www.oceanexpert.org/expert/44224 -https://www.oceanexpert.org/expert/26593 -https://www.oceanexpert.org/expert/12810 -https://www.oceanexpert.org/expert/46622 -https://www.oceanexpert.org/institution/21509 -https://www.oceanexpert.org/expert/11205 -https://www.oceanexpert.org/institution/18025 -https://www.oceanexpert.org/expert/44355 -https://www.oceanexpert.org/expert/22474 -https://www.oceanexpert.org/event/549 -https://www.oceanexpert.org/expert/37467 -https://www.oceanexpert.org/expert/8052 -https://www.oceanexpert.org/event/3071 -https://www.oceanexpert.org/expert/35203 -https://www.oceanexpert.org/institution/5620 -https://www.oceanexpert.org/expert/31688 -https://www.oceanexpert.org/expert/42998 -https://www.oceanexpert.org/event/963 -https://www.oceanexpert.org/institution/18014 -https://www.oceanexpert.org/expert/2627 -https://www.oceanexpert.org/event/562 -https://www.oceanexpert.org/expert/33361 -https://www.oceanexpert.org/expert/25754 -https://www.oceanexpert.org/expert/46937 -https://www.oceanexpert.org/expert/8524 -https://www.oceanexpert.org/expert/23426 -https://www.oceanexpert.org/expert/36365 -https://www.oceanexpert.org/expert/21353 -https://www.oceanexpert.org/expert/16002 -https://www.oceanexpert.org/expert/4933 -https://www.oceanexpert.org/institution/21777 -https://www.oceanexpert.org/expert/1902 -https://www.oceanexpert.org/expert/19037 -https://www.oceanexpert.org/institution/21889 -https://www.oceanexpert.org/expert/28390 -https://www.oceanexpert.org/event/2583 -https://www.oceanexpert.org/expert/36433 -https://www.oceanexpert.org/expert/6473 -https://www.oceanexpert.org/expert/48251 -https://www.oceanexpert.org/expert/40326 -https://www.oceanexpert.org/expert/1375 -https://www.oceanexpert.org/event/1338 -https://www.oceanexpert.org/expert/5980 -https://www.oceanexpert.org/expert/44737 -https://www.oceanexpert.org/institution/8438 -https://www.oceanexpert.org/institution/5904 -https://www.oceanexpert.org/event/3269 -https://www.oceanexpert.org/event/2470 -https://www.oceanexpert.org/expert/11859 -https://www.oceanexpert.org/expert/46332 -https://www.oceanexpert.org/expert/47324 -https://www.oceanexpert.org/institution/11081 -https://www.oceanexpert.org/expert/21512 -https://www.oceanexpert.org/expert/28921 -https://www.oceanexpert.org/expert/22583 -https://www.oceanexpert.org/expert/35871 -https://www.oceanexpert.org/expert/11572 -https://www.oceanexpert.org/expert/31051 -https://www.oceanexpert.org/expert/16647 -https://www.oceanexpert.org/expert/27883 -https://www.oceanexpert.org/institution/18603 -https://www.oceanexpert.org/expert/20839 -https://www.oceanexpert.org/institution/16419 -https://www.oceanexpert.org/expert/48713 -https://www.oceanexpert.org/expert/49025 -https://www.oceanexpert.org/institution/7676 -https://www.oceanexpert.org/expert/46164 -https://www.oceanexpert.org/event/982 -https://www.oceanexpert.org/expert/35699 -https://www.oceanexpert.org/expert/16389 -https://www.oceanexpert.org/expert/28895 -https://www.oceanexpert.org/expert/11351 -https://www.oceanexpert.org/expert/12697 -https://www.oceanexpert.org/event/1895 -https://www.oceanexpert.org/expert/30312 -https://www.oceanexpert.org/expert/27198 -https://www.oceanexpert.org/expert/48940 -https://www.oceanexpert.org/institution/16419 -https://www.oceanexpert.org/institution/17831 -https://www.oceanexpert.org/expert/29752 -https://www.oceanexpert.org/institution/6185 -https://www.oceanexpert.org/expert/33541 -https://www.oceanexpert.org/expert/20064 -https://www.oceanexpert.org/expert/35807 -https://www.oceanexpert.org/event/1839 -https://www.oceanexpert.org/expert/4879 -https://www.oceanexpert.org/expert/17510 -https://www.oceanexpert.org/expert/25280 -https://www.oceanexpert.org/institution/13633 -https://www.oceanexpert.org/institution/21072 -https://www.oceanexpert.org/expert/13705 -https://www.oceanexpert.org/expert/20921 -https://www.oceanexpert.org/expert/14527 -https://www.oceanexpert.org/institution/12852 -https://www.oceanexpert.org/institution/13156 -https://www.oceanexpert.org/expert/4974 -https://www.oceanexpert.org/expert/34572 -https://www.oceanexpert.org/institution/12114 -https://www.oceanexpert.org/expert/16736 -https://www.oceanexpert.org/institution/17636 -https://www.oceanexpert.org/expert/33511 -https://www.oceanexpert.org/expert/46463 -https://www.oceanexpert.org/institution/6688 -https://www.oceanexpert.org/expert/27593 -https://www.oceanexpert.org/expert/19716 -https://www.oceanexpert.org/expert/32490 -https://www.oceanexpert.org/expert/33558 -https://www.oceanexpert.org/expert/13187 -https://www.oceanexpert.org/expert/37355 -https://www.oceanexpert.org/expert/36494 -https://www.oceanexpert.org/expert/37670 -https://www.oceanexpert.org/expert/32809 -https://www.oceanexpert.org/expert/46856 -https://www.oceanexpert.org/expert/24993 -https://www.oceanexpert.org/institution/13793 -https://www.oceanexpert.org/expert/9498 -https://www.oceanexpert.org/institution/19984 -https://www.oceanexpert.org/institution/15955 -https://www.oceanexpert.org/expert/18023 -https://www.oceanexpert.org/expert/21769 -https://www.oceanexpert.org/expert/26992 -https://www.oceanexpert.org/expert/37984 -https://www.oceanexpert.org/expert/28482 -https://www.oceanexpert.org/event/2344 -https://www.oceanexpert.org/institution/15740 -https://www.oceanexpert.org/institution/19806 -https://www.oceanexpert.org/institution/12970 -https://www.oceanexpert.org/expert/13087 -https://www.oceanexpert.org/expert/23712 -https://www.oceanexpert.org/event/2428 -https://www.oceanexpert.org/institution/19429 -https://www.oceanexpert.org/expert/19702 -https://www.oceanexpert.org/expert/47961 -https://www.oceanexpert.org/expert/47723 -https://www.oceanexpert.org/event/1303 -https://www.oceanexpert.org/expert/38458 -https://www.oceanexpert.org/expert/33709 -https://www.oceanexpert.org/institution/13007 -https://www.oceanexpert.org/expert/43050 -https://www.oceanexpert.org/expert/12063 -https://www.oceanexpert.org/institution/19530 -https://www.oceanexpert.org/institution/21656 -https://www.oceanexpert.org/expert/26432 -https://www.oceanexpert.org/event/492 -https://www.oceanexpert.org/expert/14947 -https://www.oceanexpert.org/institution/10570 -https://www.oceanexpert.org/expert/15947 -https://www.oceanexpert.org/expert/45311 -https://www.oceanexpert.org/institution/19537 -https://www.oceanexpert.org/event/580 -https://www.oceanexpert.org/expert/45651 -https://www.oceanexpert.org/institution/12748 -https://www.oceanexpert.org/expert/20149 -https://www.oceanexpert.org/institution/19375 -https://www.oceanexpert.org/expert/32865 -https://www.oceanexpert.org/expert/35151 -https://www.oceanexpert.org/expert/35728 -https://www.oceanexpert.org/institution/16375 -https://www.oceanexpert.org/expert/26767 -https://www.oceanexpert.org/expert/17635 -https://www.oceanexpert.org/expert/19242 -https://www.oceanexpert.org/event/2490 -https://www.oceanexpert.org/expert/18850 -https://www.oceanexpert.org/expert/23487 -https://www.oceanexpert.org/institution/18557 -https://www.oceanexpert.org/expert/6577 -https://www.oceanexpert.org/expert/13253 -https://www.oceanexpert.org/institution/20561 -https://www.oceanexpert.org/expert/43622 -https://www.oceanexpert.org/expert/43787 -https://www.oceanexpert.org/expert/26297 -https://www.oceanexpert.org/institution/18302 -https://www.oceanexpert.org/expert/34200 -https://www.oceanexpert.org/expert/34735 -https://www.oceanexpert.org/expert/40357 -https://www.oceanexpert.org/event/185 -https://www.oceanexpert.org/event/2513 -https://www.oceanexpert.org/expert/26388 -https://www.oceanexpert.org/expert/37589 -https://www.oceanexpert.org/expert/17213 -https://www.oceanexpert.org/institution/17778 -https://www.oceanexpert.org/expert/19930 -https://www.oceanexpert.org/expert/22650 -https://www.oceanexpert.org/expert/15635 -https://www.oceanexpert.org/institution/18407 -https://www.oceanexpert.org/expert/45759 -https://www.oceanexpert.org/expert/13814 -https://www.oceanexpert.org/expert/32664 -https://www.oceanexpert.org/expert/21883 -https://www.oceanexpert.org/expert/26658 -https://www.oceanexpert.org/expert/26695 -https://www.oceanexpert.org/expert/36427 -https://www.oceanexpert.org/institution/11013 -https://www.oceanexpert.org/expert/47000 -https://www.oceanexpert.org/event/1490 -https://www.oceanexpert.org/institution/8162 -https://www.oceanexpert.org/expert/22279 -https://www.oceanexpert.org/expert/25498 -https://www.oceanexpert.org/expert/2817 -https://www.oceanexpert.org/event/1301 -https://www.oceanexpert.org/expert/32649 -https://www.oceanexpert.org/expert/35314 -https://www.oceanexpert.org/expert/30789 -https://www.oceanexpert.org/expert/18118 -https://www.oceanexpert.org/expert/34947 -https://www.oceanexpert.org/expert/1038 -https://www.oceanexpert.org/expert/47730 -https://www.oceanexpert.org/expert/19428 -https://www.oceanexpert.org/expert/28453 -https://www.oceanexpert.org/expert/10744 -https://www.oceanexpert.org/expert/32716 -https://www.oceanexpert.org/event/2930 -https://www.oceanexpert.org/institution/20880 -https://www.oceanexpert.org/institution/21329 -https://www.oceanexpert.org/expert/18390 -https://www.oceanexpert.org/expert/24785 -https://www.oceanexpert.org/expert/27793 -https://www.oceanexpert.org/expert/38106 -https://www.oceanexpert.org/expert/24010 -https://www.oceanexpert.org/expert/11834 -https://www.oceanexpert.org/expert/15631 -https://www.oceanexpert.org/expert/39313 -https://www.oceanexpert.org/institution/19821 -https://www.oceanexpert.org/institution/19373 -https://www.oceanexpert.org/event/641 -https://www.oceanexpert.org/institution/21867 -https://www.oceanexpert.org/expert/11863 -https://www.oceanexpert.org/institution/5132 -https://www.oceanexpert.org/expert/24353 -https://www.oceanexpert.org/expert/37779 -https://www.oceanexpert.org/expert/34807 -https://www.oceanexpert.org/institution/10507 -https://www.oceanexpert.org/expert/23322 -https://www.oceanexpert.org/expert/20099 -https://www.oceanexpert.org/institution/9229 -https://www.oceanexpert.org/institution/5537 -https://www.oceanexpert.org/institution/21945 -https://www.oceanexpert.org/expert/44891 -https://www.oceanexpert.org/institution/16258 -https://www.oceanexpert.org/institution/21862 -https://www.oceanexpert.org/institution/15475 -https://www.oceanexpert.org/expert/24748 -https://www.oceanexpert.org/expert/29332 -https://www.oceanexpert.org/expert/20316 -https://www.oceanexpert.org/event/2260 -https://www.oceanexpert.org/institution/19837 -https://www.oceanexpert.org/institution/14335 -https://www.oceanexpert.org/institution/19591 -https://www.oceanexpert.org/expert/22317 -https://www.oceanexpert.org/expert/29009 -https://www.oceanexpert.org/expert/26454 -https://www.oceanexpert.org/institution/8158 -https://www.oceanexpert.org/event/3054 -https://www.oceanexpert.org/institution/14067 -https://www.oceanexpert.org/institution/19130 -https://www.oceanexpert.org/expert/22533 -https://www.oceanexpert.org/expert/24957 -https://www.oceanexpert.org/event/2029 -https://www.oceanexpert.org/expert/2830 -https://www.oceanexpert.org/expert/19570 -https://www.oceanexpert.org/institution/19481 -https://www.oceanexpert.org/institution/12362 -https://www.oceanexpert.org/institution/18856 -https://www.oceanexpert.org/institution/19877 -https://www.oceanexpert.org/institution/21541 -https://www.oceanexpert.org/expert/40300 -https://www.oceanexpert.org/expert/35911 -https://www.oceanexpert.org/expert/35652 -https://www.oceanexpert.org/expert/47763 -https://www.oceanexpert.org/institution/19311 -https://www.oceanexpert.org/expert/20597 -https://www.oceanexpert.org/expert/29738 -https://www.oceanexpert.org/event/70 -https://www.oceanexpert.org/institution/21143 -https://www.oceanexpert.org/expert/18352 -https://www.oceanexpert.org/institution/12635 -https://www.oceanexpert.org/expert/44244 -https://www.oceanexpert.org/expert/35687 -https://www.oceanexpert.org/expert/36258 -https://www.oceanexpert.org/expert/23036 -https://www.oceanexpert.org/expert/31222 -https://www.oceanexpert.org/expert/14776 -https://www.oceanexpert.org/expert/37027 -https://www.oceanexpert.org/institution/19225 -https://www.oceanexpert.org/expert/13684 -https://www.oceanexpert.org/institution/19209 -https://www.oceanexpert.org/expert/26594 -https://www.oceanexpert.org/event/1517 -https://www.oceanexpert.org/institution/19522 -https://www.oceanexpert.org/expert/16668 -https://www.oceanexpert.org/expert/21818 -https://www.oceanexpert.org/expert/17631 -https://www.oceanexpert.org/expert/43162 -https://www.oceanexpert.org/expert/38191 -https://www.oceanexpert.org/expert/10908 -https://www.oceanexpert.org/event/1079 -https://www.oceanexpert.org/expert/47890 -https://www.oceanexpert.org/expert/26839 -https://www.oceanexpert.org/institution/8761 -https://www.oceanexpert.org/expert/39583 -https://www.oceanexpert.org/institution/17127 -https://www.oceanexpert.org/expert/7902 -https://www.oceanexpert.org/institution/21648 -https://www.oceanexpert.org/institution/12558 -https://www.oceanexpert.org/expert/46285 -https://www.oceanexpert.org/expert/17277 -https://www.oceanexpert.org/expert/41105 -https://www.oceanexpert.org/institution/18486 -https://www.oceanexpert.org/expert/27948 -https://www.oceanexpert.org/expert/23478 -https://www.oceanexpert.org/expert/46444 -https://www.oceanexpert.org/expert/13954 -https://www.oceanexpert.org/expert/21800 -https://www.oceanexpert.org/expert/6218 -https://www.oceanexpert.org/expert/48951 -https://www.oceanexpert.org/event/2638 -https://www.oceanexpert.org/expert/42406 -https://www.oceanexpert.org/expert/14423 -https://www.oceanexpert.org/institution/21968 -https://www.oceanexpert.org/expert/21556 -https://www.oceanexpert.org/expert/30821 -https://www.oceanexpert.org/institution/96 -https://www.oceanexpert.org/expert/38005 -https://www.oceanexpert.org/expert/39928 -https://www.oceanexpert.org/event/1813 -https://www.oceanexpert.org/event/1632 -https://www.oceanexpert.org/expert/47543 -https://www.oceanexpert.org/expert/16471 -https://www.oceanexpert.org/expert/27213 -https://www.oceanexpert.org/institution/18024 -https://www.oceanexpert.org/expert/39168 -https://www.oceanexpert.org/expert/20818 -https://www.oceanexpert.org/expert/46375 -https://www.oceanexpert.org/expert/19312 -https://www.oceanexpert.org/expert/44581 -https://www.oceanexpert.org/institution/19423 -https://www.oceanexpert.org/institution/18945 -https://www.oceanexpert.org/expert/7162 -https://www.oceanexpert.org/institution/5896 -https://www.oceanexpert.org/expert/44314 -https://www.oceanexpert.org/expert/39335 -https://www.oceanexpert.org/institution/13018 -https://www.oceanexpert.org/institution/20207 -https://www.oceanexpert.org/event/2402 -https://www.oceanexpert.org/expert/37376 -https://www.oceanexpert.org/event/481 -https://www.oceanexpert.org/expert/26345 -https://www.oceanexpert.org/expert/23062 -https://www.oceanexpert.org/expert/38216 -https://www.oceanexpert.org/institution/9977 -https://www.oceanexpert.org/expert/48535 -https://www.oceanexpert.org/expert/23093 -https://www.oceanexpert.org/expert/47558 -https://www.oceanexpert.org/institution/20741 -https://www.oceanexpert.org/expert/34350 -https://www.oceanexpert.org/event/237 -https://www.oceanexpert.org/expert/37145 -https://www.oceanexpert.org/expert/37639 -https://www.oceanexpert.org/expert/38565 -https://www.oceanexpert.org/institution/12039 -https://www.oceanexpert.org/expert/30455 -https://www.oceanexpert.org/event/3052 -https://www.oceanexpert.org/expert/20166 -https://www.oceanexpert.org/institution/8895 -https://www.oceanexpert.org/expert/43966 -https://www.oceanexpert.org/expert/19440 -https://www.oceanexpert.org/expert/35710 -https://www.oceanexpert.org/expert/28486 -https://www.oceanexpert.org/expert/30063 -https://www.oceanexpert.org/expert/39177 -https://www.oceanexpert.org/expert/8100 -https://www.oceanexpert.org/expert/20325 -https://www.oceanexpert.org/expert/20775 -https://www.oceanexpert.org/expert/47832 -https://www.oceanexpert.org/expert/28038 -https://www.oceanexpert.org/expert/34646 -https://www.oceanexpert.org/expert/25549 -https://www.oceanexpert.org/expert/15853 -https://www.oceanexpert.org/event/1085 -https://www.oceanexpert.org/event/365 -https://www.oceanexpert.org/institution/16740 -https://www.oceanexpert.org/expert/37543 -https://www.oceanexpert.org/expert/16685 -https://www.oceanexpert.org/expert/38400 -https://www.oceanexpert.org/institution/5205 -https://www.oceanexpert.org/expert/30290 -https://www.oceanexpert.org/expert/43389 -https://www.oceanexpert.org/expert/20238 -https://www.oceanexpert.org/expert/39721 -https://www.oceanexpert.org/institution/19951 -https://www.oceanexpert.org/institution/14050 -https://www.oceanexpert.org/expert/26751 -https://www.oceanexpert.org/expert/28869 -https://www.oceanexpert.org/institution/17377 -https://www.oceanexpert.org/institution/20967 -https://www.oceanexpert.org/expert/34504 -https://www.oceanexpert.org/expert/25956 -https://www.oceanexpert.org/institution/14460 -https://www.oceanexpert.org/expert/43858 -https://www.oceanexpert.org/expert/31596 -https://www.oceanexpert.org/expert/24924 -https://www.oceanexpert.org/expert/22217 -https://www.oceanexpert.org/institution/14699 -https://www.oceanexpert.org/event/341 -https://www.oceanexpert.org/institution/18219 -https://www.oceanexpert.org/event/2307 -https://www.oceanexpert.org/institution/21430 -https://www.oceanexpert.org/expert/17159 -https://www.oceanexpert.org/expert/34553 -https://www.oceanexpert.org/expert/25231 -https://www.oceanexpert.org/expert/24299 -https://www.oceanexpert.org/institution/18774 -https://www.oceanexpert.org/expert/23258 -https://www.oceanexpert.org/expert/20095 -https://www.oceanexpert.org/expert/14049 -https://www.oceanexpert.org/expert/17506 -https://www.oceanexpert.org/expert/22498 -https://www.oceanexpert.org/institution/21088 -https://www.oceanexpert.org/institution/18330 -https://www.oceanexpert.org/expert/24824 -https://www.oceanexpert.org/institution/16924 -https://www.oceanexpert.org/expert/13551 -https://www.oceanexpert.org/expert/9131 -https://www.oceanexpert.org/expert/48174 -https://www.oceanexpert.org/event/1435 -https://www.oceanexpert.org/expert/25138 -https://www.oceanexpert.org/institution/16970 -https://www.oceanexpert.org/expert/20848 -https://www.oceanexpert.org/expert/32823 -https://www.oceanexpert.org/expert/42511 -https://www.oceanexpert.org/institution/13723 -https://www.oceanexpert.org/institution/20018 -https://www.oceanexpert.org/expert/21932 -https://www.oceanexpert.org/expert/22098 -https://www.oceanexpert.org/expert/46603 -https://www.oceanexpert.org/institution/12813 -https://www.oceanexpert.org/expert/20222 -https://www.oceanexpert.org/expert/21530 -https://www.oceanexpert.org/expert/36538 -https://www.oceanexpert.org/expert/40674 -https://www.oceanexpert.org/expert/47463 -https://www.oceanexpert.org/expert/35105 -https://www.oceanexpert.org/event/869 -https://www.oceanexpert.org/expert/16483 -https://www.oceanexpert.org/expert/27277 -https://www.oceanexpert.org/expert/37118 -https://www.oceanexpert.org/expert/44286 -https://www.oceanexpert.org/expert/18113 -https://www.oceanexpert.org/expert/48906 -https://www.oceanexpert.org/event/2341 -https://www.oceanexpert.org/institution/12401 -https://www.oceanexpert.org/expert/6942 -https://www.oceanexpert.org/expert/18952 -https://www.oceanexpert.org/event/3301 -https://www.oceanexpert.org/event/3061 -https://www.oceanexpert.org/expert/28812 -https://www.oceanexpert.org/institution/8809 -https://www.oceanexpert.org/expert/48787 -https://www.oceanexpert.org/institution/20690 -https://www.oceanexpert.org/expert/20543 -https://www.oceanexpert.org/expert/45973 -https://www.oceanexpert.org/expert/36076 -https://www.oceanexpert.org/institution/19756 -https://www.oceanexpert.org/institution/20525 -https://www.oceanexpert.org/expert/25433 -https://www.oceanexpert.org/institution/19452 -https://www.oceanexpert.org/expert/29817 -https://www.oceanexpert.org/institution/14295 -https://www.oceanexpert.org/institution/7510 -https://www.oceanexpert.org/institution/20969 -https://www.oceanexpert.org/expert/45262 -https://www.oceanexpert.org/expert/36726 -https://www.oceanexpert.org/event/558 -https://www.oceanexpert.org/expert/12501 -https://www.oceanexpert.org/expert/31197 -https://www.oceanexpert.org/expert/38372 -https://www.oceanexpert.org/expert/30577 -https://www.oceanexpert.org/expert/19416 -https://www.oceanexpert.org/institution/21895 -https://www.oceanexpert.org/expert/34409 -https://www.oceanexpert.org/expert/20900 -https://www.oceanexpert.org/event/1766 -https://www.oceanexpert.org/expert/13071 -https://www.oceanexpert.org/institution/20892 -https://www.oceanexpert.org/expert/43769 -https://www.oceanexpert.org/expert/28045 -https://www.oceanexpert.org/expert/4822 -https://www.oceanexpert.org/expert/46958 -https://www.oceanexpert.org/institution/21811 -https://www.oceanexpert.org/expert/29554 -https://www.oceanexpert.org/expert/44958 -https://www.oceanexpert.org/expert/44936 -https://www.oceanexpert.org/expert/42919 -https://www.oceanexpert.org/expert/26520 -https://www.oceanexpert.org/expert/25580 -https://www.oceanexpert.org/expert/20287 -https://www.oceanexpert.org/institution/7492 -https://www.oceanexpert.org/expert/9198 -https://www.oceanexpert.org/event/755 -https://www.oceanexpert.org/event/1551 -https://www.oceanexpert.org/expert/18910 -https://www.oceanexpert.org/expert/18563 -https://www.oceanexpert.org/expert/25796 -https://www.oceanexpert.org/institution/21338 -https://www.oceanexpert.org/expert/33375 -https://www.oceanexpert.org/institution/17473 -https://www.oceanexpert.org/institution/20534 -https://www.oceanexpert.org/expert/4693 -https://www.oceanexpert.org/institution/18820 -https://www.oceanexpert.org/institution/5529 -https://www.oceanexpert.org/expert/2913 -https://www.oceanexpert.org/expert/11326 -https://www.oceanexpert.org/expert/29498 -https://www.oceanexpert.org/event/594 -https://www.oceanexpert.org/expert/16267 -https://www.oceanexpert.org/expert/44668 -https://www.oceanexpert.org/expert/24425 -https://www.oceanexpert.org/expert/5516 -https://www.oceanexpert.org/expert/25399 -https://www.oceanexpert.org/expert/45685 -https://www.oceanexpert.org/expert/35435 -https://www.oceanexpert.org/institution/21718 -https://www.oceanexpert.org/institution/15749 -https://www.oceanexpert.org/institution/15525 -https://www.oceanexpert.org/institution/20380 -https://www.oceanexpert.org/expert/32275 -https://www.oceanexpert.org/expert/46518 -https://www.oceanexpert.org/expert/39545 -https://www.oceanexpert.org/expert/20986 -https://www.oceanexpert.org/institution/19090 -https://www.oceanexpert.org/expert/45034 -https://www.oceanexpert.org/event/677 -https://www.oceanexpert.org/expert/110 -https://www.oceanexpert.org/expert/36866 -https://www.oceanexpert.org/event/2076 -https://www.oceanexpert.org/expert/48369 -https://www.oceanexpert.org/expert/45771 -https://www.oceanexpert.org/institution/12426 -https://www.oceanexpert.org/expert/17338 -https://www.oceanexpert.org/expert/22327 -https://www.oceanexpert.org/expert/4619 -https://www.oceanexpert.org/expert/14121 -https://www.oceanexpert.org/expert/20715 -https://www.oceanexpert.org/expert/36611 -https://www.oceanexpert.org/expert/24447 -https://www.oceanexpert.org/expert/33469 -https://www.oceanexpert.org/event/1072 -https://www.oceanexpert.org/institution/19086 -https://www.oceanexpert.org/expert/34613 -https://www.oceanexpert.org/expert/13315 -https://www.oceanexpert.org/expert/19924 -https://www.oceanexpert.org/institution/20552 -https://www.oceanexpert.org/expert/5731 -https://www.oceanexpert.org/institution/5963 -https://www.oceanexpert.org/expert/25437 -https://www.oceanexpert.org/expert/13361 -https://www.oceanexpert.org/expert/6869 -https://www.oceanexpert.org/expert/23219 -https://www.oceanexpert.org/expert/27463 -https://www.oceanexpert.org/expert/25774 -https://www.oceanexpert.org/institution/11643 -https://www.oceanexpert.org/expert/29054 -https://www.oceanexpert.org/expert/43322 -https://www.oceanexpert.org/expert/22856 -https://www.oceanexpert.org/expert/13058 -https://www.oceanexpert.org/institution/21644 -https://www.oceanexpert.org/expert/26012 -https://www.oceanexpert.org/institution/21086 -https://www.oceanexpert.org/expert/47105 -https://www.oceanexpert.org/institution/12207 -https://www.oceanexpert.org/expert/45808 -https://www.oceanexpert.org/institution/12179 -https://www.oceanexpert.org/event/752 -https://www.oceanexpert.org/institution/20533 -https://www.oceanexpert.org/institution/8714 -https://www.oceanexpert.org/institution/17100 -https://www.oceanexpert.org/institution/13030 -https://www.oceanexpert.org/expert/8342 -https://www.oceanexpert.org/expert/19712 -https://www.oceanexpert.org/institution/22165 -https://www.oceanexpert.org/event/509 -https://www.oceanexpert.org/expert/35465 -https://www.oceanexpert.org/expert/23018 -https://www.oceanexpert.org/expert/5703 -https://www.oceanexpert.org/institution/20162 -https://www.oceanexpert.org/expert/28208 -https://www.oceanexpert.org/institution/22039 -https://www.oceanexpert.org/institution/18228 -https://www.oceanexpert.org/event/1901 -https://www.oceanexpert.org/expert/31219 -https://www.oceanexpert.org/institution/21552 -https://www.oceanexpert.org/event/1157 -https://www.oceanexpert.org/expert/33548 -https://www.oceanexpert.org/expert/16533 -https://www.oceanexpert.org/expert/20724 -https://www.oceanexpert.org/expert/24940 -https://www.oceanexpert.org/institution/20231 -https://www.oceanexpert.org/expert/24630 -https://www.oceanexpert.org/institution/13957 -https://www.oceanexpert.org/expert/28401 -https://www.oceanexpert.org/expert/23487 -https://www.oceanexpert.org/expert/28859 -https://www.oceanexpert.org/expert/47229 -https://www.oceanexpert.org/expert/25364 -https://www.oceanexpert.org/expert/16631 -https://www.oceanexpert.org/expert/19096 -https://www.oceanexpert.org/institution/8810 -https://www.oceanexpert.org/expert/43293 -https://www.oceanexpert.org/institution/11556 -https://www.oceanexpert.org/institution/20837 -https://www.oceanexpert.org/expert/21499 -https://www.oceanexpert.org/expert/42865 -https://www.oceanexpert.org/institution/20480 -https://www.oceanexpert.org/expert/46680 -https://www.oceanexpert.org/expert/1007 -https://www.oceanexpert.org/expert/18298 -https://www.oceanexpert.org/institution/11350 -https://www.oceanexpert.org/expert/48005 -https://www.oceanexpert.org/event/3011 -https://www.oceanexpert.org/expert/46988 -https://www.oceanexpert.org/expert/18823 -https://www.oceanexpert.org/institution/13018 -https://www.oceanexpert.org/expert/48299 -https://www.oceanexpert.org/expert/22442 -https://www.oceanexpert.org/expert/17961 -https://www.oceanexpert.org/institution/12104 -https://www.oceanexpert.org/expert/6269 -https://www.oceanexpert.org/expert/6692 -https://www.oceanexpert.org/expert/27022 -https://www.oceanexpert.org/institution/22013 -https://www.oceanexpert.org/expert/14304 -https://www.oceanexpert.org/expert/17042 -https://www.oceanexpert.org/event/317 -https://www.oceanexpert.org/expert/22009 -https://www.oceanexpert.org/expert/3579 -https://www.oceanexpert.org/expert/23930 -https://www.oceanexpert.org/expert/41652 -https://www.oceanexpert.org/institution/5168 -https://www.oceanexpert.org/expert/16086 -https://www.oceanexpert.org/expert/26848 -https://www.oceanexpert.org/expert/46355 -https://www.oceanexpert.org/expert/33645 -https://www.oceanexpert.org/expert/22493 -https://www.oceanexpert.org/expert/35280 -https://www.oceanexpert.org/institution/17911 -https://www.oceanexpert.org/expert/45801 -https://www.oceanexpert.org/expert/24168 -https://www.oceanexpert.org/event/1043 -https://www.oceanexpert.org/expert/44702 -https://www.oceanexpert.org/expert/48867 -https://www.oceanexpert.org/expert/539 -https://www.oceanexpert.org/expert/37097 -https://www.oceanexpert.org/expert/24813 -https://www.oceanexpert.org/expert/46989 -https://www.oceanexpert.org/expert/44875 -https://www.oceanexpert.org/expert/16059 -https://www.oceanexpert.org/expert/17244 -https://www.oceanexpert.org/expert/21774 -https://www.oceanexpert.org/event/1700 -https://www.oceanexpert.org/expert/1639 -https://www.oceanexpert.org/expert/217 -https://www.oceanexpert.org/expert/34431 -https://www.oceanexpert.org/institution/15160 -https://www.oceanexpert.org/institution/22036 -https://www.oceanexpert.org/institution/17613 -https://www.oceanexpert.org/institution/20151 -https://www.oceanexpert.org/institution/17415 -https://www.oceanexpert.org/event/212 -https://www.oceanexpert.org/expert/44896 -https://www.oceanexpert.org/expert/36254 -https://www.oceanexpert.org/expert/22369 -https://www.oceanexpert.org/expert/523 -https://www.oceanexpert.org/expert/381 -https://www.oceanexpert.org/institution/7028 -https://www.oceanexpert.org/expert/39655 -https://www.oceanexpert.org/expert/30947 -https://www.oceanexpert.org/expert/17588 -https://www.oceanexpert.org/institution/8239 -https://www.oceanexpert.org/event/2928 -https://www.oceanexpert.org/institution/12765 -https://www.oceanexpert.org/expert/27090 -https://www.oceanexpert.org/expert/43951 -https://www.oceanexpert.org/expert/45546 -https://www.oceanexpert.org/expert/1277 -https://www.oceanexpert.org/expert/17455 -https://www.oceanexpert.org/event/527 -https://www.oceanexpert.org/institution/20238 -https://www.oceanexpert.org/institution/11384 -https://www.oceanexpert.org/expert/33556 -https://www.oceanexpert.org/expert/48501 -https://www.oceanexpert.org/expert/48436 -https://www.oceanexpert.org/institution/18215 -https://www.oceanexpert.org/expert/44973 -https://www.oceanexpert.org/institution/13342 -https://www.oceanexpert.org/expert/21762 -https://www.oceanexpert.org/institution/22095 -https://www.oceanexpert.org/expert/14476 -https://www.oceanexpert.org/expert/43464 -https://www.oceanexpert.org/expert/35669 -https://www.oceanexpert.org/expert/20563 -https://www.oceanexpert.org/expert/45831 -https://www.oceanexpert.org/institution/20236 -https://www.oceanexpert.org/expert/47458 -https://www.oceanexpert.org/expert/22966 -https://www.oceanexpert.org/event/3264 -https://www.oceanexpert.org/institution/20525 -https://www.oceanexpert.org/expert/16845 -https://www.oceanexpert.org/expert/31268 -https://www.oceanexpert.org/expert/23711 -https://www.oceanexpert.org/event/1750 -https://www.oceanexpert.org/institution/9648 -https://www.oceanexpert.org/institution/21676 -https://www.oceanexpert.org/expert/38152 -https://www.oceanexpert.org/expert/35426 -https://www.oceanexpert.org/event/2872 -https://www.oceanexpert.org/expert/26001 -https://www.oceanexpert.org/expert/24740 -https://www.oceanexpert.org/expert/48982 -https://www.oceanexpert.org/expert/47062 -https://www.oceanexpert.org/expert/45908 -https://www.oceanexpert.org/institution/6909 -https://www.oceanexpert.org/expert/12609 -https://www.oceanexpert.org/event/160 -https://www.oceanexpert.org/expert/807 -https://www.oceanexpert.org/expert/35466 -https://www.oceanexpert.org/institution/5010 -https://www.oceanexpert.org/expert/34790 -https://www.oceanexpert.org/expert/21545 -https://www.oceanexpert.org/expert/31728 -https://www.oceanexpert.org/expert/36214 -https://www.oceanexpert.org/institution/10908 -https://www.oceanexpert.org/expert/40165 -https://www.oceanexpert.org/event/1235 -https://www.oceanexpert.org/expert/45913 -https://www.oceanexpert.org/expert/33679 -https://www.oceanexpert.org/expert/21296 -https://www.oceanexpert.org/institution/17772 -https://www.oceanexpert.org/expert/22476 -https://www.oceanexpert.org/institution/21722 -https://www.oceanexpert.org/expert/35997 -https://www.oceanexpert.org/expert/24050 -https://www.oceanexpert.org/expert/20949 -https://www.oceanexpert.org/expert/35904 -https://www.oceanexpert.org/institution/21295 -https://www.oceanexpert.org/expert/24910 -https://www.oceanexpert.org/expert/24205 -https://www.oceanexpert.org/expert/41992 -https://www.oceanexpert.org/expert/32331 -https://www.oceanexpert.org/institution/14132 -https://www.oceanexpert.org/expert/27295 -https://www.oceanexpert.org/event/1231 -https://www.oceanexpert.org/expert/36706 -https://www.oceanexpert.org/event/2120 -https://www.oceanexpert.org/expert/25459 -https://www.oceanexpert.org/expert/47175 -https://www.oceanexpert.org/institution/17192 -https://www.oceanexpert.org/expert/24165 -https://www.oceanexpert.org/institution/6795 -https://www.oceanexpert.org/event/1108 -https://www.oceanexpert.org/expert/47437 -https://www.oceanexpert.org/institution/21434 -https://www.oceanexpert.org/institution/16212 -https://www.oceanexpert.org/institution/18701 -https://www.oceanexpert.org/expert/19043 -https://www.oceanexpert.org/expert/35166 -https://www.oceanexpert.org/institution/22150 -https://www.oceanexpert.org/expert/22635 -https://www.oceanexpert.org/expert/38389 -https://www.oceanexpert.org/expert/4628 -https://www.oceanexpert.org/institution/18760 -https://www.oceanexpert.org/expert/31565 -https://www.oceanexpert.org/institution/16804 -https://www.oceanexpert.org/expert/45399 -https://www.oceanexpert.org/expert/48501 -https://www.oceanexpert.org/event/3260 -https://www.oceanexpert.org/institution/18706 -https://www.oceanexpert.org/event/1140 -https://www.oceanexpert.org/expert/25480 -https://www.oceanexpert.org/expert/17664 -https://www.oceanexpert.org/expert/26472 -https://www.oceanexpert.org/event/1068 -https://www.oceanexpert.org/expert/172 -https://www.oceanexpert.org/event/1367 -https://www.oceanexpert.org/institution/19360 -https://www.oceanexpert.org/expert/34167 -https://www.oceanexpert.org/expert/39470 -https://www.oceanexpert.org/institution/12999 -https://www.oceanexpert.org/institution/19391 -https://www.oceanexpert.org/expert/34768 -https://www.oceanexpert.org/expert/34130 -https://www.oceanexpert.org/expert/36263 -https://www.oceanexpert.org/expert/46659 -https://www.oceanexpert.org/institution/5576 -https://www.oceanexpert.org/expert/31718 -https://www.oceanexpert.org/expert/29894 -https://www.oceanexpert.org/expert/36444 -https://www.oceanexpert.org/expert/39446 -https://www.oceanexpert.org/event/2685 -https://www.oceanexpert.org/expert/2519 -https://www.oceanexpert.org/expert/25046 -https://www.oceanexpert.org/event/676 -https://www.oceanexpert.org/expert/19663 -https://www.oceanexpert.org/expert/29130 -https://www.oceanexpert.org/expert/43243 -https://www.oceanexpert.org/institution/12562 -https://www.oceanexpert.org/institution/18047 -https://www.oceanexpert.org/expert/18546 -https://www.oceanexpert.org/expert/25315 -https://www.oceanexpert.org/event/1125 -https://www.oceanexpert.org/institution/18579 -https://www.oceanexpert.org/expert/25178 -https://www.oceanexpert.org/institution/15873 -https://www.oceanexpert.org/expert/523 -https://www.oceanexpert.org/institution/18989 -https://www.oceanexpert.org/expert/20299 -https://www.oceanexpert.org/expert/31553 -https://www.oceanexpert.org/institution/9574 -https://www.oceanexpert.org/expert/18007 -https://www.oceanexpert.org/expert/47785 -https://www.oceanexpert.org/expert/29920 -https://www.oceanexpert.org/expert/43730 -https://www.oceanexpert.org/expert/30789 -https://www.oceanexpert.org/expert/44763 -https://www.oceanexpert.org/institution/15702 -https://www.oceanexpert.org/institution/16434 -https://www.oceanexpert.org/institution/20438 -https://www.oceanexpert.org/expert/20610 -https://www.oceanexpert.org/event/2888 -https://www.oceanexpert.org/expert/19172 -https://www.oceanexpert.org/event/1612 -https://www.oceanexpert.org/expert/47130 -https://www.oceanexpert.org/expert/22508 -https://www.oceanexpert.org/expert/26094 -https://www.oceanexpert.org/institution/20588 -https://www.oceanexpert.org/institution/13503 -https://www.oceanexpert.org/expert/18498 -https://www.oceanexpert.org/institution/19006 -https://www.oceanexpert.org/expert/26528 -https://www.oceanexpert.org/expert/47038 -https://www.oceanexpert.org/event/1477 -https://www.oceanexpert.org/institution/9244 -https://www.oceanexpert.org/expert/4315 -https://www.oceanexpert.org/expert/27579 -https://www.oceanexpert.org/expert/44520 -https://www.oceanexpert.org/institution/19655 -https://www.oceanexpert.org/expert/25952 -https://www.oceanexpert.org/expert/33816 -https://www.oceanexpert.org/institution/6048 -https://www.oceanexpert.org/expert/16812 -https://www.oceanexpert.org/expert/47903 -https://www.oceanexpert.org/event/884 -https://www.oceanexpert.org/institution/18479 -https://www.oceanexpert.org/institution/19998 -https://www.oceanexpert.org/expert/32487 -https://www.oceanexpert.org/expert/38588 -https://www.oceanexpert.org/institution/20484 -https://www.oceanexpert.org/expert/24654 -https://www.oceanexpert.org/expert/36938 -https://www.oceanexpert.org/event/378 -https://www.oceanexpert.org/expert/17592 -https://www.oceanexpert.org/expert/33000 -https://www.oceanexpert.org/expert/46084 -https://www.oceanexpert.org/expert/22540 -https://www.oceanexpert.org/institution/18150 -https://www.oceanexpert.org/expert/2232 -https://www.oceanexpert.org/institution/14814 -https://www.oceanexpert.org/expert/3083 -https://www.oceanexpert.org/institution/17862 -https://www.oceanexpert.org/expert/44704 -https://www.oceanexpert.org/expert/13320 -https://www.oceanexpert.org/expert/31662 -https://www.oceanexpert.org/event/1377 -https://www.oceanexpert.org/expert/17913 -https://www.oceanexpert.org/expert/38580 -https://www.oceanexpert.org/expert/35374 -https://www.oceanexpert.org/expert/1389 -https://www.oceanexpert.org/expert/42964 -https://www.oceanexpert.org/expert/36284 -https://www.oceanexpert.org/expert/21207 -https://www.oceanexpert.org/expert/21795 -https://www.oceanexpert.org/expert/17221 -https://www.oceanexpert.org/expert/44088 -https://www.oceanexpert.org/institution/18137 -https://www.oceanexpert.org/expert/5547 -https://www.oceanexpert.org/expert/26858 -https://www.oceanexpert.org/expert/32791 -https://www.oceanexpert.org/expert/17046 -https://www.oceanexpert.org/expert/29718 -https://www.oceanexpert.org/expert/4309 -https://www.oceanexpert.org/expert/47812 -https://www.oceanexpert.org/expert/38900 -https://www.oceanexpert.org/expert/49023 -https://www.oceanexpert.org/expert/8103 -https://www.oceanexpert.org/expert/29058 -https://www.oceanexpert.org/expert/27965 -https://www.oceanexpert.org/expert/36976 -https://www.oceanexpert.org/expert/48091 -https://www.oceanexpert.org/expert/28820 -https://www.oceanexpert.org/expert/20118 -https://www.oceanexpert.org/expert/47221 -https://www.oceanexpert.org/expert/37969 -https://www.oceanexpert.org/expert/28458 -https://www.oceanexpert.org/expert/47143 -https://www.oceanexpert.org/expert/43939 -https://www.oceanexpert.org/expert/23666 -https://www.oceanexpert.org/expert/25056 -https://www.oceanexpert.org/expert/30448 -https://www.oceanexpert.org/event/124 -https://www.oceanexpert.org/expert/47606 -https://www.oceanexpert.org/event/2988 -https://www.oceanexpert.org/expert/13259 -https://www.oceanexpert.org/institution/19449 -https://www.oceanexpert.org/expert/35026 -https://www.oceanexpert.org/event/2525 -https://www.oceanexpert.org/expert/8896 -https://www.oceanexpert.org/institution/10299 -https://www.oceanexpert.org/institution/20680 -https://www.oceanexpert.org/expert/22300 -https://www.oceanexpert.org/expert/37331 -https://www.oceanexpert.org/event/2132 -https://www.oceanexpert.org/institution/15914 -https://www.oceanexpert.org/expert/17987 -https://www.oceanexpert.org/expert/47827 -https://www.oceanexpert.org/institution/21003 -https://www.oceanexpert.org/expert/43730 -https://www.oceanexpert.org/institution/21667 -https://www.oceanexpert.org/expert/22937 -https://www.oceanexpert.org/expert/13802 -https://www.oceanexpert.org/expert/45054 -https://www.oceanexpert.org/expert/35033 -https://www.oceanexpert.org/expert/31933 -https://www.oceanexpert.org/expert/25197 -https://www.oceanexpert.org/expert/43448 -https://www.oceanexpert.org/expert/28394 -https://www.oceanexpert.org/expert/46046 -https://www.oceanexpert.org/institution/15986 -https://www.oceanexpert.org/expert/34845 -https://www.oceanexpert.org/event/3073 -https://www.oceanexpert.org/expert/34600 -https://www.oceanexpert.org/institution/11558 -https://www.oceanexpert.org/event/1456 -https://www.oceanexpert.org/event/2704 -https://www.oceanexpert.org/expert/25772 -https://www.oceanexpert.org/expert/18221 -https://www.oceanexpert.org/expert/16099 -https://www.oceanexpert.org/expert/17938 -https://www.oceanexpert.org/expert/18467 -https://www.oceanexpert.org/institution/15930 -https://www.oceanexpert.org/institution/8902 -https://www.oceanexpert.org/expert/33248 -https://www.oceanexpert.org/institution/22145 -https://www.oceanexpert.org/expert/21223 -https://www.oceanexpert.org/expert/21187 -https://www.oceanexpert.org/expert/20150 -https://www.oceanexpert.org/institution/21942 -https://www.oceanexpert.org/expert/30543 -https://www.oceanexpert.org/institution/21738 -https://www.oceanexpert.org/expert/16016 -https://www.oceanexpert.org/expert/11047 -https://www.oceanexpert.org/expert/24099 -https://www.oceanexpert.org/expert/47612 -https://www.oceanexpert.org/event/20 -https://www.oceanexpert.org/expert/42084 -https://www.oceanexpert.org/expert/33817 -https://www.oceanexpert.org/expert/19239 -https://www.oceanexpert.org/expert/45388 -https://www.oceanexpert.org/institution/17733 -https://www.oceanexpert.org/institution/19503 -https://www.oceanexpert.org/institution/19289 -https://www.oceanexpert.org/expert/33362 -https://www.oceanexpert.org/institution/6094 -https://www.oceanexpert.org/expert/21483 -https://www.oceanexpert.org/expert/36984 -https://www.oceanexpert.org/institution/15092 -https://www.oceanexpert.org/event/515 -https://www.oceanexpert.org/expert/19768 -https://www.oceanexpert.org/institution/6260 -https://www.oceanexpert.org/institution/20496 -https://www.oceanexpert.org/institution/11864 -https://www.oceanexpert.org/expert/29080 -https://www.oceanexpert.org/expert/45514 -https://www.oceanexpert.org/expert/36122 -https://www.oceanexpert.org/institution/18124 -https://www.oceanexpert.org/expert/47693 -https://www.oceanexpert.org/expert/46652 -https://www.oceanexpert.org/expert/37866 -https://www.oceanexpert.org/expert/28882 -https://www.oceanexpert.org/expert/21351 -https://www.oceanexpert.org/expert/30308 -https://www.oceanexpert.org/institution/18048 -https://www.oceanexpert.org/expert/18406 -https://www.oceanexpert.org/expert/35070 -https://www.oceanexpert.org/institution/16193 -https://www.oceanexpert.org/event/607 -https://www.oceanexpert.org/event/2343 -https://www.oceanexpert.org/event/2585 -https://www.oceanexpert.org/expert/44129 -https://www.oceanexpert.org/event/874 -https://www.oceanexpert.org/institution/18692 -https://www.oceanexpert.org/expert/38713 -https://www.oceanexpert.org/expert/49008 -https://www.oceanexpert.org/expert/26351 -https://www.oceanexpert.org/institution/14611 -https://www.oceanexpert.org/institution/19343 -https://www.oceanexpert.org/expert/33256 -https://www.oceanexpert.org/expert/45798 -https://www.oceanexpert.org/event/1150 -https://www.oceanexpert.org/expert/22625 -https://www.oceanexpert.org/expert/16788 -https://www.oceanexpert.org/institution/20205 -https://www.oceanexpert.org/institution/21348 -https://www.oceanexpert.org/institution/10180 -https://www.oceanexpert.org/expert/23661 -https://www.oceanexpert.org/expert/19605 -https://www.oceanexpert.org/expert/30534 -https://www.oceanexpert.org/institution/16132 -https://www.oceanexpert.org/expert/34342 -https://www.oceanexpert.org/expert/35332 -https://www.oceanexpert.org/expert/23073 -https://www.oceanexpert.org/expert/36528 -https://www.oceanexpert.org/institution/13270 -https://www.oceanexpert.org/expert/19407 -https://www.oceanexpert.org/institution/7922 -https://www.oceanexpert.org/institution/17093 -https://www.oceanexpert.org/expert/25098 -https://www.oceanexpert.org/expert/19333 -https://www.oceanexpert.org/expert/6907 -https://www.oceanexpert.org/expert/47430 -https://www.oceanexpert.org/expert/3531 -https://www.oceanexpert.org/institution/18562 -https://www.oceanexpert.org/expert/34524 -https://www.oceanexpert.org/institution/18710 -https://www.oceanexpert.org/institution/21111 -https://www.oceanexpert.org/expert/44624 -https://www.oceanexpert.org/expert/45365 -https://www.oceanexpert.org/expert/28869 -https://www.oceanexpert.org/institution/7905 -https://www.oceanexpert.org/institution/16234 -https://www.oceanexpert.org/institution/14228 -https://www.oceanexpert.org/expert/20510 -https://www.oceanexpert.org/expert/13752 -https://www.oceanexpert.org/expert/34887 -https://www.oceanexpert.org/expert/12043 -https://www.oceanexpert.org/institution/7796 -https://www.oceanexpert.org/expert/40057 -https://www.oceanexpert.org/expert/24573 -https://www.oceanexpert.org/expert/27043 -https://www.oceanexpert.org/expert/38162 -https://www.oceanexpert.org/expert/7105 -https://www.oceanexpert.org/expert/37082 -https://www.oceanexpert.org/expert/21056 -https://www.oceanexpert.org/expert/20388 -https://www.oceanexpert.org/institution/19982 -https://www.oceanexpert.org/expert/47713 -https://www.oceanexpert.org/expert/17394 -https://www.oceanexpert.org/expert/12638 -https://www.oceanexpert.org/institution/19160 -https://www.oceanexpert.org/expert/19006 -https://www.oceanexpert.org/expert/48098 -https://www.oceanexpert.org/expert/33929 -https://www.oceanexpert.org/expert/45045 -https://www.oceanexpert.org/institution/21681 -https://www.oceanexpert.org/institution/21401 -https://www.oceanexpert.org/event/1400 -https://www.oceanexpert.org/expert/19633 -https://www.oceanexpert.org/expert/25594 -https://www.oceanexpert.org/expert/13705 -https://www.oceanexpert.org/institution/21652 -https://www.oceanexpert.org/expert/24928 -https://www.oceanexpert.org/institution/21809 -https://www.oceanexpert.org/expert/4343 -https://www.oceanexpert.org/institution/20736 -https://www.oceanexpert.org/expert/24216 -https://www.oceanexpert.org/expert/19104 -https://www.oceanexpert.org/expert/17244 -https://www.oceanexpert.org/expert/22258 -https://www.oceanexpert.org/expert/25448 -https://www.oceanexpert.org/institution/21135 -https://www.oceanexpert.org/expert/47326 -https://www.oceanexpert.org/institution/21492 -https://www.oceanexpert.org/expert/34387 -https://www.oceanexpert.org/expert/47238 -https://www.oceanexpert.org/expert/4284 -https://www.oceanexpert.org/expert/26960 -https://www.oceanexpert.org/expert/44757 -https://www.oceanexpert.org/expert/19229 -https://www.oceanexpert.org/expert/23631 -https://www.oceanexpert.org/expert/32369 -https://www.oceanexpert.org/expert/18303 -https://www.oceanexpert.org/event/1080 -https://www.oceanexpert.org/expert/30244 -https://www.oceanexpert.org/expert/27778 -https://www.oceanexpert.org/expert/20552 -https://www.oceanexpert.org/institution/20121 -https://www.oceanexpert.org/expert/12256 -https://www.oceanexpert.org/expert/26134 -https://www.oceanexpert.org/expert/7452 -https://www.oceanexpert.org/expert/29944 -https://www.oceanexpert.org/expert/36671 -https://www.oceanexpert.org/expert/43598 -https://www.oceanexpert.org/expert/5540 -https://www.oceanexpert.org/expert/37516 -https://www.oceanexpert.org/expert/33753 -https://www.oceanexpert.org/expert/43467 -https://www.oceanexpert.org/expert/23086 -https://www.oceanexpert.org/expert/16703 -https://www.oceanexpert.org/expert/20718 -https://www.oceanexpert.org/expert/44953 -https://www.oceanexpert.org/expert/16955 -https://www.oceanexpert.org/expert/29909 -https://www.oceanexpert.org/expert/13872 -https://www.oceanexpert.org/expert/23332 -https://www.oceanexpert.org/expert/45092 -https://www.oceanexpert.org/expert/1572 -https://www.oceanexpert.org/expert/14037 -https://www.oceanexpert.org/institution/21327 -https://www.oceanexpert.org/expert/38047 -https://www.oceanexpert.org/event/2677 -https://www.oceanexpert.org/expert/21719 -https://www.oceanexpert.org/event/1443 -https://www.oceanexpert.org/expert/37999 -https://www.oceanexpert.org/expert/47741 -https://www.oceanexpert.org/event/365 -https://www.oceanexpert.org/event/591 -https://www.oceanexpert.org/expert/46969 -https://www.oceanexpert.org/event/1395 -https://www.oceanexpert.org/institution/5385 -https://www.oceanexpert.org/expert/5699 -https://www.oceanexpert.org/event/3282 -https://www.oceanexpert.org/institution/16313 -https://www.oceanexpert.org/expert/23639 -https://www.oceanexpert.org/institution/5404 -https://www.oceanexpert.org/expert/37007 -https://www.oceanexpert.org/expert/21271 -https://www.oceanexpert.org/institution/14422 -https://www.oceanexpert.org/expert/26036 -https://www.oceanexpert.org/institution/11481 -https://www.oceanexpert.org/expert/26259 -https://www.oceanexpert.org/expert/20582 -https://www.oceanexpert.org/expert/12711 -https://www.oceanexpert.org/expert/45417 -https://www.oceanexpert.org/event/233 -https://www.oceanexpert.org/expert/29746 -https://www.oceanexpert.org/institution/18864 -https://www.oceanexpert.org/institution/6765 -https://www.oceanexpert.org/expert/26151 -https://www.oceanexpert.org/expert/16882 -https://www.oceanexpert.org/institution/13014 -https://www.oceanexpert.org/expert/47302 -https://www.oceanexpert.org/expert/29233 -https://www.oceanexpert.org/expert/44149 -https://www.oceanexpert.org/expert/31036 -https://www.oceanexpert.org/expert/707 -https://www.oceanexpert.org/expert/21362 -https://www.oceanexpert.org/institution/21242 -https://www.oceanexpert.org/expert/21301 -https://www.oceanexpert.org/expert/3989 -https://www.oceanexpert.org/expert/11643 -https://www.oceanexpert.org/institution/20086 -https://www.oceanexpert.org/expert/39078 -https://www.oceanexpert.org/event/2909 -https://www.oceanexpert.org/expert/38880 -https://www.oceanexpert.org/expert/29462 -https://www.oceanexpert.org/expert/12430 -https://www.oceanexpert.org/expert/38357 -https://www.oceanexpert.org/expert/280 -https://www.oceanexpert.org/institution/12409 -https://www.oceanexpert.org/institution/9478 -https://www.oceanexpert.org/expert/22278 -https://www.oceanexpert.org/institution/21073 -https://www.oceanexpert.org/institution/18028 -https://www.oceanexpert.org/institution/19604 -https://www.oceanexpert.org/expert/42405 -https://www.oceanexpert.org/expert/35999 -https://www.oceanexpert.org/expert/45456 -https://www.oceanexpert.org/expert/23385 -https://www.oceanexpert.org/expert/18070 -https://www.oceanexpert.org/institution/19034 -https://www.oceanexpert.org/expert/46052 -https://www.oceanexpert.org/expert/33013 -https://www.oceanexpert.org/expert/18467 -https://www.oceanexpert.org/expert/28868 -https://www.oceanexpert.org/expert/27115 -https://www.oceanexpert.org/expert/25892 -https://www.oceanexpert.org/expert/22207 -https://www.oceanexpert.org/institution/20874 -https://www.oceanexpert.org/expert/25411 -https://www.oceanexpert.org/expert/32776 -https://www.oceanexpert.org/expert/45181 -https://www.oceanexpert.org/event/2359 -https://www.oceanexpert.org/expert/17782 -https://www.oceanexpert.org/institution/8684 -https://www.oceanexpert.org/expert/34732 -https://www.oceanexpert.org/expert/48768 -https://www.oceanexpert.org/institution/18296 -https://www.oceanexpert.org/institution/12696 -https://www.oceanexpert.org/expert/31721 -https://www.oceanexpert.org/event/1700 -https://www.oceanexpert.org/institution/17293 -https://www.oceanexpert.org/institution/15681 -https://www.oceanexpert.org/expert/13390 -https://www.oceanexpert.org/expert/47883 -https://www.oceanexpert.org/institution/18106 -https://www.oceanexpert.org/expert/30038 -https://www.oceanexpert.org/expert/16000 -https://www.oceanexpert.org/expert/36212 -https://www.oceanexpert.org/expert/24658 -https://www.oceanexpert.org/event/2134 -https://www.oceanexpert.org/expert/42468 -https://www.oceanexpert.org/institution/19438 -https://www.oceanexpert.org/expert/18455 -https://www.oceanexpert.org/expert/7593 -https://www.oceanexpert.org/event/1061 -https://www.oceanexpert.org/expert/34077 -https://www.oceanexpert.org/institution/16694 -https://www.oceanexpert.org/expert/11924 -https://www.oceanexpert.org/expert/4267 -https://www.oceanexpert.org/expert/20222 -https://www.oceanexpert.org/expert/48480 -https://www.oceanexpert.org/expert/35840 -https://www.oceanexpert.org/institution/18124 -https://www.oceanexpert.org/institution/7656 -https://www.oceanexpert.org/expert/12127 -https://www.oceanexpert.org/institution/20615 -https://www.oceanexpert.org/expert/47032 -https://www.oceanexpert.org/expert/13324 -https://www.oceanexpert.org/expert/20669 -https://www.oceanexpert.org/expert/14566 -https://www.oceanexpert.org/expert/44286 -https://www.oceanexpert.org/institution/6351 -https://www.oceanexpert.org/expert/36998 -https://www.oceanexpert.org/expert/34220 -https://www.oceanexpert.org/expert/42656 -https://www.oceanexpert.org/expert/35710 -https://www.oceanexpert.org/expert/36924 -https://www.oceanexpert.org/expert/35729 -https://www.oceanexpert.org/expert/47581 -https://www.oceanexpert.org/expert/46917 -https://www.oceanexpert.org/institution/18623 -https://www.oceanexpert.org/expert/41424 -https://www.oceanexpert.org/expert/44202 -https://www.oceanexpert.org/expert/14054 -https://www.oceanexpert.org/expert/1332 -https://www.oceanexpert.org/expert/27594 -https://www.oceanexpert.org/expert/13477 -https://www.oceanexpert.org/expert/7782 -https://www.oceanexpert.org/expert/22266 -https://www.oceanexpert.org/expert/22477 -https://www.oceanexpert.org/expert/23525 -https://www.oceanexpert.org/expert/25107 -https://www.oceanexpert.org/expert/41483 -https://www.oceanexpert.org/expert/38442 -https://www.oceanexpert.org/expert/45169 -https://www.oceanexpert.org/expert/19918 -https://www.oceanexpert.org/expert/19317 -https://www.oceanexpert.org/event/594 -https://www.oceanexpert.org/expert/20946 -https://www.oceanexpert.org/expert/25108 -https://www.oceanexpert.org/institution/13321 -https://www.oceanexpert.org/institution/21323 -https://www.oceanexpert.org/event/613 -https://www.oceanexpert.org/expert/42891 -https://www.oceanexpert.org/expert/8812 -https://www.oceanexpert.org/expert/1961 -https://www.oceanexpert.org/institution/11573 -https://www.oceanexpert.org/institution/20917 -https://www.oceanexpert.org/expert/36411 -https://www.oceanexpert.org/expert/17449 -https://www.oceanexpert.org/institution/18403 -https://www.oceanexpert.org/institution/20848 -https://www.oceanexpert.org/event/1405 -https://www.oceanexpert.org/expert/4417 -https://www.oceanexpert.org/institution/21694 -https://www.oceanexpert.org/expert/26505 -https://www.oceanexpert.org/institution/19500 -https://www.oceanexpert.org/institution/20154 -https://www.oceanexpert.org/event/757 -https://www.oceanexpert.org/expert/30185 -https://www.oceanexpert.org/institution/9621 -https://www.oceanexpert.org/expert/7023 -https://www.oceanexpert.org/institution/17709 -https://www.oceanexpert.org/expert/17767 -https://www.oceanexpert.org/institution/18111 -https://www.oceanexpert.org/expert/757 -https://www.oceanexpert.org/institution/20187 -https://www.oceanexpert.org/expert/10247 -https://www.oceanexpert.org/institution/12152 -https://www.oceanexpert.org/expert/47241 -https://www.oceanexpert.org/institution/21459 -https://www.oceanexpert.org/event/25 -https://www.oceanexpert.org/event/1048 -https://www.oceanexpert.org/expert/16635 -https://www.oceanexpert.org/expert/26905 -https://www.oceanexpert.org/expert/22867 -https://www.oceanexpert.org/expert/21934 -https://www.oceanexpert.org/event/2489 -https://www.oceanexpert.org/expert/16710 -https://www.oceanexpert.org/institution/20462 -https://www.oceanexpert.org/expert/18321 -https://www.oceanexpert.org/expert/43340 -https://www.oceanexpert.org/institution/15084 -https://www.oceanexpert.org/expert/42989 -https://www.oceanexpert.org/institution/14612 -https://www.oceanexpert.org/expert/27164 -https://www.oceanexpert.org/expert/34774 -https://www.oceanexpert.org/expert/23336 -https://www.oceanexpert.org/expert/37988 -https://www.oceanexpert.org/institution/11474 -https://www.oceanexpert.org/expert/42609 -https://www.oceanexpert.org/institution/19386 -https://www.oceanexpert.org/expert/29605 -https://www.oceanexpert.org/institution/20878 -https://www.oceanexpert.org/expert/19438 -https://www.oceanexpert.org/expert/49007 -https://www.oceanexpert.org/institution/20946 -https://www.oceanexpert.org/expert/20884 -https://www.oceanexpert.org/expert/46906 -https://www.oceanexpert.org/expert/871 -https://www.oceanexpert.org/expert/30285 -https://www.oceanexpert.org/expert/27771 -https://www.oceanexpert.org/expert/43633 -https://www.oceanexpert.org/expert/17313 -https://www.oceanexpert.org/event/1057 -https://www.oceanexpert.org/expert/22820 -https://www.oceanexpert.org/expert/20426 -https://www.oceanexpert.org/expert/27984 -https://www.oceanexpert.org/expert/48435 -https://www.oceanexpert.org/expert/18052 -https://www.oceanexpert.org/expert/37002 -https://www.oceanexpert.org/expert/24979 -https://www.oceanexpert.org/expert/23619 -https://www.oceanexpert.org/expert/1085 -https://www.oceanexpert.org/institution/14119 -https://www.oceanexpert.org/institution/16414 -https://www.oceanexpert.org/institution/16746 -https://www.oceanexpert.org/expert/29689 -https://www.oceanexpert.org/expert/28432 -https://www.oceanexpert.org/institution/21427 -https://www.oceanexpert.org/institution/21708 -https://www.oceanexpert.org/expert/23680 -https://www.oceanexpert.org/expert/37124 -https://www.oceanexpert.org/institution/20787 -https://www.oceanexpert.org/expert/8724 -https://www.oceanexpert.org/institution/16987 -https://www.oceanexpert.org/event/204 -https://www.oceanexpert.org/event/1992 -https://www.oceanexpert.org/expert/4085 -https://www.oceanexpert.org/institution/21389 -https://www.oceanexpert.org/institution/17888 -https://www.oceanexpert.org/expert/34164 -https://www.oceanexpert.org/expert/27678 -https://www.oceanexpert.org/institution/8648 -https://www.oceanexpert.org/event/2234 -https://www.oceanexpert.org/institution/21806 -https://www.oceanexpert.org/institution/10492 -https://www.oceanexpert.org/expert/4986 -https://www.oceanexpert.org/expert/19412 -https://www.oceanexpert.org/expert/3956 -https://www.oceanexpert.org/expert/47726 -https://www.oceanexpert.org/institution/18802 -https://www.oceanexpert.org/expert/20950 -https://www.oceanexpert.org/expert/8738 -https://www.oceanexpert.org/institution/20095 -https://www.oceanexpert.org/expert/20833 -https://www.oceanexpert.org/expert/35717 -https://www.oceanexpert.org/expert/35340 -https://www.oceanexpert.org/expert/35250 -https://www.oceanexpert.org/expert/19554 -https://www.oceanexpert.org/expert/42545 -https://www.oceanexpert.org/expert/19685 -https://www.oceanexpert.org/expert/21220 -https://www.oceanexpert.org/expert/35652 -https://www.oceanexpert.org/expert/21458 -https://www.oceanexpert.org/expert/31665 -https://www.oceanexpert.org/institution/14623 -https://www.oceanexpert.org/expert/13533 -https://www.oceanexpert.org/institution/18898 -https://www.oceanexpert.org/expert/36805 -https://www.oceanexpert.org/expert/45335 -https://www.oceanexpert.org/expert/32327 -https://www.oceanexpert.org/institution/10739 -https://www.oceanexpert.org/institution/13286 -https://www.oceanexpert.org/expert/4721 -https://www.oceanexpert.org/event/612 -https://www.oceanexpert.org/expert/21687 -https://www.oceanexpert.org/expert/28383 -https://www.oceanexpert.org/expert/19657 -https://www.oceanexpert.org/institution/13019 -https://www.oceanexpert.org/expert/27519 -https://www.oceanexpert.org/institution/21744 -https://www.oceanexpert.org/event/1321 -https://www.oceanexpert.org/expert/29057 -https://www.oceanexpert.org/institution/12860 -https://www.oceanexpert.org/expert/3806 -https://www.oceanexpert.org/expert/40570 -https://www.oceanexpert.org/institution/22007 -https://www.oceanexpert.org/expert/26945 -https://www.oceanexpert.org/institution/20460 -https://www.oceanexpert.org/expert/20261 -https://www.oceanexpert.org/institution/21130 -https://www.oceanexpert.org/expert/28416 -https://www.oceanexpert.org/expert/37549 -https://www.oceanexpert.org/expert/45093 -https://www.oceanexpert.org/expert/30178 -https://www.oceanexpert.org/institution/8971 -https://www.oceanexpert.org/event/132 -https://www.oceanexpert.org/institution/8547 -https://www.oceanexpert.org/institution/19176 -https://www.oceanexpert.org/institution/17926 -https://www.oceanexpert.org/expert/35698 -https://www.oceanexpert.org/event/2021 -https://www.oceanexpert.org/expert/39802 -https://www.oceanexpert.org/event/2897 -https://www.oceanexpert.org/event/2889 -https://www.oceanexpert.org/institution/17823 -https://www.oceanexpert.org/expert/36818 -https://www.oceanexpert.org/event/576 -https://www.oceanexpert.org/event/693 -https://www.oceanexpert.org/expert/47143 -https://www.oceanexpert.org/expert/29197 -https://www.oceanexpert.org/expert/36557 -https://www.oceanexpert.org/institution/21811 -https://www.oceanexpert.org/institution/19936 -https://www.oceanexpert.org/event/1378 -https://www.oceanexpert.org/expert/14773 -https://www.oceanexpert.org/event/1044 -https://www.oceanexpert.org/institution/20006 -https://www.oceanexpert.org/expert/26373 -https://www.oceanexpert.org/expert/29140 -https://www.oceanexpert.org/institution/7719 -https://www.oceanexpert.org/expert/44159 -https://www.oceanexpert.org/expert/36747 -https://www.oceanexpert.org/expert/16873 -https://www.oceanexpert.org/institution/19557 -https://www.oceanexpert.org/expert/36297 -https://www.oceanexpert.org/expert/48404 -https://www.oceanexpert.org/expert/48147 -https://www.oceanexpert.org/expert/23337 -https://www.oceanexpert.org/expert/21600 -https://www.oceanexpert.org/institution/18149 -https://www.oceanexpert.org/expert/15933 -https://www.oceanexpert.org/institution/21419 -https://www.oceanexpert.org/expert/8935 -https://www.oceanexpert.org/institution/21702 -https://www.oceanexpert.org/expert/19108 -https://www.oceanexpert.org/institution/20769 -https://www.oceanexpert.org/expert/31430 -https://www.oceanexpert.org/expert/35925 -https://www.oceanexpert.org/expert/33322 -https://www.oceanexpert.org/institution/6834 -https://www.oceanexpert.org/expert/48657 -https://www.oceanexpert.org/expert/45404 -https://www.oceanexpert.org/institution/16365 -https://www.oceanexpert.org/expert/37118 -https://www.oceanexpert.org/expert/1900 -https://www.oceanexpert.org/expert/22906 -https://www.oceanexpert.org/institution/13231 -https://www.oceanexpert.org/expert/20715 -https://www.oceanexpert.org/expert/23655 -https://www.oceanexpert.org/expert/38788 -https://www.oceanexpert.org/expert/35381 -https://www.oceanexpert.org/expert/21893 -https://www.oceanexpert.org/institution/22132 -https://www.oceanexpert.org/event/2942 -https://www.oceanexpert.org/expert/38306 -https://www.oceanexpert.org/institution/16434 -https://www.oceanexpert.org/expert/22690 -https://www.oceanexpert.org/expert/21187 -https://www.oceanexpert.org/expert/23050 -https://www.oceanexpert.org/expert/38222 -https://www.oceanexpert.org/expert/19165 -https://www.oceanexpert.org/expert/43295 -https://www.oceanexpert.org/expert/16064 -https://www.oceanexpert.org/expert/21142 -https://www.oceanexpert.org/expert/33999 -https://www.oceanexpert.org/institution/18954 -https://www.oceanexpert.org/expert/36577 -https://www.oceanexpert.org/expert/37384 -https://www.oceanexpert.org/institution/22141 -https://www.oceanexpert.org/institution/17787 -https://www.oceanexpert.org/expert/39519 -https://www.oceanexpert.org/institution/10396 -https://www.oceanexpert.org/institution/17440 -https://www.oceanexpert.org/expert/17022 -https://www.oceanexpert.org/institution/18826 -https://www.oceanexpert.org/event/2098 -https://www.oceanexpert.org/expert/47481 -https://www.oceanexpert.org/expert/12458 -https://www.oceanexpert.org/expert/25896 -https://www.oceanexpert.org/expert/25743 -https://www.oceanexpert.org/expert/26537 -https://www.oceanexpert.org/expert/36573 -https://www.oceanexpert.org/institution/19374 -https://www.oceanexpert.org/expert/15695 -https://www.oceanexpert.org/expert/17277 -https://www.oceanexpert.org/expert/21976 -https://www.oceanexpert.org/institution/17773 -https://www.oceanexpert.org/expert/16945 -https://www.oceanexpert.org/expert/3861 -https://www.oceanexpert.org/expert/36771 -https://www.oceanexpert.org/institution/22156 -https://www.oceanexpert.org/institution/14105 -https://www.oceanexpert.org/institution/19005 -https://www.oceanexpert.org/expert/36549 -https://www.oceanexpert.org/institution/16843 -https://www.oceanexpert.org/expert/24736 -https://www.oceanexpert.org/event/315 -https://www.oceanexpert.org/expert/23810 -https://www.oceanexpert.org/institution/19446 -https://www.oceanexpert.org/expert/29992 -https://www.oceanexpert.org/expert/6248 -https://www.oceanexpert.org/expert/2480 -https://www.oceanexpert.org/expert/25491 -https://www.oceanexpert.org/expert/36862 -https://www.oceanexpert.org/expert/34854 -https://www.oceanexpert.org/expert/48269 -https://www.oceanexpert.org/expert/2620 -https://www.oceanexpert.org/expert/36352 -https://www.oceanexpert.org/expert/22237 -https://www.oceanexpert.org/expert/20405 -https://www.oceanexpert.org/event/2441 -https://www.oceanexpert.org/expert/19670 -https://www.oceanexpert.org/institution/12955 -https://www.oceanexpert.org/expert/47089 -https://www.oceanexpert.org/expert/14199 -https://www.oceanexpert.org/event/2249 -https://www.oceanexpert.org/expert/32588 -https://www.oceanexpert.org/expert/34266 -https://www.oceanexpert.org/expert/22916 -https://www.oceanexpert.org/expert/17193 -https://www.oceanexpert.org/expert/32803 -https://www.oceanexpert.org/expert/39773 -https://www.oceanexpert.org/expert/45671 -https://www.oceanexpert.org/expert/11206 -https://www.oceanexpert.org/expert/35562 -https://www.oceanexpert.org/institution/14104 -https://www.oceanexpert.org/expert/32364 -https://www.oceanexpert.org/expert/20066 -https://www.oceanexpert.org/expert/34821 -https://www.oceanexpert.org/expert/7694 -https://www.oceanexpert.org/expert/36792 -https://www.oceanexpert.org/institution/18809 -https://www.oceanexpert.org/expert/30638 -https://www.oceanexpert.org/expert/19244 -https://www.oceanexpert.org/expert/40122 -https://www.oceanexpert.org/event/2813 -https://www.oceanexpert.org/expert/34548 -https://www.oceanexpert.org/institution/16600 -https://www.oceanexpert.org/expert/31098 -https://www.oceanexpert.org/event/28 -https://www.oceanexpert.org/expert/38893 -https://www.oceanexpert.org/expert/26387 -https://www.oceanexpert.org/expert/44249 -https://www.oceanexpert.org/expert/29635 -https://www.oceanexpert.org/expert/35594 -https://www.oceanexpert.org/expert/47726 -https://www.oceanexpert.org/institution/16268 -https://www.oceanexpert.org/expert/46972 -https://www.oceanexpert.org/expert/30849 -https://www.oceanexpert.org/expert/3103 -https://www.oceanexpert.org/expert/14785 -https://www.oceanexpert.org/expert/32191 -https://www.oceanexpert.org/expert/30937 -https://www.oceanexpert.org/expert/7578 -https://www.oceanexpert.org/expert/18786 -https://www.oceanexpert.org/expert/18753 -https://www.oceanexpert.org/expert/33366 -https://www.oceanexpert.org/institution/21449 -https://www.oceanexpert.org/expert/39605 -https://www.oceanexpert.org/expert/12127 -https://www.oceanexpert.org/expert/47458 -https://www.oceanexpert.org/expert/35046 -https://www.oceanexpert.org/expert/24705 -https://www.oceanexpert.org/event/53 -https://www.oceanexpert.org/expert/37341 -https://www.oceanexpert.org/expert/7908 -https://www.oceanexpert.org/institution/10741 -https://www.oceanexpert.org/institution/5843 -https://www.oceanexpert.org/institution/13167 -https://www.oceanexpert.org/institution/12025 -https://www.oceanexpert.org/expert/46962 -https://www.oceanexpert.org/expert/24998 -https://www.oceanexpert.org/event/1134 -https://www.oceanexpert.org/expert/46840 -https://www.oceanexpert.org/expert/24879 -https://www.oceanexpert.org/expert/11179 -https://www.oceanexpert.org/expert/20247 -https://www.oceanexpert.org/expert/47139 -https://www.oceanexpert.org/expert/30087 -https://www.oceanexpert.org/event/2824 -https://www.oceanexpert.org/expert/17608 -https://www.oceanexpert.org/expert/7857 -https://www.oceanexpert.org/expert/13278 -https://www.oceanexpert.org/expert/37798 -https://www.oceanexpert.org/event/2933 -https://www.oceanexpert.org/expert/35668 -https://www.oceanexpert.org/expert/23394 -https://www.oceanexpert.org/institution/21609 -https://www.oceanexpert.org/expert/14674 -https://www.oceanexpert.org/expert/36861 -https://www.oceanexpert.org/expert/38193 -https://www.oceanexpert.org/expert/22741 -https://www.oceanexpert.org/expert/6680 -https://www.oceanexpert.org/institution/22060 -https://www.oceanexpert.org/expert/21625 -https://www.oceanexpert.org/expert/47882 -https://www.oceanexpert.org/institution/11466 -https://www.oceanexpert.org/expert/31916 -https://www.oceanexpert.org/expert/36783 -https://www.oceanexpert.org/expert/44322 -https://www.oceanexpert.org/institution/13256 -https://www.oceanexpert.org/expert/44802 -https://www.oceanexpert.org/expert/25261 -https://www.oceanexpert.org/event/3256 -https://www.oceanexpert.org/expert/20872 -https://www.oceanexpert.org/expert/31132 -https://www.oceanexpert.org/expert/25762 -https://www.oceanexpert.org/expert/586 -https://www.oceanexpert.org/expert/15261 -https://www.oceanexpert.org/event/236 -https://www.oceanexpert.org/institution/17822 -https://www.oceanexpert.org/event/2417 -https://www.oceanexpert.org/expert/43447 -https://www.oceanexpert.org/expert/46986 -https://www.oceanexpert.org/institution/10738 -https://www.oceanexpert.org/expert/46314 -https://www.oceanexpert.org/expert/46269 -https://www.oceanexpert.org/expert/18029 -https://www.oceanexpert.org/institution/20711 -https://www.oceanexpert.org/expert/39942 -https://www.oceanexpert.org/expert/44933 -https://www.oceanexpert.org/institution/18922 -https://www.oceanexpert.org/expert/17981 -https://www.oceanexpert.org/expert/18886 -https://www.oceanexpert.org/expert/20905 -https://www.oceanexpert.org/institution/20685 -https://www.oceanexpert.org/expert/29811 -https://www.oceanexpert.org/expert/40592 -https://www.oceanexpert.org/institution/17767 -https://www.oceanexpert.org/expert/35665 -https://www.oceanexpert.org/institution/20181 -https://www.oceanexpert.org/institution/9150 -https://www.oceanexpert.org/institution/18207 -https://www.oceanexpert.org/expert/24309 -https://www.oceanexpert.org/institution/10488 -https://www.oceanexpert.org/expert/21749 -https://www.oceanexpert.org/expert/12355 -https://www.oceanexpert.org/institution/22106 -https://www.oceanexpert.org/expert/16876 -https://www.oceanexpert.org/institution/19678 -https://www.oceanexpert.org/expert/36079 -https://www.oceanexpert.org/expert/48544 -https://www.oceanexpert.org/expert/27187 -https://www.oceanexpert.org/expert/18703 -https://www.oceanexpert.org/expert/29945 -https://www.oceanexpert.org/expert/33609 -https://www.oceanexpert.org/expert/19477 -https://www.oceanexpert.org/expert/38490 -https://www.oceanexpert.org/expert/44421 -https://www.oceanexpert.org/expert/37262 -https://www.oceanexpert.org/expert/19504 -https://www.oceanexpert.org/institution/19545 -https://www.oceanexpert.org/expert/44817 -https://www.oceanexpert.org/expert/23362 -https://www.oceanexpert.org/expert/18585 -https://www.oceanexpert.org/expert/18540 -https://www.oceanexpert.org/expert/33744 -https://www.oceanexpert.org/institution/20117 -https://www.oceanexpert.org/expert/5622 -https://www.oceanexpert.org/expert/27581 -https://www.oceanexpert.org/expert/25950 -https://www.oceanexpert.org/expert/34716 -https://www.oceanexpert.org/expert/46436 -https://www.oceanexpert.org/expert/11494 -https://www.oceanexpert.org/institution/12905 -https://www.oceanexpert.org/expert/26375 -https://www.oceanexpert.org/expert/40307 -https://www.oceanexpert.org/expert/31597 -https://www.oceanexpert.org/expert/48458 -https://www.oceanexpert.org/expert/43065 -https://www.oceanexpert.org/institution/15209 -https://www.oceanexpert.org/institution/18066 -https://www.oceanexpert.org/expert/23722 -https://www.oceanexpert.org/expert/47570 -https://www.oceanexpert.org/event/2195 -https://www.oceanexpert.org/institution/21832 -https://www.oceanexpert.org/expert/35349 -https://www.oceanexpert.org/institution/19562 -https://www.oceanexpert.org/event/273 -https://www.oceanexpert.org/expert/40551 -https://www.oceanexpert.org/expert/30452 -https://www.oceanexpert.org/expert/24037 -https://www.oceanexpert.org/expert/40359 -https://www.oceanexpert.org/expert/33169 -https://www.oceanexpert.org/expert/32716 -https://www.oceanexpert.org/event/146 -https://www.oceanexpert.org/expert/16344 -https://www.oceanexpert.org/expert/27711 -https://www.oceanexpert.org/event/2109 -https://www.oceanexpert.org/expert/10381 -https://www.oceanexpert.org/expert/43931 -https://www.oceanexpert.org/expert/11479 -https://www.oceanexpert.org/expert/17332 -https://www.oceanexpert.org/expert/45463 -https://www.oceanexpert.org/expert/16058 -https://www.oceanexpert.org/expert/30258 -https://www.oceanexpert.org/expert/43591 -https://www.oceanexpert.org/expert/26760 -https://www.oceanexpert.org/expert/19384 -https://www.oceanexpert.org/expert/28105 -https://www.oceanexpert.org/institution/15113 -https://www.oceanexpert.org/event/2279 -https://www.oceanexpert.org/expert/37288 -https://www.oceanexpert.org/expert/17522 -https://www.oceanexpert.org/expert/17133 -https://www.oceanexpert.org/institution/22004 -https://www.oceanexpert.org/institution/21739 -https://www.oceanexpert.org/institution/12546 -https://www.oceanexpert.org/expert/20984 -https://www.oceanexpert.org/expert/46330 -https://www.oceanexpert.org/institution/18854 -https://www.oceanexpert.org/expert/11835 -https://www.oceanexpert.org/institution/6110 -https://www.oceanexpert.org/expert/22107 -https://www.oceanexpert.org/institution/19561 -https://www.oceanexpert.org/expert/48975 -https://www.oceanexpert.org/expert/45433 -https://www.oceanexpert.org/expert/27457 -https://www.oceanexpert.org/institution/6466 -https://www.oceanexpert.org/expert/31422 -https://www.oceanexpert.org/expert/42070 -https://www.oceanexpert.org/expert/32236 -https://www.oceanexpert.org/institution/6514 -https://www.oceanexpert.org/institution/20125 -https://www.oceanexpert.org/expert/46555 -https://www.oceanexpert.org/institution/21530 -https://www.oceanexpert.org/institution/5122 -https://www.oceanexpert.org/institution/21749 -https://www.oceanexpert.org/event/1762 -https://www.oceanexpert.org/expert/43696 -https://www.oceanexpert.org/expert/11291 -https://www.oceanexpert.org/expert/23927 -https://www.oceanexpert.org/event/1479 -https://www.oceanexpert.org/institution/15017 -https://www.oceanexpert.org/expert/34701 -https://www.oceanexpert.org/expert/16731 -https://www.oceanexpert.org/institution/18827 -https://www.oceanexpert.org/expert/26717 -https://www.oceanexpert.org/event/863 -https://www.oceanexpert.org/expert/44557 -https://www.oceanexpert.org/expert/3822 -https://www.oceanexpert.org/event/545 -https://www.oceanexpert.org/expert/13560 -https://www.oceanexpert.org/expert/21881 -https://www.oceanexpert.org/institution/12068 -https://www.oceanexpert.org/expert/45160 -https://www.oceanexpert.org/institution/19403 -https://www.oceanexpert.org/expert/12232 -https://www.oceanexpert.org/institution/15521 -https://www.oceanexpert.org/event/476 -https://www.oceanexpert.org/expert/22665 -https://www.oceanexpert.org/expert/20060 -https://www.oceanexpert.org/expert/23039 -https://www.oceanexpert.org/event/1758 -https://www.oceanexpert.org/expert/15419 -https://www.oceanexpert.org/event/2562 -https://www.oceanexpert.org/expert/42526 -https://www.oceanexpert.org/institution/4958 -https://www.oceanexpert.org/institution/11576 -https://www.oceanexpert.org/expert/37140 -https://www.oceanexpert.org/expert/48212 -https://www.oceanexpert.org/expert/33095 -https://www.oceanexpert.org/expert/43265 -https://www.oceanexpert.org/event/3073 -https://www.oceanexpert.org/expert/25187 -https://www.oceanexpert.org/event/1701 -https://www.oceanexpert.org/institution/12789 -https://www.oceanexpert.org/expert/33256 -https://www.oceanexpert.org/expert/37632 -https://www.oceanexpert.org/institution/5163 -https://www.oceanexpert.org/expert/44937 -https://www.oceanexpert.org/expert/43338 -https://www.oceanexpert.org/expert/35843 -https://www.oceanexpert.org/expert/35132 -https://www.oceanexpert.org/expert/36614 -https://www.oceanexpert.org/expert/20546 -https://www.oceanexpert.org/institution/17362 -https://www.oceanexpert.org/expert/24867 -https://www.oceanexpert.org/expert/15715 -https://www.oceanexpert.org/expert/25583 -https://www.oceanexpert.org/expert/38382 -https://www.oceanexpert.org/institution/17290 -https://www.oceanexpert.org/expert/44165 -https://www.oceanexpert.org/institution/12034 -https://www.oceanexpert.org/expert/1312 -https://www.oceanexpert.org/expert/28472 -https://www.oceanexpert.org/expert/36968 -https://www.oceanexpert.org/expert/38139 -https://www.oceanexpert.org/expert/27236 -https://www.oceanexpert.org/institution/14733 -https://www.oceanexpert.org/institution/19076 -https://www.oceanexpert.org/institution/21714 -https://www.oceanexpert.org/expert/16321 -https://www.oceanexpert.org/expert/20691 -https://www.oceanexpert.org/expert/14881 -https://www.oceanexpert.org/expert/25476 -https://www.oceanexpert.org/expert/37532 -https://www.oceanexpert.org/expert/22692 -https://www.oceanexpert.org/institution/9456 -https://www.oceanexpert.org/expert/32237 -https://www.oceanexpert.org/institution/11872 -https://www.oceanexpert.org/event/3007 -https://www.oceanexpert.org/expert/45064 -https://www.oceanexpert.org/expert/48938 -https://www.oceanexpert.org/expert/15635 -https://www.oceanexpert.org/expert/29557 -https://www.oceanexpert.org/institution/22066 -https://www.oceanexpert.org/expert/19483 -https://www.oceanexpert.org/expert/48550 -https://www.oceanexpert.org/institution/5155 -https://www.oceanexpert.org/expert/14479 -https://www.oceanexpert.org/expert/36562 -https://www.oceanexpert.org/expert/43175 -https://www.oceanexpert.org/expert/32438 -https://www.oceanexpert.org/expert/24202 -https://www.oceanexpert.org/expert/43632 -https://www.oceanexpert.org/expert/30905 -https://www.oceanexpert.org/event/2747 -https://www.oceanexpert.org/institution/18117 -https://www.oceanexpert.org/expert/17434 -https://www.oceanexpert.org/expert/23381 -https://www.oceanexpert.org/expert/44700 -https://www.oceanexpert.org/event/3290 -https://www.oceanexpert.org/expert/17925 -https://www.oceanexpert.org/event/360 -https://www.oceanexpert.org/expert/34228 -https://www.oceanexpert.org/expert/17716 -https://www.oceanexpert.org/institution/8691 -https://www.oceanexpert.org/institution/10078 -https://www.oceanexpert.org/expert/45214 -https://www.oceanexpert.org/institution/20855 -https://www.oceanexpert.org/expert/24989 -https://www.oceanexpert.org/expert/20317 -https://www.oceanexpert.org/institution/17118 -https://www.oceanexpert.org/expert/34714 -https://www.oceanexpert.org/expert/33300 -https://www.oceanexpert.org/institution/19622 -https://www.oceanexpert.org/expert/23668 -https://www.oceanexpert.org/expert/45884 -https://www.oceanexpert.org/expert/25151 -https://www.oceanexpert.org/institution/5804 -https://www.oceanexpert.org/institution/8892 -https://www.oceanexpert.org/expert/43955 -https://www.oceanexpert.org/event/2938 -https://www.oceanexpert.org/expert/29580 -https://www.oceanexpert.org/expert/47896 -https://www.oceanexpert.org/expert/30856 -https://www.oceanexpert.org/expert/16129 -https://www.oceanexpert.org/institution/11989 -https://www.oceanexpert.org/expert/21917 -https://www.oceanexpert.org/institution/14362 -https://www.oceanexpert.org/expert/46099 -https://www.oceanexpert.org/expert/22417 -https://www.oceanexpert.org/expert/34686 -https://www.oceanexpert.org/expert/38180 -https://www.oceanexpert.org/event/3127 -https://www.oceanexpert.org/institution/21894 -https://www.oceanexpert.org/expert/35184 -https://www.oceanexpert.org/expert/46933 -https://www.oceanexpert.org/institution/5290 -https://www.oceanexpert.org/expert/45462 -https://www.oceanexpert.org/expert/17587 -https://www.oceanexpert.org/expert/49052 -https://www.oceanexpert.org/institution/7379 -https://www.oceanexpert.org/expert/24142 -https://www.oceanexpert.org/expert/45448 -https://www.oceanexpert.org/institution/14176 -https://www.oceanexpert.org/expert/32597 -https://www.oceanexpert.org/expert/19813 -https://www.oceanexpert.org/expert/36964 -https://www.oceanexpert.org/institution/11475 -https://www.oceanexpert.org/expert/37044 -https://www.oceanexpert.org/expert/20501 -https://www.oceanexpert.org/expert/30378 -https://www.oceanexpert.org/event/1564 -https://www.oceanexpert.org/expert/26544 -https://www.oceanexpert.org/expert/20393 -https://www.oceanexpert.org/expert/37451 -https://www.oceanexpert.org/expert/45568 -https://www.oceanexpert.org/event/1466 -https://www.oceanexpert.org/expert/16547 -https://www.oceanexpert.org/expert/17826 -https://www.oceanexpert.org/institution/20774 -https://www.oceanexpert.org/event/2933 -https://www.oceanexpert.org/expert/42823 -https://www.oceanexpert.org/expert/20075 -https://www.oceanexpert.org/institution/17076 -https://www.oceanexpert.org/expert/20874 -https://www.oceanexpert.org/institution/15908 -https://www.oceanexpert.org/expert/23908 -https://www.oceanexpert.org/expert/46795 -https://www.oceanexpert.org/expert/25198 -https://www.oceanexpert.org/expert/32501 -https://www.oceanexpert.org/expert/26683 -https://www.oceanexpert.org/expert/45337 -https://www.oceanexpert.org/institution/19514 -https://www.oceanexpert.org/expert/2001 -https://www.oceanexpert.org/event/189 -https://www.oceanexpert.org/event/1703 -https://www.oceanexpert.org/institution/18496 -https://www.oceanexpert.org/expert/22069 -https://www.oceanexpert.org/institution/12182 -https://www.oceanexpert.org/institution/12054 -https://www.oceanexpert.org/expert/23536 -https://www.oceanexpert.org/institution/18519 -https://www.oceanexpert.org/expert/43709 -https://www.oceanexpert.org/institution/16700 -https://www.oceanexpert.org/expert/35477 -https://www.oceanexpert.org/expert/47255 -https://www.oceanexpert.org/expert/649 -https://www.oceanexpert.org/expert/17369 -https://www.oceanexpert.org/expert/33278 -https://www.oceanexpert.org/institution/15674 -https://www.oceanexpert.org/expert/39316 -https://www.oceanexpert.org/expert/32043 -https://www.oceanexpert.org/expert/5162 -https://www.oceanexpert.org/expert/32812 -https://www.oceanexpert.org/expert/26666 -https://www.oceanexpert.org/expert/48726 -https://www.oceanexpert.org/institution/14815 -https://www.oceanexpert.org/expert/5503 -https://www.oceanexpert.org/expert/17224 -https://www.oceanexpert.org/institution/18546 -https://www.oceanexpert.org/expert/27046 -https://www.oceanexpert.org/expert/30212 -https://www.oceanexpert.org/expert/20572 -https://www.oceanexpert.org/event/1652 -https://www.oceanexpert.org/expert/26826 -https://www.oceanexpert.org/expert/35750 -https://www.oceanexpert.org/event/1396 -https://www.oceanexpert.org/expert/46456 -https://www.oceanexpert.org/institution/11010 -https://www.oceanexpert.org/expert/40057 -https://www.oceanexpert.org/expert/36547 -https://www.oceanexpert.org/institution/21607 -https://www.oceanexpert.org/expert/13213 -https://www.oceanexpert.org/expert/37770 -https://www.oceanexpert.org/expert/22638 -https://www.oceanexpert.org/institution/21632 -https://www.oceanexpert.org/institution/14173 -https://www.oceanexpert.org/expert/44870 -https://www.oceanexpert.org/expert/48641 -https://www.oceanexpert.org/expert/16998 -https://www.oceanexpert.org/expert/38306 -https://www.oceanexpert.org/expert/32345 -https://www.oceanexpert.org/institution/18600 -https://www.oceanexpert.org/expert/42824 -https://www.oceanexpert.org/expert/34665 -https://www.oceanexpert.org/expert/36701 -https://www.oceanexpert.org/expert/29238 -https://www.oceanexpert.org/institution/21935 -https://www.oceanexpert.org/expert/16860 -https://www.oceanexpert.org/event/2636 -https://www.oceanexpert.org/expert/34463 -https://www.oceanexpert.org/expert/34880 -https://www.oceanexpert.org/expert/6909 -https://www.oceanexpert.org/expert/27435 -https://www.oceanexpert.org/expert/34057 -https://www.oceanexpert.org/expert/30810 -https://www.oceanexpert.org/expert/15845 -https://www.oceanexpert.org/expert/23592 -https://www.oceanexpert.org/institution/20127 -https://www.oceanexpert.org/expert/47488 -https://www.oceanexpert.org/expert/30636 -https://www.oceanexpert.org/expert/11057 -https://www.oceanexpert.org/institution/17904 -https://www.oceanexpert.org/expert/1783 -https://www.oceanexpert.org/institution/8669 -https://www.oceanexpert.org/expert/20496 -https://www.oceanexpert.org/expert/47347 -https://www.oceanexpert.org/expert/36517 -https://www.oceanexpert.org/expert/26477 -https://www.oceanexpert.org/expert/20446 -https://www.oceanexpert.org/expert/35625 -https://www.oceanexpert.org/institution/19558 -https://www.oceanexpert.org/expert/21070 -https://www.oceanexpert.org/institution/22024 -https://www.oceanexpert.org/expert/21670 -https://www.oceanexpert.org/expert/4086 -https://www.oceanexpert.org/institution/21326 -https://www.oceanexpert.org/institution/16150 -https://www.oceanexpert.org/expert/40656 -https://www.oceanexpert.org/expert/36881 -https://www.oceanexpert.org/institution/5387 -https://www.oceanexpert.org/event/2975 -https://www.oceanexpert.org/expert/4540 -https://www.oceanexpert.org/institution/21621 -https://www.oceanexpert.org/expert/12886 -https://www.oceanexpert.org/expert/20026 -https://www.oceanexpert.org/institution/22042 -https://www.oceanexpert.org/expert/19411 -https://www.oceanexpert.org/expert/20139 -https://www.oceanexpert.org/institution/12121 -https://www.oceanexpert.org/expert/24082 -https://www.oceanexpert.org/expert/25598 -https://www.oceanexpert.org/institution/12552 -https://www.oceanexpert.org/expert/4191 -https://www.oceanexpert.org/expert/37217 -https://www.oceanexpert.org/institution/20398 -https://www.oceanexpert.org/expert/38872 -https://www.oceanexpert.org/expert/38461 -https://www.oceanexpert.org/expert/20016 -https://www.oceanexpert.org/event/52 -https://www.oceanexpert.org/expert/16868 -https://www.oceanexpert.org/institution/19434 -https://www.oceanexpert.org/expert/20869 -https://www.oceanexpert.org/expert/16788 -https://www.oceanexpert.org/expert/43957 -https://www.oceanexpert.org/expert/37574 -https://www.oceanexpert.org/expert/32110 -https://www.oceanexpert.org/expert/13224 -https://www.oceanexpert.org/expert/33522 -https://www.oceanexpert.org/expert/42217 -https://www.oceanexpert.org/institution/12870 -https://www.oceanexpert.org/expert/46122 -https://www.oceanexpert.org/event/1579 -https://www.oceanexpert.org/event/489 -https://www.oceanexpert.org/expert/16874 -https://www.oceanexpert.org/expert/12441 -https://www.oceanexpert.org/expert/47200 -https://www.oceanexpert.org/expert/45747 -https://www.oceanexpert.org/expert/29341 -https://www.oceanexpert.org/expert/19435 -https://www.oceanexpert.org/expert/27290 -https://www.oceanexpert.org/expert/12235 -https://www.oceanexpert.org/expert/310 -https://www.oceanexpert.org/expert/30884 -https://www.oceanexpert.org/expert/19003 -https://www.oceanexpert.org/institution/19663 -https://www.oceanexpert.org/event/536 -https://www.oceanexpert.org/institution/15363 -https://www.oceanexpert.org/institution/21537 -https://www.oceanexpert.org/expert/35793 -https://www.oceanexpert.org/expert/34396 -https://www.oceanexpert.org/expert/29175 -https://www.oceanexpert.org/expert/43280 -https://www.oceanexpert.org/event/1115 -https://www.oceanexpert.org/institution/20578 -https://www.oceanexpert.org/expert/11287 -https://www.oceanexpert.org/expert/47821 -https://www.oceanexpert.org/event/152 -https://www.oceanexpert.org/expert/13941 -https://www.oceanexpert.org/institution/6656 -https://www.oceanexpert.org/expert/26322 -https://www.oceanexpert.org/expert/45573 -https://www.oceanexpert.org/event/406 -https://www.oceanexpert.org/institution/18471 -https://www.oceanexpert.org/expert/23097 -https://www.oceanexpert.org/expert/21845 -https://www.oceanexpert.org/expert/47003 -https://www.oceanexpert.org/institution/12070 -https://www.oceanexpert.org/expert/48919 -https://www.oceanexpert.org/expert/36275 -https://www.oceanexpert.org/institution/16737 -https://www.oceanexpert.org/expert/2541 -https://www.oceanexpert.org/expert/26671 -https://www.oceanexpert.org/expert/36198 -https://www.oceanexpert.org/expert/17467 -https://www.oceanexpert.org/expert/32564 -https://www.oceanexpert.org/expert/36984 -https://www.oceanexpert.org/institution/20725 -https://www.oceanexpert.org/expert/8843 -https://www.oceanexpert.org/institution/22086 -https://www.oceanexpert.org/expert/27471 -https://www.oceanexpert.org/event/2727 -https://www.oceanexpert.org/institution/15533 -https://www.oceanexpert.org/expert/21073 -https://www.oceanexpert.org/expert/39791 -https://www.oceanexpert.org/expert/47713 -https://www.oceanexpert.org/expert/35737 -https://www.oceanexpert.org/expert/23360 -https://www.oceanexpert.org/institution/21327 -https://www.oceanexpert.org/expert/43118 -https://www.oceanexpert.org/institution/12932 -https://www.oceanexpert.org/expert/21183 -https://www.oceanexpert.org/expert/23936 -https://www.oceanexpert.org/event/65 -https://www.oceanexpert.org/expert/2487 -https://www.oceanexpert.org/institution/18952 -https://www.oceanexpert.org/event/476 -https://www.oceanexpert.org/event/1513 -https://www.oceanexpert.org/institution/7958 -https://www.oceanexpert.org/expert/33877 -https://www.oceanexpert.org/event/1817 -https://www.oceanexpert.org/expert/48097 -https://www.oceanexpert.org/expert/22372 -https://www.oceanexpert.org/expert/40204 -https://www.oceanexpert.org/expert/27451 -https://www.oceanexpert.org/institution/9214 -https://www.oceanexpert.org/institution/19143 -https://www.oceanexpert.org/institution/15731 -https://www.oceanexpert.org/institution/22161 -https://www.oceanexpert.org/institution/20408 -https://www.oceanexpert.org/event/491 -https://www.oceanexpert.org/expert/7203 -https://www.oceanexpert.org/expert/33285 -https://www.oceanexpert.org/institution/19571 -https://www.oceanexpert.org/event/789 -https://www.oceanexpert.org/event/257 -https://www.oceanexpert.org/institution/20081 -https://www.oceanexpert.org/institution/10138 -https://www.oceanexpert.org/expert/39868 -https://www.oceanexpert.org/expert/8887 -https://www.oceanexpert.org/institution/17825 -https://www.oceanexpert.org/institution/21473 -https://www.oceanexpert.org/expert/6510 -https://www.oceanexpert.org/expert/19105 -https://www.oceanexpert.org/expert/16565 -https://www.oceanexpert.org/institution/10765 -https://www.oceanexpert.org/institution/20991 -https://www.oceanexpert.org/expert/23243 -https://www.oceanexpert.org/expert/18897 -https://www.oceanexpert.org/expert/27855 -https://www.oceanexpert.org/expert/13353 -https://www.oceanexpert.org/expert/44746 -https://www.oceanexpert.org/institution/15957 -https://www.oceanexpert.org/expert/33293 -https://www.oceanexpert.org/event/2626 -https://www.oceanexpert.org/event/114 -https://www.oceanexpert.org/expert/25872 -https://www.oceanexpert.org/expert/45790 -https://www.oceanexpert.org/expert/46105 -https://www.oceanexpert.org/institution/21211 -https://www.oceanexpert.org/institution/9267 -https://www.oceanexpert.org/expert/26492 -https://www.oceanexpert.org/expert/31580 -https://www.oceanexpert.org/expert/47518 -https://www.oceanexpert.org/expert/47699 -https://www.oceanexpert.org/expert/41079 -https://www.oceanexpert.org/institution/11919 -https://www.oceanexpert.org/institution/16238 -https://www.oceanexpert.org/expert/46178 -https://www.oceanexpert.org/expert/29681 -https://www.oceanexpert.org/institution/21734 -https://www.oceanexpert.org/event/953 -https://www.oceanexpert.org/expert/29533 -https://www.oceanexpert.org/institution/20998 -https://www.oceanexpert.org/institution/20888 -https://www.oceanexpert.org/institution/16293 -https://www.oceanexpert.org/expert/41609 -https://www.oceanexpert.org/expert/36848 -https://www.oceanexpert.org/expert/38050 -https://www.oceanexpert.org/expert/37058 -https://www.oceanexpert.org/expert/37501 -https://www.oceanexpert.org/institution/6882 -https://www.oceanexpert.org/expert/19539 -https://www.oceanexpert.org/expert/44203 -https://www.oceanexpert.org/expert/33292 -https://www.oceanexpert.org/institution/21569 -https://www.oceanexpert.org/institution/19213 -https://www.oceanexpert.org/expert/21135 -https://www.oceanexpert.org/expert/12190 -https://www.oceanexpert.org/event/169 -https://www.oceanexpert.org/institution/12488 -https://www.oceanexpert.org/institution/11277 -https://www.oceanexpert.org/expert/46489 -https://www.oceanexpert.org/institution/12926 -https://www.oceanexpert.org/expert/37472 -https://www.oceanexpert.org/expert/26162 -https://www.oceanexpert.org/expert/42964 -https://www.oceanexpert.org/institution/13959 -https://www.oceanexpert.org/expert/44263 -https://www.oceanexpert.org/institution/16169 -https://www.oceanexpert.org/event/58 -https://www.oceanexpert.org/institution/18826 -https://www.oceanexpert.org/expert/14478 -https://www.oceanexpert.org/expert/38237 -https://www.oceanexpert.org/expert/16908 -https://www.oceanexpert.org/expert/36616 -https://www.oceanexpert.org/expert/36486 -https://www.oceanexpert.org/expert/37808 -https://www.oceanexpert.org/institution/6765 -https://www.oceanexpert.org/event/375 -https://www.oceanexpert.org/institution/20683 -https://www.oceanexpert.org/expert/20775 -https://www.oceanexpert.org/expert/37467 -https://www.oceanexpert.org/institution/16321 -https://www.oceanexpert.org/institution/8011 -https://www.oceanexpert.org/expert/48343 -https://www.oceanexpert.org/expert/26239 -https://www.oceanexpert.org/event/2460 -https://www.oceanexpert.org/expert/24499 -https://www.oceanexpert.org/expert/20269 -https://www.oceanexpert.org/institution/20857 -https://www.oceanexpert.org/institution/21468 -https://www.oceanexpert.org/institution/19415 -https://www.oceanexpert.org/expert/29180 -https://www.oceanexpert.org/institution/21885 -https://www.oceanexpert.org/event/1533 -https://www.oceanexpert.org/expert/19698 -https://www.oceanexpert.org/event/28 -https://www.oceanexpert.org/expert/18512 -https://www.oceanexpert.org/expert/46489 -https://www.oceanexpert.org/expert/15468 -https://www.oceanexpert.org/expert/23644 -https://www.oceanexpert.org/expert/6513 -https://www.oceanexpert.org/expert/37502 -https://www.oceanexpert.org/expert/38579 -https://www.oceanexpert.org/expert/34384 -https://www.oceanexpert.org/expert/39868 -https://www.oceanexpert.org/expert/29586 -https://www.oceanexpert.org/institution/14627 -https://www.oceanexpert.org/institution/19931 -https://www.oceanexpert.org/expert/21449 -https://www.oceanexpert.org/institution/14019 -https://www.oceanexpert.org/expert/17429 -https://www.oceanexpert.org/expert/17093 -https://www.oceanexpert.org/expert/33356 -https://www.oceanexpert.org/institution/21969 -https://www.oceanexpert.org/expert/27702 -https://www.oceanexpert.org/institution/11577 -https://www.oceanexpert.org/expert/43378 -https://www.oceanexpert.org/expert/32777 -https://www.oceanexpert.org/institution/15650 -https://www.oceanexpert.org/institution/21803 -https://www.oceanexpert.org/expert/14443 -https://www.oceanexpert.org/expert/48564 -https://www.oceanexpert.org/institution/18924 -https://www.oceanexpert.org/expert/19258 -https://www.oceanexpert.org/expert/27703 -https://www.oceanexpert.org/expert/46172 -https://www.oceanexpert.org/expert/42912 -https://www.oceanexpert.org/expert/27089 -https://www.oceanexpert.org/expert/23557 -https://www.oceanexpert.org/expert/38063 -https://www.oceanexpert.org/expert/27027 -https://www.oceanexpert.org/institution/12038 -https://www.oceanexpert.org/expert/19742 -https://www.oceanexpert.org/expert/8961 -https://www.oceanexpert.org/event/839 -https://www.oceanexpert.org/expert/46375 -https://www.oceanexpert.org/expert/15418 -https://www.oceanexpert.org/institution/9574 -https://www.oceanexpert.org/institution/16971 -https://www.oceanexpert.org/institution/11532 -https://www.oceanexpert.org/expert/42526 -https://www.oceanexpert.org/expert/36719 -https://www.oceanexpert.org/expert/15513 -https://www.oceanexpert.org/expert/22934 -https://www.oceanexpert.org/expert/26556 -https://www.oceanexpert.org/expert/28042 -https://www.oceanexpert.org/institution/18034 -https://www.oceanexpert.org/institution/14717 -https://www.oceanexpert.org/event/3276 -https://www.oceanexpert.org/expert/44877 -https://www.oceanexpert.org/expert/36409 -https://www.oceanexpert.org/event/2648 -https://www.oceanexpert.org/institution/19440 -https://www.oceanexpert.org/event/1459 -https://www.oceanexpert.org/expert/35241 -https://www.oceanexpert.org/expert/20144 -https://www.oceanexpert.org/institution/13166 -https://www.oceanexpert.org/institution/20416 -https://www.oceanexpert.org/expert/18965 -https://www.oceanexpert.org/institution/19472 -https://www.oceanexpert.org/event/629 -https://www.oceanexpert.org/institution/19411 -https://www.oceanexpert.org/institution/9647 -https://www.oceanexpert.org/expert/1126 -https://www.oceanexpert.org/institution/19142 -https://www.oceanexpert.org/expert/32659 -https://www.oceanexpert.org/expert/34286 -https://www.oceanexpert.org/expert/48031 -https://www.oceanexpert.org/expert/47167 -https://www.oceanexpert.org/institution/16119 -https://www.oceanexpert.org/expert/46220 -https://www.oceanexpert.org/institution/21158 -https://www.oceanexpert.org/expert/27036 -https://www.oceanexpert.org/expert/18469 -https://www.oceanexpert.org/expert/44908 -https://www.oceanexpert.org/expert/23016 -https://www.oceanexpert.org/expert/23418 -https://www.oceanexpert.org/expert/29397 -https://www.oceanexpert.org/expert/37900 -https://www.oceanexpert.org/event/1676 -https://www.oceanexpert.org/expert/12621 -https://www.oceanexpert.org/expert/18639 -https://www.oceanexpert.org/expert/24977 -https://www.oceanexpert.org/expert/27004 -https://www.oceanexpert.org/expert/23992 -https://www.oceanexpert.org/expert/46927 -https://www.oceanexpert.org/institution/18305 -https://www.oceanexpert.org/expert/24091 -https://www.oceanexpert.org/expert/45899 -https://www.oceanexpert.org/institution/20973 -https://www.oceanexpert.org/expert/37005 -https://www.oceanexpert.org/institution/18805 -https://www.oceanexpert.org/expert/24640 -https://www.oceanexpert.org/expert/23303 -https://www.oceanexpert.org/expert/30672 -https://www.oceanexpert.org/expert/37289 -https://www.oceanexpert.org/expert/23330 -https://www.oceanexpert.org/institution/14107 -https://www.oceanexpert.org/expert/48782 -https://www.oceanexpert.org/institution/10168 -https://www.oceanexpert.org/expert/44126 -https://www.oceanexpert.org/expert/20835 -https://www.oceanexpert.org/expert/30661 -https://www.oceanexpert.org/event/1299 -https://www.oceanexpert.org/expert/27472 -https://www.oceanexpert.org/expert/16642 -https://www.oceanexpert.org/institution/8305 -https://www.oceanexpert.org/institution/16386 -https://www.oceanexpert.org/expert/44776 -https://www.oceanexpert.org/expert/19531 -https://www.oceanexpert.org/institution/21723 -https://www.oceanexpert.org/event/749 -https://www.oceanexpert.org/expert/758 -https://www.oceanexpert.org/expert/38430 -https://www.oceanexpert.org/expert/17442 -https://www.oceanexpert.org/institution/19409 -https://www.oceanexpert.org/event/3053 -https://www.oceanexpert.org/expert/280 -https://www.oceanexpert.org/expert/42638 -https://www.oceanexpert.org/expert/7265 -https://www.oceanexpert.org/expert/26686 -https://www.oceanexpert.org/expert/26208 -https://www.oceanexpert.org/expert/35799 -https://www.oceanexpert.org/expert/33410 -https://www.oceanexpert.org/expert/21067 -https://www.oceanexpert.org/expert/46376 -https://www.oceanexpert.org/expert/21294 -https://www.oceanexpert.org/expert/22300 -https://www.oceanexpert.org/expert/20397 -https://www.oceanexpert.org/expert/44144 -https://www.oceanexpert.org/expert/27181 -https://www.oceanexpert.org/expert/45594 -https://www.oceanexpert.org/expert/36893 -https://www.oceanexpert.org/expert/26849 -https://www.oceanexpert.org/expert/36373 -https://www.oceanexpert.org/expert/18758 -https://www.oceanexpert.org/expert/11286 -https://www.oceanexpert.org/expert/47942 -https://www.oceanexpert.org/expert/15565 -https://www.oceanexpert.org/expert/20190 -https://www.oceanexpert.org/expert/32241 -https://www.oceanexpert.org/expert/16120 -https://www.oceanexpert.org/institution/19306 -https://www.oceanexpert.org/institution/17933 -https://www.oceanexpert.org/expert/16364 -https://www.oceanexpert.org/expert/47246 -https://www.oceanexpert.org/expert/13178 -https://www.oceanexpert.org/expert/36746 -https://www.oceanexpert.org/expert/17277 -https://www.oceanexpert.org/expert/20529 -https://www.oceanexpert.org/institution/20680 -https://www.oceanexpert.org/institution/13269 -https://www.oceanexpert.org/expert/18784 -https://www.oceanexpert.org/institution/19023 -https://www.oceanexpert.org/event/2398 -https://www.oceanexpert.org/institution/12139 -https://www.oceanexpert.org/expert/47247 -https://www.oceanexpert.org/institution/21093 -https://www.oceanexpert.org/expert/18199 -https://www.oceanexpert.org/institution/15876 -https://www.oceanexpert.org/expert/22575 -https://www.oceanexpert.org/expert/36556 -https://www.oceanexpert.org/expert/36801 -https://www.oceanexpert.org/expert/29365 -https://www.oceanexpert.org/institution/12687 -https://www.oceanexpert.org/expert/48830 -https://www.oceanexpert.org/institution/20112 -https://www.oceanexpert.org/expert/42905 -https://www.oceanexpert.org/expert/43583 -https://www.oceanexpert.org/institution/16168 -https://www.oceanexpert.org/event/2509 -https://www.oceanexpert.org/event/2968 -https://www.oceanexpert.org/expert/19124 -https://www.oceanexpert.org/expert/30782 -https://www.oceanexpert.org/expert/43857 -https://www.oceanexpert.org/institution/17763 -https://www.oceanexpert.org/institution/13822 -https://www.oceanexpert.org/expert/43807 -https://www.oceanexpert.org/expert/6831 -https://www.oceanexpert.org/expert/35369 -https://www.oceanexpert.org/institution/18350 -https://www.oceanexpert.org/expert/18714 -https://www.oceanexpert.org/expert/35677 -https://www.oceanexpert.org/expert/29727 -https://www.oceanexpert.org/institution/8770 -https://www.oceanexpert.org/expert/20495 -https://www.oceanexpert.org/expert/24222 -https://www.oceanexpert.org/expert/37663 -https://www.oceanexpert.org/expert/44721 -https://www.oceanexpert.org/expert/25912 -https://www.oceanexpert.org/expert/24321 -https://www.oceanexpert.org/institution/21066 -https://www.oceanexpert.org/expert/24157 -https://www.oceanexpert.org/expert/39827 -https://www.oceanexpert.org/expert/11013 -https://www.oceanexpert.org/expert/35670 -https://www.oceanexpert.org/expert/37683 -https://www.oceanexpert.org/event/793 -https://www.oceanexpert.org/expert/31692 -https://www.oceanexpert.org/expert/25095 -https://www.oceanexpert.org/institution/19744 -https://www.oceanexpert.org/expert/4270 -https://www.oceanexpert.org/expert/43019 -https://www.oceanexpert.org/expert/30534 -https://www.oceanexpert.org/event/3100 -https://www.oceanexpert.org/expert/26625 -https://www.oceanexpert.org/institution/19430 -https://www.oceanexpert.org/institution/21752 -https://www.oceanexpert.org/expert/44735 -https://www.oceanexpert.org/expert/6504 -https://www.oceanexpert.org/event/2959 -https://www.oceanexpert.org/institution/19144 -https://www.oceanexpert.org/expert/31530 -https://www.oceanexpert.org/expert/47425 -https://www.oceanexpert.org/expert/47079 -https://www.oceanexpert.org/institution/18997 -https://www.oceanexpert.org/expert/12254 -https://www.oceanexpert.org/event/3195 -https://www.oceanexpert.org/institution/18791 -https://www.oceanexpert.org/expert/12256 -https://www.oceanexpert.org/expert/19466 -https://www.oceanexpert.org/event/3158 -https://www.oceanexpert.org/expert/48242 -https://www.oceanexpert.org/expert/20248 -https://www.oceanexpert.org/expert/13382 -https://www.oceanexpert.org/institution/13166 -https://www.oceanexpert.org/expert/26557 -https://www.oceanexpert.org/institution/6581 -https://www.oceanexpert.org/institution/20053 -https://www.oceanexpert.org/institution/12298 -https://www.oceanexpert.org/expert/15042 -https://www.oceanexpert.org/event/1813 -https://www.oceanexpert.org/expert/48697 -https://www.oceanexpert.org/institution/21659 -https://www.oceanexpert.org/event/2698 -https://www.oceanexpert.org/event/1725 -https://www.oceanexpert.org/institution/11146 -https://www.oceanexpert.org/expert/23408 -https://www.oceanexpert.org/event/1673 -https://www.oceanexpert.org/expert/23288 -https://www.oceanexpert.org/expert/1057 -https://www.oceanexpert.org/expert/25802 -https://www.oceanexpert.org/institution/18052 -https://www.oceanexpert.org/expert/35698 -https://www.oceanexpert.org/expert/23601 -https://www.oceanexpert.org/institution/21652 -https://www.oceanexpert.org/institution/5899 -https://www.oceanexpert.org/expert/21620 -https://www.oceanexpert.org/institution/13234 -https://www.oceanexpert.org/expert/45337 -https://www.oceanexpert.org/expert/9580 -https://www.oceanexpert.org/expert/47440 -https://www.oceanexpert.org/event/2241 -https://www.oceanexpert.org/expert/33187 -https://www.oceanexpert.org/expert/45484 -https://www.oceanexpert.org/expert/33163 -https://www.oceanexpert.org/expert/42492 -https://www.oceanexpert.org/expert/39720 -https://www.oceanexpert.org/expert/36273 -https://www.oceanexpert.org/institution/6080 -https://www.oceanexpert.org/institution/21994 -https://www.oceanexpert.org/institution/18832 -https://www.oceanexpert.org/event/1160 -https://www.oceanexpert.org/expert/23464 -https://www.oceanexpert.org/institution/17091 -https://www.oceanexpert.org/institution/19942 -https://www.oceanexpert.org/institution/14574 -https://www.oceanexpert.org/expert/36585 -https://www.oceanexpert.org/expert/40625 -https://www.oceanexpert.org/expert/29666 -https://www.oceanexpert.org/expert/18799 -https://www.oceanexpert.org/expert/20611 -https://www.oceanexpert.org/expert/39549 -https://www.oceanexpert.org/expert/35836 -https://www.oceanexpert.org/expert/6376 -https://www.oceanexpert.org/expert/25304 -https://www.oceanexpert.org/institution/18757 -https://www.oceanexpert.org/expert/42846 -https://www.oceanexpert.org/expert/43163 -https://www.oceanexpert.org/expert/34396 -https://www.oceanexpert.org/expert/20136 -https://www.oceanexpert.org/expert/46907 -https://www.oceanexpert.org/expert/34587 -https://www.oceanexpert.org/expert/47329 -https://www.oceanexpert.org/expert/35669 -https://www.oceanexpert.org/expert/22465 -https://www.oceanexpert.org/expert/32189 -https://www.oceanexpert.org/expert/18805 -https://www.oceanexpert.org/expert/43760 -https://www.oceanexpert.org/event/3258 -https://www.oceanexpert.org/expert/27157 -https://www.oceanexpert.org/institution/17111 -https://www.oceanexpert.org/institution/15507 -https://www.oceanexpert.org/institution/9478 -https://www.oceanexpert.org/expert/43466 -https://www.oceanexpert.org/expert/4204 -https://www.oceanexpert.org/expert/28086 -https://www.oceanexpert.org/expert/48626 -https://www.oceanexpert.org/event/2933 -https://www.oceanexpert.org/expert/45112 -https://www.oceanexpert.org/expert/23599 -https://www.oceanexpert.org/expert/20781 -https://www.oceanexpert.org/expert/46717 -https://www.oceanexpert.org/expert/34213 -https://www.oceanexpert.org/event/1798 -https://www.oceanexpert.org/expert/22466 -https://www.oceanexpert.org/expert/48824 -https://www.oceanexpert.org/expert/48806 -https://www.oceanexpert.org/expert/20238 -https://www.oceanexpert.org/expert/24543 -https://www.oceanexpert.org/institution/13703 -https://www.oceanexpert.org/expert/21357 -https://www.oceanexpert.org/event/3174 -https://www.oceanexpert.org/expert/6997 -https://www.oceanexpert.org/expert/40288 -https://www.oceanexpert.org/expert/25616 -https://www.oceanexpert.org/event/1726 -https://www.oceanexpert.org/institution/6860 -https://www.oceanexpert.org/expert/3868 -https://www.oceanexpert.org/expert/43062 -https://www.oceanexpert.org/institution/17967 -https://www.oceanexpert.org/expert/34915 -https://www.oceanexpert.org/event/1978 -https://www.oceanexpert.org/institution/19627 -https://www.oceanexpert.org/expert/23445 -https://www.oceanexpert.org/event/2774 -https://www.oceanexpert.org/institution/19519 -https://www.oceanexpert.org/expert/36819 -https://www.oceanexpert.org/institution/6799 -https://www.oceanexpert.org/expert/992 -https://www.oceanexpert.org/institution/16205 -https://www.oceanexpert.org/expert/43574 -https://www.oceanexpert.org/expert/25274 -https://www.oceanexpert.org/institution/21214 -https://www.oceanexpert.org/expert/35221 -https://www.oceanexpert.org/institution/18847 -https://www.oceanexpert.org/institution/18534 -https://www.oceanexpert.org/expert/45611 -https://www.oceanexpert.org/expert/32892 -https://www.oceanexpert.org/expert/45747 -https://www.oceanexpert.org/institution/14254 -https://www.oceanexpert.org/expert/43066 -https://www.oceanexpert.org/expert/47769 -https://www.oceanexpert.org/event/3008 -https://www.oceanexpert.org/expert/36327 -https://www.oceanexpert.org/expert/36565 -https://www.oceanexpert.org/expert/28420 -https://www.oceanexpert.org/expert/31924 -https://www.oceanexpert.org/expert/37352 -https://www.oceanexpert.org/institution/10611 -https://www.oceanexpert.org/expert/19406 -https://www.oceanexpert.org/institution/15069 -https://www.oceanexpert.org/institution/19674 -https://www.oceanexpert.org/institution/19294 -https://www.oceanexpert.org/expert/45662 -https://www.oceanexpert.org/institution/19042 -https://www.oceanexpert.org/event/709 -https://www.oceanexpert.org/event/2112 -https://www.oceanexpert.org/expert/23506 -https://www.oceanexpert.org/expert/24010 -https://www.oceanexpert.org/institution/19232 -https://www.oceanexpert.org/expert/36709 -https://www.oceanexpert.org/expert/20627 -https://www.oceanexpert.org/expert/26466 -https://www.oceanexpert.org/institution/11614 -https://www.oceanexpert.org/expert/24326 -https://www.oceanexpert.org/expert/44367 -https://www.oceanexpert.org/expert/16962 -https://www.oceanexpert.org/institution/13164 -https://www.oceanexpert.org/expert/17831 -https://www.oceanexpert.org/institution/5893 -https://www.oceanexpert.org/institution/18292 -https://www.oceanexpert.org/expert/2108 -https://www.oceanexpert.org/institution/21591 -https://www.oceanexpert.org/expert/19933 -https://www.oceanexpert.org/expert/42670 -https://www.oceanexpert.org/expert/47247 -https://www.oceanexpert.org/expert/31051 -https://www.oceanexpert.org/expert/47727 -https://www.oceanexpert.org/expert/18057 -https://www.oceanexpert.org/expert/36611 -https://www.oceanexpert.org/expert/33912 -https://www.oceanexpert.org/expert/4864 -https://www.oceanexpert.org/expert/24162 -https://www.oceanexpert.org/expert/23602 -https://www.oceanexpert.org/expert/23451 -https://www.oceanexpert.org/expert/31503 -https://www.oceanexpert.org/expert/24253 -https://www.oceanexpert.org/expert/21139 -https://www.oceanexpert.org/event/179 -https://www.oceanexpert.org/expert/18197 -https://www.oceanexpert.org/institution/18026 -https://www.oceanexpert.org/institution/21362 -https://www.oceanexpert.org/institution/20028 -https://www.oceanexpert.org/institution/7287 -https://www.oceanexpert.org/expert/21846 -https://www.oceanexpert.org/expert/39820 -https://www.oceanexpert.org/event/2599 -https://www.oceanexpert.org/expert/21909 -https://www.oceanexpert.org/expert/19013 -https://www.oceanexpert.org/expert/27726 -https://www.oceanexpert.org/expert/21088 -https://www.oceanexpert.org/expert/25250 -https://www.oceanexpert.org/institution/19956 -https://www.oceanexpert.org/expert/39050 -https://www.oceanexpert.org/institution/21840 -https://www.oceanexpert.org/expert/44855 -https://www.oceanexpert.org/expert/47254 -https://www.oceanexpert.org/institution/12102 -https://www.oceanexpert.org/expert/23917 -https://www.oceanexpert.org/expert/47482 -https://www.oceanexpert.org/expert/37509 -https://www.oceanexpert.org/expert/47674 -https://www.oceanexpert.org/expert/3860 -https://www.oceanexpert.org/expert/31003 -https://www.oceanexpert.org/expert/2129 -https://www.oceanexpert.org/expert/36722 -https://www.oceanexpert.org/expert/29727 -https://www.oceanexpert.org/event/2112 -https://www.oceanexpert.org/expert/44959 -https://www.oceanexpert.org/expert/18382 -https://www.oceanexpert.org/institution/18542 -https://www.oceanexpert.org/event/939 -https://www.oceanexpert.org/institution/6194 -https://www.oceanexpert.org/institution/20153 -https://www.oceanexpert.org/expert/42610 -https://www.oceanexpert.org/expert/30447 -https://www.oceanexpert.org/institution/20014 -https://www.oceanexpert.org/event/991 -https://www.oceanexpert.org/event/221 -https://www.oceanexpert.org/event/517 -https://www.oceanexpert.org/institution/5883 -https://www.oceanexpert.org/expert/36022 -https://www.oceanexpert.org/institution/18341 -https://www.oceanexpert.org/institution/7131 -https://www.oceanexpert.org/expert/47326 -https://www.oceanexpert.org/expert/35741 -https://www.oceanexpert.org/expert/30171 -https://www.oceanexpert.org/expert/45923 -https://www.oceanexpert.org/expert/45236 -https://www.oceanexpert.org/expert/23795 -https://www.oceanexpert.org/expert/43437 -https://www.oceanexpert.org/expert/35855 -https://www.oceanexpert.org/expert/46351 -https://www.oceanexpert.org/institution/19080 -https://www.oceanexpert.org/expert/24109 -https://www.oceanexpert.org/expert/21893 -https://www.oceanexpert.org/expert/17841 -https://www.oceanexpert.org/expert/24812 -https://www.oceanexpert.org/expert/47733 -https://www.oceanexpert.org/expert/17302 -https://www.oceanexpert.org/expert/45814 -https://www.oceanexpert.org/expert/36853 -https://www.oceanexpert.org/institution/8616 -https://www.oceanexpert.org/expert/43766 -https://www.oceanexpert.org/institution/21523 -https://www.oceanexpert.org/expert/13504 -https://www.oceanexpert.org/event/2736 -https://www.oceanexpert.org/institution/11143 -https://www.oceanexpert.org/expert/13813 -https://www.oceanexpert.org/institution/18443 -https://www.oceanexpert.org/expert/31163 -https://www.oceanexpert.org/expert/13495 -https://www.oceanexpert.org/expert/48074 -https://www.oceanexpert.org/expert/35830 -https://www.oceanexpert.org/expert/28788 -https://www.oceanexpert.org/expert/22428 -https://www.oceanexpert.org/expert/37441 -https://www.oceanexpert.org/expert/36291 -https://www.oceanexpert.org/expert/37264 -https://www.oceanexpert.org/expert/46685 -https://www.oceanexpert.org/expert/29183 -https://www.oceanexpert.org/expert/42856 -https://www.oceanexpert.org/event/999 -https://www.oceanexpert.org/expert/18520 -https://www.oceanexpert.org/expert/48809 -https://www.oceanexpert.org/event/2345 -https://www.oceanexpert.org/event/2959 -https://www.oceanexpert.org/expert/39006 -https://www.oceanexpert.org/expert/21037 -https://www.oceanexpert.org/institution/19315 -https://www.oceanexpert.org/institution/21945 -https://www.oceanexpert.org/expert/4220 -https://www.oceanexpert.org/institution/20907 -https://www.oceanexpert.org/expert/24338 -https://www.oceanexpert.org/expert/36972 -https://www.oceanexpert.org/institution/21095 -https://www.oceanexpert.org/expert/19862 -https://www.oceanexpert.org/institution/12912 -https://www.oceanexpert.org/expert/35415 -https://www.oceanexpert.org/institution/17365 -https://www.oceanexpert.org/institution/10889 -https://www.oceanexpert.org/expert/36429 -https://www.oceanexpert.org/institution/19866 -https://www.oceanexpert.org/event/1814 -https://www.oceanexpert.org/expert/47703 -https://www.oceanexpert.org/institution/17475 -https://www.oceanexpert.org/expert/406 -https://www.oceanexpert.org/institution/21501 -https://www.oceanexpert.org/institution/21882 -https://www.oceanexpert.org/expert/45059 -https://www.oceanexpert.org/expert/35853 -https://www.oceanexpert.org/institution/8715 -https://www.oceanexpert.org/expert/46226 -https://www.oceanexpert.org/expert/30149 -https://www.oceanexpert.org/event/381 -https://www.oceanexpert.org/expert/37000 -https://www.oceanexpert.org/institution/18948 -https://www.oceanexpert.org/institution/14159 -https://www.oceanexpert.org/institution/11196 -https://www.oceanexpert.org/expert/40122 -https://www.oceanexpert.org/expert/32175 -https://www.oceanexpert.org/expert/35992 -https://www.oceanexpert.org/expert/27003 -https://www.oceanexpert.org/expert/41153 -https://www.oceanexpert.org/expert/48140 -https://www.oceanexpert.org/expert/35390 -https://www.oceanexpert.org/expert/21287 -https://www.oceanexpert.org/expert/17848 -https://www.oceanexpert.org/expert/21684 -https://www.oceanexpert.org/expert/35242 -https://www.oceanexpert.org/institution/5433 -https://www.oceanexpert.org/expert/36625 -https://www.oceanexpert.org/institution/21441 -https://www.oceanexpert.org/expert/37780 -https://www.oceanexpert.org/expert/33579 -https://www.oceanexpert.org/expert/34993 -https://www.oceanexpert.org/event/1944 -https://www.oceanexpert.org/expert/33815 -https://www.oceanexpert.org/expert/19198 -https://www.oceanexpert.org/expert/20322 -https://www.oceanexpert.org/expert/29835 -https://www.oceanexpert.org/expert/33522 -https://www.oceanexpert.org/expert/31984 -https://www.oceanexpert.org/event/2683 -https://www.oceanexpert.org/institution/18189 -https://www.oceanexpert.org/institution/10998 -https://www.oceanexpert.org/institution/13948 -https://www.oceanexpert.org/institution/19114 -https://www.oceanexpert.org/expert/24529 -https://www.oceanexpert.org/institution/18628 -https://www.oceanexpert.org/institution/12436 -https://www.oceanexpert.org/expert/18324 -https://www.oceanexpert.org/expert/36156 -https://www.oceanexpert.org/institution/21608 -https://www.oceanexpert.org/expert/45820 -https://www.oceanexpert.org/expert/21781 -https://www.oceanexpert.org/institution/21061 -https://www.oceanexpert.org/expert/45060 -https://www.oceanexpert.org/expert/45323 -https://www.oceanexpert.org/expert/25532 -https://www.oceanexpert.org/expert/26895 -https://www.oceanexpert.org/institution/5206 -https://www.oceanexpert.org/event/1319 -https://www.oceanexpert.org/institution/10396 -https://www.oceanexpert.org/expert/34338 -https://www.oceanexpert.org/institution/7723 -https://www.oceanexpert.org/expert/34634 -https://www.oceanexpert.org/institution/21014 -https://www.oceanexpert.org/expert/2982 -https://www.oceanexpert.org/expert/21780 -https://www.oceanexpert.org/expert/48626 -https://www.oceanexpert.org/institution/4899 -https://www.oceanexpert.org/expert/26723 -https://www.oceanexpert.org/event/1394 -https://www.oceanexpert.org/event/1869 -https://www.oceanexpert.org/event/510 -https://www.oceanexpert.org/institution/18179 -https://www.oceanexpert.org/expert/22993 -https://www.oceanexpert.org/institution/19394 -https://www.oceanexpert.org/event/194 -https://www.oceanexpert.org/expert/35802 -https://www.oceanexpert.org/expert/45447 -https://www.oceanexpert.org/expert/37338 -https://www.oceanexpert.org/expert/43918 -https://www.oceanexpert.org/expert/35046 -https://www.oceanexpert.org/expert/36550 -https://www.oceanexpert.org/expert/19603 -https://www.oceanexpert.org/expert/29576 -https://www.oceanexpert.org/expert/27360 -https://www.oceanexpert.org/expert/27784 -https://www.oceanexpert.org/expert/21805 -https://www.oceanexpert.org/event/1815 -https://www.oceanexpert.org/expert/27229 -https://www.oceanexpert.org/expert/11287 -https://www.oceanexpert.org/expert/11544 -https://www.oceanexpert.org/expert/35740 -https://www.oceanexpert.org/institution/16292 -https://www.oceanexpert.org/institution/22006 -https://www.oceanexpert.org/institution/19742 -https://www.oceanexpert.org/expert/46602 -https://www.oceanexpert.org/expert/45533 -https://www.oceanexpert.org/expert/44331 -https://www.oceanexpert.org/event/1823 -https://www.oceanexpert.org/expert/46111 -https://www.oceanexpert.org/institution/20391 -https://www.oceanexpert.org/expert/39163 -https://www.oceanexpert.org/expert/44894 -https://www.oceanexpert.org/institution/22149 -https://www.oceanexpert.org/expert/48917 -https://www.oceanexpert.org/expert/42749 -https://www.oceanexpert.org/expert/2090 -https://www.oceanexpert.org/event/67 -https://www.oceanexpert.org/expert/25050 -https://www.oceanexpert.org/institution/6749 -https://www.oceanexpert.org/expert/38079 -https://www.oceanexpert.org/expert/27092 -https://www.oceanexpert.org/institution/9738 -https://www.oceanexpert.org/institution/5553 -https://www.oceanexpert.org/institution/12633 -https://www.oceanexpert.org/expert/37682 -https://www.oceanexpert.org/expert/45784 -https://www.oceanexpert.org/expert/43264 -https://www.oceanexpert.org/expert/30665 -https://www.oceanexpert.org/expert/30253 -https://www.oceanexpert.org/expert/31063 -https://www.oceanexpert.org/event/1492 -https://www.oceanexpert.org/expert/25934 -https://www.oceanexpert.org/institution/19060 -https://www.oceanexpert.org/expert/25769 -https://www.oceanexpert.org/expert/29948 -https://www.oceanexpert.org/expert/20184 -https://www.oceanexpert.org/institution/20832 -https://www.oceanexpert.org/expert/28313 -https://www.oceanexpert.org/institution/21436 -https://www.oceanexpert.org/institution/18185 -https://www.oceanexpert.org/expert/1002 -https://www.oceanexpert.org/institution/13918 -https://www.oceanexpert.org/expert/18927 -https://www.oceanexpert.org/expert/37162 -https://www.oceanexpert.org/expert/17585 -https://www.oceanexpert.org/expert/43382 -https://www.oceanexpert.org/event/2234 -https://www.oceanexpert.org/expert/21248 -https://www.oceanexpert.org/expert/40262 -https://www.oceanexpert.org/expert/33804 -https://www.oceanexpert.org/expert/21109 -https://www.oceanexpert.org/expert/5064 -https://www.oceanexpert.org/expert/27054 -https://www.oceanexpert.org/expert/15005 -https://www.oceanexpert.org/institution/21947 -https://www.oceanexpert.org/institution/20574 -https://www.oceanexpert.org/event/2212 -https://www.oceanexpert.org/expert/31942 -https://www.oceanexpert.org/expert/17572 -https://www.oceanexpert.org/expert/21539 -https://www.oceanexpert.org/expert/34340 -https://www.oceanexpert.org/expert/34422 -https://www.oceanexpert.org/event/2437 -https://www.oceanexpert.org/institution/19845 -https://www.oceanexpert.org/expert/48317 -https://www.oceanexpert.org/institution/11768 -https://www.oceanexpert.org/expert/26721 -https://www.oceanexpert.org/expert/27617 -https://www.oceanexpert.org/expert/14992 -https://www.oceanexpert.org/expert/21950 -https://www.oceanexpert.org/institution/18748 -https://www.oceanexpert.org/expert/26276 -https://www.oceanexpert.org/expert/17786 -https://www.oceanexpert.org/expert/21725 -https://www.oceanexpert.org/expert/12258 -https://www.oceanexpert.org/expert/27175 -https://www.oceanexpert.org/expert/32347 -https://www.oceanexpert.org/expert/20616 -https://www.oceanexpert.org/expert/36349 -https://www.oceanexpert.org/expert/23051 -https://www.oceanexpert.org/expert/8102 -https://www.oceanexpert.org/expert/44759 -https://www.oceanexpert.org/expert/45663 -https://www.oceanexpert.org/institution/21822 -https://www.oceanexpert.org/expert/4628 -https://www.oceanexpert.org/institution/10326 -https://www.oceanexpert.org/expert/24996 -https://www.oceanexpert.org/institution/21758 -https://www.oceanexpert.org/expert/36132 -https://www.oceanexpert.org/institution/7775 -https://www.oceanexpert.org/institution/21000 -https://www.oceanexpert.org/expert/15028 -https://www.oceanexpert.org/institution/12438 -https://www.oceanexpert.org/expert/47182 -https://www.oceanexpert.org/expert/189 -https://www.oceanexpert.org/expert/38270 -https://www.oceanexpert.org/institution/21378 -https://www.oceanexpert.org/event/448 -https://www.oceanexpert.org/expert/38181 -https://www.oceanexpert.org/expert/28149 -https://www.oceanexpert.org/expert/31076 -https://www.oceanexpert.org/expert/27313 -https://www.oceanexpert.org/event/2322 -https://www.oceanexpert.org/expert/14611 -https://www.oceanexpert.org/institution/19723 -https://www.oceanexpert.org/expert/10849 -https://www.oceanexpert.org/expert/45879 -https://www.oceanexpert.org/expert/26436 -https://www.oceanexpert.org/institution/5235 -https://www.oceanexpert.org/institution/11456 -https://www.oceanexpert.org/institution/17413 -https://www.oceanexpert.org/institution/19408 -https://www.oceanexpert.org/expert/26700 -https://www.oceanexpert.org/institution/12618 -https://www.oceanexpert.org/expert/46817 -https://www.oceanexpert.org/expert/2061 -https://www.oceanexpert.org/expert/18874 -https://www.oceanexpert.org/expert/16721 -https://www.oceanexpert.org/expert/16080 -https://www.oceanexpert.org/institution/15759 -https://www.oceanexpert.org/expert/14570 -https://www.oceanexpert.org/institution/12369 -https://www.oceanexpert.org/expert/25035 -https://www.oceanexpert.org/expert/37040 -https://www.oceanexpert.org/expert/44555 -https://www.oceanexpert.org/event/2566 -https://www.oceanexpert.org/expert/40553 -https://www.oceanexpert.org/institution/12340 -https://www.oceanexpert.org/expert/25278 -https://www.oceanexpert.org/institution/20793 -https://www.oceanexpert.org/event/1348 -https://www.oceanexpert.org/expert/29823 -https://www.oceanexpert.org/expert/33767 -https://www.oceanexpert.org/expert/21711 -https://www.oceanexpert.org/expert/19373 -https://www.oceanexpert.org/expert/35055 -https://www.oceanexpert.org/institution/16376 -https://www.oceanexpert.org/expert/15034 -https://www.oceanexpert.org/event/1619 -https://www.oceanexpert.org/event/1629 -https://www.oceanexpert.org/expert/30726 -https://www.oceanexpert.org/institution/20281 -https://www.oceanexpert.org/expert/45763 -https://www.oceanexpert.org/expert/28973 -https://www.oceanexpert.org/institution/13917 -https://www.oceanexpert.org/expert/22651 -https://www.oceanexpert.org/expert/37546 -https://www.oceanexpert.org/expert/29200 -https://www.oceanexpert.org/event/1083 -https://www.oceanexpert.org/expert/48023 -https://www.oceanexpert.org/expert/14931 -https://www.oceanexpert.org/expert/47301 -https://www.oceanexpert.org/institution/8305 -https://www.oceanexpert.org/institution/7510 -https://www.oceanexpert.org/institution/20925 -https://www.oceanexpert.org/institution/19029 -https://www.oceanexpert.org/event/210 -https://www.oceanexpert.org/expert/12846 -https://www.oceanexpert.org/expert/26354 -https://www.oceanexpert.org/institution/12534 -https://www.oceanexpert.org/expert/12111 -https://www.oceanexpert.org/expert/26190 -https://www.oceanexpert.org/expert/32575 -https://www.oceanexpert.org/expert/47679 -https://www.oceanexpert.org/expert/42746 -https://www.oceanexpert.org/expert/37682 -https://www.oceanexpert.org/institution/21078 -https://www.oceanexpert.org/expert/30527 -https://www.oceanexpert.org/expert/42636 -https://www.oceanexpert.org/expert/21924 -https://www.oceanexpert.org/expert/18141 -https://www.oceanexpert.org/institution/17981 -https://www.oceanexpert.org/expert/38719 -https://www.oceanexpert.org/expert/30182 -https://www.oceanexpert.org/institution/12703 -https://www.oceanexpert.org/event/3245 -https://www.oceanexpert.org/expert/6910 -https://www.oceanexpert.org/expert/19065 -https://www.oceanexpert.org/expert/19516 -https://www.oceanexpert.org/expert/43610 -https://www.oceanexpert.org/expert/46615 -https://www.oceanexpert.org/expert/45310 -https://www.oceanexpert.org/expert/2158 -https://www.oceanexpert.org/expert/26605 -https://www.oceanexpert.org/institution/10145 -https://www.oceanexpert.org/expert/19320 -https://www.oceanexpert.org/event/2194 -https://www.oceanexpert.org/expert/39652 -https://www.oceanexpert.org/institution/6238 -https://www.oceanexpert.org/expert/42549 -https://www.oceanexpert.org/expert/44637 -https://www.oceanexpert.org/expert/18399 -https://www.oceanexpert.org/expert/48729 -https://www.oceanexpert.org/expert/23272 -https://www.oceanexpert.org/expert/35573 -https://www.oceanexpert.org/institution/5942 -https://www.oceanexpert.org/expert/16380 -https://www.oceanexpert.org/institution/10916 -https://www.oceanexpert.org/institution/9164 -https://www.oceanexpert.org/expert/18792 -https://www.oceanexpert.org/expert/48330 -https://www.oceanexpert.org/expert/22231 -https://www.oceanexpert.org/institution/17813 -https://www.oceanexpert.org/event/2688 -https://www.oceanexpert.org/expert/29361 -https://www.oceanexpert.org/institution/5156 -https://www.oceanexpert.org/expert/32323 -https://www.oceanexpert.org/expert/44211 -https://www.oceanexpert.org/expert/32225 -https://www.oceanexpert.org/expert/25664 -https://www.oceanexpert.org/expert/29135 -https://www.oceanexpert.org/expert/21221 -https://www.oceanexpert.org/expert/28816 -https://www.oceanexpert.org/event/1695 -https://www.oceanexpert.org/expert/23132 -https://www.oceanexpert.org/expert/42468 -https://www.oceanexpert.org/expert/19541 -https://www.oceanexpert.org/event/969 -https://www.oceanexpert.org/institution/19696 -https://www.oceanexpert.org/expert/17435 -https://www.oceanexpert.org/expert/24168 -https://www.oceanexpert.org/expert/22363 -https://www.oceanexpert.org/expert/31904 -https://www.oceanexpert.org/expert/28188 -https://www.oceanexpert.org/expert/27506 -https://www.oceanexpert.org/expert/47849 -https://www.oceanexpert.org/institution/12030 -https://www.oceanexpert.org/institution/18983 -https://www.oceanexpert.org/expert/30200 -https://www.oceanexpert.org/institution/18233 -https://www.oceanexpert.org/expert/30810 -https://www.oceanexpert.org/expert/21002 -https://www.oceanexpert.org/event/1700 -https://www.oceanexpert.org/expert/26125 -https://www.oceanexpert.org/institution/11340 -https://www.oceanexpert.org/expert/28094 -https://www.oceanexpert.org/expert/46213 -https://www.oceanexpert.org/expert/48729 -https://www.oceanexpert.org/expert/20487 -https://www.oceanexpert.org/institution/18450 -https://www.oceanexpert.org/expert/28192 -https://www.oceanexpert.org/institution/17622 -https://www.oceanexpert.org/expert/15311 -https://www.oceanexpert.org/institution/19159 -https://www.oceanexpert.org/expert/42496 -https://www.oceanexpert.org/expert/9319 -https://www.oceanexpert.org/institution/15786 -https://www.oceanexpert.org/institution/12407 -https://www.oceanexpert.org/expert/39056 -https://www.oceanexpert.org/expert/24997 -https://www.oceanexpert.org/event/3094 -https://www.oceanexpert.org/institution/16311 -https://www.oceanexpert.org/expert/23003 -https://www.oceanexpert.org/institution/14610 -https://www.oceanexpert.org/event/1316 -https://www.oceanexpert.org/institution/6493 -https://www.oceanexpert.org/expert/10929 -https://www.oceanexpert.org/institution/13418 -https://www.oceanexpert.org/institution/20586 -https://www.oceanexpert.org/institution/21791 -https://www.oceanexpert.org/expert/31495 -https://www.oceanexpert.org/expert/45043 -https://www.oceanexpert.org/institution/21623 -https://www.oceanexpert.org/expert/30181 -https://www.oceanexpert.org/expert/25078 -https://www.oceanexpert.org/expert/12861 -https://www.oceanexpert.org/institution/21399 -https://www.oceanexpert.org/expert/48019 -https://www.oceanexpert.org/event/31 -https://www.oceanexpert.org/expert/45791 -https://www.oceanexpert.org/institution/13857 -https://www.oceanexpert.org/institution/18836 -https://www.oceanexpert.org/expert/47533 -https://www.oceanexpert.org/expert/26488 -https://www.oceanexpert.org/expert/22894 -https://www.oceanexpert.org/event/2811 -https://www.oceanexpert.org/expert/48743 -https://www.oceanexpert.org/expert/19925 -https://www.oceanexpert.org/institution/18776 -https://www.oceanexpert.org/institution/15067 -https://www.oceanexpert.org/expert/13064 -https://www.oceanexpert.org/expert/42743 -https://www.oceanexpert.org/expert/43457 -https://www.oceanexpert.org/expert/30064 -https://www.oceanexpert.org/expert/27002 -https://www.oceanexpert.org/event/1792 -https://www.oceanexpert.org/institution/11182 -https://www.oceanexpert.org/expert/22288 -https://www.oceanexpert.org/institution/20841 -https://www.oceanexpert.org/expert/21820 -https://www.oceanexpert.org/expert/40576 -https://www.oceanexpert.org/expert/17052 -https://www.oceanexpert.org/expert/36910 -https://www.oceanexpert.org/event/794 -https://www.oceanexpert.org/expert/38947 -https://www.oceanexpert.org/expert/44575 -https://www.oceanexpert.org/institution/13963 -https://www.oceanexpert.org/institution/22046 -https://www.oceanexpert.org/expert/17212 -https://www.oceanexpert.org/expert/38352 -https://www.oceanexpert.org/event/598 -https://www.oceanexpert.org/expert/47675 -https://www.oceanexpert.org/expert/44719 -https://www.oceanexpert.org/expert/43335 -https://www.oceanexpert.org/expert/19291 -https://www.oceanexpert.org/expert/20343 -https://www.oceanexpert.org/expert/22588 -https://www.oceanexpert.org/expert/26323 -https://www.oceanexpert.org/expert/47763 -https://www.oceanexpert.org/expert/223 -https://www.oceanexpert.org/expert/22681 -https://www.oceanexpert.org/expert/38152 -https://www.oceanexpert.org/expert/19276 -https://www.oceanexpert.org/expert/25936 -https://www.oceanexpert.org/expert/23297 -https://www.oceanexpert.org/expert/17409 -https://www.oceanexpert.org/event/3 -https://www.oceanexpert.org/institution/18598 -https://www.oceanexpert.org/institution/21761 -https://www.oceanexpert.org/expert/22130 -https://www.oceanexpert.org/expert/26405 -https://www.oceanexpert.org/expert/44981 -https://www.oceanexpert.org/expert/8010 -https://www.oceanexpert.org/event/2838 -https://www.oceanexpert.org/institution/20359 -https://www.oceanexpert.org/expert/13743 -https://www.oceanexpert.org/expert/25451 -https://www.oceanexpert.org/expert/39209 -https://www.oceanexpert.org/expert/7784 -https://www.oceanexpert.org/expert/31673 -https://www.oceanexpert.org/expert/8130 -https://www.oceanexpert.org/institution/20312 -https://www.oceanexpert.org/expert/42021 -https://www.oceanexpert.org/expert/13964 -https://www.oceanexpert.org/expert/32574 -https://www.oceanexpert.org/expert/2133 -https://www.oceanexpert.org/expert/46554 -https://www.oceanexpert.org/expert/26945 -https://www.oceanexpert.org/expert/36950 -https://www.oceanexpert.org/institution/12555 -https://www.oceanexpert.org/expert/21689 -https://www.oceanexpert.org/expert/20865 -https://www.oceanexpert.org/expert/33953 -https://www.oceanexpert.org/institution/5501 -https://www.oceanexpert.org/expert/48322 -https://www.oceanexpert.org/expert/32557 -https://www.oceanexpert.org/institution/19583 -https://www.oceanexpert.org/institution/16337 -https://www.oceanexpert.org/event/357 -https://www.oceanexpert.org/institution/18699 -https://www.oceanexpert.org/institution/21318 -https://www.oceanexpert.org/expert/28378 -https://www.oceanexpert.org/event/2002 -https://www.oceanexpert.org/event/2474 -https://www.oceanexpert.org/institution/13514 -https://www.oceanexpert.org/institution/15771 -https://www.oceanexpert.org/expert/29971 -https://www.oceanexpert.org/expert/13651 -https://www.oceanexpert.org/expert/20967 -https://www.oceanexpert.org/expert/8768 -https://www.oceanexpert.org/expert/12177 -https://www.oceanexpert.org/expert/25276 -https://www.oceanexpert.org/expert/20857 -https://www.oceanexpert.org/expert/18273 -https://www.oceanexpert.org/institution/12667 -https://www.oceanexpert.org/institution/4980 -https://www.oceanexpert.org/expert/15103 -https://www.oceanexpert.org/expert/20144 -https://www.oceanexpert.org/expert/32246 -https://www.oceanexpert.org/expert/13970 -https://www.oceanexpert.org/expert/45601 -https://www.oceanexpert.org/expert/17561 -https://www.oceanexpert.org/expert/28300 -https://www.oceanexpert.org/event/2830 -https://www.oceanexpert.org/expert/36621 -https://www.oceanexpert.org/expert/31869 -https://www.oceanexpert.org/expert/46749 -https://www.oceanexpert.org/expert/21445 -https://www.oceanexpert.org/expert/27468 -https://www.oceanexpert.org/expert/46457 -https://www.oceanexpert.org/event/1394 -https://www.oceanexpert.org/expert/29630 -https://www.oceanexpert.org/expert/18918 -https://www.oceanexpert.org/expert/14432 -https://www.oceanexpert.org/institution/18693 -https://www.oceanexpert.org/expert/27357 -https://www.oceanexpert.org/event/1405 -https://www.oceanexpert.org/expert/12561 -https://www.oceanexpert.org/expert/47542 -https://www.oceanexpert.org/expert/47338 -https://www.oceanexpert.org/institution/21256 -https://www.oceanexpert.org/institution/19959 -https://www.oceanexpert.org/expert/25296 -https://www.oceanexpert.org/institution/14752 -https://www.oceanexpert.org/expert/44596 -https://www.oceanexpert.org/expert/20314 -https://www.oceanexpert.org/expert/32596 -https://www.oceanexpert.org/institution/18173 -https://www.oceanexpert.org/institution/15818 -https://www.oceanexpert.org/expert/26782 -https://www.oceanexpert.org/expert/27891 -https://www.oceanexpert.org/event/1007 -https://www.oceanexpert.org/expert/48784 -https://www.oceanexpert.org/expert/42192 -https://www.oceanexpert.org/expert/48099 -https://www.oceanexpert.org/expert/27335 -https://www.oceanexpert.org/expert/24905 -https://www.oceanexpert.org/expert/39055 -https://www.oceanexpert.org/institution/5057 -https://www.oceanexpert.org/expert/42927 -https://www.oceanexpert.org/expert/47467 -https://www.oceanexpert.org/expert/7590 -https://www.oceanexpert.org/expert/15968 -https://www.oceanexpert.org/expert/48515 -https://www.oceanexpert.org/institution/19722 -https://www.oceanexpert.org/event/327 -https://www.oceanexpert.org/expert/49056 -https://www.oceanexpert.org/institution/21918 -https://www.oceanexpert.org/expert/24342 -https://www.oceanexpert.org/expert/48279 -https://www.oceanexpert.org/event/686 -https://www.oceanexpert.org/expert/23383 -https://www.oceanexpert.org/expert/43363 -https://www.oceanexpert.org/expert/35001 -https://www.oceanexpert.org/institution/19851 -https://www.oceanexpert.org/expert/33374 -https://www.oceanexpert.org/expert/33283 -https://www.oceanexpert.org/expert/13334 -https://www.oceanexpert.org/event/1905 -https://www.oceanexpert.org/expert/20685 -https://www.oceanexpert.org/expert/42406 -https://www.oceanexpert.org/expert/4345 -https://www.oceanexpert.org/expert/26641 -https://www.oceanexpert.org/expert/25703 -https://www.oceanexpert.org/institution/8866 -https://www.oceanexpert.org/institution/17646 -https://www.oceanexpert.org/expert/19366 -https://www.oceanexpert.org/expert/28440 -https://www.oceanexpert.org/expert/2982 -https://www.oceanexpert.org/expert/33755 -https://www.oceanexpert.org/expert/23259 -https://www.oceanexpert.org/institution/10814 -https://www.oceanexpert.org/expert/19942 -https://www.oceanexpert.org/expert/14455 -https://www.oceanexpert.org/institution/21243 -https://www.oceanexpert.org/expert/5102 -https://www.oceanexpert.org/expert/34370 -https://www.oceanexpert.org/expert/32202 -https://www.oceanexpert.org/institution/16411 -https://www.oceanexpert.org/expert/39476 -https://www.oceanexpert.org/institution/14370 -https://www.oceanexpert.org/expert/36693 -https://www.oceanexpert.org/expert/18589 -https://www.oceanexpert.org/expert/22212 -https://www.oceanexpert.org/event/1912 -https://www.oceanexpert.org/expert/19305 -https://www.oceanexpert.org/institution/17930 -https://www.oceanexpert.org/expert/29387 -https://www.oceanexpert.org/institution/7532 -https://www.oceanexpert.org/event/2495 -https://www.oceanexpert.org/expert/3770 -https://www.oceanexpert.org/expert/36609 -https://www.oceanexpert.org/expert/11117 -https://www.oceanexpert.org/expert/19447 -https://www.oceanexpert.org/expert/44435 -https://www.oceanexpert.org/institution/21383 -https://www.oceanexpert.org/expert/29560 -https://www.oceanexpert.org/institution/21468 -https://www.oceanexpert.org/expert/30810 -https://www.oceanexpert.org/expert/32092 -https://www.oceanexpert.org/institution/20004 -https://www.oceanexpert.org/event/1002 -https://www.oceanexpert.org/expert/35540 -https://www.oceanexpert.org/institution/18890 -https://www.oceanexpert.org/expert/31020 -https://www.oceanexpert.org/expert/46000 -https://www.oceanexpert.org/expert/46549 -https://www.oceanexpert.org/expert/36907 -https://www.oceanexpert.org/expert/25030 -https://www.oceanexpert.org/expert/31114 -https://www.oceanexpert.org/event/1943 -https://www.oceanexpert.org/expert/31480 -https://www.oceanexpert.org/expert/24243 -https://www.oceanexpert.org/expert/34789 -https://www.oceanexpert.org/expert/40659 -https://www.oceanexpert.org/institution/13696 -https://www.oceanexpert.org/expert/14027 -https://www.oceanexpert.org/institution/18038 -https://www.oceanexpert.org/event/3248 -https://www.oceanexpert.org/institution/18739 -https://www.oceanexpert.org/expert/27560 -https://www.oceanexpert.org/institution/11197 -https://www.oceanexpert.org/expert/37805 -https://www.oceanexpert.org/institution/19944 -https://www.oceanexpert.org/institution/21620 -https://www.oceanexpert.org/institution/8714 -https://www.oceanexpert.org/institution/21629 -https://www.oceanexpert.org/expert/45530 -https://www.oceanexpert.org/expert/26737 -https://www.oceanexpert.org/institution/17158 -https://www.oceanexpert.org/expert/46530 -https://www.oceanexpert.org/institution/17603 -https://www.oceanexpert.org/expert/31255 -https://www.oceanexpert.org/institution/14329 -https://www.oceanexpert.org/expert/30635 -https://www.oceanexpert.org/expert/17452 -https://www.oceanexpert.org/expert/22970 -https://www.oceanexpert.org/event/1697 -https://www.oceanexpert.org/expert/21141 -https://www.oceanexpert.org/expert/46005 -https://www.oceanexpert.org/institution/15668 -https://www.oceanexpert.org/expert/43397 -https://www.oceanexpert.org/expert/24283 -https://www.oceanexpert.org/institution/20526 -https://www.oceanexpert.org/expert/23619 -https://www.oceanexpert.org/institution/20202 -https://www.oceanexpert.org/expert/36850 -https://www.oceanexpert.org/expert/39054 -https://www.oceanexpert.org/expert/27939 -https://www.oceanexpert.org/expert/16071 -https://www.oceanexpert.org/institution/13129 -https://www.oceanexpert.org/institution/13098 -https://www.oceanexpert.org/institution/18112 -https://www.oceanexpert.org/event/2721 -https://www.oceanexpert.org/expert/35164 -https://www.oceanexpert.org/expert/44184 -https://www.oceanexpert.org/institution/21510 -https://www.oceanexpert.org/event/650 -https://www.oceanexpert.org/expert/21063 -https://www.oceanexpert.org/expert/21518 -https://www.oceanexpert.org/expert/13383 -https://www.oceanexpert.org/expert/11748 -https://www.oceanexpert.org/expert/47231 -https://www.oceanexpert.org/expert/38108 -https://www.oceanexpert.org/expert/15806 -https://www.oceanexpert.org/institution/19705 -https://www.oceanexpert.org/institution/19083 -https://www.oceanexpert.org/expert/18354 -https://www.oceanexpert.org/institution/13107 -https://www.oceanexpert.org/expert/18884 -https://www.oceanexpert.org/institution/15795 -https://www.oceanexpert.org/expert/17846 -https://www.oceanexpert.org/institution/12482 -https://www.oceanexpert.org/event/1353 -https://www.oceanexpert.org/expert/36688 -https://www.oceanexpert.org/institution/19524 -https://www.oceanexpert.org/institution/12866 -https://www.oceanexpert.org/expert/34627 -https://www.oceanexpert.org/expert/19564 -https://www.oceanexpert.org/expert/7067 -https://www.oceanexpert.org/expert/2071 -https://www.oceanexpert.org/expert/42924 -https://www.oceanexpert.org/event/3276 -https://www.oceanexpert.org/expert/46335 -https://www.oceanexpert.org/expert/27945 -https://www.oceanexpert.org/expert/41292 -https://www.oceanexpert.org/expert/22213 -https://www.oceanexpert.org/expert/36756 -https://www.oceanexpert.org/expert/36523 -https://www.oceanexpert.org/expert/40022 -https://www.oceanexpert.org/institution/18182 -https://www.oceanexpert.org/expert/18787 -https://www.oceanexpert.org/expert/41609 -https://www.oceanexpert.org/expert/1973 -https://www.oceanexpert.org/expert/32561 -https://www.oceanexpert.org/expert/43268 -https://www.oceanexpert.org/expert/37504 -https://www.oceanexpert.org/expert/6293 -https://www.oceanexpert.org/expert/18345 -https://www.oceanexpert.org/institution/13591 -https://www.oceanexpert.org/expert/40298 -https://www.oceanexpert.org/expert/13440 -https://www.oceanexpert.org/expert/20962 -https://www.oceanexpert.org/expert/22154 -https://www.oceanexpert.org/expert/12092 -https://www.oceanexpert.org/institution/15671 -https://www.oceanexpert.org/expert/21917 -https://www.oceanexpert.org/expert/19095 -https://www.oceanexpert.org/expert/26935 -https://www.oceanexpert.org/expert/26318 -https://www.oceanexpert.org/institution/14833 -https://www.oceanexpert.org/institution/19233 -https://www.oceanexpert.org/expert/27362 -https://www.oceanexpert.org/expert/46439 -https://www.oceanexpert.org/expert/20864 -https://www.oceanexpert.org/expert/23519 -https://www.oceanexpert.org/expert/25733 -https://www.oceanexpert.org/institution/12559 -https://www.oceanexpert.org/institution/19416 -https://www.oceanexpert.org/institution/12385 -https://www.oceanexpert.org/expert/20003 -https://www.oceanexpert.org/event/353 -https://www.oceanexpert.org/institution/21189 -https://www.oceanexpert.org/institution/18748 -https://www.oceanexpert.org/institution/7135 -https://www.oceanexpert.org/institution/9089 -https://www.oceanexpert.org/expert/3549 -https://www.oceanexpert.org/expert/35044 -https://www.oceanexpert.org/expert/29085 -https://www.oceanexpert.org/expert/13415 -https://www.oceanexpert.org/expert/31109 -https://www.oceanexpert.org/event/1430 -https://www.oceanexpert.org/event/2002 -https://www.oceanexpert.org/event/2810 -https://www.oceanexpert.org/institution/16187 -https://www.oceanexpert.org/expert/48206 -https://www.oceanexpert.org/institution/11791 -https://www.oceanexpert.org/expert/40923 -https://www.oceanexpert.org/expert/39008 -https://www.oceanexpert.org/expert/34108 -https://www.oceanexpert.org/expert/13788 -https://www.oceanexpert.org/expert/20163 -https://www.oceanexpert.org/expert/48717 -https://www.oceanexpert.org/institution/19397 -https://www.oceanexpert.org/expert/19321 -https://www.oceanexpert.org/institution/13595 -https://www.oceanexpert.org/expert/21691 -https://www.oceanexpert.org/expert/36737 -https://www.oceanexpert.org/institution/18825 -https://www.oceanexpert.org/expert/11495 -https://www.oceanexpert.org/expert/45006 -https://www.oceanexpert.org/expert/20901 -https://www.oceanexpert.org/expert/33075 -https://www.oceanexpert.org/expert/33988 -https://www.oceanexpert.org/expert/28821 -https://www.oceanexpert.org/expert/4558 -https://www.oceanexpert.org/expert/33831 -https://www.oceanexpert.org/institution/7308 -https://www.oceanexpert.org/expert/47484 -https://www.oceanexpert.org/expert/44108 -https://www.oceanexpert.org/institution/17979 -https://www.oceanexpert.org/expert/25840 -https://www.oceanexpert.org/expert/6037 -https://www.oceanexpert.org/institution/20164 -https://www.oceanexpert.org/institution/20812 -https://www.oceanexpert.org/expert/23577 -https://www.oceanexpert.org/expert/48017 -https://www.oceanexpert.org/event/2848 -https://www.oceanexpert.org/expert/18955 -https://www.oceanexpert.org/institution/21532 -https://www.oceanexpert.org/institution/11124 -https://www.oceanexpert.org/expert/42635 -https://www.oceanexpert.org/expert/37841 -https://www.oceanexpert.org/institution/18182 -https://www.oceanexpert.org/expert/34933 -https://www.oceanexpert.org/expert/20682 -https://www.oceanexpert.org/event/2991 -https://www.oceanexpert.org/expert/20877 -https://www.oceanexpert.org/expert/4487 -https://www.oceanexpert.org/expert/43525 -https://www.oceanexpert.org/expert/16621 -https://www.oceanexpert.org/institution/10926 -https://www.oceanexpert.org/expert/23706 -https://www.oceanexpert.org/expert/37504 -https://www.oceanexpert.org/expert/32686 -https://www.oceanexpert.org/expert/25999 -https://www.oceanexpert.org/expert/44416 -https://www.oceanexpert.org/expert/14337 -https://www.oceanexpert.org/event/1575 -https://www.oceanexpert.org/expert/32327 -https://www.oceanexpert.org/expert/22203 -https://www.oceanexpert.org/event/875 -https://www.oceanexpert.org/expert/317 -https://www.oceanexpert.org/event/173 -https://www.oceanexpert.org/expert/44537 -https://www.oceanexpert.org/institution/21814 -https://www.oceanexpert.org/expert/8957 -https://www.oceanexpert.org/expert/49006 -https://www.oceanexpert.org/expert/28718 -https://www.oceanexpert.org/event/1239 -https://www.oceanexpert.org/expert/19572 -https://www.oceanexpert.org/expert/8704 -https://www.oceanexpert.org/expert/22241 -https://www.oceanexpert.org/expert/44426 -https://www.oceanexpert.org/expert/27931 -https://www.oceanexpert.org/expert/26081 -https://www.oceanexpert.org/institution/8300 -https://www.oceanexpert.org/expert/23235 -https://www.oceanexpert.org/institution/19813 -https://www.oceanexpert.org/event/2544 -https://www.oceanexpert.org/institution/20439 -https://www.oceanexpert.org/expert/43305 -https://www.oceanexpert.org/expert/23351 -https://www.oceanexpert.org/institution/19319 -https://www.oceanexpert.org/institution/10695 -https://www.oceanexpert.org/institution/16744 -https://www.oceanexpert.org/event/1494 -https://www.oceanexpert.org/expert/34778 -https://www.oceanexpert.org/expert/27672 -https://www.oceanexpert.org/expert/32778 -https://www.oceanexpert.org/expert/22035 -https://www.oceanexpert.org/event/3184 -https://www.oceanexpert.org/expert/31875 -https://www.oceanexpert.org/institution/13426 -https://www.oceanexpert.org/expert/13319 -https://www.oceanexpert.org/expert/12525 -https://www.oceanexpert.org/expert/33381 -https://www.oceanexpert.org/expert/42414 -https://www.oceanexpert.org/expert/4139 -https://www.oceanexpert.org/expert/19459 -https://www.oceanexpert.org/expert/37026 -https://www.oceanexpert.org/expert/12166 -https://www.oceanexpert.org/expert/45945 -https://www.oceanexpert.org/expert/26687 -https://www.oceanexpert.org/institution/12533 -https://www.oceanexpert.org/expert/22563 -https://www.oceanexpert.org/expert/23805 -https://www.oceanexpert.org/expert/19607 -https://www.oceanexpert.org/expert/4617 -https://www.oceanexpert.org/expert/37845 -https://www.oceanexpert.org/expert/35335 -https://www.oceanexpert.org/expert/13072 -https://www.oceanexpert.org/expert/42474 -https://www.oceanexpert.org/expert/29935 -https://www.oceanexpert.org/institution/12930 -https://www.oceanexpert.org/expert/26373 -https://www.oceanexpert.org/event/2411 -https://www.oceanexpert.org/expert/44618 -https://www.oceanexpert.org/expert/38152 -https://www.oceanexpert.org/expert/13069 -https://www.oceanexpert.org/expert/33201 -https://www.oceanexpert.org/institution/20743 -https://www.oceanexpert.org/expert/20852 -https://www.oceanexpert.org/institution/10480 -https://www.oceanexpert.org/expert/18799 -https://www.oceanexpert.org/expert/38938 -https://www.oceanexpert.org/expert/8330 -https://www.oceanexpert.org/event/1889 -https://www.oceanexpert.org/expert/32925 -https://www.oceanexpert.org/expert/22246 -https://www.oceanexpert.org/expert/27332 -https://www.oceanexpert.org/expert/23774 -https://www.oceanexpert.org/institution/16906 -https://www.oceanexpert.org/expert/23651 -https://www.oceanexpert.org/expert/31705 -https://www.oceanexpert.org/expert/7921 -https://www.oceanexpert.org/expert/30450 -https://www.oceanexpert.org/expert/16474 -https://www.oceanexpert.org/expert/48171 -https://www.oceanexpert.org/expert/44549 -https://www.oceanexpert.org/expert/26210 -https://www.oceanexpert.org/expert/40560 -https://www.oceanexpert.org/expert/42994 -https://www.oceanexpert.org/expert/19782 -https://www.oceanexpert.org/expert/22137 -https://www.oceanexpert.org/expert/24129 -https://www.oceanexpert.org/expert/25959 -https://www.oceanexpert.org/expert/29880 -https://www.oceanexpert.org/expert/38654 -https://www.oceanexpert.org/expert/21057 -https://www.oceanexpert.org/event/1359 -https://www.oceanexpert.org/expert/35529 -https://www.oceanexpert.org/expert/26428 -https://www.oceanexpert.org/expert/4317 -https://www.oceanexpert.org/institution/10724 -https://www.oceanexpert.org/institution/22029 -https://www.oceanexpert.org/event/605 -https://www.oceanexpert.org/expert/26986 -https://www.oceanexpert.org/institution/20944 -https://www.oceanexpert.org/expert/45613 -https://www.oceanexpert.org/institution/16326 -https://www.oceanexpert.org/expert/44862 -https://www.oceanexpert.org/expert/38115 -https://www.oceanexpert.org/expert/39561 -https://www.oceanexpert.org/expert/38058 -https://www.oceanexpert.org/institution/11111 -https://www.oceanexpert.org/event/1163 -https://www.oceanexpert.org/event/1084 -https://www.oceanexpert.org/expert/17454 -https://www.oceanexpert.org/institution/14061 -https://www.oceanexpert.org/expert/44717 -https://www.oceanexpert.org/expert/42684 -https://www.oceanexpert.org/expert/38655 -https://www.oceanexpert.org/expert/37914 -https://www.oceanexpert.org/expert/22660 -https://www.oceanexpert.org/institution/18122 -https://www.oceanexpert.org/expert/2915 -https://www.oceanexpert.org/institution/9235 -https://www.oceanexpert.org/event/2033 -https://www.oceanexpert.org/expert/32101 -https://www.oceanexpert.org/institution/22175 -https://www.oceanexpert.org/institution/14023 -https://www.oceanexpert.org/event/1227 -https://www.oceanexpert.org/expert/21095 -https://www.oceanexpert.org/expert/44621 -https://www.oceanexpert.org/expert/45465 -https://www.oceanexpert.org/expert/31740 -https://www.oceanexpert.org/expert/40514 -https://www.oceanexpert.org/institution/20661 -https://www.oceanexpert.org/institution/18684 -https://www.oceanexpert.org/institution/18978 -https://www.oceanexpert.org/expert/2830 -https://www.oceanexpert.org/expert/4774 -https://www.oceanexpert.org/institution/6509 -https://www.oceanexpert.org/expert/32600 -https://www.oceanexpert.org/expert/39670 -https://www.oceanexpert.org/institution/18809 -https://www.oceanexpert.org/institution/16676 -https://www.oceanexpert.org/expert/20629 -https://www.oceanexpert.org/expert/25147 -https://www.oceanexpert.org/institution/18970 -https://www.oceanexpert.org/expert/20289 -https://www.oceanexpert.org/expert/36873 -https://www.oceanexpert.org/institution/18281 -https://www.oceanexpert.org/expert/20904 -https://www.oceanexpert.org/expert/18536 -https://www.oceanexpert.org/expert/22229 -https://www.oceanexpert.org/expert/33882 -https://www.oceanexpert.org/institution/11017 -https://www.oceanexpert.org/expert/29512 -https://www.oceanexpert.org/institution/12067 -https://www.oceanexpert.org/institution/21050 -https://www.oceanexpert.org/expert/23903 -https://www.oceanexpert.org/expert/26689 -https://www.oceanexpert.org/expert/48470 -https://www.oceanexpert.org/expert/11197 -https://www.oceanexpert.org/event/3116 -https://www.oceanexpert.org/expert/27272 -https://www.oceanexpert.org/expert/27456 -https://www.oceanexpert.org/institution/20137 -https://www.oceanexpert.org/expert/20136 -https://www.oceanexpert.org/expert/46669 -https://www.oceanexpert.org/expert/24397 -https://www.oceanexpert.org/expert/14394 -https://www.oceanexpert.org/institution/17977 -https://www.oceanexpert.org/expert/8523 -https://www.oceanexpert.org/institution/17782 -https://www.oceanexpert.org/institution/12318 -https://www.oceanexpert.org/expert/24935 -https://www.oceanexpert.org/institution/16705 -https://www.oceanexpert.org/expert/37084 -https://www.oceanexpert.org/expert/26785 -https://www.oceanexpert.org/institution/14808 -https://www.oceanexpert.org/institution/8719 -https://www.oceanexpert.org/expert/45873 -https://www.oceanexpert.org/expert/37262 -https://www.oceanexpert.org/expert/8250 -https://www.oceanexpert.org/expert/17005 -https://www.oceanexpert.org/expert/7785 -https://www.oceanexpert.org/expert/19443 -https://www.oceanexpert.org/institution/20825 -https://www.oceanexpert.org/expert/27450 -https://www.oceanexpert.org/expert/11473 -https://www.oceanexpert.org/expert/26657 -https://www.oceanexpert.org/expert/14095 -https://www.oceanexpert.org/event/2333 -https://www.oceanexpert.org/expert/36487 -https://www.oceanexpert.org/expert/19197 -https://www.oceanexpert.org/expert/45716 -https://www.oceanexpert.org/institution/20514 -https://www.oceanexpert.org/expert/23411 -https://www.oceanexpert.org/expert/37456 -https://www.oceanexpert.org/expert/23770 -https://www.oceanexpert.org/expert/8577 -https://www.oceanexpert.org/expert/21548 -https://www.oceanexpert.org/expert/25090 -https://www.oceanexpert.org/expert/47764 -https://www.oceanexpert.org/expert/16612 -https://www.oceanexpert.org/event/481 -https://www.oceanexpert.org/expert/6165 -https://www.oceanexpert.org/event/1038 -https://www.oceanexpert.org/expert/48628 -https://www.oceanexpert.org/expert/27228 -https://www.oceanexpert.org/expert/23255 -https://www.oceanexpert.org/institution/7273 -https://www.oceanexpert.org/expert/46815 -https://www.oceanexpert.org/expert/25126 -https://www.oceanexpert.org/expert/27126 -https://www.oceanexpert.org/event/1824 -https://www.oceanexpert.org/institution/20009 -https://www.oceanexpert.org/institution/17138 -https://www.oceanexpert.org/expert/44761 -https://www.oceanexpert.org/expert/17758 -https://www.oceanexpert.org/expert/15021 -https://www.oceanexpert.org/expert/37662 -https://www.oceanexpert.org/expert/24074 -https://www.oceanexpert.org/expert/14921 -https://www.oceanexpert.org/expert/15002 -https://www.oceanexpert.org/expert/46842 -https://www.oceanexpert.org/expert/31020 -https://www.oceanexpert.org/expert/35725 -https://www.oceanexpert.org/expert/30894 -https://www.oceanexpert.org/expert/22456 -https://www.oceanexpert.org/institution/18977 -https://www.oceanexpert.org/expert/46332 -https://www.oceanexpert.org/expert/36314 -https://www.oceanexpert.org/expert/44147 -https://www.oceanexpert.org/expert/13937 -https://www.oceanexpert.org/expert/19233 -https://www.oceanexpert.org/expert/46015 -https://www.oceanexpert.org/expert/8736 -https://www.oceanexpert.org/expert/37071 -https://www.oceanexpert.org/institution/20131 -https://www.oceanexpert.org/expert/23054 -https://www.oceanexpert.org/event/145 -https://www.oceanexpert.org/expert/17854 -https://www.oceanexpert.org/expert/33898 -https://www.oceanexpert.org/institution/18137 -https://www.oceanexpert.org/expert/27629 -https://www.oceanexpert.org/institution/14185 -https://www.oceanexpert.org/institution/19848 -https://www.oceanexpert.org/expert/22502 -https://www.oceanexpert.org/event/2135 -https://www.oceanexpert.org/institution/13098 -https://www.oceanexpert.org/event/367 -https://www.oceanexpert.org/expert/36645 -https://www.oceanexpert.org/expert/942 -https://www.oceanexpert.org/event/1126 -https://www.oceanexpert.org/expert/16966 -https://www.oceanexpert.org/institution/18195 -https://www.oceanexpert.org/expert/3521 -https://www.oceanexpert.org/expert/44657 -https://www.oceanexpert.org/expert/25449 -https://www.oceanexpert.org/expert/16744 -https://www.oceanexpert.org/expert/25519 -https://www.oceanexpert.org/expert/16642 -https://www.oceanexpert.org/expert/47893 -https://www.oceanexpert.org/expert/37112 -https://www.oceanexpert.org/event/2107 -https://www.oceanexpert.org/expert/2939 -https://www.oceanexpert.org/event/19 -https://www.oceanexpert.org/expert/46225 -https://www.oceanexpert.org/expert/45393 -https://www.oceanexpert.org/expert/21622 -https://www.oceanexpert.org/institution/13371 -https://www.oceanexpert.org/institution/17111 -https://www.oceanexpert.org/expert/22571 -https://www.oceanexpert.org/expert/7294 -https://www.oceanexpert.org/expert/4177 -https://www.oceanexpert.org/institution/17953 -https://www.oceanexpert.org/expert/45647 -https://www.oceanexpert.org/expert/26277 -https://www.oceanexpert.org/expert/785 -https://www.oceanexpert.org/expert/25043 -https://www.oceanexpert.org/event/1701 -https://www.oceanexpert.org/expert/25432 -https://www.oceanexpert.org/institution/18081 -https://www.oceanexpert.org/expert/32140 -https://www.oceanexpert.org/expert/29770 -https://www.oceanexpert.org/event/2436 -https://www.oceanexpert.org/expert/22581 -https://www.oceanexpert.org/expert/47964 -https://www.oceanexpert.org/expert/22408 -https://www.oceanexpert.org/expert/43346 -https://www.oceanexpert.org/expert/6409 -https://www.oceanexpert.org/institution/19453 -https://www.oceanexpert.org/expert/24958 -https://www.oceanexpert.org/event/622 -https://www.oceanexpert.org/institution/19883 -https://www.oceanexpert.org/expert/36762 -https://www.oceanexpert.org/institution/18648 -https://www.oceanexpert.org/institution/20696 -https://www.oceanexpert.org/expert/32169 -https://www.oceanexpert.org/institution/20685 -https://www.oceanexpert.org/institution/11823 -https://www.oceanexpert.org/expert/19093 -https://www.oceanexpert.org/expert/34317 -https://www.oceanexpert.org/expert/45499 -https://www.oceanexpert.org/expert/21493 -https://www.oceanexpert.org/expert/31723 -https://www.oceanexpert.org/expert/26761 -https://www.oceanexpert.org/expert/20884 -https://www.oceanexpert.org/expert/30785 -https://www.oceanexpert.org/expert/34219 -https://www.oceanexpert.org/expert/26795 -https://www.oceanexpert.org/expert/36755 -https://www.oceanexpert.org/expert/16806 -https://www.oceanexpert.org/expert/27234 -https://www.oceanexpert.org/expert/24883 -https://www.oceanexpert.org/expert/19193 -https://www.oceanexpert.org/institution/12558 -https://www.oceanexpert.org/expert/36856 -https://www.oceanexpert.org/expert/45706 -https://www.oceanexpert.org/event/2704 -https://www.oceanexpert.org/expert/13312 -https://www.oceanexpert.org/expert/47026 -https://www.oceanexpert.org/expert/24528 -https://www.oceanexpert.org/expert/33728 -https://www.oceanexpert.org/expert/40276 -https://www.oceanexpert.org/expert/44945 -https://www.oceanexpert.org/event/2817 -https://www.oceanexpert.org/expert/40622 -https://www.oceanexpert.org/expert/47555 -https://www.oceanexpert.org/expert/45661 -https://www.oceanexpert.org/expert/43568 -https://www.oceanexpert.org/expert/36593 -https://www.oceanexpert.org/expert/27242 -https://www.oceanexpert.org/institution/17326 -https://www.oceanexpert.org/event/1245 -https://www.oceanexpert.org/expert/27403 -https://www.oceanexpert.org/expert/48072 -https://www.oceanexpert.org/expert/25109 -https://www.oceanexpert.org/institution/8541 -https://www.oceanexpert.org/institution/10663 -https://www.oceanexpert.org/institution/11471 -https://www.oceanexpert.org/institution/18914 -https://www.oceanexpert.org/expert/24715 -https://www.oceanexpert.org/institution/11563 -https://www.oceanexpert.org/expert/22260 -https://www.oceanexpert.org/expert/36009 -https://www.oceanexpert.org/expert/6513 -https://www.oceanexpert.org/expert/21817 -https://www.oceanexpert.org/institution/19167 -https://www.oceanexpert.org/expert/13271 -https://www.oceanexpert.org/institution/19155 -https://www.oceanexpert.org/expert/28499 -https://www.oceanexpert.org/expert/23387 -https://www.oceanexpert.org/institution/21606 -https://www.oceanexpert.org/expert/34538 -https://www.oceanexpert.org/institution/12193 -https://www.oceanexpert.org/institution/14179 -https://www.oceanexpert.org/event/1009 -https://www.oceanexpert.org/institution/21474 -https://www.oceanexpert.org/expert/16487 -https://www.oceanexpert.org/expert/19080 -https://www.oceanexpert.org/expert/36677 -https://www.oceanexpert.org/expert/48909 -https://www.oceanexpert.org/event/3240 -https://www.oceanexpert.org/expert/38448 -https://www.oceanexpert.org/institution/9930 -https://www.oceanexpert.org/expert/17449 -https://www.oceanexpert.org/expert/7376 -https://www.oceanexpert.org/expert/22930 -https://www.oceanexpert.org/expert/38092 -https://www.oceanexpert.org/expert/14090 -https://www.oceanexpert.org/expert/47117 -https://www.oceanexpert.org/expert/38480 -https://www.oceanexpert.org/event/2682 -https://www.oceanexpert.org/expert/18491 -https://www.oceanexpert.org/expert/25845 -https://www.oceanexpert.org/expert/47183 -https://www.oceanexpert.org/expert/46341 -https://www.oceanexpert.org/expert/21035 -https://www.oceanexpert.org/expert/38059 -https://www.oceanexpert.org/expert/16706 -https://www.oceanexpert.org/institution/21535 -https://www.oceanexpert.org/expert/37518 -https://www.oceanexpert.org/expert/6912 -https://www.oceanexpert.org/institution/21884 -https://www.oceanexpert.org/institution/17927 -https://www.oceanexpert.org/expert/46593 -https://www.oceanexpert.org/expert/12017 -https://www.oceanexpert.org/expert/36894 -https://www.oceanexpert.org/institution/18666 -https://www.oceanexpert.org/institution/19694 -https://www.oceanexpert.org/expert/6900 -https://www.oceanexpert.org/institution/20761 -https://www.oceanexpert.org/expert/38074 -https://www.oceanexpert.org/expert/17975 -https://www.oceanexpert.org/event/2393 -https://www.oceanexpert.org/expert/33890 -https://www.oceanexpert.org/expert/1830 -https://www.oceanexpert.org/expert/38067 -https://www.oceanexpert.org/expert/22282 -https://www.oceanexpert.org/event/2822 -https://www.oceanexpert.org/expert/23786 -https://www.oceanexpert.org/expert/26746 -https://www.oceanexpert.org/expert/12758 -https://www.oceanexpert.org/expert/48451 -https://www.oceanexpert.org/expert/44823 -https://www.oceanexpert.org/event/2445 -https://www.oceanexpert.org/institution/15248 -https://www.oceanexpert.org/expert/44910 -https://www.oceanexpert.org/expert/25152 -https://www.oceanexpert.org/expert/43993 -https://www.oceanexpert.org/institution/10738 -https://www.oceanexpert.org/institution/19855 -https://www.oceanexpert.org/expert/17292 -https://www.oceanexpert.org/expert/16607 -https://www.oceanexpert.org/institution/11640 -https://www.oceanexpert.org/expert/3521 -https://www.oceanexpert.org/expert/26500 -https://www.oceanexpert.org/institution/5372 -https://www.oceanexpert.org/institution/13238 -https://www.oceanexpert.org/expert/19497 -https://www.oceanexpert.org/expert/33746 -https://www.oceanexpert.org/expert/24840 -https://www.oceanexpert.org/event/2058 -https://www.oceanexpert.org/event/516 -https://www.oceanexpert.org/institution/21781 -https://www.oceanexpert.org/expert/32169 -https://www.oceanexpert.org/expert/17856 -https://www.oceanexpert.org/expert/27593 -https://www.oceanexpert.org/expert/22748 -https://www.oceanexpert.org/expert/37904 -https://www.oceanexpert.org/institution/20045 -https://www.oceanexpert.org/expert/40564 -https://www.oceanexpert.org/institution/19718 -https://www.oceanexpert.org/expert/26241 -https://www.oceanexpert.org/expert/17634 -https://www.oceanexpert.org/expert/42446 -https://www.oceanexpert.org/expert/33744 -https://www.oceanexpert.org/event/1756 -https://www.oceanexpert.org/expert/30080 -https://www.oceanexpert.org/expert/21365 -https://www.oceanexpert.org/expert/35025 -https://www.oceanexpert.org/event/3248 -https://www.oceanexpert.org/institution/19887 -https://www.oceanexpert.org/institution/9032 -https://www.oceanexpert.org/expert/29268 -https://www.oceanexpert.org/expert/38480 -https://www.oceanexpert.org/expert/7192 -https://www.oceanexpert.org/expert/20194 -https://www.oceanexpert.org/expert/24175 -https://www.oceanexpert.org/expert/19761 -https://www.oceanexpert.org/expert/35879 -https://www.oceanexpert.org/expert/21559 -https://www.oceanexpert.org/institution/19153 -https://www.oceanexpert.org/expert/13886 -https://www.oceanexpert.org/institution/16373 -https://www.oceanexpert.org/expert/22026 -https://www.oceanexpert.org/expert/19915 -https://www.oceanexpert.org/institution/5868 -https://www.oceanexpert.org/event/1485 -https://www.oceanexpert.org/expert/34796 -https://www.oceanexpert.org/expert/48866 -https://www.oceanexpert.org/institution/20925 -https://www.oceanexpert.org/expert/42557 -https://www.oceanexpert.org/expert/13297 -https://www.oceanexpert.org/expert/17601 -https://www.oceanexpert.org/expert/21458 -https://www.oceanexpert.org/expert/20022 -https://www.oceanexpert.org/expert/19108 -https://www.oceanexpert.org/expert/19705 -https://www.oceanexpert.org/expert/27567 -https://www.oceanexpert.org/expert/27084 -https://www.oceanexpert.org/expert/46513 -https://www.oceanexpert.org/expert/28146 -https://www.oceanexpert.org/expert/14632 -https://www.oceanexpert.org/event/2958 -https://www.oceanexpert.org/expert/20953 -https://www.oceanexpert.org/institution/21654 -https://www.oceanexpert.org/expert/21561 -https://www.oceanexpert.org/expert/26487 -https://www.oceanexpert.org/expert/46432 -https://www.oceanexpert.org/expert/47035 -https://www.oceanexpert.org/expert/23776 -https://www.oceanexpert.org/institution/15066 -https://www.oceanexpert.org/event/765 -https://www.oceanexpert.org/expert/44825 -https://www.oceanexpert.org/expert/21467 -https://www.oceanexpert.org/expert/43440 -https://www.oceanexpert.org/event/2489 -https://www.oceanexpert.org/expert/26602 -https://www.oceanexpert.org/institution/5832 -https://www.oceanexpert.org/expert/23214 -https://www.oceanexpert.org/institution/21251 -https://www.oceanexpert.org/event/352 -https://www.oceanexpert.org/expert/24930 -https://www.oceanexpert.org/expert/36360 -https://www.oceanexpert.org/institution/19806 -https://www.oceanexpert.org/expert/14394 -https://www.oceanexpert.org/expert/24224 -https://www.oceanexpert.org/expert/21733 -https://www.oceanexpert.org/expert/34959 -https://www.oceanexpert.org/expert/34134 -https://www.oceanexpert.org/expert/17062 -https://www.oceanexpert.org/institution/18705 -https://www.oceanexpert.org/event/2868 -https://www.oceanexpert.org/institution/18930 -https://www.oceanexpert.org/expert/43072 -https://www.oceanexpert.org/event/1882 -https://www.oceanexpert.org/expert/25996 -https://www.oceanexpert.org/institution/14101 -https://www.oceanexpert.org/institution/20362 -https://www.oceanexpert.org/expert/19120 -https://www.oceanexpert.org/institution/15824 -https://www.oceanexpert.org/expert/33411 -https://www.oceanexpert.org/expert/27330 -https://www.oceanexpert.org/expert/27604 -https://www.oceanexpert.org/expert/38771 -https://www.oceanexpert.org/expert/47250 -https://www.oceanexpert.org/institution/17555 -https://www.oceanexpert.org/institution/21065 -https://www.oceanexpert.org/expert/18951 -https://www.oceanexpert.org/expert/35040 -https://www.oceanexpert.org/expert/14729 -https://www.oceanexpert.org/expert/24380 -https://www.oceanexpert.org/expert/21454 -https://www.oceanexpert.org/institution/17783 -https://www.oceanexpert.org/event/2643 -https://www.oceanexpert.org/expert/19806 -https://www.oceanexpert.org/expert/36358 -https://www.oceanexpert.org/expert/12243 -https://www.oceanexpert.org/expert/28038 -https://www.oceanexpert.org/expert/19771 -https://www.oceanexpert.org/expert/22219 -https://www.oceanexpert.org/expert/28055 -https://www.oceanexpert.org/expert/13166 -https://www.oceanexpert.org/institution/15930 -https://www.oceanexpert.org/expert/26425 -https://www.oceanexpert.org/expert/12494 -https://www.oceanexpert.org/event/1878 -https://www.oceanexpert.org/expert/30849 -https://www.oceanexpert.org/expert/16134 -https://www.oceanexpert.org/institution/6223 -https://www.oceanexpert.org/expert/24488 -https://www.oceanexpert.org/expert/14507 -https://www.oceanexpert.org/expert/24657 -https://www.oceanexpert.org/institution/12435 -https://www.oceanexpert.org/event/303 -https://www.oceanexpert.org/institution/17593 -https://www.oceanexpert.org/institution/19298 -https://www.oceanexpert.org/expert/20377 -https://www.oceanexpert.org/event/2744 -https://www.oceanexpert.org/expert/44777 -https://www.oceanexpert.org/expert/43394 -https://www.oceanexpert.org/expert/20804 -https://www.oceanexpert.org/expert/20744 -https://www.oceanexpert.org/expert/21501 -https://www.oceanexpert.org/expert/186 -https://www.oceanexpert.org/event/3182 -https://www.oceanexpert.org/institution/20152 -https://www.oceanexpert.org/expert/21898 -https://www.oceanexpert.org/expert/25357 -https://www.oceanexpert.org/expert/21048 -https://www.oceanexpert.org/institution/21226 -https://www.oceanexpert.org/expert/39056 -https://www.oceanexpert.org/expert/23664 -https://www.oceanexpert.org/institution/21617 -https://www.oceanexpert.org/expert/21926 -https://www.oceanexpert.org/expert/45574 -https://www.oceanexpert.org/expert/20928 -https://www.oceanexpert.org/expert/7532 -https://www.oceanexpert.org/expert/37511 -https://www.oceanexpert.org/institution/5561 -https://www.oceanexpert.org/institution/19697 -https://www.oceanexpert.org/institution/13838 -https://www.oceanexpert.org/expert/43722 -https://www.oceanexpert.org/expert/14082 -https://www.oceanexpert.org/expert/24333 -https://www.oceanexpert.org/institution/18237 -https://www.oceanexpert.org/expert/17337 -https://www.oceanexpert.org/expert/7395 -https://www.oceanexpert.org/expert/43735 -https://www.oceanexpert.org/institution/16146 -https://www.oceanexpert.org/expert/19695 -https://www.oceanexpert.org/institution/15678 -https://www.oceanexpert.org/expert/8537 -https://www.oceanexpert.org/expert/42895 -https://www.oceanexpert.org/expert/21629 -https://www.oceanexpert.org/institution/5394 -https://www.oceanexpert.org/expert/44960 -https://www.oceanexpert.org/institution/20828 -https://www.oceanexpert.org/event/2957 -https://www.oceanexpert.org/expert/18652 -https://www.oceanexpert.org/expert/36830 -https://www.oceanexpert.org/institution/17830 -https://www.oceanexpert.org/expert/25311 -https://www.oceanexpert.org/event/3180 -https://www.oceanexpert.org/event/1956 -https://www.oceanexpert.org/expert/28412 -https://www.oceanexpert.org/event/2216 -https://www.oceanexpert.org/expert/18213 -https://www.oceanexpert.org/expert/17507 -https://www.oceanexpert.org/expert/30287 -https://www.oceanexpert.org/event/1310 -https://www.oceanexpert.org/expert/26908 -https://www.oceanexpert.org/event/1686 -https://www.oceanexpert.org/expert/44989 -https://www.oceanexpert.org/institution/18633 -https://www.oceanexpert.org/institution/12374 -https://www.oceanexpert.org/expert/45482 -https://www.oceanexpert.org/expert/22678 -https://www.oceanexpert.org/expert/7539 -https://www.oceanexpert.org/expert/21167 -https://www.oceanexpert.org/expert/30273 -https://www.oceanexpert.org/expert/40108 -https://www.oceanexpert.org/expert/48694 -https://www.oceanexpert.org/event/3168 -https://www.oceanexpert.org/expert/46857 -https://www.oceanexpert.org/expert/21318 -https://www.oceanexpert.org/expert/25472 -https://www.oceanexpert.org/event/1010 -https://www.oceanexpert.org/institution/20117 -https://www.oceanexpert.org/expert/28287 -https://www.oceanexpert.org/institution/18976 -https://www.oceanexpert.org/institution/19983 -https://www.oceanexpert.org/expert/34276 -https://www.oceanexpert.org/event/2473 -https://www.oceanexpert.org/institution/17077 -https://www.oceanexpert.org/expert/26622 -https://www.oceanexpert.org/event/2523 -https://www.oceanexpert.org/institution/19491 -https://www.oceanexpert.org/institution/19460 -https://www.oceanexpert.org/expert/21214 -https://www.oceanexpert.org/institution/8761 -https://www.oceanexpert.org/institution/11857 -https://www.oceanexpert.org/expert/24842 -https://www.oceanexpert.org/expert/48565 -https://www.oceanexpert.org/event/1133 -https://www.oceanexpert.org/expert/35602 -https://www.oceanexpert.org/expert/8133 -https://www.oceanexpert.org/expert/14826 -https://www.oceanexpert.org/institution/21118 -https://www.oceanexpert.org/expert/42415 -https://www.oceanexpert.org/expert/34294 -https://www.oceanexpert.org/expert/22485 -https://www.oceanexpert.org/expert/32505 -https://www.oceanexpert.org/expert/46057 -https://www.oceanexpert.org/institution/5922 -https://www.oceanexpert.org/expert/19891 -https://www.oceanexpert.org/expert/43219 -https://www.oceanexpert.org/expert/26281 -https://www.oceanexpert.org/expert/47780 -https://www.oceanexpert.org/institution/21947 -https://www.oceanexpert.org/expert/39567 -https://www.oceanexpert.org/institution/21641 -https://www.oceanexpert.org/expert/28052 -https://www.oceanexpert.org/institution/20509 -https://www.oceanexpert.org/expert/8653 -https://www.oceanexpert.org/institution/7967 -https://www.oceanexpert.org/expert/38265 -https://www.oceanexpert.org/expert/3540 -https://www.oceanexpert.org/expert/26844 -https://www.oceanexpert.org/expert/38030 -https://www.oceanexpert.org/event/577 -https://www.oceanexpert.org/expert/16119 -https://www.oceanexpert.org/expert/30887 -https://www.oceanexpert.org/event/1257 -https://www.oceanexpert.org/expert/36998 -https://www.oceanexpert.org/institution/15099 -https://www.oceanexpert.org/expert/37803 -https://www.oceanexpert.org/expert/25028 -https://www.oceanexpert.org/expert/37312 -https://www.oceanexpert.org/expert/20117 -https://www.oceanexpert.org/expert/16845 -https://www.oceanexpert.org/institution/21423 -https://www.oceanexpert.org/expert/32772 -https://www.oceanexpert.org/expert/38419 -https://www.oceanexpert.org/expert/17769 -https://www.oceanexpert.org/expert/35059 -https://www.oceanexpert.org/expert/13762 -https://www.oceanexpert.org/expert/14146 -https://www.oceanexpert.org/expert/35887 -https://www.oceanexpert.org/expert/32682 -https://www.oceanexpert.org/expert/11489 -https://www.oceanexpert.org/expert/27458 -https://www.oceanexpert.org/event/3239 -https://www.oceanexpert.org/expert/26270 -https://www.oceanexpert.org/expert/12123 -https://www.oceanexpert.org/expert/17526 -https://www.oceanexpert.org/expert/27266 -https://www.oceanexpert.org/expert/21305 -https://www.oceanexpert.org/expert/35176 -https://www.oceanexpert.org/expert/27527 -https://www.oceanexpert.org/expert/26042 -https://www.oceanexpert.org/expert/21788 -https://www.oceanexpert.org/expert/32243 -https://www.oceanexpert.org/expert/45090 -https://www.oceanexpert.org/expert/20106 -https://www.oceanexpert.org/event/3008 -https://www.oceanexpert.org/expert/23178 -https://www.oceanexpert.org/expert/43560 -https://www.oceanexpert.org/expert/29360 -https://www.oceanexpert.org/expert/14973 -https://www.oceanexpert.org/expert/43240 -https://www.oceanexpert.org/expert/47457 -https://www.oceanexpert.org/expert/20363 -https://www.oceanexpert.org/expert/44505 -https://www.oceanexpert.org/event/48 -https://www.oceanexpert.org/expert/18591 -https://www.oceanexpert.org/institution/18890 -https://www.oceanexpert.org/institution/16310 -https://www.oceanexpert.org/institution/14234 -https://www.oceanexpert.org/event/1693 -https://www.oceanexpert.org/institution/15986 -https://www.oceanexpert.org/expert/8877 -https://www.oceanexpert.org/institution/12909 -https://www.oceanexpert.org/expert/18601 -https://www.oceanexpert.org/expert/37147 -https://www.oceanexpert.org/expert/12258 -https://www.oceanexpert.org/expert/26859 -https://www.oceanexpert.org/expert/11506 -https://www.oceanexpert.org/expert/7466 -https://www.oceanexpert.org/expert/37137 -https://www.oceanexpert.org/expert/45890 -https://www.oceanexpert.org/expert/23266 -https://www.oceanexpert.org/expert/23351 -https://www.oceanexpert.org/institution/21289 -https://www.oceanexpert.org/expert/17425 -https://www.oceanexpert.org/institution/15466 -https://www.oceanexpert.org/expert/18743 -https://www.oceanexpert.org/expert/26905 -https://www.oceanexpert.org/institution/19825 -https://www.oceanexpert.org/expert/16994 -https://www.oceanexpert.org/event/452 -https://www.oceanexpert.org/institution/19205 -https://www.oceanexpert.org/institution/10469 -https://www.oceanexpert.org/expert/45785 -https://www.oceanexpert.org/expert/45147 -https://www.oceanexpert.org/expert/23912 -https://www.oceanexpert.org/expert/46585 -https://www.oceanexpert.org/expert/19617 -https://www.oceanexpert.org/expert/39520 -https://www.oceanexpert.org/expert/35019 -https://www.oceanexpert.org/expert/27490 -https://www.oceanexpert.org/institution/6213 -https://www.oceanexpert.org/expert/37241 -https://www.oceanexpert.org/expert/29519 -https://www.oceanexpert.org/institution/10230 -https://www.oceanexpert.org/expert/42840 -https://www.oceanexpert.org/event/3074 -https://www.oceanexpert.org/expert/21715 -https://www.oceanexpert.org/expert/26355 -https://www.oceanexpert.org/expert/29400 -https://www.oceanexpert.org/event/2226 -https://www.oceanexpert.org/event/324 -https://www.oceanexpert.org/expert/3865 -https://www.oceanexpert.org/expert/40299 -https://www.oceanexpert.org/institution/20789 -https://www.oceanexpert.org/expert/32875 -https://www.oceanexpert.org/institution/21296 -https://www.oceanexpert.org/expert/48338 -https://www.oceanexpert.org/expert/44764 -https://www.oceanexpert.org/expert/36819 -https://www.oceanexpert.org/expert/46394 -https://www.oceanexpert.org/expert/43703 -https://www.oceanexpert.org/expert/48807 -https://www.oceanexpert.org/expert/16153 -https://www.oceanexpert.org/expert/19889 -https://www.oceanexpert.org/expert/21503 -https://www.oceanexpert.org/expert/16345 -https://www.oceanexpert.org/expert/26623 -https://www.oceanexpert.org/expert/29435 -https://www.oceanexpert.org/expert/48533 -https://www.oceanexpert.org/expert/40100 -https://www.oceanexpert.org/expert/21919 -https://www.oceanexpert.org/expert/12099 -https://www.oceanexpert.org/institution/12205 -https://www.oceanexpert.org/institution/22090 -https://www.oceanexpert.org/expert/4369 -https://www.oceanexpert.org/expert/36304 -https://www.oceanexpert.org/expert/28169 -https://www.oceanexpert.org/expert/35278 -https://www.oceanexpert.org/expert/14020 -https://www.oceanexpert.org/expert/27409 -https://www.oceanexpert.org/expert/42758 -https://www.oceanexpert.org/event/2198 -https://www.oceanexpert.org/expert/7855 -https://www.oceanexpert.org/institution/20793 -https://www.oceanexpert.org/expert/17170 -https://www.oceanexpert.org/expert/23795 -https://www.oceanexpert.org/institution/21890 -https://www.oceanexpert.org/event/975 -https://www.oceanexpert.org/expert/43334 -https://www.oceanexpert.org/expert/46560 -https://www.oceanexpert.org/expert/36639 -https://www.oceanexpert.org/expert/43008 -https://www.oceanexpert.org/event/407 -https://www.oceanexpert.org/expert/33704 -https://www.oceanexpert.org/event/1000 -https://www.oceanexpert.org/event/2969 -https://www.oceanexpert.org/expert/24283 -https://www.oceanexpert.org/expert/18766 -https://www.oceanexpert.org/expert/2311 -https://www.oceanexpert.org/expert/22805 -https://www.oceanexpert.org/institution/18805 -https://www.oceanexpert.org/expert/35481 -https://www.oceanexpert.org/expert/22993 -https://www.oceanexpert.org/event/1953 -https://www.oceanexpert.org/expert/43118 -https://www.oceanexpert.org/expert/47053 -https://www.oceanexpert.org/institution/20572 -https://www.oceanexpert.org/institution/18913 -https://www.oceanexpert.org/expert/23595 -https://www.oceanexpert.org/expert/29270 -https://www.oceanexpert.org/institution/14328 -https://www.oceanexpert.org/institution/19384 -https://www.oceanexpert.org/expert/20082 -https://www.oceanexpert.org/event/1007 -https://www.oceanexpert.org/institution/6954 -https://www.oceanexpert.org/expert/48684 -https://www.oceanexpert.org/expert/37144 -https://www.oceanexpert.org/institution/19132 -https://www.oceanexpert.org/expert/34960 -https://www.oceanexpert.org/expert/31599 -https://www.oceanexpert.org/expert/35616 -https://www.oceanexpert.org/expert/8697 -https://www.oceanexpert.org/expert/30635 -https://www.oceanexpert.org/institution/17225 -https://www.oceanexpert.org/institution/19450 -https://www.oceanexpert.org/expert/39153 -https://www.oceanexpert.org/expert/35295 -https://www.oceanexpert.org/expert/36616 -https://www.oceanexpert.org/institution/14922 -https://www.oceanexpert.org/expert/17834 -https://www.oceanexpert.org/expert/26473 -https://www.oceanexpert.org/expert/37498 -https://www.oceanexpert.org/institution/6727 -https://www.oceanexpert.org/expert/44234 -https://www.oceanexpert.org/expert/21027 -https://www.oceanexpert.org/expert/21949 -https://www.oceanexpert.org/expert/47862 -https://www.oceanexpert.org/expert/31869 -https://www.oceanexpert.org/expert/24858 -https://www.oceanexpert.org/expert/15550 -https://www.oceanexpert.org/institution/7138 -https://www.oceanexpert.org/expert/20712 -https://www.oceanexpert.org/institution/20468 -https://www.oceanexpert.org/institution/20648 -https://www.oceanexpert.org/expert/6053 -https://www.oceanexpert.org/expert/27687 -https://www.oceanexpert.org/expert/34940 -https://www.oceanexpert.org/institution/11846 -https://www.oceanexpert.org/expert/18824 -https://www.oceanexpert.org/expert/22960 -https://www.oceanexpert.org/institution/22043 -https://www.oceanexpert.org/expert/35243 -https://www.oceanexpert.org/expert/39841 -https://www.oceanexpert.org/event/1507 -https://www.oceanexpert.org/expert/23214 -https://www.oceanexpert.org/expert/47737 -https://www.oceanexpert.org/expert/17847 -https://www.oceanexpert.org/institution/20154 -https://www.oceanexpert.org/institution/21701 -https://www.oceanexpert.org/expert/36342 -https://www.oceanexpert.org/event/2304 -https://www.oceanexpert.org/expert/11697 -https://www.oceanexpert.org/expert/31726 -https://www.oceanexpert.org/expert/22113 -https://www.oceanexpert.org/expert/28203 -https://www.oceanexpert.org/expert/43182 -https://www.oceanexpert.org/expert/24691 -https://www.oceanexpert.org/institution/19011 -https://www.oceanexpert.org/institution/21490 -https://www.oceanexpert.org/expert/20085 -https://www.oceanexpert.org/expert/19789 -https://www.oceanexpert.org/expert/37908 -https://www.oceanexpert.org/expert/38017 -https://www.oceanexpert.org/expert/5738 -https://www.oceanexpert.org/institution/8916 -https://www.oceanexpert.org/expert/35355 -https://www.oceanexpert.org/event/131 -https://www.oceanexpert.org/expert/43547 -https://www.oceanexpert.org/expert/43943 -https://www.oceanexpert.org/expert/25448 -https://www.oceanexpert.org/expert/17301 -https://www.oceanexpert.org/expert/22526 -https://www.oceanexpert.org/expert/33309 -https://www.oceanexpert.org/expert/26074 -https://www.oceanexpert.org/expert/8012 -https://www.oceanexpert.org/expert/12178 -https://www.oceanexpert.org/expert/20882 -https://www.oceanexpert.org/expert/34775 -https://www.oceanexpert.org/expert/47515 -https://www.oceanexpert.org/expert/18848 -https://www.oceanexpert.org/expert/11067 -https://www.oceanexpert.org/expert/17590 -https://www.oceanexpert.org/expert/47351 -https://www.oceanexpert.org/expert/43418 -https://www.oceanexpert.org/institution/12207 -https://www.oceanexpert.org/expert/11291 -https://www.oceanexpert.org/expert/18660 -https://www.oceanexpert.org/expert/23980 -https://www.oceanexpert.org/expert/22293 -https://www.oceanexpert.org/expert/24210 -https://www.oceanexpert.org/institution/10704 -https://www.oceanexpert.org/expert/973 -https://www.oceanexpert.org/institution/21095 -https://www.oceanexpert.org/expert/263 -https://www.oceanexpert.org/expert/35524 -https://www.oceanexpert.org/expert/46593 -https://www.oceanexpert.org/event/1312 -https://www.oceanexpert.org/expert/21615 -https://www.oceanexpert.org/expert/46833 -https://www.oceanexpert.org/expert/46568 -https://www.oceanexpert.org/expert/18880 -https://www.oceanexpert.org/institution/11079 -https://www.oceanexpert.org/expert/47796 -https://www.oceanexpert.org/expert/44851 -https://www.oceanexpert.org/expert/21972 -https://www.oceanexpert.org/expert/16712 -https://www.oceanexpert.org/expert/34436 -https://www.oceanexpert.org/institution/9306 -https://www.oceanexpert.org/institution/18258 -https://www.oceanexpert.org/expert/11746 -https://www.oceanexpert.org/expert/3771 -https://www.oceanexpert.org/expert/9320 -https://www.oceanexpert.org/expert/19263 -https://www.oceanexpert.org/expert/20629 -https://www.oceanexpert.org/expert/26783 -https://www.oceanexpert.org/institution/9380 -https://www.oceanexpert.org/expert/23001 -https://www.oceanexpert.org/institution/13737 -https://www.oceanexpert.org/expert/19711 -https://www.oceanexpert.org/institution/21523 -https://www.oceanexpert.org/institution/19548 -https://www.oceanexpert.org/expert/45425 -https://www.oceanexpert.org/expert/18951 -https://www.oceanexpert.org/institution/14829 -https://www.oceanexpert.org/expert/35297 -https://www.oceanexpert.org/expert/45200 -https://www.oceanexpert.org/institution/6997 -https://www.oceanexpert.org/institution/20391 -https://www.oceanexpert.org/event/2351 -https://www.oceanexpert.org/expert/26706 -https://www.oceanexpert.org/expert/35227 -https://www.oceanexpert.org/expert/36933 -https://www.oceanexpert.org/institution/21217 -https://www.oceanexpert.org/expert/48906 -https://www.oceanexpert.org/institution/15836 -https://www.oceanexpert.org/institution/19796 -https://www.oceanexpert.org/expert/22980 -https://www.oceanexpert.org/institution/21442 -https://www.oceanexpert.org/institution/13793 -https://www.oceanexpert.org/institution/17027 -https://www.oceanexpert.org/institution/20016 -https://www.oceanexpert.org/institution/21623 -https://www.oceanexpert.org/expert/44726 -https://www.oceanexpert.org/expert/31725 -https://www.oceanexpert.org/institution/21968 -https://www.oceanexpert.org/expert/11586 -https://www.oceanexpert.org/institution/18314 -https://www.oceanexpert.org/institution/5042 -https://www.oceanexpert.org/expert/47458 -https://www.oceanexpert.org/institution/12926 -https://www.oceanexpert.org/institution/19916 -https://www.oceanexpert.org/institution/16843 -https://www.oceanexpert.org/expert/16360 -https://www.oceanexpert.org/event/804 -https://www.oceanexpert.org/institution/6354 -https://www.oceanexpert.org/institution/19487 -https://www.oceanexpert.org/institution/12626 -https://www.oceanexpert.org/expert/19160 -https://www.oceanexpert.org/expert/34509 -https://www.oceanexpert.org/institution/9447 -https://www.oceanexpert.org/institution/16996 -https://www.oceanexpert.org/expert/26264 -https://www.oceanexpert.org/expert/24939 -https://www.oceanexpert.org/expert/37670 -https://www.oceanexpert.org/expert/23462 -https://www.oceanexpert.org/expert/42906 -https://www.oceanexpert.org/expert/23916 -https://www.oceanexpert.org/expert/29683 -https://www.oceanexpert.org/event/1015 -https://www.oceanexpert.org/expert/45826 -https://www.oceanexpert.org/expert/46693 -https://www.oceanexpert.org/expert/4933 -https://www.oceanexpert.org/expert/39338 -https://www.oceanexpert.org/expert/35970 -https://www.oceanexpert.org/expert/19924 -https://www.oceanexpert.org/expert/16005 -https://www.oceanexpert.org/expert/29487 -https://www.oceanexpert.org/expert/39243 -https://www.oceanexpert.org/expert/23657 -https://www.oceanexpert.org/expert/16991 -https://www.oceanexpert.org/expert/2191 -https://www.oceanexpert.org/event/1574 -https://www.oceanexpert.org/expert/46855 -https://www.oceanexpert.org/institution/12017 -https://www.oceanexpert.org/institution/19751 -https://www.oceanexpert.org/institution/5417 -https://www.oceanexpert.org/expert/13784 -https://www.oceanexpert.org/institution/22122 -https://www.oceanexpert.org/expert/44572 -https://www.oceanexpert.org/expert/36974 -https://www.oceanexpert.org/expert/26466 -https://www.oceanexpert.org/expert/30773 -https://www.oceanexpert.org/expert/26477 -https://www.oceanexpert.org/institution/17882 -https://www.oceanexpert.org/expert/19558 -https://www.oceanexpert.org/event/3120 -https://www.oceanexpert.org/institution/22077 -https://www.oceanexpert.org/event/430 -https://www.oceanexpert.org/expert/23054 -https://www.oceanexpert.org/expert/33063 -https://www.oceanexpert.org/expert/27104 -https://www.oceanexpert.org/expert/32179 -https://www.oceanexpert.org/institution/21006 -https://www.oceanexpert.org/expert/21978 -https://www.oceanexpert.org/institution/20002 -https://www.oceanexpert.org/expert/23445 -https://www.oceanexpert.org/expert/12916 -https://www.oceanexpert.org/event/779 -https://www.oceanexpert.org/event/1030 -https://www.oceanexpert.org/event/2987 -https://www.oceanexpert.org/expert/45339 -https://www.oceanexpert.org/institution/8003 -https://www.oceanexpert.org/institution/8675 -https://www.oceanexpert.org/expert/26260 -https://www.oceanexpert.org/event/2745 -https://www.oceanexpert.org/institution/20372 -https://www.oceanexpert.org/expert/34982 -https://www.oceanexpert.org/event/1088 -https://www.oceanexpert.org/expert/20940 -https://www.oceanexpert.org/institution/12090 -https://www.oceanexpert.org/institution/13853 -https://www.oceanexpert.org/institution/19687 -https://www.oceanexpert.org/event/544 -https://www.oceanexpert.org/expert/38451 -https://www.oceanexpert.org/institution/8766 -https://www.oceanexpert.org/expert/43053 -https://www.oceanexpert.org/institution/18328 -https://www.oceanexpert.org/expert/42805 -https://www.oceanexpert.org/expert/34764 -https://www.oceanexpert.org/event/1823 -https://www.oceanexpert.org/expert/9134 -https://www.oceanexpert.org/event/799 -https://www.oceanexpert.org/expert/39719 -https://www.oceanexpert.org/expert/21456 -https://www.oceanexpert.org/institution/19133 -https://www.oceanexpert.org/expert/37112 -https://www.oceanexpert.org/expert/44275 -https://www.oceanexpert.org/event/2313 -https://www.oceanexpert.org/expert/17641 -https://www.oceanexpert.org/expert/29908 -https://www.oceanexpert.org/expert/45590 -https://www.oceanexpert.org/institution/15441 -https://www.oceanexpert.org/expert/36696 -https://www.oceanexpert.org/expert/37455 -https://www.oceanexpert.org/expert/16911 -https://www.oceanexpert.org/event/2945 -https://www.oceanexpert.org/expert/15460 -https://www.oceanexpert.org/expert/20449 -https://www.oceanexpert.org/event/2964 -https://www.oceanexpert.org/expert/43618 -https://www.oceanexpert.org/expert/16433 -https://www.oceanexpert.org/expert/25963 -https://www.oceanexpert.org/institution/21519 -https://www.oceanexpert.org/expert/18279 -https://www.oceanexpert.org/event/541 -https://www.oceanexpert.org/institution/6434 -https://www.oceanexpert.org/expert/30535 -https://www.oceanexpert.org/expert/14201 -https://www.oceanexpert.org/expert/46715 -https://www.oceanexpert.org/institution/15381 -https://www.oceanexpert.org/institution/21329 -https://www.oceanexpert.org/institution/11619 -https://www.oceanexpert.org/expert/29860 -https://www.oceanexpert.org/expert/18219 -https://www.oceanexpert.org/institution/14004 -https://www.oceanexpert.org/institution/10143 -https://www.oceanexpert.org/institution/20484 -https://www.oceanexpert.org/event/598 -https://www.oceanexpert.org/institution/19049 -https://www.oceanexpert.org/expert/47398 -https://www.oceanexpert.org/expert/44817 -https://www.oceanexpert.org/expert/30807 -https://www.oceanexpert.org/institution/20665 -https://www.oceanexpert.org/event/350 -https://www.oceanexpert.org/institution/19327 -https://www.oceanexpert.org/expert/31974 -https://www.oceanexpert.org/institution/17946 -https://www.oceanexpert.org/expert/29011 -https://www.oceanexpert.org/expert/36913 -https://www.oceanexpert.org/expert/20489 -https://www.oceanexpert.org/expert/49073 -https://www.oceanexpert.org/expert/21266 -https://www.oceanexpert.org/expert/23429 -https://www.oceanexpert.org/institution/16101 -https://www.oceanexpert.org/event/2305 -https://www.oceanexpert.org/expert/45864 -https://www.oceanexpert.org/expert/45804 -https://www.oceanexpert.org/institution/18460 -https://www.oceanexpert.org/expert/7414 -https://www.oceanexpert.org/expert/34889 -https://www.oceanexpert.org/expert/38609 -https://www.oceanexpert.org/expert/43029 -https://www.oceanexpert.org/event/2614 -https://www.oceanexpert.org/expert/42625 -https://www.oceanexpert.org/expert/34476 -https://www.oceanexpert.org/institution/8082 -https://www.oceanexpert.org/event/1127 -https://www.oceanexpert.org/institution/18673 -https://www.oceanexpert.org/institution/6748 -https://www.oceanexpert.org/expert/14053 -https://www.oceanexpert.org/institution/18071 -https://www.oceanexpert.org/expert/35646 -https://www.oceanexpert.org/expert/6762 -https://www.oceanexpert.org/expert/20777 -https://www.oceanexpert.org/expert/32552 -https://www.oceanexpert.org/expert/24113 -https://www.oceanexpert.org/expert/24368 -https://www.oceanexpert.org/institution/20478 -https://www.oceanexpert.org/expert/35188 -https://www.oceanexpert.org/institution/19773 -https://www.oceanexpert.org/expert/47151 -https://www.oceanexpert.org/expert/30683 -https://www.oceanexpert.org/expert/30794 -https://www.oceanexpert.org/expert/21835 -https://www.oceanexpert.org/expert/40534 -https://www.oceanexpert.org/expert/27046 -https://www.oceanexpert.org/expert/20107 -https://www.oceanexpert.org/institution/15667 -https://www.oceanexpert.org/expert/44957 -https://www.oceanexpert.org/institution/16140 -https://www.oceanexpert.org/institution/20867 -https://www.oceanexpert.org/institution/11215 -https://www.oceanexpert.org/expert/46666 -https://www.oceanexpert.org/institution/19285 -https://www.oceanexpert.org/expert/12485 -https://www.oceanexpert.org/institution/19418 -https://www.oceanexpert.org/expert/43303 -https://www.oceanexpert.org/institution/16168 -https://www.oceanexpert.org/institution/20209 -https://www.oceanexpert.org/institution/19175 -https://www.oceanexpert.org/event/2131 -https://www.oceanexpert.org/event/724 -https://www.oceanexpert.org/event/84 -https://www.oceanexpert.org/expert/13058 -https://www.oceanexpert.org/expert/6932 -https://www.oceanexpert.org/institution/12331 -https://www.oceanexpert.org/expert/34891 -https://www.oceanexpert.org/institution/18227 -https://www.oceanexpert.org/expert/17276 -https://www.oceanexpert.org/expert/24713 -https://www.oceanexpert.org/event/2600 -https://www.oceanexpert.org/expert/46279 -https://www.oceanexpert.org/expert/26801 -https://www.oceanexpert.org/expert/38779 -https://www.oceanexpert.org/expert/26360 -https://www.oceanexpert.org/expert/1872 -https://www.oceanexpert.org/institution/19349 -https://www.oceanexpert.org/expert/23850 -https://www.oceanexpert.org/institution/10468 -https://www.oceanexpert.org/expert/2114 -https://www.oceanexpert.org/expert/20697 -https://www.oceanexpert.org/event/1132 -https://www.oceanexpert.org/event/1515 -https://www.oceanexpert.org/expert/22312 -https://www.oceanexpert.org/expert/31038 -https://www.oceanexpert.org/expert/46724 -https://www.oceanexpert.org/expert/20955 -https://www.oceanexpert.org/expert/35573 -https://www.oceanexpert.org/expert/33498 -https://www.oceanexpert.org/expert/29146 -https://www.oceanexpert.org/expert/16679 -https://www.oceanexpert.org/expert/43529 -https://www.oceanexpert.org/expert/24313 -https://www.oceanexpert.org/expert/26315 -https://www.oceanexpert.org/expert/35096 -https://www.oceanexpert.org/expert/20593 -https://www.oceanexpert.org/institution/19601 -https://www.oceanexpert.org/expert/44432 -https://www.oceanexpert.org/institution/19792 -https://www.oceanexpert.org/expert/48496 -https://www.oceanexpert.org/expert/9803 -https://www.oceanexpert.org/expert/36901 -https://www.oceanexpert.org/expert/27385 -https://www.oceanexpert.org/expert/45472 -https://www.oceanexpert.org/expert/22898 -https://www.oceanexpert.org/expert/48298 -https://www.oceanexpert.org/expert/46527 -https://www.oceanexpert.org/institution/7027 -https://www.oceanexpert.org/event/1861 -https://www.oceanexpert.org/expert/43095 -https://www.oceanexpert.org/expert/44913 -https://www.oceanexpert.org/expert/15554 -https://www.oceanexpert.org/expert/48251 -https://www.oceanexpert.org/expert/47897 -https://www.oceanexpert.org/institution/20101 -https://www.oceanexpert.org/expert/6832 -https://www.oceanexpert.org/institution/12713 -https://www.oceanexpert.org/institution/12484 -https://www.oceanexpert.org/expert/26724 -https://www.oceanexpert.org/expert/13319 -https://www.oceanexpert.org/expert/24786 -https://www.oceanexpert.org/expert/11218 -https://www.oceanexpert.org/expert/6520 -https://www.oceanexpert.org/expert/34820 -https://www.oceanexpert.org/event/1118 -https://www.oceanexpert.org/expert/45459 -https://www.oceanexpert.org/institution/14053 -https://www.oceanexpert.org/institution/11999 -https://www.oceanexpert.org/expert/28074 -https://www.oceanexpert.org/expert/37422 -https://www.oceanexpert.org/expert/16789 -https://www.oceanexpert.org/expert/24219 -https://www.oceanexpert.org/event/1489 -https://www.oceanexpert.org/expert/7929 -https://www.oceanexpert.org/expert/44350 -https://www.oceanexpert.org/expert/329 -https://www.oceanexpert.org/expert/25915 -https://www.oceanexpert.org/institution/18461 -https://www.oceanexpert.org/institution/7991 -https://www.oceanexpert.org/expert/46634 -https://www.oceanexpert.org/expert/47475 -https://www.oceanexpert.org/institution/20107 -https://www.oceanexpert.org/expert/35386 -https://www.oceanexpert.org/event/1105 -https://www.oceanexpert.org/expert/35170 -https://www.oceanexpert.org/expert/16744 -https://www.oceanexpert.org/expert/25463 -https://www.oceanexpert.org/expert/24044 -https://www.oceanexpert.org/expert/36800 -https://www.oceanexpert.org/expert/43883 -https://www.oceanexpert.org/event/209 -https://www.oceanexpert.org/institution/12445 -https://www.oceanexpert.org/expert/34476 -https://www.oceanexpert.org/expert/26867 -https://www.oceanexpert.org/expert/48776 -https://www.oceanexpert.org/expert/26599 -https://www.oceanexpert.org/expert/2947 -https://www.oceanexpert.org/institution/18688 -https://www.oceanexpert.org/expert/32896 -https://www.oceanexpert.org/expert/27617 -https://www.oceanexpert.org/expert/26113 -https://www.oceanexpert.org/expert/18591 -https://www.oceanexpert.org/institution/10355 -https://www.oceanexpert.org/expert/27159 -https://www.oceanexpert.org/expert/29760 -https://www.oceanexpert.org/expert/43287 -https://www.oceanexpert.org/institution/19508 -https://www.oceanexpert.org/event/149 -https://www.oceanexpert.org/expert/25895 -https://www.oceanexpert.org/expert/19107 -https://www.oceanexpert.org/expert/20065 -https://www.oceanexpert.org/institution/5581 -https://www.oceanexpert.org/expert/44099 -https://www.oceanexpert.org/institution/7262 -https://www.oceanexpert.org/expert/6729 -https://www.oceanexpert.org/expert/20098 -https://www.oceanexpert.org/expert/24525 -https://www.oceanexpert.org/expert/28500 -https://www.oceanexpert.org/expert/30180 -https://www.oceanexpert.org/expert/35838 -https://www.oceanexpert.org/event/1643 -https://www.oceanexpert.org/institution/19500 -https://www.oceanexpert.org/event/1594 -https://www.oceanexpert.org/expert/25423 -https://www.oceanexpert.org/event/2029 -https://www.oceanexpert.org/institution/10607 -https://www.oceanexpert.org/expert/37509 -https://www.oceanexpert.org/institution/6099 -https://www.oceanexpert.org/expert/35132 -https://www.oceanexpert.org/institution/20959 -https://www.oceanexpert.org/institution/21321 -https://www.oceanexpert.org/expert/45176 -https://www.oceanexpert.org/expert/1696 -https://www.oceanexpert.org/expert/48900 -https://www.oceanexpert.org/expert/43921 -https://www.oceanexpert.org/expert/12644 -https://www.oceanexpert.org/expert/20935 -https://www.oceanexpert.org/expert/47147 -https://www.oceanexpert.org/institution/7901 -https://www.oceanexpert.org/expert/22236 -https://www.oceanexpert.org/expert/41325 -https://www.oceanexpert.org/expert/16879 -https://www.oceanexpert.org/event/2389 -https://www.oceanexpert.org/institution/18596 -https://www.oceanexpert.org/institution/18571 -https://www.oceanexpert.org/expert/35618 -https://www.oceanexpert.org/institution/21616 -https://www.oceanexpert.org/expert/37951 -https://www.oceanexpert.org/event/2649 -https://www.oceanexpert.org/expert/23874 -https://www.oceanexpert.org/event/1926 -https://www.oceanexpert.org/expert/26232 -https://www.oceanexpert.org/expert/2897 -https://www.oceanexpert.org/expert/21490 -https://www.oceanexpert.org/expert/9217 -https://www.oceanexpert.org/event/2694 -https://www.oceanexpert.org/institution/18638 -https://www.oceanexpert.org/expert/7000 -https://www.oceanexpert.org/event/170 -https://www.oceanexpert.org/expert/32684 -https://www.oceanexpert.org/institution/21118 -https://www.oceanexpert.org/expert/10848 -https://www.oceanexpert.org/expert/38435 -https://www.oceanexpert.org/expert/11026 -https://www.oceanexpert.org/event/1032 -https://www.oceanexpert.org/expert/44040 -https://www.oceanexpert.org/expert/34568 -https://www.oceanexpert.org/expert/47542 -https://www.oceanexpert.org/expert/46447 -https://www.oceanexpert.org/institution/14072 -https://www.oceanexpert.org/expert/37591 -https://www.oceanexpert.org/expert/48163 -https://www.oceanexpert.org/institution/16791 -https://www.oceanexpert.org/expert/25489 -https://www.oceanexpert.org/expert/48601 -https://www.oceanexpert.org/expert/7028 -https://www.oceanexpert.org/institution/19712 -https://www.oceanexpert.org/expert/2281 -https://www.oceanexpert.org/expert/26411 -https://www.oceanexpert.org/institution/16997 -https://www.oceanexpert.org/expert/32848 -https://www.oceanexpert.org/expert/22196 -https://www.oceanexpert.org/institution/21456 -https://www.oceanexpert.org/expert/11180 -https://www.oceanexpert.org/expert/34387 -https://www.oceanexpert.org/expert/25492 -https://www.oceanexpert.org/expert/16473 -https://www.oceanexpert.org/expert/25222 -https://www.oceanexpert.org/expert/11914 -https://www.oceanexpert.org/expert/33276 -https://www.oceanexpert.org/expert/47493 -https://www.oceanexpert.org/institution/21275 -https://www.oceanexpert.org/event/80 -https://www.oceanexpert.org/expert/30587 -https://www.oceanexpert.org/event/1592 -https://www.oceanexpert.org/institution/9878 -https://www.oceanexpert.org/event/2397 -https://www.oceanexpert.org/expert/17980 -https://www.oceanexpert.org/expert/31873 -https://www.oceanexpert.org/institution/19910 -https://www.oceanexpert.org/institution/18644 -https://www.oceanexpert.org/expert/21930 -https://www.oceanexpert.org/expert/17255 -https://www.oceanexpert.org/expert/6634 -https://www.oceanexpert.org/expert/43714 -https://www.oceanexpert.org/expert/14879 -https://www.oceanexpert.org/expert/29279 -https://www.oceanexpert.org/expert/12738 -https://www.oceanexpert.org/expert/14202 -https://www.oceanexpert.org/expert/22706 -https://www.oceanexpert.org/expert/13477 -https://www.oceanexpert.org/institution/21914 -https://www.oceanexpert.org/expert/37973 -https://www.oceanexpert.org/expert/18495 -https://www.oceanexpert.org/expert/43433 -https://www.oceanexpert.org/expert/36314 -https://www.oceanexpert.org/expert/24722 -https://www.oceanexpert.org/expert/45848 -https://www.oceanexpert.org/expert/32505 -https://www.oceanexpert.org/institution/16146 -https://www.oceanexpert.org/expert/39965 -https://www.oceanexpert.org/event/2618 -https://www.oceanexpert.org/expert/31273 -https://www.oceanexpert.org/expert/36531 -https://www.oceanexpert.org/expert/31986 -https://www.oceanexpert.org/event/2204 -https://www.oceanexpert.org/expert/43823 -https://www.oceanexpert.org/expert/7822 -https://www.oceanexpert.org/expert/23875 -https://www.oceanexpert.org/event/1715 -https://www.oceanexpert.org/expert/43996 -https://www.oceanexpert.org/expert/25443 -https://www.oceanexpert.org/expert/26259 -https://www.oceanexpert.org/expert/35258 -https://www.oceanexpert.org/expert/20901 -https://www.oceanexpert.org/expert/36091 -https://www.oceanexpert.org/expert/38345 -https://www.oceanexpert.org/expert/36305 -https://www.oceanexpert.org/expert/42657 -https://www.oceanexpert.org/expert/35070 -https://www.oceanexpert.org/expert/43930 -https://www.oceanexpert.org/expert/19126 -https://www.oceanexpert.org/institution/19051 -https://www.oceanexpert.org/expert/42571 -https://www.oceanexpert.org/institution/21437 -https://www.oceanexpert.org/expert/36892 -https://www.oceanexpert.org/expert/45231 -https://www.oceanexpert.org/expert/37512 -https://www.oceanexpert.org/institution/6736 -https://www.oceanexpert.org/expert/39345 -https://www.oceanexpert.org/expert/47937 -https://www.oceanexpert.org/expert/19800 -https://www.oceanexpert.org/expert/28872 -https://www.oceanexpert.org/expert/17967 -https://www.oceanexpert.org/expert/14695 -https://www.oceanexpert.org/expert/19865 -https://www.oceanexpert.org/expert/47340 -https://www.oceanexpert.org/event/1101 -https://www.oceanexpert.org/expert/48030 -https://www.oceanexpert.org/institution/21963 -https://www.oceanexpert.org/institution/7087 -https://www.oceanexpert.org/expert/42792 -https://www.oceanexpert.org/expert/29626 -https://www.oceanexpert.org/expert/1520 -https://www.oceanexpert.org/expert/24374 -https://www.oceanexpert.org/event/2312 -https://www.oceanexpert.org/institution/16373 -https://www.oceanexpert.org/institution/17330 -https://www.oceanexpert.org/expert/17384 -https://www.oceanexpert.org/institution/17273 -https://www.oceanexpert.org/expert/23334 -https://www.oceanexpert.org/expert/44929 -https://www.oceanexpert.org/expert/31653 -https://www.oceanexpert.org/event/797 -https://www.oceanexpert.org/institution/19686 -https://www.oceanexpert.org/expert/23602 -https://www.oceanexpert.org/institution/22063 -https://www.oceanexpert.org/expert/26320 -https://www.oceanexpert.org/event/2010 -https://www.oceanexpert.org/expert/34345 -https://www.oceanexpert.org/expert/112 -https://www.oceanexpert.org/expert/48534 -https://www.oceanexpert.org/expert/21835 -https://www.oceanexpert.org/institution/18777 -https://www.oceanexpert.org/expert/28260 -https://www.oceanexpert.org/expert/47451 -https://www.oceanexpert.org/institution/12722 -https://www.oceanexpert.org/expert/22612 -https://www.oceanexpert.org/institution/20967 -https://www.oceanexpert.org/expert/9888 -https://www.oceanexpert.org/expert/35839 -https://www.oceanexpert.org/expert/48293 -https://www.oceanexpert.org/event/1260 -https://www.oceanexpert.org/expert/23985 -https://www.oceanexpert.org/expert/13593 -https://www.oceanexpert.org/institution/20927 -https://www.oceanexpert.org/institution/17884 -https://www.oceanexpert.org/event/627 -https://www.oceanexpert.org/expert/20459 -https://www.oceanexpert.org/expert/24025 -https://www.oceanexpert.org/expert/25573 -https://www.oceanexpert.org/expert/26114 -https://www.oceanexpert.org/institution/9373 -https://www.oceanexpert.org/institution/20663 -https://www.oceanexpert.org/institution/21810 -https://www.oceanexpert.org/institution/22015 -https://www.oceanexpert.org/institution/10189 -https://www.oceanexpert.org/expert/24060 -https://www.oceanexpert.org/event/2561 -https://www.oceanexpert.org/expert/20049 -https://www.oceanexpert.org/expert/37023 -https://www.oceanexpert.org/institution/18613 -https://www.oceanexpert.org/expert/44222 -https://www.oceanexpert.org/expert/48086 -https://www.oceanexpert.org/expert/27533 -https://www.oceanexpert.org/expert/21860 -https://www.oceanexpert.org/expert/46426 -https://www.oceanexpert.org/expert/36961 -https://www.oceanexpert.org/institution/22153 -https://www.oceanexpert.org/expert/31040 -https://www.oceanexpert.org/expert/43800 -https://www.oceanexpert.org/expert/11168 -https://www.oceanexpert.org/expert/31691 -https://www.oceanexpert.org/institution/18188 -https://www.oceanexpert.org/expert/42080 -https://www.oceanexpert.org/institution/13431 -https://www.oceanexpert.org/event/106 -https://www.oceanexpert.org/expert/46352 -https://www.oceanexpert.org/expert/46225 -https://www.oceanexpert.org/expert/45973 -https://www.oceanexpert.org/expert/4822 -https://www.oceanexpert.org/expert/42642 -https://www.oceanexpert.org/expert/17007 -https://www.oceanexpert.org/event/694 -https://www.oceanexpert.org/expert/35561 -https://www.oceanexpert.org/expert/37495 -https://www.oceanexpert.org/expert/36497 -https://www.oceanexpert.org/institution/18363 -https://www.oceanexpert.org/expert/45206 -https://www.oceanexpert.org/institution/16907 -https://www.oceanexpert.org/institution/21711 -https://www.oceanexpert.org/event/2992 -https://www.oceanexpert.org/institution/14984 -https://www.oceanexpert.org/expert/24111 -https://www.oceanexpert.org/institution/20282 -https://www.oceanexpert.org/institution/19606 -https://www.oceanexpert.org/expert/47526 -https://www.oceanexpert.org/institution/18993 -https://www.oceanexpert.org/expert/3818 -https://www.oceanexpert.org/expert/24665 -https://www.oceanexpert.org/expert/6699 -https://www.oceanexpert.org/expert/20636 -https://www.oceanexpert.org/expert/47186 -https://www.oceanexpert.org/institution/16917 -https://www.oceanexpert.org/institution/18972 -https://www.oceanexpert.org/expert/24069 -https://www.oceanexpert.org/expert/22656 -https://www.oceanexpert.org/expert/1336 -https://www.oceanexpert.org/event/77 -https://www.oceanexpert.org/event/3056 -https://www.oceanexpert.org/expert/44487 -https://www.oceanexpert.org/expert/20020 -https://www.oceanexpert.org/expert/24328 -https://www.oceanexpert.org/expert/29935 -https://www.oceanexpert.org/expert/17836 -https://www.oceanexpert.org/expert/21295 -https://www.oceanexpert.org/expert/48403 -https://www.oceanexpert.org/event/988 -https://www.oceanexpert.org/expert/45642 -https://www.oceanexpert.org/institution/12181 -https://www.oceanexpert.org/institution/5480 -https://www.oceanexpert.org/expert/17907 -https://www.oceanexpert.org/event/1897 -https://www.oceanexpert.org/expert/27026 -https://www.oceanexpert.org/expert/17721 -https://www.oceanexpert.org/institution/15276 -https://www.oceanexpert.org/expert/22676 -https://www.oceanexpert.org/expert/35438 -https://www.oceanexpert.org/institution/20796 -https://www.oceanexpert.org/institution/16857 -https://www.oceanexpert.org/institution/10053 -https://www.oceanexpert.org/institution/17596 -https://www.oceanexpert.org/expert/26612 -https://www.oceanexpert.org/expert/42656 -https://www.oceanexpert.org/expert/26037 -https://www.oceanexpert.org/event/3084 -https://www.oceanexpert.org/institution/15210 -https://www.oceanexpert.org/expert/43542 -https://www.oceanexpert.org/event/2035 -https://www.oceanexpert.org/expert/35019 -https://www.oceanexpert.org/expert/36256 -https://www.oceanexpert.org/expert/34523 -https://www.oceanexpert.org/expert/47072 -https://www.oceanexpert.org/institution/13971 -https://www.oceanexpert.org/expert/36673 -https://www.oceanexpert.org/expert/18031 -https://www.oceanexpert.org/institution/21548 -https://www.oceanexpert.org/institution/22179 -https://www.oceanexpert.org/expert/42500 -https://www.oceanexpert.org/expert/46621 -https://www.oceanexpert.org/expert/26164 -https://www.oceanexpert.org/expert/39562 -https://www.oceanexpert.org/expert/37385 -https://www.oceanexpert.org/expert/21847 -https://www.oceanexpert.org/expert/35036 -https://www.oceanexpert.org/institution/19851 -https://www.oceanexpert.org/expert/35777 -https://www.oceanexpert.org/expert/24077 -https://www.oceanexpert.org/event/2532 -https://www.oceanexpert.org/expert/37961 -https://www.oceanexpert.org/event/650 -https://www.oceanexpert.org/expert/28001 -https://www.oceanexpert.org/expert/14826 -https://www.oceanexpert.org/institution/18710 -https://www.oceanexpert.org/event/168 -https://www.oceanexpert.org/expert/43321 -https://www.oceanexpert.org/expert/16573 -https://www.oceanexpert.org/expert/46246 -https://www.oceanexpert.org/expert/46045 -https://www.oceanexpert.org/institution/21051 -https://www.oceanexpert.org/institution/19933 -https://www.oceanexpert.org/institution/14835 -https://www.oceanexpert.org/institution/19506 -https://www.oceanexpert.org/expert/34061 -https://www.oceanexpert.org/expert/23155 -https://www.oceanexpert.org/expert/47205 -https://www.oceanexpert.org/expert/47122 -https://www.oceanexpert.org/event/592 -https://www.oceanexpert.org/expert/40645 -https://www.oceanexpert.org/expert/8761 -https://www.oceanexpert.org/expert/38593 -https://www.oceanexpert.org/expert/43310 -https://www.oceanexpert.org/institution/13633 -https://www.oceanexpert.org/institution/20915 -https://www.oceanexpert.org/expert/31058 -https://www.oceanexpert.org/expert/12496 -https://www.oceanexpert.org/expert/37049 -https://www.oceanexpert.org/expert/14483 -https://www.oceanexpert.org/expert/32606 -https://www.oceanexpert.org/expert/13861 -https://www.oceanexpert.org/expert/31887 -https://www.oceanexpert.org/event/987 -https://www.oceanexpert.org/expert/22629 -https://www.oceanexpert.org/expert/30780 -https://www.oceanexpert.org/expert/44424 -https://www.oceanexpert.org/institution/14173 -https://www.oceanexpert.org/institution/20642 -https://www.oceanexpert.org/expert/42834 -https://www.oceanexpert.org/expert/33433 -https://www.oceanexpert.org/institution/5423 -https://www.oceanexpert.org/expert/47710 -https://www.oceanexpert.org/expert/38095 -https://www.oceanexpert.org/expert/35737 -https://www.oceanexpert.org/institution/17893 -https://www.oceanexpert.org/expert/18821 -https://www.oceanexpert.org/institution/20256 -https://www.oceanexpert.org/expert/33352 -https://www.oceanexpert.org/expert/35595 -https://www.oceanexpert.org/institution/20259 -https://www.oceanexpert.org/institution/12938 -https://www.oceanexpert.org/expert/13831 -https://www.oceanexpert.org/expert/38052 -https://www.oceanexpert.org/expert/47191 -https://www.oceanexpert.org/expert/29569 -https://www.oceanexpert.org/expert/26813 -https://www.oceanexpert.org/expert/21649 -https://www.oceanexpert.org/event/142 -https://www.oceanexpert.org/expert/19317 -https://www.oceanexpert.org/institution/6632 -https://www.oceanexpert.org/expert/172 -https://www.oceanexpert.org/expert/19617 -https://www.oceanexpert.org/institution/13918 -https://www.oceanexpert.org/event/1563 -https://www.oceanexpert.org/expert/3127 -https://www.oceanexpert.org/expert/20761 -https://www.oceanexpert.org/expert/48667 -https://www.oceanexpert.org/expert/31097 -https://www.oceanexpert.org/expert/44290 -https://www.oceanexpert.org/expert/7209 -https://www.oceanexpert.org/event/2303 -https://www.oceanexpert.org/expert/46948 -https://www.oceanexpert.org/expert/22077 -https://www.oceanexpert.org/expert/18224 -https://www.oceanexpert.org/expert/18991 -https://www.oceanexpert.org/event/3251 -https://www.oceanexpert.org/expert/26116 -https://www.oceanexpert.org/expert/11367 -https://www.oceanexpert.org/expert/20822 -https://www.oceanexpert.org/event/1713 -https://www.oceanexpert.org/institution/7004 -https://www.oceanexpert.org/institution/16986 -https://www.oceanexpert.org/expert/23824 -https://www.oceanexpert.org/event/1927 -https://www.oceanexpert.org/expert/35453 -https://www.oceanexpert.org/expert/48085 -https://www.oceanexpert.org/expert/29598 -https://www.oceanexpert.org/expert/12886 -https://www.oceanexpert.org/expert/29516 -https://www.oceanexpert.org/institution/17872 -https://www.oceanexpert.org/institution/19525 -https://www.oceanexpert.org/expert/20859 -https://www.oceanexpert.org/expert/18309 -https://www.oceanexpert.org/expert/21804 -https://www.oceanexpert.org/institution/17576 -https://www.oceanexpert.org/expert/25054 -https://www.oceanexpert.org/expert/46550 -https://www.oceanexpert.org/expert/8258 -https://www.oceanexpert.org/expert/36429 -https://www.oceanexpert.org/expert/38619 -https://www.oceanexpert.org/expert/38475 -https://www.oceanexpert.org/expert/24241 -https://www.oceanexpert.org/expert/45647 -https://www.oceanexpert.org/expert/24817 -https://www.oceanexpert.org/expert/48334 -https://www.oceanexpert.org/expert/38982 -https://www.oceanexpert.org/expert/26164 -https://www.oceanexpert.org/expert/48781 -https://www.oceanexpert.org/expert/42427 -https://www.oceanexpert.org/institution/18353 -https://www.oceanexpert.org/institution/20545 -https://www.oceanexpert.org/event/1917 -https://www.oceanexpert.org/expert/16313 -https://www.oceanexpert.org/expert/33856 -https://www.oceanexpert.org/institution/19891 -https://www.oceanexpert.org/institution/15604 -https://www.oceanexpert.org/institution/20472 -https://www.oceanexpert.org/expert/44650 -https://www.oceanexpert.org/institution/17314 -https://www.oceanexpert.org/expert/31817 -https://www.oceanexpert.org/event/1351 -https://www.oceanexpert.org/expert/43604 -https://www.oceanexpert.org/event/450 -https://www.oceanexpert.org/expert/19774 -https://www.oceanexpert.org/institution/16459 -https://www.oceanexpert.org/event/2300 -https://www.oceanexpert.org/institution/8998 -https://www.oceanexpert.org/event/419 -https://www.oceanexpert.org/expert/20795 -https://www.oceanexpert.org/event/231 -https://www.oceanexpert.org/expert/37813 -https://www.oceanexpert.org/expert/26935 -https://www.oceanexpert.org/event/1627 -https://www.oceanexpert.org/expert/21536 -https://www.oceanexpert.org/expert/32216 -https://www.oceanexpert.org/expert/40105 -https://www.oceanexpert.org/expert/46763 -https://www.oceanexpert.org/expert/24675 -https://www.oceanexpert.org/expert/47805 -https://www.oceanexpert.org/expert/11749 -https://www.oceanexpert.org/expert/16727 -https://www.oceanexpert.org/expert/32750 -https://www.oceanexpert.org/expert/6935 -https://www.oceanexpert.org/expert/36334 -https://www.oceanexpert.org/expert/19123 -https://www.oceanexpert.org/expert/18663 -https://www.oceanexpert.org/institution/13432 -https://www.oceanexpert.org/institution/9214 -https://www.oceanexpert.org/institution/10794 -https://www.oceanexpert.org/expert/25087 -https://www.oceanexpert.org/expert/12752 -https://www.oceanexpert.org/expert/15353 -https://www.oceanexpert.org/institution/10468 -https://www.oceanexpert.org/expert/28157 -https://www.oceanexpert.org/expert/47770 -https://www.oceanexpert.org/expert/17628 -https://www.oceanexpert.org/institution/14881 -https://www.oceanexpert.org/institution/14671 -https://www.oceanexpert.org/expert/37941 -https://www.oceanexpert.org/event/1964 -https://www.oceanexpert.org/expert/40291 -https://www.oceanexpert.org/expert/19514 -https://www.oceanexpert.org/expert/27067 -https://www.oceanexpert.org/expert/9320 -https://www.oceanexpert.org/institution/21082 -https://www.oceanexpert.org/institution/21772 -https://www.oceanexpert.org/expert/28489 -https://www.oceanexpert.org/expert/11328 -https://www.oceanexpert.org/event/756 -https://www.oceanexpert.org/expert/29765 -https://www.oceanexpert.org/expert/17634 -https://www.oceanexpert.org/expert/44910 -https://www.oceanexpert.org/expert/44728 -https://www.oceanexpert.org/expert/39476 -https://www.oceanexpert.org/expert/1615 -https://www.oceanexpert.org/expert/34087 -https://www.oceanexpert.org/institution/22166 -https://www.oceanexpert.org/expert/44389 -https://www.oceanexpert.org/expert/32372 -https://www.oceanexpert.org/expert/43972 -https://www.oceanexpert.org/expert/20687 -https://www.oceanexpert.org/institution/19411 -https://www.oceanexpert.org/expert/37379 -https://www.oceanexpert.org/expert/46410 -https://www.oceanexpert.org/institution/21698 -https://www.oceanexpert.org/institution/13893 -https://www.oceanexpert.org/expert/38167 -https://www.oceanexpert.org/expert/46716 -https://www.oceanexpert.org/expert/47181 -https://www.oceanexpert.org/expert/29435 -https://www.oceanexpert.org/expert/33314 -https://www.oceanexpert.org/event/2536 -https://www.oceanexpert.org/expert/17455 -https://www.oceanexpert.org/expert/40348 -https://www.oceanexpert.org/institution/19463 -https://www.oceanexpert.org/institution/19697 -https://www.oceanexpert.org/event/2256 -https://www.oceanexpert.org/institution/14428 -https://www.oceanexpert.org/expert/37153 -https://www.oceanexpert.org/expert/23712 -https://www.oceanexpert.org/expert/20484 -https://www.oceanexpert.org/event/1014 -https://www.oceanexpert.org/expert/23375 -https://www.oceanexpert.org/expert/27306 -https://www.oceanexpert.org/institution/20312 -https://www.oceanexpert.org/expert/22252 -https://www.oceanexpert.org/expert/22852 -https://www.oceanexpert.org/event/2402 -https://www.oceanexpert.org/expert/25127 -https://www.oceanexpert.org/expert/45964 -https://www.oceanexpert.org/expert/46563 -https://www.oceanexpert.org/expert/17527 -https://www.oceanexpert.org/institution/10805 -https://www.oceanexpert.org/institution/16195 -https://www.oceanexpert.org/expert/46557 -https://www.oceanexpert.org/expert/24746 -https://www.oceanexpert.org/expert/27552 -https://www.oceanexpert.org/expert/18055 -https://www.oceanexpert.org/expert/13602 -https://www.oceanexpert.org/event/1457 -https://www.oceanexpert.org/expert/45598 -https://www.oceanexpert.org/expert/16044 -https://www.oceanexpert.org/institution/21314 -https://www.oceanexpert.org/expert/21812 -https://www.oceanexpert.org/expert/26701 -https://www.oceanexpert.org/expert/27291 -https://www.oceanexpert.org/expert/11696 -https://www.oceanexpert.org/expert/6378 -https://www.oceanexpert.org/event/2506 -https://www.oceanexpert.org/institution/19417 -https://www.oceanexpert.org/expert/4415 -https://www.oceanexpert.org/event/433 -https://www.oceanexpert.org/expert/8641 -https://www.oceanexpert.org/expert/23536 -https://www.oceanexpert.org/event/3062 -https://www.oceanexpert.org/expert/24274 -https://www.oceanexpert.org/expert/28448 -https://www.oceanexpert.org/expert/26842 -https://www.oceanexpert.org/expert/29616 -https://www.oceanexpert.org/expert/11564 -https://www.oceanexpert.org/expert/16154 -https://www.oceanexpert.org/expert/818 -https://www.oceanexpert.org/expert/34650 -https://www.oceanexpert.org/expert/36502 -https://www.oceanexpert.org/expert/37709 -https://www.oceanexpert.org/institution/12314 -https://www.oceanexpert.org/expert/22651 -https://www.oceanexpert.org/expert/25495 -https://www.oceanexpert.org/expert/47378 -https://www.oceanexpert.org/expert/11184 -https://www.oceanexpert.org/event/2072 -https://www.oceanexpert.org/expert/44050 -https://www.oceanexpert.org/expert/30246 -https://www.oceanexpert.org/institution/5477 -https://www.oceanexpert.org/event/2921 -https://www.oceanexpert.org/expert/31747 -https://www.oceanexpert.org/event/1343 -https://www.oceanexpert.org/institution/14373 -https://www.oceanexpert.org/expert/34607 -https://www.oceanexpert.org/expert/22695 -https://www.oceanexpert.org/expert/32513 -https://www.oceanexpert.org/expert/24009 -https://www.oceanexpert.org/expert/31201 -https://www.oceanexpert.org/expert/8850 -https://www.oceanexpert.org/expert/14417 -https://www.oceanexpert.org/expert/26227 -https://www.oceanexpert.org/institution/14678 -https://www.oceanexpert.org/expert/44209 -https://www.oceanexpert.org/expert/23538 -https://www.oceanexpert.org/expert/17807 -https://www.oceanexpert.org/expert/36584 -https://www.oceanexpert.org/expert/32360 -https://www.oceanexpert.org/expert/17826 -https://www.oceanexpert.org/institution/18373 -https://www.oceanexpert.org/institution/16889 -https://www.oceanexpert.org/expert/29798 -https://www.oceanexpert.org/expert/47375 -https://www.oceanexpert.org/institution/13983 -https://www.oceanexpert.org/expert/46605 -https://www.oceanexpert.org/expert/31675 -https://www.oceanexpert.org/institution/18745 -https://www.oceanexpert.org/institution/10633 -https://www.oceanexpert.org/expert/31089 -https://www.oceanexpert.org/expert/21201 -https://www.oceanexpert.org/event/2891 -https://www.oceanexpert.org/institution/19457 -https://www.oceanexpert.org/expert/35479 -https://www.oceanexpert.org/institution/5042 -https://www.oceanexpert.org/event/2298 -https://www.oceanexpert.org/institution/12108 -https://www.oceanexpert.org/expert/42304 -https://www.oceanexpert.org/event/248 -https://www.oceanexpert.org/expert/26743 -https://www.oceanexpert.org/expert/17205 -https://www.oceanexpert.org/event/1883 -https://www.oceanexpert.org/expert/12780 -https://www.oceanexpert.org/institution/21002 -https://www.oceanexpert.org/expert/28155 -https://www.oceanexpert.org/institution/18319 -https://www.oceanexpert.org/expert/17561 -https://www.oceanexpert.org/expert/14992 -https://www.oceanexpert.org/institution/20259 -https://www.oceanexpert.org/institution/21277 -https://www.oceanexpert.org/expert/17773 -https://www.oceanexpert.org/expert/18195 -https://www.oceanexpert.org/expert/25247 -https://www.oceanexpert.org/expert/34059 -https://www.oceanexpert.org/expert/21521 -https://www.oceanexpert.org/institution/18922 -https://www.oceanexpert.org/institution/11556 -https://www.oceanexpert.org/expert/25137 -https://www.oceanexpert.org/institution/17966 -https://www.oceanexpert.org/expert/43687 -https://www.oceanexpert.org/institution/5349 -https://www.oceanexpert.org/expert/23419 -https://www.oceanexpert.org/expert/35303 -https://www.oceanexpert.org/expert/9134 -https://www.oceanexpert.org/expert/11857 -https://www.oceanexpert.org/institution/19773 -https://www.oceanexpert.org/event/2568 -https://www.oceanexpert.org/expert/2108 -https://www.oceanexpert.org/expert/37267 -https://www.oceanexpert.org/expert/32019 -https://www.oceanexpert.org/expert/38079 -https://www.oceanexpert.org/institution/9521 -https://www.oceanexpert.org/expert/34071 -https://www.oceanexpert.org/expert/26144 -https://www.oceanexpert.org/expert/12332 -https://www.oceanexpert.org/expert/30384 -https://www.oceanexpert.org/expert/38007 -https://www.oceanexpert.org/expert/31985 -https://www.oceanexpert.org/event/2860 -https://www.oceanexpert.org/expert/47145 -https://www.oceanexpert.org/expert/19711 -https://www.oceanexpert.org/institution/13016 -https://www.oceanexpert.org/expert/26333 -https://www.oceanexpert.org/expert/37718 -https://www.oceanexpert.org/expert/27909 -https://www.oceanexpert.org/institution/15726 -https://www.oceanexpert.org/expert/20630 -https://www.oceanexpert.org/expert/19210 -https://www.oceanexpert.org/expert/23167 -https://www.oceanexpert.org/expert/44531 -https://www.oceanexpert.org/expert/43903 -https://www.oceanexpert.org/expert/42753 -https://www.oceanexpert.org/event/616 -https://www.oceanexpert.org/expert/42625 -https://www.oceanexpert.org/institution/21142 -https://www.oceanexpert.org/expert/27531 -https://www.oceanexpert.org/expert/49050 -https://www.oceanexpert.org/event/3112 -https://www.oceanexpert.org/expert/36116 -https://www.oceanexpert.org/institution/18383 -https://www.oceanexpert.org/expert/22198 -https://www.oceanexpert.org/institution/17150 -https://www.oceanexpert.org/expert/24479 -https://www.oceanexpert.org/institution/13059 -https://www.oceanexpert.org/expert/32216 -https://www.oceanexpert.org/expert/17628 -https://www.oceanexpert.org/expert/19911 -https://www.oceanexpert.org/expert/36986 -https://www.oceanexpert.org/institution/14620 -https://www.oceanexpert.org/institution/14245 -https://www.oceanexpert.org/expert/47250 -https://www.oceanexpert.org/event/1526 -https://www.oceanexpert.org/expert/48913 -https://www.oceanexpert.org/expert/44743 -https://www.oceanexpert.org/expert/5239 -https://www.oceanexpert.org/expert/26276 -https://www.oceanexpert.org/expert/32492 -https://www.oceanexpert.org/event/534 -https://www.oceanexpert.org/expert/32463 -https://www.oceanexpert.org/expert/3819 -https://www.oceanexpert.org/expert/27393 -https://www.oceanexpert.org/institution/13004 -https://www.oceanexpert.org/institution/19852 -https://www.oceanexpert.org/expert/29147 -https://www.oceanexpert.org/institution/11604 -https://www.oceanexpert.org/expert/44800 -https://www.oceanexpert.org/event/682 -https://www.oceanexpert.org/expert/44150 -https://www.oceanexpert.org/event/1573 -https://www.oceanexpert.org/expert/12878 -https://www.oceanexpert.org/institution/12273 -https://www.oceanexpert.org/institution/18301 -https://www.oceanexpert.org/expert/23376 -https://www.oceanexpert.org/expert/45803 -https://www.oceanexpert.org/expert/19307 -https://www.oceanexpert.org/expert/2302 -https://www.oceanexpert.org/institution/13810 -https://www.oceanexpert.org/institution/18469 -https://www.oceanexpert.org/expert/24313 -https://www.oceanexpert.org/expert/32708 -https://www.oceanexpert.org/expert/18829 -https://www.oceanexpert.org/expert/14607 -https://www.oceanexpert.org/expert/17174 -https://www.oceanexpert.org/event/2004 -https://www.oceanexpert.org/event/1180 -https://www.oceanexpert.org/expert/20882 -https://www.oceanexpert.org/expert/19170 -https://www.oceanexpert.org/expert/24016 -https://www.oceanexpert.org/expert/42568 -https://www.oceanexpert.org/expert/31418 -https://www.oceanexpert.org/expert/19131 -https://www.oceanexpert.org/institution/9635 -https://www.oceanexpert.org/expert/23326 -https://www.oceanexpert.org/expert/26214 -https://www.oceanexpert.org/institution/20795 -https://www.oceanexpert.org/event/209 -https://www.oceanexpert.org/expert/47125 -https://www.oceanexpert.org/expert/26954 -https://www.oceanexpert.org/expert/43001 -https://www.oceanexpert.org/expert/18603 -https://www.oceanexpert.org/expert/48874 -https://www.oceanexpert.org/expert/39964 -https://www.oceanexpert.org/institution/21139 -https://www.oceanexpert.org/institution/18888 -https://www.oceanexpert.org/event/1724 -https://www.oceanexpert.org/expert/40080 -https://www.oceanexpert.org/expert/29697 -https://www.oceanexpert.org/institution/10814 -https://www.oceanexpert.org/expert/34187 -https://www.oceanexpert.org/expert/10852 -https://www.oceanexpert.org/expert/20272 -https://www.oceanexpert.org/expert/34928 -https://www.oceanexpert.org/expert/47790 -https://www.oceanexpert.org/expert/23185 -https://www.oceanexpert.org/expert/18047 -https://www.oceanexpert.org/institution/18669 -https://www.oceanexpert.org/expert/28314 -https://www.oceanexpert.org/expert/18975 -https://www.oceanexpert.org/expert/39056 -https://www.oceanexpert.org/expert/35143 -https://www.oceanexpert.org/expert/32173 -https://www.oceanexpert.org/expert/24527 -https://www.oceanexpert.org/institution/18011 -https://www.oceanexpert.org/expert/46359 -https://www.oceanexpert.org/expert/36693 -https://www.oceanexpert.org/expert/18547 -https://www.oceanexpert.org/institution/20039 -https://www.oceanexpert.org/institution/18088 -https://www.oceanexpert.org/expert/43193 -https://www.oceanexpert.org/event/1486 -https://www.oceanexpert.org/expert/43205 -https://www.oceanexpert.org/expert/1596 -https://www.oceanexpert.org/expert/48907 -https://www.oceanexpert.org/expert/25951 -https://www.oceanexpert.org/institution/11053 -https://www.oceanexpert.org/expert/47320 -https://www.oceanexpert.org/institution/5838 -https://www.oceanexpert.org/expert/30785 -https://www.oceanexpert.org/expert/26617 -https://www.oceanexpert.org/expert/42833 -https://www.oceanexpert.org/expert/36349 -https://www.oceanexpert.org/expert/38083 -https://www.oceanexpert.org/institution/18647 -https://www.oceanexpert.org/expert/27567 -https://www.oceanexpert.org/institution/20738 -https://www.oceanexpert.org/expert/43004 -https://www.oceanexpert.org/expert/25179 -https://www.oceanexpert.org/expert/27370 -https://www.oceanexpert.org/institution/21674 -https://www.oceanexpert.org/institution/5108 -https://www.oceanexpert.org/event/2587 -https://www.oceanexpert.org/event/727 -https://www.oceanexpert.org/expert/8106 -https://www.oceanexpert.org/expert/24409 -https://www.oceanexpert.org/expert/47517 -https://www.oceanexpert.org/expert/18219 -https://www.oceanexpert.org/expert/45176 -https://www.oceanexpert.org/event/1741 -https://www.oceanexpert.org/expert/19699 -https://www.oceanexpert.org/institution/19369 -https://www.oceanexpert.org/event/1425 -https://www.oceanexpert.org/expert/26025 -https://www.oceanexpert.org/expert/37183 -https://www.oceanexpert.org/event/2833 -https://www.oceanexpert.org/expert/28019 -https://www.oceanexpert.org/institution/19181 -https://www.oceanexpert.org/expert/47158 -https://www.oceanexpert.org/expert/40105 -https://www.oceanexpert.org/institution/6550 -https://www.oceanexpert.org/expert/18762 -https://www.oceanexpert.org/institution/12611 -https://www.oceanexpert.org/expert/47367 -https://www.oceanexpert.org/event/832 -https://www.oceanexpert.org/expert/15042 -https://www.oceanexpert.org/institution/11493 -https://www.oceanexpert.org/event/2443 -https://www.oceanexpert.org/expert/43784 -https://www.oceanexpert.org/expert/7162 -https://www.oceanexpert.org/expert/37383 -https://www.oceanexpert.org/event/1329 -https://www.oceanexpert.org/event/2190 -https://www.oceanexpert.org/expert/43799 -https://www.oceanexpert.org/expert/45174 -https://www.oceanexpert.org/expert/25962 -https://www.oceanexpert.org/institution/18621 -https://www.oceanexpert.org/expert/33621 -https://www.oceanexpert.org/institution/20312 -https://www.oceanexpert.org/expert/30223 -https://www.oceanexpert.org/expert/38024 -https://www.oceanexpert.org/expert/30409 -https://www.oceanexpert.org/expert/19447 -https://www.oceanexpert.org/expert/29093 -https://www.oceanexpert.org/expert/23192 -https://www.oceanexpert.org/institution/20990 -https://www.oceanexpert.org/event/1912 -https://www.oceanexpert.org/expert/48320 -https://www.oceanexpert.org/institution/19049 -https://www.oceanexpert.org/expert/26827 -https://www.oceanexpert.org/expert/21990 -https://www.oceanexpert.org/expert/37826 -https://www.oceanexpert.org/event/689 -https://www.oceanexpert.org/expert/27458 -https://www.oceanexpert.org/expert/18278 -https://www.oceanexpert.org/expert/21286 -https://www.oceanexpert.org/institution/14681 -https://www.oceanexpert.org/expert/45788 -https://www.oceanexpert.org/institution/21300 -https://www.oceanexpert.org/expert/45490 -https://www.oceanexpert.org/expert/36835 -https://www.oceanexpert.org/institution/9526 -https://www.oceanexpert.org/event/1682 -https://www.oceanexpert.org/expert/25406 -https://www.oceanexpert.org/expert/19885 -https://www.oceanexpert.org/expert/46655 -https://www.oceanexpert.org/expert/36677 -https://www.oceanexpert.org/event/1753 -https://www.oceanexpert.org/expert/16872 -https://www.oceanexpert.org/expert/26167 -https://www.oceanexpert.org/institution/19687 -https://www.oceanexpert.org/expert/37633 -https://www.oceanexpert.org/expert/20193 -https://www.oceanexpert.org/expert/22262 -https://www.oceanexpert.org/expert/44741 -https://www.oceanexpert.org/expert/4561 -https://www.oceanexpert.org/expert/45034 -https://www.oceanexpert.org/expert/31697 -https://www.oceanexpert.org/institution/13280 -https://www.oceanexpert.org/expert/39469 -https://www.oceanexpert.org/institution/14127 -https://www.oceanexpert.org/expert/32861 -https://www.oceanexpert.org/institution/18762 -https://www.oceanexpert.org/expert/35084 -https://www.oceanexpert.org/event/1491 -https://www.oceanexpert.org/event/40 -https://www.oceanexpert.org/expert/3598 -https://www.oceanexpert.org/expert/46477 -https://www.oceanexpert.org/expert/47035 -https://www.oceanexpert.org/institution/12489 -https://www.oceanexpert.org/expert/21344 -https://www.oceanexpert.org/expert/37222 -https://www.oceanexpert.org/expert/16119 -https://www.oceanexpert.org/expert/43823 -https://www.oceanexpert.org/expert/21520 -https://www.oceanexpert.org/expert/19776 -https://www.oceanexpert.org/expert/30821 -https://www.oceanexpert.org/institution/19333 -https://www.oceanexpert.org/event/220 -https://www.oceanexpert.org/institution/19662 -https://www.oceanexpert.org/institution/18045 -https://www.oceanexpert.org/expert/43328 -https://www.oceanexpert.org/expert/32974 -https://www.oceanexpert.org/expert/25048 -https://www.oceanexpert.org/expert/21624 -https://www.oceanexpert.org/institution/19405 -https://www.oceanexpert.org/expert/22804 -https://www.oceanexpert.org/expert/29140 -https://www.oceanexpert.org/expert/44539 -https://www.oceanexpert.org/expert/17111 -https://www.oceanexpert.org/expert/21363 -https://www.oceanexpert.org/institution/18033 -https://www.oceanexpert.org/expert/14308 -https://www.oceanexpert.org/expert/21883 -https://www.oceanexpert.org/institution/8173 -https://www.oceanexpert.org/expert/42304 -https://www.oceanexpert.org/expert/11051 -https://www.oceanexpert.org/expert/28376 -https://www.oceanexpert.org/institution/21795 -https://www.oceanexpert.org/expert/22283 -https://www.oceanexpert.org/expert/26756 -https://www.oceanexpert.org/expert/35525 -https://www.oceanexpert.org/expert/8574 -https://www.oceanexpert.org/event/144 -https://www.oceanexpert.org/expert/35998 -https://www.oceanexpert.org/expert/33207 -https://www.oceanexpert.org/institution/12787 -https://www.oceanexpert.org/expert/27238 -https://www.oceanexpert.org/expert/47885 -https://www.oceanexpert.org/expert/28477 -https://www.oceanexpert.org/expert/46343 -https://www.oceanexpert.org/expert/19944 -https://www.oceanexpert.org/institution/19215 -https://www.oceanexpert.org/institution/7249 -https://www.oceanexpert.org/expert/46266 -https://www.oceanexpert.org/expert/30888 -https://www.oceanexpert.org/institution/18485 -https://www.oceanexpert.org/expert/45915 -https://www.oceanexpert.org/expert/17432 -https://www.oceanexpert.org/expert/17987 -https://www.oceanexpert.org/expert/37195 -https://www.oceanexpert.org/expert/36088 -https://www.oceanexpert.org/institution/11482 -https://www.oceanexpert.org/institution/19131 -https://www.oceanexpert.org/expert/32797 -https://www.oceanexpert.org/expert/38899 -https://www.oceanexpert.org/expert/15526 -https://www.oceanexpert.org/expert/24077 -https://www.oceanexpert.org/expert/32961 -https://www.oceanexpert.org/event/1810 -https://www.oceanexpert.org/institution/20198 -https://www.oceanexpert.org/event/2198 -https://www.oceanexpert.org/expert/33464 -https://www.oceanexpert.org/event/2428 -https://www.oceanexpert.org/expert/38905 -https://www.oceanexpert.org/expert/18987 -https://www.oceanexpert.org/event/2989 -https://www.oceanexpert.org/expert/48597 -https://www.oceanexpert.org/expert/33783 -https://www.oceanexpert.org/expert/48499 -https://www.oceanexpert.org/institution/13549 -https://www.oceanexpert.org/expert/22224 -https://www.oceanexpert.org/expert/23559 -https://www.oceanexpert.org/expert/42777 -https://www.oceanexpert.org/institution/15384 -https://www.oceanexpert.org/expert/34474 -https://www.oceanexpert.org/expert/48024 -https://www.oceanexpert.org/expert/34543 -https://www.oceanexpert.org/expert/21817 -https://www.oceanexpert.org/expert/24065 -https://www.oceanexpert.org/institution/20347 -https://www.oceanexpert.org/expert/27147 -https://www.oceanexpert.org/expert/19654 -https://www.oceanexpert.org/expert/39620 -https://www.oceanexpert.org/institution/16667 -https://www.oceanexpert.org/institution/10818 -https://www.oceanexpert.org/expert/47769 -https://www.oceanexpert.org/expert/24106 -https://www.oceanexpert.org/institution/18752 -https://www.oceanexpert.org/expert/32371 -https://www.oceanexpert.org/event/2865 -https://www.oceanexpert.org/expert/4594 -https://www.oceanexpert.org/expert/36305 -https://www.oceanexpert.org/expert/2406 -https://www.oceanexpert.org/expert/2620 -https://www.oceanexpert.org/expert/35289 -https://www.oceanexpert.org/event/2672 -https://www.oceanexpert.org/expert/29721 -https://www.oceanexpert.org/expert/25519 -https://www.oceanexpert.org/event/2082 -https://www.oceanexpert.org/institution/14093 -https://www.oceanexpert.org/institution/11079 -https://www.oceanexpert.org/institution/21552 -https://www.oceanexpert.org/expert/26410 -https://www.oceanexpert.org/expert/46326 -https://www.oceanexpert.org/expert/299 -https://www.oceanexpert.org/institution/11371 -https://www.oceanexpert.org/expert/47144 -https://www.oceanexpert.org/institution/5485 -https://www.oceanexpert.org/institution/11878 -https://www.oceanexpert.org/expert/24422 -https://www.oceanexpert.org/expert/31771 -https://www.oceanexpert.org/expert/25693 -https://www.oceanexpert.org/expert/37802 -https://www.oceanexpert.org/expert/23913 -https://www.oceanexpert.org/expert/36902 -https://www.oceanexpert.org/expert/16535 -https://www.oceanexpert.org/expert/28133 -https://www.oceanexpert.org/expert/46786 -https://www.oceanexpert.org/institution/21520 -https://www.oceanexpert.org/institution/18662 -https://www.oceanexpert.org/institution/12002 -https://www.oceanexpert.org/expert/46658 -https://www.oceanexpert.org/expert/35100 -https://www.oceanexpert.org/institution/20969 -https://www.oceanexpert.org/institution/14021 -https://www.oceanexpert.org/expert/48566 -https://www.oceanexpert.org/event/1274 -https://www.oceanexpert.org/expert/43590 -https://www.oceanexpert.org/event/1248 -https://www.oceanexpert.org/expert/35197 -https://www.oceanexpert.org/institution/21207 -https://www.oceanexpert.org/expert/47290 -https://www.oceanexpert.org/expert/18919 -https://www.oceanexpert.org/expert/13415 -https://www.oceanexpert.org/institution/5851 -https://www.oceanexpert.org/expert/48713 -https://www.oceanexpert.org/event/1531 -https://www.oceanexpert.org/institution/21606 -https://www.oceanexpert.org/expert/27644 -https://www.oceanexpert.org/expert/26562 -https://www.oceanexpert.org/expert/33424 -https://www.oceanexpert.org/expert/17292 -https://www.oceanexpert.org/institution/11228 -https://www.oceanexpert.org/expert/12984 -https://www.oceanexpert.org/expert/40645 -https://www.oceanexpert.org/event/2999 -https://www.oceanexpert.org/expert/17355 -https://www.oceanexpert.org/institution/19100 -https://www.oceanexpert.org/expert/31446 -https://www.oceanexpert.org/institution/11676 -https://www.oceanexpert.org/expert/46651 -https://www.oceanexpert.org/event/305 -https://www.oceanexpert.org/institution/8960 -https://www.oceanexpert.org/expert/17260 -https://www.oceanexpert.org/expert/33629 -https://www.oceanexpert.org/expert/21861 -https://www.oceanexpert.org/institution/20868 -https://www.oceanexpert.org/expert/20177 -https://www.oceanexpert.org/event/1638 -https://www.oceanexpert.org/institution/18565 -https://www.oceanexpert.org/expert/23928 -https://www.oceanexpert.org/expert/13552 -https://www.oceanexpert.org/institution/16780 -https://www.oceanexpert.org/expert/16155 -https://www.oceanexpert.org/expert/32371 -https://www.oceanexpert.org/institution/13087 -https://www.oceanexpert.org/institution/21590 -https://www.oceanexpert.org/expert/14424 -https://www.oceanexpert.org/expert/44788 -https://www.oceanexpert.org/expert/29511 -https://www.oceanexpert.org/institution/18742 -https://www.oceanexpert.org/expert/42438 -https://www.oceanexpert.org/expert/20710 -https://www.oceanexpert.org/institution/18731 -https://www.oceanexpert.org/expert/31769 -https://www.oceanexpert.org/expert/27323 -https://www.oceanexpert.org/expert/25998 -https://www.oceanexpert.org/expert/40130 -https://www.oceanexpert.org/expert/21241 -https://www.oceanexpert.org/institution/17311 -https://www.oceanexpert.org/institution/19974 -https://www.oceanexpert.org/expert/47170 -https://www.oceanexpert.org/expert/25897 -https://www.oceanexpert.org/expert/31206 -https://www.oceanexpert.org/expert/19724 -https://www.oceanexpert.org/expert/48435 -https://www.oceanexpert.org/expert/20105 -https://www.oceanexpert.org/expert/23574 -https://www.oceanexpert.org/institution/10717 -https://www.oceanexpert.org/institution/11590 -https://www.oceanexpert.org/institution/18006 -https://www.oceanexpert.org/institution/20080 -https://www.oceanexpert.org/expert/43731 -https://www.oceanexpert.org/expert/35561 -https://www.oceanexpert.org/expert/23413 -https://www.oceanexpert.org/expert/20824 -https://www.oceanexpert.org/expert/36223 -https://www.oceanexpert.org/institution/22037 -https://www.oceanexpert.org/institution/5205 -https://www.oceanexpert.org/expert/26906 -https://www.oceanexpert.org/expert/20344 -https://www.oceanexpert.org/institution/12496 -https://www.oceanexpert.org/expert/27003 -https://www.oceanexpert.org/expert/46381 -https://www.oceanexpert.org/expert/6656 -https://www.oceanexpert.org/institution/17180 -https://www.oceanexpert.org/expert/37635 -https://www.oceanexpert.org/institution/20056 -https://www.oceanexpert.org/institution/18677 -https://www.oceanexpert.org/expert/30985 -https://www.oceanexpert.org/expert/38985 -https://www.oceanexpert.org/expert/47195 -https://www.oceanexpert.org/expert/32701 -https://www.oceanexpert.org/institution/19120 -https://www.oceanexpert.org/expert/32099 -https://www.oceanexpert.org/expert/36603 -https://www.oceanexpert.org/expert/5419 -https://www.oceanexpert.org/expert/26389 -https://www.oceanexpert.org/expert/7484 -https://www.oceanexpert.org/institution/16664 -https://www.oceanexpert.org/expert/46550 -https://www.oceanexpert.org/expert/20718 -https://www.oceanexpert.org/expert/19320 -https://www.oceanexpert.org/expert/42961 -https://www.oceanexpert.org/expert/47367 -https://www.oceanexpert.org/expert/22585 -https://www.oceanexpert.org/expert/38008 -https://www.oceanexpert.org/institution/19369 -https://www.oceanexpert.org/expert/15855 -https://www.oceanexpert.org/expert/32620 -https://www.oceanexpert.org/expert/36058 -https://www.oceanexpert.org/expert/26297 -https://www.oceanexpert.org/expert/28151 -https://www.oceanexpert.org/expert/32396 -https://www.oceanexpert.org/institution/11809 -https://www.oceanexpert.org/institution/20933 -https://www.oceanexpert.org/institution/5057 -https://www.oceanexpert.org/event/2088 -https://www.oceanexpert.org/expert/23445 -https://www.oceanexpert.org/expert/23649 -https://www.oceanexpert.org/event/710 -https://www.oceanexpert.org/expert/27227 -https://www.oceanexpert.org/institution/7979 -https://www.oceanexpert.org/expert/48507 -https://www.oceanexpert.org/expert/29486 -https://www.oceanexpert.org/event/1063 -https://www.oceanexpert.org/expert/47853 -https://www.oceanexpert.org/institution/12424 -https://www.oceanexpert.org/expert/32820 -https://www.oceanexpert.org/expert/34802 -https://www.oceanexpert.org/expert/23397 -https://www.oceanexpert.org/expert/46297 -https://www.oceanexpert.org/expert/46226 -https://www.oceanexpert.org/expert/27757 -https://www.oceanexpert.org/event/1172 -https://www.oceanexpert.org/expert/34008 -https://www.oceanexpert.org/expert/40517 -https://www.oceanexpert.org/expert/38751 -https://www.oceanexpert.org/event/1714 -https://www.oceanexpert.org/expert/17918 -https://www.oceanexpert.org/expert/25484 -https://www.oceanexpert.org/expert/2474 -https://www.oceanexpert.org/event/1157 -https://www.oceanexpert.org/expert/41686 -https://www.oceanexpert.org/expert/24311 -https://www.oceanexpert.org/event/898 -https://www.oceanexpert.org/expert/7725 -https://www.oceanexpert.org/institution/20962 -https://www.oceanexpert.org/institution/9994 -https://www.oceanexpert.org/institution/21111 -https://www.oceanexpert.org/institution/18422 -https://www.oceanexpert.org/expert/19238 -https://www.oceanexpert.org/expert/44803 -https://www.oceanexpert.org/expert/1342 -https://www.oceanexpert.org/institution/19463 -https://www.oceanexpert.org/expert/47007 -https://www.oceanexpert.org/expert/17046 -https://www.oceanexpert.org/expert/21850 -https://www.oceanexpert.org/expert/18941 -https://www.oceanexpert.org/expert/38713 -https://www.oceanexpert.org/expert/17228 -https://www.oceanexpert.org/expert/39352 -https://www.oceanexpert.org/expert/31059 -https://www.oceanexpert.org/expert/28046 -https://www.oceanexpert.org/expert/11479 -https://www.oceanexpert.org/expert/44444 -https://www.oceanexpert.org/event/3064 -https://www.oceanexpert.org/event/1016 -https://www.oceanexpert.org/expert/28160 -https://www.oceanexpert.org/institution/18697 -https://www.oceanexpert.org/event/2913 -https://www.oceanexpert.org/expert/43796 -https://www.oceanexpert.org/expert/47097 -https://www.oceanexpert.org/institution/4941 -https://www.oceanexpert.org/expert/45499 -https://www.oceanexpert.org/expert/17541 -https://www.oceanexpert.org/expert/12076 -https://www.oceanexpert.org/expert/19984 -https://www.oceanexpert.org/expert/42804 -https://www.oceanexpert.org/institution/20683 -https://www.oceanexpert.org/expert/17605 -https://www.oceanexpert.org/expert/31326 -https://www.oceanexpert.org/expert/27248 -https://www.oceanexpert.org/expert/48596 -https://www.oceanexpert.org/expert/45681 -https://www.oceanexpert.org/expert/24965 -https://www.oceanexpert.org/expert/15379 -https://www.oceanexpert.org/expert/8103 -https://www.oceanexpert.org/institution/12392 -https://www.oceanexpert.org/institution/10632 -https://www.oceanexpert.org/institution/13392 -https://www.oceanexpert.org/event/1037 -https://www.oceanexpert.org/expert/35473 -https://www.oceanexpert.org/expert/37479 -https://www.oceanexpert.org/institution/21613 -https://www.oceanexpert.org/expert/40019 -https://www.oceanexpert.org/expert/21958 -https://www.oceanexpert.org/expert/38200 -https://www.oceanexpert.org/expert/40885 -https://www.oceanexpert.org/expert/43063 -https://www.oceanexpert.org/institution/10106 -https://www.oceanexpert.org/expert/21825 -https://www.oceanexpert.org/institution/17460 -https://www.oceanexpert.org/institution/11368 -https://www.oceanexpert.org/expert/19407 -https://www.oceanexpert.org/expert/42890 -https://www.oceanexpert.org/event/2009 -https://www.oceanexpert.org/expert/36784 -https://www.oceanexpert.org/expert/13655 -https://www.oceanexpert.org/expert/24586 -https://www.oceanexpert.org/institution/21315 -https://www.oceanexpert.org/institution/19493 -https://www.oceanexpert.org/expert/43953 -https://www.oceanexpert.org/expert/7574 -https://www.oceanexpert.org/expert/20483 -https://www.oceanexpert.org/institution/18728 -https://www.oceanexpert.org/expert/34504 -https://www.oceanexpert.org/event/2579 -https://www.oceanexpert.org/expert/16319 -https://www.oceanexpert.org/institution/8499 -https://www.oceanexpert.org/expert/35786 -https://www.oceanexpert.org/expert/34218 -https://www.oceanexpert.org/expert/25195 -https://www.oceanexpert.org/expert/20605 -https://www.oceanexpert.org/expert/26904 -https://www.oceanexpert.org/expert/26789 -https://www.oceanexpert.org/institution/19973 -https://www.oceanexpert.org/event/2181 -https://www.oceanexpert.org/institution/11022 -https://www.oceanexpert.org/institution/21301 -https://www.oceanexpert.org/expert/43908 -https://www.oceanexpert.org/expert/42497 -https://www.oceanexpert.org/expert/37711 -https://www.oceanexpert.org/expert/35285 -https://www.oceanexpert.org/institution/6857 -https://www.oceanexpert.org/event/1268 -https://www.oceanexpert.org/institution/19047 -https://www.oceanexpert.org/expert/46423 -https://www.oceanexpert.org/expert/24152 -https://www.oceanexpert.org/expert/20246 -https://www.oceanexpert.org/expert/33831 -https://www.oceanexpert.org/expert/28440 -https://www.oceanexpert.org/expert/19632 -https://www.oceanexpert.org/expert/31376 -https://www.oceanexpert.org/institution/18685 -https://www.oceanexpert.org/institution/20817 -https://www.oceanexpert.org/expert/19630 -https://www.oceanexpert.org/institution/18383 -https://www.oceanexpert.org/institution/14068 -https://www.oceanexpert.org/expert/45101 -https://www.oceanexpert.org/expert/17922 -https://www.oceanexpert.org/expert/49055 -https://www.oceanexpert.org/expert/26608 -https://www.oceanexpert.org/expert/8896 -https://www.oceanexpert.org/expert/44785 -https://www.oceanexpert.org/expert/37531 -https://www.oceanexpert.org/expert/12551 -https://www.oceanexpert.org/expert/32877 -https://www.oceanexpert.org/expert/33788 -https://www.oceanexpert.org/expert/42536 -https://www.oceanexpert.org/expert/12639 -https://www.oceanexpert.org/expert/12572 -https://www.oceanexpert.org/institution/21637 -https://www.oceanexpert.org/expert/42823 -https://www.oceanexpert.org/expert/21706 -https://www.oceanexpert.org/institution/11350 -https://www.oceanexpert.org/event/2336 -https://www.oceanexpert.org/expert/27374 -https://www.oceanexpert.org/event/2299 -https://www.oceanexpert.org/expert/14785 -https://www.oceanexpert.org/expert/32881 -https://www.oceanexpert.org/expert/29809 -https://www.oceanexpert.org/expert/30132 -https://www.oceanexpert.org/institution/18196 -https://www.oceanexpert.org/institution/14545 -https://www.oceanexpert.org/expert/41674 -https://www.oceanexpert.org/expert/46061 -https://www.oceanexpert.org/expert/15541 -https://www.oceanexpert.org/event/513 -https://www.oceanexpert.org/expert/25331 -https://www.oceanexpert.org/expert/17274 -https://www.oceanexpert.org/expert/25422 -https://www.oceanexpert.org/expert/40340 -https://www.oceanexpert.org/institution/7409 -https://www.oceanexpert.org/expert/30170 -https://www.oceanexpert.org/institution/22027 -https://www.oceanexpert.org/expert/29775 -https://www.oceanexpert.org/expert/22255 -https://www.oceanexpert.org/expert/36039 -https://www.oceanexpert.org/institution/5477 -https://www.oceanexpert.org/expert/24195 -https://www.oceanexpert.org/expert/48287 -https://www.oceanexpert.org/expert/43045 -https://www.oceanexpert.org/expert/36196 -https://www.oceanexpert.org/expert/6905 -https://www.oceanexpert.org/expert/35674 -https://www.oceanexpert.org/institution/8487 -https://www.oceanexpert.org/expert/38054 -https://www.oceanexpert.org/expert/35869 -https://www.oceanexpert.org/expert/35076 -https://www.oceanexpert.org/expert/22571 -https://www.oceanexpert.org/institution/17021 -https://www.oceanexpert.org/expert/26718 -https://www.oceanexpert.org/expert/43761 -https://www.oceanexpert.org/expert/25785 -https://www.oceanexpert.org/institution/8438 -https://www.oceanexpert.org/expert/42954 -https://www.oceanexpert.org/expert/47554 -https://www.oceanexpert.org/expert/32827 -https://www.oceanexpert.org/expert/32442 -https://www.oceanexpert.org/institution/10460 -https://www.oceanexpert.org/expert/27154 -https://www.oceanexpert.org/event/2195 -https://www.oceanexpert.org/expert/11234 -https://www.oceanexpert.org/institution/11454 -https://www.oceanexpert.org/expert/34877 -https://www.oceanexpert.org/event/1165 -https://www.oceanexpert.org/expert/26426 -https://www.oceanexpert.org/expert/44759 -https://www.oceanexpert.org/institution/18734 -https://www.oceanexpert.org/institution/17559 -https://www.oceanexpert.org/institution/13879 -https://www.oceanexpert.org/event/2753 -https://www.oceanexpert.org/expert/17587 -https://www.oceanexpert.org/expert/22937 -https://www.oceanexpert.org/event/2308 -https://www.oceanexpert.org/expert/48148 -https://www.oceanexpert.org/expert/42811 -https://www.oceanexpert.org/expert/19862 -https://www.oceanexpert.org/expert/43513 -https://www.oceanexpert.org/expert/32128 -https://www.oceanexpert.org/institution/20831 -https://www.oceanexpert.org/expert/18189 -https://www.oceanexpert.org/expert/19608 -https://www.oceanexpert.org/expert/46899 -https://www.oceanexpert.org/expert/22088 -https://www.oceanexpert.org/expert/18324 -https://www.oceanexpert.org/expert/46452 -https://www.oceanexpert.org/expert/18238 -https://www.oceanexpert.org/expert/7171 -https://www.oceanexpert.org/expert/43101 -https://www.oceanexpert.org/expert/32692 -https://www.oceanexpert.org/expert/37963 -https://www.oceanexpert.org/event/1296 -https://www.oceanexpert.org/expert/21128 -https://www.oceanexpert.org/expert/40340 -https://www.oceanexpert.org/expert/36226 -https://www.oceanexpert.org/expert/15336 -https://www.oceanexpert.org/expert/36738 -https://www.oceanexpert.org/expert/21622 -https://www.oceanexpert.org/expert/13122 -https://www.oceanexpert.org/expert/11203 -https://www.oceanexpert.org/event/846 -https://www.oceanexpert.org/expert/17725 -https://www.oceanexpert.org/expert/25656 -https://www.oceanexpert.org/expert/44339 -https://www.oceanexpert.org/expert/48183 -https://www.oceanexpert.org/institution/20108 -https://www.oceanexpert.org/event/2425 -https://www.oceanexpert.org/expert/15506 -https://www.oceanexpert.org/expert/37733 -https://www.oceanexpert.org/expert/13537 -https://www.oceanexpert.org/institution/18732 -https://www.oceanexpert.org/event/1090 -https://www.oceanexpert.org/expert/19899 -https://www.oceanexpert.org/institution/21384 -https://www.oceanexpert.org/expert/18398 -https://www.oceanexpert.org/expert/44596 -https://www.oceanexpert.org/expert/26626 -https://www.oceanexpert.org/event/702 -https://www.oceanexpert.org/institution/9150 -https://www.oceanexpert.org/expert/17879 -https://www.oceanexpert.org/expert/25685 -https://www.oceanexpert.org/expert/34491 -https://www.oceanexpert.org/expert/29136 -https://www.oceanexpert.org/institution/14502 -https://www.oceanexpert.org/expert/45857 -https://www.oceanexpert.org/expert/46921 -https://www.oceanexpert.org/expert/46561 -https://www.oceanexpert.org/expert/34065 -https://www.oceanexpert.org/expert/22906 -https://www.oceanexpert.org/expert/18342 -https://www.oceanexpert.org/expert/26278 -https://www.oceanexpert.org/institution/17713 -https://www.oceanexpert.org/expert/17250 -https://www.oceanexpert.org/expert/1029 -https://www.oceanexpert.org/expert/34512 -https://www.oceanexpert.org/event/637 -https://www.oceanexpert.org/expert/26048 -https://www.oceanexpert.org/expert/26044 -https://www.oceanexpert.org/expert/6721 -https://www.oceanexpert.org/expert/43383 -https://www.oceanexpert.org/expert/44042 -https://www.oceanexpert.org/institution/10250 -https://www.oceanexpert.org/expert/16071 -https://www.oceanexpert.org/expert/35208 -https://www.oceanexpert.org/expert/43822 -https://www.oceanexpert.org/expert/36818 -https://www.oceanexpert.org/expert/48389 -https://www.oceanexpert.org/expert/23954 -https://www.oceanexpert.org/institution/18865 -https://www.oceanexpert.org/expert/3555 -https://www.oceanexpert.org/expert/44930 -https://www.oceanexpert.org/institution/19627 -https://www.oceanexpert.org/expert/46509 -https://www.oceanexpert.org/expert/27137 -https://www.oceanexpert.org/expert/7141 -https://www.oceanexpert.org/expert/8275 -https://www.oceanexpert.org/institution/5010 -https://www.oceanexpert.org/expert/21684 -https://www.oceanexpert.org/expert/48457 -https://www.oceanexpert.org/institution/15829 -https://www.oceanexpert.org/expert/35195 -https://www.oceanexpert.org/expert/32646 -https://www.oceanexpert.org/expert/44746 -https://www.oceanexpert.org/institution/21666 -https://www.oceanexpert.org/event/3029 -https://www.oceanexpert.org/expert/15292 -https://www.oceanexpert.org/institution/20810 -https://www.oceanexpert.org/institution/13158 -https://www.oceanexpert.org/expert/26873 -https://www.oceanexpert.org/institution/18897 -https://www.oceanexpert.org/expert/22954 -https://www.oceanexpert.org/expert/24341 -https://www.oceanexpert.org/expert/43709 -https://www.oceanexpert.org/event/876 -https://www.oceanexpert.org/expert/19139 -https://www.oceanexpert.org/expert/30287 -https://www.oceanexpert.org/expert/19462 -https://www.oceanexpert.org/expert/43943 -https://www.oceanexpert.org/expert/41933 -https://www.oceanexpert.org/institution/20992 -https://www.oceanexpert.org/expert/34570 -https://www.oceanexpert.org/expert/13635 -https://www.oceanexpert.org/expert/30044 -https://www.oceanexpert.org/expert/19624 -https://www.oceanexpert.org/expert/34140 -https://www.oceanexpert.org/event/1677 -https://www.oceanexpert.org/expert/39719 -https://www.oceanexpert.org/institution/17002 -https://www.oceanexpert.org/institution/17773 -https://www.oceanexpert.org/expert/21824 -https://www.oceanexpert.org/expert/48151 -https://www.oceanexpert.org/expert/20464 -https://www.oceanexpert.org/expert/42569 -https://www.oceanexpert.org/expert/46623 -https://www.oceanexpert.org/institution/13223 -https://www.oceanexpert.org/institution/19645 -https://www.oceanexpert.org/expert/35439 -https://www.oceanexpert.org/expert/45417 -https://www.oceanexpert.org/expert/39453 -https://www.oceanexpert.org/expert/47521 -https://www.oceanexpert.org/expert/30754 -https://www.oceanexpert.org/institution/18082 -https://www.oceanexpert.org/expert/14319 -https://www.oceanexpert.org/institution/12559 -https://www.oceanexpert.org/expert/27519 -https://www.oceanexpert.org/institution/11487 -https://www.oceanexpert.org/expert/17959 -https://www.oceanexpert.org/expert/22930 -https://www.oceanexpert.org/expert/47135 -https://www.oceanexpert.org/expert/19405 -https://www.oceanexpert.org/expert/30875 -https://www.oceanexpert.org/expert/36957 -https://www.oceanexpert.org/expert/20856 -https://www.oceanexpert.org/expert/14910 -https://www.oceanexpert.org/institution/18936 -https://www.oceanexpert.org/expert/45966 -https://www.oceanexpert.org/expert/22961 -https://www.oceanexpert.org/expert/33197 -https://www.oceanexpert.org/expert/48593 -https://www.oceanexpert.org/expert/17231 -https://www.oceanexpert.org/institution/10539 -https://www.oceanexpert.org/expert/20156 -https://www.oceanexpert.org/expert/48636 -https://www.oceanexpert.org/expert/40887 -https://www.oceanexpert.org/institution/22160 -https://www.oceanexpert.org/expert/23677 -https://www.oceanexpert.org/expert/16970 -https://www.oceanexpert.org/expert/35037 -https://www.oceanexpert.org/expert/25430 -https://www.oceanexpert.org/expert/61 -https://www.oceanexpert.org/expert/44516 -https://www.oceanexpert.org/expert/27506 -https://www.oceanexpert.org/institution/12363 -https://www.oceanexpert.org/expert/13592 -https://www.oceanexpert.org/expert/44311 -https://www.oceanexpert.org/expert/37406 -https://www.oceanexpert.org/event/1581 -https://www.oceanexpert.org/expert/41047 -https://www.oceanexpert.org/institution/19709 -https://www.oceanexpert.org/expert/33371 -https://www.oceanexpert.org/expert/20290 -https://www.oceanexpert.org/institution/21410 -https://www.oceanexpert.org/expert/48740 -https://www.oceanexpert.org/expert/29604 -https://www.oceanexpert.org/expert/7572 -https://www.oceanexpert.org/expert/48959 -https://www.oceanexpert.org/expert/43622 -https://www.oceanexpert.org/institution/19923 -https://www.oceanexpert.org/expert/44908 -https://www.oceanexpert.org/expert/24107 -https://www.oceanexpert.org/expert/17972 -https://www.oceanexpert.org/expert/44238 -https://www.oceanexpert.org/institution/21722 -https://www.oceanexpert.org/institution/5942 -https://www.oceanexpert.org/expert/25297 -https://www.oceanexpert.org/institution/18745 -https://www.oceanexpert.org/expert/34899 -https://www.oceanexpert.org/expert/42530 -https://www.oceanexpert.org/expert/48596 -https://www.oceanexpert.org/institution/18130 -https://www.oceanexpert.org/expert/16902 -https://www.oceanexpert.org/expert/1783 -https://www.oceanexpert.org/expert/17318 -https://www.oceanexpert.org/expert/48381 -https://www.oceanexpert.org/expert/28843 -https://www.oceanexpert.org/institution/6682 -https://www.oceanexpert.org/expert/34425 -https://www.oceanexpert.org/expert/23203 -https://www.oceanexpert.org/expert/44266 -https://www.oceanexpert.org/institution/10784 -https://www.oceanexpert.org/expert/31371 -https://www.oceanexpert.org/expert/22760 -https://www.oceanexpert.org/expert/43146 -https://www.oceanexpert.org/expert/19759 -https://www.oceanexpert.org/institution/12715 -https://www.oceanexpert.org/expert/6920 -https://www.oceanexpert.org/expert/37321 -https://www.oceanexpert.org/expert/32213 -https://www.oceanexpert.org/institution/12205 -https://www.oceanexpert.org/expert/16988 -https://www.oceanexpert.org/expert/23168 -https://www.oceanexpert.org/expert/29851 -https://www.oceanexpert.org/institution/6315 -https://www.oceanexpert.org/institution/13068 -https://www.oceanexpert.org/expert/17204 -https://www.oceanexpert.org/expert/34502 -https://www.oceanexpert.org/expert/43285 -https://www.oceanexpert.org/expert/19200 -https://www.oceanexpert.org/institution/5352 -https://www.oceanexpert.org/expert/33628 -https://www.oceanexpert.org/institution/18661 -https://www.oceanexpert.org/expert/42679 -https://www.oceanexpert.org/expert/12490 -https://www.oceanexpert.org/expert/19281 -https://www.oceanexpert.org/expert/26801 -https://www.oceanexpert.org/expert/8181 -https://www.oceanexpert.org/event/828 -https://www.oceanexpert.org/institution/14955 -https://www.oceanexpert.org/expert/23087 -https://www.oceanexpert.org/event/2308 -https://www.oceanexpert.org/event/2531 -https://www.oceanexpert.org/institution/11881 -https://www.oceanexpert.org/expert/37827 -https://www.oceanexpert.org/expert/26073 -https://www.oceanexpert.org/expert/44590 -https://www.oceanexpert.org/expert/47172 -https://www.oceanexpert.org/expert/24559 -https://www.oceanexpert.org/event/2965 -https://www.oceanexpert.org/institution/17522 -https://www.oceanexpert.org/expert/888 -https://www.oceanexpert.org/expert/32209 -https://www.oceanexpert.org/institution/13208 -https://www.oceanexpert.org/expert/30681 -https://www.oceanexpert.org/expert/38247 -https://www.oceanexpert.org/expert/22971 -https://www.oceanexpert.org/expert/37599 -https://www.oceanexpert.org/expert/32148 -https://www.oceanexpert.org/expert/38476 -https://www.oceanexpert.org/expert/43407 -https://www.oceanexpert.org/institution/15460 -https://www.oceanexpert.org/expert/32344 -https://www.oceanexpert.org/institution/15876 -https://www.oceanexpert.org/institution/12029 -https://www.oceanexpert.org/institution/22109 -https://www.oceanexpert.org/institution/21072 -https://www.oceanexpert.org/expert/28034 -https://www.oceanexpert.org/institution/20794 -https://www.oceanexpert.org/event/1798 -https://www.oceanexpert.org/expert/35824 -https://www.oceanexpert.org/expert/12448 -https://www.oceanexpert.org/institution/10795 -https://www.oceanexpert.org/expert/13749 -https://www.oceanexpert.org/expert/26039 -https://www.oceanexpert.org/event/259 -https://www.oceanexpert.org/expert/27230 -https://www.oceanexpert.org/expert/39958 -https://www.oceanexpert.org/expert/35244 -https://www.oceanexpert.org/institution/6649 -https://www.oceanexpert.org/expert/26221 -https://www.oceanexpert.org/expert/43366 -https://www.oceanexpert.org/expert/37055 -https://www.oceanexpert.org/institution/12561 -https://www.oceanexpert.org/expert/48578 -https://www.oceanexpert.org/expert/35220 -https://www.oceanexpert.org/expert/35788 -https://www.oceanexpert.org/institution/12065 -https://www.oceanexpert.org/expert/24270 -https://www.oceanexpert.org/institution/12428 -https://www.oceanexpert.org/institution/14666 -https://www.oceanexpert.org/institution/20153 -https://www.oceanexpert.org/expert/13312 -https://www.oceanexpert.org/expert/5418 -https://www.oceanexpert.org/expert/43650 -https://www.oceanexpert.org/event/365 -https://www.oceanexpert.org/expert/2553 -https://www.oceanexpert.org/institution/19492 -https://www.oceanexpert.org/expert/35426 -https://www.oceanexpert.org/event/1478 -https://www.oceanexpert.org/expert/32755 -https://www.oceanexpert.org/expert/43943 -https://www.oceanexpert.org/institution/18962 -https://www.oceanexpert.org/expert/33204 -https://www.oceanexpert.org/expert/17562 -https://www.oceanexpert.org/institution/15748 -https://www.oceanexpert.org/event/1710 -https://www.oceanexpert.org/expert/26943 -https://www.oceanexpert.org/expert/26113 -https://www.oceanexpert.org/expert/37838 -https://www.oceanexpert.org/expert/20779 -https://www.oceanexpert.org/event/1317 -https://www.oceanexpert.org/expert/44718 -https://www.oceanexpert.org/expert/21636 -https://www.oceanexpert.org/expert/47035 -https://www.oceanexpert.org/expert/35073 -https://www.oceanexpert.org/event/1923 -https://www.oceanexpert.org/event/2716 -https://www.oceanexpert.org/institution/21097 -https://www.oceanexpert.org/expert/44287 -https://www.oceanexpert.org/event/273 -https://www.oceanexpert.org/event/2439 -https://www.oceanexpert.org/institution/13991 -https://www.oceanexpert.org/expert/48165 -https://www.oceanexpert.org/expert/47729 -https://www.oceanexpert.org/expert/21497 -https://www.oceanexpert.org/expert/48615 -https://www.oceanexpert.org/event/2073 -https://www.oceanexpert.org/institution/12025 -https://www.oceanexpert.org/expert/34597 -https://www.oceanexpert.org/event/3006 -https://www.oceanexpert.org/event/2964 -https://www.oceanexpert.org/expert/16005 -https://www.oceanexpert.org/expert/19698 -https://www.oceanexpert.org/event/1440 -https://www.oceanexpert.org/expert/23409 -https://www.oceanexpert.org/expert/48381 -https://www.oceanexpert.org/expert/15667 -https://www.oceanexpert.org/expert/26303 -https://www.oceanexpert.org/expert/35459 -https://www.oceanexpert.org/event/2553 -https://www.oceanexpert.org/expert/37364 -https://www.oceanexpert.org/expert/18600 -https://www.oceanexpert.org/event/1422 -https://www.oceanexpert.org/expert/9207 -https://www.oceanexpert.org/institution/13150 -https://www.oceanexpert.org/expert/25107 -https://www.oceanexpert.org/expert/32615 -https://www.oceanexpert.org/expert/36726 -https://www.oceanexpert.org/expert/28414 -https://www.oceanexpert.org/institution/19252 -https://www.oceanexpert.org/expert/17727 -https://www.oceanexpert.org/expert/47084 -https://www.oceanexpert.org/expert/34788 -https://www.oceanexpert.org/expert/27762 -https://www.oceanexpert.org/institution/19438 -https://www.oceanexpert.org/institution/18763 -https://www.oceanexpert.org/expert/22012 -https://www.oceanexpert.org/expert/47116 -https://www.oceanexpert.org/institution/13024 -https://www.oceanexpert.org/event/1586 -https://www.oceanexpert.org/event/956 -https://www.oceanexpert.org/expert/46927 -https://www.oceanexpert.org/event/1903 -https://www.oceanexpert.org/institution/17049 -https://www.oceanexpert.org/expert/25294 -https://www.oceanexpert.org/expert/35875 -https://www.oceanexpert.org/expert/48550 -https://www.oceanexpert.org/expert/6993 -https://www.oceanexpert.org/expert/11471 -https://www.oceanexpert.org/institution/21993 -https://www.oceanexpert.org/expert/23569 -https://www.oceanexpert.org/event/1690 -https://www.oceanexpert.org/expert/23264 -https://www.oceanexpert.org/institution/9622 -https://www.oceanexpert.org/expert/20610 -https://www.oceanexpert.org/expert/19727 -https://www.oceanexpert.org/expert/32645 -https://www.oceanexpert.org/expert/32334 -https://www.oceanexpert.org/expert/20401 -https://www.oceanexpert.org/expert/30526 -https://www.oceanexpert.org/expert/12112 -https://www.oceanexpert.org/expert/21633 -https://www.oceanexpert.org/expert/37784 -https://www.oceanexpert.org/expert/10727 -https://www.oceanexpert.org/expert/23297 -https://www.oceanexpert.org/expert/43525 -https://www.oceanexpert.org/institution/7796 -https://www.oceanexpert.org/institution/15912 -https://www.oceanexpert.org/event/2338 -https://www.oceanexpert.org/expert/43388 -https://www.oceanexpert.org/institution/21050 -https://www.oceanexpert.org/expert/13295 -https://www.oceanexpert.org/institution/19915 -https://www.oceanexpert.org/expert/26262 -https://www.oceanexpert.org/expert/18298 -https://www.oceanexpert.org/expert/43280 -https://www.oceanexpert.org/expert/16862 -https://www.oceanexpert.org/expert/25284 -https://www.oceanexpert.org/expert/30930 -https://www.oceanexpert.org/expert/23585 -https://www.oceanexpert.org/expert/46381 -https://www.oceanexpert.org/expert/24783 -https://www.oceanexpert.org/event/314 -https://www.oceanexpert.org/expert/36161 -https://www.oceanexpert.org/institution/20479 -https://www.oceanexpert.org/expert/47793 -https://www.oceanexpert.org/expert/16487 -https://www.oceanexpert.org/expert/46484 -https://www.oceanexpert.org/institution/21319 -https://www.oceanexpert.org/expert/29081 -https://www.oceanexpert.org/event/1801 -https://www.oceanexpert.org/expert/37294 -https://www.oceanexpert.org/expert/37373 -https://www.oceanexpert.org/event/1069 -https://www.oceanexpert.org/institution/21370 -https://www.oceanexpert.org/expert/23556 -https://www.oceanexpert.org/expert/36379 -https://www.oceanexpert.org/expert/16970 -https://www.oceanexpert.org/expert/35354 -https://www.oceanexpert.org/expert/32441 -https://www.oceanexpert.org/institution/21496 -https://www.oceanexpert.org/expert/25964 -https://www.oceanexpert.org/institution/7811 -https://www.oceanexpert.org/expert/19684 -https://www.oceanexpert.org/expert/33775 -https://www.oceanexpert.org/institution/20864 -https://www.oceanexpert.org/expert/9041 -https://www.oceanexpert.org/expert/4189 -https://www.oceanexpert.org/expert/36461 -https://www.oceanexpert.org/expert/15973 -https://www.oceanexpert.org/expert/25343 -https://www.oceanexpert.org/expert/3397 -https://www.oceanexpert.org/expert/1607 -https://www.oceanexpert.org/expert/24828 -https://www.oceanexpert.org/expert/21449 -https://www.oceanexpert.org/institution/19590 -https://www.oceanexpert.org/expert/34658 -https://www.oceanexpert.org/institution/6119 -https://www.oceanexpert.org/event/1039 -https://www.oceanexpert.org/expert/33115 -https://www.oceanexpert.org/expert/31678 -https://www.oceanexpert.org/event/2427 -https://www.oceanexpert.org/expert/26677 -https://www.oceanexpert.org/expert/22405 -https://www.oceanexpert.org/expert/34853 -https://www.oceanexpert.org/expert/13104 -https://www.oceanexpert.org/expert/46424 -https://www.oceanexpert.org/institution/7135 -https://www.oceanexpert.org/institution/15621 -https://www.oceanexpert.org/expert/44258 -https://www.oceanexpert.org/expert/34092 -https://www.oceanexpert.org/expert/12248 -https://www.oceanexpert.org/expert/21716 -https://www.oceanexpert.org/institution/20118 -https://www.oceanexpert.org/expert/46806 -https://www.oceanexpert.org/expert/35212 -https://www.oceanexpert.org/expert/27586 -https://www.oceanexpert.org/expert/36613 -https://www.oceanexpert.org/expert/47399 -https://www.oceanexpert.org/expert/47716 -https://www.oceanexpert.org/expert/35248 -https://www.oceanexpert.org/expert/4511 -https://www.oceanexpert.org/expert/34682 -https://www.oceanexpert.org/expert/21853 -https://www.oceanexpert.org/expert/19009 -https://www.oceanexpert.org/event/1899 -https://www.oceanexpert.org/expert/22915 -https://www.oceanexpert.org/expert/26339 -https://www.oceanexpert.org/expert/47725 -https://www.oceanexpert.org/expert/10200 -https://www.oceanexpert.org/institution/9609 -https://www.oceanexpert.org/institution/19543 -https://www.oceanexpert.org/event/1958 -https://www.oceanexpert.org/expert/38400 -https://www.oceanexpert.org/expert/37862 -https://www.oceanexpert.org/event/2645 -https://www.oceanexpert.org/institution/12908 -https://www.oceanexpert.org/expert/26817 -https://www.oceanexpert.org/event/173 -https://www.oceanexpert.org/expert/22771 -https://www.oceanexpert.org/expert/39198 -https://www.oceanexpert.org/expert/46566 -https://www.oceanexpert.org/expert/24247 -https://www.oceanexpert.org/institution/15650 -https://www.oceanexpert.org/institution/13446 -https://www.oceanexpert.org/expert/48338 -https://www.oceanexpert.org/expert/36933 -https://www.oceanexpert.org/expert/47391 -https://www.oceanexpert.org/event/1349 -https://www.oceanexpert.org/expert/42576 -https://www.oceanexpert.org/event/724 -https://www.oceanexpert.org/expert/28309 -https://www.oceanexpert.org/expert/26919 -https://www.oceanexpert.org/expert/14968 -https://www.oceanexpert.org/event/1658 -https://www.oceanexpert.org/expert/38930 -https://www.oceanexpert.org/institution/19301 -https://www.oceanexpert.org/expert/46678 -https://www.oceanexpert.org/expert/18589 -https://www.oceanexpert.org/expert/21471 -https://www.oceanexpert.org/expert/35072 -https://www.oceanexpert.org/institution/21573 -https://www.oceanexpert.org/institution/17346 -https://www.oceanexpert.org/expert/31596 -https://www.oceanexpert.org/expert/42701 -https://www.oceanexpert.org/expert/46484 -https://www.oceanexpert.org/expert/9582 -https://www.oceanexpert.org/institution/20849 -https://www.oceanexpert.org/expert/47117 -https://www.oceanexpert.org/institution/14381 -https://www.oceanexpert.org/institution/18992 -https://www.oceanexpert.org/institution/21915 -https://www.oceanexpert.org/expert/37464 -https://www.oceanexpert.org/institution/13221 -https://www.oceanexpert.org/institution/7921 -https://www.oceanexpert.org/expert/45508 -https://www.oceanexpert.org/institution/12432 -https://www.oceanexpert.org/expert/26539 -https://www.oceanexpert.org/institution/19994 -https://www.oceanexpert.org/event/1314 -https://www.oceanexpert.org/institution/12995 -https://www.oceanexpert.org/institution/20406 -https://www.oceanexpert.org/expert/24567 -https://www.oceanexpert.org/expert/46322 -https://www.oceanexpert.org/expert/38947 -https://www.oceanexpert.org/expert/11701 -https://www.oceanexpert.org/expert/47571 -https://www.oceanexpert.org/expert/36605 -https://www.oceanexpert.org/expert/21306 -https://www.oceanexpert.org/expert/36788 -https://www.oceanexpert.org/expert/19032 -https://www.oceanexpert.org/expert/38104 -https://www.oceanexpert.org/expert/25763 -https://www.oceanexpert.org/institution/19012 -https://www.oceanexpert.org/expert/11379 -https://www.oceanexpert.org/institution/19363 -https://www.oceanexpert.org/expert/17171 -https://www.oceanexpert.org/expert/8187 -https://www.oceanexpert.org/institution/10057 -https://www.oceanexpert.org/institution/18614 -https://www.oceanexpert.org/institution/21870 -https://www.oceanexpert.org/event/1128 -https://www.oceanexpert.org/expert/24866 -https://www.oceanexpert.org/institution/21543 -https://www.oceanexpert.org/expert/41259 -https://www.oceanexpert.org/expert/22427 -https://www.oceanexpert.org/institution/15452 -https://www.oceanexpert.org/expert/43173 -https://www.oceanexpert.org/expert/26783 -https://www.oceanexpert.org/expert/27515 -https://www.oceanexpert.org/expert/24878 -https://www.oceanexpert.org/institution/22052 -https://www.oceanexpert.org/expert/43611 -https://www.oceanexpert.org/expert/13556 -https://www.oceanexpert.org/expert/17664 -https://www.oceanexpert.org/institution/19098 -https://www.oceanexpert.org/expert/24682 -https://www.oceanexpert.org/expert/44403 -https://www.oceanexpert.org/expert/44498 -https://www.oceanexpert.org/expert/44814 -https://www.oceanexpert.org/event/970 -https://www.oceanexpert.org/expert/23133 -https://www.oceanexpert.org/expert/7539 -https://www.oceanexpert.org/expert/25651 -https://www.oceanexpert.org/expert/26443 -https://www.oceanexpert.org/expert/47321 -https://www.oceanexpert.org/expert/12127 -https://www.oceanexpert.org/institution/18320 -https://www.oceanexpert.org/institution/20434 -https://www.oceanexpert.org/expert/20165 -https://www.oceanexpert.org/expert/25172 -https://www.oceanexpert.org/event/1509 -https://www.oceanexpert.org/expert/25216 -https://www.oceanexpert.org/event/2770 -https://www.oceanexpert.org/expert/42217 -https://www.oceanexpert.org/expert/36517 -https://www.oceanexpert.org/institution/19590 -https://www.oceanexpert.org/institution/21023 -https://www.oceanexpert.org/expert/33787 -https://www.oceanexpert.org/expert/7921 -https://www.oceanexpert.org/institution/22030 -https://www.oceanexpert.org/expert/11104 -https://www.oceanexpert.org/expert/36308 -https://www.oceanexpert.org/expert/32703 -https://www.oceanexpert.org/event/1529 -https://www.oceanexpert.org/event/2561 -https://www.oceanexpert.org/expert/20189 -https://www.oceanexpert.org/expert/48180 -https://www.oceanexpert.org/institution/12720 -https://www.oceanexpert.org/institution/14058 -https://www.oceanexpert.org/institution/14188 -https://www.oceanexpert.org/expert/29479 -https://www.oceanexpert.org/event/989 -https://www.oceanexpert.org/institution/11307 -https://www.oceanexpert.org/expert/24551 -https://www.oceanexpert.org/expert/17807 -https://www.oceanexpert.org/expert/21301 -https://www.oceanexpert.org/expert/19738 -https://www.oceanexpert.org/event/1892 -https://www.oceanexpert.org/institution/18393 -https://www.oceanexpert.org/expert/48025 -https://www.oceanexpert.org/expert/34162 -https://www.oceanexpert.org/institution/20848 -https://www.oceanexpert.org/institution/20990 -https://www.oceanexpert.org/expert/23853 -https://www.oceanexpert.org/institution/19598 -https://www.oceanexpert.org/expert/40289 -https://www.oceanexpert.org/institution/14331 -https://www.oceanexpert.org/institution/21285 -https://www.oceanexpert.org/expert/37314 -https://www.oceanexpert.org/expert/19056 -https://www.oceanexpert.org/expert/26131 -https://www.oceanexpert.org/expert/23376 -https://www.oceanexpert.org/expert/23653 -https://www.oceanexpert.org/institution/21220 -https://www.oceanexpert.org/expert/47169 -https://www.oceanexpert.org/event/439 -https://www.oceanexpert.org/expert/21796 -https://www.oceanexpert.org/expert/21826 -https://www.oceanexpert.org/institution/14336 -https://www.oceanexpert.org/expert/20105 -https://www.oceanexpert.org/expert/21703 -https://www.oceanexpert.org/event/2017 -https://www.oceanexpert.org/event/151 -https://www.oceanexpert.org/expert/48549 -https://www.oceanexpert.org/expert/12496 -https://www.oceanexpert.org/expert/17644 -https://www.oceanexpert.org/expert/38010 -https://www.oceanexpert.org/expert/11014 -https://www.oceanexpert.org/expert/39186 -https://www.oceanexpert.org/expert/27961 -https://www.oceanexpert.org/institution/6695 -https://www.oceanexpert.org/expert/30296 -https://www.oceanexpert.org/expert/27750 -https://www.oceanexpert.org/expert/27178 -https://www.oceanexpert.org/expert/47436 -https://www.oceanexpert.org/event/3068 -https://www.oceanexpert.org/expert/27185 -https://www.oceanexpert.org/expert/27918 -https://www.oceanexpert.org/expert/23424 -https://www.oceanexpert.org/expert/21894 -https://www.oceanexpert.org/expert/30932 -https://www.oceanexpert.org/event/1005 -https://www.oceanexpert.org/expert/43327 -https://www.oceanexpert.org/expert/23741 -https://www.oceanexpert.org/institution/20981 -https://www.oceanexpert.org/institution/19735 -https://www.oceanexpert.org/institution/19913 -https://www.oceanexpert.org/institution/22028 -https://www.oceanexpert.org/expert/31378 -https://www.oceanexpert.org/expert/22420 -https://www.oceanexpert.org/event/884 -https://www.oceanexpert.org/expert/48309 -https://www.oceanexpert.org/expert/18490 -https://www.oceanexpert.org/expert/43512 -https://www.oceanexpert.org/expert/16749 -https://www.oceanexpert.org/event/2522 -https://www.oceanexpert.org/expert/3450 -https://www.oceanexpert.org/institution/18388 -https://www.oceanexpert.org/event/1834 -https://www.oceanexpert.org/event/1779 -https://www.oceanexpert.org/event/1188 -https://www.oceanexpert.org/expert/48168 -https://www.oceanexpert.org/expert/11205 -https://www.oceanexpert.org/expert/18957 -https://www.oceanexpert.org/expert/31097 -https://www.oceanexpert.org/expert/42446 -https://www.oceanexpert.org/expert/28108 -https://www.oceanexpert.org/expert/21468 -https://www.oceanexpert.org/institution/7462 -https://www.oceanexpert.org/expert/23803 -https://www.oceanexpert.org/event/98 -https://www.oceanexpert.org/expert/26374 -https://www.oceanexpert.org/expert/38270 -https://www.oceanexpert.org/expert/22976 -https://www.oceanexpert.org/institution/12524 -https://www.oceanexpert.org/expert/44779 -https://www.oceanexpert.org/expert/36438 -https://www.oceanexpert.org/institution/18847 -https://www.oceanexpert.org/expert/12007 -https://www.oceanexpert.org/expert/6994 -https://www.oceanexpert.org/institution/18505 -https://www.oceanexpert.org/expert/13533 -https://www.oceanexpert.org/expert/44160 -https://www.oceanexpert.org/expert/16692 -https://www.oceanexpert.org/expert/16208 -https://www.oceanexpert.org/event/3014 -https://www.oceanexpert.org/expert/24852 -https://www.oceanexpert.org/institution/18634 -https://www.oceanexpert.org/institution/18954 -https://www.oceanexpert.org/expert/11739 -https://www.oceanexpert.org/expert/20822 -https://www.oceanexpert.org/expert/24734 -https://www.oceanexpert.org/institution/12923 -https://www.oceanexpert.org/expert/30882 -https://www.oceanexpert.org/expert/21949 -https://www.oceanexpert.org/institution/6993 -https://www.oceanexpert.org/expert/37079 -https://www.oceanexpert.org/expert/34733 -https://www.oceanexpert.org/expert/19246 -https://www.oceanexpert.org/expert/13588 -https://www.oceanexpert.org/expert/26221 -https://www.oceanexpert.org/expert/43150 -https://www.oceanexpert.org/expert/1804 -https://www.oceanexpert.org/expert/37024 -https://www.oceanexpert.org/institution/21773 -https://www.oceanexpert.org/expert/42525 -https://www.oceanexpert.org/institution/12005 -https://www.oceanexpert.org/institution/18213 -https://www.oceanexpert.org/event/2937 -https://www.oceanexpert.org/institution/11590 -https://www.oceanexpert.org/expert/36115 -https://www.oceanexpert.org/event/91 -https://www.oceanexpert.org/expert/38913 -https://www.oceanexpert.org/expert/47863 -https://www.oceanexpert.org/expert/13698 -https://www.oceanexpert.org/expert/47689 -https://www.oceanexpert.org/expert/76 -https://www.oceanexpert.org/expert/44281 -https://www.oceanexpert.org/expert/45304 -https://www.oceanexpert.org/expert/35465 -https://www.oceanexpert.org/expert/636 -https://www.oceanexpert.org/event/69 -https://www.oceanexpert.org/expert/26864 -https://www.oceanexpert.org/expert/47529 -https://www.oceanexpert.org/expert/19727 -https://www.oceanexpert.org/expert/45366 -https://www.oceanexpert.org/expert/3562 -https://www.oceanexpert.org/institution/16145 -https://www.oceanexpert.org/event/1009 -https://www.oceanexpert.org/expert/14317 -https://www.oceanexpert.org/expert/12969 -https://www.oceanexpert.org/expert/25373 -https://www.oceanexpert.org/expert/26688 -https://www.oceanexpert.org/institution/20499 -https://www.oceanexpert.org/expert/29989 -https://www.oceanexpert.org/event/3038 -https://www.oceanexpert.org/expert/45665 -https://www.oceanexpert.org/expert/46461 -https://www.oceanexpert.org/expert/47875 -https://www.oceanexpert.org/expert/17319 -https://www.oceanexpert.org/expert/47054 -https://www.oceanexpert.org/expert/31942 -https://www.oceanexpert.org/expert/21759 -https://www.oceanexpert.org/institution/9275 -https://www.oceanexpert.org/expert/33355 -https://www.oceanexpert.org/expert/45564 -https://www.oceanexpert.org/expert/25359 -https://www.oceanexpert.org/expert/2001 -https://www.oceanexpert.org/expert/28274 -https://www.oceanexpert.org/expert/23500 -https://www.oceanexpert.org/expert/46918 -https://www.oceanexpert.org/institution/6110 -https://www.oceanexpert.org/event/2000 -https://www.oceanexpert.org/expert/15598 -https://www.oceanexpert.org/institution/21369 -https://www.oceanexpert.org/expert/47652 -https://www.oceanexpert.org/event/152 -https://www.oceanexpert.org/event/2893 -https://www.oceanexpert.org/expert/25019 -https://www.oceanexpert.org/expert/47764 -https://www.oceanexpert.org/expert/35461 -https://www.oceanexpert.org/institution/11024 -https://www.oceanexpert.org/expert/26925 -https://www.oceanexpert.org/expert/17585 -https://www.oceanexpert.org/event/2373 -https://www.oceanexpert.org/institution/20096 -https://www.oceanexpert.org/event/2361 -https://www.oceanexpert.org/expert/11490 -https://www.oceanexpert.org/expert/21263 -https://www.oceanexpert.org/expert/21554 -https://www.oceanexpert.org/institution/10678 -https://www.oceanexpert.org/institution/20192 -https://www.oceanexpert.org/expert/20059 -https://www.oceanexpert.org/institution/18644 -https://www.oceanexpert.org/institution/21190 -https://www.oceanexpert.org/event/1269 -https://www.oceanexpert.org/expert/32759 -https://www.oceanexpert.org/expert/26934 -https://www.oceanexpert.org/institution/19273 -https://www.oceanexpert.org/event/2625 -https://www.oceanexpert.org/expert/27583 -https://www.oceanexpert.org/expert/29367 -https://www.oceanexpert.org/institution/22149 -https://www.oceanexpert.org/expert/34382 -https://www.oceanexpert.org/expert/30661 -https://www.oceanexpert.org/expert/16128 -https://www.oceanexpert.org/expert/15996 -https://www.oceanexpert.org/institution/5239 -https://www.oceanexpert.org/institution/16992 -https://www.oceanexpert.org/institution/21454 -https://www.oceanexpert.org/expert/44465 -https://www.oceanexpert.org/expert/32545 -https://www.oceanexpert.org/expert/33904 -https://www.oceanexpert.org/expert/39201 -https://www.oceanexpert.org/expert/39826 -https://www.oceanexpert.org/expert/8952 -https://www.oceanexpert.org/expert/7294 -https://www.oceanexpert.org/expert/43931 -https://www.oceanexpert.org/expert/34604 -https://www.oceanexpert.org/expert/46929 -https://www.oceanexpert.org/expert/24565 -https://www.oceanexpert.org/expert/43037 -https://www.oceanexpert.org/expert/21494 -https://www.oceanexpert.org/expert/44773 -https://www.oceanexpert.org/expert/32769 -https://www.oceanexpert.org/institution/21261 -https://www.oceanexpert.org/institution/20098 -https://www.oceanexpert.org/expert/9039 -https://www.oceanexpert.org/expert/22606 -https://www.oceanexpert.org/expert/26779 -https://www.oceanexpert.org/expert/13490 -https://www.oceanexpert.org/expert/17651 -https://www.oceanexpert.org/expert/22599 -https://www.oceanexpert.org/expert/34817 -https://www.oceanexpert.org/expert/19053 -https://www.oceanexpert.org/expert/12817 -https://www.oceanexpert.org/expert/43257 -https://www.oceanexpert.org/institution/11308 -https://www.oceanexpert.org/expert/37132 -https://www.oceanexpert.org/expert/33361 -https://www.oceanexpert.org/expert/27866 -https://www.oceanexpert.org/event/1210 -https://www.oceanexpert.org/expert/17476 -https://www.oceanexpert.org/expert/38558 -https://www.oceanexpert.org/event/354 -https://www.oceanexpert.org/institution/8669 -https://www.oceanexpert.org/institution/18931 -https://www.oceanexpert.org/expert/23103 -https://www.oceanexpert.org/institution/22119 -https://www.oceanexpert.org/institution/21178 -https://www.oceanexpert.org/expert/44764 -https://www.oceanexpert.org/expert/33507 -https://www.oceanexpert.org/expert/19608 -https://www.oceanexpert.org/expert/6647 -https://www.oceanexpert.org/event/1704 -https://www.oceanexpert.org/event/2185 -https://www.oceanexpert.org/expert/13043 -https://www.oceanexpert.org/expert/12374 -https://www.oceanexpert.org/expert/23309 -https://www.oceanexpert.org/expert/26263 -https://www.oceanexpert.org/institution/21930 -https://www.oceanexpert.org/institution/17872 -https://www.oceanexpert.org/event/221 -https://www.oceanexpert.org/expert/13228 -https://www.oceanexpert.org/institution/17545 -https://www.oceanexpert.org/event/1731 -https://www.oceanexpert.org/expert/26765 -https://www.oceanexpert.org/expert/24439 -https://www.oceanexpert.org/expert/40555 -https://www.oceanexpert.org/institution/14909 -https://www.oceanexpert.org/expert/24465 -https://www.oceanexpert.org/expert/42864 -https://www.oceanexpert.org/expert/29640 -https://www.oceanexpert.org/institution/15362 -https://www.oceanexpert.org/expert/27398 -https://www.oceanexpert.org/expert/26658 -https://www.oceanexpert.org/institution/18392 -https://www.oceanexpert.org/expert/39029 -https://www.oceanexpert.org/expert/27917 -https://www.oceanexpert.org/institution/8668 -https://www.oceanexpert.org/event/3033 -https://www.oceanexpert.org/expert/21273 -https://www.oceanexpert.org/expert/27264 -https://www.oceanexpert.org/expert/44231 -https://www.oceanexpert.org/expert/22787 -https://www.oceanexpert.org/institution/7925 -https://www.oceanexpert.org/expert/14314 -https://www.oceanexpert.org/expert/39863 -https://www.oceanexpert.org/expert/44623 -https://www.oceanexpert.org/expert/30073 -https://www.oceanexpert.org/institution/21929 -https://www.oceanexpert.org/expert/43013 -https://www.oceanexpert.org/expert/33940 -https://www.oceanexpert.org/expert/47428 -https://www.oceanexpert.org/event/1674 -https://www.oceanexpert.org/expert/48951 -https://www.oceanexpert.org/expert/23059 -https://www.oceanexpert.org/event/1001 -https://www.oceanexpert.org/expert/34384 -https://www.oceanexpert.org/expert/11185 -https://www.oceanexpert.org/expert/21081 -https://www.oceanexpert.org/expert/26522 -https://www.oceanexpert.org/expert/22925 -https://www.oceanexpert.org/event/74 -https://www.oceanexpert.org/expert/18489 -https://www.oceanexpert.org/expert/37370 -https://www.oceanexpert.org/expert/16602 -https://www.oceanexpert.org/expert/47522 -https://www.oceanexpert.org/expert/46917 -https://www.oceanexpert.org/expert/37434 -https://www.oceanexpert.org/institution/17235 -https://www.oceanexpert.org/institution/22002 -https://www.oceanexpert.org/expert/23402 -https://www.oceanexpert.org/expert/47401 -https://www.oceanexpert.org/institution/20904 -https://www.oceanexpert.org/expert/15919 -https://www.oceanexpert.org/institution/18446 -https://www.oceanexpert.org/institution/11769 -https://www.oceanexpert.org/expert/36292 -https://www.oceanexpert.org/expert/12875 -https://www.oceanexpert.org/expert/46061 -https://www.oceanexpert.org/expert/47105 -https://www.oceanexpert.org/expert/26914 -https://www.oceanexpert.org/expert/33076 -https://www.oceanexpert.org/expert/36621 -https://www.oceanexpert.org/institution/17897 -https://www.oceanexpert.org/expert/27258 -https://www.oceanexpert.org/institution/13577 -https://www.oceanexpert.org/expert/42472 -https://www.oceanexpert.org/expert/46583 -https://www.oceanexpert.org/expert/27743 -https://www.oceanexpert.org/expert/21731 -https://www.oceanexpert.org/expert/46583 -https://www.oceanexpert.org/institution/16293 -https://www.oceanexpert.org/institution/21397 -https://www.oceanexpert.org/expert/48738 -https://www.oceanexpert.org/institution/14391 -https://www.oceanexpert.org/expert/17424 -https://www.oceanexpert.org/expert/12755 -https://www.oceanexpert.org/event/1866 -https://www.oceanexpert.org/institution/21398 -https://www.oceanexpert.org/expert/12024 -https://www.oceanexpert.org/expert/37794 -https://www.oceanexpert.org/institution/13175 -https://www.oceanexpert.org/expert/24629 -https://www.oceanexpert.org/expert/13271 -https://www.oceanexpert.org/expert/18329 -https://www.oceanexpert.org/expert/43080 -https://www.oceanexpert.org/institution/19929 -https://www.oceanexpert.org/expert/27837 -https://www.oceanexpert.org/expert/8437 -https://www.oceanexpert.org/event/371 -https://www.oceanexpert.org/event/2994 -https://www.oceanexpert.org/institution/18040 -https://www.oceanexpert.org/expert/48154 -https://www.oceanexpert.org/expert/37386 -https://www.oceanexpert.org/expert/19801 -https://www.oceanexpert.org/expert/24053 -https://www.oceanexpert.org/expert/18380 -https://www.oceanexpert.org/expert/45662 -https://www.oceanexpert.org/event/1804 -https://www.oceanexpert.org/expert/49014 -https://www.oceanexpert.org/institution/18643 -https://www.oceanexpert.org/event/950 -https://www.oceanexpert.org/expert/15543 -https://www.oceanexpert.org/expert/22367 -https://www.oceanexpert.org/expert/36771 -https://www.oceanexpert.org/expert/19718 -https://www.oceanexpert.org/expert/26317 -https://www.oceanexpert.org/institution/21544 -https://www.oceanexpert.org/institution/18084 -https://www.oceanexpert.org/expert/31688 -https://www.oceanexpert.org/expert/31937 -https://www.oceanexpert.org/expert/18006 -https://www.oceanexpert.org/expert/36855 -https://www.oceanexpert.org/institution/6892 -https://www.oceanexpert.org/institution/14666 -https://www.oceanexpert.org/institution/21216 -https://www.oceanexpert.org/expert/44463 -https://www.oceanexpert.org/institution/9184 -https://www.oceanexpert.org/expert/47054 -https://www.oceanexpert.org/institution/19496 -https://www.oceanexpert.org/institution/20410 -https://www.oceanexpert.org/expert/46536 -https://www.oceanexpert.org/expert/17245 -https://www.oceanexpert.org/expert/47083 -https://www.oceanexpert.org/event/2022 -https://www.oceanexpert.org/institution/5804 -https://www.oceanexpert.org/institution/13421 -https://www.oceanexpert.org/expert/17456 -https://www.oceanexpert.org/expert/33123 -https://www.oceanexpert.org/expert/7790 -https://www.oceanexpert.org/institution/19573 -https://www.oceanexpert.org/expert/21919 -https://www.oceanexpert.org/institution/20648 -https://www.oceanexpert.org/expert/19255 -https://www.oceanexpert.org/expert/27055 -https://www.oceanexpert.org/expert/35291 -https://www.oceanexpert.org/expert/1513 -https://www.oceanexpert.org/institution/19473 -https://www.oceanexpert.org/institution/20429 -https://www.oceanexpert.org/expert/38580 -https://www.oceanexpert.org/institution/6375 -https://www.oceanexpert.org/institution/16032 -https://www.oceanexpert.org/expert/33265 -https://www.oceanexpert.org/expert/3869 -https://www.oceanexpert.org/institution/21798 -https://www.oceanexpert.org/institution/18629 -https://www.oceanexpert.org/expert/24195 -https://www.oceanexpert.org/expert/32401 -https://www.oceanexpert.org/institution/13834 -https://www.oceanexpert.org/expert/48719 -https://www.oceanexpert.org/expert/37352 -https://www.oceanexpert.org/expert/37487 -https://www.oceanexpert.org/expert/85 -https://www.oceanexpert.org/expert/17251 -https://www.oceanexpert.org/expert/13276 -https://www.oceanexpert.org/expert/38826 -https://www.oceanexpert.org/expert/21934 -https://www.oceanexpert.org/expert/7209 -https://www.oceanexpert.org/expert/22268 -https://www.oceanexpert.org/expert/26045 -https://www.oceanexpert.org/expert/12162 -https://www.oceanexpert.org/event/2953 -https://www.oceanexpert.org/expert/7106 -https://www.oceanexpert.org/expert/36486 -https://www.oceanexpert.org/expert/11788 -https://www.oceanexpert.org/expert/37843 -https://www.oceanexpert.org/institution/11023 -https://www.oceanexpert.org/expert/32360 -https://www.oceanexpert.org/expert/42003 -https://www.oceanexpert.org/expert/48568 -https://www.oceanexpert.org/expert/6641 -https://www.oceanexpert.org/institution/19345 -https://www.oceanexpert.org/expert/45621 -https://www.oceanexpert.org/expert/35168 -https://www.oceanexpert.org/institution/12061 -https://www.oceanexpert.org/expert/17209 -https://www.oceanexpert.org/expert/6756 -https://www.oceanexpert.org/event/412 -https://www.oceanexpert.org/expert/26029 -https://www.oceanexpert.org/event/1877 -https://www.oceanexpert.org/expert/46434 -https://www.oceanexpert.org/expert/20382 -https://www.oceanexpert.org/institution/18511 -https://www.oceanexpert.org/expert/23580 -https://www.oceanexpert.org/institution/18316 -https://www.oceanexpert.org/event/1732 -https://www.oceanexpert.org/institution/20056 -https://www.oceanexpert.org/event/2198 -https://www.oceanexpert.org/expert/21110 -https://www.oceanexpert.org/institution/20059 -https://www.oceanexpert.org/expert/25454 -https://www.oceanexpert.org/expert/48936 -https://www.oceanexpert.org/institution/6063 -https://www.oceanexpert.org/expert/28160 -https://www.oceanexpert.org/expert/27014 -https://www.oceanexpert.org/expert/24977 -https://www.oceanexpert.org/expert/14734 -https://www.oceanexpert.org/expert/29143 -https://www.oceanexpert.org/expert/34796 -https://www.oceanexpert.org/expert/22440 -https://www.oceanexpert.org/institution/18637 -https://www.oceanexpert.org/expert/22800 -https://www.oceanexpert.org/institution/18808 -https://www.oceanexpert.org/expert/22327 -https://www.oceanexpert.org/expert/15976 -https://www.oceanexpert.org/event/3021 -https://www.oceanexpert.org/expert/29385 -https://www.oceanexpert.org/expert/22887 -https://www.oceanexpert.org/expert/35118 -https://www.oceanexpert.org/expert/37326 -https://www.oceanexpert.org/event/100 -https://www.oceanexpert.org/expert/16180 -https://www.oceanexpert.org/expert/34864 -https://www.oceanexpert.org/expert/14607 -https://www.oceanexpert.org/expert/8882 -https://www.oceanexpert.org/expert/5703 -https://www.oceanexpert.org/expert/44816 -https://www.oceanexpert.org/expert/23307 -https://www.oceanexpert.org/expert/27329 -https://www.oceanexpert.org/institution/11608 -https://www.oceanexpert.org/institution/6537 -https://www.oceanexpert.org/institution/18439 -https://www.oceanexpert.org/institution/7745 -https://www.oceanexpert.org/institution/18895 -https://www.oceanexpert.org/expert/26053 -https://www.oceanexpert.org/expert/16963 -https://www.oceanexpert.org/expert/14199 -https://www.oceanexpert.org/expert/48630 -https://www.oceanexpert.org/expert/29710 -https://www.oceanexpert.org/expert/44525 -https://www.oceanexpert.org/expert/45630 -https://www.oceanexpert.org/event/2443 -https://www.oceanexpert.org/expert/48121 -https://www.oceanexpert.org/expert/47299 -https://www.oceanexpert.org/expert/12726 -https://www.oceanexpert.org/institution/21053 -https://www.oceanexpert.org/expert/24284 -https://www.oceanexpert.org/expert/18717 -https://www.oceanexpert.org/expert/19515 -https://www.oceanexpert.org/institution/12891 -https://www.oceanexpert.org/expert/24557 -https://www.oceanexpert.org/expert/23833 -https://www.oceanexpert.org/expert/44839 -https://www.oceanexpert.org/expert/23933 -https://www.oceanexpert.org/expert/26560 -https://www.oceanexpert.org/institution/19531 -https://www.oceanexpert.org/expert/117 -https://www.oceanexpert.org/expert/44607 -https://www.oceanexpert.org/expert/21509 -https://www.oceanexpert.org/expert/47029 -https://www.oceanexpert.org/expert/10224 -https://www.oceanexpert.org/institution/14795 -https://www.oceanexpert.org/event/35 -https://www.oceanexpert.org/institution/21067 -https://www.oceanexpert.org/institution/17933 -https://www.oceanexpert.org/expert/36114 -https://www.oceanexpert.org/expert/44823 -https://www.oceanexpert.org/expert/12709 -https://www.oceanexpert.org/expert/26999 -https://www.oceanexpert.org/expert/47948 -https://www.oceanexpert.org/expert/36900 -https://www.oceanexpert.org/institution/7656 -https://www.oceanexpert.org/expert/48085 -https://www.oceanexpert.org/expert/23949 -https://www.oceanexpert.org/expert/48555 -https://www.oceanexpert.org/expert/28412 -https://www.oceanexpert.org/expert/31817 -https://www.oceanexpert.org/institution/21051 -https://www.oceanexpert.org/expert/21936 -https://www.oceanexpert.org/expert/6345 -https://www.oceanexpert.org/expert/16876 -https://www.oceanexpert.org/event/3099 -https://www.oceanexpert.org/institution/13996 -https://www.oceanexpert.org/expert/23383 -https://www.oceanexpert.org/event/202 -https://www.oceanexpert.org/expert/25598 -https://www.oceanexpert.org/institution/19089 -https://www.oceanexpert.org/expert/34684 -https://www.oceanexpert.org/expert/19673 -https://www.oceanexpert.org/institution/21164 -https://www.oceanexpert.org/expert/48045 -https://www.oceanexpert.org/expert/32102 -https://www.oceanexpert.org/expert/20494 -https://www.oceanexpert.org/expert/3781 -https://www.oceanexpert.org/expert/12119 -https://www.oceanexpert.org/expert/26712 -https://www.oceanexpert.org/expert/21836 -https://www.oceanexpert.org/event/3251 -https://www.oceanexpert.org/institution/10926 -https://www.oceanexpert.org/expert/24249 -https://www.oceanexpert.org/expert/22111 -https://www.oceanexpert.org/institution/13392 -https://www.oceanexpert.org/institution/20676 -https://www.oceanexpert.org/expert/38190 -https://www.oceanexpert.org/institution/19490 -https://www.oceanexpert.org/event/3081 -https://www.oceanexpert.org/expert/13579 -https://www.oceanexpert.org/institution/10748 -https://www.oceanexpert.org/expert/30047 -https://www.oceanexpert.org/expert/29924 -https://www.oceanexpert.org/institution/17960 -https://www.oceanexpert.org/institution/16265 -https://www.oceanexpert.org/expert/19046 -https://www.oceanexpert.org/institution/20979 -https://www.oceanexpert.org/expert/3587 -https://www.oceanexpert.org/expert/27054 -https://www.oceanexpert.org/institution/18291 -https://www.oceanexpert.org/expert/37081 -https://www.oceanexpert.org/expert/13752 -https://www.oceanexpert.org/expert/37298 -https://www.oceanexpert.org/institution/20528 -https://www.oceanexpert.org/expert/31264 -https://www.oceanexpert.org/expert/37668 -https://www.oceanexpert.org/expert/26083 -https://www.oceanexpert.org/expert/20385 -https://www.oceanexpert.org/institution/6463 -https://www.oceanexpert.org/expert/42413 -https://www.oceanexpert.org/expert/36542 -https://www.oceanexpert.org/institution/12990 -https://www.oceanexpert.org/expert/24363 -https://www.oceanexpert.org/expert/25699 -https://www.oceanexpert.org/expert/45463 -https://www.oceanexpert.org/expert/21872 -https://www.oceanexpert.org/expert/38173 -https://www.oceanexpert.org/expert/47901 -https://www.oceanexpert.org/expert/48397 -https://www.oceanexpert.org/event/2881 -https://www.oceanexpert.org/expert/21152 -https://www.oceanexpert.org/expert/13273 -https://www.oceanexpert.org/expert/23568 -https://www.oceanexpert.org/institution/18399 -https://www.oceanexpert.org/expert/35263 -https://www.oceanexpert.org/expert/27336 -https://www.oceanexpert.org/expert/26217 -https://www.oceanexpert.org/expert/39292 -https://www.oceanexpert.org/expert/43419 -https://www.oceanexpert.org/institution/19594 -https://www.oceanexpert.org/expert/14122 -https://www.oceanexpert.org/expert/30296 -https://www.oceanexpert.org/expert/48918 -https://www.oceanexpert.org/expert/29384 -https://www.oceanexpert.org/expert/14585 -https://www.oceanexpert.org/expert/15840 -https://www.oceanexpert.org/expert/11850 -https://www.oceanexpert.org/institution/21743 -https://www.oceanexpert.org/event/2585 -https://www.oceanexpert.org/expert/11904 -https://www.oceanexpert.org/expert/42831 -https://www.oceanexpert.org/institution/21850 -https://www.oceanexpert.org/institution/14951 -https://www.oceanexpert.org/expert/29913 -https://www.oceanexpert.org/expert/43476 -https://www.oceanexpert.org/expert/17439 -https://www.oceanexpert.org/expert/43953 -https://www.oceanexpert.org/event/249 -https://www.oceanexpert.org/expert/19009 -https://www.oceanexpert.org/expert/36801 -https://www.oceanexpert.org/expert/37211 -https://www.oceanexpert.org/expert/43333 -https://www.oceanexpert.org/institution/20971 -https://www.oceanexpert.org/expert/35757 -https://www.oceanexpert.org/institution/20405 -https://www.oceanexpert.org/expert/31449 -https://www.oceanexpert.org/institution/21203 -https://www.oceanexpert.org/event/2664 -https://www.oceanexpert.org/institution/18400 -https://www.oceanexpert.org/expert/36742 -https://www.oceanexpert.org/expert/47618 -https://www.oceanexpert.org/expert/22229 -https://www.oceanexpert.org/institution/18434 -https://www.oceanexpert.org/institution/16799 -https://www.oceanexpert.org/event/279 -https://www.oceanexpert.org/expert/33035 -https://www.oceanexpert.org/expert/31470 -https://www.oceanexpert.org/expert/11344 -https://www.oceanexpert.org/institution/20543 -https://www.oceanexpert.org/institution/19516 -https://www.oceanexpert.org/expert/44741 -https://www.oceanexpert.org/event/1436 -https://www.oceanexpert.org/event/379 -https://www.oceanexpert.org/expert/45876 -https://www.oceanexpert.org/institution/18545 -https://www.oceanexpert.org/event/1664 -https://www.oceanexpert.org/expert/26573 -https://www.oceanexpert.org/institution/13104 -https://www.oceanexpert.org/institution/16758 -https://www.oceanexpert.org/expert/26453 -https://www.oceanexpert.org/expert/31119 -https://www.oceanexpert.org/expert/36790 -https://www.oceanexpert.org/institution/17534 -https://www.oceanexpert.org/expert/26532 -https://www.oceanexpert.org/institution/19705 -https://www.oceanexpert.org/institution/19527 -https://www.oceanexpert.org/institution/18826 -https://www.oceanexpert.org/expert/36821 -https://www.oceanexpert.org/expert/25314 -https://www.oceanexpert.org/expert/16006 -https://www.oceanexpert.org/expert/24209 -https://www.oceanexpert.org/expert/24647 -https://www.oceanexpert.org/expert/46866 -https://www.oceanexpert.org/institution/9725 -https://www.oceanexpert.org/expert/20145 -https://www.oceanexpert.org/expert/24000 -https://www.oceanexpert.org/expert/32930 -https://www.oceanexpert.org/expert/35281 -https://www.oceanexpert.org/expert/46922 -https://www.oceanexpert.org/expert/43189 -https://www.oceanexpert.org/expert/37227 -https://www.oceanexpert.org/expert/30143 -https://www.oceanexpert.org/expert/24881 -https://www.oceanexpert.org/expert/24100 -https://www.oceanexpert.org/expert/24571 -https://www.oceanexpert.org/expert/21022 -https://www.oceanexpert.org/institution/12570 -https://www.oceanexpert.org/expert/21108 -https://www.oceanexpert.org/expert/37917 -https://www.oceanexpert.org/institution/11705 -https://www.oceanexpert.org/expert/38879 -https://www.oceanexpert.org/institution/22126 -https://www.oceanexpert.org/expert/31724 -https://www.oceanexpert.org/expert/48001 -https://www.oceanexpert.org/expert/20917 -https://www.oceanexpert.org/expert/23725 -https://www.oceanexpert.org/expert/35195 -https://www.oceanexpert.org/institution/15240 -https://www.oceanexpert.org/expert/44546 -https://www.oceanexpert.org/expert/22776 -https://www.oceanexpert.org/institution/19512 -https://www.oceanexpert.org/expert/22754 -https://www.oceanexpert.org/institution/20902 -https://www.oceanexpert.org/expert/20877 -https://www.oceanexpert.org/expert/36458 -https://www.oceanexpert.org/expert/35996 -https://www.oceanexpert.org/institution/13963 -https://www.oceanexpert.org/expert/16614 -https://www.oceanexpert.org/expert/45873 -https://www.oceanexpert.org/expert/21836 -https://www.oceanexpert.org/expert/19773 -https://www.oceanexpert.org/expert/44332 -https://www.oceanexpert.org/expert/20742 -https://www.oceanexpert.org/institution/6953 -https://www.oceanexpert.org/expert/16412 -https://www.oceanexpert.org/expert/41834 -https://www.oceanexpert.org/expert/38360 -https://www.oceanexpert.org/expert/26920 -https://www.oceanexpert.org/event/367 -https://www.oceanexpert.org/expert/31653 -https://www.oceanexpert.org/expert/30886 -https://www.oceanexpert.org/expert/48836 -https://www.oceanexpert.org/expert/22881 -https://www.oceanexpert.org/expert/48369 -https://www.oceanexpert.org/event/1485 -https://www.oceanexpert.org/institution/7845 -https://www.oceanexpert.org/expert/19444 -https://www.oceanexpert.org/expert/13014 -https://www.oceanexpert.org/institution/5944 -https://www.oceanexpert.org/expert/46401 -https://www.oceanexpert.org/expert/45423 -https://www.oceanexpert.org/event/713 -https://www.oceanexpert.org/expert/37240 -https://www.oceanexpert.org/expert/23937 -https://www.oceanexpert.org/expert/21791 -https://www.oceanexpert.org/expert/24273 -https://www.oceanexpert.org/institution/17633 -https://www.oceanexpert.org/expert/25935 -https://www.oceanexpert.org/expert/44402 -https://www.oceanexpert.org/expert/19396 -https://www.oceanexpert.org/expert/47741 -https://www.oceanexpert.org/expert/32187 -https://www.oceanexpert.org/expert/42535 -https://www.oceanexpert.org/institution/12385 -https://www.oceanexpert.org/institution/19643 -https://www.oceanexpert.org/expert/44053 -https://www.oceanexpert.org/expert/25152 -https://www.oceanexpert.org/expert/34386 -https://www.oceanexpert.org/institution/12870 -https://www.oceanexpert.org/expert/26026 -https://www.oceanexpert.org/expert/37892 -https://www.oceanexpert.org/expert/25053 -https://www.oceanexpert.org/institution/10795 -https://www.oceanexpert.org/expert/20436 -https://www.oceanexpert.org/expert/23784 -https://www.oceanexpert.org/institution/19458 -https://www.oceanexpert.org/expert/21561 -https://www.oceanexpert.org/event/366 -https://www.oceanexpert.org/expert/13638 -https://www.oceanexpert.org/expert/36558 -https://www.oceanexpert.org/expert/27582 -https://www.oceanexpert.org/expert/29693 -https://www.oceanexpert.org/expert/40298 -https://www.oceanexpert.org/institution/19311 -https://www.oceanexpert.org/event/1473 -https://www.oceanexpert.org/expert/20106 -https://www.oceanexpert.org/expert/42873 -https://www.oceanexpert.org/expert/43880 -https://www.oceanexpert.org/expert/46872 -https://www.oceanexpert.org/expert/28267 -https://www.oceanexpert.org/institution/9296 -https://www.oceanexpert.org/expert/2283 -https://www.oceanexpert.org/institution/19485 -https://www.oceanexpert.org/expert/24288 -https://www.oceanexpert.org/expert/19525 -https://www.oceanexpert.org/expert/28303 -https://www.oceanexpert.org/event/697 -https://www.oceanexpert.org/institution/20206 -https://www.oceanexpert.org/expert/267 -https://www.oceanexpert.org/expert/27344 -https://www.oceanexpert.org/expert/26418 -https://www.oceanexpert.org/expert/21207 -https://www.oceanexpert.org/institution/18507 -https://www.oceanexpert.org/expert/20567 -https://www.oceanexpert.org/expert/19265 -https://www.oceanexpert.org/expert/31353 -https://www.oceanexpert.org/expert/16774 -https://www.oceanexpert.org/event/578 -https://www.oceanexpert.org/event/451 -https://www.oceanexpert.org/expert/29920 -https://www.oceanexpert.org/expert/13982 -https://www.oceanexpert.org/institution/5028 -https://www.oceanexpert.org/institution/13534 -https://www.oceanexpert.org/expert/26488 -https://www.oceanexpert.org/expert/15558 -https://www.oceanexpert.org/expert/31474 -https://www.oceanexpert.org/institution/11024 -https://www.oceanexpert.org/expert/31114 -https://www.oceanexpert.org/event/1949 -https://www.oceanexpert.org/expert/22371 -https://www.oceanexpert.org/expert/46163 -https://www.oceanexpert.org/expert/27281 -https://www.oceanexpert.org/institution/13104 -https://www.oceanexpert.org/institution/13277 -https://www.oceanexpert.org/expert/37129 -https://www.oceanexpert.org/institution/21166 -https://www.oceanexpert.org/expert/41834 -https://www.oceanexpert.org/expert/20985 -https://www.oceanexpert.org/expert/32279 -https://www.oceanexpert.org/institution/13512 -https://www.oceanexpert.org/expert/2255 -https://www.oceanexpert.org/expert/23155 -https://www.oceanexpert.org/expert/23731 -https://www.oceanexpert.org/institution/16733 -https://www.oceanexpert.org/expert/48013 -https://www.oceanexpert.org/expert/2134 -https://www.oceanexpert.org/expert/11295 -https://www.oceanexpert.org/expert/24079 -https://www.oceanexpert.org/expert/34162 -https://www.oceanexpert.org/expert/36501 -https://www.oceanexpert.org/institution/10135 -https://www.oceanexpert.org/institution/22098 -https://www.oceanexpert.org/expert/36656 -https://www.oceanexpert.org/expert/20004 -https://www.oceanexpert.org/expert/35736 -https://www.oceanexpert.org/event/1850 -https://www.oceanexpert.org/expert/34976 -https://www.oceanexpert.org/expert/21372 -https://www.oceanexpert.org/event/783 -https://www.oceanexpert.org/institution/19812 -https://www.oceanexpert.org/institution/14395 -https://www.oceanexpert.org/institution/20209 -https://www.oceanexpert.org/expert/31324 -https://www.oceanexpert.org/expert/48513 -https://www.oceanexpert.org/expert/20153 -https://www.oceanexpert.org/expert/24587 -https://www.oceanexpert.org/expert/48534 -https://www.oceanexpert.org/expert/18664 -https://www.oceanexpert.org/institution/19410 -https://www.oceanexpert.org/expert/27307 -https://www.oceanexpert.org/institution/19203 -https://www.oceanexpert.org/expert/22714 -https://www.oceanexpert.org/institution/6531 -https://www.oceanexpert.org/event/682 -https://www.oceanexpert.org/event/1358 -https://www.oceanexpert.org/expert/43158 -https://www.oceanexpert.org/expert/26884 -https://www.oceanexpert.org/event/1416 -https://www.oceanexpert.org/expert/24338 -https://www.oceanexpert.org/expert/8006 -https://www.oceanexpert.org/expert/19847 -https://www.oceanexpert.org/expert/31583 -https://www.oceanexpert.org/event/21 -https://www.oceanexpert.org/expert/44432 -https://www.oceanexpert.org/institution/6156 -https://www.oceanexpert.org/expert/22145 -https://www.oceanexpert.org/institution/19913 -https://www.oceanexpert.org/expert/39231 -https://www.oceanexpert.org/expert/19917 -https://www.oceanexpert.org/expert/26125 -https://www.oceanexpert.org/expert/17274 -https://www.oceanexpert.org/institution/15198 -https://www.oceanexpert.org/expert/31211 -https://www.oceanexpert.org/expert/19892 -https://www.oceanexpert.org/expert/36690 -https://www.oceanexpert.org/expert/42673 -https://www.oceanexpert.org/event/2708 -https://www.oceanexpert.org/expert/42617 -https://www.oceanexpert.org/expert/36646 -https://www.oceanexpert.org/expert/18803 -https://www.oceanexpert.org/expert/20405 -https://www.oceanexpert.org/expert/33632 -https://www.oceanexpert.org/event/317 -https://www.oceanexpert.org/expert/43457 -https://www.oceanexpert.org/expert/10869 -https://www.oceanexpert.org/expert/34856 -https://www.oceanexpert.org/institution/17282 -https://www.oceanexpert.org/event/1826 -https://www.oceanexpert.org/expert/37244 -https://www.oceanexpert.org/expert/17993 -https://www.oceanexpert.org/event/723 -https://www.oceanexpert.org/event/533 -https://www.oceanexpert.org/expert/46007 -https://www.oceanexpert.org/expert/35855 -https://www.oceanexpert.org/expert/20459 -https://www.oceanexpert.org/expert/29852 -https://www.oceanexpert.org/expert/39407 -https://www.oceanexpert.org/expert/13853 -https://www.oceanexpert.org/expert/25656 -https://www.oceanexpert.org/institution/5057 -https://www.oceanexpert.org/expert/23500 -https://www.oceanexpert.org/expert/11268 -https://www.oceanexpert.org/expert/24068 -https://www.oceanexpert.org/expert/24670 -https://www.oceanexpert.org/expert/26948 -https://www.oceanexpert.org/expert/26891 -https://www.oceanexpert.org/expert/20266 -https://www.oceanexpert.org/expert/26041 -https://www.oceanexpert.org/expert/15044 -https://www.oceanexpert.org/expert/35287 -https://www.oceanexpert.org/institution/11033 -https://www.oceanexpert.org/institution/14348 -https://www.oceanexpert.org/institution/21313 -https://www.oceanexpert.org/expert/15510 -https://www.oceanexpert.org/expert/26290 -https://www.oceanexpert.org/institution/12286 -https://www.oceanexpert.org/expert/45262 -https://www.oceanexpert.org/expert/22475 -https://www.oceanexpert.org/expert/23334 -https://www.oceanexpert.org/expert/8850 -https://www.oceanexpert.org/expert/27294 -https://www.oceanexpert.org/expert/15261 -https://www.oceanexpert.org/institution/12721 -https://www.oceanexpert.org/institution/21656 -https://www.oceanexpert.org/expert/24800 -https://www.oceanexpert.org/expert/2541 -https://www.oceanexpert.org/expert/25673 -https://www.oceanexpert.org/institution/19083 -https://www.oceanexpert.org/institution/12043 -https://www.oceanexpert.org/institution/22181 -https://www.oceanexpert.org/expert/34820 -https://www.oceanexpert.org/expert/42798 -https://www.oceanexpert.org/institution/7505 -https://www.oceanexpert.org/expert/37517 -https://www.oceanexpert.org/expert/28381 -https://www.oceanexpert.org/expert/37805 -https://www.oceanexpert.org/expert/26422 -https://www.oceanexpert.org/expert/27387 -https://www.oceanexpert.org/expert/48063 -https://www.oceanexpert.org/expert/38900 -https://www.oceanexpert.org/event/3262 -https://www.oceanexpert.org/institution/18385 -https://www.oceanexpert.org/institution/14127 -https://www.oceanexpert.org/expert/25590 -https://www.oceanexpert.org/expert/45294 -https://www.oceanexpert.org/institution/21092 -https://www.oceanexpert.org/expert/22016 -https://www.oceanexpert.org/expert/37890 -https://www.oceanexpert.org/expert/27487 -https://www.oceanexpert.org/institution/19171 -https://www.oceanexpert.org/expert/25920 -https://www.oceanexpert.org/institution/20338 -https://www.oceanexpert.org/expert/23485 -https://www.oceanexpert.org/expert/31438 -https://www.oceanexpert.org/institution/19738 -https://www.oceanexpert.org/expert/28156 -https://www.oceanexpert.org/expert/47875 -https://www.oceanexpert.org/institution/19474 -https://www.oceanexpert.org/expert/46535 -https://www.oceanexpert.org/expert/18857 -https://www.oceanexpert.org/institution/18454 -https://www.oceanexpert.org/expert/36815 -https://www.oceanexpert.org/expert/46518 -https://www.oceanexpert.org/expert/27226 -https://www.oceanexpert.org/expert/6316 -https://www.oceanexpert.org/expert/23652 -https://www.oceanexpert.org/institution/15246 -https://www.oceanexpert.org/expert/37821 -https://www.oceanexpert.org/expert/22618 -https://www.oceanexpert.org/expert/19343 -https://www.oceanexpert.org/expert/20009 -https://www.oceanexpert.org/expert/6778 -https://www.oceanexpert.org/event/2525 -https://www.oceanexpert.org/institution/7533 -https://www.oceanexpert.org/institution/12540 -https://www.oceanexpert.org/expert/37624 -https://www.oceanexpert.org/expert/33078 -https://www.oceanexpert.org/expert/19936 -https://www.oceanexpert.org/expert/18126 -https://www.oceanexpert.org/event/2848 -https://www.oceanexpert.org/institution/19780 -https://www.oceanexpert.org/expert/46375 -https://www.oceanexpert.org/expert/33619 -https://www.oceanexpert.org/expert/36538 -https://www.oceanexpert.org/expert/23936 -https://www.oceanexpert.org/institution/21705 -https://www.oceanexpert.org/expert/21593 -https://www.oceanexpert.org/expert/4085 -https://www.oceanexpert.org/expert/32433 -https://www.oceanexpert.org/institution/20987 -https://www.oceanexpert.org/event/198 -https://www.oceanexpert.org/expert/37098 -https://www.oceanexpert.org/expert/27387 -https://www.oceanexpert.org/institution/18136 -https://www.oceanexpert.org/expert/19386 -https://www.oceanexpert.org/expert/20675 -https://www.oceanexpert.org/expert/29700 -https://www.oceanexpert.org/expert/46139 -https://www.oceanexpert.org/institution/6547 -https://www.oceanexpert.org/expert/26228 -https://www.oceanexpert.org/event/177 -https://www.oceanexpert.org/institution/17883 -https://www.oceanexpert.org/expert/4198 -https://www.oceanexpert.org/institution/9145 -https://www.oceanexpert.org/expert/22796 -https://www.oceanexpert.org/expert/18585 -https://www.oceanexpert.org/institution/12392 -https://www.oceanexpert.org/institution/10600 -https://www.oceanexpert.org/expert/15574 -https://www.oceanexpert.org/expert/45356 -https://www.oceanexpert.org/expert/30938 -https://www.oceanexpert.org/expert/35951 -https://www.oceanexpert.org/event/1749 -https://www.oceanexpert.org/expert/31818 -https://www.oceanexpert.org/event/324 -https://www.oceanexpert.org/expert/46626 -https://www.oceanexpert.org/event/3066 -https://www.oceanexpert.org/institution/17580 -https://www.oceanexpert.org/expert/20139 -https://www.oceanexpert.org/event/28 -https://www.oceanexpert.org/expert/45885 -https://www.oceanexpert.org/institution/21432 -https://www.oceanexpert.org/expert/43823 -https://www.oceanexpert.org/institution/22086 -https://www.oceanexpert.org/expert/38121 -https://www.oceanexpert.org/institution/15872 -https://www.oceanexpert.org/institution/8349 -https://www.oceanexpert.org/institution/12912 -https://www.oceanexpert.org/expert/34235 -https://www.oceanexpert.org/expert/21635 -https://www.oceanexpert.org/expert/16427 -https://www.oceanexpert.org/institution/12116 -https://www.oceanexpert.org/event/1197 -https://www.oceanexpert.org/expert/36226 -https://www.oceanexpert.org/institution/21387 -https://www.oceanexpert.org/expert/32779 -https://www.oceanexpert.org/expert/23963 -https://www.oceanexpert.org/institution/10165 -https://www.oceanexpert.org/expert/29135 -https://www.oceanexpert.org/expert/24045 -https://www.oceanexpert.org/event/2703 -https://www.oceanexpert.org/expert/35862 -https://www.oceanexpert.org/expert/18125 -https://www.oceanexpert.org/expert/29617 -https://www.oceanexpert.org/institution/19622 -https://www.oceanexpert.org/expert/18952 -https://www.oceanexpert.org/expert/45757 -https://www.oceanexpert.org/institution/16296 -https://www.oceanexpert.org/expert/6705 -https://www.oceanexpert.org/expert/24234 -https://www.oceanexpert.org/expert/44720 -https://www.oceanexpert.org/institution/15766 -https://www.oceanexpert.org/expert/35674 -https://www.oceanexpert.org/institution/19697 -https://www.oceanexpert.org/expert/8574 -https://www.oceanexpert.org/expert/45626 -https://www.oceanexpert.org/expert/34710 -https://www.oceanexpert.org/expert/25923 -https://www.oceanexpert.org/expert/45935 -https://www.oceanexpert.org/institution/8623 -https://www.oceanexpert.org/event/2894 -https://www.oceanexpert.org/event/820 -https://www.oceanexpert.org/expert/42947 -https://www.oceanexpert.org/expert/17652 -https://www.oceanexpert.org/expert/8747 -https://www.oceanexpert.org/expert/47256 -https://www.oceanexpert.org/expert/21661 -https://www.oceanexpert.org/expert/23605 -https://www.oceanexpert.org/expert/40165 -https://www.oceanexpert.org/expert/11771 -https://www.oceanexpert.org/expert/30900 -https://www.oceanexpert.org/institution/15926 -https://www.oceanexpert.org/institution/12845 -https://www.oceanexpert.org/expert/24734 -https://www.oceanexpert.org/expert/23246 -https://www.oceanexpert.org/institution/19131 -https://www.oceanexpert.org/expert/22610 -https://www.oceanexpert.org/expert/22600 -https://www.oceanexpert.org/event/285 -https://www.oceanexpert.org/institution/18130 -https://www.oceanexpert.org/expert/32744 -https://www.oceanexpert.org/expert/27448 -https://www.oceanexpert.org/expert/32043 -https://www.oceanexpert.org/event/229 -https://www.oceanexpert.org/expert/43159 -https://www.oceanexpert.org/expert/36052 -https://www.oceanexpert.org/event/3293 -https://www.oceanexpert.org/expert/35867 -https://www.oceanexpert.org/institution/9989 -https://www.oceanexpert.org/expert/30906 -https://www.oceanexpert.org/institution/21493 -https://www.oceanexpert.org/expert/26946 -https://www.oceanexpert.org/expert/1253 -https://www.oceanexpert.org/expert/22050 -https://www.oceanexpert.org/institution/19629 -https://www.oceanexpert.org/institution/16667 -https://www.oceanexpert.org/expert/5573 -https://www.oceanexpert.org/institution/7495 -https://www.oceanexpert.org/institution/13750 -https://www.oceanexpert.org/expert/21682 -https://www.oceanexpert.org/expert/41424 -https://www.oceanexpert.org/expert/47168 -https://www.oceanexpert.org/expert/48901 -https://www.oceanexpert.org/event/1234 -https://www.oceanexpert.org/expert/48171 -https://www.oceanexpert.org/event/546 -https://www.oceanexpert.org/institution/21563 -https://www.oceanexpert.org/expert/28054 -https://www.oceanexpert.org/institution/19636 -https://www.oceanexpert.org/expert/30292 -https://www.oceanexpert.org/expert/34678 -https://www.oceanexpert.org/institution/17494 -https://www.oceanexpert.org/expert/45490 -https://www.oceanexpert.org/expert/26037 -https://www.oceanexpert.org/institution/10749 -https://www.oceanexpert.org/institution/18763 -https://www.oceanexpert.org/expert/17242 -https://www.oceanexpert.org/expert/45537 -https://www.oceanexpert.org/expert/25997 -https://www.oceanexpert.org/expert/33793 -https://www.oceanexpert.org/institution/4890 -https://www.oceanexpert.org/expert/37660 -https://www.oceanexpert.org/institution/14437 -https://www.oceanexpert.org/event/1611 -https://www.oceanexpert.org/expert/25839 -https://www.oceanexpert.org/expert/42887 -https://www.oceanexpert.org/institution/18305 -https://www.oceanexpert.org/expert/42915 -https://www.oceanexpert.org/expert/21936 -https://www.oceanexpert.org/institution/12039 -https://www.oceanexpert.org/expert/12968 -https://www.oceanexpert.org/event/951 -https://www.oceanexpert.org/expert/49010 -https://www.oceanexpert.org/expert/36475 -https://www.oceanexpert.org/expert/43861 -https://www.oceanexpert.org/expert/27432 -https://www.oceanexpert.org/expert/12726 -https://www.oceanexpert.org/institution/19514 -https://www.oceanexpert.org/expert/17108 -https://www.oceanexpert.org/institution/20594 -https://www.oceanexpert.org/institution/18745 -https://www.oceanexpert.org/expert/18133 -https://www.oceanexpert.org/expert/45484 -https://www.oceanexpert.org/expert/19602 -https://www.oceanexpert.org/expert/16716 -https://www.oceanexpert.org/expert/34291 -https://www.oceanexpert.org/expert/25814 -https://www.oceanexpert.org/expert/11243 -https://www.oceanexpert.org/expert/35285 -https://www.oceanexpert.org/expert/20324 -https://www.oceanexpert.org/expert/47300 -https://www.oceanexpert.org/expert/33392 -https://www.oceanexpert.org/expert/23215 -https://www.oceanexpert.org/expert/45990 -https://www.oceanexpert.org/expert/44508 -https://www.oceanexpert.org/expert/30467 -https://www.oceanexpert.org/expert/13286 -https://www.oceanexpert.org/expert/4421 -https://www.oceanexpert.org/institution/19747 -https://www.oceanexpert.org/expert/45564 -https://www.oceanexpert.org/expert/17929 -https://www.oceanexpert.org/expert/5573 -https://www.oceanexpert.org/expert/38184 -https://www.oceanexpert.org/institution/13371 -https://www.oceanexpert.org/expert/5316 -https://www.oceanexpert.org/institution/13153 -https://www.oceanexpert.org/expert/11830 -https://www.oceanexpert.org/expert/42361 -https://www.oceanexpert.org/institution/20938 -https://www.oceanexpert.org/expert/12442 -https://www.oceanexpert.org/institution/19004 -https://www.oceanexpert.org/expert/11230 -https://www.oceanexpert.org/expert/40535 -https://www.oceanexpert.org/institution/18564 -https://www.oceanexpert.org/event/2242 -https://www.oceanexpert.org/expert/24363 -https://www.oceanexpert.org/expert/27238 -https://www.oceanexpert.org/expert/36396 -https://www.oceanexpert.org/expert/22412 -https://www.oceanexpert.org/expert/47849 -https://www.oceanexpert.org/expert/48006 -https://www.oceanexpert.org/event/838 -https://www.oceanexpert.org/institution/18186 -https://www.oceanexpert.org/event/1074 -https://www.oceanexpert.org/expert/26707 -https://www.oceanexpert.org/institution/17972 -https://www.oceanexpert.org/expert/25402 -https://www.oceanexpert.org/institution/6156 -https://www.oceanexpert.org/institution/19107 -https://www.oceanexpert.org/expert/20122 -https://www.oceanexpert.org/expert/33467 -https://www.oceanexpert.org/institution/19482 -https://www.oceanexpert.org/expert/47610 -https://www.oceanexpert.org/expert/18331 -https://www.oceanexpert.org/expert/34189 -https://www.oceanexpert.org/event/2019 -https://www.oceanexpert.org/expert/47727 -https://www.oceanexpert.org/expert/31885 -https://www.oceanexpert.org/expert/17155 -https://www.oceanexpert.org/expert/25306 -https://www.oceanexpert.org/expert/24964 -https://www.oceanexpert.org/event/1059 -https://www.oceanexpert.org/expert/8047 -https://www.oceanexpert.org/expert/46211 -https://www.oceanexpert.org/institution/19302 -https://www.oceanexpert.org/event/987 -https://www.oceanexpert.org/institution/19379 -https://www.oceanexpert.org/institution/20358 -https://www.oceanexpert.org/institution/18691 -https://www.oceanexpert.org/institution/10296 -https://www.oceanexpert.org/expert/43785 -https://www.oceanexpert.org/expert/35616 -https://www.oceanexpert.org/expert/45824 -https://www.oceanexpert.org/event/182 -https://www.oceanexpert.org/expert/26875 -https://www.oceanexpert.org/institution/9998 -https://www.oceanexpert.org/institution/20692 -https://www.oceanexpert.org/expert/39969 -https://www.oceanexpert.org/institution/18687 -https://www.oceanexpert.org/event/2812 -https://www.oceanexpert.org/expert/34903 -https://www.oceanexpert.org/institution/12125 -https://www.oceanexpert.org/expert/7453 -https://www.oceanexpert.org/institution/18018 -https://www.oceanexpert.org/expert/46368 -https://www.oceanexpert.org/expert/27404 -https://www.oceanexpert.org/expert/37650 -https://www.oceanexpert.org/expert/2846 -https://www.oceanexpert.org/institution/13489 -https://www.oceanexpert.org/expert/24571 -https://www.oceanexpert.org/event/1267 -https://www.oceanexpert.org/expert/33890 -https://www.oceanexpert.org/institution/17580 -https://www.oceanexpert.org/expert/43872 -https://www.oceanexpert.org/institution/18588 -https://www.oceanexpert.org/institution/10087 -https://www.oceanexpert.org/expert/42866 -https://www.oceanexpert.org/expert/22225 -https://www.oceanexpert.org/institution/21162 -https://www.oceanexpert.org/expert/20513 -https://www.oceanexpert.org/expert/20605 -https://www.oceanexpert.org/expert/48622 -https://www.oceanexpert.org/expert/48688 -https://www.oceanexpert.org/expert/47221 -https://www.oceanexpert.org/expert/13199 -https://www.oceanexpert.org/expert/43924 -https://www.oceanexpert.org/institution/20834 -https://www.oceanexpert.org/expert/38447 -https://www.oceanexpert.org/expert/20545 -https://www.oceanexpert.org/expert/3200 -https://www.oceanexpert.org/expert/22934 -https://www.oceanexpert.org/expert/10247 -https://www.oceanexpert.org/expert/261 -https://www.oceanexpert.org/institution/19130 -https://www.oceanexpert.org/expert/35415 -https://www.oceanexpert.org/institution/20929 -https://www.oceanexpert.org/expert/22907 -https://www.oceanexpert.org/institution/19353 -https://www.oceanexpert.org/expert/37403 -https://www.oceanexpert.org/expert/26603 -https://www.oceanexpert.org/event/2982 -https://www.oceanexpert.org/institution/9737 -https://www.oceanexpert.org/expert/37143 -https://www.oceanexpert.org/expert/36640 -https://www.oceanexpert.org/institution/19786 -https://www.oceanexpert.org/institution/12727 -https://www.oceanexpert.org/institution/21347 -https://www.oceanexpert.org/expert/23344 -https://www.oceanexpert.org/expert/23774 -https://www.oceanexpert.org/institution/18855 -https://www.oceanexpert.org/expert/20166 -https://www.oceanexpert.org/expert/13974 -https://www.oceanexpert.org/institution/19358 -https://www.oceanexpert.org/expert/20467 -https://www.oceanexpert.org/expert/26907 -https://www.oceanexpert.org/expert/46084 -https://www.oceanexpert.org/event/411 -https://www.oceanexpert.org/expert/20969 -https://www.oceanexpert.org/expert/21121 -https://www.oceanexpert.org/expert/25853 -https://www.oceanexpert.org/institution/13164 -https://www.oceanexpert.org/institution/21352 -https://www.oceanexpert.org/event/1922 -https://www.oceanexpert.org/institution/18207 -https://www.oceanexpert.org/event/1130 -https://www.oceanexpert.org/expert/47317 -https://www.oceanexpert.org/expert/12934 -https://www.oceanexpert.org/event/1965 -https://www.oceanexpert.org/institution/21692 -https://www.oceanexpert.org/expert/23521 -https://www.oceanexpert.org/expert/22296 -https://www.oceanexpert.org/institution/19891 -https://www.oceanexpert.org/institution/19593 -https://www.oceanexpert.org/institution/14553 -https://www.oceanexpert.org/expert/25519 -https://www.oceanexpert.org/expert/26439 -https://www.oceanexpert.org/expert/43264 -https://www.oceanexpert.org/expert/28927 -https://www.oceanexpert.org/expert/42000 -https://www.oceanexpert.org/event/309 -https://www.oceanexpert.org/institution/10139 -https://www.oceanexpert.org/institution/17435 -https://www.oceanexpert.org/institution/18617 -https://www.oceanexpert.org/expert/39415 -https://www.oceanexpert.org/institution/7095 -https://www.oceanexpert.org/expert/24548 -https://www.oceanexpert.org/expert/6475 -https://www.oceanexpert.org/institution/22108 -https://www.oceanexpert.org/expert/37909 -https://www.oceanexpert.org/expert/20786 -https://www.oceanexpert.org/institution/21402 -https://www.oceanexpert.org/expert/25390 -https://www.oceanexpert.org/expert/43289 -https://www.oceanexpert.org/institution/18560 -https://www.oceanexpert.org/expert/34841 -https://www.oceanexpert.org/expert/11021 -https://www.oceanexpert.org/institution/13772 -https://www.oceanexpert.org/expert/45973 -https://www.oceanexpert.org/expert/30681 -https://www.oceanexpert.org/institution/21420 -https://www.oceanexpert.org/expert/12619 -https://www.oceanexpert.org/expert/48721 -https://www.oceanexpert.org/expert/35838 -https://www.oceanexpert.org/institution/15570 -https://www.oceanexpert.org/expert/2354 -https://www.oceanexpert.org/expert/26143 -https://www.oceanexpert.org/institution/14630 -https://www.oceanexpert.org/expert/26709 -https://www.oceanexpert.org/expert/38073 -https://www.oceanexpert.org/institution/21283 -https://www.oceanexpert.org/expert/17452 -https://www.oceanexpert.org/institution/21063 -https://www.oceanexpert.org/expert/34478 -https://www.oceanexpert.org/expert/13295 -https://www.oceanexpert.org/expert/18858 -https://www.oceanexpert.org/expert/42833 -https://www.oceanexpert.org/expert/35287 -https://www.oceanexpert.org/institution/13493 -https://www.oceanexpert.org/institution/11792 -https://www.oceanexpert.org/event/97 -https://www.oceanexpert.org/expert/17243 -https://www.oceanexpert.org/expert/47884 -https://www.oceanexpert.org/expert/47496 -https://www.oceanexpert.org/expert/18443 -https://www.oceanexpert.org/institution/20057 -https://www.oceanexpert.org/expert/44748 -https://www.oceanexpert.org/institution/14178 -https://www.oceanexpert.org/expert/35859 -https://www.oceanexpert.org/expert/45492 -https://www.oceanexpert.org/event/2572 -https://www.oceanexpert.org/institution/9783 -https://www.oceanexpert.org/expert/35406 -https://www.oceanexpert.org/event/1076 -https://www.oceanexpert.org/expert/11494 -https://www.oceanexpert.org/expert/48434 -https://www.oceanexpert.org/expert/26382 -https://www.oceanexpert.org/expert/40553 -https://www.oceanexpert.org/expert/43483 -https://www.oceanexpert.org/event/1274 -https://www.oceanexpert.org/expert/11925 -https://www.oceanexpert.org/expert/48552 -https://www.oceanexpert.org/expert/34436 -https://www.oceanexpert.org/expert/48241 -https://www.oceanexpert.org/expert/44204 -https://www.oceanexpert.org/event/2343 -https://www.oceanexpert.org/expert/33741 -https://www.oceanexpert.org/institution/19326 -https://www.oceanexpert.org/expert/22868 -https://www.oceanexpert.org/expert/38499 -https://www.oceanexpert.org/expert/30849 -https://www.oceanexpert.org/expert/12126 -https://www.oceanexpert.org/institution/9757 -https://www.oceanexpert.org/expert/21181 -https://www.oceanexpert.org/expert/17124 -https://www.oceanexpert.org/expert/17612 -https://www.oceanexpert.org/expert/41409 -https://www.oceanexpert.org/institution/11275 -https://www.oceanexpert.org/institution/9733 -https://www.oceanexpert.org/expert/37605 -https://www.oceanexpert.org/expert/34211 -https://www.oceanexpert.org/expert/20126 -https://www.oceanexpert.org/institution/21513 -https://www.oceanexpert.org/institution/15192 -https://www.oceanexpert.org/expert/38388 -https://www.oceanexpert.org/expert/24718 -https://www.oceanexpert.org/expert/24667 -https://www.oceanexpert.org/institution/14951 -https://www.oceanexpert.org/expert/35199 -https://www.oceanexpert.org/expert/44715 -https://www.oceanexpert.org/expert/43356 -https://www.oceanexpert.org/institution/7267 -https://www.oceanexpert.org/institution/6763 -https://www.oceanexpert.org/expert/47851 -https://www.oceanexpert.org/expert/26780 -https://www.oceanexpert.org/expert/37338 -https://www.oceanexpert.org/expert/31376 -https://www.oceanexpert.org/institution/21343 -https://www.oceanexpert.org/expert/48777 -https://www.oceanexpert.org/expert/38954 -https://www.oceanexpert.org/expert/14977 -https://www.oceanexpert.org/expert/20724 -https://www.oceanexpert.org/expert/19765 -https://www.oceanexpert.org/expert/43155 -https://www.oceanexpert.org/institution/18916 -https://www.oceanexpert.org/institution/7468 -https://www.oceanexpert.org/expert/10832 -https://www.oceanexpert.org/expert/22156 -https://www.oceanexpert.org/institution/21350 -https://www.oceanexpert.org/institution/13139 -https://www.oceanexpert.org/expert/13066 -https://www.oceanexpert.org/expert/33505 -https://www.oceanexpert.org/expert/45651 -https://www.oceanexpert.org/expert/34880 -https://www.oceanexpert.org/expert/32673 -https://www.oceanexpert.org/expert/6731 -https://www.oceanexpert.org/institution/15791 -https://www.oceanexpert.org/expert/46481 -https://www.oceanexpert.org/expert/23412 -https://www.oceanexpert.org/expert/26838 -https://www.oceanexpert.org/institution/21218 -https://www.oceanexpert.org/institution/21375 -https://www.oceanexpert.org/event/3242 -https://www.oceanexpert.org/expert/30530 -https://www.oceanexpert.org/expert/23741 -https://www.oceanexpert.org/expert/21786 -https://www.oceanexpert.org/institution/18335 -https://www.oceanexpert.org/institution/21308 -https://www.oceanexpert.org/expert/6724 -https://www.oceanexpert.org/institution/15043 -https://www.oceanexpert.org/expert/29463 -https://www.oceanexpert.org/institution/16246 -https://www.oceanexpert.org/expert/34992 -https://www.oceanexpert.org/institution/14723 -https://www.oceanexpert.org/expert/23861 -https://www.oceanexpert.org/expert/35260 -https://www.oceanexpert.org/institution/15584 -https://www.oceanexpert.org/expert/34627 -https://www.oceanexpert.org/expert/16144 -https://www.oceanexpert.org/expert/17458 -https://www.oceanexpert.org/expert/43279 -https://www.oceanexpert.org/expert/381 -https://www.oceanexpert.org/institution/13045 -https://www.oceanexpert.org/expert/24106 -https://www.oceanexpert.org/event/317 -https://www.oceanexpert.org/expert/43997 -https://www.oceanexpert.org/expert/25857 -https://www.oceanexpert.org/institution/20310 -https://www.oceanexpert.org/expert/49013 -https://www.oceanexpert.org/institution/7640 -https://www.oceanexpert.org/expert/17158 -https://www.oceanexpert.org/institution/11981 -https://www.oceanexpert.org/expert/19292 -https://www.oceanexpert.org/expert/25348 -https://www.oceanexpert.org/expert/15289 -https://www.oceanexpert.org/expert/31067 -https://www.oceanexpert.org/expert/17404 -https://www.oceanexpert.org/expert/27401 -https://www.oceanexpert.org/expert/38138 -https://www.oceanexpert.org/institution/14095 -https://www.oceanexpert.org/expert/23540 -https://www.oceanexpert.org/institution/17984 -https://www.oceanexpert.org/expert/31746 -https://www.oceanexpert.org/expert/44655 -https://www.oceanexpert.org/institution/11365 -https://www.oceanexpert.org/expert/22932 -https://www.oceanexpert.org/event/1528 -https://www.oceanexpert.org/expert/19210 -https://www.oceanexpert.org/expert/7694 -https://www.oceanexpert.org/institution/16150 -https://www.oceanexpert.org/expert/34662 -https://www.oceanexpert.org/expert/31646 -https://www.oceanexpert.org/expert/47792 -https://www.oceanexpert.org/expert/28247 -https://www.oceanexpert.org/expert/26951 -https://www.oceanexpert.org/institution/7505 -https://www.oceanexpert.org/expert/36514 -https://www.oceanexpert.org/expert/32595 -https://www.oceanexpert.org/expert/19749 -https://www.oceanexpert.org/event/175 -https://www.oceanexpert.org/expert/12179 -https://www.oceanexpert.org/institution/20003 -https://www.oceanexpert.org/expert/48318 -https://www.oceanexpert.org/institution/6434 -https://www.oceanexpert.org/institution/18919 -https://www.oceanexpert.org/expert/13525 -https://www.oceanexpert.org/expert/28364 -https://www.oceanexpert.org/expert/19345 -https://www.oceanexpert.org/institution/12958 -https://www.oceanexpert.org/institution/13912 -https://www.oceanexpert.org/expert/46188 -https://www.oceanexpert.org/institution/14355 -https://www.oceanexpert.org/expert/44672 -https://www.oceanexpert.org/expert/29466 -https://www.oceanexpert.org/expert/35768 -https://www.oceanexpert.org/expert/26320 -https://www.oceanexpert.org/expert/32659 -https://www.oceanexpert.org/expert/21729 -https://www.oceanexpert.org/expert/46767 -https://www.oceanexpert.org/institution/13884 -https://www.oceanexpert.org/institution/20895 -https://www.oceanexpert.org/institution/17067 -https://www.oceanexpert.org/expert/45095 -https://www.oceanexpert.org/expert/15838 -https://www.oceanexpert.org/expert/1725 -https://www.oceanexpert.org/expert/46402 -https://www.oceanexpert.org/expert/37037 -https://www.oceanexpert.org/expert/21162 -https://www.oceanexpert.org/expert/19531 -https://www.oceanexpert.org/expert/37413 -https://www.oceanexpert.org/event/3089 -https://www.oceanexpert.org/expert/35122 -https://www.oceanexpert.org/expert/34057 -https://www.oceanexpert.org/expert/39156 -https://www.oceanexpert.org/institution/15045 -https://www.oceanexpert.org/expert/47615 -https://www.oceanexpert.org/institution/11860 -https://www.oceanexpert.org/institution/14952 -https://www.oceanexpert.org/expert/48895 -https://www.oceanexpert.org/expert/47506 -https://www.oceanexpert.org/expert/38190 -https://www.oceanexpert.org/expert/18400 -https://www.oceanexpert.org/expert/34986 -https://www.oceanexpert.org/institution/10966 -https://www.oceanexpert.org/expert/8757 -https://www.oceanexpert.org/expert/44231 -https://www.oceanexpert.org/institution/7997 -https://www.oceanexpert.org/expert/33385 -https://www.oceanexpert.org/expert/28384 -https://www.oceanexpert.org/expert/48432 -https://www.oceanexpert.org/expert/25792 -https://www.oceanexpert.org/expert/20001 -https://www.oceanexpert.org/institution/21822 -https://www.oceanexpert.org/expert/25520 -https://www.oceanexpert.org/expert/7003 -https://www.oceanexpert.org/expert/33706 -https://www.oceanexpert.org/expert/44711 -https://www.oceanexpert.org/expert/26159 -https://www.oceanexpert.org/expert/26272 -https://www.oceanexpert.org/expert/20552 -https://www.oceanexpert.org/expert/26833 -https://www.oceanexpert.org/expert/20960 -https://www.oceanexpert.org/expert/13158 -https://www.oceanexpert.org/expert/16911 -https://www.oceanexpert.org/expert/44688 -https://www.oceanexpert.org/institution/6636 -https://www.oceanexpert.org/expert/47781 -https://www.oceanexpert.org/expert/16296 -https://www.oceanexpert.org/institution/19194 -https://www.oceanexpert.org/expert/13261 -https://www.oceanexpert.org/event/2403 -https://www.oceanexpert.org/expert/1544 -https://www.oceanexpert.org/expert/1747 -https://www.oceanexpert.org/expert/46965 -https://www.oceanexpert.org/expert/20121 -https://www.oceanexpert.org/expert/26452 -https://www.oceanexpert.org/institution/10140 -https://www.oceanexpert.org/institution/19266 -https://www.oceanexpert.org/institution/11057 -https://www.oceanexpert.org/expert/22583 -https://www.oceanexpert.org/event/1452 -https://www.oceanexpert.org/expert/46650 -https://www.oceanexpert.org/institution/8941 -https://www.oceanexpert.org/institution/12419 -https://www.oceanexpert.org/expert/24474 -https://www.oceanexpert.org/expert/21743 -https://www.oceanexpert.org/expert/19087 -https://www.oceanexpert.org/expert/15306 -https://www.oceanexpert.org/expert/21758 -https://www.oceanexpert.org/institution/19658 -https://www.oceanexpert.org/expert/17483 -https://www.oceanexpert.org/expert/22025 -https://www.oceanexpert.org/expert/20370 -https://www.oceanexpert.org/expert/22876 -https://www.oceanexpert.org/expert/36332 -https://www.oceanexpert.org/institution/17734 -https://www.oceanexpert.org/expert/27289 -https://www.oceanexpert.org/expert/43148 -https://www.oceanexpert.org/expert/19239 -https://www.oceanexpert.org/expert/20896 -https://www.oceanexpert.org/expert/15021 -https://www.oceanexpert.org/event/1510 -https://www.oceanexpert.org/expert/44414 -https://www.oceanexpert.org/expert/45046 -https://www.oceanexpert.org/expert/47524 -https://www.oceanexpert.org/institution/17198 -https://www.oceanexpert.org/expert/38625 -https://www.oceanexpert.org/expert/19120 -https://www.oceanexpert.org/expert/47969 -https://www.oceanexpert.org/expert/2685 -https://www.oceanexpert.org/expert/35523 -https://www.oceanexpert.org/expert/26511 -https://www.oceanexpert.org/institution/16169 -https://www.oceanexpert.org/expert/16848 -https://www.oceanexpert.org/expert/21906 -https://www.oceanexpert.org/expert/48616 -https://www.oceanexpert.org/expert/18176 -https://www.oceanexpert.org/expert/5715 -https://www.oceanexpert.org/expert/24162 -https://www.oceanexpert.org/institution/18661 -https://www.oceanexpert.org/expert/46672 -https://www.oceanexpert.org/event/2800 -https://www.oceanexpert.org/expert/1971 -https://www.oceanexpert.org/expert/27582 -https://www.oceanexpert.org/event/2643 -https://www.oceanexpert.org/expert/40006 -https://www.oceanexpert.org/institution/14687 -https://www.oceanexpert.org/expert/42795 -https://www.oceanexpert.org/expert/33324 -https://www.oceanexpert.org/expert/44932 -https://www.oceanexpert.org/expert/37285 -https://www.oceanexpert.org/institution/5254 -https://www.oceanexpert.org/expert/36237 -https://www.oceanexpert.org/institution/6586 -https://www.oceanexpert.org/expert/36873 -https://www.oceanexpert.org/expert/38228 -https://www.oceanexpert.org/institution/20947 -https://www.oceanexpert.org/institution/21635 -https://www.oceanexpert.org/event/1403 -https://www.oceanexpert.org/expert/18071 -https://www.oceanexpert.org/institution/18984 -https://www.oceanexpert.org/event/2950 -https://www.oceanexpert.org/expert/16293 -https://www.oceanexpert.org/institution/17445 -https://www.oceanexpert.org/expert/23046 -https://www.oceanexpert.org/expert/34751 -https://www.oceanexpert.org/expert/47466 -https://www.oceanexpert.org/institution/21537 -https://www.oceanexpert.org/expert/29784 -https://www.oceanexpert.org/expert/36988 -https://www.oceanexpert.org/expert/2924 -https://www.oceanexpert.org/expert/24937 -https://www.oceanexpert.org/expert/38087 -https://www.oceanexpert.org/institution/18144 -https://www.oceanexpert.org/expert/37944 -https://www.oceanexpert.org/expert/28409 -https://www.oceanexpert.org/expert/27269 -https://www.oceanexpert.org/expert/27209 -https://www.oceanexpert.org/expert/21774 -https://www.oceanexpert.org/institution/10861 -https://www.oceanexpert.org/expert/27749 -https://www.oceanexpert.org/expert/11250 -https://www.oceanexpert.org/expert/20765 -https://www.oceanexpert.org/institution/20915 -https://www.oceanexpert.org/expert/35309 -https://www.oceanexpert.org/expert/47376 -https://www.oceanexpert.org/institution/17603 -https://www.oceanexpert.org/expert/37623 -https://www.oceanexpert.org/expert/26666 -https://www.oceanexpert.org/expert/12664 -https://www.oceanexpert.org/institution/6931 -https://www.oceanexpert.org/expert/44153 -https://www.oceanexpert.org/event/321 -https://www.oceanexpert.org/expert/7820 -https://www.oceanexpert.org/expert/29845 -https://www.oceanexpert.org/expert/37090 -https://www.oceanexpert.org/expert/48744 -https://www.oceanexpert.org/expert/24680 -https://www.oceanexpert.org/expert/33026 -https://www.oceanexpert.org/expert/29024 -https://www.oceanexpert.org/event/2189 -https://www.oceanexpert.org/expert/42997 -https://www.oceanexpert.org/expert/35360 -https://www.oceanexpert.org/expert/15557 -https://www.oceanexpert.org/institution/12219 -https://www.oceanexpert.org/expert/35774 -https://www.oceanexpert.org/expert/35759 -https://www.oceanexpert.org/institution/15000 -https://www.oceanexpert.org/expert/26377 -https://www.oceanexpert.org/expert/43343 -https://www.oceanexpert.org/institution/17772 -https://www.oceanexpert.org/expert/21938 -https://www.oceanexpert.org/institution/18702 -https://www.oceanexpert.org/institution/20491 -https://www.oceanexpert.org/expert/44281 -https://www.oceanexpert.org/event/2638 -https://www.oceanexpert.org/expert/36000 -https://www.oceanexpert.org/event/2948 -https://www.oceanexpert.org/expert/48925 -https://www.oceanexpert.org/expert/27431 -https://www.oceanexpert.org/expert/35499 -https://www.oceanexpert.org/expert/25406 -https://www.oceanexpert.org/expert/44806 -https://www.oceanexpert.org/expert/32163 -https://www.oceanexpert.org/institution/10681 -https://www.oceanexpert.org/expert/44937 -https://www.oceanexpert.org/expert/43957 -https://www.oceanexpert.org/expert/37335 -https://www.oceanexpert.org/event/3115 -https://www.oceanexpert.org/institution/11450 -https://www.oceanexpert.org/expert/17280 -https://www.oceanexpert.org/event/1132 -https://www.oceanexpert.org/expert/13122 -https://www.oceanexpert.org/expert/21028 -https://www.oceanexpert.org/expert/19282 -https://www.oceanexpert.org/expert/16208 -https://www.oceanexpert.org/institution/12602 -https://www.oceanexpert.org/event/2539 -https://www.oceanexpert.org/expert/37554 -https://www.oceanexpert.org/institution/5709 -https://www.oceanexpert.org/expert/40642 -https://www.oceanexpert.org/expert/39021 -https://www.oceanexpert.org/expert/3448 -https://www.oceanexpert.org/institution/15556 -https://www.oceanexpert.org/institution/17561 -https://www.oceanexpert.org/expert/46223 -https://www.oceanexpert.org/expert/26684 -https://www.oceanexpert.org/institution/8028 -https://www.oceanexpert.org/institution/20766 -https://www.oceanexpert.org/expert/35397 -https://www.oceanexpert.org/expert/20563 -https://www.oceanexpert.org/institution/21413 -https://www.oceanexpert.org/expert/15592 -https://www.oceanexpert.org/event/2281 -https://www.oceanexpert.org/institution/21129 -https://www.oceanexpert.org/expert/9803 -https://www.oceanexpert.org/expert/22252 -https://www.oceanexpert.org/expert/32422 -https://www.oceanexpert.org/institution/18329 -https://www.oceanexpert.org/expert/18359 -https://www.oceanexpert.org/event/1040 -https://www.oceanexpert.org/expert/26784 -https://www.oceanexpert.org/institution/11548 -https://www.oceanexpert.org/institution/17930 -https://www.oceanexpert.org/institution/13906 -https://www.oceanexpert.org/expert/18937 -https://www.oceanexpert.org/institution/19338 -https://www.oceanexpert.org/expert/35343 -https://www.oceanexpert.org/expert/33375 -https://www.oceanexpert.org/expert/34014 -https://www.oceanexpert.org/expert/46740 -https://www.oceanexpert.org/institution/19893 -https://www.oceanexpert.org/expert/27098 -https://www.oceanexpert.org/expert/34016 -https://www.oceanexpert.org/expert/48549 -https://www.oceanexpert.org/expert/33349 -https://www.oceanexpert.org/expert/19878 -https://www.oceanexpert.org/expert/17706 -https://www.oceanexpert.org/expert/32815 -https://www.oceanexpert.org/expert/21465 -https://www.oceanexpert.org/institution/19780 -https://www.oceanexpert.org/expert/25517 -https://www.oceanexpert.org/expert/2218 -https://www.oceanexpert.org/institution/11193 -https://www.oceanexpert.org/event/2539 -https://www.oceanexpert.org/event/387 -https://www.oceanexpert.org/expert/6293 -https://www.oceanexpert.org/expert/34356 -https://www.oceanexpert.org/expert/15023 -https://www.oceanexpert.org/institution/20859 -https://www.oceanexpert.org/event/2858 -https://www.oceanexpert.org/expert/42415 -https://www.oceanexpert.org/expert/32824 -https://www.oceanexpert.org/expert/48680 -https://www.oceanexpert.org/expert/26727 -https://www.oceanexpert.org/event/3287 -https://www.oceanexpert.org/expert/3547 -https://www.oceanexpert.org/expert/33266 -https://www.oceanexpert.org/expert/18371 -https://www.oceanexpert.org/expert/45074 -https://www.oceanexpert.org/expert/18207 -https://www.oceanexpert.org/institution/10533 -https://www.oceanexpert.org/expert/42550 -https://www.oceanexpert.org/institution/19448 -https://www.oceanexpert.org/expert/20010 -https://www.oceanexpert.org/institution/9032 -https://www.oceanexpert.org/expert/22560 -https://www.oceanexpert.org/expert/45428 -https://www.oceanexpert.org/event/992 -https://www.oceanexpert.org/event/881 -https://www.oceanexpert.org/expert/23227 -https://www.oceanexpert.org/event/2533 -https://www.oceanexpert.org/event/340 -https://www.oceanexpert.org/institution/16999 -https://www.oceanexpert.org/expert/46464 -https://www.oceanexpert.org/expert/46323 -https://www.oceanexpert.org/institution/18123 -https://www.oceanexpert.org/expert/12738 -https://www.oceanexpert.org/expert/38660 -https://www.oceanexpert.org/expert/25252 -https://www.oceanexpert.org/event/2297 -https://www.oceanexpert.org/expert/27336 -https://www.oceanexpert.org/expert/32755 -https://www.oceanexpert.org/expert/48401 -https://www.oceanexpert.org/expert/47797 -https://www.oceanexpert.org/expert/7349 -https://www.oceanexpert.org/expert/45687 -https://www.oceanexpert.org/expert/16849 -https://www.oceanexpert.org/expert/47374 -https://www.oceanexpert.org/expert/37074 -https://www.oceanexpert.org/expert/13050 -https://www.oceanexpert.org/expert/37342 -https://www.oceanexpert.org/expert/26381 -https://www.oceanexpert.org/institution/11489 -https://www.oceanexpert.org/institution/16798 -https://www.oceanexpert.org/expert/46463 -https://www.oceanexpert.org/expert/23582 -https://www.oceanexpert.org/institution/22158 -https://www.oceanexpert.org/event/2233 -https://www.oceanexpert.org/expert/27582 -https://www.oceanexpert.org/expert/25130 -https://www.oceanexpert.org/expert/16882 -https://www.oceanexpert.org/institution/17981 -https://www.oceanexpert.org/expert/20779 -https://www.oceanexpert.org/expert/34044 -https://www.oceanexpert.org/event/1875 -https://www.oceanexpert.org/institution/18346 -https://www.oceanexpert.org/expert/34189 -https://www.oceanexpert.org/expert/34639 -https://www.oceanexpert.org/institution/19217 -https://www.oceanexpert.org/institution/10505 -https://www.oceanexpert.org/institution/19642 -https://www.oceanexpert.org/expert/38393 -https://www.oceanexpert.org/expert/47961 -https://www.oceanexpert.org/expert/17305 -https://www.oceanexpert.org/expert/31003 -https://www.oceanexpert.org/expert/38169 -https://www.oceanexpert.org/expert/37220 -https://www.oceanexpert.org/expert/30185 -https://www.oceanexpert.org/expert/37240 -https://www.oceanexpert.org/expert/46806 -https://www.oceanexpert.org/expert/43829 -https://www.oceanexpert.org/expert/22212 -https://www.oceanexpert.org/institution/16806 -https://www.oceanexpert.org/expert/44514 -https://www.oceanexpert.org/expert/19393 -https://www.oceanexpert.org/expert/37294 -https://www.oceanexpert.org/event/505 -https://www.oceanexpert.org/institution/21701 -https://www.oceanexpert.org/institution/10871 -https://www.oceanexpert.org/institution/16385 -https://www.oceanexpert.org/institution/20905 -https://www.oceanexpert.org/institution/19372 -https://www.oceanexpert.org/expert/5926 -https://www.oceanexpert.org/expert/25078 -https://www.oceanexpert.org/expert/36176 -https://www.oceanexpert.org/expert/48099 -https://www.oceanexpert.org/expert/17980 -https://www.oceanexpert.org/expert/45423 -https://www.oceanexpert.org/institution/12385 -https://www.oceanexpert.org/institution/18742 -https://www.oceanexpert.org/expert/45187 -https://www.oceanexpert.org/expert/23004 -https://www.oceanexpert.org/expert/34975 -https://www.oceanexpert.org/expert/24113 -https://www.oceanexpert.org/expert/26385 -https://www.oceanexpert.org/expert/44032 -https://www.oceanexpert.org/expert/48485 -https://www.oceanexpert.org/event/2734 -https://www.oceanexpert.org/expert/22986 -https://www.oceanexpert.org/expert/45428 -https://www.oceanexpert.org/expert/11484 -https://www.oceanexpert.org/institution/11470 -https://www.oceanexpert.org/expert/6332 -https://www.oceanexpert.org/institution/19350 -https://www.oceanexpert.org/expert/14716 -https://www.oceanexpert.org/institution/12995 -https://www.oceanexpert.org/expert/22323 -https://www.oceanexpert.org/institution/6360 -https://www.oceanexpert.org/expert/20834 -https://www.oceanexpert.org/institution/12533 -https://www.oceanexpert.org/institution/19251 -https://www.oceanexpert.org/event/1501 -https://www.oceanexpert.org/expert/26306 -https://www.oceanexpert.org/institution/8326 -https://www.oceanexpert.org/expert/42906 -https://www.oceanexpert.org/expert/17011 -https://www.oceanexpert.org/expert/46871 -https://www.oceanexpert.org/expert/47288 -https://www.oceanexpert.org/institution/18000 -https://www.oceanexpert.org/expert/35729 -https://www.oceanexpert.org/expert/36950 -https://www.oceanexpert.org/expert/26999 -https://www.oceanexpert.org/expert/30104 -https://www.oceanexpert.org/institution/6715 -https://www.oceanexpert.org/institution/15046 -https://www.oceanexpert.org/expert/3189 -https://www.oceanexpert.org/institution/13280 -https://www.oceanexpert.org/event/1913 -https://www.oceanexpert.org/event/39 -https://www.oceanexpert.org/expert/28966 -https://www.oceanexpert.org/event/2003 -https://www.oceanexpert.org/event/3119 -https://www.oceanexpert.org/expert/19035 -https://www.oceanexpert.org/institution/20056 -https://www.oceanexpert.org/expert/48986 -https://www.oceanexpert.org/expert/17812 -https://www.oceanexpert.org/expert/36223 -https://www.oceanexpert.org/expert/27974 -https://www.oceanexpert.org/expert/12269 -https://www.oceanexpert.org/institution/20262 -https://www.oceanexpert.org/event/1796 -https://www.oceanexpert.org/expert/16974 -https://www.oceanexpert.org/institution/19180 -https://www.oceanexpert.org/expert/44697 -https://www.oceanexpert.org/expert/33948 -https://www.oceanexpert.org/expert/26054 -https://www.oceanexpert.org/event/1870 -https://www.oceanexpert.org/expert/21145 -https://www.oceanexpert.org/expert/44947 -https://www.oceanexpert.org/expert/18354 -https://www.oceanexpert.org/expert/14297 -https://www.oceanexpert.org/event/309 -https://www.oceanexpert.org/expert/24343 -https://www.oceanexpert.org/institution/18477 -https://www.oceanexpert.org/expert/12946 -https://www.oceanexpert.org/expert/12946 -https://www.oceanexpert.org/expert/25104 -https://www.oceanexpert.org/expert/44124 -https://www.oceanexpert.org/institution/14695 -https://www.oceanexpert.org/expert/11343 -https://www.oceanexpert.org/institution/19086 -https://www.oceanexpert.org/event/1388 -https://www.oceanexpert.org/institution/19470 -https://www.oceanexpert.org/expert/35879 -https://www.oceanexpert.org/event/1238 -https://www.oceanexpert.org/institution/18373 -https://www.oceanexpert.org/expert/21174 -https://www.oceanexpert.org/expert/39176 -https://www.oceanexpert.org/expert/20238 -https://www.oceanexpert.org/expert/31186 -https://www.oceanexpert.org/expert/30635 -https://www.oceanexpert.org/expert/10701 -https://www.oceanexpert.org/expert/18050 -https://www.oceanexpert.org/expert/16180 -https://www.oceanexpert.org/institution/9014 -https://www.oceanexpert.org/expert/32119 -https://www.oceanexpert.org/expert/28143 -https://www.oceanexpert.org/expert/1057 -https://www.oceanexpert.org/expert/17557 -https://www.oceanexpert.org/expert/20493 -https://www.oceanexpert.org/expert/18481 -https://www.oceanexpert.org/institution/13292 -https://www.oceanexpert.org/expert/35333 -https://www.oceanexpert.org/expert/26910 -https://www.oceanexpert.org/expert/28363 -https://www.oceanexpert.org/institution/22067 -https://www.oceanexpert.org/expert/16969 -https://www.oceanexpert.org/event/944 -https://www.oceanexpert.org/expert/30742 -https://www.oceanexpert.org/expert/20333 -https://www.oceanexpert.org/expert/35536 -https://www.oceanexpert.org/expert/21670 -https://www.oceanexpert.org/expert/15884 -https://www.oceanexpert.org/institution/20692 -https://www.oceanexpert.org/expert/44361 -https://www.oceanexpert.org/institution/17430 -https://www.oceanexpert.org/event/1690 -https://www.oceanexpert.org/institution/6784 -https://www.oceanexpert.org/expert/26721 -https://www.oceanexpert.org/expert/19153 -https://www.oceanexpert.org/expert/6379 -https://www.oceanexpert.org/expert/30853 -https://www.oceanexpert.org/institution/21453 -https://www.oceanexpert.org/expert/27786 -https://www.oceanexpert.org/expert/37153 -https://www.oceanexpert.org/institution/21100 -https://www.oceanexpert.org/expert/47736 -https://www.oceanexpert.org/expert/19796 -https://www.oceanexpert.org/expert/20533 -https://www.oceanexpert.org/expert/38442 -https://www.oceanexpert.org/expert/39155 -https://www.oceanexpert.org/expert/4741 -https://www.oceanexpert.org/event/2144 -https://www.oceanexpert.org/expert/36166 -https://www.oceanexpert.org/expert/19524 -https://www.oceanexpert.org/event/2650 -https://www.oceanexpert.org/expert/21805 -https://www.oceanexpert.org/institution/12428 -https://www.oceanexpert.org/event/2050 -https://www.oceanexpert.org/institution/14364 -https://www.oceanexpert.org/expert/10200 -https://www.oceanexpert.org/institution/20060 -https://www.oceanexpert.org/expert/23641 -https://www.oceanexpert.org/expert/16699 -https://www.oceanexpert.org/expert/20988 -https://www.oceanexpert.org/expert/25822 -https://www.oceanexpert.org/expert/42858 -https://www.oceanexpert.org/event/1376 -https://www.oceanexpert.org/expert/20405 -https://www.oceanexpert.org/expert/25574 -https://www.oceanexpert.org/event/3104 -https://www.oceanexpert.org/expert/47408 -https://www.oceanexpert.org/expert/47114 -https://www.oceanexpert.org/event/2214 -https://www.oceanexpert.org/expert/14203 -https://www.oceanexpert.org/expert/30682 -https://www.oceanexpert.org/expert/30808 -https://www.oceanexpert.org/expert/4455 -https://www.oceanexpert.org/expert/46050 -https://www.oceanexpert.org/expert/34979 -https://www.oceanexpert.org/expert/18152 -https://www.oceanexpert.org/expert/33195 -https://www.oceanexpert.org/expert/31048 -https://www.oceanexpert.org/expert/26798 -https://www.oceanexpert.org/institution/12562 -https://www.oceanexpert.org/expert/25849 -https://www.oceanexpert.org/expert/30941 -https://www.oceanexpert.org/expert/30017 -https://www.oceanexpert.org/institution/18160 -https://www.oceanexpert.org/institution/15197 -https://www.oceanexpert.org/event/180 -https://www.oceanexpert.org/expert/42792 -https://www.oceanexpert.org/expert/20353 -https://www.oceanexpert.org/institution/16026 -https://www.oceanexpert.org/event/717 -https://www.oceanexpert.org/expert/25134 -https://www.oceanexpert.org/expert/17252 -https://www.oceanexpert.org/expert/34646 -https://www.oceanexpert.org/expert/36357 -https://www.oceanexpert.org/institution/16700 -https://www.oceanexpert.org/event/2218 -https://www.oceanexpert.org/expert/30052 -https://www.oceanexpert.org/expert/29556 -https://www.oceanexpert.org/expert/1883 -https://www.oceanexpert.org/institution/8537 -https://www.oceanexpert.org/expert/21103 -https://www.oceanexpert.org/expert/20756 -https://www.oceanexpert.org/expert/46324 -https://www.oceanexpert.org/expert/17132 -https://www.oceanexpert.org/expert/44528 -https://www.oceanexpert.org/expert/33061 -https://www.oceanexpert.org/expert/32163 -https://www.oceanexpert.org/institution/15961 -https://www.oceanexpert.org/expert/2669 -https://www.oceanexpert.org/institution/18678 -https://www.oceanexpert.org/expert/13253 -https://www.oceanexpert.org/expert/48012 -https://www.oceanexpert.org/expert/46346 -https://www.oceanexpert.org/expert/10895 -https://www.oceanexpert.org/expert/36643 -https://www.oceanexpert.org/institution/15079 -https://www.oceanexpert.org/expert/33408 -https://www.oceanexpert.org/institution/19597 -https://www.oceanexpert.org/expert/1199 -https://www.oceanexpert.org/expert/17198 -https://www.oceanexpert.org/institution/19494 -https://www.oceanexpert.org/institution/14418 -https://www.oceanexpert.org/expert/9236 -https://www.oceanexpert.org/expert/24238 -https://www.oceanexpert.org/expert/48484 -https://www.oceanexpert.org/expert/2191 -https://www.oceanexpert.org/expert/38072 -https://www.oceanexpert.org/expert/12631 -https://www.oceanexpert.org/expert/22169 -https://www.oceanexpert.org/expert/7357 -https://www.oceanexpert.org/expert/13569 -https://www.oceanexpert.org/expert/19962 -https://www.oceanexpert.org/expert/44959 -https://www.oceanexpert.org/expert/27359 -https://www.oceanexpert.org/event/641 -https://www.oceanexpert.org/expert/35418 -https://www.oceanexpert.org/expert/9862 -https://www.oceanexpert.org/expert/30842 -https://www.oceanexpert.org/event/2221 -https://www.oceanexpert.org/expert/22472 -https://www.oceanexpert.org/event/185 -https://www.oceanexpert.org/expert/33293 -https://www.oceanexpert.org/institution/14411 -https://www.oceanexpert.org/institution/18852 -https://www.oceanexpert.org/expert/39482 -https://www.oceanexpert.org/expert/16731 -https://www.oceanexpert.org/expert/28287 -https://www.oceanexpert.org/expert/22919 -https://www.oceanexpert.org/expert/21497 -https://www.oceanexpert.org/expert/17926 -https://www.oceanexpert.org/institution/9121 -https://www.oceanexpert.org/expert/43783 -https://www.oceanexpert.org/institution/21679 -https://www.oceanexpert.org/expert/25134 -https://www.oceanexpert.org/expert/34507 -https://www.oceanexpert.org/expert/17096 -https://www.oceanexpert.org/institution/14703 -https://www.oceanexpert.org/expert/24019 -https://www.oceanexpert.org/event/3037 -https://www.oceanexpert.org/institution/11735 -https://www.oceanexpert.org/expert/40678 -https://www.oceanexpert.org/institution/12308 -https://www.oceanexpert.org/expert/43966 -https://www.oceanexpert.org/institution/9075 -https://www.oceanexpert.org/expert/26858 -https://www.oceanexpert.org/expert/11218 -https://www.oceanexpert.org/expert/37100 -https://www.oceanexpert.org/expert/30289 -https://www.oceanexpert.org/event/1192 -https://www.oceanexpert.org/expert/45564 -https://www.oceanexpert.org/expert/28481 -https://www.oceanexpert.org/expert/27064 -https://www.oceanexpert.org/expert/36572 -https://www.oceanexpert.org/expert/23066 -https://www.oceanexpert.org/event/2182 -https://www.oceanexpert.org/expert/27084 -https://www.oceanexpert.org/expert/39999 -https://www.oceanexpert.org/expert/46366 -https://www.oceanexpert.org/expert/23409 -https://www.oceanexpert.org/expert/43435 -https://www.oceanexpert.org/expert/12437 -https://www.oceanexpert.org/expert/25073 -https://www.oceanexpert.org/expert/7349 -https://www.oceanexpert.org/expert/45487 -https://www.oceanexpert.org/expert/44706 -https://www.oceanexpert.org/expert/24488 -https://www.oceanexpert.org/institution/8669 -https://www.oceanexpert.org/expert/33907 -https://www.oceanexpert.org/expert/20605 -https://www.oceanexpert.org/expert/26495 -https://www.oceanexpert.org/expert/43890 -https://www.oceanexpert.org/institution/12474 -https://www.oceanexpert.org/institution/22009 -https://www.oceanexpert.org/institution/19230 -https://www.oceanexpert.org/expert/43676 -https://www.oceanexpert.org/expert/24418 -https://www.oceanexpert.org/expert/44826 -https://www.oceanexpert.org/expert/19460 -https://www.oceanexpert.org/expert/39538 -https://www.oceanexpert.org/expert/26516 -https://www.oceanexpert.org/expert/23301 -https://www.oceanexpert.org/expert/15800 -https://www.oceanexpert.org/expert/38377 -https://www.oceanexpert.org/expert/44068 -https://www.oceanexpert.org/expert/25753 -https://www.oceanexpert.org/expert/26294 -https://www.oceanexpert.org/expert/16685 -https://www.oceanexpert.org/institution/10075 -https://www.oceanexpert.org/expert/36439 -https://www.oceanexpert.org/expert/12417 -https://www.oceanexpert.org/expert/20020 -https://www.oceanexpert.org/expert/17981 -https://www.oceanexpert.org/expert/16575 -https://www.oceanexpert.org/expert/31772 -https://www.oceanexpert.org/event/1458 -https://www.oceanexpert.org/expert/45047 -https://www.oceanexpert.org/institution/11532 -https://www.oceanexpert.org/expert/41915 -https://www.oceanexpert.org/expert/15194 -https://www.oceanexpert.org/event/1841 -https://www.oceanexpert.org/expert/48112 -https://www.oceanexpert.org/expert/44707 -https://www.oceanexpert.org/expert/39292 -https://www.oceanexpert.org/expert/586 -https://www.oceanexpert.org/expert/46370 -https://www.oceanexpert.org/institution/18613 -https://www.oceanexpert.org/expert/6992 -https://www.oceanexpert.org/expert/20629 -https://www.oceanexpert.org/expert/48804 -https://www.oceanexpert.org/institution/18547 -https://www.oceanexpert.org/expert/25781 -https://www.oceanexpert.org/expert/39998 -https://www.oceanexpert.org/institution/19322 -https://www.oceanexpert.org/event/2026 -https://www.oceanexpert.org/expert/27407 -https://www.oceanexpert.org/expert/48446 -https://www.oceanexpert.org/expert/34519 -https://www.oceanexpert.org/expert/48843 -https://www.oceanexpert.org/expert/46821 -https://www.oceanexpert.org/expert/11706 -https://www.oceanexpert.org/expert/21243 -https://www.oceanexpert.org/expert/43736 -https://www.oceanexpert.org/institution/12195 -https://www.oceanexpert.org/institution/11808 -https://www.oceanexpert.org/expert/46678 -https://www.oceanexpert.org/expert/21534 -https://www.oceanexpert.org/expert/32921 -https://www.oceanexpert.org/expert/27631 -https://www.oceanexpert.org/expert/23587 -https://www.oceanexpert.org/expert/17286 -https://www.oceanexpert.org/expert/18995 -https://www.oceanexpert.org/expert/23314 -https://www.oceanexpert.org/expert/45854 -https://www.oceanexpert.org/expert/25976 -https://www.oceanexpert.org/expert/40903 -https://www.oceanexpert.org/expert/19548 -https://www.oceanexpert.org/event/2739 -https://www.oceanexpert.org/institution/18329 -https://www.oceanexpert.org/institution/14356 -https://www.oceanexpert.org/expert/19538 -https://www.oceanexpert.org/event/2585 -https://www.oceanexpert.org/event/901 -https://www.oceanexpert.org/expert/42784 -https://www.oceanexpert.org/expert/22730 -https://www.oceanexpert.org/expert/29158 -https://www.oceanexpert.org/expert/46782 -https://www.oceanexpert.org/institution/5239 -https://www.oceanexpert.org/expert/8889 -https://www.oceanexpert.org/institution/7280 -https://www.oceanexpert.org/expert/40368 -https://www.oceanexpert.org/expert/20031 -https://www.oceanexpert.org/expert/7908 -https://www.oceanexpert.org/expert/16677 -https://www.oceanexpert.org/expert/35926 -https://www.oceanexpert.org/expert/263 -https://www.oceanexpert.org/expert/43369 -https://www.oceanexpert.org/expert/29434 -https://www.oceanexpert.org/expert/43872 -https://www.oceanexpert.org/institution/5671 -https://www.oceanexpert.org/institution/16763 -https://www.oceanexpert.org/institution/18811 -https://www.oceanexpert.org/event/2620 -https://www.oceanexpert.org/event/2115 -https://www.oceanexpert.org/institution/12574 -https://www.oceanexpert.org/institution/9036 -https://www.oceanexpert.org/expert/45574 -https://www.oceanexpert.org/expert/26612 -https://www.oceanexpert.org/expert/36220 -https://www.oceanexpert.org/expert/28110 -https://www.oceanexpert.org/expert/15771 -https://www.oceanexpert.org/expert/11947 -https://www.oceanexpert.org/expert/17304 -https://www.oceanexpert.org/expert/45209 -https://www.oceanexpert.org/expert/47690 -https://www.oceanexpert.org/expert/4529 -https://www.oceanexpert.org/event/3069 -https://www.oceanexpert.org/institution/9135 -https://www.oceanexpert.org/institution/16251 -https://www.oceanexpert.org/expert/27365 -https://www.oceanexpert.org/expert/48507 -https://www.oceanexpert.org/expert/18186 -https://www.oceanexpert.org/institution/13772 -https://www.oceanexpert.org/institution/19294 -https://www.oceanexpert.org/expert/40581 -https://www.oceanexpert.org/expert/49075 -https://www.oceanexpert.org/institution/6030 -https://www.oceanexpert.org/expert/36680 -https://www.oceanexpert.org/expert/26933 -https://www.oceanexpert.org/event/2338 -https://www.oceanexpert.org/expert/43723 -https://www.oceanexpert.org/expert/45810 -https://www.oceanexpert.org/institution/12667 -https://www.oceanexpert.org/expert/22432 -https://www.oceanexpert.org/expert/42935 -https://www.oceanexpert.org/expert/44685 -https://www.oceanexpert.org/expert/48948 -https://www.oceanexpert.org/expert/20052 -https://www.oceanexpert.org/expert/46324 -https://www.oceanexpert.org/institution/7937 -https://www.oceanexpert.org/institution/18529 -https://www.oceanexpert.org/expert/20564 -https://www.oceanexpert.org/event/1371 -https://www.oceanexpert.org/expert/8119 -https://www.oceanexpert.org/expert/22725 -https://www.oceanexpert.org/expert/42706 -https://www.oceanexpert.org/expert/7412 -https://www.oceanexpert.org/event/3253 -https://www.oceanexpert.org/institution/11033 -https://www.oceanexpert.org/expert/44288 -https://www.oceanexpert.org/expert/16708 -https://www.oceanexpert.org/expert/43197 -https://www.oceanexpert.org/institution/15280 -https://www.oceanexpert.org/expert/34575 -https://www.oceanexpert.org/expert/46584 -https://www.oceanexpert.org/institution/12994 -https://www.oceanexpert.org/institution/21576 -https://www.oceanexpert.org/expert/16465 -https://www.oceanexpert.org/expert/21195 -https://www.oceanexpert.org/expert/32451 -https://www.oceanexpert.org/institution/16068 -https://www.oceanexpert.org/expert/25317 -https://www.oceanexpert.org/expert/807 -https://www.oceanexpert.org/expert/20533 -https://www.oceanexpert.org/expert/27262 -https://www.oceanexpert.org/institution/18020 -https://www.oceanexpert.org/expert/27020 -https://www.oceanexpert.org/expert/14071 -https://www.oceanexpert.org/institution/12064 -https://www.oceanexpert.org/expert/21982 -https://www.oceanexpert.org/institution/7355 -https://www.oceanexpert.org/expert/23747 -https://www.oceanexpert.org/expert/22639 -https://www.oceanexpert.org/expert/48657 -https://www.oceanexpert.org/expert/22405 -https://www.oceanexpert.org/institution/12372 -https://www.oceanexpert.org/institution/13950 -https://www.oceanexpert.org/institution/12309 -https://www.oceanexpert.org/expert/37278 -https://www.oceanexpert.org/expert/23780 -https://www.oceanexpert.org/expert/23033 -https://www.oceanexpert.org/institution/19587 -https://www.oceanexpert.org/institution/12119 -https://www.oceanexpert.org/expert/43661 -https://www.oceanexpert.org/expert/27981 -https://www.oceanexpert.org/expert/46865 -https://www.oceanexpert.org/expert/20021 -https://www.oceanexpert.org/expert/20867 -https://www.oceanexpert.org/expert/27352 -https://www.oceanexpert.org/expert/44638 -https://www.oceanexpert.org/expert/42646 -https://www.oceanexpert.org/event/2108 -https://www.oceanexpert.org/institution/22038 -https://www.oceanexpert.org/expert/24998 -https://www.oceanexpert.org/institution/12378 -https://www.oceanexpert.org/expert/21125 -https://www.oceanexpert.org/expert/2913 -https://www.oceanexpert.org/expert/6510 -https://www.oceanexpert.org/expert/33794 -https://www.oceanexpert.org/expert/18939 -https://www.oceanexpert.org/expert/17594 -https://www.oceanexpert.org/institution/18138 -https://www.oceanexpert.org/expert/17011 -https://www.oceanexpert.org/expert/17284 -https://www.oceanexpert.org/expert/16562 -https://www.oceanexpert.org/expert/27347 -https://www.oceanexpert.org/institution/5145 -https://www.oceanexpert.org/expert/21121 -https://www.oceanexpert.org/institution/19834 -https://www.oceanexpert.org/expert/25912 -https://www.oceanexpert.org/expert/48045 -https://www.oceanexpert.org/expert/13490 -https://www.oceanexpert.org/expert/26061 -https://www.oceanexpert.org/institution/21055 -https://www.oceanexpert.org/institution/20960 -https://www.oceanexpert.org/expert/34725 -https://www.oceanexpert.org/institution/13992 -https://www.oceanexpert.org/expert/37408 -https://www.oceanexpert.org/event/42 -https://www.oceanexpert.org/expert/47194 -https://www.oceanexpert.org/expert/36506 -https://www.oceanexpert.org/expert/32816 -https://www.oceanexpert.org/expert/16698 -https://www.oceanexpert.org/expert/42502 -https://www.oceanexpert.org/institution/20213 -https://www.oceanexpert.org/expert/19659 -https://www.oceanexpert.org/expert/33373 -https://www.oceanexpert.org/institution/13813 -https://www.oceanexpert.org/expert/43556 -https://www.oceanexpert.org/expert/13276 -https://www.oceanexpert.org/event/622 -https://www.oceanexpert.org/expert/35616 -https://www.oceanexpert.org/institution/21326 -https://www.oceanexpert.org/expert/23041 -https://www.oceanexpert.org/institution/10726 -https://www.oceanexpert.org/event/1672 -https://www.oceanexpert.org/event/953 -https://www.oceanexpert.org/expert/43043 -https://www.oceanexpert.org/expert/43040 -https://www.oceanexpert.org/event/2735 -https://www.oceanexpert.org/institution/21667 -https://www.oceanexpert.org/expert/32749 -https://www.oceanexpert.org/expert/38180 -https://www.oceanexpert.org/expert/23898 -https://www.oceanexpert.org/expert/21164 -https://www.oceanexpert.org/expert/35275 -https://www.oceanexpert.org/expert/13176 -https://www.oceanexpert.org/expert/35145 -https://www.oceanexpert.org/institution/13294 -https://www.oceanexpert.org/expert/44199 -https://www.oceanexpert.org/expert/23325 -https://www.oceanexpert.org/expert/20672 -https://www.oceanexpert.org/expert/36759 -https://www.oceanexpert.org/expert/29535 -https://www.oceanexpert.org/institution/19457 -https://www.oceanexpert.org/expert/13047 -https://www.oceanexpert.org/institution/19378 -https://www.oceanexpert.org/expert/24976 -https://www.oceanexpert.org/expert/16570 -https://www.oceanexpert.org/expert/38044 -https://www.oceanexpert.org/institution/21908 -https://www.oceanexpert.org/institution/11804 -https://www.oceanexpert.org/expert/18221 -https://www.oceanexpert.org/expert/29845 -https://www.oceanexpert.org/expert/46244 -https://www.oceanexpert.org/expert/4918 -https://www.oceanexpert.org/expert/14173 -https://www.oceanexpert.org/expert/38123 -https://www.oceanexpert.org/expert/46789 -https://www.oceanexpert.org/institution/17762 -https://www.oceanexpert.org/expert/37790 -https://www.oceanexpert.org/event/2453 -https://www.oceanexpert.org/institution/18916 -https://www.oceanexpert.org/institution/7909 -https://www.oceanexpert.org/expert/14463 -https://www.oceanexpert.org/expert/7181 -https://www.oceanexpert.org/expert/43808 -https://www.oceanexpert.org/institution/13300 -https://www.oceanexpert.org/expert/11163 -https://www.oceanexpert.org/expert/27273 -https://www.oceanexpert.org/expert/21241 -https://www.oceanexpert.org/expert/20273 -https://www.oceanexpert.org/expert/19000 -https://www.oceanexpert.org/institution/18764 -https://www.oceanexpert.org/institution/12374 -https://www.oceanexpert.org/institution/20296 -https://www.oceanexpert.org/expert/47778 -https://www.oceanexpert.org/institution/13065 -https://www.oceanexpert.org/institution/7468 -https://www.oceanexpert.org/institution/20418 -https://www.oceanexpert.org/institution/12220 -https://www.oceanexpert.org/expert/13970 -https://www.oceanexpert.org/expert/46719 -https://www.oceanexpert.org/expert/12747 -https://www.oceanexpert.org/expert/41066 -https://www.oceanexpert.org/institution/17596 -https://www.oceanexpert.org/expert/48311 -https://www.oceanexpert.org/expert/11551 -https://www.oceanexpert.org/event/483 -https://www.oceanexpert.org/event/1749 -https://www.oceanexpert.org/expert/30822 -https://www.oceanexpert.org/expert/26234 -https://www.oceanexpert.org/expert/31318 -https://www.oceanexpert.org/expert/38177 -https://www.oceanexpert.org/expert/22933 -https://www.oceanexpert.org/expert/12631 -https://www.oceanexpert.org/expert/11644 -https://www.oceanexpert.org/expert/24428 -https://www.oceanexpert.org/expert/45766 -https://www.oceanexpert.org/institution/10765 -https://www.oceanexpert.org/expert/30184 -https://www.oceanexpert.org/event/2719 -https://www.oceanexpert.org/institution/16231 -https://www.oceanexpert.org/expert/27591 -https://www.oceanexpert.org/expert/36116 -https://www.oceanexpert.org/expert/32716 -https://www.oceanexpert.org/institution/8003 -https://www.oceanexpert.org/event/2073 -https://www.oceanexpert.org/expert/24204 -https://www.oceanexpert.org/expert/35721 -https://www.oceanexpert.org/expert/2731 -https://www.oceanexpert.org/expert/33228 -https://www.oceanexpert.org/expert/47075 -https://www.oceanexpert.org/expert/40884 -https://www.oceanexpert.org/expert/34596 -https://www.oceanexpert.org/expert/26151 -https://www.oceanexpert.org/expert/15968 -https://www.oceanexpert.org/expert/26023 -https://www.oceanexpert.org/expert/32584 -https://www.oceanexpert.org/expert/8577 -https://www.oceanexpert.org/expert/44222 -https://www.oceanexpert.org/expert/47335 -https://www.oceanexpert.org/expert/27449 -https://www.oceanexpert.org/event/1868 -https://www.oceanexpert.org/expert/48034 -https://www.oceanexpert.org/expert/38919 -https://www.oceanexpert.org/expert/15955 -https://www.oceanexpert.org/institution/13674 -https://www.oceanexpert.org/expert/46732 -https://www.oceanexpert.org/institution/16986 -https://www.oceanexpert.org/expert/17210 -https://www.oceanexpert.org/institution/20077 -https://www.oceanexpert.org/expert/48819 -https://www.oceanexpert.org/expert/38933 -https://www.oceanexpert.org/expert/28403 -https://www.oceanexpert.org/expert/32197 -https://www.oceanexpert.org/institution/20849 -https://www.oceanexpert.org/expert/22573 -https://www.oceanexpert.org/expert/34270 -https://www.oceanexpert.org/institution/12789 -https://www.oceanexpert.org/expert/25462 -https://www.oceanexpert.org/expert/44043 -https://www.oceanexpert.org/expert/22628 -https://www.oceanexpert.org/expert/32469 -https://www.oceanexpert.org/expert/17429 -https://www.oceanexpert.org/event/2936 -https://www.oceanexpert.org/expert/32673 -https://www.oceanexpert.org/expert/16783 -https://www.oceanexpert.org/expert/46929 -https://www.oceanexpert.org/expert/33320 -https://www.oceanexpert.org/expert/45962 -https://www.oceanexpert.org/institution/19916 -https://www.oceanexpert.org/institution/18241 -https://www.oceanexpert.org/expert/36560 -https://www.oceanexpert.org/expert/6263 -https://www.oceanexpert.org/expert/36296 -https://www.oceanexpert.org/institution/10362 -https://www.oceanexpert.org/expert/46856 -https://www.oceanexpert.org/institution/8852 -https://www.oceanexpert.org/event/3128 -https://www.oceanexpert.org/institution/21241 -https://www.oceanexpert.org/expert/48781 -https://www.oceanexpert.org/expert/41423 -https://www.oceanexpert.org/expert/38307 -https://www.oceanexpert.org/expert/27472 -https://www.oceanexpert.org/institution/20195 -https://www.oceanexpert.org/institution/18142 -https://www.oceanexpert.org/expert/41911 -https://www.oceanexpert.org/expert/25986 -https://www.oceanexpert.org/event/2390 -https://www.oceanexpert.org/institution/14124 -https://www.oceanexpert.org/expert/27521 -https://www.oceanexpert.org/expert/26976 -https://www.oceanexpert.org/expert/37719 -https://www.oceanexpert.org/institution/18873 -https://www.oceanexpert.org/expert/38328 -https://www.oceanexpert.org/expert/45790 -https://www.oceanexpert.org/expert/39347 -https://www.oceanexpert.org/expert/47066 -https://www.oceanexpert.org/expert/18815 -https://www.oceanexpert.org/event/541 -https://www.oceanexpert.org/expert/39978 -https://www.oceanexpert.org/expert/7018 -https://www.oceanexpert.org/institution/10027 -https://www.oceanexpert.org/expert/4415 -https://www.oceanexpert.org/institution/19584 -https://www.oceanexpert.org/expert/22841 -https://www.oceanexpert.org/expert/20212 -https://www.oceanexpert.org/expert/18526 -https://www.oceanexpert.org/expert/31020 -https://www.oceanexpert.org/institution/19283 -https://www.oceanexpert.org/expert/24464 -https://www.oceanexpert.org/expert/24217 -https://www.oceanexpert.org/expert/38845 -https://www.oceanexpert.org/institution/11201 -https://www.oceanexpert.org/expert/19272 -https://www.oceanexpert.org/expert/3400 -https://www.oceanexpert.org/institution/18369 -https://www.oceanexpert.org/expert/24679 -https://www.oceanexpert.org/institution/13026 -https://www.oceanexpert.org/expert/29191 -https://www.oceanexpert.org/expert/46469 -https://www.oceanexpert.org/institution/21111 -https://www.oceanexpert.org/expert/33453 -https://www.oceanexpert.org/expert/37521 -https://www.oceanexpert.org/institution/20999 -https://www.oceanexpert.org/expert/38243 -https://www.oceanexpert.org/expert/1971 -https://www.oceanexpert.org/expert/11906 -https://www.oceanexpert.org/expert/49033 -https://www.oceanexpert.org/institution/8303 -https://www.oceanexpert.org/expert/13316 -https://www.oceanexpert.org/expert/21592 -https://www.oceanexpert.org/expert/46634 -https://www.oceanexpert.org/expert/18116 -https://www.oceanexpert.org/expert/24654 -https://www.oceanexpert.org/expert/45670 -https://www.oceanexpert.org/expert/30852 -https://www.oceanexpert.org/expert/27770 -https://www.oceanexpert.org/expert/19970 -https://www.oceanexpert.org/expert/24975 -https://www.oceanexpert.org/expert/36365 -https://www.oceanexpert.org/expert/19675 -https://www.oceanexpert.org/expert/20563 -https://www.oceanexpert.org/expert/25835 -https://www.oceanexpert.org/institution/17270 -https://www.oceanexpert.org/event/1487 -https://www.oceanexpert.org/expert/14575 -https://www.oceanexpert.org/expert/44730 -https://www.oceanexpert.org/expert/19825 -https://www.oceanexpert.org/expert/34651 -https://www.oceanexpert.org/event/3111 -https://www.oceanexpert.org/expert/23478 -https://www.oceanexpert.org/expert/26080 -https://www.oceanexpert.org/expert/11323 -https://www.oceanexpert.org/expert/29536 -https://www.oceanexpert.org/institution/16373 -https://www.oceanexpert.org/institution/21027 -https://www.oceanexpert.org/expert/19289 -https://www.oceanexpert.org/expert/38912 -https://www.oceanexpert.org/expert/43400 -https://www.oceanexpert.org/expert/26986 -https://www.oceanexpert.org/expert/22428 -https://www.oceanexpert.org/expert/24076 -https://www.oceanexpert.org/expert/12226 -https://www.oceanexpert.org/expert/34860 -https://www.oceanexpert.org/expert/44048 -https://www.oceanexpert.org/expert/29832 -https://www.oceanexpert.org/expert/26518 -https://www.oceanexpert.org/expert/18757 -https://www.oceanexpert.org/expert/35236 -https://www.oceanexpert.org/expert/45920 -https://www.oceanexpert.org/expert/20372 -https://www.oceanexpert.org/expert/8758 -https://www.oceanexpert.org/expert/17456 -https://www.oceanexpert.org/expert/32521 -https://www.oceanexpert.org/event/3181 -https://www.oceanexpert.org/expert/45442 -https://www.oceanexpert.org/expert/48332 -https://www.oceanexpert.org/expert/46794 -https://www.oceanexpert.org/institution/16695 -https://www.oceanexpert.org/institution/20803 -https://www.oceanexpert.org/expert/45643 -https://www.oceanexpert.org/expert/36323 -https://www.oceanexpert.org/expert/14583 -https://www.oceanexpert.org/expert/26550 -https://www.oceanexpert.org/expert/34328 -https://www.oceanexpert.org/institution/5449 -https://www.oceanexpert.org/institution/14112 -https://www.oceanexpert.org/expert/24032 -https://www.oceanexpert.org/expert/33511 -https://www.oceanexpert.org/expert/24649 -https://www.oceanexpert.org/expert/18063 -https://www.oceanexpert.org/institution/8432 -https://www.oceanexpert.org/institution/16439 -https://www.oceanexpert.org/expert/24835 -https://www.oceanexpert.org/expert/45649 -https://www.oceanexpert.org/expert/38847 -https://www.oceanexpert.org/expert/9044 -https://www.oceanexpert.org/expert/32382 -https://www.oceanexpert.org/expert/46678 -https://www.oceanexpert.org/institution/11787 -https://www.oceanexpert.org/expert/28184 -https://www.oceanexpert.org/expert/24029 -https://www.oceanexpert.org/institution/6785 -https://www.oceanexpert.org/expert/32849 -https://www.oceanexpert.org/expert/33753 -https://www.oceanexpert.org/institution/20423 -https://www.oceanexpert.org/expert/4652 -https://www.oceanexpert.org/expert/19844 -https://www.oceanexpert.org/expert/28980 -https://www.oceanexpert.org/expert/48214 -https://www.oceanexpert.org/institution/21839 -https://www.oceanexpert.org/expert/30841 -https://www.oceanexpert.org/expert/44632 -https://www.oceanexpert.org/expert/21341 -https://www.oceanexpert.org/expert/36167 -https://www.oceanexpert.org/expert/33609 -https://www.oceanexpert.org/expert/26563 -https://www.oceanexpert.org/expert/30860 -https://www.oceanexpert.org/expert/16678 -https://www.oceanexpert.org/expert/1198 -https://www.oceanexpert.org/expert/20352 -https://www.oceanexpert.org/expert/24997 -https://www.oceanexpert.org/institution/11643 -https://www.oceanexpert.org/institution/13549 -https://www.oceanexpert.org/expert/38186 -https://www.oceanexpert.org/expert/23756 -https://www.oceanexpert.org/event/3084 -https://www.oceanexpert.org/institution/16210 -https://www.oceanexpert.org/institution/20095 -https://www.oceanexpert.org/institution/18631 -https://www.oceanexpert.org/expert/38126 -https://www.oceanexpert.org/institution/12810 -https://www.oceanexpert.org/expert/26495 -https://www.oceanexpert.org/expert/9207 -https://www.oceanexpert.org/expert/26745 -https://www.oceanexpert.org/expert/28100 -https://www.oceanexpert.org/institution/14363 -https://www.oceanexpert.org/expert/22076 -https://www.oceanexpert.org/expert/45459 -https://www.oceanexpert.org/expert/48291 -https://www.oceanexpert.org/expert/44324 -https://www.oceanexpert.org/expert/17816 -https://www.oceanexpert.org/expert/36995 -https://www.oceanexpert.org/expert/22219 -https://www.oceanexpert.org/event/185 -https://www.oceanexpert.org/institution/12880 -https://www.oceanexpert.org/institution/20955 -https://www.oceanexpert.org/expert/18504 -https://www.oceanexpert.org/expert/42421 -https://www.oceanexpert.org/expert/20445 -https://www.oceanexpert.org/expert/42651 -https://www.oceanexpert.org/institution/16487 -https://www.oceanexpert.org/institution/6731 -https://www.oceanexpert.org/expert/42000 -https://www.oceanexpert.org/expert/47674 -https://www.oceanexpert.org/expert/29445 -https://www.oceanexpert.org/expert/32646 -https://www.oceanexpert.org/event/2691 -https://www.oceanexpert.org/expert/23815 -https://www.oceanexpert.org/expert/34782 -https://www.oceanexpert.org/institution/17576 -https://www.oceanexpert.org/institution/18326 -https://www.oceanexpert.org/expert/34428 -https://www.oceanexpert.org/event/2756 -https://www.oceanexpert.org/institution/13059 -https://www.oceanexpert.org/institution/14799 -https://www.oceanexpert.org/expert/43308 -https://www.oceanexpert.org/expert/24231 -https://www.oceanexpert.org/expert/34699 -https://www.oceanexpert.org/event/3115 -https://www.oceanexpert.org/expert/20195 -https://www.oceanexpert.org/expert/25384 -https://www.oceanexpert.org/expert/32459 -https://www.oceanexpert.org/institution/18145 -https://www.oceanexpert.org/expert/48988 -https://www.oceanexpert.org/institution/20934 -https://www.oceanexpert.org/expert/25888 -https://www.oceanexpert.org/expert/22341 -https://www.oceanexpert.org/expert/36000 -https://www.oceanexpert.org/institution/20921 -https://www.oceanexpert.org/expert/20791 -https://www.oceanexpert.org/expert/27177 -https://www.oceanexpert.org/institution/21963 -https://www.oceanexpert.org/institution/21913 -https://www.oceanexpert.org/expert/29830 -https://www.oceanexpert.org/expert/1685 -https://www.oceanexpert.org/expert/21207 -https://www.oceanexpert.org/institution/18868 -https://www.oceanexpert.org/expert/11731 -https://www.oceanexpert.org/expert/21305 -https://www.oceanexpert.org/expert/46586 -https://www.oceanexpert.org/expert/35413 -https://www.oceanexpert.org/expert/33831 -https://www.oceanexpert.org/expert/45004 -https://www.oceanexpert.org/institution/11651 -https://www.oceanexpert.org/expert/43642 -https://www.oceanexpert.org/institution/14416 -https://www.oceanexpert.org/expert/48649 -https://www.oceanexpert.org/institution/21643 -https://www.oceanexpert.org/institution/18833 -https://www.oceanexpert.org/expert/43736 -https://www.oceanexpert.org/expert/37956 -https://www.oceanexpert.org/institution/21464 -https://www.oceanexpert.org/expert/40563 -https://www.oceanexpert.org/expert/26970 -https://www.oceanexpert.org/institution/22092 -https://www.oceanexpert.org/expert/20345 -https://www.oceanexpert.org/expert/31273 -https://www.oceanexpert.org/expert/47131 -https://www.oceanexpert.org/expert/48579 -https://www.oceanexpert.org/institution/20379 -https://www.oceanexpert.org/expert/20986 -https://www.oceanexpert.org/expert/44943 -https://www.oceanexpert.org/expert/19873 -https://www.oceanexpert.org/expert/23747 -https://www.oceanexpert.org/institution/19694 -https://www.oceanexpert.org/institution/15770 -https://www.oceanexpert.org/expert/44345 -https://www.oceanexpert.org/expert/21843 -https://www.oceanexpert.org/institution/21175 -https://www.oceanexpert.org/expert/38119 -https://www.oceanexpert.org/event/2056 -https://www.oceanexpert.org/expert/35952 -https://www.oceanexpert.org/expert/32308 -https://www.oceanexpert.org/event/1277 -https://www.oceanexpert.org/expert/32856 -https://www.oceanexpert.org/expert/22238 -https://www.oceanexpert.org/institution/21683 -https://www.oceanexpert.org/expert/22388 -https://www.oceanexpert.org/institution/16205 -https://www.oceanexpert.org/expert/22530 -https://www.oceanexpert.org/expert/43121 -https://www.oceanexpert.org/expert/46807 -https://www.oceanexpert.org/expert/35988 -https://www.oceanexpert.org/expert/27432 -https://www.oceanexpert.org/institution/17245 -https://www.oceanexpert.org/expert/24931 -https://www.oceanexpert.org/institution/8752 -https://www.oceanexpert.org/event/791 -https://www.oceanexpert.org/expert/46909 -https://www.oceanexpert.org/expert/26821 -https://www.oceanexpert.org/expert/44204 -https://www.oceanexpert.org/event/1543 -https://www.oceanexpert.org/expert/35531 -https://www.oceanexpert.org/expert/44851 -https://www.oceanexpert.org/expert/16811 -https://www.oceanexpert.org/institution/20975 -https://www.oceanexpert.org/event/1354 -https://www.oceanexpert.org/institution/6963 -https://www.oceanexpert.org/expert/25984 -https://www.oceanexpert.org/expert/16361 -https://www.oceanexpert.org/institution/21604 -https://www.oceanexpert.org/expert/43545 -https://www.oceanexpert.org/expert/33302 -https://www.oceanexpert.org/event/584 -https://www.oceanexpert.org/expert/24769 -https://www.oceanexpert.org/event/1770 -https://www.oceanexpert.org/institution/12603 -https://www.oceanexpert.org/event/869 -https://www.oceanexpert.org/expert/24536 -https://www.oceanexpert.org/institution/18441 -https://www.oceanexpert.org/institution/19241 -https://www.oceanexpert.org/expert/33286 -https://www.oceanexpert.org/expert/25292 -https://www.oceanexpert.org/expert/14684 -https://www.oceanexpert.org/expert/25381 -https://www.oceanexpert.org/expert/32466 -https://www.oceanexpert.org/expert/21079 -https://www.oceanexpert.org/expert/43664 -https://www.oceanexpert.org/expert/28177 -https://www.oceanexpert.org/expert/44304 -https://www.oceanexpert.org/expert/27980 -https://www.oceanexpert.org/expert/46490 -https://www.oceanexpert.org/expert/14071 -https://www.oceanexpert.org/expert/27454 -https://www.oceanexpert.org/event/2455 -https://www.oceanexpert.org/expert/46258 -https://www.oceanexpert.org/expert/35071 -https://www.oceanexpert.org/event/1168 -https://www.oceanexpert.org/event/2269 -https://www.oceanexpert.org/expert/35275 -https://www.oceanexpert.org/expert/32155 -https://www.oceanexpert.org/institution/11881 -https://www.oceanexpert.org/expert/30325 -https://www.oceanexpert.org/institution/18858 -https://www.oceanexpert.org/expert/35534 -https://www.oceanexpert.org/expert/18297 -https://www.oceanexpert.org/expert/37494 -https://www.oceanexpert.org/expert/18090 -https://www.oceanexpert.org/expert/29846 -https://www.oceanexpert.org/expert/27115 -https://www.oceanexpert.org/expert/25899 -https://www.oceanexpert.org/expert/18598 -https://www.oceanexpert.org/expert/36504 -https://www.oceanexpert.org/institution/21431 -https://www.oceanexpert.org/institution/6802 -https://www.oceanexpert.org/expert/34287 -https://www.oceanexpert.org/expert/38027 -https://www.oceanexpert.org/institution/20908 -https://www.oceanexpert.org/expert/21365 -https://www.oceanexpert.org/expert/12885 -https://www.oceanexpert.org/expert/10838 -https://www.oceanexpert.org/expert/35570 -https://www.oceanexpert.org/institution/19792 -https://www.oceanexpert.org/expert/23942 -https://www.oceanexpert.org/expert/19254 -https://www.oceanexpert.org/institution/21373 -https://www.oceanexpert.org/expert/42429 -https://www.oceanexpert.org/expert/44902 -https://www.oceanexpert.org/institution/20819 -https://www.oceanexpert.org/expert/44830 -https://www.oceanexpert.org/institution/19175 -https://www.oceanexpert.org/expert/19958 -https://www.oceanexpert.org/expert/43165 -https://www.oceanexpert.org/institution/17370 -https://www.oceanexpert.org/expert/4194 -https://www.oceanexpert.org/institution/17029 -https://www.oceanexpert.org/institution/21585 -https://www.oceanexpert.org/institution/16825 -https://www.oceanexpert.org/event/870 -https://www.oceanexpert.org/institution/20734 -https://www.oceanexpert.org/expert/23794 -https://www.oceanexpert.org/expert/29651 -https://www.oceanexpert.org/expert/29623 -https://www.oceanexpert.org/event/985 -https://www.oceanexpert.org/expert/24683 -https://www.oceanexpert.org/institution/18384 -https://www.oceanexpert.org/institution/18554 -https://www.oceanexpert.org/expert/20119 -https://www.oceanexpert.org/expert/36649 -https://www.oceanexpert.org/expert/48050 -https://www.oceanexpert.org/expert/20479 -https://www.oceanexpert.org/expert/1944 -https://www.oceanexpert.org/expert/24614 -https://www.oceanexpert.org/institution/11391 -https://www.oceanexpert.org/expert/16657 -https://www.oceanexpert.org/expert/33645 -https://www.oceanexpert.org/expert/29844 -https://www.oceanexpert.org/expert/16604 -https://www.oceanexpert.org/expert/28019 -https://www.oceanexpert.org/institution/9991 -https://www.oceanexpert.org/expert/11740 -https://www.oceanexpert.org/expert/28360 -https://www.oceanexpert.org/event/217 -https://www.oceanexpert.org/expert/23497 -https://www.oceanexpert.org/expert/20696 -https://www.oceanexpert.org/expert/14151 -https://www.oceanexpert.org/expert/21461 -https://www.oceanexpert.org/expert/43685 -https://www.oceanexpert.org/expert/43248 -https://www.oceanexpert.org/expert/34741 -https://www.oceanexpert.org/expert/43841 -https://www.oceanexpert.org/expert/18309 -https://www.oceanexpert.org/institution/11775 -https://www.oceanexpert.org/expert/40629 -https://www.oceanexpert.org/institution/10772 -https://www.oceanexpert.org/institution/19065 -https://www.oceanexpert.org/institution/10492 -https://www.oceanexpert.org/expert/12867 -https://www.oceanexpert.org/institution/20306 -https://www.oceanexpert.org/expert/43389 -https://www.oceanexpert.org/institution/15813 -https://www.oceanexpert.org/expert/34604 -https://www.oceanexpert.org/institution/15815 -https://www.oceanexpert.org/expert/42932 -https://www.oceanexpert.org/institution/22006 -https://www.oceanexpert.org/institution/15691 -https://www.oceanexpert.org/expert/41683 -https://www.oceanexpert.org/expert/35380 -https://www.oceanexpert.org/institution/21115 -https://www.oceanexpert.org/expert/33764 -https://www.oceanexpert.org/expert/44034 -https://www.oceanexpert.org/expert/38016 -https://www.oceanexpert.org/expert/42877 -https://www.oceanexpert.org/expert/21752 -https://www.oceanexpert.org/event/2239 -https://www.oceanexpert.org/expert/5162 -https://www.oceanexpert.org/event/979 -https://www.oceanexpert.org/expert/1205 -https://www.oceanexpert.org/institution/17195 -https://www.oceanexpert.org/expert/12957 -https://www.oceanexpert.org/expert/46605 -https://www.oceanexpert.org/institution/21191 -https://www.oceanexpert.org/expert/25197 -https://www.oceanexpert.org/institution/10489 -https://www.oceanexpert.org/institution/8376 -https://www.oceanexpert.org/event/1829 -https://www.oceanexpert.org/expert/43569 -https://www.oceanexpert.org/expert/13694 -https://www.oceanexpert.org/expert/23310 -https://www.oceanexpert.org/expert/25516 -https://www.oceanexpert.org/institution/19901 -https://www.oceanexpert.org/expert/37602 -https://www.oceanexpert.org/institution/5239 -https://www.oceanexpert.org/expert/39561 -https://www.oceanexpert.org/expert/18200 -https://www.oceanexpert.org/event/77 -https://www.oceanexpert.org/event/1253 -https://www.oceanexpert.org/expert/1098 -https://www.oceanexpert.org/expert/24854 -https://www.oceanexpert.org/event/1514 -https://www.oceanexpert.org/expert/30180 -https://www.oceanexpert.org/expert/48408 -https://www.oceanexpert.org/institution/19280 -https://www.oceanexpert.org/expert/24359 -https://www.oceanexpert.org/expert/42703 -https://www.oceanexpert.org/event/1099 -https://www.oceanexpert.org/institution/15884 -https://www.oceanexpert.org/institution/13433 -https://www.oceanexpert.org/expert/29882 -https://www.oceanexpert.org/expert/12227 -https://www.oceanexpert.org/expert/16668 -https://www.oceanexpert.org/expert/24541 -https://www.oceanexpert.org/expert/44940 -https://www.oceanexpert.org/institution/13053 -https://www.oceanexpert.org/expert/29085 -https://www.oceanexpert.org/institution/11420 -https://www.oceanexpert.org/expert/23873 -https://www.oceanexpert.org/expert/14622 -https://www.oceanexpert.org/event/3033 -https://www.oceanexpert.org/event/2183 -https://www.oceanexpert.org/expert/16808 -https://www.oceanexpert.org/expert/38902 -https://www.oceanexpert.org/institution/5953 -https://www.oceanexpert.org/institution/18624 -https://www.oceanexpert.org/expert/23035 -https://www.oceanexpert.org/expert/43891 -https://www.oceanexpert.org/institution/10878 -https://www.oceanexpert.org/event/2714 -https://www.oceanexpert.org/expert/31659 -https://www.oceanexpert.org/institution/18123 -https://www.oceanexpert.org/expert/46797 -https://www.oceanexpert.org/institution/10230 -https://www.oceanexpert.org/institution/19596 -https://www.oceanexpert.org/expert/42421 -https://www.oceanexpert.org/expert/36267 -https://www.oceanexpert.org/expert/45645 -https://www.oceanexpert.org/expert/19107 -https://www.oceanexpert.org/institution/6538 -https://www.oceanexpert.org/institution/21191 -https://www.oceanexpert.org/expert/18999 -https://www.oceanexpert.org/expert/32531 -https://www.oceanexpert.org/institution/20875 -https://www.oceanexpert.org/expert/29727 -https://www.oceanexpert.org/event/660 -https://www.oceanexpert.org/expert/46663 -https://www.oceanexpert.org/expert/18659 -https://www.oceanexpert.org/expert/19395 -https://www.oceanexpert.org/expert/25684 -https://www.oceanexpert.org/institution/16511 -https://www.oceanexpert.org/expert/20604 -https://www.oceanexpert.org/expert/20821 -https://www.oceanexpert.org/event/2593 -https://www.oceanexpert.org/expert/20711 -https://www.oceanexpert.org/institution/21480 -https://www.oceanexpert.org/event/1899 -https://www.oceanexpert.org/institution/18200 -https://www.oceanexpert.org/expert/14230 -https://www.oceanexpert.org/expert/23796 -https://www.oceanexpert.org/expert/33743 -https://www.oceanexpert.org/event/323 -https://www.oceanexpert.org/expert/21863 -https://www.oceanexpert.org/expert/22925 -https://www.oceanexpert.org/expert/22272 -https://www.oceanexpert.org/institution/19549 -https://www.oceanexpert.org/expert/22667 -https://www.oceanexpert.org/expert/26186 -https://www.oceanexpert.org/expert/19615 -https://www.oceanexpert.org/expert/35283 -https://www.oceanexpert.org/expert/21271 -https://www.oceanexpert.org/institution/22060 -https://www.oceanexpert.org/institution/17236 -https://www.oceanexpert.org/expert/27608 -https://www.oceanexpert.org/expert/19487 -https://www.oceanexpert.org/expert/29126 -https://www.oceanexpert.org/institution/11220 -https://www.oceanexpert.org/institution/15219 -https://www.oceanexpert.org/event/1352 -https://www.oceanexpert.org/expert/43054 -https://www.oceanexpert.org/expert/36727 -https://www.oceanexpert.org/institution/11329 -https://www.oceanexpert.org/institution/18235 -https://www.oceanexpert.org/expert/25348 -https://www.oceanexpert.org/expert/36688 -https://www.oceanexpert.org/expert/30206 -https://www.oceanexpert.org/expert/12017 -https://www.oceanexpert.org/expert/19510 -https://www.oceanexpert.org/expert/3480 -https://www.oceanexpert.org/expert/27914 -https://www.oceanexpert.org/expert/29822 -https://www.oceanexpert.org/expert/24564 -https://www.oceanexpert.org/institution/19655 -https://www.oceanexpert.org/expert/19027 -https://www.oceanexpert.org/expert/19392 -https://www.oceanexpert.org/expert/47925 -https://www.oceanexpert.org/event/2085 -https://www.oceanexpert.org/event/1963 -https://www.oceanexpert.org/expert/21117 -https://www.oceanexpert.org/expert/39835 -https://www.oceanexpert.org/expert/17163 -https://www.oceanexpert.org/institution/19278 -https://www.oceanexpert.org/expert/35141 -https://www.oceanexpert.org/institution/21973 -https://www.oceanexpert.org/expert/11237 -https://www.oceanexpert.org/institution/20378 -https://www.oceanexpert.org/expert/17301 -https://www.oceanexpert.org/institution/13026 -https://www.oceanexpert.org/expert/25661 -https://www.oceanexpert.org/expert/47877 -https://www.oceanexpert.org/institution/11430 -https://www.oceanexpert.org/expert/25060 -https://www.oceanexpert.org/expert/18438 -https://www.oceanexpert.org/expert/21683 -https://www.oceanexpert.org/expert/13394 -https://www.oceanexpert.org/expert/20762 -https://www.oceanexpert.org/expert/17981 -https://www.oceanexpert.org/institution/12715 -https://www.oceanexpert.org/institution/21044 -https://www.oceanexpert.org/expert/23235 -https://www.oceanexpert.org/event/2187 -https://www.oceanexpert.org/institution/12127 -https://www.oceanexpert.org/expert/18864 -https://www.oceanexpert.org/institution/18190 -https://www.oceanexpert.org/expert/25840 -https://www.oceanexpert.org/expert/36578 -https://www.oceanexpert.org/expert/48199 -https://www.oceanexpert.org/institution/19392 -https://www.oceanexpert.org/expert/42769 -https://www.oceanexpert.org/expert/20310 -https://www.oceanexpert.org/event/1547 -https://www.oceanexpert.org/expert/8843 -https://www.oceanexpert.org/expert/28501 -https://www.oceanexpert.org/institution/13803 -https://www.oceanexpert.org/institution/14306 -https://www.oceanexpert.org/institution/17032 -https://www.oceanexpert.org/expert/36952 -https://www.oceanexpert.org/expert/33652 -https://www.oceanexpert.org/expert/28139 -https://www.oceanexpert.org/expert/27435 -https://www.oceanexpert.org/expert/38006 -https://www.oceanexpert.org/event/1921 -https://www.oceanexpert.org/institution/20131 -https://www.oceanexpert.org/expert/22017 -https://www.oceanexpert.org/expert/20324 -https://www.oceanexpert.org/expert/35899 -https://www.oceanexpert.org/expert/26927 -https://www.oceanexpert.org/institution/13814 -https://www.oceanexpert.org/expert/8363 -https://www.oceanexpert.org/expert/20036 -https://www.oceanexpert.org/expert/40277 -https://www.oceanexpert.org/expert/10780 -https://www.oceanexpert.org/expert/14770 -https://www.oceanexpert.org/expert/46378 -https://www.oceanexpert.org/expert/25385 -https://www.oceanexpert.org/institution/21213 -https://www.oceanexpert.org/expert/2470 -https://www.oceanexpert.org/expert/46199 -https://www.oceanexpert.org/expert/32962 -https://www.oceanexpert.org/expert/37576 -https://www.oceanexpert.org/expert/1981 -https://www.oceanexpert.org/institution/12033 -https://www.oceanexpert.org/expert/3870 -https://www.oceanexpert.org/institution/12426 -https://www.oceanexpert.org/expert/37244 -https://www.oceanexpert.org/institution/15046 -https://www.oceanexpert.org/expert/42492 -https://www.oceanexpert.org/expert/15301 -https://www.oceanexpert.org/expert/33537 -https://www.oceanexpert.org/expert/23318 -https://www.oceanexpert.org/expert/28432 -https://www.oceanexpert.org/expert/23642 -https://www.oceanexpert.org/expert/14129 -https://www.oceanexpert.org/expert/20666 -https://www.oceanexpert.org/institution/21974 -https://www.oceanexpert.org/institution/17709 -https://www.oceanexpert.org/expert/4916 -https://www.oceanexpert.org/event/1581 -https://www.oceanexpert.org/expert/14031 -https://www.oceanexpert.org/expert/35442 -https://www.oceanexpert.org/institution/12706 -https://www.oceanexpert.org/expert/42936 -https://www.oceanexpert.org/institution/12182 -https://www.oceanexpert.org/institution/7280 -https://www.oceanexpert.org/expert/13378 -https://www.oceanexpert.org/expert/27631 -https://www.oceanexpert.org/expert/40886 -https://www.oceanexpert.org/expert/43855 -https://www.oceanexpert.org/expert/19006 -https://www.oceanexpert.org/institution/20035 -https://www.oceanexpert.org/expert/20688 -https://www.oceanexpert.org/expert/25789 -https://www.oceanexpert.org/expert/35280 -https://www.oceanexpert.org/expert/16396 -https://www.oceanexpert.org/expert/4895 -https://www.oceanexpert.org/expert/17807 -https://www.oceanexpert.org/institution/9407 -https://www.oceanexpert.org/institution/18784 -https://www.oceanexpert.org/institution/15521 -https://www.oceanexpert.org/expert/37477 -https://www.oceanexpert.org/institution/18216 -https://www.oceanexpert.org/institution/20842 -https://www.oceanexpert.org/expert/26478 -https://www.oceanexpert.org/expert/36083 -https://www.oceanexpert.org/event/795 -https://www.oceanexpert.org/expert/26639 -https://www.oceanexpert.org/expert/27659 -https://www.oceanexpert.org/event/1637 -https://www.oceanexpert.org/expert/46597 -https://www.oceanexpert.org/institution/19533 -https://www.oceanexpert.org/expert/22049 -https://www.oceanexpert.org/event/2625 -https://www.oceanexpert.org/institution/22183 -https://www.oceanexpert.org/expert/23021 -https://www.oceanexpert.org/expert/32198 -https://www.oceanexpert.org/expert/26896 -https://www.oceanexpert.org/expert/46962 -https://www.oceanexpert.org/institution/15722 -https://www.oceanexpert.org/expert/33445 -https://www.oceanexpert.org/institution/5662 -https://www.oceanexpert.org/event/440 -https://www.oceanexpert.org/expert/34016 -https://www.oceanexpert.org/expert/19422 -https://www.oceanexpert.org/institution/21657 -https://www.oceanexpert.org/expert/24341 -https://www.oceanexpert.org/expert/38898 -https://www.oceanexpert.org/event/1967 -https://www.oceanexpert.org/institution/9091 -https://www.oceanexpert.org/expert/32616 -https://www.oceanexpert.org/expert/23461 -https://www.oceanexpert.org/institution/15882 -https://www.oceanexpert.org/expert/44515 -https://www.oceanexpert.org/expert/48993 -https://www.oceanexpert.org/expert/19200 -https://www.oceanexpert.org/expert/25826 -https://www.oceanexpert.org/institution/18373 -https://www.oceanexpert.org/expert/992 -https://www.oceanexpert.org/event/2357 -https://www.oceanexpert.org/expert/29899 -https://www.oceanexpert.org/expert/33998 -https://www.oceanexpert.org/expert/28616 -https://www.oceanexpert.org/expert/35273 -https://www.oceanexpert.org/institution/19191 -https://www.oceanexpert.org/expert/21362 -https://www.oceanexpert.org/expert/29694 -https://www.oceanexpert.org/expert/37295 -https://www.oceanexpert.org/expert/44153 -https://www.oceanexpert.org/expert/24547 -https://www.oceanexpert.org/expert/46236 -https://www.oceanexpert.org/event/1145 -https://www.oceanexpert.org/expert/20748 -https://www.oceanexpert.org/expert/22027 -https://www.oceanexpert.org/expert/35774 -https://www.oceanexpert.org/expert/34829 -https://www.oceanexpert.org/expert/28289 -https://www.oceanexpert.org/expert/35033 -https://www.oceanexpert.org/expert/42993 -https://www.oceanexpert.org/expert/23431 -https://www.oceanexpert.org/expert/20624 -https://www.oceanexpert.org/institution/10994 -https://www.oceanexpert.org/expert/25843 -https://www.oceanexpert.org/institution/21220 -https://www.oceanexpert.org/expert/8747 -https://www.oceanexpert.org/expert/24836 -https://www.oceanexpert.org/expert/48666 -https://www.oceanexpert.org/expert/18885 -https://www.oceanexpert.org/expert/30751 -https://www.oceanexpert.org/expert/32871 -https://www.oceanexpert.org/expert/28055 -https://www.oceanexpert.org/expert/17001 -https://www.oceanexpert.org/expert/26582 -https://www.oceanexpert.org/institution/20035 -https://www.oceanexpert.org/institution/11550 -https://www.oceanexpert.org/expert/26421 -https://www.oceanexpert.org/institution/14777 -https://www.oceanexpert.org/expert/46894 -https://www.oceanexpert.org/event/978 -https://www.oceanexpert.org/expert/31693 -https://www.oceanexpert.org/institution/12133 -https://www.oceanexpert.org/expert/19895 -https://www.oceanexpert.org/expert/18291 -https://www.oceanexpert.org/expert/18632 -https://www.oceanexpert.org/institution/20577 -https://www.oceanexpert.org/expert/42048 -https://www.oceanexpert.org/expert/18253 -https://www.oceanexpert.org/expert/42489 -https://www.oceanexpert.org/expert/34106 -https://www.oceanexpert.org/expert/28821 -https://www.oceanexpert.org/event/378 -https://www.oceanexpert.org/expert/35338 -https://www.oceanexpert.org/institution/18404 -https://www.oceanexpert.org/event/1084 -https://www.oceanexpert.org/institution/18054 -https://www.oceanexpert.org/expert/46245 -https://www.oceanexpert.org/event/1830 -https://www.oceanexpert.org/institution/11082 -https://www.oceanexpert.org/expert/21981 -https://www.oceanexpert.org/expert/45516 -https://www.oceanexpert.org/expert/21683 -https://www.oceanexpert.org/institution/19482 -https://www.oceanexpert.org/expert/21212 -https://www.oceanexpert.org/expert/23732 -https://www.oceanexpert.org/expert/16017 -https://www.oceanexpert.org/expert/3131 -https://www.oceanexpert.org/institution/22180 -https://www.oceanexpert.org/expert/43691 -https://www.oceanexpert.org/expert/46185 -https://www.oceanexpert.org/expert/8744 -https://www.oceanexpert.org/institution/15851 -https://www.oceanexpert.org/expert/44465 -https://www.oceanexpert.org/expert/26810 -https://www.oceanexpert.org/expert/31564 -https://www.oceanexpert.org/expert/22211 -https://www.oceanexpert.org/expert/43176 -https://www.oceanexpert.org/expert/32562 -https://www.oceanexpert.org/expert/35083 -https://www.oceanexpert.org/expert/45547 -https://www.oceanexpert.org/expert/19606 -https://www.oceanexpert.org/event/599 -https://www.oceanexpert.org/expert/46302 -https://www.oceanexpert.org/expert/46440 -https://www.oceanexpert.org/expert/48110 -https://www.oceanexpert.org/event/1446 -https://www.oceanexpert.org/institution/17903 -https://www.oceanexpert.org/institution/19165 -https://www.oceanexpert.org/expert/36863 -https://www.oceanexpert.org/institution/21468 -https://www.oceanexpert.org/expert/25397 -https://www.oceanexpert.org/expert/45558 -https://www.oceanexpert.org/expert/3992 -https://www.oceanexpert.org/event/52 -https://www.oceanexpert.org/expert/30911 -https://www.oceanexpert.org/expert/27520 -https://www.oceanexpert.org/event/2979 -https://www.oceanexpert.org/expert/24032 -https://www.oceanexpert.org/expert/22094 -https://www.oceanexpert.org/expert/47812 -https://www.oceanexpert.org/expert/19294 -https://www.oceanexpert.org/institution/16130 -https://www.oceanexpert.org/expert/22844 -https://www.oceanexpert.org/expert/47398 -https://www.oceanexpert.org/expert/43383 -https://www.oceanexpert.org/event/2919 -https://www.oceanexpert.org/expert/19855 -https://www.oceanexpert.org/institution/15956 -https://www.oceanexpert.org/event/3076 -https://www.oceanexpert.org/expert/21986 -https://www.oceanexpert.org/expert/26096 -https://www.oceanexpert.org/institution/14873 -https://www.oceanexpert.org/institution/17798 -https://www.oceanexpert.org/expert/24138 -https://www.oceanexpert.org/expert/20955 -https://www.oceanexpert.org/expert/42802 -https://www.oceanexpert.org/event/683 -https://www.oceanexpert.org/expert/28119 -https://www.oceanexpert.org/expert/33098 -https://www.oceanexpert.org/expert/49034 -https://www.oceanexpert.org/expert/25035 -https://www.oceanexpert.org/expert/18125 -https://www.oceanexpert.org/institution/12159 -https://www.oceanexpert.org/expert/45339 -https://www.oceanexpert.org/expert/23737 -https://www.oceanexpert.org/expert/19412 -https://www.oceanexpert.org/expert/40607 -https://www.oceanexpert.org/expert/45343 -https://www.oceanexpert.org/expert/17546 -https://www.oceanexpert.org/expert/23018 -https://www.oceanexpert.org/institution/16819 -https://www.oceanexpert.org/expert/34024 -https://www.oceanexpert.org/institution/13682 -https://www.oceanexpert.org/expert/23309 -https://www.oceanexpert.org/expert/1567 -https://www.oceanexpert.org/expert/22792 -https://www.oceanexpert.org/event/2596 -https://www.oceanexpert.org/expert/22472 -https://www.oceanexpert.org/expert/1328 -https://www.oceanexpert.org/expert/47128 -https://www.oceanexpert.org/expert/30274 -https://www.oceanexpert.org/institution/19092 -https://www.oceanexpert.org/expert/40123 -https://www.oceanexpert.org/event/967 -https://www.oceanexpert.org/expert/46566 -https://www.oceanexpert.org/expert/21722 -https://www.oceanexpert.org/institution/13107 -https://www.oceanexpert.org/institution/11312 -https://www.oceanexpert.org/expert/21909 -https://www.oceanexpert.org/institution/12905 -https://www.oceanexpert.org/institution/17939 -https://www.oceanexpert.org/expert/22919 -https://www.oceanexpert.org/institution/9426 -https://www.oceanexpert.org/expert/26903 -https://www.oceanexpert.org/expert/22113 -https://www.oceanexpert.org/expert/35652 -https://www.oceanexpert.org/expert/49079 -https://www.oceanexpert.org/expert/28787 -https://www.oceanexpert.org/expert/32183 -https://www.oceanexpert.org/expert/6537 -https://www.oceanexpert.org/event/1518 -https://www.oceanexpert.org/institution/15614 -https://www.oceanexpert.org/institution/15670 -https://www.oceanexpert.org/institution/19586 -https://www.oceanexpert.org/expert/24334 -https://www.oceanexpert.org/event/1532 -https://www.oceanexpert.org/expert/21195 -https://www.oceanexpert.org/expert/45367 -https://www.oceanexpert.org/institution/11621 -https://www.oceanexpert.org/event/252 -https://www.oceanexpert.org/event/1106 -https://www.oceanexpert.org/institution/4890 -https://www.oceanexpert.org/event/1634 -https://www.oceanexpert.org/expert/42575 -https://www.oceanexpert.org/expert/24281 -https://www.oceanexpert.org/expert/26898 -https://www.oceanexpert.org/expert/17298 -https://www.oceanexpert.org/expert/26228 -https://www.oceanexpert.org/institution/14400 -https://www.oceanexpert.org/expert/25732 -https://www.oceanexpert.org/institution/18887 -https://www.oceanexpert.org/institution/11778 -https://www.oceanexpert.org/expert/29635 -https://www.oceanexpert.org/expert/25404 -https://www.oceanexpert.org/expert/20376 -https://www.oceanexpert.org/expert/34860 -https://www.oceanexpert.org/institution/14654 -https://www.oceanexpert.org/event/81 -https://www.oceanexpert.org/expert/17942 -https://www.oceanexpert.org/institution/20533 -https://www.oceanexpert.org/event/1711 -https://www.oceanexpert.org/institution/20019 -https://www.oceanexpert.org/institution/18214 -https://www.oceanexpert.org/expert/36172 -https://www.oceanexpert.org/expert/22040 -https://www.oceanexpert.org/expert/34428 -https://www.oceanexpert.org/expert/25248 -https://www.oceanexpert.org/expert/32689 -https://www.oceanexpert.org/institution/9854 -https://www.oceanexpert.org/institution/10756 -https://www.oceanexpert.org/expert/20169 -https://www.oceanexpert.org/expert/15401 -https://www.oceanexpert.org/institution/21982 -https://www.oceanexpert.org/expert/11277 -https://www.oceanexpert.org/expert/13658 -https://www.oceanexpert.org/event/535 -https://www.oceanexpert.org/expert/48940 -https://www.oceanexpert.org/expert/1271 -https://www.oceanexpert.org/expert/30954 -https://www.oceanexpert.org/expert/32580 -https://www.oceanexpert.org/expert/16454 -https://www.oceanexpert.org/institution/18949 -https://www.oceanexpert.org/institution/21660 -https://www.oceanexpert.org/expert/34995 -https://www.oceanexpert.org/event/2926 -https://www.oceanexpert.org/event/2591 -https://www.oceanexpert.org/expert/8797 -https://www.oceanexpert.org/expert/29011 -https://www.oceanexpert.org/institution/21572 -https://www.oceanexpert.org/institution/13696 -https://www.oceanexpert.org/expert/14844 -https://www.oceanexpert.org/event/531 -https://www.oceanexpert.org/institution/9605 -https://www.oceanexpert.org/expert/21686 -https://www.oceanexpert.org/expert/21056 -https://www.oceanexpert.org/event/746 -https://www.oceanexpert.org/expert/30296 -https://www.oceanexpert.org/institution/18682 -https://www.oceanexpert.org/expert/47523 -https://www.oceanexpert.org/expert/23031 -https://www.oceanexpert.org/expert/25127 -https://www.oceanexpert.org/event/1493 -https://www.oceanexpert.org/expert/32401 -https://www.oceanexpert.org/expert/44129 -https://www.oceanexpert.org/expert/18669 -https://www.oceanexpert.org/expert/42686 -https://www.oceanexpert.org/institution/17015 -https://www.oceanexpert.org/expert/43792 -https://www.oceanexpert.org/institution/7287 -https://www.oceanexpert.org/expert/39521 -https://www.oceanexpert.org/event/3280 -https://www.oceanexpert.org/expert/18126 -https://www.oceanexpert.org/expert/33017 -https://www.oceanexpert.org/expert/20090 -https://www.oceanexpert.org/expert/31574 -https://www.oceanexpert.org/institution/16784 -https://www.oceanexpert.org/expert/20665 -https://www.oceanexpert.org/expert/45908 -https://www.oceanexpert.org/event/670 -https://www.oceanexpert.org/expert/32657 -https://www.oceanexpert.org/expert/17045 -https://www.oceanexpert.org/expert/20326 -https://www.oceanexpert.org/expert/28374 -https://www.oceanexpert.org/expert/21017 -https://www.oceanexpert.org/expert/37835 -https://www.oceanexpert.org/expert/14444 -https://www.oceanexpert.org/institution/21312 -https://www.oceanexpert.org/institution/10884 -https://www.oceanexpert.org/institution/18057 -https://www.oceanexpert.org/institution/22079 -https://www.oceanexpert.org/institution/18839 -https://www.oceanexpert.org/expert/12168 -https://www.oceanexpert.org/expert/32515 -https://www.oceanexpert.org/expert/24670 -https://www.oceanexpert.org/institution/15665 -https://www.oceanexpert.org/expert/27083 -https://www.oceanexpert.org/expert/22507 -https://www.oceanexpert.org/institution/20314 -https://www.oceanexpert.org/expert/22969 -https://www.oceanexpert.org/institution/17924 -https://www.oceanexpert.org/event/3030 -https://www.oceanexpert.org/expert/35415 -https://www.oceanexpert.org/expert/35110 -https://www.oceanexpert.org/expert/38133 -https://www.oceanexpert.org/expert/49051 -https://www.oceanexpert.org/expert/27490 -https://www.oceanexpert.org/expert/40050 -https://www.oceanexpert.org/expert/18309 -https://www.oceanexpert.org/expert/18778 -https://www.oceanexpert.org/institution/19206 -https://www.oceanexpert.org/event/3118 -https://www.oceanexpert.org/event/203 -https://www.oceanexpert.org/expert/35160 -https://www.oceanexpert.org/expert/42936 -https://www.oceanexpert.org/expert/27659 -https://www.oceanexpert.org/expert/28128 -https://www.oceanexpert.org/expert/7930 -https://www.oceanexpert.org/expert/23951 -https://www.oceanexpert.org/expert/43091 -https://www.oceanexpert.org/expert/43668 -https://www.oceanexpert.org/expert/21633 -https://www.oceanexpert.org/institution/20392 -https://www.oceanexpert.org/event/2038 -https://www.oceanexpert.org/expert/26196 -https://www.oceanexpert.org/expert/36374 -https://www.oceanexpert.org/institution/19051 -https://www.oceanexpert.org/institution/20551 -https://www.oceanexpert.org/expert/35317 -https://www.oceanexpert.org/institution/21065 -https://www.oceanexpert.org/expert/19172 -https://www.oceanexpert.org/institution/14742 -https://www.oceanexpert.org/expert/46968 -https://www.oceanexpert.org/institution/21495 -https://www.oceanexpert.org/institution/8093 -https://www.oceanexpert.org/event/3175 -https://www.oceanexpert.org/expert/42617 -https://www.oceanexpert.org/expert/17378 -https://www.oceanexpert.org/expert/36571 -https://www.oceanexpert.org/expert/45865 -https://www.oceanexpert.org/expert/39857 -https://www.oceanexpert.org/expert/24135 -https://www.oceanexpert.org/event/2199 -https://www.oceanexpert.org/institution/14042 -https://www.oceanexpert.org/institution/21431 -https://www.oceanexpert.org/institution/17481 -https://www.oceanexpert.org/expert/19250 -https://www.oceanexpert.org/expert/46159 -https://www.oceanexpert.org/institution/21876 -https://www.oceanexpert.org/expert/13082 -https://www.oceanexpert.org/expert/46561 -https://www.oceanexpert.org/event/1399 -https://www.oceanexpert.org/institution/14251 -https://www.oceanexpert.org/expert/43816 -https://www.oceanexpert.org/expert/21882 -https://www.oceanexpert.org/institution/13332 -https://www.oceanexpert.org/expert/44419 -https://www.oceanexpert.org/expert/18691 -https://www.oceanexpert.org/institution/18869 -https://www.oceanexpert.org/event/1435 -https://www.oceanexpert.org/institution/15567 -https://www.oceanexpert.org/expert/33633 -https://www.oceanexpert.org/expert/20530 -https://www.oceanexpert.org/institution/18293 -https://www.oceanexpert.org/institution/6581 -https://www.oceanexpert.org/expert/14844 -https://www.oceanexpert.org/expert/23880 -https://www.oceanexpert.org/expert/21205 -https://www.oceanexpert.org/expert/29796 -https://www.oceanexpert.org/expert/22439 -https://www.oceanexpert.org/expert/24746 -https://www.oceanexpert.org/expert/21129 -https://www.oceanexpert.org/institution/15311 -https://www.oceanexpert.org/expert/18470 -https://www.oceanexpert.org/expert/39093 -https://www.oceanexpert.org/expert/13500 -https://www.oceanexpert.org/institution/15740 -https://www.oceanexpert.org/institution/20602 -https://www.oceanexpert.org/expert/27096 -https://www.oceanexpert.org/expert/22262 -https://www.oceanexpert.org/event/1300 -https://www.oceanexpert.org/institution/21871 -https://www.oceanexpert.org/expert/48732 -https://www.oceanexpert.org/expert/18287 -https://www.oceanexpert.org/expert/46928 -https://www.oceanexpert.org/expert/38282 -https://www.oceanexpert.org/expert/33634 -https://www.oceanexpert.org/institution/8475 -https://www.oceanexpert.org/expert/23629 -https://www.oceanexpert.org/event/3000 -https://www.oceanexpert.org/expert/46151 -https://www.oceanexpert.org/expert/37615 -https://www.oceanexpert.org/institution/10591 -https://www.oceanexpert.org/expert/35220 -https://www.oceanexpert.org/institution/11659 -https://www.oceanexpert.org/institution/18443 -https://www.oceanexpert.org/expert/46768 -https://www.oceanexpert.org/expert/28425 -https://www.oceanexpert.org/expert/34445 -https://www.oceanexpert.org/expert/25090 -https://www.oceanexpert.org/institution/18589 -https://www.oceanexpert.org/institution/14558 -https://www.oceanexpert.org/institution/10564 -https://www.oceanexpert.org/institution/6709 -https://www.oceanexpert.org/expert/37532 -https://www.oceanexpert.org/institution/20085 -https://www.oceanexpert.org/institution/18850 -https://www.oceanexpert.org/expert/33269 -https://www.oceanexpert.org/expert/29172 -https://www.oceanexpert.org/institution/18569 -https://www.oceanexpert.org/expert/39173 -https://www.oceanexpert.org/expert/26091 -https://www.oceanexpert.org/expert/38986 -https://www.oceanexpert.org/expert/20432 -https://www.oceanexpert.org/institution/19071 -https://www.oceanexpert.org/expert/21456 -https://www.oceanexpert.org/expert/25162 -https://www.oceanexpert.org/expert/47071 -https://www.oceanexpert.org/institution/9491 -https://www.oceanexpert.org/expert/21356 -https://www.oceanexpert.org/expert/25898 -https://www.oceanexpert.org/institution/20290 -https://www.oceanexpert.org/expert/4139 -https://www.oceanexpert.org/event/2284 -https://www.oceanexpert.org/expert/27061 -https://www.oceanexpert.org/expert/16769 -https://www.oceanexpert.org/event/2362 -https://www.oceanexpert.org/expert/30328 -https://www.oceanexpert.org/expert/25384 -https://www.oceanexpert.org/expert/31566 -https://www.oceanexpert.org/institution/10596 -https://www.oceanexpert.org/event/3077 -https://www.oceanexpert.org/expert/17308 -https://www.oceanexpert.org/expert/45431 -https://www.oceanexpert.org/expert/20472 -https://www.oceanexpert.org/event/1682 -https://www.oceanexpert.org/expert/8555 -https://www.oceanexpert.org/event/523 -https://www.oceanexpert.org/institution/20336 -https://www.oceanexpert.org/institution/18750 -https://www.oceanexpert.org/institution/11678 -https://www.oceanexpert.org/expert/32921 -https://www.oceanexpert.org/expert/29893 -https://www.oceanexpert.org/institution/10426 -https://www.oceanexpert.org/expert/12337 -https://www.oceanexpert.org/institution/21015 -https://www.oceanexpert.org/expert/632 -https://www.oceanexpert.org/event/1055 -https://www.oceanexpert.org/expert/36686 -https://www.oceanexpert.org/institution/21625 -https://www.oceanexpert.org/institution/21892 -https://www.oceanexpert.org/expert/48392 -https://www.oceanexpert.org/expert/34464 -https://www.oceanexpert.org/expert/36513 -https://www.oceanexpert.org/expert/43822 -https://www.oceanexpert.org/expert/32274 -https://www.oceanexpert.org/expert/42577 -https://www.oceanexpert.org/institution/15498 -https://www.oceanexpert.org/expert/32783 -https://www.oceanexpert.org/institution/17412 -https://www.oceanexpert.org/institution/15732 -https://www.oceanexpert.org/expert/4258 -https://www.oceanexpert.org/expert/17548 -https://www.oceanexpert.org/expert/32638 -https://www.oceanexpert.org/expert/44401 -https://www.oceanexpert.org/expert/44902 -https://www.oceanexpert.org/event/86 -https://www.oceanexpert.org/expert/48524 -https://www.oceanexpert.org/expert/24586 -https://www.oceanexpert.org/expert/38917 -https://www.oceanexpert.org/expert/46905 -https://www.oceanexpert.org/event/2595 -https://www.oceanexpert.org/event/702 -https://www.oceanexpert.org/event/2729 -https://www.oceanexpert.org/expert/31671 -https://www.oceanexpert.org/event/602 -https://www.oceanexpert.org/expert/13551 -https://www.oceanexpert.org/expert/45744 -https://www.oceanexpert.org/expert/40362 -https://www.oceanexpert.org/event/1268 -https://www.oceanexpert.org/institution/19582 -https://www.oceanexpert.org/expert/45975 -https://www.oceanexpert.org/expert/48655 -https://www.oceanexpert.org/expert/37783 -https://www.oceanexpert.org/expert/37110 -https://www.oceanexpert.org/expert/30985 -https://www.oceanexpert.org/expert/28214 -https://www.oceanexpert.org/expert/13019 -https://www.oceanexpert.org/expert/33133 -https://www.oceanexpert.org/event/2564 -https://www.oceanexpert.org/expert/9199 -https://www.oceanexpert.org/event/2207 -https://www.oceanexpert.org/expert/23205 -https://www.oceanexpert.org/expert/29356 -https://www.oceanexpert.org/expert/30249 -https://www.oceanexpert.org/expert/21919 -https://www.oceanexpert.org/expert/30878 -https://www.oceanexpert.org/expert/19423 -https://www.oceanexpert.org/expert/36820 -https://www.oceanexpert.org/expert/25852 -https://www.oceanexpert.org/expert/22569 -https://www.oceanexpert.org/event/1318 -https://www.oceanexpert.org/expert/40030 -https://www.oceanexpert.org/institution/11867 -https://www.oceanexpert.org/institution/13065 -https://www.oceanexpert.org/institution/12716 -https://www.oceanexpert.org/institution/8212 -https://www.oceanexpert.org/expert/22081 -https://www.oceanexpert.org/expert/29366 -https://www.oceanexpert.org/expert/45905 -https://www.oceanexpert.org/expert/36314 -https://www.oceanexpert.org/institution/13653 -https://www.oceanexpert.org/event/65 -https://www.oceanexpert.org/expert/45047 -https://www.oceanexpert.org/expert/24898 -https://www.oceanexpert.org/expert/12962 -https://www.oceanexpert.org/institution/12216 -https://www.oceanexpert.org/institution/19641 -https://www.oceanexpert.org/expert/28099 -https://www.oceanexpert.org/institution/10350 -https://www.oceanexpert.org/expert/48833 -https://www.oceanexpert.org/institution/12878 -https://www.oceanexpert.org/institution/18430 -https://www.oceanexpert.org/expert/10848 -https://www.oceanexpert.org/expert/12947 -https://www.oceanexpert.org/expert/36728 -https://www.oceanexpert.org/expert/27298 -https://www.oceanexpert.org/expert/24603 -https://www.oceanexpert.org/institution/16779 -https://www.oceanexpert.org/institution/5550 -https://www.oceanexpert.org/expert/46437 -https://www.oceanexpert.org/expert/42457 -https://www.oceanexpert.org/institution/17272 -https://www.oceanexpert.org/expert/25303 -https://www.oceanexpert.org/expert/43334 -https://www.oceanexpert.org/expert/45897 -https://www.oceanexpert.org/expert/17725 -https://www.oceanexpert.org/expert/33283 -https://www.oceanexpert.org/expert/27242 -https://www.oceanexpert.org/expert/37230 -https://www.oceanexpert.org/expert/46732 -https://www.oceanexpert.org/expert/34998 -https://www.oceanexpert.org/expert/45041 -https://www.oceanexpert.org/institution/18219 -https://www.oceanexpert.org/expert/45902 -https://www.oceanexpert.org/expert/37016 -https://www.oceanexpert.org/institution/22116 -https://www.oceanexpert.org/expert/24085 -https://www.oceanexpert.org/expert/13784 -https://www.oceanexpert.org/expert/13066 -https://www.oceanexpert.org/expert/27899 -https://www.oceanexpert.org/expert/37378 -https://www.oceanexpert.org/expert/34317 -https://www.oceanexpert.org/expert/38726 -https://www.oceanexpert.org/expert/46839 -https://www.oceanexpert.org/expert/20034 -https://www.oceanexpert.org/expert/31657 -https://www.oceanexpert.org/event/834 -https://www.oceanexpert.org/institution/18854 -https://www.oceanexpert.org/expert/27320 -https://www.oceanexpert.org/expert/47204 -https://www.oceanexpert.org/institution/16822 -https://www.oceanexpert.org/expert/19489 -https://www.oceanexpert.org/expert/24145 -https://www.oceanexpert.org/expert/18834 -https://www.oceanexpert.org/expert/46634 -https://www.oceanexpert.org/institution/19798 -https://www.oceanexpert.org/expert/48737 -https://www.oceanexpert.org/expert/32199 -https://www.oceanexpert.org/institution/19401 -https://www.oceanexpert.org/expert/27871 -https://www.oceanexpert.org/expert/22135 -https://www.oceanexpert.org/expert/40280 -https://www.oceanexpert.org/expert/25781 -https://www.oceanexpert.org/event/2112 -https://www.oceanexpert.org/expert/18010 -https://www.oceanexpert.org/expert/23903 -https://www.oceanexpert.org/expert/48845 -https://www.oceanexpert.org/institution/18620 -https://www.oceanexpert.org/institution/17002 -https://www.oceanexpert.org/institution/11494 -https://www.oceanexpert.org/expert/13499 -https://www.oceanexpert.org/institution/18357 -https://www.oceanexpert.org/institution/15184 -https://www.oceanexpert.org/expert/47763 -https://www.oceanexpert.org/event/2865 -https://www.oceanexpert.org/institution/15363 -https://www.oceanexpert.org/expert/21752 -https://www.oceanexpert.org/expert/25938 -https://www.oceanexpert.org/event/3050 -https://www.oceanexpert.org/expert/22272 -https://www.oceanexpert.org/expert/37039 -https://www.oceanexpert.org/institution/19540 -https://www.oceanexpert.org/institution/9491 -https://www.oceanexpert.org/expert/29879 -https://www.oceanexpert.org/institution/18927 -https://www.oceanexpert.org/event/2849 -https://www.oceanexpert.org/expert/39597 -https://www.oceanexpert.org/expert/13141 -https://www.oceanexpert.org/expert/48148 -https://www.oceanexpert.org/expert/31872 -https://www.oceanexpert.org/event/2164 -https://www.oceanexpert.org/institution/10902 -https://www.oceanexpert.org/expert/32343 -https://www.oceanexpert.org/expert/48153 -https://www.oceanexpert.org/expert/46199 -https://www.oceanexpert.org/expert/44481 -https://www.oceanexpert.org/expert/47390 -https://www.oceanexpert.org/expert/10383 -https://www.oceanexpert.org/expert/43370 -https://www.oceanexpert.org/expert/39618 -https://www.oceanexpert.org/expert/43898 -https://www.oceanexpert.org/event/3082 -https://www.oceanexpert.org/institution/18446 -https://www.oceanexpert.org/expert/37543 -https://www.oceanexpert.org/expert/28495 -https://www.oceanexpert.org/expert/46641 -https://www.oceanexpert.org/expert/16055 -https://www.oceanexpert.org/expert/33398 -https://www.oceanexpert.org/event/1044 -https://www.oceanexpert.org/institution/17574 -https://www.oceanexpert.org/expert/27322 -https://www.oceanexpert.org/institution/22048 -https://www.oceanexpert.org/institution/9202 -https://www.oceanexpert.org/institution/19005 -https://www.oceanexpert.org/expert/36774 -https://www.oceanexpert.org/expert/35200 -https://www.oceanexpert.org/expert/32648 -https://www.oceanexpert.org/expert/10675 -https://www.oceanexpert.org/expert/41992 -https://www.oceanexpert.org/institution/13794 -https://www.oceanexpert.org/institution/20736 -https://www.oceanexpert.org/event/2822 -https://www.oceanexpert.org/institution/19206 -https://www.oceanexpert.org/expert/25439 -https://www.oceanexpert.org/expert/36589 -https://www.oceanexpert.org/expert/20500 -https://www.oceanexpert.org/expert/22816 -https://www.oceanexpert.org/institution/11579 -https://www.oceanexpert.org/expert/19011 -https://www.oceanexpert.org/expert/47039 -https://www.oceanexpert.org/expert/47998 -https://www.oceanexpert.org/expert/36323 -https://www.oceanexpert.org/institution/6537 -https://www.oceanexpert.org/institution/21186 -https://www.oceanexpert.org/expert/32520 -https://www.oceanexpert.org/expert/19518 -https://www.oceanexpert.org/expert/24965 -https://www.oceanexpert.org/expert/25491 -https://www.oceanexpert.org/expert/43064 -https://www.oceanexpert.org/institution/13100 -https://www.oceanexpert.org/institution/9596 -https://www.oceanexpert.org/institution/5529 -https://www.oceanexpert.org/event/954 -https://www.oceanexpert.org/expert/19242 -https://www.oceanexpert.org/expert/45795 -https://www.oceanexpert.org/expert/15693 -https://www.oceanexpert.org/institution/21864 -https://www.oceanexpert.org/expert/41105 -https://www.oceanexpert.org/expert/38219 -https://www.oceanexpert.org/institution/20356 -https://www.oceanexpert.org/institution/12369 -https://www.oceanexpert.org/expert/27601 -https://www.oceanexpert.org/institution/16179 -https://www.oceanexpert.org/expert/699 -https://www.oceanexpert.org/expert/43722 -https://www.oceanexpert.org/expert/20899 -https://www.oceanexpert.org/institution/12269 -https://www.oceanexpert.org/expert/37104 -https://www.oceanexpert.org/expert/8858 -https://www.oceanexpert.org/event/2748 -https://www.oceanexpert.org/expert/13804 -https://www.oceanexpert.org/institution/19012 -https://www.oceanexpert.org/institution/19470 -https://www.oceanexpert.org/institution/12034 -https://www.oceanexpert.org/expert/43426 -https://www.oceanexpert.org/expert/32807 -https://www.oceanexpert.org/event/2227 -https://www.oceanexpert.org/expert/17042 -https://www.oceanexpert.org/expert/42990 -https://www.oceanexpert.org/institution/17828 -https://www.oceanexpert.org/expert/14780 -https://www.oceanexpert.org/institution/17931 -https://www.oceanexpert.org/expert/48421 -https://www.oceanexpert.org/expert/29126 -https://www.oceanexpert.org/institution/18004 -https://www.oceanexpert.org/event/1279 -https://www.oceanexpert.org/expert/26177 -https://www.oceanexpert.org/institution/13969 -https://www.oceanexpert.org/expert/23057 -https://www.oceanexpert.org/expert/28956 -https://www.oceanexpert.org/institution/7592 -https://www.oceanexpert.org/event/2365 -https://www.oceanexpert.org/institution/16867 -https://www.oceanexpert.org/expert/22936 -https://www.oceanexpert.org/expert/36396 -https://www.oceanexpert.org/expert/23161 -https://www.oceanexpert.org/expert/2406 -https://www.oceanexpert.org/expert/35315 -https://www.oceanexpert.org/expert/13533 -https://www.oceanexpert.org/institution/19823 -https://www.oceanexpert.org/event/2830 -https://www.oceanexpert.org/event/1331 -https://www.oceanexpert.org/expert/13312 -https://www.oceanexpert.org/expert/41610 -https://www.oceanexpert.org/expert/16608 -https://www.oceanexpert.org/institution/19394 -https://www.oceanexpert.org/expert/32190 -https://www.oceanexpert.org/expert/48234 -https://www.oceanexpert.org/expert/26472 -https://www.oceanexpert.org/expert/15899 -https://www.oceanexpert.org/expert/26606 -https://www.oceanexpert.org/institution/19553 -https://www.oceanexpert.org/institution/19517 -https://www.oceanexpert.org/institution/20465 -https://www.oceanexpert.org/expert/25437 -https://www.oceanexpert.org/expert/30017 -https://www.oceanexpert.org/expert/44117 -https://www.oceanexpert.org/institution/11705 -https://www.oceanexpert.org/institution/21789 -https://www.oceanexpert.org/expert/15430 -https://www.oceanexpert.org/expert/46442 -https://www.oceanexpert.org/expert/45815 -https://www.oceanexpert.org/expert/22751 -https://www.oceanexpert.org/expert/11138 -https://www.oceanexpert.org/institution/17729 -https://www.oceanexpert.org/institution/20070 -https://www.oceanexpert.org/expert/24099 -https://www.oceanexpert.org/expert/18060 -https://www.oceanexpert.org/expert/18341 -https://www.oceanexpert.org/expert/32866 -https://www.oceanexpert.org/expert/21553 -https://www.oceanexpert.org/expert/14734 -https://www.oceanexpert.org/expert/18563 -https://www.oceanexpert.org/expert/17176 -https://www.oceanexpert.org/institution/18367 -https://www.oceanexpert.org/expert/22852 -https://www.oceanexpert.org/expert/36834 -https://www.oceanexpert.org/expert/14391 -https://www.oceanexpert.org/expert/46671 -https://www.oceanexpert.org/expert/14072 -https://www.oceanexpert.org/expert/46289 -https://www.oceanexpert.org/expert/17284 -https://www.oceanexpert.org/expert/35339 -https://www.oceanexpert.org/event/369 -https://www.oceanexpert.org/expert/22221 -https://www.oceanexpert.org/event/2636 -https://www.oceanexpert.org/expert/18526 -https://www.oceanexpert.org/expert/28223 -https://www.oceanexpert.org/institution/13270 -https://www.oceanexpert.org/expert/26431 -https://www.oceanexpert.org/expert/17993 -https://www.oceanexpert.org/expert/21186 -https://www.oceanexpert.org/expert/17767 -https://www.oceanexpert.org/event/2101 -https://www.oceanexpert.org/institution/19011 -https://www.oceanexpert.org/expert/11071 -https://www.oceanexpert.org/expert/36720 -https://www.oceanexpert.org/expert/30451 -https://www.oceanexpert.org/expert/36304 -https://www.oceanexpert.org/expert/14763 -https://www.oceanexpert.org/expert/13324 -https://www.oceanexpert.org/institution/20902 -https://www.oceanexpert.org/expert/5593 -https://www.oceanexpert.org/expert/42863 -https://www.oceanexpert.org/expert/29367 -https://www.oceanexpert.org/expert/14483 -https://www.oceanexpert.org/expert/47545 -https://www.oceanexpert.org/expert/37300 -https://www.oceanexpert.org/expert/37596 -https://www.oceanexpert.org/expert/25470 -https://www.oceanexpert.org/institution/13485 -https://www.oceanexpert.org/expert/20019 -https://www.oceanexpert.org/institution/15926 -https://www.oceanexpert.org/expert/38619 -https://www.oceanexpert.org/institution/14119 -https://www.oceanexpert.org/institution/20800 -https://www.oceanexpert.org/expert/11495 -https://www.oceanexpert.org/expert/19409 -https://www.oceanexpert.org/institution/18704 -https://www.oceanexpert.org/expert/48165 -https://www.oceanexpert.org/expert/20444 -https://www.oceanexpert.org/expert/48542 -https://www.oceanexpert.org/expert/44144 -https://www.oceanexpert.org/event/2735 -https://www.oceanexpert.org/expert/11326 -https://www.oceanexpert.org/institution/20282 -https://www.oceanexpert.org/event/796 -https://www.oceanexpert.org/institution/21526 -https://www.oceanexpert.org/expert/34102 -https://www.oceanexpert.org/institution/21526 -https://www.oceanexpert.org/expert/16058 -https://www.oceanexpert.org/expert/38031 -https://www.oceanexpert.org/expert/26966 -https://www.oceanexpert.org/expert/2646 -https://www.oceanexpert.org/expert/9047 -https://www.oceanexpert.org/expert/23433 -https://www.oceanexpert.org/expert/30033 -https://www.oceanexpert.org/expert/161 -https://www.oceanexpert.org/expert/9160 -https://www.oceanexpert.org/institution/19301 -https://www.oceanexpert.org/expert/35964 -https://www.oceanexpert.org/event/2014 -https://www.oceanexpert.org/expert/13569 -https://www.oceanexpert.org/expert/4121 -https://www.oceanexpert.org/expert/25903 -https://www.oceanexpert.org/expert/12330 -https://www.oceanexpert.org/expert/17180 -https://www.oceanexpert.org/expert/13166 -https://www.oceanexpert.org/institution/18659 -https://www.oceanexpert.org/expert/15472 -https://www.oceanexpert.org/expert/25050 -https://www.oceanexpert.org/expert/46122 -https://www.oceanexpert.org/expert/13554 -https://www.oceanexpert.org/institution/15794 -https://www.oceanexpert.org/event/2763 -https://www.oceanexpert.org/expert/37642 -https://www.oceanexpert.org/expert/35284 -https://www.oceanexpert.org/expert/45766 -https://www.oceanexpert.org/institution/11470 -https://www.oceanexpert.org/institution/20271 -https://www.oceanexpert.org/institution/19372 -https://www.oceanexpert.org/institution/22009 -https://www.oceanexpert.org/expert/16619 -https://www.oceanexpert.org/expert/31445 -https://www.oceanexpert.org/expert/34905 -https://www.oceanexpert.org/expert/48643 -https://www.oceanexpert.org/expert/43960 -https://www.oceanexpert.org/expert/16432 -https://www.oceanexpert.org/expert/40561 -https://www.oceanexpert.org/institution/16139 -https://www.oceanexpert.org/expert/42404 -https://www.oceanexpert.org/expert/35714 -https://www.oceanexpert.org/expert/31457 -https://www.oceanexpert.org/expert/27474 -https://www.oceanexpert.org/event/3170 -https://www.oceanexpert.org/institution/10143 -https://www.oceanexpert.org/expert/21219 -https://www.oceanexpert.org/expert/7009 -https://www.oceanexpert.org/expert/32172 -https://www.oceanexpert.org/expert/45728 -https://www.oceanexpert.org/event/1790 -https://www.oceanexpert.org/expert/36457 -https://www.oceanexpert.org/expert/20131 -https://www.oceanexpert.org/expert/12227 -https://www.oceanexpert.org/event/1944 -https://www.oceanexpert.org/expert/18717 -https://www.oceanexpert.org/expert/24145 -https://www.oceanexpert.org/institution/11843 -https://www.oceanexpert.org/expert/20522 -https://www.oceanexpert.org/expert/11559 -https://www.oceanexpert.org/expert/32528 -https://www.oceanexpert.org/event/2123 -https://www.oceanexpert.org/expert/2929 -https://www.oceanexpert.org/institution/6149 -https://www.oceanexpert.org/expert/42353 -https://www.oceanexpert.org/expert/22571 -https://www.oceanexpert.org/expert/44499 -https://www.oceanexpert.org/institution/10281 -https://www.oceanexpert.org/expert/39224 -https://www.oceanexpert.org/expert/45176 -https://www.oceanexpert.org/expert/27163 -https://www.oceanexpert.org/expert/38288 -https://www.oceanexpert.org/event/1171 -https://www.oceanexpert.org/expert/43791 -https://www.oceanexpert.org/expert/26635 -https://www.oceanexpert.org/expert/20281 -https://www.oceanexpert.org/expert/39632 -https://www.oceanexpert.org/expert/36533 -https://www.oceanexpert.org/expert/29507 -https://www.oceanexpert.org/expert/16845 -https://www.oceanexpert.org/expert/35334 -https://www.oceanexpert.org/expert/48791 -https://www.oceanexpert.org/expert/23975 -https://www.oceanexpert.org/institution/19255 -https://www.oceanexpert.org/expert/29494 -https://www.oceanexpert.org/institution/16309 -https://www.oceanexpert.org/institution/18738 -https://www.oceanexpert.org/expert/43477 -https://www.oceanexpert.org/expert/32555 -https://www.oceanexpert.org/expert/17586 -https://www.oceanexpert.org/expert/18341 -https://www.oceanexpert.org/institution/22010 -https://www.oceanexpert.org/expert/26936 -https://www.oceanexpert.org/expert/17651 -https://www.oceanexpert.org/expert/34045 -https://www.oceanexpert.org/expert/30249 -https://www.oceanexpert.org/expert/18479 -https://www.oceanexpert.org/institution/18045 -https://www.oceanexpert.org/expert/44551 -https://www.oceanexpert.org/expert/26854 -https://www.oceanexpert.org/institution/20271 -https://www.oceanexpert.org/institution/22008 -https://www.oceanexpert.org/event/1864 -https://www.oceanexpert.org/expert/34051 -https://www.oceanexpert.org/expert/46784 -https://www.oceanexpert.org/expert/30107 -https://www.oceanexpert.org/institution/17780 -https://www.oceanexpert.org/expert/24572 -https://www.oceanexpert.org/expert/23618 -https://www.oceanexpert.org/expert/21612 -https://www.oceanexpert.org/institution/9277 -https://www.oceanexpert.org/institution/11007 -https://www.oceanexpert.org/institution/11430 -https://www.oceanexpert.org/expert/6791 -https://www.oceanexpert.org/expert/31706 -https://www.oceanexpert.org/institution/18627 -https://www.oceanexpert.org/expert/26406 -https://www.oceanexpert.org/expert/22255 -https://www.oceanexpert.org/expert/7904 -https://www.oceanexpert.org/expert/45087 -https://www.oceanexpert.org/institution/19102 -https://www.oceanexpert.org/expert/17298 -https://www.oceanexpert.org/expert/46581 -https://www.oceanexpert.org/expert/7106 -https://www.oceanexpert.org/expert/19080 -https://www.oceanexpert.org/expert/40538 -https://www.oceanexpert.org/expert/24499 -https://www.oceanexpert.org/expert/22131 -https://www.oceanexpert.org/institution/9310 -https://www.oceanexpert.org/expert/8574 -https://www.oceanexpert.org/expert/38183 -https://www.oceanexpert.org/expert/26179 -https://www.oceanexpert.org/expert/42443 -https://www.oceanexpert.org/event/1709 -https://www.oceanexpert.org/institution/14115 -https://www.oceanexpert.org/expert/26617 -https://www.oceanexpert.org/expert/20086 -https://www.oceanexpert.org/institution/14352 -https://www.oceanexpert.org/expert/19554 -https://www.oceanexpert.org/event/2021 -https://www.oceanexpert.org/event/1816 -https://www.oceanexpert.org/expert/38164 -https://www.oceanexpert.org/institution/18704 -https://www.oceanexpert.org/expert/45382 -https://www.oceanexpert.org/institution/10954 -https://www.oceanexpert.org/expert/48956 -https://www.oceanexpert.org/expert/18730 -https://www.oceanexpert.org/event/2971 -https://www.oceanexpert.org/expert/2860 -https://www.oceanexpert.org/institution/18711 -https://www.oceanexpert.org/expert/43249 -https://www.oceanexpert.org/expert/26119 -https://www.oceanexpert.org/event/744 -https://www.oceanexpert.org/event/2336 -https://www.oceanexpert.org/expert/24188 -https://www.oceanexpert.org/expert/43311 -https://www.oceanexpert.org/expert/32466 -https://www.oceanexpert.org/expert/35902 -https://www.oceanexpert.org/event/1977 -https://www.oceanexpert.org/expert/27514 -https://www.oceanexpert.org/expert/47870 -https://www.oceanexpert.org/institution/16012 -https://www.oceanexpert.org/expert/44942 -https://www.oceanexpert.org/expert/7193 -https://www.oceanexpert.org/expert/46413 -https://www.oceanexpert.org/expert/32395 -https://www.oceanexpert.org/expert/44883 -https://www.oceanexpert.org/expert/25303 -https://www.oceanexpert.org/event/188 -https://www.oceanexpert.org/expert/1212 -https://www.oceanexpert.org/institution/20440 -https://www.oceanexpert.org/expert/38487 -https://www.oceanexpert.org/expert/22433 -https://www.oceanexpert.org/institution/17731 -https://www.oceanexpert.org/expert/45294 -https://www.oceanexpert.org/expert/32534 -https://www.oceanexpert.org/expert/4401 -https://www.oceanexpert.org/institution/11312 -https://www.oceanexpert.org/expert/46551 -https://www.oceanexpert.org/expert/44117 -https://www.oceanexpert.org/expert/33131 -https://www.oceanexpert.org/expert/30557 -https://www.oceanexpert.org/expert/47186 -https://www.oceanexpert.org/expert/26148 -https://www.oceanexpert.org/expert/20330 -https://www.oceanexpert.org/institution/10655 -https://www.oceanexpert.org/expert/22841 -https://www.oceanexpert.org/expert/659 -https://www.oceanexpert.org/institution/18131 -https://www.oceanexpert.org/expert/35777 -https://www.oceanexpert.org/expert/26316 -https://www.oceanexpert.org/expert/21094 -https://www.oceanexpert.org/institution/11573 -https://www.oceanexpert.org/expert/11273 -https://www.oceanexpert.org/expert/46697 -https://www.oceanexpert.org/expert/39555 -https://www.oceanexpert.org/institution/17150 -https://www.oceanexpert.org/expert/43898 -https://www.oceanexpert.org/institution/19080 -https://www.oceanexpert.org/expert/30645 -https://www.oceanexpert.org/expert/28571 -https://www.oceanexpert.org/expert/21861 -https://www.oceanexpert.org/expert/17067 -https://www.oceanexpert.org/institution/8886 -https://www.oceanexpert.org/expert/43761 -https://www.oceanexpert.org/institution/19513 -https://www.oceanexpert.org/institution/19575 -https://www.oceanexpert.org/institution/18096 -https://www.oceanexpert.org/expert/22464 -https://www.oceanexpert.org/event/1767 -https://www.oceanexpert.org/expert/47306 -https://www.oceanexpert.org/expert/34651 -https://www.oceanexpert.org/institution/11095 -https://www.oceanexpert.org/expert/46324 -https://www.oceanexpert.org/expert/43417 -https://www.oceanexpert.org/institution/21518 -https://www.oceanexpert.org/expert/17070 -https://www.oceanexpert.org/expert/40644 -https://www.oceanexpert.org/expert/36167 -https://www.oceanexpert.org/expert/18876 -https://www.oceanexpert.org/expert/43512 -https://www.oceanexpert.org/expert/45367 -https://www.oceanexpert.org/expert/7184 -https://www.oceanexpert.org/expert/30445 -https://www.oceanexpert.org/event/246 -https://www.oceanexpert.org/institution/20751 -https://www.oceanexpert.org/expert/22078 -https://www.oceanexpert.org/expert/20214 -https://www.oceanexpert.org/expert/25578 -https://www.oceanexpert.org/expert/17776 -https://www.oceanexpert.org/expert/30019 -https://www.oceanexpert.org/expert/13614 -https://www.oceanexpert.org/expert/34128 -https://www.oceanexpert.org/institution/19835 -https://www.oceanexpert.org/expert/24220 -https://www.oceanexpert.org/expert/27535 -https://www.oceanexpert.org/expert/27665 -https://www.oceanexpert.org/expert/24511 -https://www.oceanexpert.org/expert/23950 -https://www.oceanexpert.org/institution/17225 -https://www.oceanexpert.org/expert/15545 -https://www.oceanexpert.org/event/3118 -https://www.oceanexpert.org/event/1303 -https://www.oceanexpert.org/expert/46231 -https://www.oceanexpert.org/expert/33197 -https://www.oceanexpert.org/institution/17098 -https://www.oceanexpert.org/expert/18208 -https://www.oceanexpert.org/institution/21345 -https://www.oceanexpert.org/institution/18737 -https://www.oceanexpert.org/institution/18984 -https://www.oceanexpert.org/institution/21582 -https://www.oceanexpert.org/expert/24293 -https://www.oceanexpert.org/institution/9737 -https://www.oceanexpert.org/expert/41909 -https://www.oceanexpert.org/expert/42561 -https://www.oceanexpert.org/expert/21470 -https://www.oceanexpert.org/institution/6903 -https://www.oceanexpert.org/expert/15299 -https://www.oceanexpert.org/expert/24722 -https://www.oceanexpert.org/event/638 -https://www.oceanexpert.org/expert/35143 -https://www.oceanexpert.org/institution/21363 -https://www.oceanexpert.org/institution/17603 -https://www.oceanexpert.org/expert/3243 -https://www.oceanexpert.org/expert/24939 -https://www.oceanexpert.org/expert/26861 -https://www.oceanexpert.org/institution/20262 -https://www.oceanexpert.org/expert/26575 -https://www.oceanexpert.org/institution/13156 -https://www.oceanexpert.org/expert/48261 -https://www.oceanexpert.org/expert/11224 -https://www.oceanexpert.org/expert/14311 -https://www.oceanexpert.org/expert/26814 -https://www.oceanexpert.org/institution/12787 -https://www.oceanexpert.org/expert/44246 -https://www.oceanexpert.org/event/2889 -https://www.oceanexpert.org/institution/17902 -https://www.oceanexpert.org/expert/25090 -https://www.oceanexpert.org/event/1739 -https://www.oceanexpert.org/expert/27076 -https://www.oceanexpert.org/expert/32507 -https://www.oceanexpert.org/expert/17176 -https://www.oceanexpert.org/expert/17712 -https://www.oceanexpert.org/expert/22444 -https://www.oceanexpert.org/institution/17765 -https://www.oceanexpert.org/expert/36009 -https://www.oceanexpert.org/expert/22407 -https://www.oceanexpert.org/expert/45231 -https://www.oceanexpert.org/event/2870 -https://www.oceanexpert.org/expert/26476 -https://www.oceanexpert.org/expert/29021 -https://www.oceanexpert.org/institution/21108 -https://www.oceanexpert.org/expert/21512 -https://www.oceanexpert.org/institution/21239 -https://www.oceanexpert.org/expert/39318 -https://www.oceanexpert.org/expert/30668 -https://www.oceanexpert.org/expert/31225 -https://www.oceanexpert.org/expert/21949 -https://www.oceanexpert.org/expert/26278 -https://www.oceanexpert.org/institution/18108 -https://www.oceanexpert.org/expert/11415 -https://www.oceanexpert.org/event/863 -https://www.oceanexpert.org/expert/24341 -https://www.oceanexpert.org/institution/10904 -https://www.oceanexpert.org/expert/24433 -https://www.oceanexpert.org/event/3122 -https://www.oceanexpert.org/expert/15539 -https://www.oceanexpert.org/event/811 -https://www.oceanexpert.org/institution/12097 -https://www.oceanexpert.org/expert/42780 -https://www.oceanexpert.org/expert/24935 -https://www.oceanexpert.org/expert/45399 -https://www.oceanexpert.org/expert/23959 -https://www.oceanexpert.org/institution/16472 -https://www.oceanexpert.org/expert/30032 -https://www.oceanexpert.org/institution/11762 -https://www.oceanexpert.org/expert/18631 -https://www.oceanexpert.org/expert/26760 -https://www.oceanexpert.org/institution/18488 -https://www.oceanexpert.org/expert/7271 -https://www.oceanexpert.org/expert/36433 -https://www.oceanexpert.org/expert/35135 -https://www.oceanexpert.org/expert/7768 -https://www.oceanexpert.org/institution/18769 -https://www.oceanexpert.org/event/2608 -https://www.oceanexpert.org/event/1320 -https://www.oceanexpert.org/institution/5534 -https://www.oceanexpert.org/expert/37029 -https://www.oceanexpert.org/expert/26005 -https://www.oceanexpert.org/institution/7485 -https://www.oceanexpert.org/expert/43006 -https://www.oceanexpert.org/event/1886 -https://www.oceanexpert.org/expert/44554 -https://www.oceanexpert.org/expert/25660 -https://www.oceanexpert.org/expert/17618 -https://www.oceanexpert.org/expert/26277 -https://www.oceanexpert.org/expert/34700 -https://www.oceanexpert.org/expert/43964 -https://www.oceanexpert.org/expert/20842 -https://www.oceanexpert.org/expert/25971 -https://www.oceanexpert.org/expert/43285 -https://www.oceanexpert.org/expert/38451 -https://www.oceanexpert.org/expert/47253 -https://www.oceanexpert.org/institution/12515 -https://www.oceanexpert.org/expert/10808 -https://www.oceanexpert.org/expert/112 -https://www.oceanexpert.org/expert/45469 -https://www.oceanexpert.org/expert/26758 -https://www.oceanexpert.org/institution/8785 -https://www.oceanexpert.org/expert/17501 -https://www.oceanexpert.org/expert/21018 -https://www.oceanexpert.org/institution/20492 -https://www.oceanexpert.org/expert/47978 -https://www.oceanexpert.org/expert/32325 -https://www.oceanexpert.org/expert/34103 -https://www.oceanexpert.org/expert/30234 -https://www.oceanexpert.org/institution/20236 -https://www.oceanexpert.org/expert/11631 -https://www.oceanexpert.org/event/432 -https://www.oceanexpert.org/expert/48270 -https://www.oceanexpert.org/institution/19733 -https://www.oceanexpert.org/expert/45646 -https://www.oceanexpert.org/expert/44290 -https://www.oceanexpert.org/event/1939 -https://www.oceanexpert.org/institution/19019 -https://www.oceanexpert.org/institution/19674 -https://www.oceanexpert.org/expert/20796 -https://www.oceanexpert.org/expert/27343 -https://www.oceanexpert.org/expert/13788 -https://www.oceanexpert.org/event/582 -https://www.oceanexpert.org/expert/40620 -https://www.oceanexpert.org/expert/35009 -https://www.oceanexpert.org/expert/21781 -https://www.oceanexpert.org/expert/47566 -https://www.oceanexpert.org/expert/11903 -https://www.oceanexpert.org/expert/6660 -https://www.oceanexpert.org/expert/38307 -https://www.oceanexpert.org/institution/14142 -https://www.oceanexpert.org/expert/39638 -https://www.oceanexpert.org/expert/29125 -https://www.oceanexpert.org/expert/45779 -https://www.oceanexpert.org/institution/20188 -https://www.oceanexpert.org/expert/650 -https://www.oceanexpert.org/institution/15030 -https://www.oceanexpert.org/expert/43141 -https://www.oceanexpert.org/institution/16365 -https://www.oceanexpert.org/expert/21762 -https://www.oceanexpert.org/event/484 -https://www.oceanexpert.org/expert/43007 -https://www.oceanexpert.org/expert/32608 -https://www.oceanexpert.org/institution/21256 -https://www.oceanexpert.org/expert/32180 -https://www.oceanexpert.org/institution/7095 -https://www.oceanexpert.org/expert/15800 -https://www.oceanexpert.org/expert/32704 -https://www.oceanexpert.org/expert/19166 -https://www.oceanexpert.org/expert/24137 -https://www.oceanexpert.org/expert/25754 -https://www.oceanexpert.org/event/1689 -https://www.oceanexpert.org/institution/11293 -https://www.oceanexpert.org/institution/19495 -https://www.oceanexpert.org/expert/19685 -https://www.oceanexpert.org/expert/28787 -https://www.oceanexpert.org/expert/4098 -https://www.oceanexpert.org/expert/18592 -https://www.oceanexpert.org/event/2269 -https://www.oceanexpert.org/expert/33567 -https://www.oceanexpert.org/expert/18337 -https://www.oceanexpert.org/institution/21829 -https://www.oceanexpert.org/institution/22028 -https://www.oceanexpert.org/expert/44683 -https://www.oceanexpert.org/expert/27981 -https://www.oceanexpert.org/expert/19372 -https://www.oceanexpert.org/expert/18388 -https://www.oceanexpert.org/expert/21897 -https://www.oceanexpert.org/institution/20216 -https://www.oceanexpert.org/expert/37980 -https://www.oceanexpert.org/event/1722 -https://www.oceanexpert.org/institution/17576 -https://www.oceanexpert.org/expert/26653 -https://www.oceanexpert.org/institution/12720 -https://www.oceanexpert.org/institution/18527 -https://www.oceanexpert.org/expert/11957 -https://www.oceanexpert.org/institution/21445 -https://www.oceanexpert.org/event/2374 -https://www.oceanexpert.org/expert/16653 -https://www.oceanexpert.org/institution/10160 -https://www.oceanexpert.org/institution/21999 -https://www.oceanexpert.org/institution/16256 -https://www.oceanexpert.org/event/1228 -https://www.oceanexpert.org/event/1568 -https://www.oceanexpert.org/institution/12603 -https://www.oceanexpert.org/expert/43110 -https://www.oceanexpert.org/expert/27725 -https://www.oceanexpert.org/expert/33376 -https://www.oceanexpert.org/institution/20815 -https://www.oceanexpert.org/expert/21730 -https://www.oceanexpert.org/expert/23010 -https://www.oceanexpert.org/expert/24627 -https://www.oceanexpert.org/expert/22399 -https://www.oceanexpert.org/expert/40004 -https://www.oceanexpert.org/expert/45997 -https://www.oceanexpert.org/expert/35701 -https://www.oceanexpert.org/expert/37537 -https://www.oceanexpert.org/expert/16926 -https://www.oceanexpert.org/institution/18254 -https://www.oceanexpert.org/expert/22235 -https://www.oceanexpert.org/institution/11195 -https://www.oceanexpert.org/expert/13593 -https://www.oceanexpert.org/event/2768 -https://www.oceanexpert.org/expert/43712 -https://www.oceanexpert.org/event/3101 -https://www.oceanexpert.org/expert/836 -https://www.oceanexpert.org/expert/32364 -https://www.oceanexpert.org/expert/18502 -https://www.oceanexpert.org/expert/48814 -https://www.oceanexpert.org/event/2467 -https://www.oceanexpert.org/expert/3178 -https://www.oceanexpert.org/expert/8650 -https://www.oceanexpert.org/expert/17227 -https://www.oceanexpert.org/expert/34485 -https://www.oceanexpert.org/institution/10756 -https://www.oceanexpert.org/expert/23613 -https://www.oceanexpert.org/expert/34755 -https://www.oceanexpert.org/institution/20279 -https://www.oceanexpert.org/event/276 -https://www.oceanexpert.org/institution/11738 -https://www.oceanexpert.org/expert/19745 -https://www.oceanexpert.org/expert/26965 -https://www.oceanexpert.org/expert/20980 -https://www.oceanexpert.org/expert/21031 -https://www.oceanexpert.org/institution/15568 -https://www.oceanexpert.org/expert/36847 -https://www.oceanexpert.org/expert/36193 -https://www.oceanexpert.org/expert/4369 -https://www.oceanexpert.org/expert/29598 -https://www.oceanexpert.org/institution/16397 -https://www.oceanexpert.org/expert/6810 -https://www.oceanexpert.org/expert/49038 -https://www.oceanexpert.org/institution/18206 -https://www.oceanexpert.org/expert/38692 -https://www.oceanexpert.org/event/1527 -https://www.oceanexpert.org/expert/12246 -https://www.oceanexpert.org/expert/19908 -https://www.oceanexpert.org/expert/27116 -https://www.oceanexpert.org/institution/20196 -https://www.oceanexpert.org/expert/37929 -https://www.oceanexpert.org/event/3022 -https://www.oceanexpert.org/event/2534 -https://www.oceanexpert.org/expert/47879 -https://www.oceanexpert.org/expert/32019 -https://www.oceanexpert.org/institution/7991 -https://www.oceanexpert.org/institution/13084 -https://www.oceanexpert.org/expert/42594 -https://www.oceanexpert.org/expert/19264 -https://www.oceanexpert.org/institution/12671 -https://www.oceanexpert.org/expert/48372 -https://www.oceanexpert.org/expert/36366 -https://www.oceanexpert.org/event/169 -https://www.oceanexpert.org/expert/44729 -https://www.oceanexpert.org/expert/28931 -https://www.oceanexpert.org/expert/35691 -https://www.oceanexpert.org/expert/43955 -https://www.oceanexpert.org/institution/17814 -https://www.oceanexpert.org/event/940 -https://www.oceanexpert.org/institution/5909 -https://www.oceanexpert.org/event/1574 -https://www.oceanexpert.org/expert/42535 -https://www.oceanexpert.org/expert/235 -https://www.oceanexpert.org/expert/20704 -https://www.oceanexpert.org/institution/21405 -https://www.oceanexpert.org/expert/30453 -https://www.oceanexpert.org/expert/39290 -https://www.oceanexpert.org/expert/21849 -https://www.oceanexpert.org/expert/30308 -https://www.oceanexpert.org/expert/22726 -https://www.oceanexpert.org/expert/17558 -https://www.oceanexpert.org/event/2955 -https://www.oceanexpert.org/institution/18041 -https://www.oceanexpert.org/expert/12644 -https://www.oceanexpert.org/expert/36553 -https://www.oceanexpert.org/expert/26794 -https://www.oceanexpert.org/event/2692 -https://www.oceanexpert.org/expert/17938 -https://www.oceanexpert.org/expert/27383 -https://www.oceanexpert.org/event/2215 -https://www.oceanexpert.org/event/374 -https://www.oceanexpert.org/expert/24417 -https://www.oceanexpert.org/expert/18985 -https://www.oceanexpert.org/expert/4232 -https://www.oceanexpert.org/expert/8009 -https://www.oceanexpert.org/institution/15976 -https://www.oceanexpert.org/expert/19102 -https://www.oceanexpert.org/institution/21005 -https://www.oceanexpert.org/expert/20260 -https://www.oceanexpert.org/expert/20336 -https://www.oceanexpert.org/expert/46358 -https://www.oceanexpert.org/institution/16683 -https://www.oceanexpert.org/institution/14096 -https://www.oceanexpert.org/institution/20497 -https://www.oceanexpert.org/expert/36654 -https://www.oceanexpert.org/expert/24725 -https://www.oceanexpert.org/expert/42693 -https://www.oceanexpert.org/expert/24997 -https://www.oceanexpert.org/expert/8733 -https://www.oceanexpert.org/expert/43872 -https://www.oceanexpert.org/expert/5510 -https://www.oceanexpert.org/expert/37380 -https://www.oceanexpert.org/expert/21132 -https://www.oceanexpert.org/institution/11558 -https://www.oceanexpert.org/expert/45325 -https://www.oceanexpert.org/institution/20305 -https://www.oceanexpert.org/institution/8942 -https://www.oceanexpert.org/expert/20444 -https://www.oceanexpert.org/expert/40085 -https://www.oceanexpert.org/expert/29918 -https://www.oceanexpert.org/expert/4410 -https://www.oceanexpert.org/expert/27486 -https://www.oceanexpert.org/expert/26694 -https://www.oceanexpert.org/expert/23264 -https://www.oceanexpert.org/expert/36535 -https://www.oceanexpert.org/expert/25147 -https://www.oceanexpert.org/expert/31726 -https://www.oceanexpert.org/institution/20078 -https://www.oceanexpert.org/expert/11993 -https://www.oceanexpert.org/expert/44705 -https://www.oceanexpert.org/expert/31205 -https://www.oceanexpert.org/event/1442 -https://www.oceanexpert.org/expert/26573 -https://www.oceanexpert.org/expert/21061 -https://www.oceanexpert.org/expert/34965 -https://www.oceanexpert.org/institution/21726 -https://www.oceanexpert.org/expert/33481 -https://www.oceanexpert.org/expert/26484 -https://www.oceanexpert.org/expert/41924 -https://www.oceanexpert.org/expert/35527 -https://www.oceanexpert.org/institution/16736 -https://www.oceanexpert.org/event/1078 -https://www.oceanexpert.org/expert/47565 -https://www.oceanexpert.org/expert/14950 -https://www.oceanexpert.org/expert/43629 -https://www.oceanexpert.org/expert/47704 -https://www.oceanexpert.org/institution/15965 -https://www.oceanexpert.org/expert/32201 -https://www.oceanexpert.org/expert/26898 -https://www.oceanexpert.org/expert/23478 -https://www.oceanexpert.org/institution/18685 -https://www.oceanexpert.org/institution/16258 -https://www.oceanexpert.org/expert/29997 -https://www.oceanexpert.org/institution/6688 -https://www.oceanexpert.org/expert/45687 -https://www.oceanexpert.org/institution/13739 -https://www.oceanexpert.org/event/1646 -https://www.oceanexpert.org/expert/34551 -https://www.oceanexpert.org/expert/29155 -https://www.oceanexpert.org/institution/21345 -https://www.oceanexpert.org/institution/7018 -https://www.oceanexpert.org/expert/24810 -https://www.oceanexpert.org/expert/46553 -https://www.oceanexpert.org/expert/44409 -https://www.oceanexpert.org/institution/19829 -https://www.oceanexpert.org/expert/8724 -https://www.oceanexpert.org/expert/20804 -https://www.oceanexpert.org/institution/17263 -https://www.oceanexpert.org/event/1618 -https://www.oceanexpert.org/expert/12400 -https://www.oceanexpert.org/expert/38909 -https://www.oceanexpert.org/expert/10257 -https://www.oceanexpert.org/institution/5836 -https://www.oceanexpert.org/institution/14922 -https://www.oceanexpert.org/expert/40678 -https://www.oceanexpert.org/expert/6322 -https://www.oceanexpert.org/expert/38158 -https://www.oceanexpert.org/expert/44938 -https://www.oceanexpert.org/institution/18854 -https://www.oceanexpert.org/expert/17642 -https://www.oceanexpert.org/expert/7490 -https://www.oceanexpert.org/expert/26370 -https://www.oceanexpert.org/expert/43534 -https://www.oceanexpert.org/institution/9310 -https://www.oceanexpert.org/expert/24437 -https://www.oceanexpert.org/institution/21652 -https://www.oceanexpert.org/expert/34441 -https://www.oceanexpert.org/expert/6911 -https://www.oceanexpert.org/expert/20392 -https://www.oceanexpert.org/expert/23386 -https://www.oceanexpert.org/expert/35354 -https://www.oceanexpert.org/institution/6223 -https://www.oceanexpert.org/institution/13391 -https://www.oceanexpert.org/expert/25343 -https://www.oceanexpert.org/expert/44885 -https://www.oceanexpert.org/institution/17804 -https://www.oceanexpert.org/expert/27760 -https://www.oceanexpert.org/institution/6172 -https://www.oceanexpert.org/institution/10582 -https://www.oceanexpert.org/expert/35241 -https://www.oceanexpert.org/institution/21255 -https://www.oceanexpert.org/expert/20247 -https://www.oceanexpert.org/expert/19592 -https://www.oceanexpert.org/expert/11652 -https://www.oceanexpert.org/expert/19324 -https://www.oceanexpert.org/expert/47408 -https://www.oceanexpert.org/expert/19354 -https://www.oceanexpert.org/expert/21108 -https://www.oceanexpert.org/expert/23025 -https://www.oceanexpert.org/expert/44092 -https://www.oceanexpert.org/institution/13882 -https://www.oceanexpert.org/expert/32679 -https://www.oceanexpert.org/institution/18716 -https://www.oceanexpert.org/expert/3956 -https://www.oceanexpert.org/event/1277 -https://www.oceanexpert.org/expert/24200 -https://www.oceanexpert.org/expert/12548 -https://www.oceanexpert.org/expert/39976 -https://www.oceanexpert.org/expert/37984 -https://www.oceanexpert.org/event/213 -https://www.oceanexpert.org/institution/20872 -https://www.oceanexpert.org/expert/22813 -https://www.oceanexpert.org/expert/43659 -https://www.oceanexpert.org/expert/14903 -https://www.oceanexpert.org/institution/15912 -https://www.oceanexpert.org/expert/42773 -https://www.oceanexpert.org/expert/24954 -https://www.oceanexpert.org/expert/28465 -https://www.oceanexpert.org/expert/237 -https://www.oceanexpert.org/expert/47258 -https://www.oceanexpert.org/institution/11201 -https://www.oceanexpert.org/expert/11088 -https://www.oceanexpert.org/expert/20634 -https://www.oceanexpert.org/expert/17093 -https://www.oceanexpert.org/expert/8100 -https://www.oceanexpert.org/expert/37951 -https://www.oceanexpert.org/institution/19719 -https://www.oceanexpert.org/expert/32728 -https://www.oceanexpert.org/expert/17161 -https://www.oceanexpert.org/expert/8598 -https://www.oceanexpert.org/expert/37694 -https://www.oceanexpert.org/institution/13410 -https://www.oceanexpert.org/institution/12681 -https://www.oceanexpert.org/institution/14328 -https://www.oceanexpert.org/institution/17559 -https://www.oceanexpert.org/institution/7852 -https://www.oceanexpert.org/expert/22813 -https://www.oceanexpert.org/event/3049 -https://www.oceanexpert.org/expert/34088 -https://www.oceanexpert.org/event/1102 -https://www.oceanexpert.org/expert/19360 -https://www.oceanexpert.org/expert/26267 -https://www.oceanexpert.org/expert/22766 -https://www.oceanexpert.org/expert/45099 -https://www.oceanexpert.org/institution/8766 -https://www.oceanexpert.org/institution/19337 -https://www.oceanexpert.org/institution/17501 -https://www.oceanexpert.org/expert/32185 -https://www.oceanexpert.org/expert/43861 -https://www.oceanexpert.org/expert/26635 -https://www.oceanexpert.org/expert/42537 -https://www.oceanexpert.org/expert/42398 -https://www.oceanexpert.org/expert/37832 -https://www.oceanexpert.org/institution/17153 -https://www.oceanexpert.org/expert/21301 -https://www.oceanexpert.org/expert/23990 -https://www.oceanexpert.org/expert/23237 -https://www.oceanexpert.org/institution/20495 -https://www.oceanexpert.org/institution/15887 -https://www.oceanexpert.org/expert/22481 -https://www.oceanexpert.org/expert/21675 -https://www.oceanexpert.org/institution/19880 -https://www.oceanexpert.org/expert/24084 -https://www.oceanexpert.org/expert/17233 -https://www.oceanexpert.org/institution/20266 -https://www.oceanexpert.org/expert/25081 -https://www.oceanexpert.org/expert/48681 -https://www.oceanexpert.org/event/1152 -https://www.oceanexpert.org/institution/12548 -https://www.oceanexpert.org/expert/2543 -https://www.oceanexpert.org/institution/11481 -https://www.oceanexpert.org/institution/12816 -https://www.oceanexpert.org/institution/19421 -https://www.oceanexpert.org/expert/38526 -https://www.oceanexpert.org/expert/46176 -https://www.oceanexpert.org/event/188 -https://www.oceanexpert.org/expert/38526 -https://www.oceanexpert.org/expert/45103 -https://www.oceanexpert.org/event/1341 -https://www.oceanexpert.org/institution/18951 -https://www.oceanexpert.org/expert/25290 -https://www.oceanexpert.org/expert/38088 -https://www.oceanexpert.org/expert/16064 -https://www.oceanexpert.org/expert/37342 -https://www.oceanexpert.org/institution/19878 -https://www.oceanexpert.org/expert/43142 -https://www.oceanexpert.org/expert/20965 -https://www.oceanexpert.org/expert/27960 -https://www.oceanexpert.org/institution/20390 -https://www.oceanexpert.org/expert/38236 -https://www.oceanexpert.org/institution/19497 -https://www.oceanexpert.org/expert/16840 -https://www.oceanexpert.org/expert/21079 -https://www.oceanexpert.org/expert/46862 -https://www.oceanexpert.org/expert/23360 -https://www.oceanexpert.org/institution/21917 -https://www.oceanexpert.org/expert/2798 -https://www.oceanexpert.org/expert/29093 -https://www.oceanexpert.org/event/956 -https://www.oceanexpert.org/expert/27344 -https://www.oceanexpert.org/expert/47378 -https://www.oceanexpert.org/expert/23530 -https://www.oceanexpert.org/institution/16156 -https://www.oceanexpert.org/expert/21906 -https://www.oceanexpert.org/expert/38464 -https://www.oceanexpert.org/expert/26881 -https://www.oceanexpert.org/event/880 -https://www.oceanexpert.org/expert/37105 -https://www.oceanexpert.org/institution/15080 -https://www.oceanexpert.org/expert/31081 -https://www.oceanexpert.org/expert/19953 -https://www.oceanexpert.org/event/926 -https://www.oceanexpert.org/expert/18224 -https://www.oceanexpert.org/institution/13768 -https://www.oceanexpert.org/expert/25491 -https://www.oceanexpert.org/event/1342 -https://www.oceanexpert.org/expert/24416 -https://www.oceanexpert.org/event/388 -https://www.oceanexpert.org/expert/23852 -https://www.oceanexpert.org/expert/48585 -https://www.oceanexpert.org/expert/43867 -https://www.oceanexpert.org/expert/26944 -https://www.oceanexpert.org/expert/126 -https://www.oceanexpert.org/expert/46727 -https://www.oceanexpert.org/expert/31040 -https://www.oceanexpert.org/expert/25320 -https://www.oceanexpert.org/institution/16268 -https://www.oceanexpert.org/expert/23640 -https://www.oceanexpert.org/expert/25253 -https://www.oceanexpert.org/institution/8236 -https://www.oceanexpert.org/event/290 -https://www.oceanexpert.org/expert/46440 -https://www.oceanexpert.org/expert/47511 -https://www.oceanexpert.org/expert/43037 -https://www.oceanexpert.org/expert/22707 -https://www.oceanexpert.org/expert/22964 -https://www.oceanexpert.org/event/1592 -https://www.oceanexpert.org/expert/26026 -https://www.oceanexpert.org/institution/20907 -https://www.oceanexpert.org/institution/17467 -https://www.oceanexpert.org/institution/7628 -https://www.oceanexpert.org/expert/24138 -https://www.oceanexpert.org/event/901 -https://www.oceanexpert.org/expert/17206 -https://www.oceanexpert.org/expert/27043 -https://www.oceanexpert.org/expert/17445 -https://www.oceanexpert.org/expert/22838 -https://www.oceanexpert.org/institution/16877 -https://www.oceanexpert.org/institution/21464 -https://www.oceanexpert.org/event/1575 -https://www.oceanexpert.org/institution/21432 -https://www.oceanexpert.org/expert/48394 -https://www.oceanexpert.org/expert/48016 -https://www.oceanexpert.org/event/2492 -https://www.oceanexpert.org/expert/46835 -https://www.oceanexpert.org/expert/35035 -https://www.oceanexpert.org/expert/38470 -https://www.oceanexpert.org/expert/43115 -https://www.oceanexpert.org/expert/17123 -https://www.oceanexpert.org/expert/19767 -https://www.oceanexpert.org/expert/33365 -https://www.oceanexpert.org/expert/46868 -https://www.oceanexpert.org/expert/14808 -https://www.oceanexpert.org/institution/11246 -https://www.oceanexpert.org/expert/13238 -https://www.oceanexpert.org/expert/42506 -https://www.oceanexpert.org/institution/21992 -https://www.oceanexpert.org/institution/17057 -https://www.oceanexpert.org/expert/15102 -https://www.oceanexpert.org/expert/26759 -https://www.oceanexpert.org/expert/24089 -https://www.oceanexpert.org/expert/35089 -https://www.oceanexpert.org/expert/24899 -https://www.oceanexpert.org/institution/20230 -https://www.oceanexpert.org/expert/43775 -https://www.oceanexpert.org/expert/38474 -https://www.oceanexpert.org/event/1867 -https://www.oceanexpert.org/institution/6941 -https://www.oceanexpert.org/expert/37512 -https://www.oceanexpert.org/expert/46188 -https://www.oceanexpert.org/expert/19820 -https://www.oceanexpert.org/expert/27056 -https://www.oceanexpert.org/event/2243 -https://www.oceanexpert.org/event/512 -https://www.oceanexpert.org/expert/31264 -https://www.oceanexpert.org/expert/33284 -https://www.oceanexpert.org/expert/34207 -https://www.oceanexpert.org/expert/19461 -https://www.oceanexpert.org/expert/30417 -https://www.oceanexpert.org/institution/19885 -https://www.oceanexpert.org/expert/22816 -https://www.oceanexpert.org/expert/24639 -https://www.oceanexpert.org/expert/40602 -https://www.oceanexpert.org/expert/20863 -https://www.oceanexpert.org/institution/17534 -https://www.oceanexpert.org/expert/19997 -https://www.oceanexpert.org/expert/36811 -https://www.oceanexpert.org/event/2400 -https://www.oceanexpert.org/expert/46729 -https://www.oceanexpert.org/institution/18879 -https://www.oceanexpert.org/expert/16570 -https://www.oceanexpert.org/expert/25790 -https://www.oceanexpert.org/expert/23238 -https://www.oceanexpert.org/expert/43439 -https://www.oceanexpert.org/expert/35013 -https://www.oceanexpert.org/expert/45579 -https://www.oceanexpert.org/expert/26276 -https://www.oceanexpert.org/expert/16473 -https://www.oceanexpert.org/institution/12445 -https://www.oceanexpert.org/institution/21171 -https://www.oceanexpert.org/expert/762 -https://www.oceanexpert.org/institution/19842 -https://www.oceanexpert.org/expert/35125 -https://www.oceanexpert.org/institution/6096 -https://www.oceanexpert.org/institution/21354 -https://www.oceanexpert.org/expert/34064 -https://www.oceanexpert.org/expert/20591 -https://www.oceanexpert.org/expert/40564 -https://www.oceanexpert.org/institution/11735 -https://www.oceanexpert.org/expert/8950 -https://www.oceanexpert.org/expert/27068 -https://www.oceanexpert.org/event/1042 -https://www.oceanexpert.org/expert/6991 -https://www.oceanexpert.org/expert/20075 -https://www.oceanexpert.org/institution/11459 -https://www.oceanexpert.org/expert/43157 -https://www.oceanexpert.org/expert/44504 -https://www.oceanexpert.org/expert/1970 -https://www.oceanexpert.org/expert/7009 -https://www.oceanexpert.org/institution/22050 -https://www.oceanexpert.org/expert/7268 -https://www.oceanexpert.org/expert/44584 -https://www.oceanexpert.org/expert/20036 -https://www.oceanexpert.org/institution/18364 -https://www.oceanexpert.org/expert/37528 -https://www.oceanexpert.org/expert/36593 -https://www.oceanexpert.org/expert/30258 -https://www.oceanexpert.org/expert/20124 -https://www.oceanexpert.org/institution/6880 -https://www.oceanexpert.org/expert/23733 -https://www.oceanexpert.org/expert/44399 -https://www.oceanexpert.org/expert/23275 -https://www.oceanexpert.org/institution/12054 -https://www.oceanexpert.org/institution/15158 -https://www.oceanexpert.org/expert/35106 -https://www.oceanexpert.org/expert/36443 -https://www.oceanexpert.org/expert/48234 -https://www.oceanexpert.org/expert/34755 -https://www.oceanexpert.org/expert/23466 -https://www.oceanexpert.org/event/1507 -https://www.oceanexpert.org/expert/18877 -https://www.oceanexpert.org/expert/1945 -https://www.oceanexpert.org/institution/8090 -https://www.oceanexpert.org/expert/14767 -https://www.oceanexpert.org/expert/43886 -https://www.oceanexpert.org/expert/22678 -https://www.oceanexpert.org/event/2705 -https://www.oceanexpert.org/expert/18051 -https://www.oceanexpert.org/expert/26746 -https://www.oceanexpert.org/expert/15416 -https://www.oceanexpert.org/expert/22445 -https://www.oceanexpert.org/expert/45640 -https://www.oceanexpert.org/expert/14399 -https://www.oceanexpert.org/expert/27069 -https://www.oceanexpert.org/expert/34235 -https://www.oceanexpert.org/expert/19228 -https://www.oceanexpert.org/expert/22677 -https://www.oceanexpert.org/expert/35003 -https://www.oceanexpert.org/institution/21145 -https://www.oceanexpert.org/expert/38112 -https://www.oceanexpert.org/expert/26747 -https://www.oceanexpert.org/expert/26963 -https://www.oceanexpert.org/event/2571 -https://www.oceanexpert.org/expert/43303 -https://www.oceanexpert.org/institution/20396 -https://www.oceanexpert.org/expert/25196 -https://www.oceanexpert.org/institution/21342 -https://www.oceanexpert.org/expert/46415 -https://www.oceanexpert.org/institution/19752 -https://www.oceanexpert.org/institution/20026 -https://www.oceanexpert.org/expert/36156 -https://www.oceanexpert.org/institution/14742 -https://www.oceanexpert.org/institution/21644 -https://www.oceanexpert.org/event/2039 -https://www.oceanexpert.org/expert/43126 -https://www.oceanexpert.org/expert/17343 -https://www.oceanexpert.org/expert/25114 -https://www.oceanexpert.org/expert/18395 -https://www.oceanexpert.org/expert/24023 -https://www.oceanexpert.org/expert/18659 -https://www.oceanexpert.org/expert/19323 -https://www.oceanexpert.org/institution/16125 -https://www.oceanexpert.org/institution/20806 -https://www.oceanexpert.org/expert/46305 -https://www.oceanexpert.org/expert/44039 -https://www.oceanexpert.org/expert/38344 -https://www.oceanexpert.org/event/1065 -https://www.oceanexpert.org/expert/34590 -https://www.oceanexpert.org/event/2260 -https://www.oceanexpert.org/expert/16628 -https://www.oceanexpert.org/expert/22917 -https://www.oceanexpert.org/expert/1812 -https://www.oceanexpert.org/expert/17973 -https://www.oceanexpert.org/expert/44955 -https://www.oceanexpert.org/event/1817 -https://www.oceanexpert.org/expert/28365 -https://www.oceanexpert.org/event/513 -https://www.oceanexpert.org/expert/7412 -https://www.oceanexpert.org/expert/24135 -https://www.oceanexpert.org/expert/18481 -https://www.oceanexpert.org/expert/37352 -https://www.oceanexpert.org/institution/15584 -https://www.oceanexpert.org/expert/28814 -https://www.oceanexpert.org/expert/42669 -https://www.oceanexpert.org/event/1888 -https://www.oceanexpert.org/institution/20997 -https://www.oceanexpert.org/institution/20821 -https://www.oceanexpert.org/expert/28145 -https://www.oceanexpert.org/expert/45410 -https://www.oceanexpert.org/expert/21448 -https://www.oceanexpert.org/event/2296 -https://www.oceanexpert.org/expert/21610 -https://www.oceanexpert.org/expert/17476 -https://www.oceanexpert.org/institution/21591 -https://www.oceanexpert.org/institution/16281 -https://www.oceanexpert.org/expert/19254 -https://www.oceanexpert.org/expert/37054 -https://www.oceanexpert.org/expert/31371 -https://www.oceanexpert.org/institution/14252 -https://www.oceanexpert.org/institution/19021 -https://www.oceanexpert.org/institution/20534 -https://www.oceanexpert.org/expert/29511 -https://www.oceanexpert.org/expert/32262 -https://www.oceanexpert.org/expert/24019 -https://www.oceanexpert.org/expert/27122 -https://www.oceanexpert.org/expert/33855 -https://www.oceanexpert.org/expert/44997 -https://www.oceanexpert.org/expert/5516 -https://www.oceanexpert.org/expert/32955 -https://www.oceanexpert.org/expert/32849 -https://www.oceanexpert.org/expert/42801 -https://www.oceanexpert.org/expert/15543 -https://www.oceanexpert.org/expert/36175 -https://www.oceanexpert.org/institution/20896 -https://www.oceanexpert.org/expert/31936 -https://www.oceanexpert.org/expert/46920 -https://www.oceanexpert.org/expert/17322 -https://www.oceanexpert.org/institution/11768 -https://www.oceanexpert.org/expert/39134 -https://www.oceanexpert.org/expert/29518 -https://www.oceanexpert.org/expert/47782 -https://www.oceanexpert.org/institution/18103 -https://www.oceanexpert.org/expert/19153 -https://www.oceanexpert.org/expert/34765 -https://www.oceanexpert.org/institution/12546 -https://www.oceanexpert.org/institution/18279 -https://www.oceanexpert.org/expert/12635 -https://www.oceanexpert.org/expert/14200 -https://www.oceanexpert.org/expert/34102 -https://www.oceanexpert.org/expert/13941 -https://www.oceanexpert.org/event/1429 -https://www.oceanexpert.org/institution/13150 -https://www.oceanexpert.org/expert/17056 -https://www.oceanexpert.org/expert/44340 -https://www.oceanexpert.org/institution/8241 -https://www.oceanexpert.org/expert/29599 -https://www.oceanexpert.org/expert/43223 -https://www.oceanexpert.org/expert/11656 -https://www.oceanexpert.org/expert/3400 -https://www.oceanexpert.org/expert/33016 -https://www.oceanexpert.org/expert/37687 -https://www.oceanexpert.org/expert/18478 -https://www.oceanexpert.org/event/2408 -https://www.oceanexpert.org/institution/5852 -https://www.oceanexpert.org/expert/29243 -https://www.oceanexpert.org/expert/19093 -https://www.oceanexpert.org/expert/38901 -https://www.oceanexpert.org/event/16 -https://www.oceanexpert.org/expert/44768 -https://www.oceanexpert.org/institution/19429 -https://www.oceanexpert.org/expert/261 -https://www.oceanexpert.org/expert/21118 -https://www.oceanexpert.org/expert/37897 -https://www.oceanexpert.org/event/3253 -https://www.oceanexpert.org/expert/23620 -https://www.oceanexpert.org/expert/17192 -https://www.oceanexpert.org/institution/11203 -https://www.oceanexpert.org/expert/26538 -https://www.oceanexpert.org/institution/16733 -https://www.oceanexpert.org/institution/20797 -https://www.oceanexpert.org/expert/21639 -https://www.oceanexpert.org/expert/45956 -https://www.oceanexpert.org/expert/6176 -https://www.oceanexpert.org/expert/4316 -https://www.oceanexpert.org/expert/15376 -https://www.oceanexpert.org/expert/46943 -https://www.oceanexpert.org/institution/14214 -https://www.oceanexpert.org/expert/18786 -https://www.oceanexpert.org/expert/23054 -https://www.oceanexpert.org/expert/43075 -https://www.oceanexpert.org/expert/14483 -https://www.oceanexpert.org/institution/19271 -https://www.oceanexpert.org/expert/12847 -https://www.oceanexpert.org/expert/24309 -https://www.oceanexpert.org/expert/23242 -https://www.oceanexpert.org/expert/17667 -https://www.oceanexpert.org/expert/25272 -https://www.oceanexpert.org/expert/29630 -https://www.oceanexpert.org/event/3194 -https://www.oceanexpert.org/expert/14695 -https://www.oceanexpert.org/expert/47602 -https://www.oceanexpert.org/expert/18257 -https://www.oceanexpert.org/institution/19584 -https://www.oceanexpert.org/expert/31364 -https://www.oceanexpert.org/expert/21834 -https://www.oceanexpert.org/institution/17827 -https://www.oceanexpert.org/institution/19548 -https://www.oceanexpert.org/expert/14899 -https://www.oceanexpert.org/institution/6725 -https://www.oceanexpert.org/institution/6536 -https://www.oceanexpert.org/expert/34309 -https://www.oceanexpert.org/event/1006 -https://www.oceanexpert.org/institution/21841 -https://www.oceanexpert.org/event/736 -https://www.oceanexpert.org/institution/15681 -https://www.oceanexpert.org/expert/19538 -https://www.oceanexpert.org/expert/49033 -https://www.oceanexpert.org/expert/24475 -https://www.oceanexpert.org/expert/18579 -https://www.oceanexpert.org/expert/24850 -https://www.oceanexpert.org/institution/20850 -https://www.oceanexpert.org/expert/35381 -https://www.oceanexpert.org/expert/27718 -https://www.oceanexpert.org/expert/36293 -https://www.oceanexpert.org/expert/38068 -https://www.oceanexpert.org/expert/21016 -https://www.oceanexpert.org/expert/45365 -https://www.oceanexpert.org/expert/3552 -https://www.oceanexpert.org/expert/17157 -https://www.oceanexpert.org/expert/24017 -https://www.oceanexpert.org/expert/31559 -https://www.oceanexpert.org/event/2591 -https://www.oceanexpert.org/expert/7312 -https://www.oceanexpert.org/expert/36946 -https://www.oceanexpert.org/expert/38200 -https://www.oceanexpert.org/institution/19279 -https://www.oceanexpert.org/expert/216 -https://www.oceanexpert.org/expert/13162 -https://www.oceanexpert.org/expert/6376 -https://www.oceanexpert.org/expert/24235 -https://www.oceanexpert.org/expert/23361 -https://www.oceanexpert.org/expert/27082 -https://www.oceanexpert.org/expert/24530 -https://www.oceanexpert.org/expert/34425 -https://www.oceanexpert.org/expert/40120 -https://www.oceanexpert.org/expert/20376 -https://www.oceanexpert.org/institution/20498 -https://www.oceanexpert.org/institution/14883 -https://www.oceanexpert.org/expert/11799 -https://www.oceanexpert.org/event/1977 -https://www.oceanexpert.org/institution/18390 -https://www.oceanexpert.org/expert/21361 -https://www.oceanexpert.org/institution/18927 -https://www.oceanexpert.org/expert/37846 -https://www.oceanexpert.org/expert/41239 -https://www.oceanexpert.org/event/155 -https://www.oceanexpert.org/expert/26029 -https://www.oceanexpert.org/expert/43928 -https://www.oceanexpert.org/expert/23637 -https://www.oceanexpert.org/expert/28270 -https://www.oceanexpert.org/expert/43385 -https://www.oceanexpert.org/event/590 -https://www.oceanexpert.org/institution/11800 -https://www.oceanexpert.org/institution/18012 -https://www.oceanexpert.org/expert/8212 -https://www.oceanexpert.org/expert/19956 -https://www.oceanexpert.org/expert/47163 -https://www.oceanexpert.org/institution/21247 -https://www.oceanexpert.org/expert/43908 -https://www.oceanexpert.org/expert/20464 -https://www.oceanexpert.org/expert/29011 -https://www.oceanexpert.org/expert/14330 -https://www.oceanexpert.org/event/2123 -https://www.oceanexpert.org/institution/8537 -https://www.oceanexpert.org/expert/9574 -https://www.oceanexpert.org/expert/22931 -https://www.oceanexpert.org/expert/28433 -https://www.oceanexpert.org/institution/13277 -https://www.oceanexpert.org/expert/25989 -https://www.oceanexpert.org/expert/47183 -https://www.oceanexpert.org/expert/23183 -https://www.oceanexpert.org/expert/25027 -https://www.oceanexpert.org/expert/44838 -https://www.oceanexpert.org/expert/32811 -https://www.oceanexpert.org/institution/15914 -https://www.oceanexpert.org/expert/44704 -https://www.oceanexpert.org/expert/18302 -https://www.oceanexpert.org/expert/26656 -https://www.oceanexpert.org/institution/12133 -https://www.oceanexpert.org/expert/43637 -https://www.oceanexpert.org/event/2299 -https://www.oceanexpert.org/expert/32132 -https://www.oceanexpert.org/expert/44492 -https://www.oceanexpert.org/institution/15497 -https://www.oceanexpert.org/expert/16633 -https://www.oceanexpert.org/expert/22588 -https://www.oceanexpert.org/expert/16815 -https://www.oceanexpert.org/expert/4788 -https://www.oceanexpert.org/expert/35345 -https://www.oceanexpert.org/expert/27309 -https://www.oceanexpert.org/expert/34935 -https://www.oceanexpert.org/expert/39227 -https://www.oceanexpert.org/expert/24008 -https://www.oceanexpert.org/expert/39965 -https://www.oceanexpert.org/event/837 -https://www.oceanexpert.org/event/456 -https://www.oceanexpert.org/expert/36630 -https://www.oceanexpert.org/expert/3182 -https://www.oceanexpert.org/institution/12064 -https://www.oceanexpert.org/event/84 -https://www.oceanexpert.org/institution/20669 -https://www.oceanexpert.org/expert/29259 -https://www.oceanexpert.org/expert/23908 -https://www.oceanexpert.org/institution/13358 -https://www.oceanexpert.org/event/2737 -https://www.oceanexpert.org/expert/18927 -https://www.oceanexpert.org/expert/6267 -https://www.oceanexpert.org/event/489 -https://www.oceanexpert.org/expert/29302 -https://www.oceanexpert.org/expert/11372 -https://www.oceanexpert.org/expert/35879 -https://www.oceanexpert.org/expert/26022 -https://www.oceanexpert.org/expert/44637 -https://www.oceanexpert.org/expert/23462 -https://www.oceanexpert.org/institution/5405 -https://www.oceanexpert.org/expert/37508 -https://www.oceanexpert.org/expert/27403 -https://www.oceanexpert.org/expert/45528 -https://www.oceanexpert.org/expert/26642 -https://www.oceanexpert.org/expert/23127 -https://www.oceanexpert.org/expert/7417 -https://www.oceanexpert.org/expert/47332 -https://www.oceanexpert.org/expert/32348 -https://www.oceanexpert.org/expert/20282 -https://www.oceanexpert.org/expert/12248 -https://www.oceanexpert.org/event/2028 -https://www.oceanexpert.org/institution/10610 -https://www.oceanexpert.org/expert/17149 -https://www.oceanexpert.org/institution/16046 -https://www.oceanexpert.org/expert/46424 -https://www.oceanexpert.org/institution/6026 -https://www.oceanexpert.org/expert/17917 -https://www.oceanexpert.org/expert/29718 -https://www.oceanexpert.org/institution/8892 -https://www.oceanexpert.org/expert/29279 -https://www.oceanexpert.org/event/1666 -https://www.oceanexpert.org/institution/12094 -https://www.oceanexpert.org/expert/47974 -https://www.oceanexpert.org/institution/11426 -https://www.oceanexpert.org/expert/19805 -https://www.oceanexpert.org/institution/21961 -https://www.oceanexpert.org/expert/13069 -https://www.oceanexpert.org/expert/25791 -https://www.oceanexpert.org/institution/21067 -https://www.oceanexpert.org/expert/30990 -https://www.oceanexpert.org/expert/29659 -https://www.oceanexpert.org/expert/22908 -https://www.oceanexpert.org/expert/21498 -https://www.oceanexpert.org/expert/36213 -https://www.oceanexpert.org/expert/19702 -https://www.oceanexpert.org/expert/18137 -https://www.oceanexpert.org/expert/35471 -https://www.oceanexpert.org/expert/31539 -https://www.oceanexpert.org/expert/27167 -https://www.oceanexpert.org/expert/19258 -https://www.oceanexpert.org/institution/19518 -https://www.oceanexpert.org/institution/9491 -https://www.oceanexpert.org/institution/22119 -https://www.oceanexpert.org/expert/8712 -https://www.oceanexpert.org/event/610 -https://www.oceanexpert.org/expert/12992 -https://www.oceanexpert.org/expert/45178 -https://www.oceanexpert.org/expert/27152 -https://www.oceanexpert.org/expert/23769 -https://www.oceanexpert.org/institution/18157 -https://www.oceanexpert.org/institution/21767 -https://www.oceanexpert.org/expert/29984 -https://www.oceanexpert.org/expert/33576 -https://www.oceanexpert.org/institution/15039 -https://www.oceanexpert.org/event/2483 -https://www.oceanexpert.org/expert/23716 -https://www.oceanexpert.org/expert/15539 -https://www.oceanexpert.org/expert/21545 -https://www.oceanexpert.org/expert/24620 -https://www.oceanexpert.org/institution/21045 -https://www.oceanexpert.org/institution/19706 -https://www.oceanexpert.org/expert/26101 -https://www.oceanexpert.org/expert/45652 -https://www.oceanexpert.org/expert/21598 -https://www.oceanexpert.org/expert/27891 -https://www.oceanexpert.org/institution/18057 -https://www.oceanexpert.org/expert/24811 -https://www.oceanexpert.org/event/2320 -https://www.oceanexpert.org/expert/35380 -https://www.oceanexpert.org/expert/31114 -https://www.oceanexpert.org/expert/18517 -https://www.oceanexpert.org/expert/44096 -https://www.oceanexpert.org/institution/20483 -https://www.oceanexpert.org/institution/17072 -https://www.oceanexpert.org/institution/21905 -https://www.oceanexpert.org/expert/15401 -https://www.oceanexpert.org/expert/48128 -https://www.oceanexpert.org/expert/23511 -https://www.oceanexpert.org/expert/8460 -https://www.oceanexpert.org/expert/20569 -https://www.oceanexpert.org/expert/24759 -https://www.oceanexpert.org/expert/36577 -https://www.oceanexpert.org/institution/19306 -https://www.oceanexpert.org/institution/20482 -https://www.oceanexpert.org/event/2708 -https://www.oceanexpert.org/expert/32149 -https://www.oceanexpert.org/expert/24187 -https://www.oceanexpert.org/institution/19942 -https://www.oceanexpert.org/institution/16807 -https://www.oceanexpert.org/expert/37920 -https://www.oceanexpert.org/expert/31457 -https://www.oceanexpert.org/institution/11679 -https://www.oceanexpert.org/expert/9198 -https://www.oceanexpert.org/institution/13200 -https://www.oceanexpert.org/expert/47992 -https://www.oceanexpert.org/expert/18948 -https://www.oceanexpert.org/institution/11659 -https://www.oceanexpert.org/expert/33242 -https://www.oceanexpert.org/expert/33099 -https://www.oceanexpert.org/expert/12861 -https://www.oceanexpert.org/expert/31684 -https://www.oceanexpert.org/expert/37102 -https://www.oceanexpert.org/expert/46661 -https://www.oceanexpert.org/institution/5851 -https://www.oceanexpert.org/expert/22556 -https://www.oceanexpert.org/event/2032 -https://www.oceanexpert.org/institution/10347 -https://www.oceanexpert.org/expert/23507 -https://www.oceanexpert.org/institution/10218 -https://www.oceanexpert.org/expert/48603 -https://www.oceanexpert.org/event/1610 -https://www.oceanexpert.org/expert/34137 -https://www.oceanexpert.org/institution/20102 -https://www.oceanexpert.org/institution/20616 -https://www.oceanexpert.org/expert/48828 -https://www.oceanexpert.org/institution/20767 -https://www.oceanexpert.org/expert/33075 -https://www.oceanexpert.org/expert/48988 -https://www.oceanexpert.org/expert/25741 -https://www.oceanexpert.org/expert/29297 -https://www.oceanexpert.org/expert/23198 -https://www.oceanexpert.org/expert/4427 -https://www.oceanexpert.org/expert/7785 -https://www.oceanexpert.org/expert/26024 -https://www.oceanexpert.org/institution/12345 -https://www.oceanexpert.org/institution/19927 -https://www.oceanexpert.org/event/19 -https://www.oceanexpert.org/institution/21873 -https://www.oceanexpert.org/expert/12180 -https://www.oceanexpert.org/expert/21195 -https://www.oceanexpert.org/institution/19196 -https://www.oceanexpert.org/expert/35174 -https://www.oceanexpert.org/event/363 -https://www.oceanexpert.org/expert/10777 -https://www.oceanexpert.org/expert/43063 -https://www.oceanexpert.org/expert/21816 -https://www.oceanexpert.org/expert/18359 -https://www.oceanexpert.org/expert/32189 -https://www.oceanexpert.org/event/3116 -https://www.oceanexpert.org/institution/10078 -https://www.oceanexpert.org/expert/37293 -https://www.oceanexpert.org/event/518 -https://www.oceanexpert.org/expert/6010 -https://www.oceanexpert.org/institution/19973 -https://www.oceanexpert.org/expert/18697 -https://www.oceanexpert.org/institution/21169 -https://www.oceanexpert.org/event/75 -https://www.oceanexpert.org/expert/25144 -https://www.oceanexpert.org/institution/18258 -https://www.oceanexpert.org/expert/13131 -https://www.oceanexpert.org/institution/20466 -https://www.oceanexpert.org/expert/23109 -https://www.oceanexpert.org/institution/13659 -https://www.oceanexpert.org/expert/11631 -https://www.oceanexpert.org/event/238 -https://www.oceanexpert.org/expert/23652 -https://www.oceanexpert.org/expert/32486 -https://www.oceanexpert.org/institution/14046 -https://www.oceanexpert.org/expert/7930 -https://www.oceanexpert.org/expert/40092 -https://www.oceanexpert.org/expert/46422 -https://www.oceanexpert.org/institution/6048 -https://www.oceanexpert.org/event/1621 -https://www.oceanexpert.org/expert/23949 -https://www.oceanexpert.org/institution/14234 -https://www.oceanexpert.org/expert/4410 -https://www.oceanexpert.org/expert/27583 -https://www.oceanexpert.org/expert/36163 -https://www.oceanexpert.org/event/1772 -https://www.oceanexpert.org/institution/5868 -https://www.oceanexpert.org/expert/593 -https://www.oceanexpert.org/expert/29297 -https://www.oceanexpert.org/expert/22592 -https://www.oceanexpert.org/expert/32515 -https://www.oceanexpert.org/expert/36676 -https://www.oceanexpert.org/expert/21898 -https://www.oceanexpert.org/institution/20602 -https://www.oceanexpert.org/expert/27941 -https://www.oceanexpert.org/institution/19579 -https://www.oceanexpert.org/expert/15796 -https://www.oceanexpert.org/expert/19402 -https://www.oceanexpert.org/expert/21020 -https://www.oceanexpert.org/expert/23819 -https://www.oceanexpert.org/expert/35092 -https://www.oceanexpert.org/expert/44785 -https://www.oceanexpert.org/expert/22196 -https://www.oceanexpert.org/event/89 -https://www.oceanexpert.org/event/781 -https://www.oceanexpert.org/expert/16083 -https://www.oceanexpert.org/institution/14254 -https://www.oceanexpert.org/institution/20883 -https://www.oceanexpert.org/expert/13767 -https://www.oceanexpert.org/expert/45898 -https://www.oceanexpert.org/institution/13667 -https://www.oceanexpert.org/expert/44809 -https://www.oceanexpert.org/event/1495 -https://www.oceanexpert.org/expert/29259 -https://www.oceanexpert.org/expert/46944 -https://www.oceanexpert.org/institution/18306 -https://www.oceanexpert.org/institution/13008 -https://www.oceanexpert.org/expert/21635 -https://www.oceanexpert.org/expert/24282 -https://www.oceanexpert.org/expert/42054 -https://www.oceanexpert.org/expert/22907 -https://www.oceanexpert.org/institution/17948 -https://www.oceanexpert.org/institution/17763 -https://www.oceanexpert.org/institution/14063 -https://www.oceanexpert.org/institution/19008 -https://www.oceanexpert.org/institution/20639 -https://www.oceanexpert.org/expert/26174 -https://www.oceanexpert.org/expert/35451 -https://www.oceanexpert.org/expert/46979 -https://www.oceanexpert.org/expert/19323 -https://www.oceanexpert.org/expert/23043 -https://www.oceanexpert.org/expert/18129 -https://www.oceanexpert.org/expert/1696 -https://www.oceanexpert.org/expert/22553 -https://www.oceanexpert.org/expert/47262 -https://www.oceanexpert.org/expert/16046 -https://www.oceanexpert.org/expert/39498 -https://www.oceanexpert.org/expert/19567 -https://www.oceanexpert.org/expert/10796 -https://www.oceanexpert.org/institution/21868 -https://www.oceanexpert.org/expert/35179 -https://www.oceanexpert.org/expert/179 -https://www.oceanexpert.org/expert/20519 -https://www.oceanexpert.org/expert/16433 -https://www.oceanexpert.org/expert/32580 -https://www.oceanexpert.org/expert/22805 -https://www.oceanexpert.org/expert/23937 -https://www.oceanexpert.org/institution/22109 -https://www.oceanexpert.org/expert/35663 -https://www.oceanexpert.org/institution/20761 -https://www.oceanexpert.org/expert/21695 -https://www.oceanexpert.org/expert/18910 -https://www.oceanexpert.org/institution/15544 -https://www.oceanexpert.org/event/2792 -https://www.oceanexpert.org/expert/33620 -https://www.oceanexpert.org/expert/45302 -https://www.oceanexpert.org/expert/24687 -https://www.oceanexpert.org/event/1931 -https://www.oceanexpert.org/expert/20775 -https://www.oceanexpert.org/expert/24229 -https://www.oceanexpert.org/expert/23442 -https://www.oceanexpert.org/institution/21643 -https://www.oceanexpert.org/expert/18952 -https://www.oceanexpert.org/expert/28453 -https://www.oceanexpert.org/expert/22044 -https://www.oceanexpert.org/expert/32858 -https://www.oceanexpert.org/expert/20657 -https://www.oceanexpert.org/expert/26019 -https://www.oceanexpert.org/expert/47505 -https://www.oceanexpert.org/expert/31979 -https://www.oceanexpert.org/expert/38220 -https://www.oceanexpert.org/expert/44228 -https://www.oceanexpert.org/expert/2915 -https://www.oceanexpert.org/expert/32763 -https://www.oceanexpert.org/expert/20086 -https://www.oceanexpert.org/institution/12482 -https://www.oceanexpert.org/expert/14514 -https://www.oceanexpert.org/event/2091 -https://www.oceanexpert.org/expert/38404 -https://www.oceanexpert.org/expert/31102 -https://www.oceanexpert.org/expert/47299 -https://www.oceanexpert.org/expert/24979 -https://www.oceanexpert.org/expert/42891 -https://www.oceanexpert.org/expert/20699 -https://www.oceanexpert.org/institution/18521 -https://www.oceanexpert.org/expert/18409 -https://www.oceanexpert.org/expert/7102 -https://www.oceanexpert.org/expert/45819 -https://www.oceanexpert.org/expert/33603 -https://www.oceanexpert.org/institution/10558 -https://www.oceanexpert.org/expert/24291 -https://www.oceanexpert.org/event/856 -https://www.oceanexpert.org/expert/48020 -https://www.oceanexpert.org/expert/30967 -https://www.oceanexpert.org/institution/16276 -https://www.oceanexpert.org/expert/10989 -https://www.oceanexpert.org/expert/14467 -https://www.oceanexpert.org/expert/47664 -https://www.oceanexpert.org/expert/37717 -https://www.oceanexpert.org/expert/27357 -https://www.oceanexpert.org/expert/26773 -https://www.oceanexpert.org/expert/36656 -https://www.oceanexpert.org/expert/47973 -https://www.oceanexpert.org/expert/21133 -https://www.oceanexpert.org/expert/18839 -https://www.oceanexpert.org/institution/17871 -https://www.oceanexpert.org/expert/29431 -https://www.oceanexpert.org/expert/36828 -https://www.oceanexpert.org/expert/36524 -https://www.oceanexpert.org/expert/24412 -https://www.oceanexpert.org/expert/28693 -https://www.oceanexpert.org/event/285 -https://www.oceanexpert.org/institution/5558 -https://www.oceanexpert.org/expert/37849 -https://www.oceanexpert.org/expert/46303 -https://www.oceanexpert.org/expert/37287 -https://www.oceanexpert.org/expert/15715 -https://www.oceanexpert.org/institution/11444 -https://www.oceanexpert.org/institution/6784 -https://www.oceanexpert.org/expert/36259 -https://www.oceanexpert.org/expert/39268 -https://www.oceanexpert.org/expert/14773 -https://www.oceanexpert.org/expert/29021 -https://www.oceanexpert.org/expert/17919 -https://www.oceanexpert.org/expert/31581 -https://www.oceanexpert.org/expert/39640 -https://www.oceanexpert.org/expert/37405 -https://www.oceanexpert.org/institution/21925 -https://www.oceanexpert.org/expert/32652 -https://www.oceanexpert.org/expert/46347 -https://www.oceanexpert.org/expert/28289 -https://www.oceanexpert.org/expert/28785 -https://www.oceanexpert.org/institution/15460 -https://www.oceanexpert.org/institution/21812 -https://www.oceanexpert.org/event/859 -https://www.oceanexpert.org/expert/47919 -https://www.oceanexpert.org/institution/6300 -https://www.oceanexpert.org/expert/39239 -https://www.oceanexpert.org/expert/45550 -https://www.oceanexpert.org/expert/38011 -https://www.oceanexpert.org/expert/27404 -https://www.oceanexpert.org/institution/21146 -https://www.oceanexpert.org/expert/25430 -https://www.oceanexpert.org/expert/44368 -https://www.oceanexpert.org/expert/8275 -https://www.oceanexpert.org/expert/38167 -https://www.oceanexpert.org/expert/48460 -https://www.oceanexpert.org/event/1708 -https://www.oceanexpert.org/expert/43349 -https://www.oceanexpert.org/expert/32588 -https://www.oceanexpert.org/expert/7608 -https://www.oceanexpert.org/institution/20015 -https://www.oceanexpert.org/expert/38207 -https://www.oceanexpert.org/expert/23968 -https://www.oceanexpert.org/event/3060 -https://www.oceanexpert.org/expert/21837 -https://www.oceanexpert.org/expert/17592 -https://www.oceanexpert.org/expert/48671 -https://www.oceanexpert.org/expert/25809 -https://www.oceanexpert.org/expert/3770 -https://www.oceanexpert.org/institution/21792 -https://www.oceanexpert.org/institution/6763 -https://www.oceanexpert.org/expert/46452 -https://www.oceanexpert.org/expert/45351 -https://www.oceanexpert.org/expert/33654 -https://www.oceanexpert.org/event/2501 -https://www.oceanexpert.org/expert/25931 -https://www.oceanexpert.org/expert/36655 -https://www.oceanexpert.org/expert/17198 -https://www.oceanexpert.org/event/715 -https://www.oceanexpert.org/expert/25816 -https://www.oceanexpert.org/expert/24909 -https://www.oceanexpert.org/expert/34494 -https://www.oceanexpert.org/event/1193 -https://www.oceanexpert.org/expert/23476 -https://www.oceanexpert.org/expert/47253 -https://www.oceanexpert.org/expert/21063 -https://www.oceanexpert.org/institution/16483 -https://www.oceanexpert.org/expert/25073 -https://www.oceanexpert.org/expert/24094 -https://www.oceanexpert.org/expert/13311 -https://www.oceanexpert.org/event/41 -https://www.oceanexpert.org/institution/21738 -https://www.oceanexpert.org/expert/32492 -https://www.oceanexpert.org/institution/22125 -https://www.oceanexpert.org/expert/48494 -https://www.oceanexpert.org/expert/35441 -https://www.oceanexpert.org/expert/24282 -https://www.oceanexpert.org/expert/35391 -https://www.oceanexpert.org/event/3243 -https://www.oceanexpert.org/expert/24685 -https://www.oceanexpert.org/institution/20301 -https://www.oceanexpert.org/expert/20462 -https://www.oceanexpert.org/expert/45613 -https://www.oceanexpert.org/expert/24055 -https://www.oceanexpert.org/expert/33557 -https://www.oceanexpert.org/expert/27251 -https://www.oceanexpert.org/expert/46888 -https://www.oceanexpert.org/expert/44357 -https://www.oceanexpert.org/expert/7181 -https://www.oceanexpert.org/event/2859 -https://www.oceanexpert.org/expert/36245 -https://www.oceanexpert.org/institution/17449 -https://www.oceanexpert.org/expert/5632 -https://www.oceanexpert.org/expert/37005 -https://www.oceanexpert.org/expert/47988 -https://www.oceanexpert.org/expert/48649 -https://www.oceanexpert.org/expert/32594 -https://www.oceanexpert.org/expert/8797 -https://www.oceanexpert.org/expert/24515 -https://www.oceanexpert.org/expert/24153 -https://www.oceanexpert.org/event/2243 -https://www.oceanexpert.org/expert/34155 -https://www.oceanexpert.org/expert/37851 -https://www.oceanexpert.org/expert/533 -https://www.oceanexpert.org/event/2787 -https://www.oceanexpert.org/expert/26853 -https://www.oceanexpert.org/institution/17492 -https://www.oceanexpert.org/expert/48770 -https://www.oceanexpert.org/expert/5317 -https://www.oceanexpert.org/expert/17483 -https://www.oceanexpert.org/institution/10488 -https://www.oceanexpert.org/expert/44912 -https://www.oceanexpert.org/institution/21909 -https://www.oceanexpert.org/expert/21353 -https://www.oceanexpert.org/expert/27974 -https://www.oceanexpert.org/event/488 -https://www.oceanexpert.org/expert/40556 -https://www.oceanexpert.org/expert/35678 -https://www.oceanexpert.org/expert/28506 -https://www.oceanexpert.org/institution/21484 -https://www.oceanexpert.org/expert/46178 -https://www.oceanexpert.org/expert/731 -https://www.oceanexpert.org/expert/44154 -https://www.oceanexpert.org/expert/39251 -https://www.oceanexpert.org/expert/26400 -https://www.oceanexpert.org/expert/25853 -https://www.oceanexpert.org/institution/20747 -https://www.oceanexpert.org/expert/6516 -https://www.oceanexpert.org/institution/18855 -https://www.oceanexpert.org/expert/32275 -https://www.oceanexpert.org/expert/35227 -https://www.oceanexpert.org/expert/28426 -https://www.oceanexpert.org/expert/46447 -https://www.oceanexpert.org/expert/36084 -https://www.oceanexpert.org/expert/36748 -https://www.oceanexpert.org/expert/47346 -https://www.oceanexpert.org/institution/20064 -https://www.oceanexpert.org/expert/31204 -https://www.oceanexpert.org/institution/21141 -https://www.oceanexpert.org/expert/43794 -https://www.oceanexpert.org/institution/19467 -https://www.oceanexpert.org/expert/37992 -https://www.oceanexpert.org/institution/13360 -https://www.oceanexpert.org/expert/36793 -https://www.oceanexpert.org/institution/19120 -https://www.oceanexpert.org/expert/32783 -https://www.oceanexpert.org/expert/17204 -https://www.oceanexpert.org/expert/47589 -https://www.oceanexpert.org/institution/20757 -https://www.oceanexpert.org/expert/40670 -https://www.oceanexpert.org/expert/19675 -https://www.oceanexpert.org/institution/22008 -https://www.oceanexpert.org/expert/15603 -https://www.oceanexpert.org/expert/32122 -https://www.oceanexpert.org/event/2077 -https://www.oceanexpert.org/institution/18369 -https://www.oceanexpert.org/institution/18450 -https://www.oceanexpert.org/expert/21467 -https://www.oceanexpert.org/expert/47375 -https://www.oceanexpert.org/expert/45693 -https://www.oceanexpert.org/expert/12123 -https://www.oceanexpert.org/event/1505 -https://www.oceanexpert.org/expert/16771 -https://www.oceanexpert.org/expert/47306 -https://www.oceanexpert.org/institution/21101 -https://www.oceanexpert.org/expert/40112 -https://www.oceanexpert.org/event/1771 -https://www.oceanexpert.org/expert/42021 -https://www.oceanexpert.org/expert/39621 -https://www.oceanexpert.org/expert/47434 -https://www.oceanexpert.org/expert/42422 -https://www.oceanexpert.org/expert/44833 -https://www.oceanexpert.org/event/1293 -https://www.oceanexpert.org/expert/19974 -https://www.oceanexpert.org/expert/44014 -https://www.oceanexpert.org/event/2563 -https://www.oceanexpert.org/expert/45819 -https://www.oceanexpert.org/expert/33514 -https://www.oceanexpert.org/expert/7356 -https://www.oceanexpert.org/expert/47039 -https://www.oceanexpert.org/event/537 -https://www.oceanexpert.org/expert/37872 -https://www.oceanexpert.org/event/1344 -https://www.oceanexpert.org/event/1112 -https://www.oceanexpert.org/expert/36561 -https://www.oceanexpert.org/expert/22015 -https://www.oceanexpert.org/event/1712 -https://www.oceanexpert.org/institution/22003 -https://www.oceanexpert.org/expert/46239 -https://www.oceanexpert.org/expert/26205 -https://www.oceanexpert.org/expert/23627 -https://www.oceanexpert.org/expert/22049 -https://www.oceanexpert.org/expert/32954 -https://www.oceanexpert.org/expert/42886 -https://www.oceanexpert.org/institution/20784 -https://www.oceanexpert.org/expert/36555 -https://www.oceanexpert.org/expert/779 -https://www.oceanexpert.org/expert/16123 -https://www.oceanexpert.org/institution/10343 -https://www.oceanexpert.org/expert/38728 -https://www.oceanexpert.org/expert/4393 -https://www.oceanexpert.org/event/451 -https://www.oceanexpert.org/expert/12501 -https://www.oceanexpert.org/event/1252 -https://www.oceanexpert.org/event/2792 -https://www.oceanexpert.org/expert/22962 -https://www.oceanexpert.org/expert/44811 -https://www.oceanexpert.org/expert/36398 -https://www.oceanexpert.org/event/1961 -https://www.oceanexpert.org/event/325 -https://www.oceanexpert.org/expert/21930 -https://www.oceanexpert.org/expert/36975 -https://www.oceanexpert.org/expert/31184 -https://www.oceanexpert.org/expert/34056 -https://www.oceanexpert.org/institution/10344 -https://www.oceanexpert.org/expert/26171 -https://www.oceanexpert.org/expert/21067 -https://www.oceanexpert.org/expert/23418 -https://www.oceanexpert.org/expert/20092 -https://www.oceanexpert.org/expert/17608 -https://www.oceanexpert.org/institution/21819 -https://www.oceanexpert.org/institution/13232 -https://www.oceanexpert.org/expert/20540 -https://www.oceanexpert.org/institution/21669 -https://www.oceanexpert.org/expert/14493 -https://www.oceanexpert.org/expert/25594 -https://www.oceanexpert.org/expert/24206 -https://www.oceanexpert.org/event/2908 -https://www.oceanexpert.org/event/1028 -https://www.oceanexpert.org/expert/48459 -https://www.oceanexpert.org/expert/16216 -https://www.oceanexpert.org/event/3039 -https://www.oceanexpert.org/expert/42784 -https://www.oceanexpert.org/expert/25666 -https://www.oceanexpert.org/institution/7317 -https://www.oceanexpert.org/expert/42636 -https://www.oceanexpert.org/institution/18294 -https://www.oceanexpert.org/institution/19069 -https://www.oceanexpert.org/expert/18909 -https://www.oceanexpert.org/expert/35317 -https://www.oceanexpert.org/expert/26044 -https://www.oceanexpert.org/expert/24719 -https://www.oceanexpert.org/institution/14494 -https://www.oceanexpert.org/event/337 -https://www.oceanexpert.org/expert/35734 -https://www.oceanexpert.org/expert/27205 -https://www.oceanexpert.org/expert/21936 -https://www.oceanexpert.org/expert/36996 -https://www.oceanexpert.org/expert/37770 -https://www.oceanexpert.org/expert/24756 -https://www.oceanexpert.org/expert/17488 -https://www.oceanexpert.org/expert/32075 -https://www.oceanexpert.org/expert/35428 -https://www.oceanexpert.org/expert/17235 -https://www.oceanexpert.org/expert/18846 -https://www.oceanexpert.org/institution/18063 -https://www.oceanexpert.org/expert/35801 -https://www.oceanexpert.org/event/2608 -https://www.oceanexpert.org/expert/30099 -https://www.oceanexpert.org/institution/21809 -https://www.oceanexpert.org/institution/21822 -https://www.oceanexpert.org/institution/18938 -https://www.oceanexpert.org/expert/36781 -https://www.oceanexpert.org/expert/35419 -https://www.oceanexpert.org/expert/45416 -https://www.oceanexpert.org/expert/20228 -https://www.oceanexpert.org/expert/31906 -https://www.oceanexpert.org/expert/2078 -https://www.oceanexpert.org/expert/19997 -https://www.oceanexpert.org/expert/25817 -https://www.oceanexpert.org/expert/31671 -https://www.oceanexpert.org/expert/47059 -https://www.oceanexpert.org/expert/19971 -https://www.oceanexpert.org/expert/7211 -https://www.oceanexpert.org/expert/16959 -https://www.oceanexpert.org/expert/46495 -https://www.oceanexpert.org/expert/38195 -https://www.oceanexpert.org/expert/24736 -https://www.oceanexpert.org/expert/32225 -https://www.oceanexpert.org/expert/36131 -https://www.oceanexpert.org/expert/40291 -https://www.oceanexpert.org/expert/48938 -https://www.oceanexpert.org/expert/1513 -https://www.oceanexpert.org/institution/14990 -https://www.oceanexpert.org/expert/42511 -https://www.oceanexpert.org/institution/20155 -https://www.oceanexpert.org/expert/37455 -https://www.oceanexpert.org/event/1055 -https://www.oceanexpert.org/institution/20571 -https://www.oceanexpert.org/institution/8541 -https://www.oceanexpert.org/expert/48380 -https://www.oceanexpert.org/expert/46703 -https://www.oceanexpert.org/expert/37568 -https://www.oceanexpert.org/institution/22032 -https://www.oceanexpert.org/institution/20789 -https://www.oceanexpert.org/institution/16235 -https://www.oceanexpert.org/expert/23157 -https://www.oceanexpert.org/institution/11808 -https://www.oceanexpert.org/institution/20161 -https://www.oceanexpert.org/expert/40015 -https://www.oceanexpert.org/expert/47125 -https://www.oceanexpert.org/institution/21926 -https://www.oceanexpert.org/expert/44606 -https://www.oceanexpert.org/institution/18165 -https://www.oceanexpert.org/expert/45718 -https://www.oceanexpert.org/institution/17555 -https://www.oceanexpert.org/expert/36319 -https://www.oceanexpert.org/expert/14027 -https://www.oceanexpert.org/institution/11647 -https://www.oceanexpert.org/expert/27378 -https://www.oceanexpert.org/institution/10013 -https://www.oceanexpert.org/institution/19562 -https://www.oceanexpert.org/institution/20417 -https://www.oceanexpert.org/expert/36635 -https://www.oceanexpert.org/expert/29857 -https://www.oceanexpert.org/expert/36247 -https://www.oceanexpert.org/expert/26549 -https://www.oceanexpert.org/institution/18070 -https://www.oceanexpert.org/expert/46330 -https://www.oceanexpert.org/event/1174 -https://www.oceanexpert.org/expert/25130 -https://www.oceanexpert.org/institution/16638 -https://www.oceanexpert.org/expert/27165 -https://www.oceanexpert.org/expert/20543 -https://www.oceanexpert.org/expert/20330 -https://www.oceanexpert.org/event/2231 -https://www.oceanexpert.org/expert/40048 -https://www.oceanexpert.org/institution/16986 -https://www.oceanexpert.org/expert/32603 -https://www.oceanexpert.org/expert/23833 -https://www.oceanexpert.org/expert/33629 -https://www.oceanexpert.org/expert/26175 -https://www.oceanexpert.org/institution/19693 -https://www.oceanexpert.org/institution/18494 -https://www.oceanexpert.org/expert/30735 -https://www.oceanexpert.org/expert/47123 -https://www.oceanexpert.org/expert/6680 -https://www.oceanexpert.org/expert/649 -https://www.oceanexpert.org/event/2178 -https://www.oceanexpert.org/event/1314 -https://www.oceanexpert.org/institution/21630 -https://www.oceanexpert.org/expert/45255 -https://www.oceanexpert.org/expert/8862 -https://www.oceanexpert.org/expert/16591 -https://www.oceanexpert.org/expert/27213 -https://www.oceanexpert.org/institution/18894 -https://www.oceanexpert.org/institution/16886 -https://www.oceanexpert.org/event/695 -https://www.oceanexpert.org/expert/39260 -https://www.oceanexpert.org/expert/23866 -https://www.oceanexpert.org/event/491 -https://www.oceanexpert.org/event/2672 -https://www.oceanexpert.org/expert/37322 -https://www.oceanexpert.org/institution/13292 -https://www.oceanexpert.org/expert/13495 -https://www.oceanexpert.org/expert/18829 -https://www.oceanexpert.org/expert/24399 -https://www.oceanexpert.org/institution/14990 -https://www.oceanexpert.org/institution/13503 -https://www.oceanexpert.org/institution/11817 -https://www.oceanexpert.org/expert/24671 -https://www.oceanexpert.org/institution/6297 -https://www.oceanexpert.org/institution/7221 -https://www.oceanexpert.org/expert/25854 -https://www.oceanexpert.org/expert/27140 -https://www.oceanexpert.org/institution/21171 -https://www.oceanexpert.org/expert/16591 -https://www.oceanexpert.org/expert/25994 -https://www.oceanexpert.org/institution/21017 -https://www.oceanexpert.org/expert/33729 -https://www.oceanexpert.org/institution/17109 -https://www.oceanexpert.org/institution/14009 -https://www.oceanexpert.org/expert/47171 -https://www.oceanexpert.org/expert/46493 -https://www.oceanexpert.org/expert/22535 -https://www.oceanexpert.org/expert/39193 -https://www.oceanexpert.org/institution/13653 -https://www.oceanexpert.org/event/193 -https://www.oceanexpert.org/expert/7929 -https://www.oceanexpert.org/event/2783 -https://www.oceanexpert.org/expert/34563 -https://www.oceanexpert.org/expert/17339 -https://www.oceanexpert.org/expert/35497 -https://www.oceanexpert.org/expert/44702 -https://www.oceanexpert.org/institution/20176 -https://www.oceanexpert.org/event/1447 -https://www.oceanexpert.org/expert/28273 -https://www.oceanexpert.org/expert/43010 -https://www.oceanexpert.org/institution/19715 -https://www.oceanexpert.org/expert/45060 -https://www.oceanexpert.org/institution/15007 -https://www.oceanexpert.org/expert/25975 -https://www.oceanexpert.org/expert/44911 -https://www.oceanexpert.org/institution/18370 -https://www.oceanexpert.org/expert/39469 -https://www.oceanexpert.org/expert/38008 -https://www.oceanexpert.org/expert/29615 -https://www.oceanexpert.org/expert/36554 -https://www.oceanexpert.org/institution/16398 -https://www.oceanexpert.org/expert/12119 -https://www.oceanexpert.org/expert/20106 -https://www.oceanexpert.org/expert/19584 -https://www.oceanexpert.org/expert/32477 -https://www.oceanexpert.org/institution/12158 -https://www.oceanexpert.org/expert/22767 -https://www.oceanexpert.org/expert/18195 -https://www.oceanexpert.org/expert/35840 -https://www.oceanexpert.org/institution/19817 -https://www.oceanexpert.org/expert/48359 -https://www.oceanexpert.org/expert/8657 -https://www.oceanexpert.org/expert/45754 -https://www.oceanexpert.org/event/2167 -https://www.oceanexpert.org/expert/1764 -https://www.oceanexpert.org/institution/12604 -https://www.oceanexpert.org/expert/14503 -https://www.oceanexpert.org/institution/20462 -https://www.oceanexpert.org/expert/45845 -https://www.oceanexpert.org/event/437 -https://www.oceanexpert.org/institution/21370 -https://www.oceanexpert.org/event/524 -https://www.oceanexpert.org/institution/75 -https://www.oceanexpert.org/expert/29234 -https://www.oceanexpert.org/expert/16517 -https://www.oceanexpert.org/event/1104 -https://www.oceanexpert.org/institution/12083 -https://www.oceanexpert.org/expert/22094 -https://www.oceanexpert.org/expert/24626 -https://www.oceanexpert.org/institution/10469 -https://www.oceanexpert.org/event/123 -https://www.oceanexpert.org/expert/32503 -https://www.oceanexpert.org/institution/11145 -https://www.oceanexpert.org/event/2159 -https://www.oceanexpert.org/event/955 -https://www.oceanexpert.org/expert/15667 -https://www.oceanexpert.org/expert/47303 -https://www.oceanexpert.org/expert/23708 -https://www.oceanexpert.org/expert/19859 -https://www.oceanexpert.org/expert/22966 -https://www.oceanexpert.org/institution/6882 -https://www.oceanexpert.org/expert/26172 -https://www.oceanexpert.org/expert/46235 -https://www.oceanexpert.org/institution/19422 -https://www.oceanexpert.org/institution/18243 -https://www.oceanexpert.org/expert/24485 -https://www.oceanexpert.org/expert/24423 -https://www.oceanexpert.org/expert/45714 -https://www.oceanexpert.org/institution/19452 -https://www.oceanexpert.org/expert/29431 -https://www.oceanexpert.org/event/183 -https://www.oceanexpert.org/institution/20299 -https://www.oceanexpert.org/institution/18882 -https://www.oceanexpert.org/expert/26836 -https://www.oceanexpert.org/expert/13197 -https://www.oceanexpert.org/expert/27478 -https://www.oceanexpert.org/event/823 -https://www.oceanexpert.org/institution/10941 -https://www.oceanexpert.org/expert/43393 -https://www.oceanexpert.org/expert/7855 -https://www.oceanexpert.org/expert/43079 -https://www.oceanexpert.org/institution/21463 -https://www.oceanexpert.org/institution/11007 -https://www.oceanexpert.org/expert/20536 -https://www.oceanexpert.org/institution/21742 -https://www.oceanexpert.org/expert/19289 -https://www.oceanexpert.org/institution/14950 -https://www.oceanexpert.org/expert/47007 -https://www.oceanexpert.org/expert/13441 -https://www.oceanexpert.org/expert/45161 -https://www.oceanexpert.org/expert/35903 -https://www.oceanexpert.org/expert/14187 -https://www.oceanexpert.org/expert/10852 -https://www.oceanexpert.org/expert/45549 -https://www.oceanexpert.org/event/2324 -https://www.oceanexpert.org/expert/45300 -https://www.oceanexpert.org/institution/18899 -https://www.oceanexpert.org/expert/28360 -https://www.oceanexpert.org/institution/19107 -https://www.oceanexpert.org/expert/8784 -https://www.oceanexpert.org/institution/22116 -https://www.oceanexpert.org/expert/40597 -https://www.oceanexpert.org/expert/37835 -https://www.oceanexpert.org/event/2869 -https://www.oceanexpert.org/expert/29110 -https://www.oceanexpert.org/expert/15874 -https://www.oceanexpert.org/expert/33881 -https://www.oceanexpert.org/expert/11171 -https://www.oceanexpert.org/expert/38119 -https://www.oceanexpert.org/event/883 -https://www.oceanexpert.org/institution/21400 -https://www.oceanexpert.org/expert/25036 -https://www.oceanexpert.org/expert/560 -https://www.oceanexpert.org/expert/29728 -https://www.oceanexpert.org/institution/6852 -https://www.oceanexpert.org/expert/40524 -https://www.oceanexpert.org/expert/3650 -https://www.oceanexpert.org/expert/21692 -https://www.oceanexpert.org/expert/17265 -https://www.oceanexpert.org/institution/14359 -https://www.oceanexpert.org/expert/36258 -https://www.oceanexpert.org/expert/18289 -https://www.oceanexpert.org/institution/18286 -https://www.oceanexpert.org/institution/16687 -https://www.oceanexpert.org/expert/46250 -https://www.oceanexpert.org/expert/45619 -https://www.oceanexpert.org/expert/47591 -https://www.oceanexpert.org/expert/46713 -https://www.oceanexpert.org/institution/19728 -https://www.oceanexpert.org/event/397 -https://www.oceanexpert.org/expert/43327 -https://www.oceanexpert.org/institution/13791 -https://www.oceanexpert.org/expert/23560 -https://www.oceanexpert.org/expert/15919 -https://www.oceanexpert.org/expert/21190 -https://www.oceanexpert.org/institution/15155 -https://www.oceanexpert.org/expert/4779 -https://www.oceanexpert.org/expert/33284 -https://www.oceanexpert.org/event/478 -https://www.oceanexpert.org/event/2576 -https://www.oceanexpert.org/expert/48548 -https://www.oceanexpert.org/expert/33637 -https://www.oceanexpert.org/institution/19415 -https://www.oceanexpert.org/institution/21071 -https://www.oceanexpert.org/expert/26763 -https://www.oceanexpert.org/expert/5715 -https://www.oceanexpert.org/expert/46899 -https://www.oceanexpert.org/expert/22209 -https://www.oceanexpert.org/institution/16676 -https://www.oceanexpert.org/expert/44776 -https://www.oceanexpert.org/expert/23043 -https://www.oceanexpert.org/expert/23875 -https://www.oceanexpert.org/institution/20934 -https://www.oceanexpert.org/institution/11774 -https://www.oceanexpert.org/expert/14668 -https://www.oceanexpert.org/expert/21205 -https://www.oceanexpert.org/expert/44888 -https://www.oceanexpert.org/expert/40258 -https://www.oceanexpert.org/expert/35761 -https://www.oceanexpert.org/institution/14840 -https://www.oceanexpert.org/expert/32878 -https://www.oceanexpert.org/institution/18709 -https://www.oceanexpert.org/expert/24561 -https://www.oceanexpert.org/expert/31419 -https://www.oceanexpert.org/expert/32360 -https://www.oceanexpert.org/institution/18923 -https://www.oceanexpert.org/expert/48401 -https://www.oceanexpert.org/institution/21904 -https://www.oceanexpert.org/expert/28467 -https://www.oceanexpert.org/expert/29098 -https://www.oceanexpert.org/expert/16847 -https://www.oceanexpert.org/institution/10057 -https://www.oceanexpert.org/event/718 -https://www.oceanexpert.org/expert/21659 -https://www.oceanexpert.org/expert/43606 -https://www.oceanexpert.org/expert/24402 -Len sitemap: 29492 Len prov: 86586 Len diff: 138 -print diff urls ----------------------------------------------- -https://www.oceanexpert.org/expert/41604 -https://www.oceanexpert.org/expert/43625 -https://www.oceanexpert.org/expert/47920 -https://www.oceanexpert.org/expert/47947 -https://www.oceanexpert.org/expert/49024 -https://www.oceanexpert.org/expert/49063 -https://www.oceanexpert.org/expert/49080 -https://www.oceanexpert.org/expert/49081 -https://www.oceanexpert.org/expert/49082 -https://www.oceanexpert.org/expert/49083 -https://www.oceanexpert.org/expert/49084 -https://www.oceanexpert.org/expert/49086 -https://www.oceanexpert.org/expert/49088 -https://www.oceanexpert.org/expert/49089 -https://www.oceanexpert.org/expert/49092 -https://www.oceanexpert.org/expert/49094 -https://www.oceanexpert.org/expert/49096 -https://www.oceanexpert.org/expert/49098 -https://www.oceanexpert.org/expert/49099 -https://www.oceanexpert.org/expert/49100 -https://www.oceanexpert.org/expert/49103 -https://www.oceanexpert.org/expert/49106 -https://www.oceanexpert.org/expert/49108 -https://www.oceanexpert.org/expert/49110 -https://www.oceanexpert.org/expert/49111 -https://www.oceanexpert.org/expert/49112 -https://www.oceanexpert.org/expert/49114 -https://www.oceanexpert.org/expert/49116 -https://www.oceanexpert.org/expert/49118 -https://www.oceanexpert.org/expert/49120 -https://www.oceanexpert.org/expert/49121 -https://www.oceanexpert.org/expert/49123 -https://www.oceanexpert.org/expert/49124 -https://www.oceanexpert.org/expert/49126 -https://www.oceanexpert.org/expert/49131 -https://www.oceanexpert.org/expert/49133 -https://www.oceanexpert.org/expert/49134 -https://www.oceanexpert.org/expert/49137 -https://www.oceanexpert.org/expert/49138 -https://www.oceanexpert.org/expert/49143 -https://www.oceanexpert.org/expert/49145 -https://www.oceanexpert.org/expert/49146 -https://www.oceanexpert.org/expert/49148 -https://www.oceanexpert.org/expert/49149 -https://www.oceanexpert.org/expert/49152 -https://www.oceanexpert.org/expert/49154 -https://www.oceanexpert.org/expert/49155 -https://www.oceanexpert.org/expert/49156 -https://www.oceanexpert.org/expert/49158 -https://www.oceanexpert.org/expert/49159 -https://www.oceanexpert.org/expert/49160 -https://www.oceanexpert.org/expert/49161 -https://www.oceanexpert.org/expert/49167 -https://www.oceanexpert.org/expert/49168 -https://www.oceanexpert.org/expert/49170 -https://www.oceanexpert.org/expert/49171 -https://www.oceanexpert.org/expert/49172 -https://www.oceanexpert.org/expert/49176 -https://www.oceanexpert.org/expert/49177 -https://www.oceanexpert.org/expert/49178 -https://www.oceanexpert.org/expert/49179 -https://www.oceanexpert.org/expert/49181 -https://www.oceanexpert.org/expert/49182 -https://www.oceanexpert.org/expert/49183 -https://www.oceanexpert.org/expert/49184 -https://www.oceanexpert.org/expert/49185 -https://www.oceanexpert.org/expert/49186 -https://www.oceanexpert.org/expert/49187 -https://www.oceanexpert.org/expert/49191 -https://www.oceanexpert.org/expert/49192 -https://www.oceanexpert.org/expert/49194 -https://www.oceanexpert.org/expert/49197 -https://www.oceanexpert.org/expert/49200 -https://www.oceanexpert.org/expert/49203 -https://www.oceanexpert.org/expert/49204 -https://www.oceanexpert.org/expert/49208 -https://www.oceanexpert.org/expert/49210 -https://www.oceanexpert.org/expert/49211 -https://www.oceanexpert.org/expert/49212 -https://www.oceanexpert.org/expert/49213 -https://www.oceanexpert.org/expert/49214 -https://www.oceanexpert.org/expert/49219 -https://www.oceanexpert.org/expert/49222 -https://www.oceanexpert.org/expert/49224 -https://www.oceanexpert.org/expert/49234 -https://www.oceanexpert.org/institution/22187 -https://www.oceanexpert.org/institution/22188 -https://www.oceanexpert.org/institution/22189 -https://www.oceanexpert.org/institution/22190 -https://www.oceanexpert.org/institution/22191 -https://www.oceanexpert.org/institution/22192 -https://www.oceanexpert.org/institution/22193 -https://www.oceanexpert.org/institution/22194 -https://www.oceanexpert.org/institution/22195 -https://www.oceanexpert.org/institution/22196 -https://www.oceanexpert.org/institution/22197 -https://www.oceanexpert.org/institution/22198 -https://www.oceanexpert.org/institution/22200 -https://www.oceanexpert.org/institution/22201 -https://www.oceanexpert.org/institution/22202 -https://www.oceanexpert.org/institution/22203 -https://www.oceanexpert.org/institution/22204 -https://www.oceanexpert.org/institution/22205 -https://www.oceanexpert.org/institution/22206 -https://www.oceanexpert.org/institution/22207 -https://www.oceanexpert.org/institution/22208 -https://www.oceanexpert.org/institution/22209 -https://www.oceanexpert.org/institution/22210 -https://www.oceanexpert.org/institution/22212 -https://www.oceanexpert.org/institution/22213 -https://www.oceanexpert.org/institution/22214 -https://www.oceanexpert.org/institution/22215 -https://www.oceanexpert.org/institution/22216 -https://www.oceanexpert.org/institution/22217 -https://www.oceanexpert.org/institution/22218 -https://www.oceanexpert.org/institution/22220 -https://www.oceanexpert.org/institution/22221 -https://www.oceanexpert.org/institution/22222 -https://www.oceanexpert.org/institution/22223 -https://www.oceanexpert.org/institution/22224 -https://www.oceanexpert.org/institution/22225 -https://www.oceanexpert.org/event/802 -https://www.oceanexpert.org/event/2607 -https://www.oceanexpert.org/event/3097 -https://www.oceanexpert.org/event/3302 -https://www.oceanexpert.org/event/3303 -https://www.oceanexpert.org/event/3304 -https://www.oceanexpert.org/event/3305 -https://www.oceanexpert.org/event/3306 -https://www.oceanexpert.org/event/3308 -https://www.oceanexpert.org/event/3309 -https://www.oceanexpert.org/event/3310 -https://www.oceanexpert.org/event/3311 -https://www.oceanexpert.org/event/3314 -https://www.oceanexpert.org/event/3308 -https://www.oceanexpert.org/event/3309 -https://www.oceanexpert.org/event/3310 -https://www.oceanexpert.org/event/3311 From e8efad4828558dee8d8217210c21b4027fdb4207 Mon Sep 17 00:00:00 2001 From: Douglas Fils Date: Thu, 20 Apr 2023 12:52:01 -0500 Subject: [PATCH 13/55] removing bolt, couple more small edits --- go.mod | 3 --- internal/summoner/acquire/acquire.go | 1 - 2 files changed, 4 deletions(-) diff --git a/go.mod b/go.mod index 0a0f3d9e..def2ed8f 100644 --- a/go.mod +++ b/go.mod @@ -99,9 +99,6 @@ require ( gopkg.in/yaml.v3 v3.0.1 // indirect ) -// just using bolt github.com/boltdb/bolt would be ok... but it complains if we mix. -//replace github.com/boltdb/bolt v1.3.1 => "go.etcd.io/bbolt" v1.3.6 - require ( github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13 github.com/orandin/lumberjackrus v1.0.1 diff --git a/internal/summoner/acquire/acquire.go b/internal/summoner/acquire/acquire.go index 58dcf780..24901c75 100644 --- a/internal/summoner/acquire/acquire.go +++ b/internal/summoner/acquire/acquire.go @@ -91,7 +91,6 @@ func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, error) { func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string, wg *sync.WaitGroup, repologger *log.Logger, repoStats *common.RepoStats) { - //func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string, wg *sync.WaitGroup, db *bolt.DB) { bucketName, tc, delay, err := getConfig(v1, sourceName) if err != nil { From 0cdcc5f8b9111022c7f80bca992eb3c4a51aaf4f Mon Sep 17 00:00:00 2001 From: David Valentine Date: Fri, 21 Apr 2023 11:34:39 -0700 Subject: [PATCH 14/55] Better injection of version --- .github/workflows/release_gleaner.yml | 6 +++++- .github/workflows/release_gleaner_v3.yml | 2 +- pkg/cli/version.go | 12 ++++++------ pkg/gleaner.go | 2 ++ 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release_gleaner.yml b/.github/workflows/release_gleaner.yml index 3ff956d5..723e5f72 100644 --- a/.github/workflows/release_gleaner.yml +++ b/.github/workflows/release_gleaner.yml @@ -27,6 +27,10 @@ jobs: # - name: Run tests # run: go test -v -p=1 -timeout=0 ./... + - name: Set variables + run: | + VER=$(cat VERSION) + echo "VERSION=$VER" >> $GITHUB_ENV - uses: wangyoucao577/go-release-action@v1.22 with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -34,6 +38,6 @@ jobs: goarch: ${{ matrix.goarch }} project_path: "./cmd/gleaner" binary_name: "gleaner" - ldflags: "-s -w -X main.VERSION=${{ env.VERSION }}" + ldflags: "-s -w -X main.VERSION=${{ env.VERSION }} -X github.com/gleanerio/gleaner/pkg.VERSION=${{ env.VERSION }}" extra_files: README.md docs/ configs/ scripts/ assets/ # extra_files: LICENSE README.md diff --git a/.github/workflows/release_gleaner_v3.yml b/.github/workflows/release_gleaner_v3.yml index d3801ab3..4104c513 100644 --- a/.github/workflows/release_gleaner_v3.yml +++ b/.github/workflows/release_gleaner_v3.yml @@ -37,6 +37,6 @@ jobs: goarch: ${{ matrix.goarch }} project_path: "./cmd/glcon" binary_name: "glcon" - ldflags: "-s -w -X main.VERSION=${{ env.VERSION }}" + ldflags: "-s -w -X main.VERSION=${{ env.VERSION }} -X github.com/gleanerio/gleaner/pkg.VERSION=${{ env.VERSION }}" extra_files: README.md docs/ configs/ scripts/ assets/ # extra_files: LICENSE README.md diff --git a/pkg/cli/version.go b/pkg/cli/version.go index 0ed3b02f..bb81b132 100644 --- a/pkg/cli/version.go +++ b/pkg/cli/version.go @@ -1,6 +1,8 @@ package cli import ( + "fmt" + "github.com/gleanerio/gleaner/pkg" log "github.com/sirupsen/logrus" "github.com/spf13/cobra" ) @@ -11,13 +13,11 @@ var versionCmd = &cobra.Command{ TraverseChildren: true, Short: "returns version ", Long: `returns version -`, PersistentPreRun: func(cmd *cobra.Command, args []string) { - initGleanerConfig() - }, +`, Run: func(cmd *cobra.Command, args []string) { - log.Info("gleaner called") - log.Info("gleaner called") + log.Info("version called") + returnVersion() }, } @@ -35,5 +35,5 @@ func init() { } func returnVersion() { - log.Println("Version") + fmt.Println("Version: " + pkg.VERSION) } diff --git a/pkg/gleaner.go b/pkg/gleaner.go index ce9839ab..21eba7cb 100644 --- a/pkg/gleaner.go +++ b/pkg/gleaner.go @@ -15,6 +15,8 @@ import ( //"os" ) +var VERSION string + func Cli(mc *minio.Client, v1 *viper.Viper, db *bolt.DB) error { mcfg := v1.GetStringMapString("gleaner") From 4eefd730ad32e34578a117fe39a24c130fd234c9 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sat, 22 Apr 2023 11:05:57 -0700 Subject: [PATCH 15/55] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index c0f1f8e0..cab5efce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v3.0.9_dev2 +v3.0.9_dev3 From 2fd50b2a76b8dd707dc428fbb4da3e0f119726c9 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 23 Apr 2023 20:50:43 -0700 Subject: [PATCH 16/55] #198 headless never is headless wait < 0 --- go.mod | 2 -- go.sum | 4 --- internal/summoner/acquire/acquire.go | 33 +++++++++++-------------- internal/summoner/acquire/api.go | 2 +- internal/summoner/acquire/headlessNG.go | 4 +++ 5 files changed, 20 insertions(+), 25 deletions(-) diff --git a/go.mod b/go.mod index def2ed8f..11e572db 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,6 @@ require ( github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48 github.com/gorilla/mux v1.8.0 github.com/gosuri/uiprogress v0.0.1 - github.com/k4s/webrowser v0.0.0-20160107091637-934d526d0f27 github.com/knakk/rdf v0.0.0-20190304171630-8521bf4c5042 github.com/mafredri/cdp v0.32.0 github.com/minio/minio-go/v7 v7.0.52 @@ -57,7 +56,6 @@ require ( github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect - github.com/k4s/phantomgo v0.0.0-20161104020322-11963773aa04 // indirect github.com/klauspost/compress v1.16.0 // indirect github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/magiconair/properties v1.8.6 // indirect diff --git a/go.sum b/go.sum index 3fee5249..8d5454f4 100644 --- a/go.sum +++ b/go.sum @@ -386,10 +386,6 @@ github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/X github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= -github.com/k4s/phantomgo v0.0.0-20161104020322-11963773aa04 h1:tA/Xc0VnJtHIdxAML0WraKG+ErOYVgJ6oDcuxOloZOM= -github.com/k4s/phantomgo v0.0.0-20161104020322-11963773aa04/go.mod h1:YWxksSger0gUVO0tKEY/mVkyBTPoKAf4KX/S8Vt7ndc= -github.com/k4s/webrowser v0.0.0-20160107091637-934d526d0f27 h1:YBHxM4fmxQghvs3Ty/rQIPnY+tdCFheIOMj/h0Zw0A8= -github.com/k4s/webrowser v0.0.0-20160107091637-934d526d0f27/go.mod h1:kd1f/k6xHQrfwfszgeiZklsPzBNJJj/el6cjp86YowQ= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/godepgraph v0.0.0-20190626013829-57a7e4a651a9/go.mod h1:Gb5YEgxqiSSVrXKWQxDcKoCM94NO5QAwOwTaVmIUAMI= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= diff --git a/internal/summoner/acquire/acquire.go b/internal/summoner/acquire/acquire.go index 24901c75..bf10150d 100644 --- a/internal/summoner/acquire/acquire.go +++ b/internal/summoner/acquire/acquire.go @@ -51,17 +51,17 @@ func ResRetrieve(v1 *viper.Viper, mc *minio.Client, m map[string][]string, runSt wg.Wait() } -func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, error) { +func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, int, error) { bucketName, err := configTypes.GetBucketName(v1) if err != nil { - return bucketName, 0, 0, err + return bucketName, 0, 0, 0, err } var mcfg configTypes.Summoner mcfg, err = configTypes.ReadSummmonerConfig(v1.Sub("summoner")) if err != nil { - return bucketName, 0, 0, err + return bucketName, 0, 0, 0, err } // Set default thread counts and global delay tc := mcfg.Threads @@ -74,9 +74,9 @@ func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, error) { // look for a domain specific override crawl delay sources, err := configTypes.GetSources(v1) source, err := configTypes.GetSourceByName(sources, sourceName) - + hw := source.HeadlessWait if err != nil { - return bucketName, tc, delay, err + return bucketName, tc, delay, hw, err } if source.Delay != 0 && source.Delay > delay { @@ -84,15 +84,14 @@ func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, error) { tc = 1 log.Info("Crawl delay set to ", delay, " for ", sourceName) } - log.Info("Thread count ", tc, " delay ", delay) - return bucketName, tc, delay, nil + return bucketName, tc, delay, hw, nil } func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string, wg *sync.WaitGroup, repologger *log.Logger, repoStats *common.RepoStats) { - bucketName, tc, delay, err := getConfig(v1, sourceName) + bucketName, tc, delay, headlessWait, err := getConfig(v1, sourceName) if err != nil { // trying to read a source, so let's not kill everything with a panic/fatal log.Error("Error reading config file ", err) @@ -164,16 +163,14 @@ func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName stri // even is no JSON-LD packages found, record the event of checking this URL if len(jsonlds) < 1 { // TODO is her where I then try headless, and scope the following for into an else? - log.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Info("Direct access failed, trying headless for ", urlloc) - repologger.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Error() // this needs to go into the issues file - err := PageRenderAndUpload(v1, mc, 60*time.Second, urlloc, sourceName, repologger, repoStats) // TODO make delay configurable - - if err != nil { - log.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error("PageRenderAndUpload ", urlloc, "::", err) - repologger.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error(err) - } - if err != nil { - log.Error("DB Update", urlloc, "::", err) + if headlessWait >= 0 { + log.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Info("Direct access failed, trying headless for ", urlloc) + repologger.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Error() // this needs to go into the issues file + err := PageRenderAndUpload(v1, mc, 60*time.Second, urlloc, sourceName, repologger, repoStats) // TODO make delay configurable + if err != nil { + log.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error("PageRenderAndUpload ", urlloc, "::", err) + repologger.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error(err) + } } } else { diff --git a/internal/summoner/acquire/api.go b/internal/summoner/acquire/api.go index fd831d8c..b7f9409f 100644 --- a/internal/summoner/acquire/api.go +++ b/internal/summoner/acquire/api.go @@ -57,7 +57,7 @@ func RetrieveAPIData(apiSources []configTypes.Sources, mc *minio.Client, runStat func getAPISource(v1 *viper.Viper, mc *minio.Client, source configTypes.Sources, wg *sync.WaitGroup, repologger *log.Logger, repoStats *common.RepoStats) { - bucketName, tc, delay, err := getConfig(v1, source.Name) + bucketName, tc, delay, _, err := getConfig(v1, source.Name) // _ is headless wait if err != nil { // trying to read a source, so let's not kill everything with a panic/fatal log.Error("Error reading config file ", err) diff --git a/internal/summoner/acquire/headlessNG.go b/internal/summoner/acquire/headlessNG.go index 122d8e66..65742f5a 100644 --- a/internal/summoner/acquire/headlessNG.go +++ b/internal/summoner/acquire/headlessNG.go @@ -183,6 +183,10 @@ func PageRender(v1 *viper.Viper, timeout time.Duration, url, k string, repologge sources, err := configTypes.GetSources(v1) source, err := configTypes.GetSourceByName(sources, k) headlessWait := source.HeadlessWait + if headlessWait < 0 { + log.Info("Headless wait on a headless configured to less that zero. Setting to 0") + headlessWait = 0 // if someone screws up the config, be good + } if timeout*time.Duration(retries) < time.Duration(headlessWait)*time.Second { timeout = time.Duration(headlessWait) * time.Second From e8acbdf77c0ae2155ea21e22c9e353a87965d0a4 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Mon, 24 Apr 2023 10:35:34 -0700 Subject: [PATCH 17/55] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index cab5efce..6dd96157 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v3.0.9_dev3 +v3.0.9_dev4 From ca988384d57dc80887b62595e6aa4a134baa09ff Mon Sep 17 00:00:00 2001 From: David Valentine Date: Fri, 28 Apr 2023 15:09:59 -0700 Subject: [PATCH 18/55] add a couple of example jsonld files --- resoruces/jsonld/opencore_csdo_do.jsonld | 77 +++++++++++++++++++++++ resoruces/jsonld/r2r_id_doi_null.jsonld | 78 ++++++++++++++++++++++++ 2 files changed, 155 insertions(+) create mode 100644 resoruces/jsonld/opencore_csdo_do.jsonld create mode 100644 resoruces/jsonld/r2r_id_doi_null.jsonld diff --git a/resoruces/jsonld/opencore_csdo_do.jsonld b/resoruces/jsonld/opencore_csdo_do.jsonld new file mode 100644 index 00000000..4f7419f3 --- /dev/null +++ b/resoruces/jsonld/opencore_csdo_do.jsonld @@ -0,0 +1,77 @@ + + [ + { + "@graph": [ + { + "@id": "_:bbj6tcaftr9b9lopa6ebg", + "@type": [ + "https://schema.org/PropertyValue" + ], + "https://schema.org/propertyID": [ + { + "@value": "SHA256" + } + ], + "https://schema.org/value": [ + { + "@value": "2e754b001472bab1ecba463a2784b97c0b8bbc5f6e3d19d9cbcc8b6807df8bdb" + } + ] + }, + { + "@id": "https://opencoredata.org/id/csdco/do/2e754b001472bab1ecba463a2784b97c0b8bbc5f6e3d19d9cbcc8b6807df8bdb", + "@type": [ + "http://www.schema.org/DigitalDocument" + ], + "https://schema.org/additionType": [ + { + "@id": "https://opencoredata.org/voc/csdco/v1/Image" + } + ], + "https://schema.org/dateCreated": [ + { + "@value": "2016-10-26" + } + ], + "https://schema.org/description": [ + { + "@value": "Digital object of type Images named GOTHOT-GND16-1A-5L-1-W.jpg for CSDCO project GOTHOT" + } + ], + "https://schema.org/encodingFormat": [ + { + "@value": "image/jpeg" + } + ], + "https://schema.org/identifier": [ + { + "@id": "_:bbj6tcaftr9b9lopa6ebg" + } + ], + "https://schema.org/isRelatedTo": [ + { + "@value": "GOTHOT" + } + ], + "https://schema.org/license": [ + { + "@id": "http://example.com/cc0.html" + } + ], + "https://schema.org/name": [ + { + "@value": "GOTHOT-GND16-1A-5L-1-W.jpg" + } + ], + "https://schema.org/url": [ + { + "@id": "https://opencoredata.org/id/csdco/do/2e754b001472bab1ecba463a2784b97c0b8bbc5f6e3d19d9cbcc8b6807df8bdb" + } + ] + } + ], + "@id": "https://opencoredata.org/objectgraph/id/2e754b001472bab1ecba463a2784b97c0b8bbc5f6e3d19d9cbcc8b6807df8bdb" + } +] + + \ No newline at end of file diff --git a/resoruces/jsonld/r2r_id_doi_null.jsonld b/resoruces/jsonld/r2r_id_doi_null.jsonld new file mode 100644 index 00000000..ef0dfc5b --- /dev/null +++ b/resoruces/jsonld/r2r_id_doi_null.jsonld @@ -0,0 +1,78 @@ +{ + "@context": "https://schema.org/", + "@type": "Dataset", + "@id": "doi:null", + "additionalType": [ + "geolink:Dataset", + "vivo:Dataset" + ], + "name": "CH0509 ctd (SeaBird SBE-911+)", + "description": "This is a placeholder for the abstract for this fileset.", + "datePublished": null, + "keywords": [ + "HatterasCH0509ctdCTDSeaBird SBE-911+102458Sea-Bird CTD original filesCH0509 ctd (SeaBird SBE-911+)rawr2rctd" + ], + "creator": { + "@type": "Person", + "additionalType": "geolink:Person", + "name": "Unknown", + "affiliation": { + "@type": "Organization", + "name": "Unknown" + } + }, + "distribution": [ + { + "@type": "DataDownload", + "@id": "http://dx.doi.org/null", + "additionalType": "dcat:distribution", + "url": "http://dx.doi.org/null", + "encodingFormat": "Sea-Bird CTD original files", + "name": "landing page", + "description": "Link to a web page related to the resource. Service Protocol: Link to a web page related to the resource.. Link Function: information" + }, + { + "@type": "DataDownload", + "@id": "https://www.rvdata.us/search/fileset/102458", + "additionalType": "dcat:distribution", + "url": "https://www.rvdata.us/search/fileset/102458", + "encodingFormat": "Sea-Bird CTD original files", + "name": "landing page", + "description": "Link to a web page related to the resource. Service Protocol: Link to a web page related to the resource.. Link Function: information" + } + ], + "identifier": { + "@type": "PropertyValue", + "propertyID": "dataset identifier", + "value": "doi:null" + }, + "license": [ + { + "@type": "CreativeWork", + "url": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/", + "name": "MD_Constraints", + "description": "useLimitation: Creative Commons Attribution-NonCommercial-Share Alike 3.0 United States [CC BY-NC-SA 3.0]." + }, + { + "@type": "CreativeWork", + "name": "MD_LegalConstraints", + "description": "accessConstraints: license. otherConstraints: Creative Commons Attribution-NonCommercial-Share Alike 3.0 United States [CC BY-NC-SA 3.0]. " + }, + { + "@type": "CreativeWork", + "name": "MD_SecurityConstraints", + "description": "classification: " + } + ], + "publisher": { + "@type": "Organization", + "name": "Rolling Deck to Repository" + }, + "spatialCoverage": { + "@type": "Place", + "geo": { + "@type": "GeoShape", + "box": "-77.07728, 33.91943,-76.39163,34.71767" + } + } +} \ No newline at end of file From bf19b74fa179b36172a547c64a7a142f98b90639 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sat, 29 Apr 2023 09:37:58 -0700 Subject: [PATCH 19/55] gleanerViperVal no longer init'd at the root level. so create one for running tools. --- pkg/cli/identifier.go | 68 ++++++++++++++++--------------------------- pkg/cli/jsonld.go | 9 ++++++ pkg/cli/tools.go | 28 ++++++++++++++++++ 3 files changed, 62 insertions(+), 43 deletions(-) diff --git a/pkg/cli/identifier.go b/pkg/cli/identifier.go index c20a2ad7..777b5348 100644 --- a/pkg/cli/identifier.go +++ b/pkg/cli/identifier.go @@ -25,7 +25,6 @@ import ( "github.com/spf13/cobra" "github.com/spf13/viper" "os" - "path" ) var jsonVal string @@ -35,30 +34,30 @@ var idPathVal string // string separated by a comman // need a mock config with context maps for when // a normalized sha of the triples ends up being generated. // assumes glcon is being run from dir with assets -var vipercontext = []byte(` -context: - cache: true -contextmaps: -- file: ./assets/schemaorg-current-https.jsonld - prefix: https://schema.org/ -- file: ./assets/schemaorg-current-https.jsonld - prefix: http://schema.org/ -sources: -- sourcetype: sitemap - name: test - logo: https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png - url: https://opentopography.org/sitemap.xml - headless: false - pid: https://www.re3data.org/repository/r3d100010655 - propername: OpenTopography - domain: http://www.opentopography.org/ - active: false - credentialsfile: "" - other: {} - headlesswait: 0 - delay: 0 - IdentifierType: filesha -`) +//var vipercontext = []byte(` +//context: +// cache: true +//contextmaps: +//- file: ./assets/schemaorg-current-https.jsonld +// prefix: https://schema.org/ +//- file: ./assets/schemaorg-current-https.jsonld +// prefix: http://schema.org/ +//sources: +//- sourcetype: sitemap +// name: test +// logo: https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png +// url: https://opentopography.org/sitemap.xml +// headless: false +// pid: https://www.re3data.org/repository/r3d100010655 +// propername: OpenTopography +// domain: http://www.opentopography.org/ +// active: false +// credentialsfile: "" +// other: {} +// headlesswait: 0 +// delay: 0 +// IdentifierType: filesha +//`) // batchCmd represents the batch command var identifierCmd = &cobra.Command{ @@ -83,24 +82,7 @@ There are three types of idtype: // there is a mock that assumes glcon is being run from dir with assets, // but that is not always the case. var err error - if cfgFile != "" { - dir, base := path.Split(cfgFile) - gleanerViperVal, err = configTypes.ReadGleanerConfig(base, dir) - //if err != nil { - // //panic(err) - // fmt.Println("cannot find config file. Did you 'glcon generate --cfgName XXX' ") - // log.Fatal("cannot find config file. Did you 'glcon generate --cfgName XXX' ") - // os.Exit(66) - //} - } else { - gleanerViperVal, err = configTypes.ReadGleanerConfig(gleanerName, path.Join(cfgPath, cfgName)) - //if err != nil { - // //panic(err) - // fmt.Println("cannot find config file. Did you 'glcon generate --cfgName XXX' ") - // log.Fatal("cannot find config file. Did you 'glcon generate --cfgName XXX' ") - // os.Exit(66) - //} - } + if gleanerViperVal == nil { gleanerViperVal = viper.New() gleanerViperVal.SetConfigType("yaml") diff --git a/pkg/cli/jsonld.go b/pkg/cli/jsonld.go index dbf4bcc5..4ffdc4b3 100644 --- a/pkg/cli/jsonld.go +++ b/pkg/cli/jsonld.go @@ -17,11 +17,13 @@ package cli import ( "bufio" + "bytes" "fmt" configTypes "github.com/gleanerio/gleaner/internal/config" "github.com/gleanerio/gleaner/internal/summoner/acquire" log "github.com/sirupsen/logrus" "github.com/spf13/cobra" + "github.com/spf13/viper" "os" ) @@ -48,6 +50,13 @@ There are three types of idtype: //if sourceVal != "" { // runSources = append(runSources, sourceVal) //} + + if gleanerViperVal == nil { + gleanerViperVal = viper.New() + gleanerViperVal.SetConfigType("yaml") + gleanerViperVal.ReadConfig(bytes.NewBuffer(vipercontext)) + } + source := configTypes.Sources{ Name: "jsonldCmd", IdentifierType: idTypeVal, diff --git a/pkg/cli/tools.go b/pkg/cli/tools.go index d73a5901..17d1814f 100644 --- a/pkg/cli/tools.go +++ b/pkg/cli/tools.go @@ -6,6 +6,34 @@ import ( "github.com/spf13/cobra" ) +// need a mock config with context maps for when +// a normalized sha of the triples ends up being generated. +// assumes glcon is being run from dir with assets +var vipercontext = []byte(` +context: + cache: true +contextmaps: +- file: ./assets/schemaorg-current-https.jsonld + prefix: https://schema.org/ +- file: ./assets/schemaorg-current-https.jsonld + prefix: http://schema.org/ +sources: +- sourcetype: sitemap + name: test + logo: https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png + url: https://opentopography.org/sitemap.xml + headless: false + pid: https://www.re3data.org/repository/r3d100010655 + propername: OpenTopography + domain: http://www.opentopography.org/ + active: false + credentialsfile: "" + other: {} + headlesswait: 0 + delay: 0 + IdentifierType: filesha +`) + // gleanerCmd represents the run command var toolsCmd = &cobra.Command{ Use: "tools", From 62cf5d93dac07184873b1fbb4d13f0dcb3dd147c Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sat, 29 Apr 2023 09:43:21 -0700 Subject: [PATCH 20/55] gleanerViperVal no longer init'd at the root level. so create one for running tools. --- pkg/cli/tools.go | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pkg/cli/tools.go b/pkg/cli/tools.go index 17d1814f..e2734e05 100644 --- a/pkg/cli/tools.go +++ b/pkg/cli/tools.go @@ -1,7 +1,10 @@ package cli import ( + "bytes" log "github.com/sirupsen/logrus" + "github.com/spf13/viper" + // "fmt" "github.com/spf13/cobra" ) @@ -40,7 +43,14 @@ var toolsCmd = &cobra.Command{ TraverseChildren: true, Short: "command to execute tools from gleaner and nabu", Long: `These are small tools that do things like generate uuids -`, +`, PersistentPreRun: func(cmd *cobra.Command, args []string) { + //gleanerViperVal no longer init'd at the root level. so create one for running tools. + if gleanerViperVal == nil { + gleanerViperVal = viper.New() + gleanerViperVal.SetConfigType("yaml") + gleanerViperVal.ReadConfig(bytes.NewBuffer(vipercontext)) + } + }, Run: func(cmd *cobra.Command, args []string) { log.Info("tools called") }, From 69528012fc11bf7c3d19664f54202bcbffe744ea Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sat, 29 Apr 2023 10:20:28 -0700 Subject: [PATCH 21/55] test case for #136 --- resoruces/jsonld/argo_float.jsonld | 801 +++++++++++++++++++++++++++++ 1 file changed, 801 insertions(+) create mode 100644 resoruces/jsonld/argo_float.jsonld diff --git a/resoruces/jsonld/argo_float.jsonld b/resoruces/jsonld/argo_float.jsonld new file mode 100644 index 00000000..cb7bb55c --- /dev/null +++ b/resoruces/jsonld/argo_float.jsonld @@ -0,0 +1,801 @@ +{ + "@context": "http://schema.org", + "@type": "Dataset", + "identifier": "https://doi.org/10.17882/42182", + "isAccessibleForFree": "True", + "url": "https://doi.org/10.17882/42182", + "thumbnailUrl": "https://www.seanoe.org/data/00311/42182/thumbnail.gif", + "name": "Argo float data and metadata from Global Data Assembly Centre (Argo GDAC)", + "description": "argo is a global array of 3,000 free-drifting profiling floats that measures the temperature and salinity of the upper 2000 m of the ocean. this allows, for the first time, continuous monitoring of the temperature, salinity, and velocity of the upper ocean, with all data being relayed and made publicly available within hours after collection. the array provides 100,000 temperature/salinity profiles and velocity measurements per year distributed over the global oceans at an average of 3-degree spacing. some floats provide additional bio-geo parameters such as oxygen or chlorophyll. all data collected by argo floats are publically available in near real-time via the global data assembly centers (gdacs) in brest (france) and monterey (california) after an automated quality control (qc), and in scientifically quality controlled form, delayed mode data, via the gdacs within six months of collection.the bgc-argo sprof snapshot is a subset of the global argo data snapshot. it is created to ease bgc-argo data usage. the content is the same if you are to download the global argo data snapshot, and then select all the bgc-argo sprof files. please use the same doi and citation as the global argo data[...]", + "datePublished": "2023-04-10", + "license": "https://creativecommons.org/licenses/by/4.0/", + "keywords": "float, Argo, global ocean observing system, ocean circulation, in-situ, ocean pressure, sea water salinity, sea water temperature, multi-year, weather climate and seasonal observation, global-ocean", + "publisher": { + "@type": "Organization", + "name": "SEANOE", + "url": "https://www.seanoe.org/", + "disambiguatingDescription": "Sea scientific open data publication", + "logo": "https://www.seanoe.org/html/images/seanoe-share.png" + }, + "includedInDataCatalog": { + "@type": "DataCatalog", + "name": "SEANOE", + "url": "https://www.seanoe.org/", + "disambiguatingDescription": "Sea scientific open data publication", + "logo": "https://www.seanoe.org/html/images/seanoe-share.png" + }, + "citation": "Argo (2023). Argo float data and metadata from Global Data Assembly Centre (Argo GDAC). SEANOE. https://doi.org/10.17882/42182", + "spatialCoverage": { + "@type": "Place", + "geo": [ + { + "@type": "GeoShape", + "box": "-90 180 90 -180" + } + ] + }, + "creator": [ + { + "@type": "Organization", + "name": "Argo" + } + ], + "distribution": [ + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 7481492010, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42336.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 6691927328, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42335.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 22373235047, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/64916.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 10392681372, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/44065.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 4788483159, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42264.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 9648009521, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42350.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 6189201088, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42322.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 7733486296, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42338.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 8259888131, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42340.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 9492500571, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42349.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 9823296535, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42382.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 4887755414, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42266.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 8916554704, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42344.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 5509783305, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42278.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3601830397, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42250.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 4388058901, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42253.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 8397278719, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42341.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 6448386372, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42321.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 8438917634, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42342.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 9111113283, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42348.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 10087022450, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/43181.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 5345327382, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42275.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 4700957659, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42263.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 4919579443, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42269.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 6189201088, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42334.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3898227494, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42251.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 4472657016, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42254.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 4626358803, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42262.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 5241415473, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42272.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 5719460873, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42280.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 5925865104, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42281.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 6080727031, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42282.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 5122127625, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42252.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 8630150870, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/42343.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 11735317320, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/46182.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 10669785015, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/44651.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 10865309577, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/45418.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 12307592082, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/47075.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 13021292009, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/48844.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 11106257709, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/45420.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 12072681218, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/46618.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 11311685195, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/45724.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 12792689235, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/48360.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 12544384890, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/47708.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 16351024129, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/53077.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 16628931505, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/53262.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 14250317389, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/50864.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 14920370616, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/50865.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 13823903973, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/50059.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 15630430650, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/51756.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 16142551900, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/52113.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 15439076666, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/51255.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 13477827908, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/49555.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 17780919140, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/56126.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 16909336307, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/53857.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 18296288238, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/57034.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 17152826839, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/54448.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 18695401780, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/58010.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 18906852132, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/58012.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 18296288238, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/58015.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 20053047735, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/59903.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 17422371588, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/55429.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 19228802457, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/58265.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 19654971811, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/59213.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 21692763326, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/63587.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 20511865043, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/60707.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 20764798557, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/61117.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 21298572954, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/62579.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 21023888430, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/61899.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 21980566985, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/64047.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 33753104608, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/66561.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 35230110371, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/68322.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 29504593785, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/66794.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 34571343544, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/66797.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 35722452181, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/68867.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 34814959215, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/67548.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 36337246810, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/69589.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 36929664666, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/70590.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 37593876970, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/71394.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 36714251221, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/76230.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 35635862301, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/74143.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 38263566037, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/72592.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 35142058301, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/73395.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 37277761418, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/76900.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 36141530524, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/75329.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 37764333612, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/77634.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 39130023467, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/78698.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 40339528949, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/81474.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 39363827431, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/79118.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 39815045787, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/80076.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 54496147276, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/98916.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 41567059124, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/83054.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 40951443880, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/82194.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 42157066637, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/83717.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 44211859328, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/87099.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 42986245797, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/85023.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 43603148003, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/86141.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 44889064255, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/88323.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 45560942587, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/88971.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 46217846149, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/89696.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 46822990809, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/90179.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 48622554523, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/92121.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 47449584629, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/90708.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 48070185755, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/91554.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 49178727997, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/93132.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 49730574259, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/93778.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 50208651923, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/94439.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 50990981643, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/95142.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 51548477553, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/95428.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 52258678836, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/95967.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3180207352, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/95141.tgz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3030840586, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/95427.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3135541295, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/95998.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3216234850, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/97618.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 52751354706, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/96550.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 53354775038, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/97606.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 53898665900, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/98126.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3254619353, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/98157.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3183236074, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/96562.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 2751984102, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/98921.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 56562323879, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/101760.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 55283956366, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/99784.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 1554819976, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/99793.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 2775247883, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/101753.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 55903719507, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/100487.tar.gz" + }, + { + "@type": "DataDownload", + "encodingFormat": "application/x-netcdf", + "fileSize": 3249772109, + "contentUrl": "https://www.seanoe.org/data/00311/42182/data/100490.tar.gz" + } + ] +} \ No newline at end of file From 4be42662e6d483c1bc3b3fb78ee47bf659fa2594 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Fri, 12 May 2023 16:58:58 -0700 Subject: [PATCH 22/55] #195 add End time, and write out after a source is complete --- internal/common/stats.go | 48 +++++++++++++++++++++++-- internal/summoner/acquire/acquire.go | 1 + internal/summoner/acquire/api.go | 1 + internal/summoner/acquire/headlessNG.go | 1 + internal/summoner/summoner.go | 6 ++-- 5 files changed, 52 insertions(+), 5 deletions(-) diff --git a/internal/common/stats.go b/internal/common/stats.go index 0839d88f..c4a4fb0a 100644 --- a/internal/common/stats.go +++ b/internal/common/stats.go @@ -2,6 +2,8 @@ package common import ( "fmt" + log "github.com/sirupsen/logrus" + "os" "sync" "time" ) @@ -23,6 +25,7 @@ func (c *RunStats) Add(repo string) *RepoStats { c.mu.Lock() r := NewRepoStats(repo) r.Name = repo + r.Start = time.Now() // Lock so only one goroutine at a time can access the map c.v. c.RepoStats[repo] = r c.mu.Unlock() @@ -30,8 +33,10 @@ func (c *RunStats) Add(repo string) *RepoStats { } type RepoStats struct { - mu sync.Mutex - Name string + mu sync.Mutex + Name string + Start time.Time + End time.Time //SitemapCount int //SitemapHttpError int //SitemapIssues int @@ -44,6 +49,12 @@ func NewRepoStats(name string) *RepoStats { r.counts = make(map[string]int) return &r } +func (c *RepoStats) setEndTime() { + c.mu.Lock() + // Lock so only one goroutine at a time can access the map c.v. + defer c.mu.Unlock() + c.End = time.Now() +} const Count string = "SitemapCount" const HttpError string = "SitemapHttpError" @@ -78,6 +89,7 @@ func (c *RepoStats) Value(key string) int { defer c.mu.Unlock() return c.counts[key] } + func (c *RunStats) Output() string { out := fmt.Sprintln("RunStats:") out += fmt.Sprintf(" Start: %s\n", c.Date) @@ -85,9 +97,41 @@ func (c *RunStats) Output() string { for name, repo := range c.RepoStats { out += fmt.Sprintf(" - name: %s\n", name) + out += fmt.Sprintf(" Start: %s\n", repo.Start) + out += fmt.Sprintf(" End: %s\n", repo.End) for r, count := range repo.counts { out += fmt.Sprintf(" %s: %d \n", r, count) } } return out } + +func (c *RepoStats) Output() string { + c.setEndTime() + out := fmt.Sprintln("RepoStats:") + out += fmt.Sprintf(" Start: %s\n", c.Start) + out += fmt.Sprintf(" End: %s\n", c.End) + out += fmt.Sprintf(" Repository:\n") + + out += fmt.Sprintf(" - name: %s\n", c.Name) + for r, count := range c.counts { + out += fmt.Sprintf(" %s: %d \n", r, count) + } + + return out +} + +func RunRepoStatsOutput(repoStats *RepoStats, source string) { + fmt.Print(repoStats.Output()) + const layout = "2006-01-02-15-04-05" + t := time.Now() + lf := fmt.Sprintf("%s/repo-%s-stats-%s.log", Logpath, source, t.Format(layout)) + + LogFile := lf // log to custom file + logFile, err := os.OpenFile(LogFile, os.O_APPEND|os.O_RDWR|os.O_CREATE, 0644) + if err != nil { + log.Fatal(err) + } + logFile.WriteString(repoStats.Output()) + logFile.Close() +} diff --git a/internal/summoner/acquire/acquire.go b/internal/summoner/acquire/acquire.go index bf10150d..5f2c2d75 100644 --- a/internal/summoner/acquire/acquire.go +++ b/internal/summoner/acquire/acquire.go @@ -191,6 +191,7 @@ func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName stri }(i, sourceName) } + common.RunRepoStatsOutput(repoStats, sourceName) } func FindJSONInResponse(v1 *viper.Viper, urlloc string, repologger *log.Logger, response *http.Response) ([]string, error) { diff --git a/internal/summoner/acquire/api.go b/internal/summoner/acquire/api.go index b7f9409f..fa40f3e1 100644 --- a/internal/summoner/acquire/api.go +++ b/internal/summoner/acquire/api.go @@ -147,4 +147,5 @@ func getAPISource(v1 *viper.Viper, mc *minio.Client, source configTypes.Sources, status = <-responseStatusChan i++ } + common.RunRepoStatsOutput(repoStats, source.Name) } diff --git a/internal/summoner/acquire/headlessNG.go b/internal/summoner/acquire/headlessNG.go index 65742f5a..e5e6b028 100644 --- a/internal/summoner/acquire/headlessNG.go +++ b/internal/summoner/acquire/headlessNG.go @@ -52,6 +52,7 @@ func HeadlessNG(v1 *viper.Viper, mc *minio.Client, m map[string][]string, runSta log.Error(m[k][i], "::", err) } } + common.RunRepoStatsOutput(r, k) } diff --git a/internal/summoner/summoner.go b/internal/summoner/summoner.go index 42cd6467..ad1edab6 100644 --- a/internal/summoner/summoner.go +++ b/internal/summoner/summoner.go @@ -14,7 +14,7 @@ import ( "github.com/spf13/viper" ) -func runStatsOutput(runStats *common.RunStats) { +func RunStatsOutput(runStats *common.RunStats) { fmt.Print(runStats.Output()) const layout = "2006-01-02-15-04-05" t := time.Now() @@ -49,7 +49,7 @@ func Summoner(mc *minio.Client, v1 *viper.Viper) { signal.Notify(c, os.Interrupt, syscall.SIGTERM) go func() { <-c - runStatsOutput(runStats) + RunStatsOutput(runStats) os.Exit(1) }() @@ -78,7 +78,7 @@ func Summoner(mc *minio.Client, v1 *viper.Viper) { diff := et.Sub(st) log.Info("Summoner end time:", et) log.Info("Summoner run time:", diff.Minutes()) - runStatsOutput(runStats) + RunStatsOutput(runStats) // What do I need to the "run" prov // the URLs indexed []string // the graph generated? "version" the graph by the build date From 1a978bae1d855d7544afa707b3d38bf893b084dd Mon Sep 17 00:00:00 2001 From: David Valentine Date: Fri, 12 May 2023 17:14:06 -0700 Subject: [PATCH 23/55] #195 add End time, and write out after a source is complete add reason why it was stopped --- internal/common/stats.go | 14 ++++++++------ internal/summoner/summoner.go | 2 ++ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/internal/common/stats.go b/internal/common/stats.go index c4a4fb0a..bc237417 100644 --- a/internal/common/stats.go +++ b/internal/common/stats.go @@ -9,9 +9,10 @@ import ( ) type RunStats struct { - mu sync.Mutex - Date time.Time - RepoStats map[string]*RepoStats + mu sync.Mutex + Date time.Time + StopReason string + RepoStats map[string]*RepoStats } func NewRunStats() *RunStats { @@ -93,7 +94,8 @@ func (c *RepoStats) Value(key string) int { func (c *RunStats) Output() string { out := fmt.Sprintln("RunStats:") out += fmt.Sprintf(" Start: %s\n", c.Date) - out += fmt.Sprintf(" Repositories:\n") + out += fmt.Sprintf(" Reason: %s\n", c.StopReason) + out += fmt.Sprintf(" Soruce:\n") for name, repo := range c.RepoStats { out += fmt.Sprintf(" - name: %s\n", name) @@ -108,10 +110,10 @@ func (c *RunStats) Output() string { func (c *RepoStats) Output() string { c.setEndTime() - out := fmt.Sprintln("RepoStats:") + out := fmt.Sprintln("SourceStats:") out += fmt.Sprintf(" Start: %s\n", c.Start) out += fmt.Sprintf(" End: %s\n", c.End) - out += fmt.Sprintf(" Repository:\n") + out += fmt.Sprintf(" Soruce:\n") out += fmt.Sprintf(" - name: %s\n", c.Name) for r, count := range c.counts { diff --git a/internal/summoner/summoner.go b/internal/summoner/summoner.go index ad1edab6..e881816f 100644 --- a/internal/summoner/summoner.go +++ b/internal/summoner/summoner.go @@ -49,6 +49,7 @@ func Summoner(mc *minio.Client, v1 *viper.Viper) { signal.Notify(c, os.Interrupt, syscall.SIGTERM) go func() { <-c + runStats.StopReason = "User Interrupt or Fatal Error" RunStatsOutput(runStats) os.Exit(1) }() @@ -78,6 +79,7 @@ func Summoner(mc *minio.Client, v1 *viper.Viper) { diff := et.Sub(st) log.Info("Summoner end time:", et) log.Info("Summoner run time:", diff.Minutes()) + runStats.StopReason = "Complete" RunStatsOutput(runStats) // What do I need to the "run" prov // the URLs indexed []string From 7e22cc6e53a5b8760c0c30a033385ec832e0a5c8 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 09:41:36 -0700 Subject: [PATCH 24/55] docker glcon --- .github/workflows/docker.yml | 85 ++++++++++++++++++++++++++++++++++-- build/Dockerfile_glcon | 24 ++++++++++ 2 files changed, 106 insertions(+), 3 deletions(-) create mode 100644 build/Dockerfile_glcon diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index eaef0350..1fce2528 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -3,6 +3,7 @@ on: push: branches: - master + - dev_docker_glcon tags: - v3.* release: @@ -12,7 +13,7 @@ on: # https://github.com/docker/build-push-action jobs: - build: + gleaner: name: Release Go Binary runs-on: ubuntu-latest @@ -23,6 +24,7 @@ jobs: #goarch: [amd64,arm64] goos: [linux] goarch: [amd64, arm64] + platforms: [linux/amd64,linux/arm64] exclude: - goarch: "386" goos: darwin @@ -57,7 +59,7 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v2 with: - platforms: 'arm64,arm' + platforms: ${{matrix.goarch}} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to DockerHub @@ -81,10 +83,87 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: linux/amd64,linux/arm64 + platforms: ${{matrix.platforms}} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile context: . + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }} + glcon: + name: Docker glcon + runs-on: ubuntu-latest + + strategy: + matrix: + # build and publish in parallel: linux/amd64 + #goos: [linux, windows, darwin] + #goarch: [amd64,arm64] + goos: [linux] + goarch: [amd64, arm64] + platforms: [linux/amd64,linux/arm64] + exclude: + - goarch: "386" + goos: darwin + steps: + - name: Install Go + uses: actions/setup-go@v2 + - name: checkout code + uses: actions/checkout@v2 + - name: donwload schema + run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld + - name: donwload schema + run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld + + # - name: Run tests + # run: go test -v -p=1 -timeout=0 ./... + - id: binary + name: build + run: | + go build -o glcon + working-directory: ./cmd/glcon + env: + GOOS: ${{matrix.goss}} + GOARCH: ${{matrix.goarch}} + CGO_ENABLED: 0 + # deploy: + # needs: build + # name: Dockerize Gleaner + # runs-on: ubuntu-latest + # steps: + # - name: Checkout Repo + # uses: actions/checkout@v2 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + with: + platforms: ${{ matrix.goarch}} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v3 + with: + images: nsfearthcube/glcon + flavor: | + latest=true + tags: | + type=ref,event=tag + type=ref,event=branch + type=semver,pattern={{version}} + - name: Build and push + id: docker_build + uses: docker/build-push-action@v3 + with: + push: true + platforms: ${{matrix.platforms}} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + file: ./build/Dockerfile_glcon + context: . - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} \ No newline at end of file diff --git a/build/Dockerfile_glcon b/build/Dockerfile_glcon new file mode 100644 index 00000000..36167693 --- /dev/null +++ b/build/Dockerfile_glcon @@ -0,0 +1,24 @@ +# Start from scratch image and add in a precompiled binary +# CGO_ENABLED=0 env go build . +# docker build --tag="opencoredata/ocdweb:0.9.4" . +# docker run -d -p 9900:9900 opencoredata/ocdweb:0.9.4 +FROM alpine +#FROM scratch + +#RUN apk add py-urllib3 openssl certbot curl --no-cache \ +RUN apk add openssl certbot curl --no-cache \ + --repository http://dl-3.alpinelinux.org/alpine/v3.7/community/ \ + --repository http://dl-3.alpinelinux.org/alpine/v3.7/main/ \ + && rm -rf /var/cache/apk/* + +# Add in the static elements (could also mount these from local filesystem) +RUN mkdir /glcon +RUN mkdir /glcon/config +ADD ./cmd/glcon/glcon /glcon/ + +# ADD ../web/static /static # Replace with -v mounting the /web/static directory +# static is in the .dockerignore.. so an emptry dir is made unless static is removed +# from the ignore file... we mount the volume via compose from the local FS + +# Add our binary +ENTRYPOINT ["/glcon/glcon"] From b4e441df96386700c344ce24c7850fffa8e11f83 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 09:49:23 -0700 Subject: [PATCH 25/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 47 +++++++++++++++++++++++++----------- go.mod | 2 +- go.sum | 4 +-- 3 files changed, 36 insertions(+), 17 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1fce2528..cd7fde38 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -14,20 +14,29 @@ on: jobs: gleaner: - name: Release Go Binary + name: Docker gleaner runs-on: ubuntu-latest strategy: matrix: + include: + - goarch: "linux" + goos: amd64 + platforms: linux/amd64 + - goarch: "linux" + goos: arm64 + platforms: linux/arm64 + # above is explict build lists, otherwise we get amd64 on linux/arm as an option + # build and publish in parallel: linux/amd64 #goos: [linux, windows, darwin] #goarch: [amd64,arm64] - goos: [linux] - goarch: [amd64, arm64] - platforms: [linux/amd64,linux/arm64] - exclude: - - goarch: "386" - goos: darwin +# goos: [linux] +# goarch: [amd64, arm64] +# platforms: [linux/amd64,linux/arm64] +# exclude: +# - goarch: "386" +# goos: darwin steps: - name: Install Go uses: actions/setup-go@v2 @@ -96,15 +105,25 @@ jobs: strategy: matrix: - # build and publish in parallel: linux/amd64 + include: + - goarch: "linux" + goos: amd64 + platforms: linux/amd64 + - goarch: "linux" + goos: arm64 + platforms: linux/arm64 + + # above is explict build lists, otherwise we get amd64 on linux/arm as an option + + # build and publish in parallel: linux/amd64 #goos: [linux, windows, darwin] #goarch: [amd64,arm64] - goos: [linux] - goarch: [amd64, arm64] - platforms: [linux/amd64,linux/arm64] - exclude: - - goarch: "386" - goos: darwin +# goos: [linux] +# goarch: [amd64, arm64] +# platforms: [linux/amd64,linux/arm64] +# exclude: +# - goarch: "386" +# goos: darwin steps: - name: Install Go uses: actions/setup-go@v2 diff --git a/go.mod b/go.mod index 11e572db..77361036 100644 --- a/go.mod +++ b/go.mod @@ -98,7 +98,7 @@ require ( ) require ( - github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13 + github.com/gleanerio/nabu v0.0.0-20230526171436-5ace63727afa github.com/orandin/lumberjackrus v1.0.1 github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4 github.com/sirupsen/logrus v1.9.0 diff --git a/go.sum b/go.sum index 8d5454f4..32f34576 100644 --- a/go.sum +++ b/go.sum @@ -200,8 +200,8 @@ github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwV github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gleanerio/gleaner v0.0.0-20211103190335-f9d8811ee43b/go.mod h1:Xx/8sK0tqQRLSYLsyTR9NeLTGKpwmUOIFat0ilWqguw= -github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13 h1:mZbPFymwB3Wk0yNhB7CsPh/UHjCxCl935qauCK/Fs0o= -github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13/go.mod h1:0wdQdUV1gf22ySZhAAqKOQJFoIYk1yW+VKh2BaMtMuY= +github.com/gleanerio/nabu v0.0.0-20230526171436-5ace63727afa h1:xbgh0H14UsPWA7JIDAHj96vTR+JYp8lS3PKFEdvGB1k= +github.com/gleanerio/nabu v0.0.0-20230526171436-5ace63727afa/go.mod h1:0wdQdUV1gf22ySZhAAqKOQJFoIYk1yW+VKh2BaMtMuY= github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= From cc25c22c23c030b39c0a8b3d616ab42c4f5dda53 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 09:51:20 -0700 Subject: [PATCH 26/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index cd7fde38..d52b9987 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -106,11 +106,11 @@ jobs: strategy: matrix: include: - - goarch: "linux" - goos: amd64 + - goarch: amd64 + goos: "linux" platforms: linux/amd64 - - goarch: "linux" - goos: arm64 + - goarch: arm64 + goos: "linux" platforms: linux/arm64 # above is explict build lists, otherwise we get amd64 on linux/arm as an option From 90af533d2e38ac315d3c9074658223f75a2d20ba Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 09:51:40 -0700 Subject: [PATCH 27/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index d52b9987..1f5c97aa 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -20,13 +20,14 @@ jobs: strategy: matrix: include: - - goarch: "linux" - goos: amd64 + - goarch: amd64 + goos: "linux" platforms: linux/amd64 - - goarch: "linux" - goos: arm64 + - goarch: arm64 + goos: "linux" platforms: linux/arm64 - # above is explict build lists, otherwise we get amd64 on linux/arm as an option + + # above is explict build lists, otherwise we get amd64 on linux/arm as an option # build and publish in parallel: linux/amd64 #goos: [linux, windows, darwin] From 6e8534bfea7f53659bdb19662198864de027c02c Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 09:59:45 -0700 Subject: [PATCH 28/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1f5c97aa..18d14b43 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,13 +19,12 @@ jobs: strategy: matrix: + platforms: [linux/amd64,linux/arm64] include: - goarch: amd64 goos: "linux" - platforms: linux/amd64 - goarch: arm64 goos: "linux" - platforms: linux/arm64 # above is explict build lists, otherwise we get amd64 on linux/arm as an option @@ -106,13 +105,12 @@ jobs: strategy: matrix: + platforms: [linux/amd64,linux/arm64] include: - goarch: amd64 goos: "linux" - platforms: linux/amd64 - goarch: arm64 goos: "linux" - platforms: linux/arm64 # above is explict build lists, otherwise we get amd64 on linux/arm as an option From 20c17d08d6eda6f0e379ac474e312fea88dc21e5 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:00:02 -0700 Subject: [PATCH 29/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 18d14b43..ef640df7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -178,7 +178,7 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: ${{matrix.platforms}} + platforms: ${{platforms}} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile_glcon From c137327e90b2decc7772b1d4716857d858ffc027 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:01:37 -0700 Subject: [PATCH 30/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index ef640df7..18d14b43 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -178,7 +178,7 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: ${{platforms}} + platforms: ${{matrix.platforms}} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile_glcon From b29db78837079126d6af19fb3724e57c4e52aed8 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:06:25 -0700 Subject: [PATCH 31/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 18d14b43..7028a47d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,7 +19,6 @@ jobs: strategy: matrix: - platforms: [linux/amd64,linux/arm64] include: - goarch: amd64 goos: "linux" @@ -92,7 +91,7 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: ${{matrix.platforms}} + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile @@ -105,7 +104,6 @@ jobs: strategy: matrix: - platforms: [linux/amd64,linux/arm64] include: - goarch: amd64 goos: "linux" @@ -178,7 +176,7 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: ${{matrix.platforms}} + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile_glcon From 9c943850419753ae2f5d41ab5ce19c5ce58c7ff2 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:20:04 -0700 Subject: [PATCH 32/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7028a47d..f86d04a5 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,26 +19,26 @@ jobs: strategy: matrix: - include: - - goarch: amd64 - goos: "linux" - - goarch: arm64 - goos: "linux" +# include: +# - goarch: amd64 +# goos: "linux" +# - goarch: arm64 +# goos: "linux" # above is explict build lists, otherwise we get amd64 on linux/arm as an option # build and publish in parallel: linux/amd64 #goos: [linux, windows, darwin] #goarch: [amd64,arm64] -# goos: [linux] -# goarch: [amd64, arm64] -# platforms: [linux/amd64,linux/arm64] + goos: [linux] + goarch: [amd64, arm64] + platforms: [linux/amd64,linux/arm64] # exclude: # - goarch: "386" # goos: darwin steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 - name: checkout code uses: actions/checkout@v2 - name: donwload schema @@ -104,26 +104,26 @@ jobs: strategy: matrix: - include: - - goarch: amd64 - goos: "linux" - - goarch: arm64 - goos: "linux" +# include: +# - goarch: amd64 +# goos: "linux" +# - goarch: arm64 +# goos: "linux" # above is explict build lists, otherwise we get amd64 on linux/arm as an option # build and publish in parallel: linux/amd64 #goos: [linux, windows, darwin] #goarch: [amd64,arm64] -# goos: [linux] -# goarch: [amd64, arm64] -# platforms: [linux/amd64,linux/arm64] + goos: [linux] + goarch: [amd64, arm64] + platforms: [linux/amd64,linux/arm64] # exclude: # - goarch: "386" # goos: darwin steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 - name: checkout code uses: actions/checkout@v2 - name: donwload schema From 06ca935efb13e5708947f0d7815e175fb48fc618 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:22:52 -0700 Subject: [PATCH 33/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f86d04a5..c7e6ec15 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -91,7 +91,7 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: linux/amd64,linux/arm64 + platforms: ${{ matrix.platform }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile @@ -176,7 +176,7 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: linux/amd64,linux/arm64 + platforms: ${{ matrix.platform }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile_glcon From 4af0483406d3fa3c814f73f0bae860262041abdd Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:23:34 -0700 Subject: [PATCH 34/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index c7e6ec15..fc308618 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -32,7 +32,7 @@ jobs: #goarch: [amd64,arm64] goos: [linux] goarch: [amd64, arm64] - platforms: [linux/amd64,linux/arm64] + platform: [linux/amd64,linux/arm64] # exclude: # - goarch: "386" # goos: darwin @@ -117,7 +117,7 @@ jobs: #goarch: [amd64,arm64] goos: [linux] goarch: [amd64, arm64] - platforms: [linux/amd64,linux/arm64] + platform: [linux/amd64,linux/arm64] # exclude: # - goarch: "386" # goos: darwin From 0445226f0ed5641e89065f4e86f05a4378b69af9 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:26:20 -0700 Subject: [PATCH 35/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 37 +++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index fc308618..46e12f88 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,20 +19,21 @@ jobs: strategy: matrix: -# include: -# - goarch: amd64 -# goos: "linux" -# - goarch: arm64 -# goos: "linux" + - goarch: amd64 + goos: "linux" + platform: linux/amd64 + - goarch: arm64 + goos: "linux" + platform: linux/arm64 # above is explict build lists, otherwise we get amd64 on linux/arm as an option # build and publish in parallel: linux/amd64 #goos: [linux, windows, darwin] #goarch: [amd64,arm64] - goos: [linux] - goarch: [amd64, arm64] - platform: [linux/amd64,linux/arm64] +# goos: [linux] +# goarch: [amd64, arm64] +# platform: [linux/amd64,linux/arm64] # exclude: # - goarch: "386" # goos: darwin @@ -104,20 +105,22 @@ jobs: strategy: matrix: -# include: -# - goarch: amd64 -# goos: "linux" -# - goarch: arm64 -# goos: "linux" + include: + - goarch: amd64 + goos: "linux" + platform: linux/amd64 + - goarch: arm64 + goos: "linux" + platform: linux/arm64 # above is explict build lists, otherwise we get amd64 on linux/arm as an option # build and publish in parallel: linux/amd64 #goos: [linux, windows, darwin] - #goarch: [amd64,arm64] - goos: [linux] - goarch: [amd64, arm64] - platform: [linux/amd64,linux/arm64] +# #goarch: [amd64,arm64] +# goos: [linux] +# goarch: [amd64, arm64] +# platform: [linux/amd64,linux/arm64] # exclude: # - goarch: "386" # goos: darwin From e5063a1de8849c952fda108512584539a7e2da8e Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:27:15 -0700 Subject: [PATCH 36/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 46e12f88..4093bf17 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,12 +19,13 @@ jobs: strategy: matrix: - - goarch: amd64 - goos: "linux" - platform: linux/amd64 - - goarch: arm64 - goos: "linux" - platform: linux/arm64 + include: + - goarch: amd64 + goos: "linux" + platform: linux/amd64 + - goarch: arm64 + goos: "linux" + platform: linux/arm64 # above is explict build lists, otherwise we get amd64 on linux/arm as an option From 6ed740064bc53671dba10cbd7fdbdd7608f2158f Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 13 Jun 2023 10:34:45 -0700 Subject: [PATCH 37/55] docker glcon with latest nabu --- .github/workflows/docker.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 4093bf17..23b0a074 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -93,7 +93,8 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: ${{ matrix.platform }} +# platforms: ${{ matrix.platform }} + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile @@ -180,7 +181,8 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: ${{ matrix.platform }} + # platforms: ${{ matrix.platform }} + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile_glcon From 0481ac49c0b67bb8373452f1dbb1cd8a0e00f8bd Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 20 Jun 2023 09:54:50 -0700 Subject: [PATCH 38/55] #174 Put issue with CDp... update to CDP 0.34.1 --- go.mod | 10 +++++----- go.sum | 38 ++++++++++++++++++++++++++++++++------ 2 files changed, 37 insertions(+), 11 deletions(-) diff --git a/go.mod b/go.mod index 11e572db..d0b68f2a 100644 --- a/go.mod +++ b/go.mod @@ -10,12 +10,12 @@ require ( github.com/PuerkitoBio/goquery v1.8.0 github.com/approvals/go-approval-tests v0.0.0-20220530063708-32d5677069bd github.com/aws/aws-sdk-go v1.41.12 - github.com/chromedp/chromedp v0.6.5 + github.com/chromedp/chromedp v0.9.1 github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48 github.com/gorilla/mux v1.8.0 github.com/gosuri/uiprogress v0.0.1 github.com/knakk/rdf v0.0.0-20190304171630-8521bf4c5042 - github.com/mafredri/cdp v0.32.0 + github.com/mafredri/cdp v0.34.1 github.com/minio/minio-go/v7 v7.0.52 github.com/ohler55/ojg v1.14.5 github.com/piprate/json-gold v0.5.0 @@ -35,14 +35,14 @@ require ( github.com/andybalholm/brotli v1.0.4 // indirect github.com/andybalholm/cascadia v1.3.1 // indirect github.com/apache/thrift v0.14.1 // indirect - github.com/chromedp/cdproto v0.0.0-20210122124816-7a656c010d57 // indirect + github.com/chromedp/cdproto v0.0.0-20230220211738-2b1ec77315c9 // indirect github.com/chromedp/sysutil v1.0.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/dustin/go-humanize v1.0.1 // indirect github.com/fsnotify/fsnotify v1.5.4 // indirect github.com/gobwas/httphead v0.1.0 // indirect github.com/gobwas/pool v0.2.1 // indirect - github.com/gobwas/ws v1.0.4 // indirect + github.com/gobwas/ws v1.1.0 // indirect github.com/golang-jwt/jwt/v4 v4.4.2 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/protobuf v1.5.2 // indirect @@ -85,7 +85,7 @@ require ( github.com/valyala/fasthttp v1.37.1-0.20220607072126-8a320890c08d // indirect go.opencensus.io v0.23.0 // indirect golang.org/x/net v0.7.0 // indirect - golang.org/x/sys v0.5.0 // indirect + golang.org/x/sys v0.6.0 // indirect golang.org/x/term v0.5.0 // indirect golang.org/x/text v0.7.0 // indirect google.golang.org/appengine v1.6.7 // indirect diff --git a/go.sum b/go.sum index 8d5454f4..a37d4ebf 100644 --- a/go.sum +++ b/go.sum @@ -129,10 +129,12 @@ github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx2 github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/chromedp/cdproto v0.0.0-20210122124816-7a656c010d57 h1:htpyTFarq7OHx9SpkQ+7x20thTQA6JAsgnuMGoPbH4E= github.com/chromedp/cdproto v0.0.0-20210122124816-7a656c010d57/go.mod h1:55pim6Ht4LJKdVLlyFJV/g++HsEA1hQxPbB5JyNdZC0= -github.com/chromedp/chromedp v0.6.5 h1:hPaDYBpvD2WFicln0ByzV+XRhSOtLgAgsu39O455iWY= +github.com/chromedp/cdproto v0.0.0-20230220211738-2b1ec77315c9 h1:wMSvdj3BswqfQOXp2R1bJOAE7xIQLt2dlMQDMf836VY= +github.com/chromedp/cdproto v0.0.0-20230220211738-2b1ec77315c9/go.mod h1:GKljq0VrfU4D5yc+2qA6OVr8pmO/MBbPEWqWQ/oqGEs= github.com/chromedp/chromedp v0.6.5/go.mod h1:/Q6h52DkrFuvOgmCuR6O3xT5g0bZYoPqjANKBEvQGEY= +github.com/chromedp/chromedp v0.9.1 h1:CC7cC5p1BeLiiS2gfNNPwp3OaUxtRMBjfiw3E3k6dFA= +github.com/chromedp/chromedp v0.9.1/go.mod h1:DUgZWRvYoEfgi66CgZ/9Yv+psgi+Sksy5DTScENWjaQ= github.com/chromedp/sysutil v1.0.0 h1:+ZxhTpfpZlmchB58ih/LBHX52ky7w2VhQVKQMucy3Ic= github.com/chromedp/sysutil v1.0.0/go.mod h1:kgWmDdq8fTzXYcKIBqIYvRRTnYb9aNS9moAV0xufSww= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= @@ -199,6 +201,8 @@ github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5 github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI= github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M= github.com/gleanerio/gleaner v0.0.0-20211103190335-f9d8811ee43b/go.mod h1:Xx/8sK0tqQRLSYLsyTR9NeLTGKpwmUOIFat0ilWqguw= github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13 h1:mZbPFymwB3Wk0yNhB7CsPh/UHjCxCl935qauCK/Fs0o= github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13/go.mod h1:0wdQdUV1gf22ySZhAAqKOQJFoIYk1yW+VKh2BaMtMuY= @@ -211,15 +215,23 @@ github.com/go-ini/ini v1.62.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3I github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= +github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= +github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI= github.com/go-resty/resty/v2 v2.3.0/go.mod h1:UpN9CgLZNsv4e9XG50UU8xdI0F43UQ4HmxLBDwaroHU= github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= github.com/gobwas/httphead v0.1.0 h1:exrUm0f4YX0L7EBwZHuCF4GDp8aJfVeBrlLQrs6NqWU= github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM= +github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/pool v0.2.1 h1:xfeeEhW7pwmX8nuLVlqbzVc7udMDrwetjEv+TZIz1og= github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= -github.com/gobwas/ws v1.0.4 h1:5eXU1CZhpQdq5kXbKb+sECH5Ia5KiO6CYzIzdlVx6Bs= +github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= github.com/gobwas/ws v1.0.4/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= +github.com/gobwas/ws v1.1.0 h1:7RFti/xnNkMJnrK7D1yQ/iCIB5OrrY/54/H930kIbHA= +github.com/gobwas/ws v1.1.0/go.mod h1:nzvNcVha5eUziGrbxFCo6qFIojQHjJV5cLYIbezhfL0= github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48 h1:hLeicZW4XBuaISuJPfjkprg0SP0xxsQmb31aJZ6lnIw= github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48/go.mod h1:5YoVOkjYAQumqlV356Hj3xeYh4BdZuLE0/nRkf2NKkI= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= @@ -322,6 +334,7 @@ github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORR github.com/gopherjs/gopherjs v0.0.0-20190910122728-9d188e94fb99/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gosuri/uilive v0.0.4 h1:hUEBpQDj8D8jXgtCdBu7sWsy5sbW/5GhuO8KBwJ2jyY= @@ -377,6 +390,7 @@ github.com/jmhodges/levigo v1.0.0/go.mod h1:Q6Qx+uH3RAqyK4rFQroq9RL7mdkABMcfhEI+ github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= @@ -390,6 +404,7 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI github.com/kisielk/godepgraph v0.0.0-20190626013829-57a7e4a651a9/go.mod h1:Gb5YEgxqiSSVrXKWQxDcKoCM94NO5QAwOwTaVmIUAMI= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.9.7/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.10.5/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= @@ -415,9 +430,13 @@ github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/ledongthuc/pdf v0.0.0-20220302134840-0c2507a12d80 h1:6Yzfa6GP0rIo/kULo2bwGEkFvCePZ3qHDDTC3/J9Swo= +github.com/ledongthuc/pdf v0.0.0-20220302134840-0c2507a12d80/go.mod h1:imJHygn/1yfhB7XSJJKlFZKl/J+dCPAknuiaGOshXAs= +github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= github.com/lucasb-eyer/go-colorful v1.0.2/go.mod h1:0MS4r+7BZKSJ5mw4/S5MPN+qHFF1fYclkSPilDOKW0s= -github.com/mafredri/cdp v0.32.0 h1:JzW2F+zVK2y9ZhbNWyjrwafZLL9oNnl9Tf6JQ149Og8= github.com/mafredri/cdp v0.32.0/go.mod h1:YTCwLXkZSa18SGSIxCPMOGZcUJODZSNlAhiMqbyxWJg= +github.com/mafredri/cdp v0.34.1 h1:EeLNc+6pkDx2hrAm1arIjiofoH0fM5On1uAFzcuUn+o= +github.com/mafredri/cdp v0.34.1/go.mod h1:Dbsh7eY/zhQlsddEDWzZGOztv9Jf2gzKq47M7a2P3C4= github.com/mafredri/go-lint v0.0.0-20180911205320-920981dfc79e/go.mod h1:k/zdyxI3q6dup24o8xpYjJKTCf2F7rfxLp6w/efTiWs= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= @@ -490,6 +509,8 @@ github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/orandin/lumberjackrus v1.0.1 h1:7ysDQ0MHD79zIFN9/EiDHjUcgopNi5ehtxFDy8rUkWo= github.com/orandin/lumberjackrus v1.0.1/go.mod h1:xYLt6H8W93pKnQgUQaxsApS0Eb4BwHLOkxk5DVzf5H0= +github.com/orisano/pixelmatch v0.0.0-20220722002657-fb0b55479cde h1:x0TT0RDC7UhAVbbWWBzr41ElhJx5tXPWkIHA2HWPRuw= +github.com/orisano/pixelmatch v0.0.0-20220722002657-fb0b55479cde/go.mod h1:nZgzbfBr3hhjoZnS66nKrHmduYNpc34ny7RK4z5/HM0= github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4 h1:2vmb32OdDhjZf2ETGDlr9n8RYXx7c+jXPxMiPbwnA+8= github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4/go.mod h1:2JQx4jDHmWrbABvpOayg/+OTU6ehN0IyK2EHzceXpJo= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= @@ -617,7 +638,9 @@ github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY= github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28= github.com/tinylib/msgp v1.1.0/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= +github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= +github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= github.com/utahta/go-openuri v0.1.0 h1:5t+GPGBjwEt7oRTMArC47QMIiXarzNO6W3PDy8nXGoM= github.com/utahta/go-openuri v0.1.0/go.mod h1:wg5kOkfgUWHGFacyyH+FsrEzB++WPpFyKrwDSeo69Ng= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= @@ -851,6 +874,7 @@ golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201207223542-d4d67f95c62d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210122093101-04d7465088b8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -886,8 +910,8 @@ golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -1186,6 +1210,8 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.1.2/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= +nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g= +nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= From e5f77cf75594a7a30c24d29d7ef0adb1ecc2c26b Mon Sep 17 00:00:00 2001 From: David Valentine Date: Tue, 20 Jun 2023 09:58:24 -0700 Subject: [PATCH 39/55] Docker glcon --- .github/workflows/docker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 23b0a074..cf6922ff 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -1,4 +1,6 @@ name: Dockerize Gleaner +# need to look at this to do it right +# https://namiops.medium.com/golang-multi-arch-docker-image-with-github-action-b59a62c8d2bd on: push: branches: From 7b4817cd82ce51f2ada4f3efb6e0c2e9c1651b19 Mon Sep 17 00:00:00 2001 From: Douglas Fils Date: Tue, 20 Jun 2023 19:56:28 -0500 Subject: [PATCH 40/55] add back in region for AWS and GCP --- internal/common/minio.go | 51 +++++++++++++++++++++++++++++----------- internal/config/minio.go | 6 ++--- 2 files changed, 40 insertions(+), 17 deletions(-) diff --git a/internal/common/minio.go b/internal/common/minio.go index 3ba88c29..34324db9 100644 --- a/internal/common/minio.go +++ b/internal/common/minio.go @@ -2,6 +2,7 @@ package common import ( "fmt" + log "github.com/sirupsen/logrus" configTypes "github.com/gleanerio/gleaner/internal/config" @@ -12,29 +13,51 @@ import ( // MinioConnection Set up minio and initialize client func MinioConnection(v1 *viper.Viper) *minio.Client { - //mcfg := v1.GetStringMapString("minio") mSub := v1.Sub("minio") mcfg, err := configTypes.ReadMinioConfig(mSub) if err != nil { log.Panic("error when file minio key:", err) } - endpoint := fmt.Sprintf("%s:%d", mcfg.Address, mcfg.Port) - accessKeyID := mcfg.Accesskey - secretAccessKey := mcfg.Secretkey - useSSL := mcfg.Ssl - // auth fails if a region is set in minioclient... - // region := mcfg.Region - - minioClient, err := minio.New(endpoint, - &minio.Options{Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""), - Secure: useSSL, - // Region: region, - }) + + var endpoint, accessKeyID, secretAccessKey string + var useSSL bool + + if mcfg.Port == 0 { + endpoint = fmt.Sprintf("%s", mcfg.Address) + accessKeyID = mcfg.Accesskey + secretAccessKey = mcfg.Secretkey + useSSL = mcfg.Ssl + } else { + endpoint = fmt.Sprintf("%s:%d", mcfg.Address, mcfg.Port) + accessKeyID = mcfg.Accesskey + secretAccessKey = mcfg.Secretkey + useSSL = mcfg.Ssl + } + + var minioClient *minio.Client + + // used this == "" trick to not set region if not present due to + // past issue of auth fails if a region is set in minioclient... + if mcfg.Region == "" { + log.Println("no region set") + minioClient, err = minio.New(endpoint, + &minio.Options{Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""), + Secure: useSSL, + }) + } else { + log.Println("region set for GCS or AWS, may cause issues with minio") + region := mcfg.Region + minioClient, err = minio.New(endpoint, + &minio.Options{Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""), + Secure: useSSL, + Region: region, + }) + } // minioClient.SetCustomTransport(&http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}}) if err != nil { log.Fatal(err) } - // don't set region until you created the client + return minioClient } diff --git a/internal/config/minio.go b/internal/config/minio.go index f8966e27..5d65a8dc 100644 --- a/internal/config/minio.go +++ b/internal/config/minio.go @@ -14,7 +14,7 @@ type Minio struct { Accesskey string //`mapstructure:"MINIO_ACCESS_KEY"` Secretkey string // `mapstructure:"MINIO_SECRET_KEY"` Bucket string - // Region string + Region string } // auth fails if a region is set in minioclient... @@ -26,7 +26,7 @@ var MinioTemplate = map[string]interface{}{ "secretkey": "", "bucket": "", "ssl": "false", - // "region": "us-east-1", + "region": "", }, } @@ -43,7 +43,7 @@ func ReadMinioConfig(minioSubtress *viper.Viper) (Minio, error) { minioSubtress.BindEnv("secretkey", "MINIO_SECRET_KEY") minioSubtress.BindEnv("secretkey", "MINIO_SECRET_KEY") minioSubtress.BindEnv("bucket", "MINIO_BUCKET") - // minioSubtress.BindEnv("region", "MINIO_REGION") + minioSubtress.BindEnv("region", "MINIO_REGION") minioSubtress.AutomaticEnv() // config already read. substree passed err := minioSubtress.Unmarshal(&minioCfg) From eeb7a6af6336ddbdfffc3c4d3582f3995767ae39 Mon Sep 17 00:00:00 2001 From: Douglas Fils Date: Wed, 21 Jun 2023 19:43:37 -0500 Subject: [PATCH 41/55] Update Gleaner configuration and add S3 and headless configurations --- docs/GleanerConfig.md | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/docs/GleanerConfig.md b/docs/GleanerConfig.md index 2fa574b9..5ba7a304 100644 --- a/docs/GleanerConfig.md +++ b/docs/GleanerConfig.md @@ -1,12 +1,31 @@ # Gleaner Configuration file -This assumes that you have a container stack running +The Gleaner stack requires a set of supporting services for full operation. +These are: + +* s3 store: Such as Minio, AWS S3 or Google Cloud Services +* triple store: (optional) A graph database that supports RDF if you wish to load the harvestd JSON-LD data graphs for query +* headless: (optional) A headless browser such as Chrome or Firefox for use in those cases where the JSON-LD is not not staticly in the page DOM, but rather called and inserted by javascript on page load. + +## Important Note regarding S3 +In the case of AWS S3, it is important to use the region specific version of the AWS API URL. Such as; + +```yaml +minio: +address: s3.us-west-2.amazonaws.com +port: 443 +ssl: true +accesskey: +secretkey: +bucket: ec-geocodes +region: us-west-2 ``` -s3 store -triple store -headless -``` + +rather than _s3.amazonaws.com_. This avoids an auth error that is raised when the region specifid is different +than the default region in your AWS credentials file. + + ## Gleaner Configuration generation Files can be generated using glcon. Described in [README_CONFIGURE_Template](./README_Configure_Template.md) @@ -24,6 +43,7 @@ minio: secretKey: worldsbestsecretkey ssl: false bucket: gleaner + region: us-west-2 gleaner: runid: runX # this will be the bucket the output is placed in... summon: true # do we want to visit the web sites and pull down the files From 444300718c4776e5d4834fe544509c587ba6d8cd Mon Sep 17 00:00:00 2001 From: David Valentine Date: Thu, 22 Jun 2023 13:54:20 -0700 Subject: [PATCH 42/55] add region to generate minio. update template Better messages when sources do not generate from --- configs/template/localConfig.yaml | 14 ++++-- internal/config/gleanerConfig.go | 6 +-- internal/config/localConfig.go | 6 +-- internal/config/minio.go | 15 +++--- internal/config/sources.go | 77 ++++++++++++++++++++----------- 5 files changed, 76 insertions(+), 42 deletions(-) diff --git a/configs/template/localConfig.yaml b/configs/template/localConfig.yaml index 254893f6..3afcc431 100644 --- a/configs/template/localConfig.yaml +++ b/configs/template/localConfig.yaml @@ -6,10 +6,12 @@ minio: address: 0.0.0.0 # aws need to include the region in the bucket. eg: s3.us-west-2.amazonaws.com port: 9000 - accessKey: worldsbestaccesskey - secretKey: worldsbestsecretkey ssl: false bucket: gleaner + region: + accessKey: worldsbestaccesskey + secretKey: worldsbestsecretkey + # can be overridden with MINIO_BUCKET sparql: endpoint: http://localhost/blazegraph/namespace/earthcube/sparql @@ -25,7 +27,13 @@ sourcesSource: location: sources.csv # this can be a remote csv # type: csv -# location: https://docs.google.com/spreadsheets/d/{key}/gviz/tq?tqx=out:csv&sheet={sheet_name} +# location: https://docs.google.com/spreadsheets/d/e/2PACX-1vTt_45dYd5LMFK9Qm_lCg6P7YxG-ae0GZEtrHMZmNbI-y5tVDd8ZLqnEeIAa-SVTSztejfZeN6xmRZF/pub?gid=1277688039&single=true&output=csv +#### GOOGLE SHEETS ==== +# urls changed. Sheet needs to be shared now. +# share> publish to web > +# select sheet, and format csv +# paste url in location +#### # TBD -- Just use the sources in the gleaner file. # type: yaml # location: gleaner.yaml diff --git a/internal/config/gleanerConfig.go b/internal/config/gleanerConfig.go index 6ae7564b..0266c424 100644 --- a/internal/config/gleanerConfig.go +++ b/internal/config/gleanerConfig.go @@ -11,9 +11,9 @@ var gleanerTemplate = map[string]interface{}{ "minio": map[string]string{ "address": "localhost", "port": "9000", + "region": "", "accesskey": "", "secretkey": "", - // "region": "us-east-1", }, "gleaner": map[string]string{}, "context": map[string]string{}, @@ -50,8 +50,8 @@ func ReadGleanerConfig(filename string, cfgDir string) (*viper.Viper, error) { v.AutomaticEnv() err := v.ReadInConfig() if err != nil { - fmt.Println("cannot find config file. Did you 'glcon generate --cfgName XXX' ") - log.Fatal("cannot find config file. Did you 'glcon generate --cfgName XXX' ") + fmt.Printf("cannot find config file. '%v' If glcon Did you 'glcon generate --cfgName XXX' \n", filename) + log.Fatalf("cannot find config file. '%v' Did you 'glcon generate --cfgName XXX' ", filename) //panic(err) } return v, err diff --git a/internal/config/localConfig.go b/internal/config/localConfig.go index 703e96b4..2080fdf5 100644 --- a/internal/config/localConfig.go +++ b/internal/config/localConfig.go @@ -9,10 +9,10 @@ var serversTemplate = map[string]interface{}{ "minio": map[string]string{ "address": "localhost", "port": "9000", + "bucket": "", + "region": "", "accesskey": "", "secretkey": "", - "bucket": "", - // "region": "us-east-1", }, "sparql": map[string]string{ "endpoint": "localhost", @@ -20,7 +20,7 @@ var serversTemplate = map[string]interface{}{ "headless": "", "s3": map[string]string{ "bucket": "gleaner", - "domain": "us-east-1", + "domain": "", }, "identifiertype": JsonSha, // const from config.Sources jsonsha,identifiersha, normalizedjsonsha, identifierstring } diff --git a/internal/config/minio.go b/internal/config/minio.go index 5d65a8dc..5eda9319 100644 --- a/internal/config/minio.go +++ b/internal/config/minio.go @@ -11,10 +11,11 @@ type Minio struct { Address string // `mapstructure:"MINIO_ADDRESS"` Port int //`mapstructure:"MINIO_PORT"` Ssl bool //`mapstructure:"MINIO_USE_SSL"` - Accesskey string //`mapstructure:"MINIO_ACCESS_KEY"` - Secretkey string // `mapstructure:"MINIO_SECRET_KEY"` Bucket string Region string + Accesskey string //`mapstructure:"MINIO_ACCESS_KEY"` + Secretkey string // `mapstructure:"MINIO_SECRET_KEY"` + } // auth fails if a region is set in minioclient... @@ -22,11 +23,11 @@ var MinioTemplate = map[string]interface{}{ "minio": map[string]string{ "address": "localhost", "port": "9000", - "accesskey": "", - "secretkey": "", "bucket": "", "ssl": "false", "region": "", + "accesskey": "", + "secretkey": "", }, } @@ -39,11 +40,11 @@ func ReadMinioConfig(minioSubtress *viper.Viper) (Minio, error) { minioSubtress.BindEnv("address", "MINIO_ADDRESS") minioSubtress.BindEnv("port", "MINIO_PORT") minioSubtress.BindEnv("ssl", "MINIO_USE_SSL") - minioSubtress.BindEnv("accesskey", "MINIO_ACCESS_KEY") - minioSubtress.BindEnv("secretkey", "MINIO_SECRET_KEY") - minioSubtress.BindEnv("secretkey", "MINIO_SECRET_KEY") minioSubtress.BindEnv("bucket", "MINIO_BUCKET") minioSubtress.BindEnv("region", "MINIO_REGION") + minioSubtress.BindEnv("accesskey", "MINIO_ACCESS_KEY") + minioSubtress.BindEnv("secretkey", "MINIO_SECRET_KEY") + minioSubtress.AutomaticEnv() // config already read. substree passed err := minioSubtress.Unmarshal(&minioCfg) diff --git a/internal/config/sources.go b/internal/config/sources.go index 6f7891d3..9ee511a2 100644 --- a/internal/config/sources.go +++ b/internal/config/sources.go @@ -32,6 +32,7 @@ const ( StandardizedHttps StandardizedHttp ) +const AccceptContentType string = "application/ld+json, text/html" func (s ContextOption) String() string { switch s { @@ -70,12 +71,14 @@ type Sources struct { // SitemapFormat string // Active bool - HeadlessWait int // if loading is slow, wait - Delay int64 // A domain-specific crawl delay value - IdentifierPath string // JSON Path to the identifier - ApiPageLimit int - IdentifierType string - FixContextOption ContextOption + HeadlessWait int // if loading is slow, wait + Delay int64 // A domain-specific crawl delay value + IdentifierPath string // JSON Path to the identifier + ApiPageLimit int + IdentifierType string + FixContextOption ContextOption + AcceptContentType string `default:"application/ld+json, text/html"` // accept content type string for http request + JsonProfile string // jsonprofile } // add needed for file @@ -89,29 +92,33 @@ type SourcesConfig struct { Domain string // SitemapFormat string // Active bool - HeadlessWait int // is loading is slow, wait - Delay int64 // A domain-specific crawl delay value - IdentifierPath string // JSON Path to the identifier - IdentifierType string - FixContextOption ContextOption + HeadlessWait int // is loading is slow, wait + Delay int64 // A domain-specific crawl delay value + IdentifierPath string // JSON Path to the identifier + IdentifierType string + FixContextOption ContextOption + AcceptContentType string `default:"application/ld+json, text/html"` // accept content type string for http request + JsonProfile string // jsonprofile } var SourcesTemplate = map[string]interface{}{ "sources": map[string]string{ - "sourcetype": "sitemap", - "name": "", - "url": "", - "logo": "", - "headless": "", - "pid": "", - "propername": "", - "domain": "", - "credentialsfile": "", - "headlesswait": "0", - "delay": "0", - "identifierpath": "", - "identifiertype": JsonSha, - "fixcontextoption": "https", + "sourcetype": "sitemap", + "name": "", + "url": "", + "logo": "", + "headless": "", + "pid": "", + "propername": "", + "domain": "", + "credentialsfile": "", + "headlesswait": "0", + "delay": "0", + "identifierpath": "", + "identifiertype": JsonSha, + "fixcontextoption": "https", + "acceptcontenttype": "application/ld+json, text/html", + "jsonprofile": "", }, } @@ -119,6 +126,12 @@ func populateDefaults(s Sources) Sources { if s.SourceType == "" { s.SourceType = "sitemap" } + if s.AcceptContentType == "" { + s.AcceptContentType = "application/ld+json, text/html" + } + if s.JsonProfile == "" { + s.JsonProfile = "application/ld+json" + } // fix issues, too. Space from CSV causing url errors s.URL = strings.TrimSpace(s.URL) return s @@ -151,10 +164,22 @@ func ReadSourcesCSV(filename string, cfgPath string) ([]Sources, error) { return gocsv.LazyCSVReader(in) // Allows use of quotes in CSV }) - if err := gocsv.Unmarshal(f, &sources); err != nil { + err = gocsv.Unmarshal(f, &sources) + if err != nil { fmt.Println("error:", err) + } + if len(sources) < 1 { + if strings.HasPrefix(filename, "https://") || strings.HasPrefix(filename, "http://") { + + msg := fmt.Sprintf("no sources try downloading csv '%v', and using a local file. %v"+ + " if google share, publish to web single page csv", filename, err) + log.Fatal(msg) + } else { + log.Fatalf("no sources in '%v', error parsing csv used for sources %v", filename, err) + } + } for i, u := range sources { sources[i] = populateDefaults(u) fmt.Printf("%+v\n", u) From 87c3726d7300f448a15976d8c3eeb074deca56c4 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 10:53:20 -0700 Subject: [PATCH 43/55] Docker make multiple platform builds work --- .../{docker.yml => docker_glcon.yml} | 137 ++++++-------- .github/workflows/docker_gleaner.yml | 177 ++++++++++++++++++ build/Dockerfile | 6 + 3 files changed, 236 insertions(+), 84 deletions(-) rename .github/workflows/{docker.yml => docker_glcon.yml} (57%) create mode 100644 .github/workflows/docker_gleaner.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker_glcon.yml similarity index 57% rename from .github/workflows/docker.yml rename to .github/workflows/docker_glcon.yml index cf6922ff..d220be6f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker_glcon.yml @@ -13,10 +13,11 @@ on: # https://github.com/marketplace/actions/publish-docker # https://github.com/docker/build-push-action - +env: + REGISTRY_IMAGE: nsfearthcube/glcon jobs: - gleaner: - name: Docker gleaner + build: + name: Docker glcon runs-on: ubuntu-latest strategy: @@ -55,8 +56,8 @@ jobs: - id: binary name: build run: | - go build -o gleaner - working-directory: ./cmd/gleaner + go build -o glcon + working-directory: ./cmd/glcon env: GOOS: ${{matrix.goss}} GOARCH: ${{matrix.goarch}} @@ -83,111 +84,79 @@ jobs: id: meta uses: docker/metadata-action@v3 with: - images: nsfearthcube/gleaner + images: ${{ env.REGISTRY_IMAGE }} flavor: | latest=true tags: | type=ref,event=tag type=ref,event=branch type=semver,pattern={{version}} + - name: Build and push - id: docker_build + id: build uses: docker/build-push-action@v3 with: push: true # platforms: ${{ matrix.platform }} platforms: linux/amd64,linux/arm64 - tags: ${{ steps.meta.outputs.tags }} + # tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile context: . - - name: Image digest - run: echo ${{ steps.docker_build.outputs.digest }} - glcon: - name: Docker glcon +# - name: Image digest +# run: echo ${{ steps.build.outputs.digest }} + - name: Export digest + run: | + mkdir -p /tmp/digests + digest="${{ steps.build.outputs.digest }}" + touch "/tmp/digests/${digest#sha256:}" + - name: Upload digest + uses: actions/upload-artifact@v3 + with: + name: digests + path: /tmp/digests/* + if-no-files-found: error + retention-days: 1 + merge: runs-on: ubuntu-latest - - strategy: - matrix: - include: - - goarch: amd64 - goos: "linux" - platform: linux/amd64 - - goarch: arm64 - goos: "linux" - platform: linux/arm64 - - # above is explict build lists, otherwise we get amd64 on linux/arm as an option - - # build and publish in parallel: linux/amd64 - #goos: [linux, windows, darwin] -# #goarch: [amd64,arm64] -# goos: [linux] -# goarch: [amd64, arm64] -# platform: [linux/amd64,linux/arm64] -# exclude: -# - goarch: "386" -# goos: darwin + needs: + - build steps: - - name: Install Go - uses: actions/setup-go@v4 - - name: checkout code - uses: actions/checkout@v2 - - name: donwload schema - run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld - - name: donwload schema - run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld - # - name: Run tests - # run: go test -v -p=1 -timeout=0 ./... - - id: binary - name: build - run: | - go build -o glcon - working-directory: ./cmd/glcon - env: - GOOS: ${{matrix.goss}} - GOARCH: ${{matrix.goarch}} - CGO_ENABLED: 0 - # deploy: - # needs: build - # name: Dockerize Gleaner - # runs-on: ubuntu-latest - # steps: - # - name: Checkout Repo - # uses: actions/checkout@v2 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + - name: Download digests + uses: actions/download-artifact@v3 with: - platforms: ${{ matrix.goarch}} - - name: Set up Docker Buildx + name: digests + path: /tmp/digests + - + name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Extract metadata (tags, labels) for Docker + - + name: Docker meta id: meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v4 with: - images: nsfearthcube/glcon + images: ${{ env.REGISTRY_IMAGE }} flavor: | latest=true tags: | type=ref,event=tag type=ref,event=branch type=semver,pattern={{version}} - - name: Build and push - id: docker_build - uses: docker/build-push-action@v3 + + - + name: Login to Docker Hub + uses: docker/login-action@v2 with: - push: true - # platforms: ${{ matrix.platform }} - platforms: linux/amd64,linux/arm64 - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - file: ./build/Dockerfile_glcon - context: . - - name: Image digest - run: echo ${{ steps.docker_build.outputs.digest }} \ No newline at end of file + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Create manifest list and push + working-directory: /tmp/digests + run: | + docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ + $(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *) + - + name: Inspect image + run: | + docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} \ No newline at end of file diff --git a/.github/workflows/docker_gleaner.yml b/.github/workflows/docker_gleaner.yml new file mode 100644 index 00000000..3fd385a2 --- /dev/null +++ b/.github/workflows/docker_gleaner.yml @@ -0,0 +1,177 @@ +name: Dockerize Gleaner +# need to look at this to do it right +# https://namiops.medium.com/golang-multi-arch-docker-image-with-github-action-b59a62c8d2bd +on: + push: + branches: + - master + - dev_ec + tags: + - v3.* + release: + types: [published] + +# https://github.com/marketplace/actions/publish-docker +# https://github.com/docker/build-push-action +env: + REGISTRY_IMAGE: nsfearthcube/gleaner + +jobs: + build: + name: Docker gleaner + runs-on: ubuntu-latest + + strategy: + matrix: + include: + - goarch: amd64 + goos: "linux" + platform: linux/amd64 + - goarch: arm64 + goos: "linux" + platform: linux/arm64 + + # above is explict build lists, otherwise we get amd64 on linux/arm as an option + + # build and publish in parallel: linux/amd64 + #goos: [linux, windows, darwin] + #goarch: [amd64,arm64] +# goos: [linux] +# goarch: [amd64, arm64] +# platform: [linux/amd64,linux/arm64] +# exclude: +# - goarch: "386" +# goos: darwin + steps: + - name: Install Go + uses: actions/setup-go@v4 + - name: checkout code + uses: actions/checkout@v2 + - name: donwload schema + run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld + - name: donwload schema + run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld + + # - name: Run tests + # run: go test -v -p=1 -timeout=0 ./... + - name: Set variables + run: | + VER=$(cat VERSION) + echo "VERSION=$VER" >> $GITHUB_ENV + - id: binary + name: build + run: | + go build -o gleaner -ldflags "-s -w -X main.VERSION=${{ env.VERSION }} -X github.com/gleanerio/gleaner/pkg.VERSION=${{ env.VERSION }}" + working-directory: ./cmd/gleaner + env: + GOOS: ${{matrix.goss}} + GOARCH: ${{matrix.goarch}} + CGO_ENABLED: 0 + +# - name: Build Gleaner +# uses: wangyoucao577/go-release-action@v1 +# with: +# github_token: ${{ secrets.GITHUB_TOKEN }} +# goos: ${{ matrix.goos }} +# goarch: ${{ matrix.goarch }} +# project_path: "./cmd/gleaner" +# binary_name: "gleaner" +# ldflags: "-s -w -X main.VERSION=${{ env.VERSION }} -X github.com/gleanerio/gleaner/pkg.VERSION=${{ env.VERSION }}" + + # deploy: + # needs: build + # name: Dockerize Gleaner + # runs-on: ubuntu-latest + # steps: + # - name: Checkout Repo + # uses: actions/checkout@v2 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + with: + platforms: ${{matrix.goarch}} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v3 + with: + images: ${{ env.REGISTRY_IMAGE }} + flavor: | + latest=true + tags: | + type=ref,event=tag + type=ref,event=branch + type=semver,pattern={{version}} + - name: Build and push + id: build + uses: docker/build-push-action@v4 + with: + push: true + platforms: ${{ matrix.platform }} + #platforms: linux/amd64,linux/arm64 + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + file: ./build/Dockerfile + context: . +# - name: Image digest +# run: echo ${{ steps.build.outputs.digest }} + - name: Export digest + run: | + mkdir -p /tmp/digests + digest="${{ steps.build.outputs.digest }}" + touch "/tmp/digests/${digest#sha256:}" + - name: Upload digest + uses: actions/upload-artifact@v3 + with: + name: digests + path: /tmp/digests/* + if-no-files-found: error + retention-days: 1 + merge: + runs-on: ubuntu-latest + needs: + - build + steps: + + - name: Download digests + uses: actions/download-artifact@v3 + with: + name: digests + path: /tmp/digests + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - + name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: ${{ env.REGISTRY_IMAGE }} + flavor: | + latest=true + tags: | + type=ref,event=tag + type=ref,event=branch + type=semver,pattern={{version}} + + - + name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Create manifest list and push + working-directory: /tmp/digests + run: | + docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ + $(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *) + - + name: Inspect image + run: | + docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} \ No newline at end of file diff --git a/build/Dockerfile b/build/Dockerfile index 108a8b23..999013de 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -16,6 +16,12 @@ RUN mkdir /gleaner RUN mkdir /gleaner/config ADD ./cmd/gleaner/gleaner /gleaner/ +RUN mkdir /assets +#ADD ./assets/schemaorg-current-https.jsonld /assets/schemaorg-current-https.jsonld +#ADD ./assets/schemaorg-current-http.jsonld /assets/schemaorg-current-http.jsonld +RUN curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output /assets/schemaorg-current-https.jsonld +RUN curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output /assets/schemaorg-current-http.jsonld + # ADD ../web/static /static # Replace with -v mounting the /web/static directory # static is in the .dockerignore.. so an emptry dir is made unless static is removed # from the ignore file... we mount the volume via compose from the local FS From 513d2303f2e1c65b955dcaffc4b7d48549ae01f6 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 10:59:36 -0700 Subject: [PATCH 44/55] Docker make multiple platform builds work --- .github/workflows/docker_gleaner.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker_gleaner.yml b/.github/workflows/docker_gleaner.yml index 3fd385a2..f32eca5b 100644 --- a/.github/workflows/docker_gleaner.yml +++ b/.github/workflows/docker_gleaner.yml @@ -6,6 +6,7 @@ on: branches: - master - dev_ec + - dev_docker_multipleimage tags: - v3.* release: From eb519aacebc0a815f197cfa08b686d64537c6210 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 11:02:44 -0700 Subject: [PATCH 45/55] Docker make multiple platform builds work --- .github/workflows/docker_glcon.yml | 6 ++++-- .github/workflows/docker_gleaner.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker_glcon.yml b/.github/workflows/docker_glcon.yml index d220be6f..229bea01 100644 --- a/.github/workflows/docker_glcon.yml +++ b/.github/workflows/docker_glcon.yml @@ -96,14 +96,16 @@ jobs: id: build uses: docker/build-push-action@v3 with: - push: true + #push: true # platforms: ${{ matrix.platform }} platforms: linux/amd64,linux/arm64 # tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile context: . -# - name: Image digest + outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true + + # - name: Image digest # run: echo ${{ steps.build.outputs.digest }} - name: Export digest run: | diff --git a/.github/workflows/docker_gleaner.yml b/.github/workflows/docker_gleaner.yml index f32eca5b..89c92c2b 100644 --- a/.github/workflows/docker_gleaner.yml +++ b/.github/workflows/docker_gleaner.yml @@ -112,14 +112,16 @@ jobs: id: build uses: docker/build-push-action@v4 with: - push: true + #push: true platforms: ${{ matrix.platform }} #platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile context: . -# - name: Image digest + outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true + + # - name: Image digest # run: echo ${{ steps.build.outputs.digest }} - name: Export digest run: | From b1293d212ce5b9f694ae9e0e96dead35dbc0ae0a Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 11:06:00 -0700 Subject: [PATCH 46/55] Docker make multiple platform builds work --- .github/workflows/docker_gleaner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker_gleaner.yml b/.github/workflows/docker_gleaner.yml index 89c92c2b..85dd06b1 100644 --- a/.github/workflows/docker_gleaner.yml +++ b/.github/workflows/docker_gleaner.yml @@ -115,7 +115,7 @@ jobs: #push: true platforms: ${{ matrix.platform }} #platforms: linux/amd64,linux/arm64 - tags: ${{ steps.meta.outputs.tags }} + #tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile context: . From 07f3b66dbe62ed7b90b51b6a91835e24beaf3822 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 11:08:01 -0700 Subject: [PATCH 47/55] Docker make multiple platform builds work --- .github/workflows/docker_glcon.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker_glcon.yml b/.github/workflows/docker_glcon.yml index 229bea01..b0c85edc 100644 --- a/.github/workflows/docker_glcon.yml +++ b/.github/workflows/docker_glcon.yml @@ -6,6 +6,7 @@ on: branches: - master - dev_docker_glcon + - dev_docker_multipleimage tags: - v3.* release: From 22fd4154448092cb1c09f6df0b75af1f2a3d7ea3 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 11:13:10 -0700 Subject: [PATCH 48/55] Docker make multiple platform builds work --- .github/workflows/docker_glcon.yml | 2 +- build/Dockerfile_glcon | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker_glcon.yml b/.github/workflows/docker_glcon.yml index b0c85edc..59212b44 100644 --- a/.github/workflows/docker_glcon.yml +++ b/.github/workflows/docker_glcon.yml @@ -102,7 +102,7 @@ jobs: platforms: linux/amd64,linux/arm64 # tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - file: ./build/Dockerfile + file: ./build/Dockerfile_glcon context: . outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true diff --git a/build/Dockerfile_glcon b/build/Dockerfile_glcon index 36167693..c8140bc7 100644 --- a/build/Dockerfile_glcon +++ b/build/Dockerfile_glcon @@ -16,6 +16,12 @@ RUN mkdir /glcon RUN mkdir /glcon/config ADD ./cmd/glcon/glcon /glcon/ +RUN mkdir /assets +#ADD ./assets/schemaorg-current-https.jsonld /assets/schemaorg-current-https.jsonld +#ADD ./assets/schemaorg-current-http.jsonld /assets/schemaorg-current-http.jsonld +RUN curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output /assets/schemaorg-current-https.jsonld +RUN curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output /assets/schemaorg-current-http.jsonld + # ADD ../web/static /static # Replace with -v mounting the /web/static directory # static is in the .dockerignore.. so an emptry dir is made unless static is removed # from the ignore file... we mount the volume via compose from the local FS From f74461426d322c58646a9c670c8d0e61f5e6f80f Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 11:17:42 -0700 Subject: [PATCH 49/55] Docker make multiple platform builds work --- .github/workflows/docker_glcon.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_glcon.yml b/.github/workflows/docker_glcon.yml index 59212b44..67007aa3 100644 --- a/.github/workflows/docker_glcon.yml +++ b/.github/workflows/docker_glcon.yml @@ -98,8 +98,8 @@ jobs: uses: docker/build-push-action@v3 with: #push: true -# platforms: ${{ matrix.platform }} - platforms: linux/amd64,linux/arm64 + platforms: ${{ matrix.platform }} + #platforms: linux/amd64,linux/arm64 # tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} file: ./build/Dockerfile_glcon From 9f793b2809106828836f309fcc461c748021ee71 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sun, 9 Jul 2023 11:20:45 -0700 Subject: [PATCH 50/55] Docker make multiple platform builds work --- .github/workflows/docker_glcon.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker_glcon.yml b/.github/workflows/docker_glcon.yml index 67007aa3..7e4dd4c5 100644 --- a/.github/workflows/docker_glcon.yml +++ b/.github/workflows/docker_glcon.yml @@ -1,4 +1,4 @@ -name: Dockerize Gleaner +name: Dockerize glcon gleaner console # need to look at this to do it right # https://namiops.medium.com/golang-multi-arch-docker-image-with-github-action-b59a62c8d2bd on: From eb94598c30c58d4e510661ce05d0dbda49d6b8f5 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Mon, 10 Jul 2023 08:02:38 -0700 Subject: [PATCH 51/55] add configs directory --- build/Dockerfile | 2 ++ build/Dockerfile_glcon | 2 ++ 2 files changed, 4 insertions(+) diff --git a/build/Dockerfile b/build/Dockerfile index 999013de..ef0924a5 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -22,6 +22,8 @@ RUN mkdir /assets RUN curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output /assets/schemaorg-current-https.jsonld RUN curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output /assets/schemaorg-current-http.jsonld +RUN mkdir /configs + # ADD ../web/static /static # Replace with -v mounting the /web/static directory # static is in the .dockerignore.. so an emptry dir is made unless static is removed # from the ignore file... we mount the volume via compose from the local FS diff --git a/build/Dockerfile_glcon b/build/Dockerfile_glcon index c8140bc7..59bd6d2b 100644 --- a/build/Dockerfile_glcon +++ b/build/Dockerfile_glcon @@ -22,6 +22,8 @@ RUN mkdir /assets RUN curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output /assets/schemaorg-current-https.jsonld RUN curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output /assets/schemaorg-current-http.jsonld +RUN mkdir /configs + # ADD ../web/static /static # Replace with -v mounting the /web/static directory # static is in the .dockerignore.. so an emptry dir is made unless static is removed # from the ignore file... we mount the volume via compose from the local FS From 373394d8dca935e54120ebbdf3d6ce9bad82af0b Mon Sep 17 00:00:00 2001 From: David Valentine Date: Sat, 15 Jul 2023 14:08:51 -0700 Subject: [PATCH 52/55] 224 set passed source to active --- cmd/gleaner/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/gleaner/main.go b/cmd/gleaner/main.go index 34205bf9..83f5b641 100644 --- a/cmd/gleaner/main.go +++ b/cmd/gleaner/main.go @@ -116,6 +116,7 @@ func main() { for _, k := range domains { if sourceVal == k.Name { + k.Active = true tmp = append(tmp, k) } } From 83fcb0fa83b2b892d6d07abb7e09c330ee814768 Mon Sep 17 00:00:00 2001 From: David Valentine Date: Wed, 19 Jul 2023 07:19:27 -0700 Subject: [PATCH 53/55] Update docker_gleaner.yml add dev to docker build --- .github/workflows/docker_gleaner.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_gleaner.yml b/.github/workflows/docker_gleaner.yml index 85dd06b1..a12e6378 100644 --- a/.github/workflows/docker_gleaner.yml +++ b/.github/workflows/docker_gleaner.yml @@ -6,7 +6,7 @@ on: branches: - master - dev_ec - - dev_docker_multipleimage + - dev tags: - v3.* release: @@ -177,4 +177,4 @@ jobs: - name: Inspect image run: | - docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} \ No newline at end of file + docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} From 6a4d814d98f052e7bb273d0a8693b75f3a1f181d Mon Sep 17 00:00:00 2001 From: David Valentine Date: Wed, 19 Jul 2023 07:19:50 -0700 Subject: [PATCH 54/55] Update docker_glcon.yml add dev to glcon docker --- .github/workflows/docker_glcon.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_glcon.yml b/.github/workflows/docker_glcon.yml index 7e4dd4c5..35ff50c7 100644 --- a/.github/workflows/docker_glcon.yml +++ b/.github/workflows/docker_glcon.yml @@ -6,7 +6,7 @@ on: branches: - master - dev_docker_glcon - - dev_docker_multipleimage + - dev tags: - v3.* release: @@ -162,4 +162,4 @@ jobs: - name: Inspect image run: | - docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} \ No newline at end of file + docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} From 256a703ed189cfc7e4444d41fb6a3332582c7eba Mon Sep 17 00:00:00 2001 From: David Valentine Date: Thu, 31 Aug 2023 10:31:55 -0700 Subject: [PATCH 55/55] AcceptContentTypes per source, Fix isValidJson issue with arrays (#206) * accept content types #192. Prep for json profiles #163 * accept content types #192. Prep for json profiles #163 #128. For Validation just unmarshal an interface --- configs/gleaner_opencore | 45 +++++++++++ internal/summoner/acquire/acquire.go | 58 +++++++++++---- internal/summoner/acquire/acquire_test.go | 22 +++--- internal/summoner/acquire/api.go | 8 +- internal/summoner/acquire/headlessNG.go | 2 +- internal/summoner/acquire/jsonutils.go | 42 ++++++++++- .../jsonld/opencore_csdco_icdfiles.jsonld | 74 +++++++++++++++++++ 7 files changed, 217 insertions(+), 34 deletions(-) create mode 100644 configs/gleaner_opencore create mode 100644 resoruces/jsonld/opencore_csdco_icdfiles.jsonld diff --git a/configs/gleaner_opencore b/configs/gleaner_opencore new file mode 100644 index 00000000..a4ffbe1e --- /dev/null +++ b/configs/gleaner_opencore @@ -0,0 +1,45 @@ +context: + cache: true +contextmaps: + - file: ./assets/schemaorg-current-https.jsonld + prefix: https://schema.org/ + - file: ./assets/schemaorg-current-http.jsonld + prefix: http://schema.org/ +gleaner: + mill: true + runid: runX + summon: true +millers: + graph: true +minio: + address: oss.geocodes-dev.earthcube.org + port: 443 + ssl: true + accesskey: worldsbestaccesskey + secretkey: worldsbestsecretkey + bucket: opencore +sources: + - sourcetype: sitemap + name: opencoredata + logo: https://opencoredata.org/img/logo22small.png + url: http://opencoredata.org/sitemap.xml + headless: false + pid: https://www.re3data.org/repository/r3d100012874 + propername: opencoredata + domain: https://opencoredata.org/ + active: true + credentialsfile: "" + other: {} + headlesswait: 0 + delay: 1 + identifierpath: "" + apipagelimit: 0 + identifiertype: identifiersha + fixcontextoption: 0 + acceptcontenttype: "application/ld+json" +summoner: + after: "" + delay: null + headless: http://127.0.0.1:9222 + mode: full + threads: 15 diff --git a/internal/summoner/acquire/acquire.go b/internal/summoner/acquire/acquire.go index 5f2c2d75..f5d019d8 100644 --- a/internal/summoner/acquire/acquire.go +++ b/internal/summoner/acquire/acquire.go @@ -51,17 +51,17 @@ func ResRetrieve(v1 *viper.Viper, mc *minio.Client, m map[string][]string, runSt wg.Wait() } -func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, int, error) { +func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, int, string, string, error) { bucketName, err := configTypes.GetBucketName(v1) if err != nil { - return bucketName, 0, 0, 0, err + return bucketName, 0, 0, 0, configTypes.AccceptContentType, "", err } var mcfg configTypes.Summoner mcfg, err = configTypes.ReadSummmonerConfig(v1.Sub("summoner")) if err != nil { - return bucketName, 0, 0, 0, err + return bucketName, 0, 0, 0, configTypes.AccceptContentType, "", err } // Set default thread counts and global delay tc := mcfg.Threads @@ -74,9 +74,11 @@ func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, int, err // look for a domain specific override crawl delay sources, err := configTypes.GetSources(v1) source, err := configTypes.GetSourceByName(sources, sourceName) + acceptContent := source.AcceptContentType + jsonProfile := source.JsonProfile hw := source.HeadlessWait if err != nil { - return bucketName, tc, delay, hw, err + return bucketName, tc, delay, hw, acceptContent, jsonProfile, err } if source.Delay != 0 && source.Delay > delay { @@ -85,13 +87,14 @@ func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, int, err log.Info("Crawl delay set to ", delay, " for ", sourceName) } log.Info("Thread count ", tc, " delay ", delay) - return bucketName, tc, delay, hw, nil + + return bucketName, tc, delay, hw, acceptContent, jsonProfile, nil } func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string, wg *sync.WaitGroup, repologger *log.Logger, repoStats *common.RepoStats) { - bucketName, tc, delay, headlessWait, err := getConfig(v1, sourceName) + bucketName, tc, delay, headlessWait, acceptContent, jsonProfile, err := getConfig(v1, sourceName) if err != nil { // trying to read a source, so let's not kill everything with a panic/fatal log.Error("Error reading config file ", err) @@ -133,7 +136,7 @@ func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName stri log.Error(i, err, urlloc) } req.Header.Set("User-Agent", EarthCubeAgent) - req.Header.Set("Accept", "application/ld+json, text/html") + req.Header.Set("Accept", acceptContent) resp, err := client.Do(req) if err != nil { @@ -145,8 +148,31 @@ func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName stri } defer resp.Body.Close() - jsonlds, err := FindJSONInResponse(v1, urlloc, repologger, resp) - + jsonlds, err := FindJSONInResponse(v1, urlloc, jsonProfile, repologger, resp) + // there was an issue with sitemaps... but now this code + //if contains(contentTypeHeader, JSONContentType) || contains(contentTypeHeader, "application/json") { + // + // b, err := io.ReadAll(resp.Body) + // // b, err := ioutil.ReadAll(resp.Body) Go.1.15 and earlier + // if err != nil { + // log.Error("#", i, " error on ", urlloc, err) // print an message containing the index (won't keep order) + // repoStats.Inc(common.Issues) + // lwg.Done() // tell the wait group that we be done + // <-semaphoreChan + // return + // } + // jsonlds = []string{string(b)} + //} else { + // var err error + // jsonlds, err = FindJSONInResponse(v1, urlloc, jsonProfile, repologger, resp) + // if err != nil { + // log.Error("#", i, " error on ", urlloc, err) // print an message containing the index (won't keep order) + // repoStats.Inc(common.Issues) + // lwg.Done() // tell the wait group that we be done + // <-semaphoreChan + // return + // } + //} if err != nil { log.Error("#", i, " error on ", urlloc, err) // print an message containing the index (won't keep order) repoStats.Inc(common.Issues) @@ -194,7 +220,7 @@ func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName stri common.RunRepoStatsOutput(repoStats, sourceName) } -func FindJSONInResponse(v1 *viper.Viper, urlloc string, repologger *log.Logger, response *http.Response) ([]string, error) { +func FindJSONInResponse(v1 *viper.Viper, urlloc string, jsonProfile string, repologger *log.Logger, response *http.Response) ([]string, error) { doc, err := goquery.NewDocumentFromResponse(response) if err != nil { return nil, err @@ -206,19 +232,23 @@ func FindJSONInResponse(v1 *viper.Viper, urlloc string, repologger *log.Logger, // if the URL is sending back JSON-LD correctly as application/ld+json // this should not be here IMHO, but need to support people not setting proper header value // The URL is sending back JSON-LD but incorrectly sending as application/json + // would like to add contains(contentTypeHeader, jsonProfile) + // but empty profile strings matching all if contains(contentTypeHeader, JSONContentType) || contains(contentTypeHeader, "application/json") || fileExtensionIsJson(urlloc) { logFields := log.Fields{"url": urlloc, "contentType": "json or ld_json"} repologger.WithFields(logFields).Debug() log.WithFields(logFields).Debug(urlloc, " as ", contentTypeHeader) - - jsonlds, err = addToJsonListIfValid(v1, jsonlds, doc.Text()) + resp_text := doc.Text() + jsonlds, err = addToJsonListIfValid(v1, jsonlds, resp_text) if err != nil { log.WithFields(logFields).Error("Error processing json response from ", urlloc, err) repologger.WithFields(logFields).Error(err) } - // look in the HTML response for